Show / Hide Table of Contents

Class Action

An object that represents an action to trigger for events that match a rule.

Inheritance
object
Action
FaaSAction
NotificationServiceAction
StreamingServiceAction
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.EventsService.Models
Assembly: OCI.DotNetSDK.Events.dll
Syntax
[JsonConverter(typeof(ActionModelConverter))]
public class Action

Properties

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

A string that describes the details of the action. It does not have to be unique, and you can change it. Avoid entering confidential information.

Id

Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

The OCID of the action.

Remarks

Required

IsEnabled

Declaration
[JsonProperty(PropertyName = "isEnabled")]
public bool? IsEnabled { get; set; }
Property Value
Type Description
bool?

Whether or not this action is currently enabled.
Example: true

LifecycleMessage

Declaration
[Required(ErrorMessage = "LifecycleMessage is required.")]
[JsonProperty(PropertyName = "lifecycleMessage")]
public string LifecycleMessage { get; set; }
Property Value
Type Description
string

A message generated by the Events service about the current state of this action.

Remarks

Required

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Action.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
Action.LifecycleStateEnum?

The current state of the rule.

Remarks

Required

In this article
Back to top