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

start_policy_type

(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

query_start_time

(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

city

(required) City

state

(required) State

country

(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

latitude

(required) Latitude

longitude

(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

dimensions_map

(required) The key-value pairs of dimensions and their names.

political_location

(required)

geographical_location

(required)

l_count

(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

items

(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

compartment_id

(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

kind

(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

detector_recipe_id

(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

responder_recipe_id

(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

id

(optional) The unique identifier of the Responder rule

display_name

(optional) The display name of the Responder rule

is_preferred

(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

compartment_id

(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

compartment_id

(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

compartment_id

(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

compartment_id

(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

compartment_id

(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

compartment_id

(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

compartment_id

(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

kind

(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

left_operand

(optional)

composite_operator

(optional)

Allowed values are: 'AND', 'OR'

right_operand

(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

compartment_id

(required) compartment associated with condition

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

name

(required) operator name

Allowed values are: 'AND', 'OR', 'IN', 'NOT_IN', 'EQUALS', 'NOT_EQUALS', 'LESS_THAN', 'GREATER_THAN', 'RANGE'

display_name

(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

name

(required) name of the operand

display_name

(required) display name of the operand

datatype

(required) data type of operand

managed_listtype

(required) operand list type

filter_type

(required) Filter type can be config filter or condition filter

Allowed values are: 'CONDITION', 'CONFIG'

operators

(required) List of parameters

multi_list_types

(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

id

(required) id of the rule

description

(required) description of the rule

parameters

(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

name

(required) name of the resource

display_name

(required) display name of the resource

rules

(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

name

(required) name of the service type

resource_types

(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

name

(required) Name used to identify

service_types

(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

id

(required) Name used to identify

description

(required) Display name of the condition type

lifecycle_state

(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

items

(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

list_type

(required) configuration list item type, either CUSTOM or MANAGED

Allowed values are: 'MANAGED', 'CUSTOM'

managed_list_type

(required) type of the managed list

value

(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

reporting_region

(required) The reporting region value

status

(optional) Status of Cloud Guard Tenant

Allowed values are: 'ENABLED', 'DISABLED'

self_manage_resources

(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

display_name

(required) Data mask rule name. Avoid entering confidential information.

compartment_id

(required) Compartment Identifier where the resource is created

description

(optional) The data mask rule description. Avoid entering confidential information.

iam_group_id

(required) IAM Group id associated with the data mask rule

target_selected

(required)

data_mask_categories

(required) Data Mask Categories

Allowed values are: 'ACTOR', 'PII', 'PHI', 'FINANCIAL', 'LOCATION', 'CUSTOM'

data_mask_rule_status

(optional) The status of the dataMaskRule.

Allowed values are: 'ENABLED', 'DISABLED'

lifecycle_state

(optional) The current state of the DataMaskRule.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

freeform_tags

(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.

defined_tags

(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

data_source_feed_provider

(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

display_name

(required) Data Source display name.

compartment_id

(required) CompartmentId of Data Source.

data_source_feed_provider

(required) Possible type of dataSourceFeed Provider(LoggingQuery)

Allowed values are: 'LOGGINGQUERY'

data_source_details

(optional)

freeform_tags

(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.

defined_tags

(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

config_key

(required) Unique name of the configuration

name

(required) configuration name

value

(optional) configuration value

data_type

(optional) configuration data type

l_values

(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

display_name

(optional) The display name of entity

query_field

(required) The entity value mapped to a data source query

entity_type

(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

is_enabled

(required) Enables the control

risk_level

(optional) The Risk Level

Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR'

configurations

(optional) Configuration details

condition

(optional)

labels

(optional) user defined labels for a detector rule

description

(optional) Description for DetectorRecipeDetectorRule.

recommendation

(optional) Recommendation for DetectorRecipeDetectorRule

data_source_id

(optional) The id of the attached DataSource.

entities_mappings

(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

detector_rule_id

(required) DetectorRecipeRule Identifier

details

(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

display_name

(required) Detector recipe display name. Avoid entering confidential information.

description

(optional) Detector recipe description. Avoid entering confidential information.

detector

(optional) detector for the rule

Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR'

source_detector_recipe_id

(optional) The id of the source detector recipe.

compartment_id

(required) Compartment Identifier

detector_rules

(optional) Detector Rules to override from source detector recipe

freeform_tags

(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.

defined_tags

(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

source_detector_rule_id

(optional) Id of source detector rule

name

(required) Name of the detector rule

description

(optional) Description of the detector rule

is_enabled

(optional) Identifies state for detector rule

risk_level

(optional) The Risk Level

Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR'

configurations

(optional) Configuration details

condition

(optional)

labels

(optional) user defined labels for a detector rule

recommendation

(optional) Recommendations of the detector rule

data_source_id

(optional) ocid of the data source which needs to attached

entities_mappings

(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

details

(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

display_name

(required) Managed list display name. Avoid entering confidential information.

compartment_id

(required) Compartment Identifier

source_managed_list_id

(optional) OCID of the Source ManagedList

description

(optional) Managed list description. Avoid entering confidential information.

list_type

(optional) type of the list

Allowed values are: 'CIDR_BLOCK', 'USERS', 'GROUPS', 'IPV4ADDRESS', 'IPV6ADDRESS', 'RESOURCE_OCID', 'REGION', 'COUNTRY', 'STATE', 'CITY', 'TAGS', 'GENERIC'

list_items

(optional) List of ManagedListItem

freeform_tags

(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.

defined_tags

(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

is_enabled

(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

responder_rule_id

(required) ResponderRecipeRule Identifier

details

(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

display_name

(required) Responder recipe display name. Avoid entering confidential information.

description

(optional) Responder recipe description. Avoid entering confidential information.

source_responder_recipe_id

(required) The id of the source responder recipe.

compartment_id

(required) Compartment Identifier

responder_rules

(optional) Responder Rules to override from source responder recipe

freeform_tags

(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.

defined_tags

(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

friendly_name

(optional) SecurityPolicy friendly name

display_name

(required) SecurityPolicy Identifier

description

(optional) Security policy description

category

(optional) The category of security policy.

services

(optional) The list of services for policy.

compartment_id

(required) Compartment Identifier

freeform_tags

(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.

defined_tags

(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

display_name

(required) The recipe's name

description

(optional) The recipe's description

security_policies

(required) The list of `SecurityPolicy` ids to include in the recipe

compartment_id

(required) The compartment in which to create the recipe

freeform_tags

(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.

defined_tags

(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

display_name

(required) The security zone's name

description

(optional) The security zone's description

security_zone_recipe_id

(required) The OCID of the recipe (`SecurityRecipe`) for the security zone

compartment_id

(required) The OCID of the compartment for the security zone

freeform_tags

(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.

defined_tags

(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

condition_groups

(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

detector_rule_id

(required) Identifier for DetectorRule.

details

(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

detector_recipe_id

(required) Identifier for DetectorRecipe.

detector_rules

(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

config_key

(required) Unique name of the configuration

name

(required) configuration name

value

(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

condition

(optional)

configurations

(optional) Configurations associated with the ResponderRule

l_mode

(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

responder_rule_id

(required) Identifier for ResponderRule.

details

(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

responder_recipe_id

(required) Identifier for ResponderRecipe.

responder_rules

(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

display_name

(required) DetectorTemplate identifier. Avoid entering confidential information.

compartment_id

(required) Compartment Identifier where the resource is created

description

(optional) The target description. Avoid entering confidential information.

target_resource_type

(required) possible type of targets(COMPARTMENT/FACLOUD)

Allowed values are: 'COMPARTMENT', 'ERPCLOUD', 'HCMCLOUD', 'SECURITY_ZONE'

target_resource_id

(required) Resource ID which the target uses to monitor

target_detector_recipes

(optional) List of detector recipes to associate with target

target_responder_recipes

(optional) List of responder recipes to associate with target

lifecycle_state

(optional) The current state of the DetectorRule.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

freeform_tags

(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.

defined_tags

(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

id

(required) Unique identifier that is immutable on creation

display_name

(optional) Data Mask Rule Identifier, can be renamed.

compartment_id

(required) Compartment Identifier where the resource is created.

description

(optional) The data mask rule description.

iam_group_id

(required) IAM Group id associated with the data mask rule

target_selected

(required)

data_mask_categories

(optional) Data Mask Categories

Allowed values are: 'ACTOR', 'PII', 'PHI', 'FINANCIAL', 'LOCATION', 'CUSTOM'

time_created

(optional) The date and time the target was created. Format defined by RFC3339.

time_updated

(optional) The date and time the target was updated. Format defined by RFC3339.

data_mask_rule_status

(optional) The status of the dataMaskRule.

Allowed values are: 'ENABLED', 'DISABLED'

lifecycle_state

(optional) The current state of the DataMaskRule.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecyle_details

(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.

freeform_tags

(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.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(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

id

(required) Unique identifier that is immutable on creation

display_name

(optional) Data Mask Rule Name.

compartment_id

(required) Compartment Identifier where the resource is created

description

(optional) The data mask rule description.

iam_group_id

(required) IAM Group id associated with the data mask rule

target_selected

(required)

data_mask_categories

(optional) Data Mask Categories

Allowed values are: 'ACTOR', 'PII', 'PHI', 'FINANCIAL', 'LOCATION', 'CUSTOM'

time_created

(optional) The date and time the target was created. Format defined by RFC3339.

time_updated

(optional) The date and time the target was updated. Format defined by RFC3339.

data_mask_rule_status

(optional) The status of the dataMaskRule.

Allowed values are: 'ENABLED', 'DISABLED'

lifecycle_state

(optional) The current state of the DataMaskRule.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecyle_details

(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.

freeform_tags

(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.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(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

items

(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

detector_recipe_id

(required) Id of the attached detectorRecipeId to the Data Source.

detector_rule_id

(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

l_region

(required) Data Source replication region.

status

(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

id

(required) Ocid for Data source

display_name

(required) DisplayName of Data source.

data_source_feed_provider

(required) Possible type of dataSourceFeed Provider(LoggingQuery)

Allowed values are: 'LOGGINGQUERY'

compartment_id

(required) CompartmentId of Data source.

data_source_details

(optional)

time_created

(optional) The date and time the Data source was created. Format defined by RFC3339.

time_updated

(optional) The date and time the Data source was updated. Format defined by RFC3339.

status

(optional) Status of data Source

Allowed values are: 'ENABLED', 'DISABLED'

data_source_detector_mapping_info

(optional) Information about the detector recipe and rule attached

region_status_detail

(optional) Information about the region and status of query replication

lifecycle_state

(optional) The current state of the resource.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

freeform_tags

(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.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(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

data_source_feed_provider

(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

logging_query_type

(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

id

(required) Ocid for Data Source

display_name

(required) DisplayName of Data Source

data_source_feed_provider

(required) Possible type of dataSourceFeed Provider(LoggingQuery)

Allowed values are: 'LOGGINGQUERY'

compartment_id

(required) CompartmentId of Data Source.

data_source_summary_details

(optional)

time_created

(optional) The date and time the data source was created. Format defined by RFC3339.

time_updated

(optional) The date and time the data source was updated. Format defined by RFC3339.

status

(optional) Status of data Source

Allowed values are: 'ENABLED', 'DISABLED'

logging_query_details

(optional)

lifecycle_state

(optional) The current state of the resource.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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.

freeform_tags

(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.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(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

items

(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

data_source_feed_provider

(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

l_region

(required) Data source event region

event_date

(required) Data source event date time

data_source_id

(required) Attached data Source

time_created

(required) Data source event created time

status

(optional) Current data source event info status

Allowed values are: 'SUCCESS', 'FAILURE'

comments

(optional) Data source event comments

event_info

(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

items

(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

id

(required) detector key

description

(required) detector description

lifecycle_state

(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

id

(required) detector Identifier

description

(optional) detector description

lifecycle_state

(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

items

(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

id

(optional) The unique identifier of sighting type

display_name

(optional) Name of the sighting type

description

(optional) Description of the sighting type

mitre_link

(optional) Link of the sighting type

tactic

(optional) Mitre Att&ck tactic

techniques

(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

is_enabled

(required) Enables the control

risk_level

(optional) The Risk Level

Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR'

configurations

(optional) Configuration details

condition

(optional)

labels

(optional) user defined labels for a detector rule

is_configuration_allowed

(optional) configuration allowed or not

problem_threshold

(optional) Cutover point for an elevated resource Risk Score to create a Problem

target_types

(optional) List of target types for which the detector rule is applicable

sighting_types

(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

detector_rule_id

(required) The unique identifier of the detector rule.

display_name

(optional) Display name for DetectorRecipeDetectorRule.

description

(optional) Description for DetectorRecipeDetectorRule.

recommendation

(optional) Recommendation for DetectorRecipeDetectorRule

detector

(required) detector for the rule

Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR'

service_type

(required) service type of the configuration to which the rule is applied

resource_type

(required) resource type of the configuration to which the rule is applied

details

(optional)

managed_list_types

(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'

candidate_responder_rules

(optional) List of CandidateResponderRule related to this rule

time_created

(optional) The date and time the detector recipe rule was created. Format defined by RFC3339.

time_updated

(optional) The date and time the detector recipe rule was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the DetectorRule.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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.

data_source_id

(optional) The id of the attached DataSource.

entities_mappings

(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

id

(required) Ocid for detector recipe

display_name

(required) DisplayName of detector recipe.

description

(optional) Detector recipe description.

compartment_id

(required) compartmentId of detector recipe

source_detector_recipe_id

(required) Recipe Ocid of the Source Recipe to be cloned

owner

(required) Owner of detector recipe

Allowed values are: 'CUSTOMER', 'ORACLE'

detector

(required) Type of detector

Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR'

detector_rules

(optional) List of detector rules for the detector type for recipe - user input

effective_detector_rules

(optional) List of effective detector rules for the detector type for recipe after applying defaults

time_created

(optional) The date and time the detector recipe was created. Format defined by RFC3339.

time_updated

(optional) The date and time the detector recipe was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the resource.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

source_data_retention

(optional) The number of days for which source data is retained

freeform_tags

(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.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(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\"}}`

target_ids

(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

id

(required) Ocid for detector recipe

display_name

(required) DisplayName of detector recipe

description

(optional) Detector recipe description

compartment_id

(required) compartmentId of detector recipe

source_detector_recipe_id

(optional) Recipe Ocid of the Source Recipe to be cloned

owner

(required) Owner of detector recipe

Allowed values are: 'CUSTOMER', 'ORACLE'

detector

(required) Type of detector

Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR'

detector_rules

(optional) List of detetor rules for the detector type

time_created

(optional) The date and time the detector recipe was created. Format defined by RFC3339.

time_updated

(optional) The date and time the detector recipe was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the resource.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

source_data_retention

(optional) The number of days for which source data is retained

freeform_tags

(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.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(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

items

(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

id

(required) The unique identifier of the detector rule

display_name

(optional) DetectorTemplate Identifier, can be renamed

description

(optional) DetectorTemplate Identifier, can be renamed

recommendation

(optional) Recommendation for DetectorRecipeDetectorRule

detector

(required) possible type of detectors

Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR'

service_type

(optional) service type of the configuration to which the rule is applied

resource_type

(optional) resource type of the configuration to which the rule is applied

managed_list_types

(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'

candidate_responder_rules

(optional) List of CandidateResponderRule related to this rule

detector_details

(optional)

time_created

(optional) The date and time the detector recipe rule was created. Format defined by RFC3339.

time_updated

(optional) The date and time the detector recipe rule was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the detector recipe rule

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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.

data_source_id

(optional) The id of the attached DataSource.

entities_mappings

(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

items

(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

id

(required) The unique identifier of the detector rule.

display_name

(optional) Display name for DetectorRule.

description

(optional) Description for DetectorRule.

recommendation

(optional) recommendation for DetectorRule

detector

(required) detector for the rule

Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR'

service_type

(required) service type of the configuration to which the rule is applied

resource_type

(required) resource type of the configuration to which the rule is applied

detector_details

(optional)

managed_list_types

(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'

candidate_responder_rules

(optional) List of CandidateResponderRule related to this rule

time_created

(optional) The date and time the detector rule was created. Format defined by RFC3339.

time_updated

(optional) The date and time the detector rule was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the DetectorRule.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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

id

(required) The unique identifier of the detector rule

display_name

(optional) DetectorTemplate Identifier, can be renamed

description

(optional) Description for detector rule

recommendation

(optional) Recommendation for detector rule

detector

(required) possible type of detectors

Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR'

service_type

(optional) service type of the configuration to which the rule is applied

resource_type

(optional) resource type of the configuration to which the rule is applied

managed_list_types

(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'

candidate_responder_rules

(optional) List of CandidateResponderRule related to this rule

detector_details

(optional)

time_created

(optional) The date and time the detector rule was created. Format defined by RFC3339.

time_updated

(optional) The date and time the detector rule was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the detector rule

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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

items

(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

display_name

(optional) The display name of entity

value

(optional) The entity value

l_type

(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

code

(required) A short error code that defines the error, meant for programmatic parsing.

message

(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

configurations

(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

id

(required) Unique identifier for finding event

resource_id

(required) Unique id of the Impacted Resource

problem_id

(required) Problem Id to which the Impacted Resource is associated

compartment_id

(required) Compartment Id where the resource is created

sighting_type

(optional) Identifier for the sighting type

sighting_type_display_name

(optional) Name of the sighting type

resource_name

(required) Name of the Impacted Resource

resource_type

(required) Type of the Impacted Resource

l_region

(required) Region where the resource is created

time_identified

(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

items

(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

key_entities_count

(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

observed_value

(optional)

trigger_value

(optional)

operator

(optional)

log_result

(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

regions

(optional) Logging Query regions

query

(optional) The continuous query expression that is run periodically.

interval_in_minutes

(optional) Interval in minutes that query is run periodically.

threshold

(optional) The integer value that must be exceeded, fall below or equal to (depending on the operator), the query result to trigger an event.

query_start_time

(optional)

operator

(optional) Operator used in Data Soruce

Allowed values are: 'EQUAL', 'GREATER', 'GREATERTHANEQUALTO', 'LESS', 'LESSTHANEQUALTO'

logging_query_type

(optional) Logging query type for data source (Sighting/Insight)

Allowed values are: 'INSIGHT'

additional_entities_count

(optional) The additional entities count used for data source query.

logging_query_details

(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

regions

(optional) DataSource customer specified regions

data_source_detector_mapping_info

(optional) DataSource mapping with detectorRecipe and detectorRule

region_status_detail

(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

id

(required) Unique identifier that is immutable on creation

display_name

(required) ManagedList display name.

description

(optional) ManagedList description.

compartment_id

(required) Compartment Identifier where the resource is created

source_managed_list_id

(optional) OCID of the Source ManagedList

list_type

(required) type of the list

Allowed values are: 'CIDR_BLOCK', 'USERS', 'GROUPS', 'IPV4ADDRESS', 'IPV6ADDRESS', 'RESOURCE_OCID', 'REGION', 'COUNTRY', 'STATE', 'CITY', 'TAGS', 'GENERIC'

list_items

(optional) List of ManagedListItem

feed_provider

(optional) provider of the feed

Allowed values are: 'CUSTOMER', 'ORACLE'

is_editable

(optional) If this list is editable or not

time_created

(optional) The date and time the managed list was created. Format defined by RFC3339.

time_updated

(optional) The date and time the managed list was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the resource.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecyle_details

(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.

freeform_tags

(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.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(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

id

(required) Unique identifier that is immutable on creation

display_name

(required) ManagedList display name

description

(optional) ManagedList description

compartment_id

(required) Compartment Identifier where the resource is created

source_managed_list_id

(optional) OCID of the Source ManagedList

list_type

(required) type of the list

Allowed values are: 'CIDR_BLOCK', 'USERS', 'GROUPS', 'IPV4ADDRESS', 'IPV6ADDRESS', 'RESOURCE_OCID', 'REGION', 'COUNTRY', 'STATE', 'CITY', 'TAGS', 'GENERIC'

feed_provider

(required) provider of the feed

Allowed values are: 'CUSTOMER', 'ORACLE'

is_editable

(optional) If this list is editable or not

list_items

(required) List of ManagedListItem

time_created

(optional) The date and time the managed list was created. Format defined by RFC3339.

time_updated

(optional) The date and time the managed list was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the resource.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecyle_details

(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.

freeform_tags

(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.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(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

items

(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

id

(required) ManagedListType Identifier

description

(optional) ManagedListType description

lifecycle_state

(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

items

(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

policy

(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

items

(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

id

(required) Unique identifier that is immutable on creation

compartment_id

(required) Compartment Identifier where the resource is created

detector_rule_id

(optional) Identifier of the rule

l_region

(optional) DEPRECATED

regions

(optional) Regions where the problem is found

risk_level

(optional) The Risk Level

Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR'

risk_score

(optional) Risk Score for the problem

peak_risk_score_date

(optional) The date and time for the peak risk score that is observed. Format defined by RFC3339.

peak_risk_score

(optional) Peak risk score for the problem

auto_resolve_date

(optional) The date and time when the problem will be auto resolved. Format defined by RFC3339.

peak_risk_score_lookup_period_in_days

(optional) Number of days for which peak score is calculated for the problem

resource_id

(optional) Identifier of the Resource

resource_name

(optional) DisplayName of the Resource

resource_type

(optional) Type of the Resource

labels

(optional) user defined labels on the problem

time_last_detected

(optional) The date and time the problem was last detected. Format defined by RFC3339.

time_first_detected

(optional) The date and time the problem was first detected. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the Problem.

Allowed values are: 'ACTIVE', 'INACTIVE'

lifecycle_detail

(optional) The lifecycleDetail will give more detail on the substate of the lifecycleState.

Allowed values are: 'OPEN', 'RESOLVED', 'DISMISSED', 'DELETED'

detector_id

(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'

target_id

(optional) targetId of the problem

additional_details

(optional) The additional details of the Problem

description

(optional) Description of the problem

recommendation

(optional) Recommendation for the problem

l_comment

(optional) User Comments

impacted_resource_id

(optional) Identifier of the impacted Resource

impacted_resource_name

(optional) DisplayName of the impacted Resource

impacted_resource_type

(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

dimensions_map

(required) The key-value pairs of dimensions and their names.

l_count

(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

items

(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

id

(required) Unique identifier that is immutable on creation

compartment_id

(required) Compartment Identifier where the resource is created

detector_rule_id

(optional) Identifier of the rule

risk_level

(optional) The Risk Level

Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR'

risk_score

(optional) Risk Score for the problem

resource_id

(optional) Identifier of the Resource

resource_name

(optional) DisplayName of the Resource

resource_type

(optional) Type of the Resource

labels

(optional) user defined labels on the problem

time_first_detected

(optional) The date and time the problem was first detected. Format defined by RFC3339.

time_last_detected

(optional) The date and time the problem was last detected. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the Problem.

Allowed values are: 'ACTIVE', 'INACTIVE'

lifecycle_detail

(optional) The lifecycleDetail will give more detail on the substate of the lifecycleState.

Allowed values are: 'OPEN', 'RESOLVED', 'DISMISSED', 'DELETED'

detector_id

(optional) Id of detector associated with the Problem.

Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR'

l_region

(optional) DEPRECATED

regions

(optional) Regions where the problem is found

target_id

(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

items

(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

id

(required) Unique identifier for problem endpoint.

sighting_id

(required) Unique id for sighting associated with the endpoint.

problem_id

(required) Unique id for cloudguard problem

sighting_type

(required) Identifier for the sighting type

sighting_type_display_name

(required) Display Name of the sighting type

ip_address

(required) IP Address of the Endpoint

ip_address_type

(required) IP Address type of the Endpoint

ip_classification_type

(optional) IP Address classification type of the endpoint

country

(optional) Country of the endpoint

latitude

(optional) Latitude of the endpoint

longitude

(optional) Longitude of the endpoint

asn_number

(optional) ASN number of the endpoint

regions

(optional) Regions where activities were performed from this IP

services

(optional) Services where activities were performed from this IP

time_last_detected

(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

items

(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

regions

(required) Data source problem entities region

time_first_detected

(required) Data source problem entities first detected time

problem_id

(required) Attached problem id

time_last_detected

(required) Data source problem entities last detected time

result_url

(optional) Log result query url for a data source query

entity_details

(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

items

(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

id

(required) Unique identifier for the history record

problem_id

(required) problemId for which history is associated to.

actor_type

(required) Actor type who performed the operation

Allowed values are: 'CLOUD_GUARD_SERVICE', 'CORRELATION', 'RESPONDER', 'USER'

actor_name

(required) Resource Name who performed activity

explanation

(required) Activity explanation details

lifecycle_detail

(required) Problem Lifecycle Detail Status

Allowed values are: 'OPEN', 'RESOLVED', 'DISMISSED', 'DELETED'

event_status

(optional) Event status

Allowed values are: 'REOPEN', 'OPEN', 'UPDATE', 'RESOLVE', 'DISMISS', 'DELETE'

time_created

(required) Type of the Entity

delta

(required) Impacted Resource Names in a comma-separated string.

l_comment

(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

items

(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

dimensions_map

(required) The key-value pairs of dimensions and their names.

start_timestamp

(required) Start Time in epoch seconds

duration_in_seconds

(required) Duration

l_count

(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

items

(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

id

(required) Unique identifier for Recommendation

l_type

(optional) Recommendation type

Allowed values are: 'DETECTOR_PROBLEMS', 'RESOLVED_PROBLEMS'

tenant_id

(optional) Tenant Identifier

compartment_id

(required) Compartment Identifier

target_id

(required) targetId associated with the problem

details

(required) Recommendation details

risk_level

(optional) The Risk Level

Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR'

problem_count

(required) Count number of the problem

lifecycle_state

(required) The current state of the Recommendation.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_detail

(required) The lifecycleDetail will give more detail on the substate of the lifecycleState.

Allowed values are: 'OPEN', 'RESOLVED', 'DISMISSED'

time_created

(optional) problem creating time

time_updated

(optional) problem updating time

name

(required) recommendation string showing on UX

description

(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

items

(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

compartment_id

(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

filter

(required) The filter type.

Allowed values are: 'PROBLEM_ID', 'RESOURCE_PROFILE_ID'

filter_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

id

(required) Unique identifier for the tactic.

display_name

(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

sightings_count

(optional) Number of sightings associated with this resource profile

id

(required) Unique identifier for resource profile

resource_id

(required) Unique identifier for resource profile

display_name

(required) Resource name for resource profile

l_type

(required) Resource type for resource profile

problem_ids

(optional) List of Problems associated with the resource profile.

compartment_id

(required) Compartment Id for resource profile

target_id

(optional) Target Id for resource profile

risk_score

(required) Risk Score for the resource profile

risk_level

(optional) Risk Level associated with resource profile

Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR'

peak_risk_score

(optional) Peak Risk Score for the resource profile

time_peak_score

(optional) The date and time for peak risk score. Format defined by RFC3339.

time_first_detected

(required) The date and time the resource profile was first detected. Format defined by RFC3339.

time_last_detected

(required) The date and time the resource profile was last detected. Format defined by RFC3339.

tactics

(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

sightings_count

(optional) Number of sightings associated with this resource profile

id

(required) Unique identifier for resource profile

resource_id

(required) Unique identifier for resource profile

display_name

(required) Resource name for resource profile

l_type

(required) Resource type for resource profile

risk_score

(required) Risk Score for the resource profile

tactics

(required) List of tactic summary associated with the resource profile.

time_first_detected

(required) The date and time the resource profile was first detected. Format defined by RFC3339.

time_last_detected

(required) The date and time the resource profile was last detected. Format defined by RFC3339.

problems_count

(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

items

(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

id

(required) Unique identifier for sighting endpoints

resource_profile_id

(required) Resource profile Id associated with the imacted resource

problem_id

(optional) Problem Id for sighting endpoints

sighting_type

(required) Identifier for the sighting type

sighting_type_display_name

(required) Name of the sighting type

ip_address

(required) IP Address

ip_address_type

(required) IP Address type

ip_classification_type

(optional) IP Address classification type

country

(optional) Country

latitude

(optional) Latitude

longitude

(optional) Longitude

asn_number

(optional) ASN number

regions

(optional) Regions where activities were performed from this IP

services

(optional) Services where activities were performed from this IP

time_last_detected

(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

items

(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

id

(required) Unique identifier for impacted resource

resource_profile_id

(required) Resource profile Id associated with the imacted resource

problem_id

(optional) Problem Id for impacted resource

compartment_id

(required) Compartment Id for impacted resource

resource_id

(required) Impacted resource Id

resource_name

(required) Resource name

resource_type

(required) Resource type

sighting_type

(required) Identifier for the sighting type

sighting_type_display_name

(required) Name of the sighting type

l_region

(required) Region for impacted resource

time_identified

(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

items

(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

tactics

(required) Tactics used for evaluating the risk scrore

score_timestamp

(required) The date and time for which the score is calculated. Format defined by RFC3339.

risk_score

(required) Risk Score

risk_level

(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

resource_profile_id

(required) OCID for the resource profile

resource_profile_display_name

(required) Display name for the resource profile

risk_threshold

(optional) Risk threshold

items

(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

items

(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

filter_type

(required) Type of filter. Valid Values - problem_id and resource_id

filter_id

(required) Id value on which risk scores are filtered

risk_threshold

(optional) Risk Score

items

(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

items

(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

id

(required) Unique id for Responder activity.

problem_id

(required) problemId for which Responder activity is associated to.

responder_rule_id

(required) Id of the responder rule for the problem

responder_type

(required) responder rule type for performing the operation

Allowed values are: 'REMEDIATION', 'NOTIFICATION'

responder_rule_name

(required) responder rule name

responder_activity_type

(required) Responder activity types

Allowed values are: 'STARTED', 'COMPLETED'

responder_execution_status

(required) the responder execution status

Allowed values are: 'STARTED', 'AWAITING_CONFIRMATION', 'AWAITING_INPUT', 'SUCCEEDED', 'FAILED', 'SKIPPED', 'ALL'

time_created

(required) responder activity starting time

message

(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

items

(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

condition

(optional)

configurations

(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

id

(required) The unique identifier of the responder execution

responder_rule_id

(required) Responder Rule id for the responder execution

responder_rule_type

(required) Rule Type for the responder execution

Allowed values are: 'REMEDIATION', 'NOTIFICATION'

responder_rule_name

(required) Rule name for the responder execution

problem_id

(required) Problem id associated with the responder execution

l_region

(required) region where the problem is found

target_id

(required) targetId of the problem for the responder execution

compartment_id

(required) compartment id of the responder execution for the problem

resource_type

(required) resource type of the problem for the responder execution

resource_name

(required) resource name of the problem for the responder execution. TODO-DOC link to resource definition doc

time_created

(required) The date and time the responder execution was created. Format defined by RFC3339.

time_completed

(optional) The date and time the responder execution was updated. Format defined by RFC3339.

responder_execution_status

(required) current execution status of the responder

Allowed values are: 'STARTED', 'AWAITING_CONFIRMATION', 'AWAITING_INPUT', 'SUCCEEDED', 'FAILED', 'SKIPPED', 'ALL'

responder_execution_mode

(required) execution mode of the responder

Allowed values are: 'MANUAL', 'AUTOMATED', 'ALL'

message

(optional) Message about the responder execution.

responder_rule_execution_details

(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

dimensions_map

(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\"}

l_count

(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

items

(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

id

(required) The unique identifier of the responder execution

responder_rule_id

(required) Responder Rule id for the responder execution

responder_rule_type

(required) Rule Type for the responder execution

Allowed values are: 'REMEDIATION', 'NOTIFICATION'

responder_rule_name

(required) Rule name for the responder execution

problem_id

(required) Problem id associated with the responder execution

problem_name

(required) Problem name associated with the responder execution

l_region

(required) Region where the problem is found

target_id

(required) Target Id of the problem for the responder execution

compartment_id

(required) compartment id of the problem for the responder execution

resource_type

(required) resource type of the problem for the responder execution

resource_name

(required) resource name of the problem for the responder execution. TODO-DOC link to resource definition doc

time_created

(required) The date and time the responder execution was created. Format defined by RFC3339.

time_completed

(optional) The date and time the responder execution was updated. Format defined by RFC3339.

responder_execution_status

(required) current execution status of the responder

Allowed values are: 'STARTED', 'AWAITING_CONFIRMATION', 'AWAITING_INPUT', 'SUCCEEDED', 'FAILED', 'SKIPPED', 'ALL'

responder_execution_mode

(required) possible type of responder execution modes

Allowed values are: 'MANUAL', 'AUTOMATED', 'ALL'

message

(optional) Message about the responder execution.

responder_rule_execution_details

(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

items

(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

dimensions_map

(required) The key-value pairs of dimensions and their names.

start_timestamp

(required) Start Time in epoch seconds

duration_in_seconds

(required) Duration

l_count

(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

items

(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

condition

(optional)

configurations

(optional) ResponderRule configurations

is_enabled

(required) Identifies state for ResponderRule

l_mode

(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

responder_rule_id

(required) Identifier for ResponderRule.

display_name

(optional) ResponderRule display name.

description

(optional) ResponderRule description.

l_type

(optional) Type of Responder

Allowed values are: 'REMEDIATION', 'NOTIFICATION'

policies

(optional) List of Policy

supported_modes

(optional) Supported Execution Modes

Allowed values are: 'AUTOACTION', 'USERACTION'

details

(optional)

compartment_id

(required) Compartment Identifier

time_created

(optional) The date and time the responder recipe rule was created. Format defined by RFC3339.

time_updated

(optional) The date and time the responder recipe rule was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the ResponderRule.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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

id

(required) Identifier for ResponderRecipe.

display_name

(optional) ResponderRecipe display name.

description

(optional) ResponderRecipe description.

owner

(optional) Owner of ResponderRecipe

Allowed values are: 'CUSTOMER', 'ORACLE'

responder_rules

(optional) List of responder rules associated with the recipe

effective_responder_rules

(optional) List of responder rules associated with the recipe

source_responder_recipe_id

(optional) The id of the source responder recipe.

compartment_id

(required) Compartment Identifier

time_created

(optional) The date and time the responder recipe was created. Format defined by RFC3339.

time_updated

(optional) The date and time the responder recipe was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the Example.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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.

freeform_tags

(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.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(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

id

(required) Identifier for ResponderRecipe.

display_name

(optional) ResponderRecipe display name.

description

(optional) ResponderRecipe description.

owner

(optional) Owner of ResponderRecipe

Allowed values are: 'CUSTOMER', 'ORACLE'

responder_rules

(optional) List of responder rules associated with the recipe

source_responder_recipe_id

(optional) The id of the source responder recipe.

compartment_id

(required) Compartment Identifier

time_created

(optional) The date and time the responder recipe was created. Format defined by RFC3339.

time_updated

(optional) The date and time the responder recipe was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the Example.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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.

freeform_tags

(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.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(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

items

(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

id

(required) Identifier for ResponderRule.

display_name

(optional) ResponderRule Display Name

description

(optional) ResponderRule Description

l_type

(optional) Type of Responder

Allowed values are: 'REMEDIATION', 'NOTIFICATION'

policies

(optional) List of Policy

supported_modes

(optional) Supported Execution Modes

Allowed values are: 'AUTOACTION', 'USERACTION'

details

(optional)

compartment_id

(required) Compartment Identifier

time_created

(optional) The date and time the responder recipe rule was created. Format defined by RFC3339.

time_updated

(optional) The date and time the responder recipe rule was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the ResponderRule.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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

items

(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

id

(required) Identifier for ResponderRule.

display_name

(required) ResponderRule Display Name

description

(required) ResponderRule Description

l_type

(required) Type of Responder

Allowed values are: 'REMEDIATION', 'NOTIFICATION'

policies

(optional) List of Policy

supported_modes

(optional) Supported Execution Modes

Allowed values are: 'AUTOACTION', 'USERACTION'

details

(optional)

time_created

(optional) The date and time the responder rule was created. Format defined by RFC3339.

time_updated

(optional) The date and time the responder rule was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the ResponderRule.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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

id

(required) Identifier for ResponderRule.

display_name

(required) ResponderRule Display Name

description

(required) ResponderRule Description

l_type

(required) Type of Responder

Allowed values are: 'REMEDIATION', 'NOTIFICATION'

policies

(optional) List of Policy

supported_modes

(optional) Supported Execution Modes

Allowed values are: 'AUTOACTION', 'USERACTION'

details

(optional)

time_created

(optional) The date and time the responder rule was created. Format defined by RFC3339.

time_updated

(optional) The date and time the responder rule was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the ResponderRule.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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

items

(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

dimensions_map

(required) The key-value pairs of dimensions and their names.

risk_score

(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

items

(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

id

(required) Unique identifier that is immutable on creation

friendly_name

(optional) A shorter version of the security policy's name

display_name

(optional) The security policy's full name

description

(optional) The security policy's description

compartment_id

(required) The id of the security policy's compartment

owner

(required) The owner of the security policy

Allowed values are: 'CUSTOMER', 'ORACLE'

category

(optional) The category of security policy

services

(optional) The list of services that the security policy protects

time_created

(optional) The time the security policy was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the security policy was last updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the security policy

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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.

freeform_tags

(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.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(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

id

(required) Unique identifier that is immutable on creation

friendly_name

(optional) A shorter version of the security policy's name

display_name

(optional) The security policy's full name

description

(optional) The security policy's description

compartment_id

(required) The id of the security policy's compartment

owner

(required) The owner of the security policy

Allowed values are: 'CUSTOMER', 'ORACLE'

category

(optional) The category of security policy

services

(optional) The list of services that the security policy protects

time_created

(optional) The time the security policy was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the security policy was last updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the security policy

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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.

freeform_tags

(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.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(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

items

(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

id

(required) Unique identifier that is immutable on creation

display_name

(optional) The recipe's name

description

(optional) The recipe's description

compartment_id

(required) The id of the compartment that contains the recipe

owner

(required) The owner of the recipe

Allowed values are: 'CUSTOMER', 'ORACLE'

security_policies

(required) The list of `SecurityPolicy` ids that are included in the recipe

time_created

(optional) The time the recipe was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the recipe was last updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the recipe

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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.

freeform_tags

(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.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(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

id

(required) Unique identifier that is immutable on creation

display_name

(optional) The recipe's name

description

(optional) The recipe's description

compartment_id

(required) The id of the compartment that contains the recipe

owner

(required) The owner of the recipe

Allowed values are: 'CUSTOMER', 'ORACLE'

security_policies

(required) The list of `SecurityPolicy` ids that are included in the recipe

time_created

(optional) The time the recipe was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the recipe was last updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the recipe

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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.

freeform_tags

(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.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(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

items

(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

dimensions_map

(required) The key-value pairs of dimensions and their names.

security_rating

(required) The security rating with given dimension/s

Allowed values are: 'EXCELLENT', 'GOOD', 'FAIR', 'POOR', 'NA'

security_score

(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

items

(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

dimensions_map

(required) The key-value pairs of dimensions and their names.

start_timestamp

(required) Start Time in epoch seconds

duration_in_seconds

(required) Duration

security_rating

(required) The security rating with given dimensions and time range

Allowed values are: 'EXCELLENT', 'GOOD', 'FAIR', 'POOR', 'NA'

security_score

(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

items

(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

id

(required) Unique identifier that is immutable on creation

display_name

(optional) The security zone's name

description

(optional) The security zone's description

compartment_id

(required) The OCID of the compartment for the security zone

security_zone_recipe_id

(required) The OCID of the recipe (`SecurityRecipe`) for the security zone

security_zone_target_id

(optional) The OCID of the target associated with the security zone

inherited_by_compartments

(optional) List of inherited compartments

time_created

(optional) The time the security zone was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the security zone was last updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the security zone

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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.

freeform_tags

(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.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(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

id

(required) Unique identifier that is immutable on creation

display_name

(optional) The security zone's name

description

(optional) The security zone's description

compartment_id

(required) The OCID of the compartment for the security zone

security_zone_recipe_id

(required) The OCID of the recipe (`SecurityRecipe`) for the security zone

time_created

(optional) The time the security zone was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the security zone was last updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the security zone

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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.

freeform_tags

(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.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(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

items

(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

target_resource_type

(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

security_zone_id

(optional) The OCID of the security zone to associate this compartment with.

security_zone_display_name

(optional) The name of the security zone to associate this compartment with.

target_security_zone_recipes

(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

id

(required) Unique identifier for sighting event

description

(required) Description of the sighting event

problem_id

(optional) Problem Id to which the Sighting is associated

compartment_id

(required) Compartment Id where the resource is created

actor_principal_id

(optional) Unique identifier for principal actor

actor_principal_name

(optional) Name of the principal actor

actor_principal_type

(optional) Type of the principal actor

classification_status

(required) ClassificationStatus of the sighting event

Allowed values are: 'FALSE_NEGATIVE', 'TRUE_NEGATIVE', 'FALSE_POSITIVE', 'TRUE_POSITIVE', 'NOT_CLASSIFIED'

sighting_type

(required) Identifier for the sighting type

sighting_type_display_name

(required) Display name of the sighting type

tactic_name

(required) Name of the Mitre att&ck tactic

technique_name

(required) Name of the Mitre att&ck technique

sighting_score

(required) Score for the sighting

severity

(required) Severity of the sighting

Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR'

confidence

(required) Confidence of the sighting

Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR'

time_first_detected

(required) The date and time the sighting was first detected. Format defined by RFC3339.

time_last_detected

(required) The date and time the sighting was last detected. Format defined by RFC3339.

regions

(required) regions involved in the sighting

additional_details

(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

id

(required) Unique identifier for finding event

compartment_id

(required) Compartment Id where the resource is created

problem_id

(optional) Problem Id to which the Sighting is associated

actor_principal_id

(optional) Unique identifier for principal actor

actor_principal_name

(optional) Name of the principal actor

actor_principal_type

(optional) Type of the principal actor

detector_rule_id

(required) Unique identifier of the rule

classification_status

(required) ClassificationStatus of the sighting event

Allowed values are: 'FALSE_NEGATIVE', 'TRUE_NEGATIVE', 'FALSE_POSITIVE', 'TRUE_POSITIVE', 'NOT_CLASSIFIED'

sighting_type

(required) Identifier for the sighting type

sighting_type_display_name

(required) Name of the sighting type

tactic_name

(required) Name of the Mitre att&ck tactic

technique_name

(required) Name of the Mitre att&ck technique

sighting_score

(required) Score for the sighting

severity

(required) Severity of the sighting

Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR'

confidence

(required) Confidence of the sighting

Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR'

time_first_detected

(required) The date and time the sighting was first detected. Format defined by RFC3339.

time_last_detected

(required) The date and time the sighting was last detected. Format defined by RFC3339.

regions

(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

items

(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

id

(required) Unique identifier for sighting endpoints

sighting_id

(required) Sighitng Id for sighting endpoints

problem_id

(optional) Problem Id for sighting endpoints

ip_address

(required) IP Address

ip_address_type

(required) IP Address type

ip_classification_type

(optional) IP Address classification type

country

(optional) Country

latitude

(optional) Latitude

longitude

(optional) Longitude

asn_number

(optional) ASN number

regions

(optional) Regions where activities were performed from this IP

services

(optional) Services where activities were performed from this IP

time_last_detected

(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

items

(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

id

(required) Unique identifier for impacted resource

resource_id

(required) Impacted resource Id

sighting_id

(required) Sighting Id

problem_id

(optional) Problem Id for impacted resource

compartment_id

(required) Compartment Id for impacted resource

resource_name

(required) Resource name

resource_type

(required) Resource type

l_region

(required) Region for impacted resource

time_identified

(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

items

(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

parameter

(optional) parameter Key

operator

(optional) type of operator

Allowed values are: 'IN', 'NOT_IN', 'EQUALS', 'NOT_EQUALS'

value

(optional) type of operator

value_type

(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

responder_execution_ids

(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

items

(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

is_enabled

(required) Enables the control

risk_level

(optional) The Risk Level

Allowed values are: 'CRITICAL', 'HIGH', 'MEDIUM', 'LOW', 'MINOR'

configurations

(optional) Configuration details

condition_groups

(optional) Condition group corresponding to each compartment

labels

(optional) user defined labels for a detector rule

is_configuration_allowed

(optional) configuration allowed or not

problem_threshold

(optional) Cutover point for an elevated resource Risk Score to create a Problem

target_types

(optional) List of target types for which the detector rule is applicable

sighting_types

(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

detector_rule_id

(required) The unique identifier of the detector rule.

display_name

(optional) Display name for TargetDetectorRecipeDetectorRule. information.

description

(optional) Description for TargetDetectorRecipeDetectorRule. information.

recommendation

(optional) Recommendation for TargetDetectorRecipeDetectorRule

detector

(required) detector for the rule

Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR'

service_type

(required) service type of the configuration to which the rule is applied

resource_type

(required) resource type of the configuration to which the rule is applied

details

(optional)

managed_list_types

(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'

time_created

(optional) The date and time the target detector recipe rule was created. Format defined by RFC3339.

time_updated

(optional) The date and time the target detector recipe rule was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the DetectorRule.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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.

data_source_id

(optional) The id of the attached DataSource.

entities_mappings

(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

id

(required) Ocid for detector recipe

display_name

(required) Display name of detector recipe.

description

(optional) Detector recipe description.

compartment_id

(required) compartmentId of detector recipe

detector_recipe_id

(required) Unique identifier for Detector Recipe of which this is an extension

owner

(required) Owner of detector recipe

Allowed values are: 'CUSTOMER', 'ORACLE'

detector

(required) Type of detector

Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR'

detector_rules

(optional) List of detector rules for the detector type for recipe - user input

effective_detector_rules

(optional) List of effective detector rules for the detector type for recipe after applying defaults

time_created

(optional) The date and time the target detector recipe was created. Format defined by RFC3339.

time_updated

(optional) The date and time the target detector recipe was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the resource.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

source_data_retention

(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

responder_rule_id

(required) Unique ResponderRule identifier.

display_name

(optional) ResponderRule display name.

description

(optional) ResponderRule description.

l_type

(optional) Type of Responder

Allowed values are: 'REMEDIATION', 'NOTIFICATION'

policies

(optional) List of Policy

supported_modes

(optional) Supported Execution Modes

Allowed values are: 'AUTOACTION', 'USERACTION'

details

(optional)

compartment_id

(required) Compartment Identifier

time_created

(optional) The date and time the target responder recipe rule was created. Format defined by RFC3339.

time_updated

(optional) The date and time the target responder recipe rule was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the ResponderRule.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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

id

(required) Unique identifier of TargetResponderRecipe that can't be changed after creation.

responder_recipe_id

(required) Unique identifier for Responder Recipe of which this is an extension.

compartment_id

(required) Compartment Identifier

display_name

(required) ResponderRecipe display name.

description

(required) ResponderRecipe description.

owner

(required) Owner of ResponderRecipe

Allowed values are: 'CUSTOMER', 'ORACLE'

time_created

(optional) The date and time the target responder recipe rule was created. Format defined by RFC3339.

time_updated

(optional) The date and time the target responder recipe rule was updated. Format defined by RFC3339.

responder_rules

(optional) List of responder rules associated with the recipe - user input

effective_responder_rules

(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

id

(required) Unique identifier that is immutable on creation.

display_name

(optional) Target display name, can be renamed.

compartment_id

(required) Compartment Identifier where the resource is created

description

(optional) The target description.

target_resource_type

(required) possible type of targets

Allowed values are: 'COMPARTMENT', 'ERPCLOUD', 'HCMCLOUD', 'SECURITY_ZONE'

target_resource_id

(required) Resource ID which the target uses to monitor

recipe_count

(required) Total number of recipes attached to target

target_detector_recipes

(optional) List of detector recipes associated with target

target_responder_recipes

(optional) List of responder recipes associated with target

target_details

(optional)

inherited_by_compartments

(optional) List of inherited compartments

time_created

(optional) The date and time the target was created. Format defined by RFC3339.

time_updated

(optional) The date and time the target was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the Target.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecyle_details

(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.

freeform_tags

(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.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(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

id

(required) Unique identifier that is immutable on creation

display_name

(optional) DetectorTemplate Identifier, can be renamed

compartment_id

(required) Compartment Identifier where the resource is created

target_resource_type

(required) possible type of targets(compartment/HCMCloud/ERPCloud)

Allowed values are: 'COMPARTMENT', 'ERPCLOUD', 'HCMCLOUD', 'SECURITY_ZONE'

target_resource_id

(required) Resource ID which the target uses to monitor

recipe_count

(required) Total number of recipes attached to target

time_created

(optional) The date and time the target was created. Format defined by RFC3339.

time_updated

(optional) The date and time the target was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the resource.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecyle_details

(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.

freeform_tags

(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.

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

system_tags

(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

items

(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

id

(required) Unique identifier that is immutable on creation

compartment_id

(required) Compartment Identifier

display_name

(required) DetectorRecipe Identifier Name

description

(required) DetectorRecipe Description

owner

(required) Owner of DetectorRecipe

Allowed values are: 'CUSTOMER', 'ORACLE'

detector_recipe_id

(required) Unique identifier for Detector Recipe of which this is an extension

detector

(optional) Type of detector

Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR'

lifecycle_state

(optional) The current state of the resource.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

time_created

(optional) The date and time the target detector recipe was created. Format defined by RFC3339.

time_updated

(optional) The date and time the target detector recipe was updated. Format defined by RFC3339.

lifecycle_details

(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.

source_data_retention

(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

items

(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

id

(required) The unique identifier of the detector rule

display_name

(optional) DetectorTemplate Identifier, can be renamed

description

(optional) DetectorTemplate Identifier, can be renamed

recommendation

(optional) Recommendation for TargetDetectorRecipeDetectorRule

detector

(required) possible type of detectors

Allowed values are: 'IAAS_ACTIVITY_DETECTOR', 'IAAS_CONFIGURATION_DETECTOR', 'IAAS_THREAT_DETECTOR', 'IAAS_LOG_INSIGHT_DETECTOR'

service_type

(optional) service type of the configuration to which the rule is applied

resource_type

(optional) resource type of the configuration to which the rule is applied

managed_list_types

(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'

detector_details

(optional)

time_created

(optional) The date and time the target detector recipe rule was created. Format defined by RFC3339.

time_updated

(optional) The date and time the target detector recipe rule was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the target detector recipe rule

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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.

data_source_id

(optional) The id of the attached DataSource.

entities_mappings

(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

items

(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

l_values

(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

l_values

(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

id

(required) Unique identifier that is immutable on creation

compartment_id

(required) Compartment Identifier

responder_recipe_id

(required) Unique identifier for Responder Recipe of which this is an extension

display_name

(required) ResponderRecipe Identifier Name

description

(required) ResponderRecipe Description

owner

(required) Owner of ResponderRecipe

Allowed values are: 'CUSTOMER', 'ORACLE'

time_created

(optional) The date and time the target responder recipe was created. Format defined by RFC3339.

time_updated

(optional) The date and time the target responder recipe was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the Example.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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

items

(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

id

(required) Identifier for ResponderRule.

display_name

(optional) ResponderRule Display Name

description

(optional) ResponderRule Description

l_type

(optional) Type of Responder

Allowed values are: 'REMEDIATION', 'NOTIFICATION'

policies

(optional) List of Policy

supported_modes

(optional) Supported Execution Modes

Allowed values are: 'AUTOACTION', 'USERACTION'

details

(optional)

compartment_id

(required) Compartment Identifier

time_created

(optional) The date and time the target responder recipe rule was created. Format defined by RFC3339.

time_updated

(optional) The date and time the target responder recipe rule was updated. Format defined by RFC3339.

lifecycle_state

(optional) The current state of the ResponderRule.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(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

items

(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

id

(required) Unique identifier for the technique.

display_name

(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

items

(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

responder_rule_id

(required) ResponderRule ID

configurations

(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

status

(required) Action taken by user

Allowed values are: 'OPEN', 'RESOLVED', 'DISMISSED', 'DELETED'

problem_ids

(required) List of ProblemIds to be passed in to update the Problem status.

l_comment

(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

reporting_region

(required) The reporting region value

status

(required) Status of Cloud Guard Tenant

Allowed values are: 'ENABLED', 'DISABLED'

self_manage_resources

(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

display_name

(optional) Data mask rule Name. Avoid entering confidential information.

compartment_id

(optional) Compartment Identifier where the resource is created

iam_group_id

(optional) IAM Group id associated with the data mask rule

target_selected

(optional)

data_mask_categories

(optional) Data Mask Categories

Allowed values are: 'ACTOR', 'PII', 'PHI', 'FINANCIAL', 'LOCATION', 'CUSTOM'

data_mask_rule_status

(optional) The status of the dataMaskRule.

Allowed values are: 'ENABLED', 'DISABLED'

freeform_tags

(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.

defined_tags

(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

display_name

(optional) Data Source display name.

status

(optional) Status of DataSource.

Allowed values are: 'ENABLED', 'DISABLED'

data_source_details

(optional)

freeform_tags

(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.

defined_tags

(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

display_name

(optional) Display name of detector recipe. Avoid entering confidential information.

description

(optional) Detector recipe description. Avoid entering confidential information.

detector_rules

(optional) Detector Rules to update

freeform_tags

(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.

defined_tags

(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

details

(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

display_name

(optional) Managed list display name. Avoid entering confidential information.

description

(optional) Managed list description. Avoid entering confidential information.

list_items

(optional) List of ManagedListItem

freeform_tags

(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.

defined_tags

(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

status

(required) Action taken by user

Allowed values are: 'OPEN', 'RESOLVED', 'DISMISSED', 'DELETED'

l_comment

(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

display_name

(required) Responder recipe identifier. Avoid entering confidential information.

description

(optional) Responder recipe description. Avoid entering confidential information.

responder_rules

(optional) Responder Rules to Update

freeform_tags

(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.

defined_tags

(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

details

(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

display_name

(required) SecurityPolicy Identifier

freeform_tags

(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.

defined_tags

(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

display_name

(required) The recipe's name

description

(optional) The recipe's description

security_policies

(optional) The list of `SecurityPolicy` ids to include in the recipe

freeform_tags

(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.

defined_tags

(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

display_name

(required) The security zone's name

description

(optional) The security zone's description

security_zone_recipe_id

(optional) The OCID of the recipe (`SecurityRecipe`) for the security zone

freeform_tags

(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.

defined_tags

(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

target_detector_recipe_id

(required) Identifier for DetectorRecipe.

detector_rules

(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

target_responder_recipe_id

(required) Identifier for ResponderRecipe.

responder_rules

(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

display_name

(optional) Display name of a target. Avoid entering confidential information.

lifecycle_state

(optional) The current state of the Target.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

target_detector_recipes

(optional) The details of target detector recipes to be updated.

target_responder_recipes

(optional) The details of target responder recipes to be updated.

freeform_tags

(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.

defined_tags

(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

detector_recipe_id

(optional) Detector recipe identifier associated with the target

is_validation_only_query

(optional) When enabled, validation is performed for attaching the detector recipe.

detector_rules

(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

details

(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

responder_rules

(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

details

(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

entity_type

(required) The resource type the work request affects.

action_type

(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'

identifier

(required) The identifier of the resource the work request affects.

entity_uri

(optional) The URI path that the user can do a GET on to access the resource metadata

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

id

(required) The id of the work request.

compartment_id

(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

operation_type

(required) Operation type of the work request.

Allowed values are: 'CREATE', 'UPDATE', 'DELETE', 'MOVE'

status

(required) Operation status of the work request.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', 'FAILED', 'SUCCEEDED', 'CANCELING', 'CANCELED'

resources

(required) The resources affected by this work request.

percent_complete

(required) Percentage of the request completed.

time_accepted

(required) The date and time the request was created

time_started

(optional) The date and time the request was started

time_finished

(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

code

(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)

message

(required) A human readable description of the issue encountered.

l_timestamp

(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

items

(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

message

(required) Human-readable log message.

l_timestamp

(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

items

(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

operation_type

(required) Type of the work request

Allowed values are: 'CREATE', 'UPDATE', 'DELETE', 'MOVE'

status

(required) Status of current work request.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', 'FAILED', 'SUCCEEDED', 'CANCELING', 'CANCELED'

id

(required) The id of the work request.

compartment_id

(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

resources

(required) The resources affected by this work request.

percent_complete

(required) Percentage of the request completed.

time_accepted

(required) The date and time the request was created

time_started

(optional) The date and time the request was started

time_finished

(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

items

(required) List of workRequestSummary objects.

Was this article helpful?