CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_events_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_EVENTS_ACTION_T Type 🔗
An object that represents an action to trigger for events that match a rule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_events_action_t FORCE AUTHID CURRENT_USER IS OBJECT (
action_type varchar2(32767),
id varchar2(32767),
lifecycle_message varchar2(32767),
lifecycle_state varchar2(32767),
is_enabled number,
description varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_action_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_action_t (
action_type varchar2,
id varchar2,
lifecycle_message varchar2,
lifecycle_state varchar2,
is_enabled number,
description varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
action_type
(required) 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.
(optional) Whether or not this action is currently enabled. Example: `true`
description
(optional) 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.
DBMS_CLOUD_OCI_EVENTS_ACTION_DETAILS_T Type 🔗
Object used to create an action.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_events_action_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
action_type varchar2(32767),
is_enabled number,
description varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_action_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_action_details_t (
action_type varchar2,
is_enabled number,
description varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
action_type
(required) 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 are: 'ONS', 'OSS', 'FAAS'
is_enabled
(required) Whether or not this action is currently enabled. Example: `true`
description
(optional) 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.
DBMS_CLOUD_OCI_EVENTS_ACTION_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_events_action_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_events_action_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_events_action_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_EVENTS_ACTION_DETAILS_LIST_T Type 🔗
A list of ActionDetails objects to create for a rule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_events_action_details_list_t FORCE AUTHID CURRENT_USER IS OBJECT (
actions dbms_cloud_oci_events_action_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_action_details_list_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_action_details_list_t (
actions dbms_cloud_oci_events_action_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
actions
(required) A list of one or more ActionDetails objects.
DBMS_CLOUD_OCI_EVENTS_ACTION_TBL Type 🔗
Nested table type of dbms_cloud_oci_events_action_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_events_action_tbl FORCE IS TABLE OF (dbms_cloud_oci_events_action_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_EVENTS_ACTION_LIST_T Type 🔗
A list of Action objects associated with a rule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_events_action_list_t FORCE AUTHID CURRENT_USER IS OBJECT (
actions dbms_cloud_oci_events_action_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_action_list_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_action_list_t (
actions dbms_cloud_oci_events_action_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
actions
(required) A list of one or more Action objects.
DBMS_CLOUD_OCI_EVENTS_CHANGE_RULE_COMPARTMENT_DETAILS_T Type 🔗
Specifies which compartment to move a rule to when changing a rule's compartment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_events_change_rule_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_change_rule_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_change_rule_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment into which the resource should be moved.
DBMS_CLOUD_OCI_EVENTS_CREATE_FAA_S_ACTION_DETAILS_T Type 🔗
Create an action that delivers to an Oracle Functions Service endpoint.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_events_create_faa_s_action_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_events_action_details_t (
function_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_create_faa_s_action_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_create_faa_s_action_details_t (
action_type varchar2,
is_enabled number,
description varchar2,
function_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_events_create_faa_s_action_details_t is a subtype of the dbms_cloud_oci_events_action_details_t type.
Fields
Field
Description
function_id
(optional) The OCID of a Function hosted by Oracle Functions Service.
DBMS_CLOUD_OCI_EVENTS_CREATE_NOTIFICATION_SERVICE_ACTION_DETAILS_T Type 🔗
Create an action that delivers to an Oracle Notification Service topic.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_events_create_notification_service_action_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_events_action_details_t (
topic_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_create_notification_service_action_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_create_notification_service_action_details_t (
action_type varchar2,
is_enabled number,
description varchar2,
topic_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_events_create_notification_service_action_details_t is a subtype of the dbms_cloud_oci_events_action_details_t type.
Fields
Field
Description
topic_id
(optional) The OCID of the topic to which messages are delivered.
DBMS_CLOUD_OCI_EVENTS_CREATE_RULE_DETAILS_T Type 🔗
Object used to create a rule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_events_create_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
is_enabled number,
condition varchar2(32767),
compartment_id varchar2(32767),
actions dbms_cloud_oci_events_action_details_list_t,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_create_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_create_rule_details_t (
display_name varchar2,
description varchar2,
is_enabled number,
condition varchar2,
compartment_id varchar2,
actions dbms_cloud_oci_events_action_details_list_t,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(required) A string that describes the rule. It does not have to be unique, and you can change it. Avoid entering confidential information.
description
(optional) A string that describes the details of the rule. It does not have to be unique, and you can change it. Avoid entering confidential information.
is_enabled
(required) Whether or not this rule is currently enabled. Example: `true`
condition
(required) A filter that specifies the event that will trigger actions associated with this rule. A few important things to remember about filters: * Fields not mentioned in the condition are ignored. You can create a valid filter that matches all events with two curly brackets: `{}` For more examples, see Matching Events with Filters. * For a condition with fields to match an event, the event must contain all the field names listed in the condition. Field names must appear in the condition with the same nesting structure used in the event. For a list of reference events, see Services that Produce Events. * Rules apply to events in the compartment in which you create them and any child compartments. This means that a condition specified by a rule only matches events emitted from resources in the compartment or any of its child compartments. * Wildcard matching is supported with the asterisk (*) character. For examples of wildcard matching, see Matching Events with Filters Example: `\\\"eventType\\\": \\\"com.oraclecloud.databaseservice.autonomous.database.backup.end\\\"`
compartment_id
(required) The OCID of the compartment to which this rule belongs.
actions
(required)
freeform_tags
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_EVENTS_CREATE_STREAMING_SERVICE_ACTION_DETAILS_T Type 🔗
Create an action that delivers to an Oracle Stream Service stream.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_events_create_streaming_service_action_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_events_action_details_t (
stream_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_create_streaming_service_action_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_create_streaming_service_action_details_t (
action_type varchar2,
is_enabled number,
description varchar2,
stream_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_events_create_streaming_service_action_details_t is a subtype of the dbms_cloud_oci_events_action_details_t type.
Fields
Field
Description
stream_id
(required) The OCID of the stream to which messages are delivered.
DBMS_CLOUD_OCI_EVENTS_ERROR_T Type 🔗
Error details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_events_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_error_t (
code varchar2,
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
code
(required) A short error code that defines the error, meant for programmatic parsing. See API Errors.
message
(required) A human-readable error string.
DBMS_CLOUD_OCI_EVENTS_FAA_S_ACTION_T Type 🔗
An action that delivers to an Oracle Functions endpoint.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_events_faa_s_action_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_events_action_t (
function_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_faa_s_action_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_faa_s_action_t (
action_type varchar2,
id varchar2,
lifecycle_message varchar2,
lifecycle_state varchar2,
is_enabled number,
description varchar2,
function_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_events_faa_s_action_t is a subtype of the dbms_cloud_oci_events_action_t type.
Fields
Field
Description
function_id
(optional) The OCID of a Function hosted by Oracle Functions Service.
DBMS_CLOUD_OCI_EVENTS_NOTIFICATION_SERVICE_ACTION_T Type 🔗
An action that delivers to an Oracle Notification Service topic.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_events_notification_service_action_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_events_action_t (
topic_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_notification_service_action_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_notification_service_action_t (
action_type varchar2,
id varchar2,
lifecycle_message varchar2,
lifecycle_state varchar2,
is_enabled number,
description varchar2,
topic_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_events_notification_service_action_t is a subtype of the dbms_cloud_oci_events_action_t type.
Fields
Field
Description
topic_id
(optional) The OCID of the topic to which messages are delivered.
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_events_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
lifecycle_state varchar2(32767),
condition varchar2(32767),
compartment_id varchar2(32767),
is_enabled number,
freeform_tags json_element_t,
defined_tags json_element_t,
actions dbms_cloud_oci_events_action_list_t,
id varchar2(32767),
time_created timestamp with time zone,
lifecycle_message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_rule_t (
display_name varchar2,
description varchar2,
lifecycle_state varchar2,
condition varchar2,
compartment_id varchar2,
is_enabled number,
freeform_tags json_element_t,
defined_tags json_element_t,
actions dbms_cloud_oci_events_action_list_t,
id varchar2,
time_created timestamp with time zone,
lifecycle_message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(required) A string that describes the rule. It does not have to be unique, and you can change it. Avoid entering confidential information. Example: `\"This rule sends a notification upon completion of DbaaS backup.\"`
description
(optional) A string that describes the details of the rule. It does not have to be unique, and you can change it. Avoid entering confidential information.
(required) A filter that specifies the event that will trigger actions associated with this rule. A few important things to remember about filters: * Fields not mentioned in the condition are ignored. You can create a valid filter that matches all events with two curly brackets: `{}` For more examples, see Matching Events with Filters. * For a condition with fields to match an event, the event must contain all the field names listed in the condition. Field names must appear in the condition with the same nesting structure used in the event. For a list of reference events, see Services that Produce Events. * Rules apply to events in the compartment in which you create them and any child compartments. This means that a condition specified by a rule only matches events emitted from resources in the compartment or any of its child compartments. * Wildcard matching is supported with the asterisk (*) character. For examples of wildcard matching, see Matching Events with Filters Example: `\\\"eventType\\\": \\\"com.oraclecloud.databaseservice.autonomous.database.backup.end\\\"`
compartment_id
(required) The OCID of the compartment to which this rule belongs.
is_enabled
(required) Whether or not this rule is currently enabled. Example: `true`
freeform_tags
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_events_rule_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
lifecycle_state varchar2(32767),
condition varchar2(32767),
compartment_id varchar2(32767),
is_enabled number,
time_created timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_rule_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_rule_summary_t (
id varchar2,
display_name varchar2,
description varchar2,
lifecycle_state varchar2,
condition varchar2,
compartment_id varchar2,
is_enabled number,
time_created timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(required) A string that describes the rule. It does not have to be unique, and you can change it. Avoid entering confidential information. Example: `\"This rule sends a notification upon completion of DbaaS backup.\"`
description
(optional) A string that describes the details of the rule. It does not have to be unique, and you can change it. Avoid entering confidential information.
lifecycle_state
(required)
condition
(required) A filter that specifies the event that will trigger actions associated with this rule. A few important things to remember about filters: * Fields not mentioned in the condition are ignored. You can create a valid filter that matches all events with two curly brackets: `{}` For more examples, see Matching Events with Filters. * For a condition with fields to match an event, the event must contain all the field names listed in the condition. Field names must appear in the condition with the same nesting structure used in the event. For a list of reference events, see Services that Produce Events. * Rules apply to events in the compartment in which you create them and any child compartments. This means that a condition specified by a rule only matches events emitted from resources in the compartment or any of its child compartments. * Wildcard matching is supported with the asterisk (*) character. For examples of wildcard matching, see Matching Events with Filters Example: `\\\"eventType\\\": \\\"com.oraclecloud.databaseservice.autonomous.database.backup.end\\\"`
compartment_id
(required) The OCID of the compartment to which this rule belongs.
is_enabled
(required) Whether or not this rule is currently enabled. Example: `true`
time_created
(required) The time this rule was created, expressed in RFC 3339 timestamp format. Example: `2018-09-12T22:47:12.613Z`
freeform_tags
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_EVENTS_STREAMING_SERVICE_ACTION_T Type 🔗
An action that delivers to an Oracle Stream Service stream.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_events_streaming_service_action_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_events_action_t (
stream_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_streaming_service_action_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_streaming_service_action_t (
action_type varchar2,
id varchar2,
lifecycle_message varchar2,
lifecycle_state varchar2,
is_enabled number,
description varchar2,
stream_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_events_streaming_service_action_t is a subtype of the dbms_cloud_oci_events_action_t type.
Fields
Field
Description
stream_id
(optional) The OCID of the stream to which messages are delivered.
DBMS_CLOUD_OCI_EVENTS_UPDATE_RULE_DETAILS_T Type 🔗
The rule attributes that you can update.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_events_update_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
is_enabled number,
condition varchar2(32767),
actions dbms_cloud_oci_events_action_details_list_t,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_update_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_events_update_rule_details_t (
display_name varchar2,
description varchar2,
is_enabled number,
condition varchar2,
actions dbms_cloud_oci_events_action_details_list_t,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A string that describes the rule. It does not have to be unique, and you can change it. Avoid entering confidential information.
description
(optional) A string that describes the details of the rule. It does not have to be unique, and you can change it. Avoid entering confidential information.
is_enabled
(optional) Whether or not this rule is currently enabled. Example: `true`
condition
(optional) A filter that specifies the event that will trigger actions associated with this rule. A few important things to remember about filters: * Fields not mentioned in the condition are ignored. You can create a valid filter that matches all events with two curly brackets: `{}` For more examples, see Matching Events with Filters. * For a condition with fields to match an event, the event must contain all the field names listed in the condition. Field names must appear in the condition with the same nesting structure used in the event. For a list of reference events, see Services that Produce Events. * Rules apply to events in the compartment in which you create them and any child compartments. This means that a condition specified by a rule only matches events emitted from resources in the compartment or any of its child compartments. * Wildcard matching is supported with the asterisk (*) character. For examples of wildcard matching, see Matching Events with Filters Example: `\\\"eventType\\\": \\\"com.oraclecloud.databaseservice.autonomous.database.backup.end\\\"`
actions
(optional)
freeform_tags
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`