opentelekomcloud.CesEventReportV1
Explore with Pulumi AI
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
Ces
Event Report V1Detail - Specifies the event details. The structure is described below.
- Event
Name string - Specifies the event name. The value must be
1
to64
characters long and contain letters, digits, and underscores (_). It must start with a letter. - Event
Source string - Specifies the event source. The format is
service.item
. Set this parameter based on the site requirements.service
anditem
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].
- Ces
Event stringReport V1Id - Timeouts
Ces
Event Report V1Timeouts
- Detail
Ces
Event Report V1Detail Args - Specifies the event details. The structure is described below.
- Event
Name string - Specifies the event name. The value must be
1
to64
characters long and contain letters, digits, and underscores (_). It must start with a letter. - Event
Source string - Specifies the event source. The format is
service.item
. Set this parameter based on the site requirements.service
anditem
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].
- Ces
Event stringReport V1Id - Timeouts
Ces
Event Report V1Timeouts Args
- detail
Ces
Event Report V1Detail - Specifies the event details. The structure is described below.
- event
Name String - Specifies the event name. The value must be
1
to64
characters long and contain letters, digits, and underscores (_). It must start with a letter. - event
Source String - Specifies the event source. The format is
service.item
. Set this parameter based on the site requirements.service
anditem
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].
- ces
Event StringReport V1Id - timeouts
Ces
Event Report V1Timeouts
- detail
Ces
Event Report V1Detail - Specifies the event details. The structure is described below.
- event
Name string - Specifies the event name. The value must be
1
to64
characters long and contain letters, digits, and underscores (_). It must start with a letter. - event
Source string - Specifies the event source. The format is
service.item
. Set this parameter based on the site requirements.service
anditem
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].
- ces
Event stringReport V1Id - timeouts
Ces
Event Report V1Timeouts
- detail
Ces
Event Report V1Detail Args - Specifies the event details. The structure is described below.
- event_
name str - Specifies the event name. The value must be
1
to64
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
anditem
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_ strreport_ v1_ id - timeouts
Ces
Event Report V1Timeouts Args
- detail Property Map
- Specifies the event details. The structure is described below.
- event
Name String - Specifies the event name. The value must be
1
to64
characters long and contain letters, digits, and underscores (_). It must start with a letter. - event
Source String - Specifies the event source. The format is
service.item
. Set this parameter based on the site requirements.service
anditem
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].
- ces
Event StringReport V1Id - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the CesEventReportV1 resource produces the following output properties:
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.
- Ces
Event stringReport V1Id - Detail
Ces
Event Report V1Detail - Specifies the event details. The structure is described below.
- Event
Id string - Specifies the event ID.
- Event
Name string - Specifies the event name. The value must be
1
to64
characters long and contain letters, digits, and underscores (_). It must start with a letter. - Event
Source string - Specifies the event source. The format is
service.item
. Set this parameter based on the site requirements.service
anditem
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
Ces
Event Report V1Timeouts
- Ces
Event stringReport V1Id - Detail
Ces
Event Report V1Detail Args - Specifies the event details. The structure is described below.
- Event
Id string - Specifies the event ID.
- Event
Name string - Specifies the event name. The value must be
1
to64
characters long and contain letters, digits, and underscores (_). It must start with a letter. - Event
Source string - Specifies the event source. The format is
service.item
. Set this parameter based on the site requirements.service
anditem
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
Ces
Event Report V1Timeouts Args
- ces
Event StringReport V1Id - detail
Ces
Event Report V1Detail - Specifies the event details. The structure is described below.
- event
Id String - Specifies the event ID.
- event
Name String - Specifies the event name. The value must be
1
to64
characters long and contain letters, digits, and underscores (_). It must start with a letter. - event
Source String - Specifies the event source. The format is
service.item
. Set this parameter based on the site requirements.service
anditem
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
Ces
Event Report V1Timeouts
- ces
Event stringReport V1Id - detail
Ces
Event Report V1Detail - Specifies the event details. The structure is described below.
- event
Id string - Specifies the event ID.
- event
Name string - Specifies the event name. The value must be
1
to64
characters long and contain letters, digits, and underscores (_). It must start with a letter. - event
Source string - Specifies the event source. The format is
service.item
. Set this parameter based on the site requirements.service
anditem
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
Ces
Event Report V1Timeouts
- ces_
event_ strreport_ v1_ id - detail
Ces
Event Report V1Detail Args - 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
to64
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
anditem
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
Ces
Event Report V1Timeouts Args
- ces
Event StringReport V1Id - detail Property Map
- Specifies the event details. The structure is described below.
- event
Id String - Specifies the event ID.
- event
Name String - Specifies the event name. The value must be
1
to64
characters long and contain letters, digits, and underscores (_). It must start with a letter. - event
Source String - Specifies the event source. The format is
service.item
. Set this parameter based on the site requirements.service
anditem
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. - Event
Level string - Specifies the event severity. The value can be
Critical
,Major
,Minor
, orInfo
. - Event
State string - Specifies the event status. The value can be
normal
,warning
, orincident
. - Event
Type string - Specifies the event type. Its value can be
EVENT.SYS
orEVENT.CUSTOM
.EVENT.SYS
indicates system events that cannot be reported by users. Only custom events can be reported. - Event
User string - Specifies the event user.
- Group
Id 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 underName/ID
column inResource Groups
. - Resource
Id string - Specifies the resource ID.
- Resource
Name string - Specifies the resource name.
- Content string
- Specifies the event content. Enter up to
4,096
characters. - Event
Level string - Specifies the event severity. The value can be
Critical
,Major
,Minor
, orInfo
. - Event
State string - Specifies the event status. The value can be
normal
,warning
, orincident
. - Event
Type string - Specifies the event type. Its value can be
EVENT.SYS
orEVENT.CUSTOM
.EVENT.SYS
indicates system events that cannot be reported by users. Only custom events can be reported. - Event
User string - Specifies the event user.
- Group
Id 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 underName/ID
column inResource Groups
. - Resource
Id string - Specifies the resource ID.
- Resource
Name string - Specifies the resource name.
- content String
- Specifies the event content. Enter up to
4,096
characters. - event
Level String - Specifies the event severity. The value can be
Critical
,Major
,Minor
, orInfo
. - event
State String - Specifies the event status. The value can be
normal
,warning
, orincident
. - event
Type String - Specifies the event type. Its value can be
EVENT.SYS
orEVENT.CUSTOM
.EVENT.SYS
indicates system events that cannot be reported by users. Only custom events can be reported. - event
User String - Specifies the event user.
- group
Id 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 underName/ID
column inResource Groups
. - resource
Id String - Specifies the resource ID.
- resource
Name String - Specifies the resource name.
- content string
- Specifies the event content. Enter up to
4,096
characters. - event
Level string - Specifies the event severity. The value can be
Critical
,Major
,Minor
, orInfo
. - event
State string - Specifies the event status. The value can be
normal
,warning
, orincident
. - event
Type string - Specifies the event type. Its value can be
EVENT.SYS
orEVENT.CUSTOM
.EVENT.SYS
indicates system events that cannot be reported by users. Only custom events can be reported. - event
User string - Specifies the event user.
- group
Id 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 underName/ID
column inResource Groups
. - resource
Id string - Specifies the resource ID.
- resource
Name 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
, orInfo
. - event_
state str - Specifies the event status. The value can be
normal
,warning
, orincident
. - event_
type str - Specifies the event type. Its value can be
EVENT.SYS
orEVENT.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 underName/ID
column inResource 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. - event
Level String - Specifies the event severity. The value can be
Critical
,Major
,Minor
, orInfo
. - event
State String - Specifies the event status. The value can be
normal
,warning
, orincident
. - event
Type String - Specifies the event type. Its value can be
EVENT.SYS
orEVENT.CUSTOM
.EVENT.SYS
indicates system events that cannot be reported by users. Only custom events can be reported. - event
User String - Specifies the event user.
- group
Id 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 underName/ID
column inResource Groups
. - resource
Id String - Specifies the resource ID.
- resource
Name String - Specifies the resource name.
CesEventReportV1Timeouts, CesEventReportV1TimeoutsArgs
Package Details
- Repository
- opentelekomcloud opentelekomcloud/terraform-provider-opentelekomcloud
- License
- Notes
- This Pulumi package is based on the
opentelekomcloud
Terraform Provider.