Cloud Guard Common Types
DBMS_CLOUD_OCI_CLOUD_GUARD_VARCHAR2_TBL Type
Nested table type of varchar2(32767).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_CONTINUOUS_QUERY_START_POLICY_T Type
Continuous query start policy object
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_continuous_query_start_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
start_policy_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_continuous_query_start_policy_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_continuous_query_start_policy_t (
start_policy_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field | Description |
---|---|
|
(required) policy used for deciding the query start time Allowed values are: 'NO_DELAY_START_POLICY', 'ABSOLUTE_TIME_START_POLICY' |
DBMS_CLOUD_OCI_CLOUD_GUARD_ABSOLUTE_TIME_START_POLICY_T Type
Policy that defines the exact start time.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_absolute_time_start_policy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_guard_continuous_query_start_policy_t (
query_start_time timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_absolute_time_start_policy_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_absolute_time_start_policy_t (
start_policy_type varchar2,
query_start_time timestamp with time zone
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cloud_guard_absolute_time_start_policy_t
is a subtype of the dbms_cloud_oci_cloud_guard_continuous_query_start_policy_t
type.
Fields
Field | Description |
---|---|
|
(optional) Time when the query can start, if not specified it can start immediately. |
DBMS_CLOUD_OCI_CLOUD_GUARD_POLITICAL_LOCATION_T Type
Political location of a problem
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_political_location_t FORCE AUTHID CURRENT_USER IS OBJECT (
city varchar2(32767),
state varchar2(32767),
country varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_political_location_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_political_location_t (
city varchar2,
state varchar2,
country varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) City |
|
(required) State |
|
(required) Country |
DBMS_CLOUD_OCI_CLOUD_GUARD_GEOGRAPHICAL_LOCATION_T Type
Geographical Location of a problem
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_geographical_location_t FORCE AUTHID CURRENT_USER IS OBJECT (
latitude number,
longitude number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_geographical_location_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_geographical_location_t (
latitude number,
longitude number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Latitude |
|
(required) Longitude |
DBMS_CLOUD_OCI_CLOUD_GUARD_ACTIVITY_PROBLEM_AGGREGATION_T Type
Provides the dimensions and their corresponding count.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_activity_problem_aggregation_t FORCE AUTHID CURRENT_USER IS OBJECT (
dimensions_map json_element_t,
political_location dbms_cloud_oci_cloud_guard_political_location_t,
geographical_location dbms_cloud_oci_cloud_guard_geographical_location_t,
l_count number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_activity_problem_aggregation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_activity_problem_aggregation_t (
dimensions_map json_element_t,
political_location dbms_cloud_oci_cloud_guard_political_location_t,
geographical_location dbms_cloud_oci_cloud_guard_geographical_location_t,
l_count number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The key-value pairs of dimensions and their names. |
|
(required) |
|
(required) |
|
(required) The number of occurences with given dimension/s |
DBMS_CLOUD_OCI_CLOUD_GUARD_ACTIVITY_PROBLEM_AGGREGATION_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_activity_problem_aggregation_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_activity_problem_aggregation_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_activity_problem_aggregation_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_ACTIVITY_PROBLEM_AGGREGATION_COLLECTION_T Type
Activity Problem Aggregation Collection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_activity_problem_aggregation_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_activity_problem_aggregation_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_activity_problem_aggregation_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_activity_problem_aggregation_collection_t (
items dbms_cloud_oci_cloud_guard_activity_problem_aggregation_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The items consists of all the ActivityProblemAggregation objects. |
DBMS_CLOUD_OCI_CLOUD_GUARD_ADD_COMPARTMENT_DETAILS_T Type
An existing compartment to add to a security zone
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_add_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_add_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_add_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The OCID of the compartment to be added to the security zone. |
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_SELECTED_T Type
Target Selection eg select ALL or select on basis of TargetResourceTypes or TargetIds.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_selected_t FORCE AUTHID CURRENT_USER IS OBJECT (
kind varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_selected_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_selected_t (
kind varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field | Description |
---|---|
|
(required) Target selection. Allowed values are: 'ALL', 'TARGETTYPES', 'TARGETIDS' |
DBMS_CLOUD_OCI_CLOUD_GUARD_ALL_TARGETS_SELECTED_T Type
All Targets selected.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_all_targets_selected_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_guard_target_selected_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_all_targets_selected_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_all_targets_selected_t (
kind varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cloud_guard_all_targets_selected_t
is a subtype of the dbms_cloud_oci_cloud_guard_target_selected_t
type.
DBMS_CLOUD_OCI_CLOUD_GUARD_ATTACH_TARGET_DETECTOR_RECIPE_DETAILS_T Type
The information required to create TargetDetectorRecipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_attach_target_detector_recipe_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
detector_recipe_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_attach_target_detector_recipe_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_attach_target_detector_recipe_details_t (
detector_recipe_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) DetectorRecipe Identifier |
DBMS_CLOUD_OCI_CLOUD_GUARD_ATTACH_TARGET_RESPONDER_RECIPE_DETAILS_T Type
The information required to create TargetResponderRecipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_attach_target_responder_recipe_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
responder_recipe_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_attach_target_responder_recipe_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_attach_target_responder_recipe_details_t (
responder_recipe_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) ResponderRecipe Identifier |
DBMS_CLOUD_OCI_CLOUD_GUARD_CANDIDATE_RESPONDER_RULE_T Type
Candidate Responder Rule list in Detector rule
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_candidate_responder_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
is_preferred number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_candidate_responder_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_candidate_responder_rule_t (
id varchar2,
display_name varchar2,
is_preferred number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) The unique identifier of the Responder rule |
|
(optional) The display name of the Responder rule |
|
(optional) Preferred state |
DBMS_CLOUD_OCI_CLOUD_GUARD_CHANGE_DATA_SOURCE_COMPARTMENT_DETAILS_T Type
Changing compartmentId for DataSource
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_change_data_source_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_change_data_source_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_change_data_source_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The OCID of the compartment into which the DataSource should be moved |
DBMS_CLOUD_OCI_CLOUD_GUARD_CHANGE_DETECTOR_RECIPE_COMPARTMENT_DETAILS_T Type
Changing compartmentId for DetectorRecipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_change_detector_recipe_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_change_detector_recipe_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_change_detector_recipe_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The OCID of the compartment into which the DetectorRecipe should be moved |
DBMS_CLOUD_OCI_CLOUD_GUARD_CHANGE_MANAGED_LIST_COMPARTMENT_DETAILS_T Type
Changing compartmentId for ManagedList
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_change_managed_list_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_change_managed_list_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_change_managed_list_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The OCID of the compartment into which the ManagedList should be moved |
DBMS_CLOUD_OCI_CLOUD_GUARD_CHANGE_RESPONDER_RECIPE_COMPARTMENT_DETAILS_T Type
Changing compartmentId for ResponderRecipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_change_responder_recipe_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_change_responder_recipe_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_change_responder_recipe_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The OCID of the compartment into which the ResponderRecipe should be moved |
DBMS_CLOUD_OCI_CLOUD_GUARD_CHANGE_SECURITY_POLICY_COMPARTMENT_DETAILS_T Type
The information to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_change_security_policy_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_change_security_policy_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_change_security_policy_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The OCID of the compartment into which the resource should be moved. |
DBMS_CLOUD_OCI_CLOUD_GUARD_CHANGE_SECURITY_RECIPE_COMPARTMENT_DETAILS_T Type
The compartment for the security zone recipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_change_security_recipe_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_change_security_recipe_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_change_security_recipe_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The OCID of the compartment into which the resource should be moved. |
DBMS_CLOUD_OCI_CLOUD_GUARD_CHANGE_SECURITY_ZONE_COMPARTMENT_DETAILS_T Type
The compartment for the security zone
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_change_security_zone_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_change_security_zone_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_change_security_zone_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The OCID of the compartment into which the resource should be moved. |
DBMS_CLOUD_OCI_CLOUD_GUARD_CONDITION_T Type
Base condition object
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_condition_t FORCE AUTHID CURRENT_USER IS OBJECT (
kind varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_condition_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_condition_t (
kind varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field | Description |
---|---|
|
(required) Type of condition object Allowed values are: 'COMPOSITE', 'SIMPLE' |
DBMS_CLOUD_OCI_CLOUD_GUARD_COMPOSITE_CONDITION_T Type
Composite Condition object with nested Condition
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_composite_condition_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_guard_condition_t (
left_operand dbms_cloud_oci_cloud_guard_condition_t,
composite_operator varchar2(32767),
right_operand dbms_cloud_oci_cloud_guard_condition_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_composite_condition_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_composite_condition_t (
kind varchar2,
left_operand dbms_cloud_oci_cloud_guard_condition_t,
composite_operator varchar2,
right_operand dbms_cloud_oci_cloud_guard_condition_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cloud_guard_composite_condition_t
is a subtype of the dbms_cloud_oci_cloud_guard_condition_t
type.
Fields
Field | Description |
---|---|
|
(optional) |
|
(optional) Allowed values are: 'AND', 'OR' |
|
(optional) |
DBMS_CLOUD_OCI_CLOUD_GUARD_CONDITION_GROUP_T Type
Condition configured on a target
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_condition_group_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
condition dbms_cloud_oci_cloud_guard_condition_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_condition_group_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_condition_group_t (
compartment_id varchar2,
condition dbms_cloud_oci_cloud_guard_condition_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) compartment associated with condition |
|
(required) |
DBMS_CLOUD_OCI_CLOUD_GUARD_CONDITION_OPERATOR_T Type
Conditions related to the parameter data type
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_condition_operator_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
display_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_condition_operator_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_condition_operator_t (
name varchar2,
display_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) operator name Allowed values are: 'AND', 'OR', 'IN', 'NOT_IN', 'EQUALS', 'NOT_EQUALS', 'LESS_THAN', 'GREATER_THAN', 'RANGE' |
|
(required) display name of the operator |
DBMS_CLOUD_OCI_CLOUD_GUARD_CONDITION_OPERATOR_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_condition_operator_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_condition_operator_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_condition_operator_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_OPERATOR_SUMMARY_T Type
Summary of Operator
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_operator_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
display_name varchar2(32767),
datatype varchar2(32767),
managed_listtype varchar2(32767),
filter_type varchar2(32767),
operators dbms_cloud_oci_cloud_guard_condition_operator_tbl,
multi_list_types dbms_cloud_oci_cloud_guard_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_operator_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_operator_summary_t (
name varchar2,
display_name varchar2,
datatype varchar2,
managed_listtype varchar2,
filter_type varchar2,
operators dbms_cloud_oci_cloud_guard_condition_operator_tbl,
multi_list_types dbms_cloud_oci_cloud_guard_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) name of the operand |
|
(required) display name of the operand |
|
(required) data type of operand |
|
(required) operand list type |
|
(required) Filter type can be config filter or condition filter Allowed values are: 'CONDITION', 'CONFIG' |
|
(required) List of parameters |
|
(optional) configuration value type list for multilist data type |
DBMS_CLOUD_OCI_CLOUD_GUARD_OPERATOR_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_operator_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_operator_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_operator_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_RULE_SUMMARY_T Type
Summary of rules
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_rule_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
description varchar2(32767),
parameters dbms_cloud_oci_cloud_guard_operator_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_rule_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_rule_summary_t (
id varchar2,
description varchar2,
parameters dbms_cloud_oci_cloud_guard_operator_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) id of the rule |
|
(required) description of the rule |
|
(required) List of parameters applicable for rule |
DBMS_CLOUD_OCI_CLOUD_GUARD_RULE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_rule_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_rule_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_rule_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_RESOURCE_TYPE_SUMMARY_T Type
Summary of ResourceType
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_resource_type_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
display_name varchar2(32767),
rules dbms_cloud_oci_cloud_guard_rule_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_type_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_type_summary_t (
name varchar2,
display_name varchar2,
rules dbms_cloud_oci_cloud_guard_rule_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) name of the resource |
|
(required) display name of the resource |
|
(optional) List of rules |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESOURCE_TYPE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_resource_type_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_resource_type_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_resource_type_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_SERVICE_TYPE_SUMMARY_T Type
Summary of Service type
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_service_type_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
resource_types dbms_cloud_oci_cloud_guard_resource_type_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_service_type_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_service_type_summary_t (
name varchar2,
resource_types dbms_cloud_oci_cloud_guard_resource_type_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) name of the service type |
|
(required) List of Resource |
DBMS_CLOUD_OCI_CLOUD_GUARD_SERVICE_TYPE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_service_type_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_service_type_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_service_type_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_CONDITION_METADATA_TYPE_T Type
condition type provided by cloud guard
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_condition_metadata_type_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
service_types dbms_cloud_oci_cloud_guard_service_type_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_condition_metadata_type_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_condition_metadata_type_t (
name varchar2,
service_types dbms_cloud_oci_cloud_guard_service_type_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Name used to identify |
|
(required) collection of Service type |
DBMS_CLOUD_OCI_CLOUD_GUARD_CONDITION_METADATA_TYPE_SUMMARY_T Type
condition type provided by cloud guard
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_condition_metadata_type_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
description varchar2(32767),
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_condition_metadata_type_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_condition_metadata_type_summary_t (
id varchar2,
description varchar2,
lifecycle_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Name used to identify |
|
(required) Display name of the condition type |
|
(optional) The current state of the resource. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
DBMS_CLOUD_OCI_CLOUD_GUARD_CONDITION_METADATA_TYPE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_condition_metadata_type_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_condition_metadata_type_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_condition_metadata_type_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_CONDITION_METADATA_TYPE_COLLECTION_T Type
condition type provided by cloud guard
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_condition_metadata_type_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_condition_metadata_type_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_condition_metadata_type_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_condition_metadata_type_collection_t (
items dbms_cloud_oci_cloud_guard_condition_metadata_type_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) collection of condition types |
DBMS_CLOUD_OCI_CLOUD_GUARD_CONFIG_VALUE_T Type
configuration item for multi list data type
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_config_value_t FORCE AUTHID CURRENT_USER IS OBJECT (
list_type varchar2(32767),
managed_list_type varchar2(32767),
value varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_config_value_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_config_value_t (
list_type varchar2,
managed_list_type varchar2,
value varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) configuration list item type, either CUSTOM or MANAGED Allowed values are: 'MANAGED', 'CUSTOM' |
|
(required) type of the managed list |
|
(required) configuration value |
DBMS_CLOUD_OCI_CLOUD_GUARD_CONFIGURATION_T Type
Cloud Guard configuration details of a tenancy.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
reporting_region varchar2(32767),
status varchar2(32767),
self_manage_resources number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_configuration_t (
reporting_region varchar2,
status varchar2,
self_manage_resources number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The reporting region value |
|
(optional) Status of Cloud Guard Tenant Allowed values are: 'ENABLED', 'DISABLED' |
|
(optional) Identifies if Oracle managed resources were created by customers |
DBMS_CLOUD_OCI_CLOUD_GUARD_CREATE_DATA_MASK_RULE_DETAILS_T Type
The information about new Data Mask Rule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_create_data_mask_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
compartment_id varchar2(32767),
description varchar2(32767),
iam_group_id varchar2(32767),
target_selected dbms_cloud_oci_cloud_guard_target_selected_t,
data_mask_categories dbms_cloud_oci_cloud_guard_varchar2_tbl,
data_mask_rule_status varchar2(32767),
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_data_mask_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_data_mask_rule_details_t (
display_name varchar2,
compartment_id varchar2,
description varchar2,
iam_group_id varchar2,
target_selected dbms_cloud_oci_cloud_guard_target_selected_t,
data_mask_categories dbms_cloud_oci_cloud_guard_varchar2_tbl,
data_mask_rule_status varchar2,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Data mask rule name. Avoid entering confidential information. |
|
(required) Compartment Identifier where the resource is created |
|
(optional) The data mask rule description. Avoid entering confidential information. |
|
(required) IAM Group id associated with the data mask rule |
|
(required) |
|
(required) Data Mask Categories Allowed values are: 'ACTOR', 'PII', 'PHI', 'FINANCIAL', 'LOCATION', 'CUSTOM' |
|
(optional) The status of the dataMaskRule. Allowed values are: 'ENABLED', 'DISABLED' |
|
(optional) The current state of the DataMaskRule. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_DATA_SOURCE_DETAILS_T Type
Details specific to the data source type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_data_source_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
data_source_feed_provider varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_source_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_source_details_t (
data_source_feed_provider varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field | Description |
---|---|
|
(required) Possible type of dataSourceFeed Provider(LoggingQuery) Allowed values are: 'LOGGINGQUERY' |
DBMS_CLOUD_OCI_CLOUD_GUARD_CREATE_DATA_SOURCE_DETAILS_T Type
Creation of Data Source.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_create_data_source_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
compartment_id varchar2(32767),
data_source_feed_provider varchar2(32767),
data_source_details dbms_cloud_oci_cloud_guard_data_source_details_t,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_data_source_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_data_source_details_t (
display_name varchar2,
compartment_id varchar2,
data_source_feed_provider varchar2,
data_source_details dbms_cloud_oci_cloud_guard_data_source_details_t,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Data Source display name. |
|
(required) CompartmentId of Data Source. |
|
(required) Possible type of dataSourceFeed Provider(LoggingQuery) Allowed values are: 'LOGGINGQUERY' |
|
(optional) |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_CONFIG_VALUE_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_config_value_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_config_value_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_config_value_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_DETECTOR_CONFIGURATION_T Type
A single configuration applied to a detector
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_detector_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
config_key varchar2(32767),
name varchar2(32767),
value varchar2(32767),
data_type varchar2(32767),
l_values dbms_cloud_oci_cloud_guard_config_value_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_configuration_t (
config_key varchar2,
name varchar2,
value varchar2,
data_type varchar2,
l_values dbms_cloud_oci_cloud_guard_config_value_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique name of the configuration |
|
(required) configuration name |
|
(optional) configuration value |
|
(optional) configuration data type |
|
(optional) List of configuration values |
DBMS_CLOUD_OCI_CLOUD_GUARD_ENTITIES_MAPPING_T Type
Data Source Entities mappings
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_entities_mapping_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
query_field varchar2(32767),
entity_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_entities_mapping_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_entities_mapping_t (
display_name varchar2,
query_field varchar2,
entity_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) The display name of entity |
|
(required) The entity value mapped to a data source query |
|
(optional) Possible type of entity Allowed values are: 'EXTERNAL_IP', 'INTERNAL_IP', 'TEXT', 'JSON_LIST' |
DBMS_CLOUD_OCI_CLOUD_GUARD_DETECTOR_CONFIGURATION_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_detector_configuration_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_detector_configuration_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_detector_configuration_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_ENTITIES_MAPPING_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_entities_mapping_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_entities_mapping_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_entities_mapping_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_DETECTOR_RULE_DETAILS_T Type
Details of a Detector Rule to be overriden in Detector Recipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_detector_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_enabled number,
risk_level varchar2(32767),
configurations dbms_cloud_oci_cloud_guard_detector_configuration_tbl,
condition dbms_cloud_oci_cloud_guard_condition_t,
labels dbms_cloud_oci_cloud_guard_varchar2_tbl,
description varchar2(32767),
recommendation varchar2(32767),
data_source_id varchar2(32767),
entities_mappings dbms_cloud_oci_cloud_guard_entities_mapping_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_detector_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_detector_rule_details_t (
is_enabled number,
risk_level varchar2,
configurations dbms_cloud_oci_cloud_guard_detector_configuration_tbl,
condition dbms_cloud_oci_cloud_guard_condition_t,
labels dbms_cloud_oci_cloud_guard_varchar2_tbl,
description varchar2,
recommendation varchar2,
data_source_id varchar2,
entities_mappings dbms_cloud_oci_cloud_guard_entities_mapping_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Enables the control |
|
(optional) The Risk Level Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR' |
|
(optional) Configuration details |
|
(optional) |
|
(optional) user defined labels for a detector rule |
|
(optional) Description for DetectorRecipeDetectorRule. |
|
(optional) Recommendation for DetectorRecipeDetectorRule |
|
(optional) The id of the attached DataSource. |
|
(optional) Data Source entities mapping for a Detector Rule |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_DETECTOR_RECIPE_DETECTOR_RULE_T Type
The details to be updated in DetectorRule
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_detector_recipe_detector_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
detector_rule_id varchar2(32767),
details dbms_cloud_oci_cloud_guard_update_detector_rule_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_detector_recipe_detector_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_detector_recipe_detector_rule_t (
detector_rule_id varchar2,
details dbms_cloud_oci_cloud_guard_update_detector_rule_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) DetectorRecipeRule Identifier |
|
(required) |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_DETECTOR_RECIPE_DETECTOR_RULE_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_update_detector_recipe_detector_rule_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_detector_recipe_detector_rule_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_update_detector_recipe_detector_rule_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_CREATE_DETECTOR_RECIPE_DETAILS_T Type
Create of Detector recipe.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_create_detector_recipe_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
detector varchar2(32767),
source_detector_recipe_id varchar2(32767),
compartment_id varchar2(32767),
detector_rules dbms_cloud_oci_cloud_guard_update_detector_recipe_detector_rule_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_detector_recipe_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_detector_recipe_details_t (
display_name varchar2,
description varchar2,
detector varchar2,
source_detector_recipe_id varchar2,
compartment_id varchar2,
detector_rules dbms_cloud_oci_cloud_guard_update_detector_recipe_detector_rule_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Detector recipe display name. Avoid entering confidential information. |
|
(optional) Detector recipe description. Avoid entering confidential information. |
|
(optional) detector for the rule Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR' |
|
(optional) The id of the source detector recipe. |
|
(required) Compartment Identifier |
|
(optional) Detector Rules to override from source detector recipe |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_CREATE_DETECTOR_RULE_DETAILS_T Type
Details of a Detector Rule to be created in Detector Recipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_create_detector_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
source_detector_rule_id varchar2(32767),
name varchar2(32767),
description varchar2(32767),
is_enabled number,
risk_level varchar2(32767),
configurations dbms_cloud_oci_cloud_guard_detector_configuration_tbl,
condition dbms_cloud_oci_cloud_guard_condition_t,
labels dbms_cloud_oci_cloud_guard_varchar2_tbl,
recommendation varchar2(32767),
data_source_id varchar2(32767),
entities_mappings dbms_cloud_oci_cloud_guard_entities_mapping_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_detector_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_detector_rule_details_t (
source_detector_rule_id varchar2,
name varchar2,
description varchar2,
is_enabled number,
risk_level varchar2,
configurations dbms_cloud_oci_cloud_guard_detector_configuration_tbl,
condition dbms_cloud_oci_cloud_guard_condition_t,
labels dbms_cloud_oci_cloud_guard_varchar2_tbl,
recommendation varchar2,
data_source_id varchar2,
entities_mappings dbms_cloud_oci_cloud_guard_entities_mapping_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Id of source detector rule |
|
(required) Name of the detector rule |
|
(optional) Description of the detector rule |
|
(optional) Identifies state for detector rule |
|
(optional) The Risk Level Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR' |
|
(optional) Configuration details |
|
(optional) |
|
(optional) user defined labels for a detector rule |
|
(optional) Recommendations of the detector rule |
|
(optional) ocid of the data source which needs to attached |
|
(optional) Data Source entities mapping for a Detector Rule |
DBMS_CLOUD_OCI_CLOUD_GUARD_CREATE_DETECTOR_RECIPE_DETECTOR_RULE_DETAILS_T Type
Create detector rule in a detector recipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_create_detector_recipe_detector_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
details dbms_cloud_oci_cloud_guard_create_detector_rule_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_detector_recipe_detector_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_detector_recipe_detector_rule_details_t (
details dbms_cloud_oci_cloud_guard_create_detector_rule_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) |
DBMS_CLOUD_OCI_CLOUD_GUARD_CREATE_MANAGED_LIST_DETAILS_T Type
Create ManagedList
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_create_managed_list_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
compartment_id varchar2(32767),
source_managed_list_id varchar2(32767),
description varchar2(32767),
list_type varchar2(32767),
list_items dbms_cloud_oci_cloud_guard_varchar2_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_managed_list_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_managed_list_details_t (
display_name varchar2,
compartment_id varchar2,
source_managed_list_id varchar2,
description varchar2,
list_type varchar2,
list_items dbms_cloud_oci_cloud_guard_varchar2_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Managed list display name. Avoid entering confidential information. |
|
(required) Compartment Identifier |
|
(optional) OCID of the Source ManagedList |
|
(optional) Managed list description. Avoid entering confidential information. |
|
(optional) type of the list Allowed values are: 'CIDR_BLOCK', 'USERS', 'GROUPS', 'IPV4ADDRESS', 'IPV6ADDRESS', 'RESOURCE_OCID', 'REGION', 'COUNTRY', 'STATE', 'CITY', 'TAGS', 'GENERIC' |
|
(optional) List of ManagedListItem |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_RESPONDER_RULE_DETAILS_T Type
Details of UpdateResponderRuleDetails.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_responder_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_enabled number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_responder_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_responder_rule_details_t (
is_enabled number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Identifies state for ResponderRule |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_RESPONDER_RECIPE_RESPONDER_RULE_T Type
The details to be updated in ResponderRule
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_responder_recipe_responder_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
responder_rule_id varchar2(32767),
details dbms_cloud_oci_cloud_guard_update_responder_rule_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_responder_recipe_responder_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_responder_recipe_responder_rule_t (
responder_rule_id varchar2,
details dbms_cloud_oci_cloud_guard_update_responder_rule_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) ResponderRecipeRule Identifier |
|
(required) |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_RESPONDER_RECIPE_RESPONDER_RULE_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_update_responder_recipe_responder_rule_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_responder_recipe_responder_rule_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_update_responder_recipe_responder_rule_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_CREATE_RESPONDER_RECIPE_DETAILS_T Type
Details of ResponderRecipe.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_create_responder_recipe_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
source_responder_recipe_id varchar2(32767),
compartment_id varchar2(32767),
responder_rules dbms_cloud_oci_cloud_guard_update_responder_recipe_responder_rule_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_responder_recipe_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_responder_recipe_details_t (
display_name varchar2,
description varchar2,
source_responder_recipe_id varchar2,
compartment_id varchar2,
responder_rules dbms_cloud_oci_cloud_guard_update_responder_recipe_responder_rule_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Responder recipe display name. Avoid entering confidential information. |
|
(optional) Responder recipe description. Avoid entering confidential information. |
|
(required) The id of the source responder recipe. |
|
(required) Compartment Identifier |
|
(optional) Responder Rules to override from source responder recipe |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_CREATE_SECURITY_POLICY_DETAILS_T Type
The information about new SecurityPolicy.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_create_security_policy_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
friendly_name varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
category varchar2(32767),
services dbms_cloud_oci_cloud_guard_varchar2_tbl,
compartment_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_security_policy_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_security_policy_details_t (
friendly_name varchar2,
display_name varchar2,
description varchar2,
category varchar2,
services dbms_cloud_oci_cloud_guard_varchar2_tbl,
compartment_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) SecurityPolicy friendly name |
|
(required) SecurityPolicy Identifier |
|
(optional) Security policy description |
|
(optional) The category of security policy. |
|
(optional) The list of services for policy. |
|
(required) Compartment Identifier |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_CREATE_SECURITY_RECIPE_DETAILS_T Type
Details about a new security zone recipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_create_security_recipe_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
security_policies dbms_cloud_oci_cloud_guard_varchar2_tbl,
compartment_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_security_recipe_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_security_recipe_details_t (
display_name varchar2,
description varchar2,
security_policies dbms_cloud_oci_cloud_guard_varchar2_tbl,
compartment_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The recipe's name |
|
(optional) The recipe's description |
|
(required) The list of `SecurityPolicy` ids to include in the recipe |
|
(required) The compartment in which to create the recipe |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_CREATE_SECURITY_ZONE_DETAILS_T Type
Details for a new security zone
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_create_security_zone_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
security_zone_recipe_id varchar2(32767),
compartment_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_security_zone_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_security_zone_details_t (
display_name varchar2,
description varchar2,
security_zone_recipe_id varchar2,
compartment_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The security zone's name |
|
(optional) The security zone's description |
|
(required) The OCID of the recipe (`SecurityRecipe`) for the security zone |
|
(required) The OCID of the compartment for the security zone |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_CONDITION_GROUP_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_condition_group_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_condition_group_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_condition_group_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_TARGET_DETECTOR_RULE_DETAILS_T Type
Overriden settings of a Detector Rule applied on target
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_target_detector_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
condition_groups dbms_cloud_oci_cloud_guard_condition_group_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_detector_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_detector_rule_details_t (
condition_groups dbms_cloud_oci_cloud_guard_condition_group_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Condition group corresponding to each compartment |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_TARGET_RECIPE_DETECTOR_RULE_DETAILS_T Type
The details to be updated in TargetDetectorRecipeDetectorRule
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_target_recipe_detector_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
detector_rule_id varchar2(32767),
details dbms_cloud_oci_cloud_guard_update_target_detector_rule_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_recipe_detector_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_recipe_detector_rule_details_t (
detector_rule_id varchar2,
details dbms_cloud_oci_cloud_guard_update_target_detector_rule_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Identifier for DetectorRule. |
|
(required) |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_TARGET_RECIPE_DETECTOR_RULE_DETAILS_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_update_target_recipe_detector_rule_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_target_recipe_detector_rule_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_update_target_recipe_detector_rule_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_CREATE_TARGET_DETECTOR_RECIPE_DETAILS_T Type
The information required to create TargetDetectorRecipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_create_target_detector_recipe_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
detector_recipe_id varchar2(32767),
detector_rules dbms_cloud_oci_cloud_guard_update_target_recipe_detector_rule_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_target_detector_recipe_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_target_detector_recipe_details_t (
detector_recipe_id varchar2,
detector_rules dbms_cloud_oci_cloud_guard_update_target_recipe_detector_rule_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Identifier for DetectorRecipe. |
|
(optional) Overrides to be applied to Detector Rule associated with the target |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_CONFIGURATION_T Type
A single configuration applied to a responder
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
config_key varchar2(32767),
name varchar2(32767),
value varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_configuration_t (
config_key varchar2,
name varchar2,
value varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique name of the configuration |
|
(required) configuration name |
|
(required) configuration value |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_CONFIGURATION_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_responder_configuration_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_configuration_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_responder_configuration_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_TARGET_RESPONDER_RULE_DETAILS_T Type
Details of ResponderRule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_target_responder_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
condition dbms_cloud_oci_cloud_guard_condition_t,
configurations dbms_cloud_oci_cloud_guard_responder_configuration_tbl,
l_mode varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_responder_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_responder_rule_details_t (
condition dbms_cloud_oci_cloud_guard_condition_t,
configurations dbms_cloud_oci_cloud_guard_responder_configuration_tbl,
l_mode varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) |
|
(optional) Configurations associated with the ResponderRule |
|
(optional) Execution Mode for ResponderRule Allowed values are: 'AUTOACTION', 'USERACTION' |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_TARGET_RECIPE_RESPONDER_RULE_DETAILS_T Type
The details to be updated in TargetResponderRecipeResponderRule
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_target_recipe_responder_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
responder_rule_id varchar2(32767),
details dbms_cloud_oci_cloud_guard_update_target_responder_rule_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_recipe_responder_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_recipe_responder_rule_details_t (
responder_rule_id varchar2,
details dbms_cloud_oci_cloud_guard_update_target_responder_rule_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Identifier for ResponderRule. |
|
(required) |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_TARGET_RECIPE_RESPONDER_RULE_DETAILS_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_update_target_recipe_responder_rule_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_target_recipe_responder_rule_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_update_target_recipe_responder_rule_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_CREATE_TARGET_RESPONDER_RECIPE_DETAILS_T Type
The information required to create TargetResponderRecipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_create_target_responder_recipe_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
responder_recipe_id varchar2(32767),
responder_rules dbms_cloud_oci_cloud_guard_update_target_recipe_responder_rule_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_target_responder_recipe_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_target_responder_recipe_details_t (
responder_recipe_id varchar2,
responder_rules dbms_cloud_oci_cloud_guard_update_target_recipe_responder_rule_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Identifier for ResponderRecipe. |
|
(optional) Override responder rules associated with reponder recipe in a target. |
DBMS_CLOUD_OCI_CLOUD_GUARD_CREATE_TARGET_DETECTOR_RECIPE_DETAILS_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_create_target_detector_recipe_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_create_target_detector_recipe_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_create_target_detector_recipe_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_CREATE_TARGET_RESPONDER_RECIPE_DETAILS_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_create_target_responder_recipe_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_create_target_responder_recipe_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_create_target_responder_recipe_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_CREATE_TARGET_DETAILS_T Type
The information about new Target.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_create_target_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
compartment_id varchar2(32767),
description varchar2(32767),
target_resource_type varchar2(32767),
target_resource_id varchar2(32767),
target_detector_recipes dbms_cloud_oci_cloud_guard_create_target_detector_recipe_details_tbl,
target_responder_recipes dbms_cloud_oci_cloud_guard_create_target_responder_recipe_details_tbl,
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_target_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_create_target_details_t (
display_name varchar2,
compartment_id varchar2,
description varchar2,
target_resource_type varchar2,
target_resource_id varchar2,
target_detector_recipes dbms_cloud_oci_cloud_guard_create_target_detector_recipe_details_tbl,
target_responder_recipes dbms_cloud_oci_cloud_guard_create_target_responder_recipe_details_tbl,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) DetectorTemplate identifier. Avoid entering confidential information. |
|
(required) Compartment Identifier where the resource is created |
|
(optional) The target description. Avoid entering confidential information. |
|
(required) possible type of targets(COMPARTMENT/FACLOUD) Allowed values are: 'COMPARTMENT', 'ERPCLOUD', 'HCMCLOUD', 'SECURITY_ZONE' |
|
(required) Resource ID which the target uses to monitor |
|
(optional) List of detector recipes to associate with target |
|
(optional) List of responder recipes to associate with target |
|
(optional) The current state of the DetectorRule. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_DATA_MASK_RULE_T Type
Description of DataMaskRule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_data_mask_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
description varchar2(32767),
iam_group_id varchar2(32767),
target_selected dbms_cloud_oci_cloud_guard_target_selected_t,
data_mask_categories dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
data_mask_rule_status varchar2(32767),
lifecycle_state varchar2(32767),
lifecyle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_mask_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_mask_rule_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
description varchar2,
iam_group_id varchar2,
target_selected dbms_cloud_oci_cloud_guard_target_selected_t,
data_mask_categories dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
data_mask_rule_status varchar2,
lifecycle_state varchar2,
lifecyle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier that is immutable on creation |
|
(optional) Data Mask Rule Identifier, can be renamed. |
|
(required) Compartment Identifier where the resource is created. |
|
(optional) The data mask rule description. |
|
(required) IAM Group id associated with the data mask rule |
|
(required) |
|
(optional) Data Mask Categories Allowed values are: 'ACTOR', 'PII', 'PHI', 'FINANCIAL', 'LOCATION', 'CUSTOM' |
|
(optional) The date and time the target was created. Format defined by RFC3339. |
|
(optional) The date and time the target was updated. Format defined by RFC3339. |
|
(optional) The status of the dataMaskRule. Allowed values are: 'ENABLED', 'DISABLED' |
|
(optional) The current state of the DataMaskRule. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_DATA_MASK_RULE_SUMMARY_T Type
Summary of DataMaskRule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_data_mask_rule_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
description varchar2(32767),
iam_group_id varchar2(32767),
target_selected dbms_cloud_oci_cloud_guard_target_selected_t,
data_mask_categories dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
data_mask_rule_status varchar2(32767),
lifecycle_state varchar2(32767),
lifecyle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_mask_rule_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_mask_rule_summary_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
description varchar2,
iam_group_id varchar2,
target_selected dbms_cloud_oci_cloud_guard_target_selected_t,
data_mask_categories dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
data_mask_rule_status varchar2,
lifecycle_state varchar2,
lifecyle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier that is immutable on creation |
|
(optional) Data Mask Rule Name. |
|
(required) Compartment Identifier where the resource is created |
|
(optional) The data mask rule description. |
|
(required) IAM Group id associated with the data mask rule |
|
(required) |
|
(optional) Data Mask Categories Allowed values are: 'ACTOR', 'PII', 'PHI', 'FINANCIAL', 'LOCATION', 'CUSTOM' |
|
(optional) The date and time the target was created. Format defined by RFC3339. |
|
(optional) The date and time the target was updated. Format defined by RFC3339. |
|
(optional) The status of the dataMaskRule. Allowed values are: 'ENABLED', 'DISABLED' |
|
(optional) The current state of the DataMaskRule. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_DATA_MASK_RULE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_data_mask_rule_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_data_mask_rule_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_data_mask_rule_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_DATA_MASK_RULE_COLLECTION_T Type
Collection of Data Mask Rule
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_data_mask_rule_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_data_mask_rule_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_mask_rule_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_mask_rule_collection_t (
items dbms_cloud_oci_cloud_guard_data_mask_rule_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of Data Mask Rule Summary |
DBMS_CLOUD_OCI_CLOUD_GUARD_DATA_SOURCE_MAPPING_INFO_T Type
Detail of resources which are mapped to DataSource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_data_source_mapping_info_t FORCE AUTHID CURRENT_USER IS OBJECT (
detector_recipe_id varchar2(32767),
detector_rule_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_source_mapping_info_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_source_mapping_info_t (
detector_recipe_id varchar2,
detector_rule_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Id of the attached detectorRecipeId to the Data Source. |
|
(required) Id of the attached detectorRuleId to the Data Source. |
DBMS_CLOUD_OCI_CLOUD_GUARD_REGION_STATUS_DETAIL_T Type
Status of Region query replication.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_region_status_detail_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_region varchar2(32767),
status varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_region_status_detail_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_region_status_detail_t (
l_region varchar2,
status varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Data Source replication region. |
|
(required) Data Source replication region status. Allowed values are: 'PROVISIONING', 'FAILED', 'SUCCEEDED' |
DBMS_CLOUD_OCI_CLOUD_GUARD_DATA_SOURCE_MAPPING_INFO_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_data_source_mapping_info_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_data_source_mapping_info_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_data_source_mapping_info_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_REGION_STATUS_DETAIL_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_region_status_detail_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_region_status_detail_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_region_status_detail_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_DATA_SOURCE_T Type
Details of Data source
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_data_source_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
data_source_feed_provider varchar2(32767),
compartment_id varchar2(32767),
data_source_details dbms_cloud_oci_cloud_guard_data_source_details_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
status varchar2(32767),
data_source_detector_mapping_info dbms_cloud_oci_cloud_guard_data_source_mapping_info_tbl,
region_status_detail dbms_cloud_oci_cloud_guard_region_status_detail_tbl,
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_source_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_source_t (
id varchar2,
display_name varchar2,
data_source_feed_provider varchar2,
compartment_id varchar2,
data_source_details dbms_cloud_oci_cloud_guard_data_source_details_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
status varchar2,
data_source_detector_mapping_info dbms_cloud_oci_cloud_guard_data_source_mapping_info_tbl,
region_status_detail dbms_cloud_oci_cloud_guard_region_status_detail_tbl,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Ocid for Data source |
|
(required) DisplayName of Data source. |
|
(required) Possible type of dataSourceFeed Provider(LoggingQuery) Allowed values are: 'LOGGINGQUERY' |
|
(required) CompartmentId of Data source. |
|
(optional) |
|
(optional) The date and time the Data source was created. Format defined by RFC3339. |
|
(optional) The date and time the Data source was updated. Format defined by RFC3339. |
|
(optional) Status of data Source Allowed values are: 'ENABLED', 'DISABLED' |
|
(optional) Information about the detector recipe and rule attached |
|
(optional) Information about the region and status of query replication |
|
(optional) The current state of the resource. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_DATA_SOURCE_SUMMARY_DETAILS_T Type
Summary specific to the data source type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_data_source_summary_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
data_source_feed_provider varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_source_summary_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_source_summary_details_t (
data_source_feed_provider varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field | Description |
---|---|
|
(required) Possible type of dataSourceFeed Provider(LoggingQuery) Allowed values are: 'LOGGINGQUERY' |
DBMS_CLOUD_OCI_CLOUD_GUARD_LOGGING_QUERY_DETAILS_T Type
Additional details specific to the data source type (Sighting/Insight).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_logging_query_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
logging_query_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_logging_query_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_logging_query_details_t (
logging_query_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field | Description |
---|---|
|
(required) Logging query type for data source (Sighting/Insight) Allowed values are: 'INSIGHT' |
DBMS_CLOUD_OCI_CLOUD_GUARD_DATA_SOURCE_SUMMARY_T Type
Summary of Data Source
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_data_source_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
data_source_feed_provider varchar2(32767),
compartment_id varchar2(32767),
data_source_summary_details dbms_cloud_oci_cloud_guard_data_source_summary_details_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
status varchar2(32767),
logging_query_details dbms_cloud_oci_cloud_guard_logging_query_details_t,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_source_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_source_summary_t (
id varchar2,
display_name varchar2,
data_source_feed_provider varchar2,
compartment_id varchar2,
data_source_summary_details dbms_cloud_oci_cloud_guard_data_source_summary_details_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
status varchar2,
logging_query_details dbms_cloud_oci_cloud_guard_logging_query_details_t,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Ocid for Data Source |
|
(required) DisplayName of Data Source |
|
(required) Possible type of dataSourceFeed Provider(LoggingQuery) Allowed values are: 'LOGGINGQUERY' |
|
(required) CompartmentId of Data Source. |
|
(optional) |
|
(optional) The date and time the data source was created. Format defined by RFC3339. |
|
(optional) The date and time the data source was updated. Format defined by RFC3339. |
|
(optional) Status of data Source Allowed values are: 'ENABLED', 'DISABLED' |
|
(optional) |
|
(optional) The current state of the resource. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, this can be used to provide actionable information for a zone in the `Failed` state. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_DATA_SOURCE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_data_source_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_data_source_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_data_source_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_DATA_SOURCE_COLLECTION_T Type
Summary of the DataSource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_data_source_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_data_source_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_source_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_source_collection_t (
items dbms_cloud_oci_cloud_guard_data_source_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of DataSourceSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_DATA_SOURCE_EVENT_INFO_T Type
Event info of a data source.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_data_source_event_info_t FORCE AUTHID CURRENT_USER IS OBJECT (
data_source_feed_provider varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_source_event_info_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_source_event_info_t (
data_source_feed_provider varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field | Description |
---|---|
|
(required) Possible type of dataSourceFeed Provider(LoggingQuery) Allowed values are: 'LOGGINGQUERY' |
DBMS_CLOUD_OCI_CLOUD_GUARD_DATA_SOURCE_EVENT_SUMMARY_T Type
The information about Event details of DataSource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_data_source_event_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_region varchar2(32767),
event_date timestamp with time zone,
data_source_id varchar2(32767),
time_created timestamp with time zone,
status varchar2(32767),
comments varchar2(32767),
event_info dbms_cloud_oci_cloud_guard_data_source_event_info_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_source_event_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_source_event_summary_t (
l_region varchar2,
event_date timestamp with time zone,
data_source_id varchar2,
time_created timestamp with time zone,
status varchar2,
comments varchar2,
event_info dbms_cloud_oci_cloud_guard_data_source_event_info_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Data source event region |
|
(required) Data source event date time |
|
(required) Attached data Source |
|
(required) Data source event created time |
|
(optional) Current data source event info status Allowed values are: 'SUCCESS', 'FAILURE' |
|
(optional) Data source event comments |
|
(required) |
DBMS_CLOUD_OCI_CLOUD_GUARD_DATA_SOURCE_EVENT_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_data_source_event_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_data_source_event_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_data_source_event_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_DATA_SOURCE_EVENT_COLLECTION_T Type
The collection of datasource events.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_data_source_event_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_data_source_event_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_source_event_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_data_source_event_collection_t (
items dbms_cloud_oci_cloud_guard_data_source_event_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of event related to a DataSource |
DBMS_CLOUD_OCI_CLOUD_GUARD_DETECTOR_T Type
A single Detector
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_detector_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
description varchar2(32767),
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_t (
id varchar2,
description varchar2,
lifecycle_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) detector key |
|
(required) detector description |
|
(optional) The current state of the resource. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
DBMS_CLOUD_OCI_CLOUD_GUARD_DETECTOR_SUMMARY_T Type
Summary of the Detector.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_detector_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
description varchar2(32767),
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_summary_t (
id varchar2,
description varchar2,
lifecycle_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) detector Identifier |
|
(optional) detector description |
|
(optional) The current state of the resource. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
DBMS_CLOUD_OCI_CLOUD_GUARD_DETECTOR_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_detector_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_detector_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_detector_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_DETECTOR_COLLECTION_T Type
Summary of the Detector.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_detector_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_detector_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_collection_t (
items dbms_cloud_oci_cloud_guard_detector_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of DetectorSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_SIGHTING_TYPE_T Type
Specific behavior that can trigger a Sighting
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_sighting_type_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
mitre_link varchar2(32767),
tactic varchar2(32767),
techniques dbms_cloud_oci_cloud_guard_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_sighting_type_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_sighting_type_t (
id varchar2,
display_name varchar2,
description varchar2,
mitre_link varchar2,
tactic varchar2,
techniques dbms_cloud_oci_cloud_guard_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) The unique identifier of sighting type |
|
(optional) Name of the sighting type |
|
(optional) Description of the sighting type |
|
(optional) Link of the sighting type |
|
(optional) Mitre Att&ck tactic |
|
(optional) List of Mitre Att&ck Techniques |
DBMS_CLOUD_OCI_CLOUD_GUARD_SIGHTING_TYPE_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_sighting_type_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_sighting_type_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_sighting_type_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_DETECTOR_DETAILS_T Type
Details of a Detector Rule
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_detector_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_enabled number,
risk_level varchar2(32767),
configurations dbms_cloud_oci_cloud_guard_detector_configuration_tbl,
condition dbms_cloud_oci_cloud_guard_condition_t,
labels dbms_cloud_oci_cloud_guard_varchar2_tbl,
is_configuration_allowed number,
problem_threshold number,
target_types dbms_cloud_oci_cloud_guard_varchar2_tbl,
sighting_types dbms_cloud_oci_cloud_guard_sighting_type_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_details_t (
is_enabled number,
risk_level varchar2,
configurations dbms_cloud_oci_cloud_guard_detector_configuration_tbl,
condition dbms_cloud_oci_cloud_guard_condition_t,
labels dbms_cloud_oci_cloud_guard_varchar2_tbl,
is_configuration_allowed number,
problem_threshold number,
target_types dbms_cloud_oci_cloud_guard_varchar2_tbl,
sighting_types dbms_cloud_oci_cloud_guard_sighting_type_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Enables the control |
|
(optional) The Risk Level Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR' |
|
(optional) Configuration details |
|
(optional) |
|
(optional) user defined labels for a detector rule |
|
(optional) configuration allowed or not |
|
(optional) Cutover point for an elevated resource Risk Score to create a Problem |
|
(optional) List of target types for which the detector rule is applicable |
|
(optional) List of sighting types |
DBMS_CLOUD_OCI_CLOUD_GUARD_CANDIDATE_RESPONDER_RULE_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_candidate_responder_rule_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_candidate_responder_rule_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_candidate_responder_rule_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_DETECTOR_RECIPE_DETECTOR_RULE_T Type
Detector Recipe Rule
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
detector_rule_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
recommendation varchar2(32767),
detector varchar2(32767),
service_type varchar2(32767),
resource_type varchar2(32767),
details dbms_cloud_oci_cloud_guard_detector_details_t,
managed_list_types dbms_cloud_oci_cloud_guard_varchar2_tbl,
candidate_responder_rules dbms_cloud_oci_cloud_guard_candidate_responder_rule_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
data_source_id varchar2(32767),
entities_mappings dbms_cloud_oci_cloud_guard_entities_mapping_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_t (
detector_rule_id varchar2,
display_name varchar2,
description varchar2,
recommendation varchar2,
detector varchar2,
service_type varchar2,
resource_type varchar2,
details dbms_cloud_oci_cloud_guard_detector_details_t,
managed_list_types dbms_cloud_oci_cloud_guard_varchar2_tbl,
candidate_responder_rules dbms_cloud_oci_cloud_guard_candidate_responder_rule_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
data_source_id varchar2,
entities_mappings dbms_cloud_oci_cloud_guard_entities_mapping_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The unique identifier of the detector rule. |
|
(optional) Display name for DetectorRecipeDetectorRule. |
|
(optional) Description for DetectorRecipeDetectorRule. |
|
(optional) Recommendation for DetectorRecipeDetectorRule |
|
(required) detector for the rule Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR' |
|
(required) service type of the configuration to which the rule is applied |
|
(required) resource type of the configuration to which the rule is applied |
|
(optional) |
|
(optional) List of cloudguard managed list types related to this rule Allowed values are: 'CIDR_BLOCK', 'USERS', 'GROUPS', 'IPV4ADDRESS', 'IPV6ADDRESS', 'RESOURCE_OCID', 'REGION', 'COUNTRY', 'STATE', 'CITY', 'TAGS', 'GENERIC' |
|
(optional) List of CandidateResponderRule related to this rule |
|
(optional) The date and time the detector recipe rule was created. Format defined by RFC3339. |
|
(optional) The date and time the detector recipe rule was updated. Format defined by RFC3339. |
|
(optional) The current state of the DetectorRule. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
|
(optional) The id of the attached DataSource. |
|
(optional) Data Source entities mapping for a Detector Rule |
DBMS_CLOUD_OCI_CLOUD_GUARD_DETECTOR_RECIPE_DETECTOR_RULE_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_DETECTOR_RECIPE_T Type
Details of Detector recipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_detector_recipe_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
source_detector_recipe_id varchar2(32767),
owner varchar2(32767),
detector varchar2(32767),
detector_rules dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_tbl,
effective_detector_rules dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
source_data_retention number,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
target_ids dbms_cloud_oci_cloud_guard_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_recipe_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_recipe_t (
id varchar2,
display_name varchar2,
description varchar2,
compartment_id varchar2,
source_detector_recipe_id varchar2,
owner varchar2,
detector varchar2,
detector_rules dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_tbl,
effective_detector_rules dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
source_data_retention number,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
target_ids dbms_cloud_oci_cloud_guard_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Ocid for detector recipe |
|
(required) DisplayName of detector recipe. |
|
(optional) Detector recipe description. |
|
(required) compartmentId of detector recipe |
|
(required) Recipe Ocid of the Source Recipe to be cloned |
|
(required) Owner of detector recipe Allowed values are: 'CUSTOMER', 'ORACLE' |
|
(required) Type of detector Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR' |
|
(optional) List of detector rules for the detector type for recipe - user input |
|
(optional) List of effective detector rules for the detector type for recipe after applying defaults |
|
(optional) The date and time the detector recipe was created. Format defined by RFC3339. |
|
(optional) The date and time the detector recipe was updated. Format defined by RFC3339. |
|
(optional) The current state of the resource. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) The number of days for which source data is retained |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
|
(optional) The recipe attached to targets |
DBMS_CLOUD_OCI_CLOUD_GUARD_DETECTOR_RECIPE_SUMMARY_T Type
Summary of Detector recipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_detector_recipe_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
source_detector_recipe_id varchar2(32767),
owner varchar2(32767),
detector varchar2(32767),
detector_rules dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
source_data_retention number,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_recipe_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_recipe_summary_t (
id varchar2,
display_name varchar2,
description varchar2,
compartment_id varchar2,
source_detector_recipe_id varchar2,
owner varchar2,
detector varchar2,
detector_rules dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
source_data_retention number,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Ocid for detector recipe |
|
(required) DisplayName of detector recipe |
|
(optional) Detector recipe description |
|
(required) compartmentId of detector recipe |
|
(optional) Recipe Ocid of the Source Recipe to be cloned |
|
(required) Owner of detector recipe Allowed values are: 'CUSTOMER', 'ORACLE' |
|
(required) Type of detector Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR' |
|
(optional) List of detetor rules for the detector type |
|
(optional) The date and time the detector recipe was created. Format defined by RFC3339. |
|
(optional) The date and time the detector recipe was updated. Format defined by RFC3339. |
|
(optional) The current state of the resource. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) The number of days for which source data is retained |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_DETECTOR_RECIPE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_detector_recipe_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_detector_recipe_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_detector_recipe_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_DETECTOR_RECIPE_COLLECTION_T Type
Summary of the DetectorRecipe.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_detector_recipe_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_detector_recipe_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_recipe_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_recipe_collection_t (
items dbms_cloud_oci_cloud_guard_detector_recipe_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of DetectorRecipeSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_DETECTOR_RECIPE_DETECTOR_RULE_SUMMARY_T Type
Summary of the Detector Recipe Rule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
recommendation varchar2(32767),
detector varchar2(32767),
service_type varchar2(32767),
resource_type varchar2(32767),
managed_list_types dbms_cloud_oci_cloud_guard_varchar2_tbl,
candidate_responder_rules dbms_cloud_oci_cloud_guard_candidate_responder_rule_tbl,
detector_details dbms_cloud_oci_cloud_guard_detector_details_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
data_source_id varchar2(32767),
entities_mappings dbms_cloud_oci_cloud_guard_entities_mapping_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_summary_t (
id varchar2,
display_name varchar2,
description varchar2,
recommendation varchar2,
detector varchar2,
service_type varchar2,
resource_type varchar2,
managed_list_types dbms_cloud_oci_cloud_guard_varchar2_tbl,
candidate_responder_rules dbms_cloud_oci_cloud_guard_candidate_responder_rule_tbl,
detector_details dbms_cloud_oci_cloud_guard_detector_details_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
data_source_id varchar2,
entities_mappings dbms_cloud_oci_cloud_guard_entities_mapping_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The unique identifier of the detector rule |
|
(optional) DetectorTemplate Identifier, can be renamed |
|
(optional) DetectorTemplate Identifier, can be renamed |
|
(optional) Recommendation for DetectorRecipeDetectorRule |
|
(required) possible type of detectors Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR' |
|
(optional) service type of the configuration to which the rule is applied |
|
(optional) resource type of the configuration to which the rule is applied |
|
(optional) List of cloudguard managed list types related to this rule Allowed values are: 'CIDR_BLOCK', 'USERS', 'GROUPS', 'IPV4ADDRESS', 'IPV6ADDRESS', 'RESOURCE_OCID', 'REGION', 'COUNTRY', 'STATE', 'CITY', 'TAGS', 'GENERIC' |
|
(optional) List of CandidateResponderRule related to this rule |
|
(optional) |
|
(optional) The date and time the detector recipe rule was created. Format defined by RFC3339. |
|
(optional) The date and time the detector recipe rule was updated. Format defined by RFC3339. |
|
(optional) The current state of the detector recipe rule Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
|
(optional) The id of the attached DataSource. |
|
(optional) Data Source entities mapping for a Detector Rule |
DBMS_CLOUD_OCI_CLOUD_GUARD_DETECTOR_RECIPE_DETECTOR_RULE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_DETECTOR_RECIPE_DETECTOR_RULE_COLLECTION_T Type
Summary of the DetectorRule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_collection_t (
items dbms_cloud_oci_cloud_guard_detector_recipe_detector_rule_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of DetectorRecipeDetectorRuleSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_DETECTOR_RULE_T Type
Detector
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_detector_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
recommendation varchar2(32767),
detector varchar2(32767),
service_type varchar2(32767),
resource_type varchar2(32767),
detector_details dbms_cloud_oci_cloud_guard_detector_details_t,
managed_list_types dbms_cloud_oci_cloud_guard_varchar2_tbl,
candidate_responder_rules dbms_cloud_oci_cloud_guard_candidate_responder_rule_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_rule_t (
id varchar2,
display_name varchar2,
description varchar2,
recommendation varchar2,
detector varchar2,
service_type varchar2,
resource_type varchar2,
detector_details dbms_cloud_oci_cloud_guard_detector_details_t,
managed_list_types dbms_cloud_oci_cloud_guard_varchar2_tbl,
candidate_responder_rules dbms_cloud_oci_cloud_guard_candidate_responder_rule_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The unique identifier of the detector rule. |
|
(optional) Display name for DetectorRule. |
|
(optional) Description for DetectorRule. |
|
(optional) recommendation for DetectorRule |
|
(required) detector for the rule Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR' |
|
(required) service type of the configuration to which the rule is applied |
|
(required) resource type of the configuration to which the rule is applied |
|
(optional) |
|
(optional) List of cloudguard managed list types related to this rule Allowed values are: 'CIDR_BLOCK', 'USERS', 'GROUPS', 'IPV4ADDRESS', 'IPV6ADDRESS', 'RESOURCE_OCID', 'REGION', 'COUNTRY', 'STATE', 'CITY', 'TAGS', 'GENERIC' |
|
(optional) List of CandidateResponderRule related to this rule |
|
(optional) The date and time the detector rule was created. Format defined by RFC3339. |
|
(optional) The date and time the detector rule was updated. Format defined by RFC3339. |
|
(optional) The current state of the DetectorRule. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
DBMS_CLOUD_OCI_CLOUD_GUARD_DETECTOR_RULE_SUMMARY_T Type
Summary of the Detector Rules.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_detector_rule_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
recommendation varchar2(32767),
detector varchar2(32767),
service_type varchar2(32767),
resource_type varchar2(32767),
managed_list_types dbms_cloud_oci_cloud_guard_varchar2_tbl,
candidate_responder_rules dbms_cloud_oci_cloud_guard_candidate_responder_rule_tbl,
detector_details dbms_cloud_oci_cloud_guard_detector_details_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_rule_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_rule_summary_t (
id varchar2,
display_name varchar2,
description varchar2,
recommendation varchar2,
detector varchar2,
service_type varchar2,
resource_type varchar2,
managed_list_types dbms_cloud_oci_cloud_guard_varchar2_tbl,
candidate_responder_rules dbms_cloud_oci_cloud_guard_candidate_responder_rule_tbl,
detector_details dbms_cloud_oci_cloud_guard_detector_details_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The unique identifier of the detector rule |
|
(optional) DetectorTemplate Identifier, can be renamed |
|
(optional) Description for detector rule |
|
(optional) Recommendation for detector rule |
|
(required) possible type of detectors Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR' |
|
(optional) service type of the configuration to which the rule is applied |
|
(optional) resource type of the configuration to which the rule is applied |
|
(optional) List of cloudguard managed list types related to this rule Allowed values are: 'CIDR_BLOCK', 'USERS', 'GROUPS', 'IPV4ADDRESS', 'IPV6ADDRESS', 'RESOURCE_OCID', 'REGION', 'COUNTRY', 'STATE', 'CITY', 'TAGS', 'GENERIC' |
|
(optional) List of CandidateResponderRule related to this rule |
|
(optional) |
|
(optional) The date and time the detector rule was created. Format defined by RFC3339. |
|
(optional) The date and time the detector rule was updated. Format defined by RFC3339. |
|
(optional) The current state of the detector rule Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
DBMS_CLOUD_OCI_CLOUD_GUARD_DETECTOR_RULE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_detector_rule_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_detector_rule_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_detector_rule_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_DETECTOR_RULE_COLLECTION_T Type
Summary of the DetectorRule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_detector_rule_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_detector_rule_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_rule_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_detector_rule_collection_t (
items dbms_cloud_oci_cloud_guard_detector_rule_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of DetectorRuleSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_ENTITY_DETAILS_T Type
Entities Details for a data source
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_entity_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
value varchar2(32767),
l_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_entity_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_entity_details_t (
display_name varchar2,
value varchar2,
l_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) The display name of entity |
|
(optional) The entity value |
|
(optional) Type of entity |
DBMS_CLOUD_OCI_CLOUD_GUARD_ERROR_T Type
Error Information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_error_t (
code varchar2,
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) A short error code that defines the error, meant for programmatic parsing. |
|
(required) A human-readable error string. |
DBMS_CLOUD_OCI_CLOUD_GUARD_EXECUTE_RESPONDER_EXECUTION_DETAILS_T Type
The details for Responder Configuration
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_execute_responder_execution_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
configurations dbms_cloud_oci_cloud_guard_responder_configuration_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_execute_responder_execution_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_execute_responder_execution_details_t (
configurations dbms_cloud_oci_cloud_guard_responder_configuration_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) ResponderRule configurations |
DBMS_CLOUD_OCI_CLOUD_GUARD_IMPACTED_RESOURCE_SUMMARY_T Type
Impacted Resource summary Definition.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_impacted_resource_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
resource_id varchar2(32767),
problem_id varchar2(32767),
compartment_id varchar2(32767),
sighting_type varchar2(32767),
sighting_type_display_name varchar2(32767),
resource_name varchar2(32767),
resource_type varchar2(32767),
l_region varchar2(32767),
time_identified timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_impacted_resource_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_impacted_resource_summary_t (
id varchar2,
resource_id varchar2,
problem_id varchar2,
compartment_id varchar2,
sighting_type varchar2,
sighting_type_display_name varchar2,
resource_name varchar2,
resource_type varchar2,
l_region varchar2,
time_identified timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier for finding event |
|
(required) Unique id of the Impacted Resource |
|
(required) Problem Id to which the Impacted Resource is associated |
|
(required) Compartment Id where the resource is created |
|
(optional) Identifier for the sighting type |
|
(optional) Name of the sighting type |
|
(required) Name of the Impacted Resource |
|
(required) Type of the Impacted Resource |
|
(required) Region where the resource is created |
|
(required) Time when the problem was identified |
DBMS_CLOUD_OCI_CLOUD_GUARD_IMPACTED_RESOURCE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_impacted_resource_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_impacted_resource_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_impacted_resource_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_IMPACTED_RESOURCE_COLLECTION_T Type
Provides the summary of impacted resources
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_impacted_resource_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_impacted_resource_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_impacted_resource_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_impacted_resource_collection_t (
items dbms_cloud_oci_cloud_guard_impacted_resource_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of ImpactedResourceSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_INSIGHT_TYPE_LOGGING_QUERY_DETAILS_T Type
Additional details specific to insight type DataSource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_insight_type_logging_query_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_guard_logging_query_details_t (
key_entities_count number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_insight_type_logging_query_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_insight_type_logging_query_details_t (
logging_query_type varchar2,
key_entities_count number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cloud_guard_insight_type_logging_query_details_t
is a subtype of the dbms_cloud_oci_cloud_guard_logging_query_details_t
type.
Fields
Field | Description |
---|---|
|
(optional) The key entities count used for data source query |
DBMS_CLOUD_OCI_CLOUD_GUARD_LOGGING_EVENT_INFO_T Type
The information about new Logging event detail of DataSource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_logging_event_info_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_guard_data_source_event_info_t (
observed_value varchar2(32767),
trigger_value varchar2(32767),
operator varchar2(32767),
log_result varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_logging_event_info_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_logging_event_info_t (
data_source_feed_provider varchar2,
observed_value varchar2,
trigger_value varchar2,
operator varchar2,
log_result varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cloud_guard_logging_event_info_t
is a subtype of the dbms_cloud_oci_cloud_guard_data_source_event_info_t
type.
Fields
Field | Description |
---|---|
|
(optional) |
|
(optional) |
|
(optional) |
|
(optional) |
DBMS_CLOUD_OCI_CLOUD_GUARD_LOGGING_QUERY_DATA_SOURCE_DETAILS_T Type
The information about new Logging Query of type DataSource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_logging_query_data_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_guard_data_source_details_t (
regions dbms_cloud_oci_cloud_guard_varchar2_tbl,
query varchar2(32767),
interval_in_minutes number,
threshold number,
query_start_time dbms_cloud_oci_cloud_guard_continuous_query_start_policy_t,
operator varchar2(32767),
logging_query_type varchar2(32767),
additional_entities_count number,
logging_query_details dbms_cloud_oci_cloud_guard_logging_query_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_logging_query_data_source_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_logging_query_data_source_details_t (
data_source_feed_provider varchar2,
regions dbms_cloud_oci_cloud_guard_varchar2_tbl,
query varchar2,
interval_in_minutes number,
threshold number,
query_start_time dbms_cloud_oci_cloud_guard_continuous_query_start_policy_t,
operator varchar2,
logging_query_type varchar2,
additional_entities_count number,
logging_query_details dbms_cloud_oci_cloud_guard_logging_query_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cloud_guard_logging_query_data_source_details_t
is a subtype of the dbms_cloud_oci_cloud_guard_data_source_details_t
type.
Fields
Field | Description |
---|---|
|
(optional) Logging Query regions |
|
(optional) The continuous query expression that is run periodically. |
|
(optional) Interval in minutes that query is run periodically. |
|
(optional) The integer value that must be exceeded, fall below or equal to (depending on the operator), the query result to trigger an event. |
|
(optional) |
|
(optional) Operator used in Data Soruce Allowed values are: 'EQUAL', 'GREATER', 'GREATERTHANEQUALTO', 'LESS', 'LESSTHANEQUALTO' |
|
(optional) Logging query type for data source (Sighting/Insight) Allowed values are: 'INSIGHT' |
|
(optional) The additional entities count used for data source query. |
|
(optional) |
DBMS_CLOUD_OCI_CLOUD_GUARD_LOGGING_QUERY_DATA_SOURCE_SUMMARY_DETAILS_T Type
The information about new Logging Query of type DataSourceSummary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_logging_query_data_source_summary_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_guard_data_source_summary_details_t (
regions dbms_cloud_oci_cloud_guard_varchar2_tbl,
data_source_detector_mapping_info dbms_cloud_oci_cloud_guard_data_source_mapping_info_tbl,
region_status_detail dbms_cloud_oci_cloud_guard_region_status_detail_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_logging_query_data_source_summary_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_logging_query_data_source_summary_details_t (
data_source_feed_provider varchar2,
regions dbms_cloud_oci_cloud_guard_varchar2_tbl,
data_source_detector_mapping_info dbms_cloud_oci_cloud_guard_data_source_mapping_info_tbl,
region_status_detail dbms_cloud_oci_cloud_guard_region_status_detail_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cloud_guard_logging_query_data_source_summary_details_t
is a subtype of the dbms_cloud_oci_cloud_guard_data_source_summary_details_t
type.
Fields
Field | Description |
---|---|
|
(optional) DataSource customer specified regions |
|
(optional) DataSource mapping with detectorRecipe and detectorRule |
|
(optional) DataSource query metadata replication region and status. |
DBMS_CLOUD_OCI_CLOUD_GUARD_MANAGED_LIST_T Type
A cloud guard list containing one or more items of a list type
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_managed_list_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
source_managed_list_id varchar2(32767),
list_type varchar2(32767),
list_items dbms_cloud_oci_cloud_guard_varchar2_tbl,
feed_provider varchar2(32767),
is_editable number,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecyle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_managed_list_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_managed_list_t (
id varchar2,
display_name varchar2,
description varchar2,
compartment_id varchar2,
source_managed_list_id varchar2,
list_type varchar2,
list_items dbms_cloud_oci_cloud_guard_varchar2_tbl,
feed_provider varchar2,
is_editable number,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecyle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier that is immutable on creation |
|
(required) ManagedList display name. |
|
(optional) ManagedList description. |
|
(required) Compartment Identifier where the resource is created |
|
(optional) OCID of the Source ManagedList |
|
(required) type of the list Allowed values are: 'CIDR_BLOCK', 'USERS', 'GROUPS', 'IPV4ADDRESS', 'IPV6ADDRESS', 'RESOURCE_OCID', 'REGION', 'COUNTRY', 'STATE', 'CITY', 'TAGS', 'GENERIC' |
|
(optional) List of ManagedListItem |
|
(optional) provider of the feed Allowed values are: 'CUSTOMER', 'ORACLE' |
|
(optional) If this list is editable or not |
|
(optional) The date and time the managed list was created. Format defined by RFC3339. |
|
(optional) The date and time the managed list was updated. Format defined by RFC3339. |
|
(optional) The current state of the resource. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_MANAGED_LIST_SUMMARY_T Type
Summary of ManagedList
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_managed_list_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
source_managed_list_id varchar2(32767),
list_type varchar2(32767),
feed_provider varchar2(32767),
is_editable number,
list_items dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecyle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_managed_list_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_managed_list_summary_t (
id varchar2,
display_name varchar2,
description varchar2,
compartment_id varchar2,
source_managed_list_id varchar2,
list_type varchar2,
feed_provider varchar2,
is_editable number,
list_items dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecyle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier that is immutable on creation |
|
(required) ManagedList display name |
|
(optional) ManagedList description |
|
(required) Compartment Identifier where the resource is created |
|
(optional) OCID of the Source ManagedList |
|
(required) type of the list Allowed values are: 'CIDR_BLOCK', 'USERS', 'GROUPS', 'IPV4ADDRESS', 'IPV6ADDRESS', 'RESOURCE_OCID', 'REGION', 'COUNTRY', 'STATE', 'CITY', 'TAGS', 'GENERIC' |
|
(required) provider of the feed Allowed values are: 'CUSTOMER', 'ORACLE' |
|
(optional) If this list is editable or not |
|
(required) List of ManagedListItem |
|
(optional) The date and time the managed list was created. Format defined by RFC3339. |
|
(optional) The date and time the managed list was updated. Format defined by RFC3339. |
|
(optional) The current state of the resource. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_MANAGED_LIST_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_managed_list_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_managed_list_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_managed_list_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_MANAGED_LIST_COLLECTION_T Type
Summary of the ManagedList.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_managed_list_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_managed_list_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_managed_list_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_managed_list_collection_t (
items dbms_cloud_oci_cloud_guard_managed_list_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of ManagedListSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_MANAGED_LIST_TYPE_SUMMARY_T Type
Summary of the ManagedListType.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_managed_list_type_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
description varchar2(32767),
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_managed_list_type_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_managed_list_type_summary_t (
id varchar2,
description varchar2,
lifecycle_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) ManagedListType Identifier |
|
(optional) ManagedListType description |
|
(optional) The current state of the resource. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
DBMS_CLOUD_OCI_CLOUD_GUARD_MANAGED_LIST_TYPE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_managed_list_type_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_managed_list_type_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_managed_list_type_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_MANAGED_LIST_TYPE_COLLECTION_T Type
Summary of the ManagedListType.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_managed_list_type_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_managed_list_type_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_managed_list_type_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_managed_list_type_collection_t (
items dbms_cloud_oci_cloud_guard_managed_list_type_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of ManagedListTypeSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_NO_DELAY_START_POLICY_T Type
Continuous query start policy that starts the query immediately.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_no_delay_start_policy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_guard_continuous_query_start_policy_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_no_delay_start_policy_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_no_delay_start_policy_t (
start_policy_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cloud_guard_no_delay_start_policy_t
is a subtype of the dbms_cloud_oci_cloud_guard_continuous_query_start_policy_t
type.
DBMS_CLOUD_OCI_CLOUD_GUARD_POLICY_SUMMARY_T Type
Global policy statement
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_policy_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
policy varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_policy_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_policy_summary_t (
policy varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Global policy statement |
DBMS_CLOUD_OCI_CLOUD_GUARD_POLICY_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_policy_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_policy_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_policy_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_POLICY_COLLECTION_T Type
Collection of policy statements required by cloud guard
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_policy_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_policy_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_policy_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_policy_collection_t (
items dbms_cloud_oci_cloud_guard_policy_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of global policy statements |
DBMS_CLOUD_OCI_CLOUD_GUARD_PROBLEM_T Type
Problem Definition.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_problem_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
detector_rule_id varchar2(32767),
l_region varchar2(32767),
regions dbms_cloud_oci_cloud_guard_varchar2_tbl,
risk_level varchar2(32767),
risk_score number,
peak_risk_score_date varchar2(32767),
peak_risk_score number,
auto_resolve_date varchar2(32767),
peak_risk_score_lookup_period_in_days number,
resource_id varchar2(32767),
resource_name varchar2(32767),
resource_type varchar2(32767),
labels dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_last_detected timestamp with time zone,
time_first_detected timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_detail varchar2(32767),
detector_id varchar2(32767),
target_id varchar2(32767),
additional_details json_element_t,
description varchar2(32767),
recommendation varchar2(32767),
l_comment varchar2(32767),
impacted_resource_id varchar2(32767),
impacted_resource_name varchar2(32767),
impacted_resource_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_t (
id varchar2,
compartment_id varchar2,
detector_rule_id varchar2,
l_region varchar2,
regions dbms_cloud_oci_cloud_guard_varchar2_tbl,
risk_level varchar2,
risk_score number,
peak_risk_score_date varchar2,
peak_risk_score number,
auto_resolve_date varchar2,
peak_risk_score_lookup_period_in_days number,
resource_id varchar2,
resource_name varchar2,
resource_type varchar2,
labels dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_last_detected timestamp with time zone,
time_first_detected timestamp with time zone,
lifecycle_state varchar2,
lifecycle_detail varchar2,
detector_id varchar2,
target_id varchar2,
additional_details json_element_t,
description varchar2,
recommendation varchar2,
l_comment varchar2,
impacted_resource_id varchar2,
impacted_resource_name varchar2,
impacted_resource_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier that is immutable on creation |
|
(required) Compartment Identifier where the resource is created |
|
(optional) Identifier of the rule |
|
(optional) DEPRECATED |
|
(optional) Regions where the problem is found |
|
(optional) The Risk Level Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR' |
|
(optional) Risk Score for the problem |
|
(optional) The date and time for the peak risk score that is observed. Format defined by RFC3339. |
|
(optional) Peak risk score for the problem |
|
(optional) The date and time when the problem will be auto resolved. Format defined by RFC3339. |
|
(optional) Number of days for which peak score is calculated for the problem |
|
(optional) Identifier of the Resource |
|
(optional) DisplayName of the Resource |
|
(optional) Type of the Resource |
|
(optional) user defined labels on the problem |
|
(optional) The date and time the problem was last detected. Format defined by RFC3339. |
|
(optional) The date and time the problem was first detected. Format defined by RFC3339. |
|
(optional) The current state of the Problem. Allowed values are: 'ACTIVE', 'INACTIVE' |
|
(optional) The lifecycleDetail will give more detail on the substate of the lifecycleState. Allowed values are: 'OPEN', 'RESOLVED', 'DISMISSED', 'DELETED' |
|
(optional) Id of the detector associated with the Problem. Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR' |
|
(optional) targetId of the problem |
|
(optional) The additional details of the Problem |
|
(optional) Description of the problem |
|
(optional) Recommendation for the problem |
|
(optional) User Comments |
|
(optional) Identifier of the impacted Resource |
|
(optional) DisplayName of the impacted Resource |
|
(optional) Type of the impacted Resource |
DBMS_CLOUD_OCI_CLOUD_GUARD_PROBLEM_AGGREGATION_T Type
Provides the dimensions and their corresponding count value.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_problem_aggregation_t FORCE AUTHID CURRENT_USER IS OBJECT (
dimensions_map json_element_t,
l_count number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_aggregation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_aggregation_t (
dimensions_map json_element_t,
l_count number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The key-value pairs of dimensions and their names. |
|
(required) The number of occurences with given dimension/s |
DBMS_CLOUD_OCI_CLOUD_GUARD_PROBLEM_AGGREGATION_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_problem_aggregation_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_problem_aggregation_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_problem_aggregation_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_PROBLEM_AGGREGATION_COLLECTION_T Type
Problem Analytics data.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_problem_aggregation_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_problem_aggregation_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_aggregation_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_aggregation_collection_t (
items dbms_cloud_oci_cloud_guard_problem_aggregation_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The items consist of all the ProblemAggregation objects. |
DBMS_CLOUD_OCI_CLOUD_GUARD_PROBLEM_SUMMARY_T Type
Summary of the Problem.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_problem_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
detector_rule_id varchar2(32767),
risk_level varchar2(32767),
risk_score number,
resource_id varchar2(32767),
resource_name varchar2(32767),
resource_type varchar2(32767),
labels dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_first_detected timestamp with time zone,
time_last_detected timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_detail varchar2(32767),
detector_id varchar2(32767),
l_region varchar2(32767),
regions dbms_cloud_oci_cloud_guard_varchar2_tbl,
target_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_summary_t (
id varchar2,
compartment_id varchar2,
detector_rule_id varchar2,
risk_level varchar2,
risk_score number,
resource_id varchar2,
resource_name varchar2,
resource_type varchar2,
labels dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_first_detected timestamp with time zone,
time_last_detected timestamp with time zone,
lifecycle_state varchar2,
lifecycle_detail varchar2,
detector_id varchar2,
l_region varchar2,
regions dbms_cloud_oci_cloud_guard_varchar2_tbl,
target_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier that is immutable on creation |
|
(required) Compartment Identifier where the resource is created |
|
(optional) Identifier of the rule |
|
(optional) The Risk Level Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR' |
|
(optional) Risk Score for the problem |
|
(optional) Identifier of the Resource |
|
(optional) DisplayName of the Resource |
|
(optional) Type of the Resource |
|
(optional) user defined labels on the problem |
|
(optional) The date and time the problem was first detected. Format defined by RFC3339. |
|
(optional) The date and time the problem was last detected. Format defined by RFC3339. |
|
(optional) The current state of the Problem. Allowed values are: 'ACTIVE', 'INACTIVE' |
|
(optional) The lifecycleDetail will give more detail on the substate of the lifecycleState. Allowed values are: 'OPEN', 'RESOLVED', 'DISMISSED', 'DELETED' |
|
(optional) Id of detector associated with the Problem. Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR' |
|
(optional) DEPRECATED |
|
(optional) Regions where the problem is found |
|
(optional) targetId associated with the problem. |
DBMS_CLOUD_OCI_CLOUD_GUARD_PROBLEM_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_problem_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_problem_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_problem_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_PROBLEM_COLLECTION_T Type
Collection of Problem
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_problem_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_problem_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_collection_t (
items dbms_cloud_oci_cloud_guard_problem_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of ProblemSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_PROBLEM_ENDPOINT_SUMMARY_T Type
Problem endpoints summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_problem_endpoint_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
sighting_id varchar2(32767),
problem_id varchar2(32767),
sighting_type varchar2(32767),
sighting_type_display_name varchar2(32767),
ip_address varchar2(32767),
ip_address_type varchar2(32767),
ip_classification_type varchar2(32767),
country varchar2(32767),
latitude number,
longitude number,
asn_number varchar2(32767),
regions dbms_cloud_oci_cloud_guard_varchar2_tbl,
services dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_last_detected timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_endpoint_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_endpoint_summary_t (
id varchar2,
sighting_id varchar2,
problem_id varchar2,
sighting_type varchar2,
sighting_type_display_name varchar2,
ip_address varchar2,
ip_address_type varchar2,
ip_classification_type varchar2,
country varchar2,
latitude number,
longitude number,
asn_number varchar2,
regions dbms_cloud_oci_cloud_guard_varchar2_tbl,
services dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_last_detected timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier for problem endpoint. |
|
(required) Unique id for sighting associated with the endpoint. |
|
(required) Unique id for cloudguard problem |
|
(required) Identifier for the sighting type |
|
(required) Display Name of the sighting type |
|
(required) IP Address of the Endpoint |
|
(required) IP Address type of the Endpoint |
|
(optional) IP Address classification type of the endpoint |
|
(optional) Country of the endpoint |
|
(optional) Latitude of the endpoint |
|
(optional) Longitude of the endpoint |
|
(optional) ASN number of the endpoint |
|
(optional) Regions where activities were performed from this IP |
|
(optional) Services where activities were performed from this IP |
|
(required) Time when activities were last detected |
DBMS_CLOUD_OCI_CLOUD_GUARD_PROBLEM_ENDPOINT_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_problem_endpoint_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_problem_endpoint_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_problem_endpoint_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_PROBLEM_ENDPOINT_COLLECTION_T Type
Provides the list of problem endpoints
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_problem_endpoint_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_problem_endpoint_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_endpoint_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_endpoint_collection_t (
items dbms_cloud_oci_cloud_guard_problem_endpoint_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of problem endpoints |
DBMS_CLOUD_OCI_CLOUD_GUARD_ENTITY_DETAILS_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_entity_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_entity_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_entity_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_PROBLEM_ENTITY_SUMMARY_T Type
The information about problem entities details of DataSource for a CloudGuard Problem.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_problem_entity_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
regions dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_first_detected timestamp with time zone,
problem_id varchar2(32767),
time_last_detected timestamp with time zone,
result_url varchar2(32767),
entity_details dbms_cloud_oci_cloud_guard_entity_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_entity_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_entity_summary_t (
regions dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_first_detected timestamp with time zone,
problem_id varchar2,
time_last_detected timestamp with time zone,
result_url varchar2,
entity_details dbms_cloud_oci_cloud_guard_entity_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Data source problem entities region |
|
(required) Data source problem entities first detected time |
|
(required) Attached problem id |
|
(required) Data source problem entities last detected time |
|
(optional) Log result query url for a data source query |
|
(optional) List of event related to a DataSource |
DBMS_CLOUD_OCI_CLOUD_GUARD_PROBLEM_ENTITY_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_problem_entity_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_problem_entity_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_problem_entity_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_PROBLEM_ENTITY_COLLECTION_T Type
The collection of problem entities detail related to a data source.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_problem_entity_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_problem_entity_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_entity_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_entity_collection_t (
items dbms_cloud_oci_cloud_guard_problem_entity_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of problem entities summaries related to a data source. |
DBMS_CLOUD_OCI_CLOUD_GUARD_PROBLEM_HISTORY_SUMMARY_T Type
Problem History Definition.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_problem_history_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
problem_id varchar2(32767),
actor_type varchar2(32767),
actor_name varchar2(32767),
explanation varchar2(32767),
lifecycle_detail varchar2(32767),
event_status varchar2(32767),
time_created timestamp with time zone,
delta varchar2(32767),
l_comment varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_history_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_history_summary_t (
id varchar2,
problem_id varchar2,
actor_type varchar2,
actor_name varchar2,
explanation varchar2,
lifecycle_detail varchar2,
event_status varchar2,
time_created timestamp with time zone,
delta varchar2,
l_comment varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier for the history record |
|
(required) problemId for which history is associated to. |
|
(required) Actor type who performed the operation Allowed values are: 'CLOUD_GUARD_SERVICE', 'CORRELATION', 'RESPONDER', 'USER' |
|
(required) Resource Name who performed activity |
|
(required) Activity explanation details |
|
(required) Problem Lifecycle Detail Status Allowed values are: 'OPEN', 'RESOLVED', 'DISMISSED', 'DELETED' |
|
(optional) Event status Allowed values are: 'REOPEN', 'OPEN', 'UPDATE', 'RESOLVE', 'DISMISS', 'DELETE' |
|
(required) Type of the Entity |
|
(required) Impacted Resource Names in a comma-separated string. |
|
(optional) User Defined Comments |
DBMS_CLOUD_OCI_CLOUD_GUARD_PROBLEM_HISTORY_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_problem_history_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_problem_history_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_problem_history_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_PROBLEM_HISTORY_COLLECTION_T Type
Collection of Problem History
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_problem_history_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_problem_history_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_history_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_history_collection_t (
items dbms_cloud_oci_cloud_guard_problem_history_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of ProblemHistorySummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_PROBLEM_TREND_AGGREGATION_T Type
Provides the dimensions and their corresponding time and count.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_problem_trend_aggregation_t FORCE AUTHID CURRENT_USER IS OBJECT (
dimensions_map json_element_t,
start_timestamp number,
duration_in_seconds number,
l_count number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_trend_aggregation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_trend_aggregation_t (
dimensions_map json_element_t,
start_timestamp number,
duration_in_seconds number,
l_count number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The key-value pairs of dimensions and their names. |
|
(required) Start Time in epoch seconds |
|
(required) Duration |
|
(required) The number of occurences with for the corresponding time range and dimensions. |
DBMS_CLOUD_OCI_CLOUD_GUARD_PROBLEM_TREND_AGGREGATION_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_problem_trend_aggregation_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_problem_trend_aggregation_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_problem_trend_aggregation_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_PROBLEM_TREND_AGGREGATION_COLLECTION_T Type
Problem Trend Aggregation Collection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_problem_trend_aggregation_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_problem_trend_aggregation_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_trend_aggregation_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_problem_trend_aggregation_collection_t (
items dbms_cloud_oci_cloud_guard_problem_trend_aggregation_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The items consist of all the ProblemTrendAggregation objects. |
DBMS_CLOUD_OCI_CLOUD_GUARD_RECOMMENDATION_SUMMARY_T Type
Recommendation Definition.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_recommendation_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
l_type varchar2(32767),
tenant_id varchar2(32767),
compartment_id varchar2(32767),
target_id varchar2(32767),
details json_element_t,
risk_level varchar2(32767),
problem_count number,
lifecycle_state varchar2(32767),
lifecycle_detail varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
name varchar2(32767),
description varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_recommendation_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_recommendation_summary_t (
id varchar2,
l_type varchar2,
tenant_id varchar2,
compartment_id varchar2,
target_id varchar2,
details json_element_t,
risk_level varchar2,
problem_count number,
lifecycle_state varchar2,
lifecycle_detail varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
name varchar2,
description varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier for Recommendation |
|
(optional) Recommendation type Allowed values are: 'DETECTOR_PROBLEMS', 'RESOLVED_PROBLEMS' |
|
(optional) Tenant Identifier |
|
(required) Compartment Identifier |
|
(required) targetId associated with the problem |
|
(required) Recommendation details |
|
(optional) The Risk Level Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR' |
|
(required) Count number of the problem |
|
(required) The current state of the Recommendation. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(required) The lifecycleDetail will give more detail on the substate of the lifecycleState. Allowed values are: 'OPEN', 'RESOLVED', 'DISMISSED' |
|
(optional) problem creating time |
|
(optional) problem updating time |
|
(required) recommendation string showing on UX |
|
(required) description of the recommendation |
DBMS_CLOUD_OCI_CLOUD_GUARD_RECOMMENDATION_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_recommendation_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_recommendation_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_recommendation_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_RECOMMENDATION_SUMMARY_COLLECTION_T Type
Collection of the RecommendationSummary
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_recommendation_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_recommendation_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_recommendation_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_recommendation_summary_collection_t (
items dbms_cloud_oci_cloud_guard_recommendation_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of Recommendation |
DBMS_CLOUD_OCI_CLOUD_GUARD_REMOVE_COMPARTMENT_DETAILS_T Type
An existing compartment to remove from a security zone
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_remove_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_remove_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_remove_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The OCID of the compartment to be removed from SecurityZone. |
DBMS_CLOUD_OCI_CLOUD_GUARD_REQUEST_SUMMARIZED_TREND_RESOURCE_RISK_SCORES_DETAILS_T Type
ResourceRiskScores filter.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_request_summarized_trend_resource_risk_scores_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
filter varchar2(32767),
filter_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_request_summarized_trend_resource_risk_scores_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_request_summarized_trend_resource_risk_scores_details_t (
filter varchar2,
filter_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The filter type. Allowed values are: 'PROBLEM_ID', 'RESOURCE_PROFILE_ID' |
|
(required) Id to be passed in to filter the risk scores. |
DBMS_CLOUD_OCI_CLOUD_GUARD_TACTIC_SUMMARY_T Type
Tactic summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_tactic_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_tactic_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_tactic_summary_t (
id varchar2,
display_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier for the tactic. |
|
(required) Display name of the tactic |
DBMS_CLOUD_OCI_CLOUD_GUARD_TACTIC_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_tactic_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_tactic_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_tactic_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_RESOURCE_PROFILE_T Type
Resource profile details
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_resource_profile_t FORCE AUTHID CURRENT_USER IS OBJECT (
sightings_count number,
id varchar2(32767),
resource_id varchar2(32767),
display_name varchar2(32767),
l_type varchar2(32767),
problem_ids dbms_cloud_oci_cloud_guard_varchar2_tbl,
compartment_id varchar2(32767),
target_id varchar2(32767),
risk_score number,
risk_level varchar2(32767),
peak_risk_score number,
time_peak_score timestamp with time zone,
time_first_detected timestamp with time zone,
time_last_detected timestamp with time zone,
tactics dbms_cloud_oci_cloud_guard_tactic_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_profile_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_profile_t (
sightings_count number,
id varchar2,
resource_id varchar2,
display_name varchar2,
l_type varchar2,
problem_ids dbms_cloud_oci_cloud_guard_varchar2_tbl,
compartment_id varchar2,
target_id varchar2,
risk_score number,
risk_level varchar2,
peak_risk_score number,
time_peak_score timestamp with time zone,
time_first_detected timestamp with time zone,
time_last_detected timestamp with time zone,
tactics dbms_cloud_oci_cloud_guard_tactic_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Number of sightings associated with this resource profile |
|
(required) Unique identifier for resource profile |
|
(required) Unique identifier for resource profile |
|
(required) Resource name for resource profile |
|
(required) Resource type for resource profile |
|
(optional) List of Problems associated with the resource profile. |
|
(required) Compartment Id for resource profile |
|
(optional) Target Id for resource profile |
|
(required) Risk Score for the resource profile |
|
(optional) Risk Level associated with resource profile Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR' |
|
(optional) Peak Risk Score for the resource profile |
|
(optional) The date and time for peak risk score. Format defined by RFC3339. |
|
(required) The date and time the resource profile was first detected. Format defined by RFC3339. |
|
(required) The date and time the resource profile was last detected. Format defined by RFC3339. |
|
(required) List of tactic summary associated with the resource profile. |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESOURCE_PROFILE_SUMMARY_T Type
Resource profile summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_resource_profile_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
sightings_count number,
id varchar2(32767),
resource_id varchar2(32767),
display_name varchar2(32767),
l_type varchar2(32767),
risk_score number,
tactics dbms_cloud_oci_cloud_guard_tactic_summary_tbl,
time_first_detected timestamp with time zone,
time_last_detected timestamp with time zone,
problems_count number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_profile_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_profile_summary_t (
sightings_count number,
id varchar2,
resource_id varchar2,
display_name varchar2,
l_type varchar2,
risk_score number,
tactics dbms_cloud_oci_cloud_guard_tactic_summary_tbl,
time_first_detected timestamp with time zone,
time_last_detected timestamp with time zone,
problems_count number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Number of sightings associated with this resource profile |
|
(required) Unique identifier for resource profile |
|
(required) Unique identifier for resource profile |
|
(required) Resource name for resource profile |
|
(required) Resource type for resource profile |
|
(required) Risk Score for the resource profile |
|
(required) List of tactic summary associated with the resource profile. |
|
(required) The date and time the resource profile was first detected. Format defined by RFC3339. |
|
(required) The date and time the resource profile was last detected. Format defined by RFC3339. |
|
(optional) Number of problems associated with this resource profile |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESOURCE_PROFILE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_resource_profile_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_resource_profile_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_resource_profile_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_RESOURCE_PROFILE_COLLECTION_T Type
Collection of resource profile summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_resource_profile_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_resource_profile_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_profile_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_profile_collection_t (
items dbms_cloud_oci_cloud_guard_resource_profile_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of resource profiles |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESOURCE_PROFILE_ENDPOINT_SUMMARY_T Type
Resource Profile Endpoints summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_resource_profile_endpoint_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
resource_profile_id varchar2(32767),
problem_id varchar2(32767),
sighting_type varchar2(32767),
sighting_type_display_name varchar2(32767),
ip_address varchar2(32767),
ip_address_type varchar2(32767),
ip_classification_type varchar2(32767),
country varchar2(32767),
latitude number,
longitude number,
asn_number varchar2(32767),
regions dbms_cloud_oci_cloud_guard_varchar2_tbl,
services dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_last_detected timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_profile_endpoint_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_profile_endpoint_summary_t (
id varchar2,
resource_profile_id varchar2,
problem_id varchar2,
sighting_type varchar2,
sighting_type_display_name varchar2,
ip_address varchar2,
ip_address_type varchar2,
ip_classification_type varchar2,
country varchar2,
latitude number,
longitude number,
asn_number varchar2,
regions dbms_cloud_oci_cloud_guard_varchar2_tbl,
services dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_last_detected timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier for sighting endpoints |
|
(required) Resource profile Id associated with the imacted resource |
|
(optional) Problem Id for sighting endpoints |
|
(required) Identifier for the sighting type |
|
(required) Name of the sighting type |
|
(required) IP Address |
|
(required) IP Address type |
|
(optional) IP Address classification type |
|
(optional) Country |
|
(optional) Latitude |
|
(optional) Longitude |
|
(optional) ASN number |
|
(optional) Regions where activities were performed from this IP |
|
(optional) Services where activities were performed from this IP |
|
(required) Time when activities were created |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESOURCE_PROFILE_ENDPOINT_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_resource_profile_endpoint_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_resource_profile_endpoint_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_resource_profile_endpoint_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_RESOURCE_PROFILE_ENDPOINT_COLLECTION_T Type
Collection of Resource Profile endpoint summaries
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_resource_profile_endpoint_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_resource_profile_endpoint_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_profile_endpoint_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_profile_endpoint_collection_t (
items dbms_cloud_oci_cloud_guard_resource_profile_endpoint_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of ResourceProfileEndpointSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESOURCE_PROFILE_IMPACTED_RESOURCE_SUMMARY_T Type
Resource Profile impacted resource summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_resource_profile_impacted_resource_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
resource_profile_id varchar2(32767),
problem_id varchar2(32767),
compartment_id varchar2(32767),
resource_id varchar2(32767),
resource_name varchar2(32767),
resource_type varchar2(32767),
sighting_type varchar2(32767),
sighting_type_display_name varchar2(32767),
l_region varchar2(32767),
time_identified timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_profile_impacted_resource_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_profile_impacted_resource_summary_t (
id varchar2,
resource_profile_id varchar2,
problem_id varchar2,
compartment_id varchar2,
resource_id varchar2,
resource_name varchar2,
resource_type varchar2,
sighting_type varchar2,
sighting_type_display_name varchar2,
l_region varchar2,
time_identified timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier for impacted resource |
|
(required) Resource profile Id associated with the imacted resource |
|
(optional) Problem Id for impacted resource |
|
(required) Compartment Id for impacted resource |
|
(required) Impacted resource Id |
|
(required) Resource name |
|
(required) Resource type |
|
(required) Identifier for the sighting type |
|
(required) Name of the sighting type |
|
(required) Region for impacted resource |
|
(required) Time when the impacted resource is identified for given resource profile. |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESOURCE_PROFILE_IMPACTED_RESOURCE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_resource_profile_impacted_resource_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_resource_profile_impacted_resource_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_resource_profile_impacted_resource_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_RESOURCE_PROFILE_IMPACTED_RESOURCE_COLLECTION_T Type
Collection of resource profile impacted resource summaries
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_resource_profile_impacted_resource_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_resource_profile_impacted_resource_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_profile_impacted_resource_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_profile_impacted_resource_collection_t (
items dbms_cloud_oci_cloud_guard_resource_profile_impacted_resource_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of ResourceProfileImpactedResourceSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESOURCE_RISK_SCORE_AGGREGATION_T Type
Risk score of a resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_resource_risk_score_aggregation_t FORCE AUTHID CURRENT_USER IS OBJECT (
tactics dbms_cloud_oci_cloud_guard_varchar2_tbl,
score_timestamp number,
risk_score number,
risk_level varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_risk_score_aggregation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_risk_score_aggregation_t (
tactics dbms_cloud_oci_cloud_guard_varchar2_tbl,
score_timestamp number,
risk_score number,
risk_level varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Tactics used for evaluating the risk scrore |
|
(required) The date and time for which the score is calculated. Format defined by RFC3339. |
|
(required) Risk Score |
|
(required) The Risk Level Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR' |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESOURCE_RISK_SCORE_AGGREGATION_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_resource_risk_score_aggregation_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_resource_risk_score_aggregation_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_resource_risk_score_aggregation_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_RESOURCE_PROFILE_RISK_SCORE_AGGREGATION_SUMMARY_T Type
Resource profile risk score trend-line
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_resource_profile_risk_score_aggregation_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
resource_profile_id varchar2(32767),
resource_profile_display_name varchar2(32767),
risk_threshold number,
items dbms_cloud_oci_cloud_guard_resource_risk_score_aggregation_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_profile_risk_score_aggregation_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_profile_risk_score_aggregation_summary_t (
resource_profile_id varchar2,
resource_profile_display_name varchar2,
risk_threshold number,
items dbms_cloud_oci_cloud_guard_resource_risk_score_aggregation_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID for the resource profile |
|
(required) Display name for the resource profile |
|
(optional) Risk threshold |
|
(required) List of ResourceRiskScoreAggregation |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESOURCE_PROFILE_RISK_SCORE_AGGREGATION_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_resource_profile_risk_score_aggregation_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_resource_profile_risk_score_aggregation_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_resource_profile_risk_score_aggregation_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_RESOURCE_PROFILE_RISK_SCORE_AGGREGATION_SUMMARY_COLLECTION_T Type
Collection of resource profile risk score trends.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_resource_profile_risk_score_aggregation_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_resource_profile_risk_score_aggregation_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_profile_risk_score_aggregation_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_profile_risk_score_aggregation_summary_collection_t (
items dbms_cloud_oci_cloud_guard_resource_profile_risk_score_aggregation_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of ResourceProfileRiskScoreAggregationSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESOURCE_RISK_SCORE_AGGREGATION_COLLECTION_T Type
Collection of Resource risk scores
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_resource_risk_score_aggregation_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
filter_type varchar2(32767),
filter_id varchar2(32767),
risk_threshold number,
items dbms_cloud_oci_cloud_guard_resource_risk_score_aggregation_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_risk_score_aggregation_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_risk_score_aggregation_collection_t (
filter_type varchar2,
filter_id varchar2,
risk_threshold number,
items dbms_cloud_oci_cloud_guard_resource_risk_score_aggregation_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Type of filter. Valid Values - problem_id and resource_id |
|
(required) Id value on which risk scores are filtered |
|
(optional) Risk Score |
|
(required) List of ResourceRiskScoreAggregation |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESOURCE_TYPE_COLLECTION_T Type
resource type provided by cloud guard
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_resource_type_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_resource_type_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_type_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_resource_type_collection_t (
items dbms_cloud_oci_cloud_guard_resource_type_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) collection of resource types |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_ACTIVITY_SUMMARY_T Type
Responder Activity summary Definition.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_activity_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
problem_id varchar2(32767),
responder_rule_id varchar2(32767),
responder_type varchar2(32767),
responder_rule_name varchar2(32767),
responder_activity_type varchar2(32767),
responder_execution_status varchar2(32767),
time_created timestamp with time zone,
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_activity_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_activity_summary_t (
id varchar2,
problem_id varchar2,
responder_rule_id varchar2,
responder_type varchar2,
responder_rule_name varchar2,
responder_activity_type varchar2,
responder_execution_status varchar2,
time_created timestamp with time zone,
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique id for Responder activity. |
|
(required) problemId for which Responder activity is associated to. |
|
(required) Id of the responder rule for the problem |
|
(required) responder rule type for performing the operation Allowed values are: 'REMEDIATION', 'NOTIFICATION' |
|
(required) responder rule name |
|
(required) Responder activity types Allowed values are: 'STARTED', 'COMPLETED' |
|
(required) the responder execution status Allowed values are: 'STARTED', 'AWAITING_CONFIRMATION', 'AWAITING_INPUT', 'SUCCEEDED', 'FAILED', 'SKIPPED', 'ALL' |
|
(required) responder activity starting time |
|
(required) additional message related to this operation |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_ACTIVITY_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_responder_activity_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_activity_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_responder_activity_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_ACTIVITY_COLLECTION_T Type
Provides the summary of responder activities and their corresponding count value.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_activity_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_responder_activity_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_activity_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_activity_collection_t (
items dbms_cloud_oci_cloud_guard_responder_activity_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of ResponderActivitySummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_RULE_EXECUTION_DETAILS_T Type
Details of ResponderRuleExecution. A Responder Rule Execution is the entity that captures the execution of a Responder Rule for a given Problem.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_rule_execution_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
condition dbms_cloud_oci_cloud_guard_condition_t,
configurations dbms_cloud_oci_cloud_guard_responder_configuration_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_rule_execution_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_rule_execution_details_t (
condition dbms_cloud_oci_cloud_guard_condition_t,
configurations dbms_cloud_oci_cloud_guard_responder_configuration_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) |
|
(optional) ResponderRule configurations |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_EXECUTION_T Type
Responder Execution Object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_execution_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
responder_rule_id varchar2(32767),
responder_rule_type varchar2(32767),
responder_rule_name varchar2(32767),
problem_id varchar2(32767),
l_region varchar2(32767),
target_id varchar2(32767),
compartment_id varchar2(32767),
resource_type varchar2(32767),
resource_name varchar2(32767),
time_created timestamp with time zone,
time_completed timestamp with time zone,
responder_execution_status varchar2(32767),
responder_execution_mode varchar2(32767),
message varchar2(32767),
responder_rule_execution_details dbms_cloud_oci_cloud_guard_responder_rule_execution_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_execution_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_execution_t (
id varchar2,
responder_rule_id varchar2,
responder_rule_type varchar2,
responder_rule_name varchar2,
problem_id varchar2,
l_region varchar2,
target_id varchar2,
compartment_id varchar2,
resource_type varchar2,
resource_name varchar2,
time_created timestamp with time zone,
time_completed timestamp with time zone,
responder_execution_status varchar2,
responder_execution_mode varchar2,
message varchar2,
responder_rule_execution_details dbms_cloud_oci_cloud_guard_responder_rule_execution_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The unique identifier of the responder execution |
|
(required) Responder Rule id for the responder execution |
|
(required) Rule Type for the responder execution Allowed values are: 'REMEDIATION', 'NOTIFICATION' |
|
(required) Rule name for the responder execution |
|
(required) Problem id associated with the responder execution |
|
(required) region where the problem is found |
|
(required) targetId of the problem for the responder execution |
|
(required) compartment id of the responder execution for the problem |
|
(required) resource type of the problem for the responder execution |
|
(required) resource name of the problem for the responder execution. TODO-DOC link to resource definition doc |
|
(required) The date and time the responder execution was created. Format defined by RFC3339. |
|
(optional) The date and time the responder execution was updated. Format defined by RFC3339. |
|
(required) current execution status of the responder Allowed values are: 'STARTED', 'AWAITING_CONFIRMATION', 'AWAITING_INPUT', 'SUCCEEDED', 'FAILED', 'SKIPPED', 'ALL' |
|
(required) execution mode of the responder Allowed values are: 'MANUAL', 'AUTOMATED', 'ALL' |
|
(optional) Message about the responder execution. |
|
(optional) |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_EXECUTION_AGGREGATION_T Type
Provides the dimensions and their corresponding count value.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_execution_aggregation_t FORCE AUTHID CURRENT_USER IS OBJECT (
dimensions_map json_element_t,
l_count number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_execution_aggregation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_execution_aggregation_t (
dimensions_map json_element_t,
l_count number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The key-value pairs of dimensions and their names. The key corresponds to the Analytic Dimension(s) chosen, and the value corresponds to the value of the dimension from the data. E.g. if the Analytic Dimension chosen is \"RISK_LEVEL\", then the value will be like \"CRITICAL\". If the Analytic Dimensions chosen are \"RISK_LEVEL\" and \"RESOURCE_TYPE\", then the map will have two key-value pairs of form {\"RISK_LEVEL\" : \"CRITICAL, \"RESOURCE_TYPE\" : \"LOAD_BALANCER\"} |
|
(required) The number of occurences with given dimension(s) |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_EXECUTION_AGGREGATION_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_responder_execution_aggregation_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_execution_aggregation_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_responder_execution_aggregation_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_EXECUTION_AGGREGATION_COLLECTION_T Type
Collection of ResponderExecutionAggregation objects
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_execution_aggregation_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_responder_execution_aggregation_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_execution_aggregation_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_execution_aggregation_collection_t (
items dbms_cloud_oci_cloud_guard_responder_execution_aggregation_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The items consist of all the ResponderExecutionAggregation objects. |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_EXECUTION_SUMMARY_T Type
Summary of the Responder Execution.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_execution_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
responder_rule_id varchar2(32767),
responder_rule_type varchar2(32767),
responder_rule_name varchar2(32767),
problem_id varchar2(32767),
problem_name varchar2(32767),
l_region varchar2(32767),
target_id varchar2(32767),
compartment_id varchar2(32767),
resource_type varchar2(32767),
resource_name varchar2(32767),
time_created timestamp with time zone,
time_completed timestamp with time zone,
responder_execution_status varchar2(32767),
responder_execution_mode varchar2(32767),
message varchar2(32767),
responder_rule_execution_details dbms_cloud_oci_cloud_guard_responder_rule_execution_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_execution_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_execution_summary_t (
id varchar2,
responder_rule_id varchar2,
responder_rule_type varchar2,
responder_rule_name varchar2,
problem_id varchar2,
problem_name varchar2,
l_region varchar2,
target_id varchar2,
compartment_id varchar2,
resource_type varchar2,
resource_name varchar2,
time_created timestamp with time zone,
time_completed timestamp with time zone,
responder_execution_status varchar2,
responder_execution_mode varchar2,
message varchar2,
responder_rule_execution_details dbms_cloud_oci_cloud_guard_responder_rule_execution_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The unique identifier of the responder execution |
|
(required) Responder Rule id for the responder execution |
|
(required) Rule Type for the responder execution Allowed values are: 'REMEDIATION', 'NOTIFICATION' |
|
(required) Rule name for the responder execution |
|
(required) Problem id associated with the responder execution |
|
(required) Problem name associated with the responder execution |
|
(required) Region where the problem is found |
|
(required) Target Id of the problem for the responder execution |
|
(required) compartment id of the problem for the responder execution |
|
(required) resource type of the problem for the responder execution |
|
(required) resource name of the problem for the responder execution. TODO-DOC link to resource definition doc |
|
(required) The date and time the responder execution was created. Format defined by RFC3339. |
|
(optional) The date and time the responder execution was updated. Format defined by RFC3339. |
|
(required) current execution status of the responder Allowed values are: 'STARTED', 'AWAITING_CONFIRMATION', 'AWAITING_INPUT', 'SUCCEEDED', 'FAILED', 'SKIPPED', 'ALL' |
|
(required) possible type of responder execution modes Allowed values are: 'MANUAL', 'AUTOMATED', 'ALL' |
|
(optional) Message about the responder execution. |
|
(optional) |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_EXECUTION_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_responder_execution_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_execution_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_responder_execution_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_EXECUTION_COLLECTION_T Type
Provides the summary of responder executions and their corresponding count value.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_execution_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_responder_execution_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_execution_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_execution_collection_t (
items dbms_cloud_oci_cloud_guard_responder_execution_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of ResponderExecutionSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_EXECUTION_TREND_AGGREGATION_T Type
Provides the timestamps and their corresponding number of remediations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_execution_trend_aggregation_t FORCE AUTHID CURRENT_USER IS OBJECT (
dimensions_map json_element_t,
start_timestamp number,
duration_in_seconds number,
l_count number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_execution_trend_aggregation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_execution_trend_aggregation_t (
dimensions_map json_element_t,
start_timestamp number,
duration_in_seconds number,
l_count number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The key-value pairs of dimensions and their names. |
|
(required) Start Time in epoch seconds |
|
(required) Duration |
|
(required) The number of remediations for a given time. |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_EXECUTION_TREND_AGGREGATION_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_responder_execution_trend_aggregation_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_execution_trend_aggregation_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_responder_execution_trend_aggregation_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_EXECUTION_TREND_AGGREGATION_COLLECTION_T Type
Responder Execution Trend Collection
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_execution_trend_aggregation_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_responder_execution_trend_aggregation_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_execution_trend_aggregation_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_execution_trend_aggregation_collection_t (
items dbms_cloud_oci_cloud_guard_responder_execution_trend_aggregation_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The items consist of all the ResponderExecutionTrendAggregation objects. |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_RULE_DETAILS_T Type
Details of ResponderRule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
condition dbms_cloud_oci_cloud_guard_condition_t,
configurations dbms_cloud_oci_cloud_guard_responder_configuration_tbl,
is_enabled number,
l_mode varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_rule_details_t (
condition dbms_cloud_oci_cloud_guard_condition_t,
configurations dbms_cloud_oci_cloud_guard_responder_configuration_tbl,
is_enabled number,
l_mode varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) |
|
(optional) ResponderRule configurations |
|
(required) Identifies state for ResponderRule |
|
(optional) Execution Mode for ResponderRule Allowed values are: 'AUTOACTION', 'USERACTION' |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_RECIPE_RESPONDER_RULE_T Type
Details of ResponderRule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
responder_rule_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
l_type varchar2(32767),
policies dbms_cloud_oci_cloud_guard_varchar2_tbl,
supported_modes dbms_cloud_oci_cloud_guard_varchar2_tbl,
details dbms_cloud_oci_cloud_guard_responder_rule_details_t,
compartment_id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_t (
responder_rule_id varchar2,
display_name varchar2,
description varchar2,
l_type varchar2,
policies dbms_cloud_oci_cloud_guard_varchar2_tbl,
supported_modes dbms_cloud_oci_cloud_guard_varchar2_tbl,
details dbms_cloud_oci_cloud_guard_responder_rule_details_t,
compartment_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Identifier for ResponderRule. |
|
(optional) ResponderRule display name. |
|
(optional) ResponderRule description. |
|
(optional) Type of Responder Allowed values are: 'REMEDIATION', 'NOTIFICATION' |
|
(optional) List of Policy |
|
(optional) Supported Execution Modes Allowed values are: 'AUTOACTION', 'USERACTION' |
|
(optional) |
|
(required) Compartment Identifier |
|
(optional) The date and time the responder recipe rule was created. Format defined by RFC3339. |
|
(optional) The date and time the responder recipe rule was updated. Format defined by RFC3339. |
|
(optional) The current state of the ResponderRule. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_RECIPE_RESPONDER_RULE_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_RECIPE_T Type
Details of ResponderRecipe.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_recipe_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
owner varchar2(32767),
responder_rules dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_tbl,
effective_responder_rules dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_tbl,
source_responder_recipe_id varchar2(32767),
compartment_id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_recipe_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_recipe_t (
id varchar2,
display_name varchar2,
description varchar2,
owner varchar2,
responder_rules dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_tbl,
effective_responder_rules dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_tbl,
source_responder_recipe_id varchar2,
compartment_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Identifier for ResponderRecipe. |
|
(optional) ResponderRecipe display name. |
|
(optional) ResponderRecipe description. |
|
(optional) Owner of ResponderRecipe Allowed values are: 'CUSTOMER', 'ORACLE' |
|
(optional) List of responder rules associated with the recipe |
|
(optional) List of responder rules associated with the recipe |
|
(optional) The id of the source responder recipe. |
|
(required) Compartment Identifier |
|
(optional) The date and time the responder recipe was created. Format defined by RFC3339. |
|
(optional) The date and time the responder recipe was updated. Format defined by RFC3339. |
|
(optional) The current state of the Example. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_RECIPE_SUMMARY_T Type
Summary of the ResponderRecipe.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_recipe_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
owner varchar2(32767),
responder_rules dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_tbl,
source_responder_recipe_id varchar2(32767),
compartment_id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_recipe_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_recipe_summary_t (
id varchar2,
display_name varchar2,
description varchar2,
owner varchar2,
responder_rules dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_tbl,
source_responder_recipe_id varchar2,
compartment_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Identifier for ResponderRecipe. |
|
(optional) ResponderRecipe display name. |
|
(optional) ResponderRecipe description. |
|
(optional) Owner of ResponderRecipe Allowed values are: 'CUSTOMER', 'ORACLE' |
|
(optional) List of responder rules associated with the recipe |
|
(optional) The id of the source responder recipe. |
|
(required) Compartment Identifier |
|
(optional) The date and time the responder recipe was created. Format defined by RFC3339. |
|
(optional) The date and time the responder recipe was updated. Format defined by RFC3339. |
|
(optional) The current state of the Example. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_RECIPE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_responder_recipe_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_recipe_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_responder_recipe_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_RECIPE_COLLECTION_T Type
Summary of the ResponderRecipe.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_recipe_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_responder_recipe_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_recipe_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_recipe_collection_t (
items dbms_cloud_oci_cloud_guard_responder_recipe_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of ResponderRecipeSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_RECIPE_RESPONDER_RULE_SUMMARY_T Type
Details of ResponderRule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
l_type varchar2(32767),
policies dbms_cloud_oci_cloud_guard_varchar2_tbl,
supported_modes dbms_cloud_oci_cloud_guard_varchar2_tbl,
details dbms_cloud_oci_cloud_guard_responder_rule_details_t,
compartment_id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_summary_t (
id varchar2,
display_name varchar2,
description varchar2,
l_type varchar2,
policies dbms_cloud_oci_cloud_guard_varchar2_tbl,
supported_modes dbms_cloud_oci_cloud_guard_varchar2_tbl,
details dbms_cloud_oci_cloud_guard_responder_rule_details_t,
compartment_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Identifier for ResponderRule. |
|
(optional) ResponderRule Display Name |
|
(optional) ResponderRule Description |
|
(optional) Type of Responder Allowed values are: 'REMEDIATION', 'NOTIFICATION' |
|
(optional) List of Policy |
|
(optional) Supported Execution Modes Allowed values are: 'AUTOACTION', 'USERACTION' |
|
(optional) |
|
(required) Compartment Identifier |
|
(optional) The date and time the responder recipe rule was created. Format defined by RFC3339. |
|
(optional) The date and time the responder recipe rule was updated. Format defined by RFC3339. |
|
(optional) The current state of the ResponderRule. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_RECIPE_RESPONDER_RULE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_RECIPE_RESPONDER_RULE_COLLECTION_T Type
Summary of the ResponderRule within ResponderRecipe.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_collection_t (
items dbms_cloud_oci_cloud_guard_responder_recipe_responder_rule_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of ResponderRecipeResponderRuleSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_RULE_T Type
Definition of ResponderRule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
l_type varchar2(32767),
policies dbms_cloud_oci_cloud_guard_varchar2_tbl,
supported_modes dbms_cloud_oci_cloud_guard_varchar2_tbl,
details dbms_cloud_oci_cloud_guard_responder_rule_details_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_rule_t (
id varchar2,
display_name varchar2,
description varchar2,
l_type varchar2,
policies dbms_cloud_oci_cloud_guard_varchar2_tbl,
supported_modes dbms_cloud_oci_cloud_guard_varchar2_tbl,
details dbms_cloud_oci_cloud_guard_responder_rule_details_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Identifier for ResponderRule. |
|
(required) ResponderRule Display Name |
|
(required) ResponderRule Description |
|
(required) Type of Responder Allowed values are: 'REMEDIATION', 'NOTIFICATION' |
|
(optional) List of Policy |
|
(optional) Supported Execution Modes Allowed values are: 'AUTOACTION', 'USERACTION' |
|
(optional) |
|
(optional) The date and time the responder rule was created. Format defined by RFC3339. |
|
(optional) The date and time the responder rule was updated. Format defined by RFC3339. |
|
(optional) The current state of the ResponderRule. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_RULE_SUMMARY_T Type
Summary of the ResponderRule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_rule_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
l_type varchar2(32767),
policies dbms_cloud_oci_cloud_guard_varchar2_tbl,
supported_modes dbms_cloud_oci_cloud_guard_varchar2_tbl,
details dbms_cloud_oci_cloud_guard_responder_rule_details_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_rule_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_rule_summary_t (
id varchar2,
display_name varchar2,
description varchar2,
l_type varchar2,
policies dbms_cloud_oci_cloud_guard_varchar2_tbl,
supported_modes dbms_cloud_oci_cloud_guard_varchar2_tbl,
details dbms_cloud_oci_cloud_guard_responder_rule_details_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Identifier for ResponderRule. |
|
(required) ResponderRule Display Name |
|
(required) ResponderRule Description |
|
(required) Type of Responder Allowed values are: 'REMEDIATION', 'NOTIFICATION' |
|
(optional) List of Policy |
|
(optional) Supported Execution Modes Allowed values are: 'AUTOACTION', 'USERACTION' |
|
(optional) |
|
(optional) The date and time the responder rule was created. Format defined by RFC3339. |
|
(optional) The date and time the responder rule was updated. Format defined by RFC3339. |
|
(optional) The current state of the ResponderRule. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_RULE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_responder_rule_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_rule_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_responder_rule_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_RESPONDER_RULE_COLLECTION_T Type
Summary of the ResponderRule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_responder_rule_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_responder_rule_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_rule_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_responder_rule_collection_t (
items dbms_cloud_oci_cloud_guard_responder_rule_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of ResponderRuleSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_RISK_SCORE_AGGREGATION_T Type
Provides the dimensions and their corresponding risk score.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_risk_score_aggregation_t FORCE AUTHID CURRENT_USER IS OBJECT (
dimensions_map json_element_t,
risk_score number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_risk_score_aggregation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_risk_score_aggregation_t (
dimensions_map json_element_t,
risk_score number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The key-value pairs of dimensions and their names. |
|
(required) The risk score with given dimensions |
DBMS_CLOUD_OCI_CLOUD_GUARD_RISK_SCORE_AGGREGATION_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_risk_score_aggregation_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_risk_score_aggregation_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_risk_score_aggregation_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_RISK_SCORE_AGGREGATION_COLLECTION_T Type
Risk Score Aggregation Collection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_risk_score_aggregation_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_risk_score_aggregation_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_risk_score_aggregation_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_risk_score_aggregation_collection_t (
items dbms_cloud_oci_cloud_guard_risk_score_aggregation_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The items consist of all the RiskScoreAggregation objects. |
DBMS_CLOUD_OCI_CLOUD_GUARD_SECURITY_POLICY_T Type
A security policy defines a security requirement for resources in a security zone. If a security zone enables a policy (using a recipe), then any action that attempts to violate that policy is denied.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_security_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
friendly_name varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
owner varchar2(32767),
category varchar2(32767),
services dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_policy_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_policy_t (
id varchar2,
friendly_name varchar2,
display_name varchar2,
description varchar2,
compartment_id varchar2,
owner varchar2,
category varchar2,
services dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier that is immutable on creation |
|
(optional) A shorter version of the security policy's name |
|
(optional) The security policy's full name |
|
(optional) The security policy's description |
|
(required) The id of the security policy's compartment |
|
(required) The owner of the security policy Allowed values are: 'CUSTOMER', 'ORACLE' |
|
(optional) The category of security policy |
|
(optional) The list of services that the security policy protects |
|
(optional) The time the security policy was created. An RFC3339 formatted datetime string. |
|
(optional) The time the security policy was last updated. An RFC3339 formatted datetime string. |
|
(optional) The current state of the security policy Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, this can be used to provide actionable information for a resource in a `Failed` state. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_SECURITY_POLICY_SUMMARY_T Type
Summary information for a security zone policy. A security policy defines a security requirement for resources in a security zone. If a security zone enables a policy (using a recipe), then any action that attempts to violate that policy is denied.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_security_policy_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
friendly_name varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
owner varchar2(32767),
category varchar2(32767),
services dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_policy_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_policy_summary_t (
id varchar2,
friendly_name varchar2,
display_name varchar2,
description varchar2,
compartment_id varchar2,
owner varchar2,
category varchar2,
services dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier that is immutable on creation |
|
(optional) A shorter version of the security policy's name |
|
(optional) The security policy's full name |
|
(optional) The security policy's description |
|
(required) The id of the security policy's compartment |
|
(required) The owner of the security policy Allowed values are: 'CUSTOMER', 'ORACLE' |
|
(optional) The category of security policy |
|
(optional) The list of services that the security policy protects |
|
(optional) The time the security policy was created. An RFC3339 formatted datetime string. |
|
(optional) The time the security policy was last updated. An RFC3339 formatted datetime string. |
|
(optional) The current state of the security policy Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, this can be used to provide actionable information for a policy in the `Failed` state. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_SECURITY_POLICY_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_security_policy_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_security_policy_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_security_policy_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_SECURITY_POLICY_COLLECTION_T Type
Results of a security policy search. Contains `SecurityPolicySummary` items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_security_policy_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_security_policy_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_policy_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_policy_collection_t (
items dbms_cloud_oci_cloud_guard_security_policy_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) A list of security policy summaries |
DBMS_CLOUD_OCI_CLOUD_GUARD_SECURITY_RECIPE_T Type
A security zone recipe is a collection of security zone policies. Oracle Cloud Infrastructure enforces these policies on security zones that use the recipe.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_security_recipe_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
owner varchar2(32767),
security_policies dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_recipe_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_recipe_t (
id varchar2,
display_name varchar2,
description varchar2,
compartment_id varchar2,
owner varchar2,
security_policies dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier that is immutable on creation |
|
(optional) The recipe's name |
|
(optional) The recipe's description |
|
(required) The id of the compartment that contains the recipe |
|
(required) The owner of the recipe Allowed values are: 'CUSTOMER', 'ORACLE' |
|
(required) The list of `SecurityPolicy` ids that are included in the recipe |
|
(optional) The time the recipe was created. An RFC3339 formatted datetime string. |
|
(optional) The time the recipe was last updated. An RFC3339 formatted datetime string. |
|
(optional) The current state of the recipe Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, this can be used to provide actionable information for a recipe in the `Failed` state. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_SECURITY_RECIPE_SUMMARY_T Type
Summary information for a security zone recipe. A security zone recipe is a collection of security zone policies. Oracle Cloud Infrastructure enforces these policies on security zones that use the recipe.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_security_recipe_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
owner varchar2(32767),
security_policies dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_recipe_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_recipe_summary_t (
id varchar2,
display_name varchar2,
description varchar2,
compartment_id varchar2,
owner varchar2,
security_policies dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier that is immutable on creation |
|
(optional) The recipe's name |
|
(optional) The recipe's description |
|
(required) The id of the compartment that contains the recipe |
|
(required) The owner of the recipe Allowed values are: 'CUSTOMER', 'ORACLE' |
|
(required) The list of `SecurityPolicy` ids that are included in the recipe |
|
(optional) The time the recipe was created. An RFC3339 formatted datetime string. |
|
(optional) The time the recipe was last updated. An RFC3339 formatted datetime string. |
|
(optional) The current state of the recipe Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, this can be used to provide actionable information for a recipe in the `Failed` state. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_SECURITY_RECIPE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_security_recipe_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_security_recipe_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_security_recipe_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_SECURITY_RECIPE_COLLECTION_T Type
Results of a security zone recipe search. Contains `SecurityRecipeSummary` items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_security_recipe_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_security_recipe_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_recipe_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_recipe_collection_t (
items dbms_cloud_oci_cloud_guard_security_recipe_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) A list of security zone recipe summaries |
DBMS_CLOUD_OCI_CLOUD_GUARD_SECURITY_SCORE_AGGREGATION_T Type
Provides the dimensions and their corresponding count value.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_security_score_aggregation_t FORCE AUTHID CURRENT_USER IS OBJECT (
dimensions_map json_element_t,
security_rating varchar2(32767),
security_score number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_score_aggregation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_score_aggregation_t (
dimensions_map json_element_t,
security_rating varchar2,
security_score number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The key-value pairs of dimensions and their names. |
|
(required) The security rating with given dimension/s Allowed values are: 'EXCELLENT', 'GOOD', 'FAIR', 'POOR', 'NA' |
|
(required) The security score with given dimension/s |
DBMS_CLOUD_OCI_CLOUD_GUARD_SECURITY_SCORE_AGGREGATION_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_security_score_aggregation_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_security_score_aggregation_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_security_score_aggregation_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_SECURITY_SCORE_AGGREGATION_COLLECTION_T Type
Security Score Aggregation Collection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_security_score_aggregation_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_security_score_aggregation_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_score_aggregation_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_score_aggregation_collection_t (
items dbms_cloud_oci_cloud_guard_security_score_aggregation_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The items consist of all the SecurityScoreAggregation objects. |
DBMS_CLOUD_OCI_CLOUD_GUARD_SECURITY_SCORE_TREND_AGGREGATION_T Type
Provides the dimensions and their corresponding time and security score.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_security_score_trend_aggregation_t FORCE AUTHID CURRENT_USER IS OBJECT (
dimensions_map json_element_t,
start_timestamp number,
duration_in_seconds number,
security_rating varchar2(32767),
security_score number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_score_trend_aggregation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_score_trend_aggregation_t (
dimensions_map json_element_t,
start_timestamp number,
duration_in_seconds number,
security_rating varchar2,
security_score number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The key-value pairs of dimensions and their names. |
|
(required) Start Time in epoch seconds |
|
(required) Duration |
|
(required) The security rating with given dimensions and time range Allowed values are: 'EXCELLENT', 'GOOD', 'FAIR', 'POOR', 'NA' |
|
(required) The security score with given dimensions and time range |
DBMS_CLOUD_OCI_CLOUD_GUARD_SECURITY_SCORE_TREND_AGGREGATION_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_security_score_trend_aggregation_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_security_score_trend_aggregation_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_security_score_trend_aggregation_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_SECURITY_SCORE_TREND_AGGREGATION_COLLECTION_T Type
Security Score Trend Aggregation Collection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_security_score_trend_aggregation_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_security_score_trend_aggregation_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_score_trend_aggregation_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_score_trend_aggregation_collection_t (
items dbms_cloud_oci_cloud_guard_security_score_trend_aggregation_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The items consist of all the SecurityScoreTrendAggregation objects. |
DBMS_CLOUD_OCI_CLOUD_GUARD_SECURITY_ZONE_T Type
A security zone is associated with a security zone recipe and enforces all security zone policies in the recipe. Any actions in the zone's compartment (and any subcompartments in the zone) that violate a policy are denied.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_security_zone_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
security_zone_recipe_id varchar2(32767),
security_zone_target_id varchar2(32767),
inherited_by_compartments dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_zone_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_zone_t (
id varchar2,
display_name varchar2,
description varchar2,
compartment_id varchar2,
security_zone_recipe_id varchar2,
security_zone_target_id varchar2,
inherited_by_compartments dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier that is immutable on creation |
|
(optional) The security zone's name |
|
(optional) The security zone's description |
|
(required) The OCID of the compartment for the security zone |
|
(required) The OCID of the recipe (`SecurityRecipe`) for the security zone |
|
(optional) The OCID of the target associated with the security zone |
|
(optional) List of inherited compartments |
|
(optional) The time the security zone was created. An RFC3339 formatted datetime string. |
|
(optional) The time the security zone was last updated. An RFC3339 formatted datetime string. |
|
(optional) The current state of the security zone Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, this can be used to provide actionable information for a zone in the `Failed` state. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_SECURITY_ZONE_SUMMARY_T Type
Summary information for a security zone. A security zone is associated with a security zone recipe and enforces all security zone policies in the recipe. Any actions in the zone's compartment (and any subcompartments in the zone) that violate a policy are denied.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_security_zone_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
security_zone_recipe_id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_zone_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_zone_summary_t (
id varchar2,
display_name varchar2,
description varchar2,
compartment_id varchar2,
security_zone_recipe_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier that is immutable on creation |
|
(optional) The security zone's name |
|
(optional) The security zone's description |
|
(required) The OCID of the compartment for the security zone |
|
(required) The OCID of the recipe (`SecurityRecipe`) for the security zone |
|
(optional) The time the security zone was created. An RFC3339 formatted datetime string. |
|
(optional) The time the security zone was last updated. An RFC3339 formatted datetime string. |
|
(optional) The current state of the security zone Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, this can be used to provide actionable information for a zone in the `Failed` state. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_SECURITY_ZONE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_security_zone_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_security_zone_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_security_zone_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_SECURITY_ZONE_COLLECTION_T Type
Results of a security zone search. Contains `SecurityZoneSummary` items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_security_zone_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_security_zone_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_zone_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_zone_collection_t (
items dbms_cloud_oci_cloud_guard_security_zone_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of security zone summaries |
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_DETAILS_T Type
Details specific to the target type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
target_resource_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_details_t (
target_resource_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field | Description |
---|---|
|
(required) Possible type of targets. Allowed values are: 'COMPARTMENT', 'ERPCLOUD', 'HCMCLOUD', 'SECURITY_ZONE' |
DBMS_CLOUD_OCI_CLOUD_GUARD_SECURITY_RECIPE_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_security_recipe_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_security_recipe_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_security_recipe_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_SECURITY_ZONE_TARGET_DETAILS_T Type
Details about Security Zone Target.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_security_zone_target_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_guard_target_details_t (
security_zone_id varchar2(32767),
security_zone_display_name varchar2(32767),
target_security_zone_recipes dbms_cloud_oci_cloud_guard_security_recipe_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_zone_target_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_security_zone_target_details_t (
target_resource_type varchar2,
security_zone_id varchar2,
security_zone_display_name varchar2,
target_security_zone_recipes dbms_cloud_oci_cloud_guard_security_recipe_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cloud_guard_security_zone_target_details_t
is a subtype of the dbms_cloud_oci_cloud_guard_target_details_t
type.
Fields
Field | Description |
---|---|
|
(optional) The OCID of the security zone to associate this compartment with. |
|
(optional) The name of the security zone to associate this compartment with. |
|
(optional) The list of security zone recipes to associate this compartment with. |
DBMS_CLOUD_OCI_CLOUD_GUARD_SIGHTING_T Type
Sighting details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_sighting_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
description varchar2(32767),
problem_id varchar2(32767),
compartment_id varchar2(32767),
actor_principal_id varchar2(32767),
actor_principal_name varchar2(32767),
actor_principal_type varchar2(32767),
classification_status varchar2(32767),
sighting_type varchar2(32767),
sighting_type_display_name varchar2(32767),
tactic_name varchar2(32767),
technique_name varchar2(32767),
sighting_score number,
severity varchar2(32767),
confidence varchar2(32767),
time_first_detected timestamp with time zone,
time_last_detected timestamp with time zone,
regions dbms_cloud_oci_cloud_guard_varchar2_tbl,
additional_details json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_sighting_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_sighting_t (
id varchar2,
description varchar2,
problem_id varchar2,
compartment_id varchar2,
actor_principal_id varchar2,
actor_principal_name varchar2,
actor_principal_type varchar2,
classification_status varchar2,
sighting_type varchar2,
sighting_type_display_name varchar2,
tactic_name varchar2,
technique_name varchar2,
sighting_score number,
severity varchar2,
confidence varchar2,
time_first_detected timestamp with time zone,
time_last_detected timestamp with time zone,
regions dbms_cloud_oci_cloud_guard_varchar2_tbl,
additional_details json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier for sighting event |
|
(required) Description of the sighting event |
|
(optional) Problem Id to which the Sighting is associated |
|
(required) Compartment Id where the resource is created |
|
(optional) Unique identifier for principal actor |
|
(optional) Name of the principal actor |
|
(optional) Type of the principal actor |
|
(required) ClassificationStatus of the sighting event Allowed values are: 'FALSE_NEGATIVE', 'TRUE_NEGATIVE', 'FALSE_POSITIVE', 'TRUE_POSITIVE', 'NOT_CLASSIFIED' |
|
(required) Identifier for the sighting type |
|
(required) Display name of the sighting type |
|
(required) Name of the Mitre att&ck tactic |
|
(required) Name of the Mitre att&ck technique |
|
(required) Score for the sighting |
|
(required) Severity of the sighting Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR' |
|
(required) Confidence of the sighting Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR' |
|
(required) The date and time the sighting was first detected. Format defined by RFC3339. |
|
(required) The date and time the sighting was last detected. Format defined by RFC3339. |
|
(required) regions involved in the sighting |
|
(optional) The additional details of the Sighting |
DBMS_CLOUD_OCI_CLOUD_GUARD_SIGHTING_SUMMARY_T Type
Sighting summary Definition.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_sighting_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
problem_id varchar2(32767),
actor_principal_id varchar2(32767),
actor_principal_name varchar2(32767),
actor_principal_type varchar2(32767),
detector_rule_id varchar2(32767),
classification_status varchar2(32767),
sighting_type varchar2(32767),
sighting_type_display_name varchar2(32767),
tactic_name varchar2(32767),
technique_name varchar2(32767),
sighting_score number,
severity varchar2(32767),
confidence varchar2(32767),
time_first_detected timestamp with time zone,
time_last_detected timestamp with time zone,
regions dbms_cloud_oci_cloud_guard_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_sighting_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_sighting_summary_t (
id varchar2,
compartment_id varchar2,
problem_id varchar2,
actor_principal_id varchar2,
actor_principal_name varchar2,
actor_principal_type varchar2,
detector_rule_id varchar2,
classification_status varchar2,
sighting_type varchar2,
sighting_type_display_name varchar2,
tactic_name varchar2,
technique_name varchar2,
sighting_score number,
severity varchar2,
confidence varchar2,
time_first_detected timestamp with time zone,
time_last_detected timestamp with time zone,
regions dbms_cloud_oci_cloud_guard_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier for finding event |
|
(required) Compartment Id where the resource is created |
|
(optional) Problem Id to which the Sighting is associated |
|
(optional) Unique identifier for principal actor |
|
(optional) Name of the principal actor |
|
(optional) Type of the principal actor |
|
(required) Unique identifier of the rule |
|
(required) ClassificationStatus of the sighting event Allowed values are: 'FALSE_NEGATIVE', 'TRUE_NEGATIVE', 'FALSE_POSITIVE', 'TRUE_POSITIVE', 'NOT_CLASSIFIED' |
|
(required) Identifier for the sighting type |
|
(required) Name of the sighting type |
|
(required) Name of the Mitre att&ck tactic |
|
(required) Name of the Mitre att&ck technique |
|
(required) Score for the sighting |
|
(required) Severity of the sighting Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR' |
|
(required) Confidence of the sighting Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR' |
|
(required) The date and time the sighting was first detected. Format defined by RFC3339. |
|
(required) The date and time the sighting was last detected. Format defined by RFC3339. |
|
(required) Regions involved in the sighting |
DBMS_CLOUD_OCI_CLOUD_GUARD_SIGHTING_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_sighting_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_sighting_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_sighting_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_SIGHTING_COLLECTION_T Type
Provides the summary of sighting
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_sighting_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_sighting_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_sighting_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_sighting_collection_t (
items dbms_cloud_oci_cloud_guard_sighting_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of SightingSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_SIGHTING_ENDPOINT_SUMMARY_T Type
Sighting Endpoints summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_sighting_endpoint_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
sighting_id varchar2(32767),
problem_id varchar2(32767),
ip_address varchar2(32767),
ip_address_type varchar2(32767),
ip_classification_type varchar2(32767),
country varchar2(32767),
latitude number,
longitude number,
asn_number varchar2(32767),
regions dbms_cloud_oci_cloud_guard_varchar2_tbl,
services dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_last_detected timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_sighting_endpoint_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_sighting_endpoint_summary_t (
id varchar2,
sighting_id varchar2,
problem_id varchar2,
ip_address varchar2,
ip_address_type varchar2,
ip_classification_type varchar2,
country varchar2,
latitude number,
longitude number,
asn_number varchar2,
regions dbms_cloud_oci_cloud_guard_varchar2_tbl,
services dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_last_detected timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier for sighting endpoints |
|
(required) Sighitng Id for sighting endpoints |
|
(optional) Problem Id for sighting endpoints |
|
(required) IP Address |
|
(required) IP Address type |
|
(optional) IP Address classification type |
|
(optional) Country |
|
(optional) Latitude |
|
(optional) Longitude |
|
(optional) ASN number |
|
(optional) Regions where activities were performed from this IP |
|
(optional) Services where activities were performed from this IP |
|
(required) Time when activities were created |
DBMS_CLOUD_OCI_CLOUD_GUARD_SIGHTING_ENDPOINT_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_sighting_endpoint_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_sighting_endpoint_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_sighting_endpoint_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_SIGHTING_ENDPOINT_COLLECTION_T Type
Provides the summary of sighting endpoints
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_sighting_endpoint_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_sighting_endpoint_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_sighting_endpoint_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_sighting_endpoint_collection_t (
items dbms_cloud_oci_cloud_guard_sighting_endpoint_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of SightingEndpointSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_SIGHTING_IMPACTED_RESOURCE_SUMMARY_T Type
Sighting Impacted Resource summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_sighting_impacted_resource_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
resource_id varchar2(32767),
sighting_id varchar2(32767),
problem_id varchar2(32767),
compartment_id varchar2(32767),
resource_name varchar2(32767),
resource_type varchar2(32767),
l_region varchar2(32767),
time_identified timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_sighting_impacted_resource_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_sighting_impacted_resource_summary_t (
id varchar2,
resource_id varchar2,
sighting_id varchar2,
problem_id varchar2,
compartment_id varchar2,
resource_name varchar2,
resource_type varchar2,
l_region varchar2,
time_identified timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier for impacted resource |
|
(required) Impacted resource Id |
|
(required) Sighting Id |
|
(optional) Problem Id for impacted resource |
|
(required) Compartment Id for impacted resource |
|
(required) Resource name |
|
(required) Resource type |
|
(required) Region for impacted resource |
|
(required) Time when the impacted resource is identified for given sighting. |
DBMS_CLOUD_OCI_CLOUD_GUARD_SIGHTING_IMPACTED_RESOURCE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_sighting_impacted_resource_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_sighting_impacted_resource_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_sighting_impacted_resource_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_SIGHTING_IMPACTED_RESOURCE_COLLECTION_T Type
Provides the summary of sighting impacted resource
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_sighting_impacted_resource_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_sighting_impacted_resource_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_sighting_impacted_resource_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_sighting_impacted_resource_collection_t (
items dbms_cloud_oci_cloud_guard_sighting_impacted_resource_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of SightingImpactedResourceSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_SIMPLE_CONDITION_T Type
Simple Condition object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_simple_condition_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_guard_condition_t (
parameter varchar2(32767),
operator varchar2(32767),
value varchar2(32767),
value_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_simple_condition_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_simple_condition_t (
kind varchar2,
parameter varchar2,
operator varchar2,
value varchar2,
value_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cloud_guard_simple_condition_t
is a subtype of the dbms_cloud_oci_cloud_guard_condition_t
type.
Fields
Field | Description |
---|---|
|
(optional) parameter Key |
|
(optional) type of operator Allowed values are: 'IN', 'NOT_IN', 'EQUALS', 'NOT_EQUALS' |
|
(optional) type of operator |
|
(optional) type of value Allowed values are: 'MANAGED', 'CUSTOM' |
DBMS_CLOUD_OCI_CLOUD_GUARD_SKIP_BULK_RESPONDER_EXECUTION_DETAILS_T Type
List of responder execution ids to skip the execution
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_skip_bulk_responder_execution_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
responder_execution_ids dbms_cloud_oci_cloud_guard_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_skip_bulk_responder_execution_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_skip_bulk_responder_execution_details_t (
responder_execution_ids dbms_cloud_oci_cloud_guard_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of responder execution ids to skip the execution |
DBMS_CLOUD_OCI_CLOUD_GUARD_TACTIC_COLLECTION_T Type
Collection of tactic summaries in Cloud Guard
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_tactic_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_tactic_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_tactic_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_tactic_collection_t (
items dbms_cloud_oci_cloud_guard_tactic_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of tactic summary. |
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_DETECTOR_DETAILS_T Type
Overriden settings of a Detector Rule applied on target
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_detector_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_enabled number,
risk_level varchar2(32767),
configurations dbms_cloud_oci_cloud_guard_detector_configuration_tbl,
condition_groups dbms_cloud_oci_cloud_guard_condition_group_tbl,
labels dbms_cloud_oci_cloud_guard_varchar2_tbl,
is_configuration_allowed number,
problem_threshold number,
target_types dbms_cloud_oci_cloud_guard_varchar2_tbl,
sighting_types dbms_cloud_oci_cloud_guard_sighting_type_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_detector_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_detector_details_t (
is_enabled number,
risk_level varchar2,
configurations dbms_cloud_oci_cloud_guard_detector_configuration_tbl,
condition_groups dbms_cloud_oci_cloud_guard_condition_group_tbl,
labels dbms_cloud_oci_cloud_guard_varchar2_tbl,
is_configuration_allowed number,
problem_threshold number,
target_types dbms_cloud_oci_cloud_guard_varchar2_tbl,
sighting_types dbms_cloud_oci_cloud_guard_sighting_type_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Enables the control |
|
(optional) The Risk Level Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR' |
|
(optional) Configuration details |
|
(optional) Condition group corresponding to each compartment |
|
(optional) user defined labels for a detector rule |
|
(optional) configuration allowed or not |
|
(optional) Cutover point for an elevated resource Risk Score to create a Problem |
|
(optional) List of target types for which the detector rule is applicable |
|
(optional) List of sighting types |
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_DETECTOR_RECIPE_DETECTOR_RULE_T Type
Detector Recipe Rule
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
detector_rule_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
recommendation varchar2(32767),
detector varchar2(32767),
service_type varchar2(32767),
resource_type varchar2(32767),
details dbms_cloud_oci_cloud_guard_target_detector_details_t,
managed_list_types dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
data_source_id varchar2(32767),
entities_mappings dbms_cloud_oci_cloud_guard_entities_mapping_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_t (
detector_rule_id varchar2,
display_name varchar2,
description varchar2,
recommendation varchar2,
detector varchar2,
service_type varchar2,
resource_type varchar2,
details dbms_cloud_oci_cloud_guard_target_detector_details_t,
managed_list_types dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
data_source_id varchar2,
entities_mappings dbms_cloud_oci_cloud_guard_entities_mapping_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The unique identifier of the detector rule. |
|
(optional) Display name for TargetDetectorRecipeDetectorRule. information. |
|
(optional) Description for TargetDetectorRecipeDetectorRule. information. |
|
(optional) Recommendation for TargetDetectorRecipeDetectorRule |
|
(required) detector for the rule Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR' |
|
(required) service type of the configuration to which the rule is applied |
|
(required) resource type of the configuration to which the rule is applied |
|
(optional) |
|
(optional) List of cloudguard managed list types related to this rule Allowed values are: 'CIDR_BLOCK', 'USERS', 'GROUPS', 'IPV4ADDRESS', 'IPV6ADDRESS', 'RESOURCE_OCID', 'REGION', 'COUNTRY', 'STATE', 'CITY', 'TAGS', 'GENERIC' |
|
(optional) The date and time the target detector recipe rule was created. Format defined by RFC3339. |
|
(optional) The date and time the target detector recipe rule was updated. Format defined by RFC3339. |
|
(optional) The current state of the DetectorRule. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
|
(optional) The id of the attached DataSource. |
|
(optional) Data Source entities mapping for a Detector Rule |
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_DETECTOR_RECIPE_DETECTOR_RULE_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_DETECTOR_RECIPE_T Type
Target Detector recipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_detector_recipe_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
detector_recipe_id varchar2(32767),
owner varchar2(32767),
detector varchar2(32767),
detector_rules dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_tbl,
effective_detector_rules dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
source_data_retention number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_detector_recipe_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_detector_recipe_t (
id varchar2,
display_name varchar2,
description varchar2,
compartment_id varchar2,
detector_recipe_id varchar2,
owner varchar2,
detector varchar2,
detector_rules dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_tbl,
effective_detector_rules dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
source_data_retention number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Ocid for detector recipe |
|
(required) Display name of detector recipe. |
|
(optional) Detector recipe description. |
|
(required) compartmentId of detector recipe |
|
(required) Unique identifier for Detector Recipe of which this is an extension |
|
(required) Owner of detector recipe Allowed values are: 'CUSTOMER', 'ORACLE' |
|
(required) Type of detector Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR' |
|
(optional) List of detector rules for the detector type for recipe - user input |
|
(optional) List of effective detector rules for the detector type for recipe after applying defaults |
|
(optional) The date and time the target detector recipe was created. Format defined by RFC3339. |
|
(optional) The date and time the target detector recipe was updated. Format defined by RFC3339. |
|
(optional) The current state of the resource. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) The number of days for which source data is retained |
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_RESPONDER_RECIPE_RESPONDER_RULE_T Type
Details of ResponderRule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
responder_rule_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
l_type varchar2(32767),
policies dbms_cloud_oci_cloud_guard_varchar2_tbl,
supported_modes dbms_cloud_oci_cloud_guard_varchar2_tbl,
details dbms_cloud_oci_cloud_guard_responder_rule_details_t,
compartment_id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_t (
responder_rule_id varchar2,
display_name varchar2,
description varchar2,
l_type varchar2,
policies dbms_cloud_oci_cloud_guard_varchar2_tbl,
supported_modes dbms_cloud_oci_cloud_guard_varchar2_tbl,
details dbms_cloud_oci_cloud_guard_responder_rule_details_t,
compartment_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique ResponderRule identifier. |
|
(optional) ResponderRule display name. |
|
(optional) ResponderRule description. |
|
(optional) Type of Responder Allowed values are: 'REMEDIATION', 'NOTIFICATION' |
|
(optional) List of Policy |
|
(optional) Supported Execution Modes Allowed values are: 'AUTOACTION', 'USERACTION' |
|
(optional) |
|
(required) Compartment Identifier |
|
(optional) The date and time the target responder recipe rule was created. Format defined by RFC3339. |
|
(optional) The date and time the target responder recipe rule was updated. Format defined by RFC3339. |
|
(optional) The current state of the ResponderRule. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_RESPONDER_RECIPE_RESPONDER_RULE_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_RESPONDER_RECIPE_T Type
Details of Target ResponderRecipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_responder_recipe_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
responder_recipe_id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
owner varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
responder_rules dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_tbl,
effective_responder_rules dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_responder_recipe_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_responder_recipe_t (
id varchar2,
responder_recipe_id varchar2,
compartment_id varchar2,
display_name varchar2,
description varchar2,
owner varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
responder_rules dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_tbl,
effective_responder_rules dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier of TargetResponderRecipe that can't be changed after creation. |
|
(required) Unique identifier for Responder Recipe of which this is an extension. |
|
(required) Compartment Identifier |
|
(required) ResponderRecipe display name. |
|
(required) ResponderRecipe description. |
|
(required) Owner of ResponderRecipe Allowed values are: 'CUSTOMER', 'ORACLE' |
|
(optional) The date and time the target responder recipe rule was created. Format defined by RFC3339. |
|
(optional) The date and time the target responder recipe rule was updated. Format defined by RFC3339. |
|
(optional) List of responder rules associated with the recipe - user input |
|
(optional) List of responder rules associated with the recipe after applying all defaults |
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_DETECTOR_RECIPE_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_target_detector_recipe_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_detector_recipe_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_target_detector_recipe_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_RESPONDER_RECIPE_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_target_responder_recipe_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_responder_recipe_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_target_responder_recipe_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_T Type
Description of Target.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
description varchar2(32767),
target_resource_type varchar2(32767),
target_resource_id varchar2(32767),
recipe_count number,
target_detector_recipes dbms_cloud_oci_cloud_guard_target_detector_recipe_tbl,
target_responder_recipes dbms_cloud_oci_cloud_guard_target_responder_recipe_tbl,
target_details dbms_cloud_oci_cloud_guard_target_details_t,
inherited_by_compartments dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecyle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
description varchar2,
target_resource_type varchar2,
target_resource_id varchar2,
recipe_count number,
target_detector_recipes dbms_cloud_oci_cloud_guard_target_detector_recipe_tbl,
target_responder_recipes dbms_cloud_oci_cloud_guard_target_responder_recipe_tbl,
target_details dbms_cloud_oci_cloud_guard_target_details_t,
inherited_by_compartments dbms_cloud_oci_cloud_guard_varchar2_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecyle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier that is immutable on creation. |
|
(optional) Target display name, can be renamed. |
|
(required) Compartment Identifier where the resource is created |
|
(optional) The target description. |
|
(required) possible type of targets Allowed values are: 'COMPARTMENT', 'ERPCLOUD', 'HCMCLOUD', 'SECURITY_ZONE' |
|
(required) Resource ID which the target uses to monitor |
|
(required) Total number of recipes attached to target |
|
(optional) List of detector recipes associated with target |
|
(optional) List of responder recipes associated with target |
|
(optional) |
|
(optional) List of inherited compartments |
|
(optional) The date and time the target was created. Format defined by RFC3339. |
|
(optional) The date and time the target was updated. Format defined by RFC3339. |
|
(optional) The current state of the Target. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_SUMMARY_T Type
Summary of the Target.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
target_resource_type varchar2(32767),
target_resource_id varchar2(32767),
recipe_count number,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecyle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_summary_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
target_resource_type varchar2,
target_resource_id varchar2,
recipe_count number,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecyle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier that is immutable on creation |
|
(optional) DetectorTemplate Identifier, can be renamed |
|
(required) Compartment Identifier where the resource is created |
|
(required) possible type of targets(compartment/HCMCloud/ERPCloud) Allowed values are: 'COMPARTMENT', 'ERPCLOUD', 'HCMCLOUD', 'SECURITY_ZONE' |
|
(required) Resource ID which the target uses to monitor |
|
(required) Total number of recipes attached to target |
|
(optional) The date and time the target was created. Format defined by RFC3339. |
|
(optional) The date and time the target was updated. Format defined by RFC3339. |
|
(optional) The current state of the resource. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_target_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_target_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_COLLECTION_T Type
Collection of Target
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_target_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_collection_t (
items dbms_cloud_oci_cloud_guard_target_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of TargetSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_DETECTOR_RECIPE_SUMMARY_T Type
Summary of DetectorRecipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_detector_recipe_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
owner varchar2(32767),
detector_recipe_id varchar2(32767),
detector varchar2(32767),
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_details varchar2(32767),
source_data_retention number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_detector_recipe_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_detector_recipe_summary_t (
id varchar2,
compartment_id varchar2,
display_name varchar2,
description varchar2,
owner varchar2,
detector_recipe_id varchar2,
detector varchar2,
lifecycle_state varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_details varchar2,
source_data_retention number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier that is immutable on creation |
|
(required) Compartment Identifier |
|
(required) DetectorRecipe Identifier Name |
|
(required) DetectorRecipe Description |
|
(required) Owner of DetectorRecipe Allowed values are: 'CUSTOMER', 'ORACLE' |
|
(required) Unique identifier for Detector Recipe of which this is an extension |
|
(optional) Type of detector Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR' |
|
(optional) The current state of the resource. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) The date and time the target detector recipe was created. Format defined by RFC3339. |
|
(optional) The date and time the target detector recipe was updated. Format defined by RFC3339. |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
|
(optional) The number of days for which source data is retained |
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_DETECTOR_RECIPE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_target_detector_recipe_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_detector_recipe_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_target_detector_recipe_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_DETECTOR_RECIPE_COLLECTION_T Type
Summary of the Target DetectorRecipe.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_detector_recipe_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_target_detector_recipe_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_detector_recipe_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_detector_recipe_collection_t (
items dbms_cloud_oci_cloud_guard_target_detector_recipe_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of TargetDetectorRecipeSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_DETECTOR_RECIPE_DETECTOR_RULE_SUMMARY_T Type
Summary of the Detector Recipe Rule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
recommendation varchar2(32767),
detector varchar2(32767),
service_type varchar2(32767),
resource_type varchar2(32767),
managed_list_types dbms_cloud_oci_cloud_guard_varchar2_tbl,
detector_details dbms_cloud_oci_cloud_guard_target_detector_details_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
data_source_id varchar2(32767),
entities_mappings dbms_cloud_oci_cloud_guard_entities_mapping_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_summary_t (
id varchar2,
display_name varchar2,
description varchar2,
recommendation varchar2,
detector varchar2,
service_type varchar2,
resource_type varchar2,
managed_list_types dbms_cloud_oci_cloud_guard_varchar2_tbl,
detector_details dbms_cloud_oci_cloud_guard_target_detector_details_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
data_source_id varchar2,
entities_mappings dbms_cloud_oci_cloud_guard_entities_mapping_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The unique identifier of the detector rule |
|
(optional) DetectorTemplate Identifier, can be renamed |
|
(optional) DetectorTemplate Identifier, can be renamed |
|
(optional) Recommendation for TargetDetectorRecipeDetectorRule |
|
(required) possible type of detectors Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR' |
|
(optional) service type of the configuration to which the rule is applied |
|
(optional) resource type of the configuration to which the rule is applied |
|
(optional) List of cloudguard managed list types related to this rule Allowed values are: 'CIDR_BLOCK', 'USERS', 'GROUPS', 'IPV4ADDRESS', 'IPV6ADDRESS', 'RESOURCE_OCID', 'REGION', 'COUNTRY', 'STATE', 'CITY', 'TAGS', 'GENERIC' |
|
(optional) |
|
(optional) The date and time the target detector recipe rule was created. Format defined by RFC3339. |
|
(optional) The date and time the target detector recipe rule was updated. Format defined by RFC3339. |
|
(optional) The current state of the target detector recipe rule Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
|
(optional) The id of the attached DataSource. |
|
(optional) Data Source entities mapping for a Detector Rule |
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_DETECTOR_RECIPE_DETECTOR_RULE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_DETECTOR_RECIPE_DETECTOR_RULE_COLLECTION_T Type
Summary of the DetectorRule within Target.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_collection_t (
items dbms_cloud_oci_cloud_guard_target_detector_recipe_detector_rule_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of TargetDetectorRecipeDetectorRuleSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_IDS_SELECTED_T Type
Target selection on basis of TargetIds.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_ids_selected_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_guard_target_selected_t (
l_values dbms_cloud_oci_cloud_guard_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_ids_selected_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_ids_selected_t (
kind varchar2,
l_values dbms_cloud_oci_cloud_guard_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cloud_guard_target_ids_selected_t
is a subtype of the dbms_cloud_oci_cloud_guard_target_selected_t
type.
Fields
Field | Description |
---|---|
|
(optional) Ids of Target |
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_RESOURCE_TYPES_SELECTED_T Type
Target selection on basis of TargetResourceTypes.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_resource_types_selected_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_guard_target_selected_t (
l_values dbms_cloud_oci_cloud_guard_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_resource_types_selected_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_resource_types_selected_t (
kind varchar2,
l_values dbms_cloud_oci_cloud_guard_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cloud_guard_target_resource_types_selected_t
is a subtype of the dbms_cloud_oci_cloud_guard_target_selected_t
type.
Fields
Field | Description |
---|---|
|
(optional) Types of Targets Allowed values are: 'COMPARTMENT', 'ERPCLOUD', 'HCMCLOUD', 'SECURITY_ZONE' |
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_RESPONDER_RECIPE_SUMMARY_T Type
Summary of ResponderRecipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_responder_recipe_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
responder_recipe_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
owner varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_responder_recipe_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_responder_recipe_summary_t (
id varchar2,
compartment_id varchar2,
responder_recipe_id varchar2,
display_name varchar2,
description varchar2,
owner varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier that is immutable on creation |
|
(required) Compartment Identifier |
|
(required) Unique identifier for Responder Recipe of which this is an extension |
|
(required) ResponderRecipe Identifier Name |
|
(required) ResponderRecipe Description |
|
(required) Owner of ResponderRecipe Allowed values are: 'CUSTOMER', 'ORACLE' |
|
(optional) The date and time the target responder recipe was created. Format defined by RFC3339. |
|
(optional) The date and time the target responder recipe was updated. Format defined by RFC3339. |
|
(optional) The current state of the Example. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_RESPONDER_RECIPE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_target_responder_recipe_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_responder_recipe_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_target_responder_recipe_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_RESPONDER_RECIPE_COLLECTION_T Type
Collection of TargetResponderRecipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_responder_recipe_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_target_responder_recipe_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_responder_recipe_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_responder_recipe_collection_t (
items dbms_cloud_oci_cloud_guard_target_responder_recipe_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of TargetResponderRecipeSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_RESPONDER_RECIPE_RESPONDER_RULE_SUMMARY_T Type
Summary of ResponderRule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
l_type varchar2(32767),
policies dbms_cloud_oci_cloud_guard_varchar2_tbl,
supported_modes dbms_cloud_oci_cloud_guard_varchar2_tbl,
details dbms_cloud_oci_cloud_guard_responder_rule_details_t,
compartment_id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_summary_t (
id varchar2,
display_name varchar2,
description varchar2,
l_type varchar2,
policies dbms_cloud_oci_cloud_guard_varchar2_tbl,
supported_modes dbms_cloud_oci_cloud_guard_varchar2_tbl,
details dbms_cloud_oci_cloud_guard_responder_rule_details_t,
compartment_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Identifier for ResponderRule. |
|
(optional) ResponderRule Display Name |
|
(optional) ResponderRule Description |
|
(optional) Type of Responder Allowed values are: 'REMEDIATION', 'NOTIFICATION' |
|
(optional) List of Policy |
|
(optional) Supported Execution Modes Allowed values are: 'AUTOACTION', 'USERACTION' |
|
(optional) |
|
(required) Compartment Identifier |
|
(optional) The date and time the target responder recipe rule was created. Format defined by RFC3339. |
|
(optional) The date and time the target responder recipe rule was updated. Format defined by RFC3339. |
|
(optional) The current state of the ResponderRule. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. |
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_RESPONDER_RECIPE_RESPONDER_RULE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_TARGET_RESPONDER_RECIPE_RESPONDER_RULE_COLLECTION_T Type
Summary of the ResponderRule within Target.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_collection_t (
items dbms_cloud_oci_cloud_guard_target_responder_recipe_responder_rule_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of TargetResponderRecipeResponderRuleSummary |
DBMS_CLOUD_OCI_CLOUD_GUARD_TECHNIQUE_SUMMARY_T Type
Technique summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_technique_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_technique_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_technique_summary_t (
id varchar2,
display_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Unique identifier for the technique. |
|
(required) Display name of the technique |
DBMS_CLOUD_OCI_CLOUD_GUARD_TECHNIQUE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_technique_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_technique_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_technique_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_TECHNIQUE_COLLECTION_T Type
Collection of technique summaries in Cloud Guard
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_technique_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_technique_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_technique_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_technique_collection_t (
items dbms_cloud_oci_cloud_guard_technique_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of technique summary. |
DBMS_CLOUD_OCI_CLOUD_GUARD_TRIGGER_RESPONDER_DETAILS_T Type
The Responder details to be pushed to responder
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_trigger_responder_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
responder_rule_id varchar2(32767),
configurations dbms_cloud_oci_cloud_guard_responder_configuration_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_trigger_responder_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_trigger_responder_details_t (
responder_rule_id varchar2,
configurations dbms_cloud_oci_cloud_guard_responder_configuration_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) ResponderRule ID |
|
(optional) ResponderRule configurations |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_BULK_PROBLEM_STATUS_DETAILS_T Type
List of problem ids to be passed in to update the Problem status.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_bulk_problem_status_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
status varchar2(32767),
problem_ids dbms_cloud_oci_cloud_guard_varchar2_tbl,
l_comment varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_bulk_problem_status_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_bulk_problem_status_details_t (
status varchar2,
problem_ids dbms_cloud_oci_cloud_guard_varchar2_tbl,
l_comment varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Action taken by user Allowed values are: 'OPEN', 'RESOLVED', 'DISMISSED', 'DELETED' |
|
(required) List of ProblemIds to be passed in to update the Problem status. |
|
(optional) User defined comment to be passed in to update the problem. |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_CONFIGURATION_DETAILS_T Type
Update cloud guard configuration details for a tenancy.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
reporting_region varchar2(32767),
status varchar2(32767),
self_manage_resources number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_configuration_details_t (
reporting_region varchar2,
status varchar2,
self_manage_resources number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The reporting region value |
|
(required) Status of Cloud Guard Tenant Allowed values are: 'ENABLED', 'DISABLED' |
|
(optional) Identifies if Oracle managed resources will be created by customers. If no value is specified false is the default. |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_DATA_MASK_RULE_DETAILS_T Type
The information to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_data_mask_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
compartment_id varchar2(32767),
iam_group_id varchar2(32767),
target_selected dbms_cloud_oci_cloud_guard_target_selected_t,
data_mask_categories dbms_cloud_oci_cloud_guard_varchar2_tbl,
data_mask_rule_status varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_data_mask_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_data_mask_rule_details_t (
display_name varchar2,
compartment_id varchar2,
iam_group_id varchar2,
target_selected dbms_cloud_oci_cloud_guard_target_selected_t,
data_mask_categories dbms_cloud_oci_cloud_guard_varchar2_tbl,
data_mask_rule_status varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Data mask rule Name. Avoid entering confidential information. |
|
(optional) Compartment Identifier where the resource is created |
|
(optional) IAM Group id associated with the data mask rule |
|
(optional) |
|
(optional) Data Mask Categories Allowed values are: 'ACTOR', 'PII', 'PHI', 'FINANCIAL', 'LOCATION', 'CUSTOM' |
|
(optional) The status of the dataMaskRule. Allowed values are: 'ENABLED', 'DISABLED' |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_DATA_SOURCE_DETAILS_T Type
Update of Data Source
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_data_source_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
status varchar2(32767),
data_source_details dbms_cloud_oci_cloud_guard_data_source_details_t,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_data_source_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_data_source_details_t (
display_name varchar2,
status varchar2,
data_source_details dbms_cloud_oci_cloud_guard_data_source_details_t,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Data Source display name. |
|
(optional) Status of DataSource. Allowed values are: 'ENABLED', 'DISABLED' |
|
(optional) |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_DETECTOR_RECIPE_DETAILS_T Type
Update of detector recipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_detector_recipe_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
detector_rules dbms_cloud_oci_cloud_guard_update_detector_recipe_detector_rule_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_detector_recipe_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_detector_recipe_details_t (
display_name varchar2,
description varchar2,
detector_rules dbms_cloud_oci_cloud_guard_update_detector_recipe_detector_rule_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Display name of detector recipe. Avoid entering confidential information. |
|
(optional) Detector recipe description. Avoid entering confidential information. |
|
(optional) Detector Rules to update |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_DETECTOR_RECIPE_DETECTOR_RULE_DETAILS_T Type
Update of detector rule of a detector recipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_detector_recipe_detector_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
details dbms_cloud_oci_cloud_guard_update_detector_rule_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_detector_recipe_detector_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_detector_recipe_detector_rule_details_t (
details dbms_cloud_oci_cloud_guard_update_detector_rule_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_MANAGED_LIST_DETAILS_T Type
Update ManagedList
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_managed_list_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
list_items dbms_cloud_oci_cloud_guard_varchar2_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_managed_list_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_managed_list_details_t (
display_name varchar2,
description varchar2,
list_items dbms_cloud_oci_cloud_guard_varchar2_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Managed list display name. Avoid entering confidential information. |
|
(optional) Managed list description. Avoid entering confidential information. |
|
(optional) List of ManagedListItem |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_PROBLEM_STATUS_DETAILS_T Type
The additional details for the problem
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_problem_status_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
status varchar2(32767),
l_comment varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_problem_status_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_problem_status_details_t (
status varchar2,
l_comment varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Action taken by user Allowed values are: 'OPEN', 'RESOLVED', 'DISMISSED', 'DELETED' |
|
(optional) User Comments |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_RESPONDER_RECIPE_DETAILS_T Type
The details to be updated in ResponderRecipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_responder_recipe_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
responder_rules dbms_cloud_oci_cloud_guard_update_responder_recipe_responder_rule_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_responder_recipe_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_responder_recipe_details_t (
display_name varchar2,
description varchar2,
responder_rules dbms_cloud_oci_cloud_guard_update_responder_recipe_responder_rule_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Responder recipe identifier. Avoid entering confidential information. |
|
(optional) Responder recipe description. Avoid entering confidential information. |
|
(optional) Responder Rules to Update |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_RESPONDER_RECIPE_RESPONDER_RULE_DETAILS_T Type
The details to be updated in ResponderRule
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_responder_recipe_responder_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
details dbms_cloud_oci_cloud_guard_update_responder_rule_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_responder_recipe_responder_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_responder_recipe_responder_rule_details_t (
details dbms_cloud_oci_cloud_guard_update_responder_rule_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_SECURITY_POLICY_DETAILS_T Type
The information to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_security_policy_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_security_policy_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_security_policy_details_t (
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) SecurityPolicy Identifier |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_SECURITY_RECIPE_DETAILS_T Type
Information to update in an existing security zone recipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_security_recipe_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
security_policies dbms_cloud_oci_cloud_guard_varchar2_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_security_recipe_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_security_recipe_details_t (
display_name varchar2,
description varchar2,
security_policies dbms_cloud_oci_cloud_guard_varchar2_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The recipe's name |
|
(optional) The recipe's description |
|
(optional) The list of `SecurityPolicy` ids to include in the recipe |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_SECURITY_ZONE_DETAILS_T Type
Information to update in an existing security zone
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_security_zone_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
security_zone_recipe_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_security_zone_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_security_zone_details_t (
display_name varchar2,
description varchar2,
security_zone_recipe_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The security zone's name |
|
(optional) The security zone's description |
|
(optional) The OCID of the recipe (`SecurityRecipe`) for the security zone |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_TARGET_DETECTOR_RECIPE_T Type
The information to be updated in attached Target DetectorRecipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_target_detector_recipe_t FORCE AUTHID CURRENT_USER IS OBJECT (
target_detector_recipe_id varchar2(32767),
detector_rules dbms_cloud_oci_cloud_guard_update_target_recipe_detector_rule_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_detector_recipe_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_detector_recipe_t (
target_detector_recipe_id varchar2,
detector_rules dbms_cloud_oci_cloud_guard_update_target_recipe_detector_rule_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Identifier for DetectorRecipe. |
|
(required) Updates to be applied to Detector Rule associated with the target |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_TARGET_RESPONDER_RECIPE_T Type
The information to be updated in attached Target ResponderRecipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_target_responder_recipe_t FORCE AUTHID CURRENT_USER IS OBJECT (
target_responder_recipe_id varchar2(32767),
responder_rules dbms_cloud_oci_cloud_guard_update_target_recipe_responder_rule_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_responder_recipe_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_responder_recipe_t (
target_responder_recipe_id varchar2,
responder_rules dbms_cloud_oci_cloud_guard_update_target_recipe_responder_rule_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Identifier for ResponderRecipe. |
|
(required) Update responder rules associated with reponder recipe in a target. |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_TARGET_DETECTOR_RECIPE_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_update_target_detector_recipe_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_target_detector_recipe_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_update_target_detector_recipe_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_TARGET_RESPONDER_RECIPE_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_update_target_responder_recipe_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_target_responder_recipe_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_update_target_responder_recipe_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_TARGET_DETAILS_T Type
The information to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_target_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
lifecycle_state varchar2(32767),
target_detector_recipes dbms_cloud_oci_cloud_guard_update_target_detector_recipe_tbl,
target_responder_recipes dbms_cloud_oci_cloud_guard_update_target_responder_recipe_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_details_t (
display_name varchar2,
lifecycle_state varchar2,
target_detector_recipes dbms_cloud_oci_cloud_guard_update_target_detector_recipe_tbl,
target_responder_recipes dbms_cloud_oci_cloud_guard_update_target_responder_recipe_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Display name of a target. Avoid entering confidential information. |
|
(optional) The current state of the Target. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) The details of target detector recipes to be updated. |
|
(optional) The details of target responder recipes to be updated. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` Avoid entering confidential information. |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_TARGET_DETECTOR_RECIPE_DETAILS_T Type
The information to be updated in DetectorRecipe
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_target_detector_recipe_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
detector_recipe_id varchar2(32767),
is_validation_only_query number,
detector_rules dbms_cloud_oci_cloud_guard_update_target_recipe_detector_rule_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_detector_recipe_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_detector_recipe_details_t (
detector_recipe_id varchar2,
is_validation_only_query number,
detector_rules dbms_cloud_oci_cloud_guard_update_target_recipe_detector_rule_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Detector recipe identifier associated with the target |
|
(optional) When enabled, validation is performed for attaching the detector recipe. |
|
(optional) Update detector rules associated with detector recipe in a target. |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_TARGET_DETECTOR_RECIPE_DETECTOR_RULE_DETAILS_T Type
The details to be updated in DetectorRule
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_target_detector_recipe_detector_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
details dbms_cloud_oci_cloud_guard_update_target_detector_rule_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_detector_recipe_detector_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_detector_recipe_detector_rule_details_t (
details dbms_cloud_oci_cloud_guard_update_target_detector_rule_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_TARGET_RESPONDER_RECIPE_DETAILS_T Type
The information to be updated in ResponderRecipe.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_target_responder_recipe_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
responder_rules dbms_cloud_oci_cloud_guard_update_target_recipe_responder_rule_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_responder_recipe_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_responder_recipe_details_t (
responder_rules dbms_cloud_oci_cloud_guard_update_target_recipe_responder_rule_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Update responder rules associated with responder recipe in a target. |
DBMS_CLOUD_OCI_CLOUD_GUARD_UPDATE_TARGET_RESPONDER_RECIPE_RESPONDER_RULE_DETAILS_T Type
The details to be updated in ResponderRule
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_update_target_responder_recipe_responder_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
details dbms_cloud_oci_cloud_guard_update_target_responder_rule_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_responder_recipe_responder_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_update_target_responder_recipe_responder_rule_details_t (
details dbms_cloud_oci_cloud_guard_update_target_responder_rule_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) |
DBMS_CLOUD_OCI_CLOUD_GUARD_WORK_REQUEST_RESOURCE_T Type
A resource created or operated on by a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_work_request_resource_t FORCE AUTHID CURRENT_USER IS OBJECT (
entity_type varchar2(32767),
action_type varchar2(32767),
identifier varchar2(32767),
entity_uri varchar2(32767),
metadata json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_work_request_resource_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_work_request_resource_t (
entity_type varchar2,
action_type varchar2,
identifier varchar2,
entity_uri varchar2,
metadata json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The resource type the work request affects. |
|
(required) The way in which this resource is affected by the work tracked in the work request. A resource being created, updated, or deleted will remain in the IN_PROGRESS state until work is complete for that resource at which point it will transition to CREATED, UPDATED, or DELETED, respectively. Allowed values are: 'CREATED', 'UPDATED', 'DELETED', 'IN_PROGRESS', 'RELATED', 'FAILED' |
|
(required) The identifier of the resource the work request affects. |
|
(optional) The URI path that the user can do a GET on to access the resource metadata |
|
(optional) Additional information that helps to explain the resource. |
DBMS_CLOUD_OCI_CLOUD_GUARD_WORK_REQUEST_RESOURCE_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_work_request_resource_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_work_request_resource_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_WORK_REQUEST_T Type
A description of workrequest status
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_work_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
operation_type varchar2(32767),
status varchar2(32767),
resources dbms_cloud_oci_cloud_guard_work_request_resource_tbl,
percent_complete number,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_work_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_work_request_t (
id varchar2,
compartment_id varchar2,
operation_type varchar2,
status varchar2,
resources dbms_cloud_oci_cloud_guard_work_request_resource_tbl,
percent_complete number,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The id of the work request. |
|
(required) The ocid of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request affects multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used |
|
(required) Operation type of the work request. Allowed values are: 'CREATE', 'UPDATE', 'DELETE', 'MOVE' |
|
(required) Operation status of the work request. Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', 'FAILED', 'SUCCEEDED', 'CANCELING', 'CANCELED' |
|
(required) The resources affected by this work request. |
|
(required) Percentage of the request completed. |
|
(required) The date and time the request was created |
|
(optional) The date and time the request was started |
|
(optional) The date and time the object was finished |
DBMS_CLOUD_OCI_CLOUD_GUARD_WORK_REQUEST_ERROR_T Type
An error encountered while executing a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_work_request_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
l_timestamp timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_work_request_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_work_request_error_t (
code varchar2,
message varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) A machine-usable code for the error that occured. Error codes are listed on (https://docs.cloud.oracle.com/Content/API/References/apierrors.htm) |
|
(required) A human readable description of the issue encountered. |
|
(required) The time the error occured. |
DBMS_CLOUD_OCI_CLOUD_GUARD_WORK_REQUEST_ERROR_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_work_request_error_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_work_request_error_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_WORK_REQUEST_ERROR_COLLECTION_T Type
Results of a workRequestError search. Contains both WorkRequestError items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_work_request_error_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_work_request_error_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_work_request_error_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_work_request_error_collection_t (
items dbms_cloud_oci_cloud_guard_work_request_error_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of workRequestError objects. |
DBMS_CLOUD_OCI_CLOUD_GUARD_WORK_REQUEST_LOG_ENTRY_T Type
A log message from the execution of a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_work_request_log_entry_t FORCE AUTHID CURRENT_USER IS OBJECT (
message varchar2(32767),
l_timestamp timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_work_request_log_entry_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_work_request_log_entry_t (
message varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Human-readable log message. |
|
(required) The time the log message was written. |
DBMS_CLOUD_OCI_CLOUD_GUARD_WORK_REQUEST_LOG_ENTRY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_work_request_log_entry_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_work_request_log_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_work_request_log_entry_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_WORK_REQUEST_LOG_ENTRY_COLLECTION_T Type
Results of a workRequestLog search. Contains both workRequestLog items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_work_request_log_entry_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_work_request_log_entry_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_work_request_log_entry_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_work_request_log_entry_collection_t (
items dbms_cloud_oci_cloud_guard_work_request_log_entry_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of workRequestLogEntries. |
DBMS_CLOUD_OCI_CLOUD_GUARD_WORK_REQUEST_SUMMARY_T Type
A summary of the status of a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_work_request_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
operation_type varchar2(32767),
status varchar2(32767),
id varchar2(32767),
compartment_id varchar2(32767),
resources dbms_cloud_oci_cloud_guard_work_request_resource_tbl,
percent_complete number,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_work_request_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_work_request_summary_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
resources dbms_cloud_oci_cloud_guard_work_request_resource_tbl,
percent_complete number,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Type of the work request Allowed values are: 'CREATE', 'UPDATE', 'DELETE', 'MOVE' |
|
(required) Status of current work request. Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', 'FAILED', 'SUCCEEDED', 'CANCELING', 'CANCELED' |
|
(required) The id of the work request. |
|
(required) The ocid of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request affects multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used |
|
(required) The resources affected by this work request. |
|
(required) Percentage of the request completed. |
|
(required) The date and time the request was created |
|
(optional) The date and time the request was started |
|
(optional) The date and time the object was finished |
DBMS_CLOUD_OCI_CLOUD_GUARD_WORK_REQUEST_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_cloud_guard_work_request_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_guard_work_request_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_GUARD_WORK_REQUEST_SUMMARY_COLLECTION_T Type
Results of a workRequest search. Contains both WorkRequest items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_guard_work_request_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_guard_work_request_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_work_request_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_guard_work_request_summary_collection_t (
items dbms_cloud_oci_cloud_guard_work_request_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of workRequestSummary objects. |