CreateNotificationServiceActionDetails¶
- 
class oci.events.models.CreateNotificationServiceActionDetails(**kwargs)¶
- Bases: - oci.events.models.action_details.ActionDetails- Create an action that delivers to an Oracle Notification Service topic. - Attributes - ACTION_TYPE_FAAS- str(object=’’) -> str - ACTION_TYPE_ONS- str(object=’’) -> str - ACTION_TYPE_OSS- str(object=’’) -> str - action_type- [Required] Gets the action_type of this ActionDetails. - description- Gets the description of this ActionDetails. - is_enabled- [Required] Gets the is_enabled of this ActionDetails. - topic_id- Gets the topic_id of this CreateNotificationServiceActionDetails. - Methods - __init__(**kwargs)- Initializes a new CreateNotificationServiceActionDetails object with values from keyword arguments. - get_subtype(object_dictionary)- Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. - 
ACTION_TYPE_FAAS= 'FAAS'¶
 - 
ACTION_TYPE_ONS= 'ONS'¶
 - 
ACTION_TYPE_OSS= 'OSS'¶
 - 
__init__(**kwargs)¶
- Initializes a new CreateNotificationServiceActionDetails object with values from keyword arguments. The default value of the - action_typeattribute of this class is- ONSand it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):- Parameters: - action_type (str) – The value to assign to the action_type property of this CreateNotificationServiceActionDetails. Allowed values for this property are: “ONS”, “OSS”, “FAAS”
- is_enabled (bool) – The value to assign to the is_enabled property of this CreateNotificationServiceActionDetails.
- description (str) – The value to assign to the description property of this CreateNotificationServiceActionDetails.
- topic_id (str) – The value to assign to the topic_id property of this CreateNotificationServiceActionDetails.
 
 - 
action_type¶
- [Required] Gets the action_type of this ActionDetails. The action to perform if the condition in the rule matches an event. - ONS: Send to an Oracle Notification Service topic.
- OSS: Send to a stream from Oracle Streaming Service.
- FAAS: Send to an Oracle Functions Service endpoint.
 - Allowed values for this property are: “ONS”, “OSS”, “FAAS” - Returns: - The action_type of this ActionDetails. - Return type: - str 
 - 
description¶
- Gets the description of this ActionDetails. 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. - Returns: - The description of this ActionDetails. - Return type: - str 
 - 
static get_subtype(object_dictionary)¶
- Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. 
 - 
is_enabled¶
- [Required] Gets the is_enabled of this ActionDetails. Whether or not this action is currently enabled. - Example: true - Returns: - The is_enabled of this ActionDetails. - Return type: - bool 
 
-