1. Packages
  2. Opentelekomcloud Provider
  3. API Docs
  4. CesEventReportV1
opentelekomcloud 1.36.42 published on Thursday, Jul 3, 2025 by opentelekomcloud

opentelekomcloud.CesEventReportV1

Explore with Pulumi AI

opentelekomcloud logo
opentelekomcloud 1.36.42 published on Thursday, Jul 3, 2025 by opentelekomcloud

    Up-to-date reference of API arguments for CES event report v1 you can get at documentation portal

    Manages a V1 CES Event Report (used for reporting custom events) resource within OpenTelekomCloud.

    Example Usage

    Basic event report

    import * as pulumi from "@pulumi/pulumi";
    import * as opentelekomcloud from "@pulumi/opentelekomcloud";
    
    const eventReport1 = new opentelekomcloud.CesEventReportV1("eventReport1", {
        detail: {
            content: "This is a test event",
            eventLevel: "Info",
            eventState: "normal",
        },
        eventName: "Test_tf_event",
        eventSource: "SYS.ECS",
        time: 1257894000000,
    });
    
    import pulumi
    import pulumi_opentelekomcloud as opentelekomcloud
    
    event_report1 = opentelekomcloud.CesEventReportV1("eventReport1",
        detail={
            "content": "This is a test event",
            "event_level": "Info",
            "event_state": "normal",
        },
        event_name="Test_tf_event",
        event_source="SYS.ECS",
        time=1257894000000)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/opentelekomcloud/opentelekomcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := opentelekomcloud.NewCesEventReportV1(ctx, "eventReport1", &opentelekomcloud.CesEventReportV1Args{
    			Detail: &opentelekomcloud.CesEventReportV1DetailArgs{
    				Content:    pulumi.String("This is a test event"),
    				EventLevel: pulumi.String("Info"),
    				EventState: pulumi.String("normal"),
    			},
    			EventName:   pulumi.String("Test_tf_event"),
    			EventSource: pulumi.String("SYS.ECS"),
    			Time:        pulumi.Float64(1257894000000),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Opentelekomcloud = Pulumi.Opentelekomcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var eventReport1 = new Opentelekomcloud.CesEventReportV1("eventReport1", new()
        {
            Detail = new Opentelekomcloud.Inputs.CesEventReportV1DetailArgs
            {
                Content = "This is a test event",
                EventLevel = "Info",
                EventState = "normal",
            },
            EventName = "Test_tf_event",
            EventSource = "SYS.ECS",
            Time = 1257894000000,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.opentelekomcloud.CesEventReportV1;
    import com.pulumi.opentelekomcloud.CesEventReportV1Args;
    import com.pulumi.opentelekomcloud.inputs.CesEventReportV1DetailArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var eventReport1 = new CesEventReportV1("eventReport1", CesEventReportV1Args.builder()
                .detail(CesEventReportV1DetailArgs.builder()
                    .content("This is a test event")
                    .eventLevel("Info")
                    .eventState("normal")
                    .build())
                .eventName("Test_tf_event")
                .eventSource("SYS.ECS")
                .time(1257894000000)
                .build());
    
        }
    }
    
    resources:
      eventReport1:
        type: opentelekomcloud:CesEventReportV1
        properties:
          detail:
            content: This is a test event
            eventLevel: Info
            eventState: normal
          eventName: Test_tf_event
          eventSource: SYS.ECS
          time: 1.257894e+12
    

    Create CesEventReportV1 Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new CesEventReportV1(name: string, args: CesEventReportV1Args, opts?: CustomResourceOptions);
    @overload
    def CesEventReportV1(resource_name: str,
                         args: CesEventReportV1Args,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def CesEventReportV1(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         detail: Optional[CesEventReportV1DetailArgs] = None,
                         event_name: Optional[str] = None,
                         event_source: Optional[str] = None,
                         time: Optional[float] = None,
                         ces_event_report_v1_id: Optional[str] = None,
                         timeouts: Optional[CesEventReportV1TimeoutsArgs] = None)
    func NewCesEventReportV1(ctx *Context, name string, args CesEventReportV1Args, opts ...ResourceOption) (*CesEventReportV1, error)
    public CesEventReportV1(string name, CesEventReportV1Args args, CustomResourceOptions? opts = null)
    public CesEventReportV1(String name, CesEventReportV1Args args)
    public CesEventReportV1(String name, CesEventReportV1Args args, CustomResourceOptions options)
    
    type: opentelekomcloud:CesEventReportV1
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args CesEventReportV1Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args CesEventReportV1Args
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args CesEventReportV1Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CesEventReportV1Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CesEventReportV1Args
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var cesEventReportV1Resource = new Opentelekomcloud.CesEventReportV1("cesEventReportV1Resource", new()
    {
        Detail = new Opentelekomcloud.Inputs.CesEventReportV1DetailArgs
        {
            Content = "string",
            EventLevel = "string",
            EventState = "string",
            EventType = "string",
            EventUser = "string",
            GroupId = "string",
            ResourceId = "string",
            ResourceName = "string",
        },
        EventName = "string",
        EventSource = "string",
        Time = 0,
        CesEventReportV1Id = "string",
        Timeouts = new Opentelekomcloud.Inputs.CesEventReportV1TimeoutsArgs
        {
            Create = "string",
            Delete = "string",
        },
    });
    
    example, err := opentelekomcloud.NewCesEventReportV1(ctx, "cesEventReportV1Resource", &opentelekomcloud.CesEventReportV1Args{
    	Detail: &opentelekomcloud.CesEventReportV1DetailArgs{
    		Content:      pulumi.String("string"),
    		EventLevel:   pulumi.String("string"),
    		EventState:   pulumi.String("string"),
    		EventType:    pulumi.String("string"),
    		EventUser:    pulumi.String("string"),
    		GroupId:      pulumi.String("string"),
    		ResourceId:   pulumi.String("string"),
    		ResourceName: pulumi.String("string"),
    	},
    	EventName:          pulumi.String("string"),
    	EventSource:        pulumi.String("string"),
    	Time:               pulumi.Float64(0),
    	CesEventReportV1Id: pulumi.String("string"),
    	Timeouts: &opentelekomcloud.CesEventReportV1TimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    	},
    })
    
    var cesEventReportV1Resource = new CesEventReportV1("cesEventReportV1Resource", CesEventReportV1Args.builder()
        .detail(CesEventReportV1DetailArgs.builder()
            .content("string")
            .eventLevel("string")
            .eventState("string")
            .eventType("string")
            .eventUser("string")
            .groupId("string")
            .resourceId("string")
            .resourceName("string")
            .build())
        .eventName("string")
        .eventSource("string")
        .time(0.0)
        .cesEventReportV1Id("string")
        .timeouts(CesEventReportV1TimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .build())
        .build());
    
    ces_event_report_v1_resource = opentelekomcloud.CesEventReportV1("cesEventReportV1Resource",
        detail={
            "content": "string",
            "event_level": "string",
            "event_state": "string",
            "event_type": "string",
            "event_user": "string",
            "group_id": "string",
            "resource_id": "string",
            "resource_name": "string",
        },
        event_name="string",
        event_source="string",
        time=0,
        ces_event_report_v1_id="string",
        timeouts={
            "create": "string",
            "delete": "string",
        })
    
    const cesEventReportV1Resource = new opentelekomcloud.CesEventReportV1("cesEventReportV1Resource", {
        detail: {
            content: "string",
            eventLevel: "string",
            eventState: "string",
            eventType: "string",
            eventUser: "string",
            groupId: "string",
            resourceId: "string",
            resourceName: "string",
        },
        eventName: "string",
        eventSource: "string",
        time: 0,
        cesEventReportV1Id: "string",
        timeouts: {
            create: "string",
            "delete": "string",
        },
    });
    
    type: opentelekomcloud:CesEventReportV1
    properties:
        cesEventReportV1Id: string
        detail:
            content: string
            eventLevel: string
            eventState: string
            eventType: string
            eventUser: string
            groupId: string
            resourceId: string
            resourceName: string
        eventName: string
        eventSource: string
        time: 0
        timeouts:
            create: string
            delete: string
    

    CesEventReportV1 Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The CesEventReportV1 resource accepts the following input properties:

    Detail CesEventReportV1Detail
    Specifies the event details. The structure is described below.
    EventName string
    Specifies the event name. The value must be 1 to 64 characters long and contain letters, digits, and underscores (_). It must start with a letter.
    EventSource string
    Specifies the event source. The format is service.item. Set this parameter based on the site requirements. service and item each must be a string that starts with a letter and contains 3 to 32 characters, including only letters, digits, and underscores (_).
    Time double

    Specifies when the event occurred, which is a UNIX timestamp (ms).

    NOTE: Since there is a latency between the client and the server, the data timestamp to be inserted should be within the period that starts from one hour before the current time plus 20s to 10 minutes after the current time minus 20s. In this way, the timestamp will be inserted to the database without being affected by the latency. For example, if the current time is 2020.01.30 12:00:30, the timestamp inserted must be within the range [2020.01.30 11:00:50, 2020.01.30 12:10:10]. The corresponding UNIX timestamp is [1580353250, 1580357410].

    CesEventReportV1Id string
    Timeouts CesEventReportV1Timeouts
    Detail CesEventReportV1DetailArgs
    Specifies the event details. The structure is described below.
    EventName string
    Specifies the event name. The value must be 1 to 64 characters long and contain letters, digits, and underscores (_). It must start with a letter.
    EventSource string
    Specifies the event source. The format is service.item. Set this parameter based on the site requirements. service and item each must be a string that starts with a letter and contains 3 to 32 characters, including only letters, digits, and underscores (_).
    Time float64

    Specifies when the event occurred, which is a UNIX timestamp (ms).

    NOTE: Since there is a latency between the client and the server, the data timestamp to be inserted should be within the period that starts from one hour before the current time plus 20s to 10 minutes after the current time minus 20s. In this way, the timestamp will be inserted to the database without being affected by the latency. For example, if the current time is 2020.01.30 12:00:30, the timestamp inserted must be within the range [2020.01.30 11:00:50, 2020.01.30 12:10:10]. The corresponding UNIX timestamp is [1580353250, 1580357410].

    CesEventReportV1Id string
    Timeouts CesEventReportV1TimeoutsArgs
    detail CesEventReportV1Detail
    Specifies the event details. The structure is described below.
    eventName String
    Specifies the event name. The value must be 1 to 64 characters long and contain letters, digits, and underscores (_). It must start with a letter.
    eventSource String
    Specifies the event source. The format is service.item. Set this parameter based on the site requirements. service and item each must be a string that starts with a letter and contains 3 to 32 characters, including only letters, digits, and underscores (_).
    time Double

    Specifies when the event occurred, which is a UNIX timestamp (ms).

    NOTE: Since there is a latency between the client and the server, the data timestamp to be inserted should be within the period that starts from one hour before the current time plus 20s to 10 minutes after the current time minus 20s. In this way, the timestamp will be inserted to the database without being affected by the latency. For example, if the current time is 2020.01.30 12:00:30, the timestamp inserted must be within the range [2020.01.30 11:00:50, 2020.01.30 12:10:10]. The corresponding UNIX timestamp is [1580353250, 1580357410].

    cesEventReportV1Id String
    timeouts CesEventReportV1Timeouts
    detail CesEventReportV1Detail
    Specifies the event details. The structure is described below.
    eventName string
    Specifies the event name. The value must be 1 to 64 characters long and contain letters, digits, and underscores (_). It must start with a letter.
    eventSource string
    Specifies the event source. The format is service.item. Set this parameter based on the site requirements. service and item each must be a string that starts with a letter and contains 3 to 32 characters, including only letters, digits, and underscores (_).
    time number

    Specifies when the event occurred, which is a UNIX timestamp (ms).

    NOTE: Since there is a latency between the client and the server, the data timestamp to be inserted should be within the period that starts from one hour before the current time plus 20s to 10 minutes after the current time minus 20s. In this way, the timestamp will be inserted to the database without being affected by the latency. For example, if the current time is 2020.01.30 12:00:30, the timestamp inserted must be within the range [2020.01.30 11:00:50, 2020.01.30 12:10:10]. The corresponding UNIX timestamp is [1580353250, 1580357410].

    cesEventReportV1Id string
    timeouts CesEventReportV1Timeouts
    detail CesEventReportV1DetailArgs
    Specifies the event details. The structure is described below.
    event_name str
    Specifies the event name. The value must be 1 to 64 characters long and contain letters, digits, and underscores (_). It must start with a letter.
    event_source str
    Specifies the event source. The format is service.item. Set this parameter based on the site requirements. service and item each must be a string that starts with a letter and contains 3 to 32 characters, including only letters, digits, and underscores (_).
    time float

    Specifies when the event occurred, which is a UNIX timestamp (ms).

    NOTE: Since there is a latency between the client and the server, the data timestamp to be inserted should be within the period that starts from one hour before the current time plus 20s to 10 minutes after the current time minus 20s. In this way, the timestamp will be inserted to the database without being affected by the latency. For example, if the current time is 2020.01.30 12:00:30, the timestamp inserted must be within the range [2020.01.30 11:00:50, 2020.01.30 12:10:10]. The corresponding UNIX timestamp is [1580353250, 1580357410].

    ces_event_report_v1_id str
    timeouts CesEventReportV1TimeoutsArgs
    detail Property Map
    Specifies the event details. The structure is described below.
    eventName String
    Specifies the event name. The value must be 1 to 64 characters long and contain letters, digits, and underscores (_). It must start with a letter.
    eventSource String
    Specifies the event source. The format is service.item. Set this parameter based on the site requirements. service and item each must be a string that starts with a letter and contains 3 to 32 characters, including only letters, digits, and underscores (_).
    time Number

    Specifies when the event occurred, which is a UNIX timestamp (ms).

    NOTE: Since there is a latency between the client and the server, the data timestamp to be inserted should be within the period that starts from one hour before the current time plus 20s to 10 minutes after the current time minus 20s. In this way, the timestamp will be inserted to the database without being affected by the latency. For example, if the current time is 2020.01.30 12:00:30, the timestamp inserted must be within the range [2020.01.30 11:00:50, 2020.01.30 12:10:10]. The corresponding UNIX timestamp is [1580353250, 1580357410].

    cesEventReportV1Id String
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CesEventReportV1 resource produces the following output properties:

    EventId string
    Specifies the event ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    EventId string
    Specifies the event ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    eventId String
    Specifies the event ID.
    id String
    The provider-assigned unique ID for this managed resource.
    eventId string
    Specifies the event ID.
    id string
    The provider-assigned unique ID for this managed resource.
    event_id str
    Specifies the event ID.
    id str
    The provider-assigned unique ID for this managed resource.
    eventId String
    Specifies the event ID.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing CesEventReportV1 Resource

    Get an existing CesEventReportV1 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: CesEventReportV1State, opts?: CustomResourceOptions): CesEventReportV1
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ces_event_report_v1_id: Optional[str] = None,
            detail: Optional[CesEventReportV1DetailArgs] = None,
            event_id: Optional[str] = None,
            event_name: Optional[str] = None,
            event_source: Optional[str] = None,
            time: Optional[float] = None,
            timeouts: Optional[CesEventReportV1TimeoutsArgs] = None) -> CesEventReportV1
    func GetCesEventReportV1(ctx *Context, name string, id IDInput, state *CesEventReportV1State, opts ...ResourceOption) (*CesEventReportV1, error)
    public static CesEventReportV1 Get(string name, Input<string> id, CesEventReportV1State? state, CustomResourceOptions? opts = null)
    public static CesEventReportV1 get(String name, Output<String> id, CesEventReportV1State state, CustomResourceOptions options)
    resources:  _:    type: opentelekomcloud:CesEventReportV1    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CesEventReportV1Id string
    Detail CesEventReportV1Detail
    Specifies the event details. The structure is described below.
    EventId string
    Specifies the event ID.
    EventName string
    Specifies the event name. The value must be 1 to 64 characters long and contain letters, digits, and underscores (_). It must start with a letter.
    EventSource string
    Specifies the event source. The format is service.item. Set this parameter based on the site requirements. service and item each must be a string that starts with a letter and contains 3 to 32 characters, including only letters, digits, and underscores (_).
    Time double

    Specifies when the event occurred, which is a UNIX timestamp (ms).

    NOTE: Since there is a latency between the client and the server, the data timestamp to be inserted should be within the period that starts from one hour before the current time plus 20s to 10 minutes after the current time minus 20s. In this way, the timestamp will be inserted to the database without being affected by the latency. For example, if the current time is 2020.01.30 12:00:30, the timestamp inserted must be within the range [2020.01.30 11:00:50, 2020.01.30 12:10:10]. The corresponding UNIX timestamp is [1580353250, 1580357410].

    Timeouts CesEventReportV1Timeouts
    CesEventReportV1Id string
    Detail CesEventReportV1DetailArgs
    Specifies the event details. The structure is described below.
    EventId string
    Specifies the event ID.
    EventName string
    Specifies the event name. The value must be 1 to 64 characters long and contain letters, digits, and underscores (_). It must start with a letter.
    EventSource string
    Specifies the event source. The format is service.item. Set this parameter based on the site requirements. service and item each must be a string that starts with a letter and contains 3 to 32 characters, including only letters, digits, and underscores (_).
    Time float64

    Specifies when the event occurred, which is a UNIX timestamp (ms).

    NOTE: Since there is a latency between the client and the server, the data timestamp to be inserted should be within the period that starts from one hour before the current time plus 20s to 10 minutes after the current time minus 20s. In this way, the timestamp will be inserted to the database without being affected by the latency. For example, if the current time is 2020.01.30 12:00:30, the timestamp inserted must be within the range [2020.01.30 11:00:50, 2020.01.30 12:10:10]. The corresponding UNIX timestamp is [1580353250, 1580357410].

    Timeouts CesEventReportV1TimeoutsArgs
    cesEventReportV1Id String
    detail CesEventReportV1Detail
    Specifies the event details. The structure is described below.
    eventId String
    Specifies the event ID.
    eventName String
    Specifies the event name. The value must be 1 to 64 characters long and contain letters, digits, and underscores (_). It must start with a letter.
    eventSource String
    Specifies the event source. The format is service.item. Set this parameter based on the site requirements. service and item each must be a string that starts with a letter and contains 3 to 32 characters, including only letters, digits, and underscores (_).
    time Double

    Specifies when the event occurred, which is a UNIX timestamp (ms).

    NOTE: Since there is a latency between the client and the server, the data timestamp to be inserted should be within the period that starts from one hour before the current time plus 20s to 10 minutes after the current time minus 20s. In this way, the timestamp will be inserted to the database without being affected by the latency. For example, if the current time is 2020.01.30 12:00:30, the timestamp inserted must be within the range [2020.01.30 11:00:50, 2020.01.30 12:10:10]. The corresponding UNIX timestamp is [1580353250, 1580357410].

    timeouts CesEventReportV1Timeouts
    cesEventReportV1Id string
    detail CesEventReportV1Detail
    Specifies the event details. The structure is described below.
    eventId string
    Specifies the event ID.
    eventName string
    Specifies the event name. The value must be 1 to 64 characters long and contain letters, digits, and underscores (_). It must start with a letter.
    eventSource string
    Specifies the event source. The format is service.item. Set this parameter based on the site requirements. service and item each must be a string that starts with a letter and contains 3 to 32 characters, including only letters, digits, and underscores (_).
    time number

    Specifies when the event occurred, which is a UNIX timestamp (ms).

    NOTE: Since there is a latency between the client and the server, the data timestamp to be inserted should be within the period that starts from one hour before the current time plus 20s to 10 minutes after the current time minus 20s. In this way, the timestamp will be inserted to the database without being affected by the latency. For example, if the current time is 2020.01.30 12:00:30, the timestamp inserted must be within the range [2020.01.30 11:00:50, 2020.01.30 12:10:10]. The corresponding UNIX timestamp is [1580353250, 1580357410].

    timeouts CesEventReportV1Timeouts
    ces_event_report_v1_id str
    detail CesEventReportV1DetailArgs
    Specifies the event details. The structure is described below.
    event_id str
    Specifies the event ID.
    event_name str
    Specifies the event name. The value must be 1 to 64 characters long and contain letters, digits, and underscores (_). It must start with a letter.
    event_source str
    Specifies the event source. The format is service.item. Set this parameter based on the site requirements. service and item each must be a string that starts with a letter and contains 3 to 32 characters, including only letters, digits, and underscores (_).
    time float

    Specifies when the event occurred, which is a UNIX timestamp (ms).

    NOTE: Since there is a latency between the client and the server, the data timestamp to be inserted should be within the period that starts from one hour before the current time plus 20s to 10 minutes after the current time minus 20s. In this way, the timestamp will be inserted to the database without being affected by the latency. For example, if the current time is 2020.01.30 12:00:30, the timestamp inserted must be within the range [2020.01.30 11:00:50, 2020.01.30 12:10:10]. The corresponding UNIX timestamp is [1580353250, 1580357410].

    timeouts CesEventReportV1TimeoutsArgs
    cesEventReportV1Id String
    detail Property Map
    Specifies the event details. The structure is described below.
    eventId String
    Specifies the event ID.
    eventName String
    Specifies the event name. The value must be 1 to 64 characters long and contain letters, digits, and underscores (_). It must start with a letter.
    eventSource String
    Specifies the event source. The format is service.item. Set this parameter based on the site requirements. service and item each must be a string that starts with a letter and contains 3 to 32 characters, including only letters, digits, and underscores (_).
    time Number

    Specifies when the event occurred, which is a UNIX timestamp (ms).

    NOTE: Since there is a latency between the client and the server, the data timestamp to be inserted should be within the period that starts from one hour before the current time plus 20s to 10 minutes after the current time minus 20s. In this way, the timestamp will be inserted to the database without being affected by the latency. For example, if the current time is 2020.01.30 12:00:30, the timestamp inserted must be within the range [2020.01.30 11:00:50, 2020.01.30 12:10:10]. The corresponding UNIX timestamp is [1580353250, 1580357410].

    timeouts Property Map

    Supporting Types

    CesEventReportV1Detail, CesEventReportV1DetailArgs

    Content string
    Specifies the event content. Enter up to 4,096 characters.
    EventLevel string
    Specifies the event severity. The value can be Critical, Major, Minor, or Info.
    EventState string
    Specifies the event status. The value can be normal, warning, or incident.
    EventType string
    Specifies the event type. Its value can be EVENT.SYS or EVENT.CUSTOM. EVENT.SYS indicates system events that cannot be reported by users. Only custom events can be reported.
    EventUser string
    Specifies the event user.
    GroupId string
    Specifies the resource group the event belongs to. This ID must be an existing resource group ID. This can be attained from Cloud Eye in management console. Resource group ID is listed under Name/ID column in Resource Groups.
    ResourceId string
    Specifies the resource ID.
    ResourceName string
    Specifies the resource name.
    Content string
    Specifies the event content. Enter up to 4,096 characters.
    EventLevel string
    Specifies the event severity. The value can be Critical, Major, Minor, or Info.
    EventState string
    Specifies the event status. The value can be normal, warning, or incident.
    EventType string
    Specifies the event type. Its value can be EVENT.SYS or EVENT.CUSTOM. EVENT.SYS indicates system events that cannot be reported by users. Only custom events can be reported.
    EventUser string
    Specifies the event user.
    GroupId string
    Specifies the resource group the event belongs to. This ID must be an existing resource group ID. This can be attained from Cloud Eye in management console. Resource group ID is listed under Name/ID column in Resource Groups.
    ResourceId string
    Specifies the resource ID.
    ResourceName string
    Specifies the resource name.
    content String
    Specifies the event content. Enter up to 4,096 characters.
    eventLevel String
    Specifies the event severity. The value can be Critical, Major, Minor, or Info.
    eventState String
    Specifies the event status. The value can be normal, warning, or incident.
    eventType String
    Specifies the event type. Its value can be EVENT.SYS or EVENT.CUSTOM. EVENT.SYS indicates system events that cannot be reported by users. Only custom events can be reported.
    eventUser String
    Specifies the event user.
    groupId String
    Specifies the resource group the event belongs to. This ID must be an existing resource group ID. This can be attained from Cloud Eye in management console. Resource group ID is listed under Name/ID column in Resource Groups.
    resourceId String
    Specifies the resource ID.
    resourceName String
    Specifies the resource name.
    content string
    Specifies the event content. Enter up to 4,096 characters.
    eventLevel string
    Specifies the event severity. The value can be Critical, Major, Minor, or Info.
    eventState string
    Specifies the event status. The value can be normal, warning, or incident.
    eventType string
    Specifies the event type. Its value can be EVENT.SYS or EVENT.CUSTOM. EVENT.SYS indicates system events that cannot be reported by users. Only custom events can be reported.
    eventUser string
    Specifies the event user.
    groupId string
    Specifies the resource group the event belongs to. This ID must be an existing resource group ID. This can be attained from Cloud Eye in management console. Resource group ID is listed under Name/ID column in Resource Groups.
    resourceId string
    Specifies the resource ID.
    resourceName string
    Specifies the resource name.
    content str
    Specifies the event content. Enter up to 4,096 characters.
    event_level str
    Specifies the event severity. The value can be Critical, Major, Minor, or Info.
    event_state str
    Specifies the event status. The value can be normal, warning, or incident.
    event_type str
    Specifies the event type. Its value can be EVENT.SYS or EVENT.CUSTOM. EVENT.SYS indicates system events that cannot be reported by users. Only custom events can be reported.
    event_user str
    Specifies the event user.
    group_id str
    Specifies the resource group the event belongs to. This ID must be an existing resource group ID. This can be attained from Cloud Eye in management console. Resource group ID is listed under Name/ID column in Resource Groups.
    resource_id str
    Specifies the resource ID.
    resource_name str
    Specifies the resource name.
    content String
    Specifies the event content. Enter up to 4,096 characters.
    eventLevel String
    Specifies the event severity. The value can be Critical, Major, Minor, or Info.
    eventState String
    Specifies the event status. The value can be normal, warning, or incident.
    eventType String
    Specifies the event type. Its value can be EVENT.SYS or EVENT.CUSTOM. EVENT.SYS indicates system events that cannot be reported by users. Only custom events can be reported.
    eventUser String
    Specifies the event user.
    groupId String
    Specifies the resource group the event belongs to. This ID must be an existing resource group ID. This can be attained from Cloud Eye in management console. Resource group ID is listed under Name/ID column in Resource Groups.
    resourceId String
    Specifies the resource ID.
    resourceName String
    Specifies the resource name.

    CesEventReportV1Timeouts, CesEventReportV1TimeoutsArgs

    Create string
    Delete string
    Create string
    Delete string
    create String
    delete String
    create string
    delete string
    create str
    delete str
    create String
    delete String

    Package Details

    Repository
    opentelekomcloud opentelekomcloud/terraform-provider-opentelekomcloud
    License
    Notes
    This Pulumi package is based on the opentelekomcloud Terraform Provider.
    opentelekomcloud logo
    opentelekomcloud 1.36.42 published on Thursday, Jul 3, 2025 by opentelekomcloud