Data Safe Common Types

DBMS_CLOUD_OCI_DATASAFE_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_CREDENTIALS_T Type

The database credentials required for Data Safe to connect to the database.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_credentials_t FORCE AUTHID CURRENT_USER IS OBJECT (
  user_name varchar2(32767),
  password varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_credentials_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_credentials_t (
    user_name varchar2,
    password varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

user_name

(required) The database user name.

password

(required) The password of the database user.

DBMS_CLOUD_OCI_DATASAFE_ACTIVATE_TARGET_DATABASE_DETAILS_T Type

The details required to reactivate a previously deactived target database in Data Safe.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_activate_target_database_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  credentials dbms_cloud_oci_datasafe_credentials_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_activate_target_database_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_activate_target_database_details_t (
    credentials dbms_cloud_oci_datasafe_credentials_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

credentials

(required)

DBMS_CLOUD_OCI_DATASAFE_ALERT_T Type

The details of a Data Safe Alert, that shows alerts generated by a Data Safe feature.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_alert_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  status varchar2(32767),
  severity varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  operation_time timestamp with time zone,
  operation varchar2(32767),
  operation_status varchar2(32767),
  target_ids dbms_cloud_oci_datasafe_varchar2_tbl,
  target_names dbms_cloud_oci_datasafe_varchar2_tbl,
  policy_id varchar2(32767),
  alert_type varchar2(32767),
  resource_name varchar2(32767),
  feature_details json_element_t,
  l_comment varchar2(32767),
  compartment_id varchar2(32767),
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_t (
    id varchar2,
    status varchar2,
    severity varchar2,
    display_name varchar2,
    description varchar2,
    operation_time timestamp with time zone,
    operation varchar2,
    operation_status varchar2,
    target_ids dbms_cloud_oci_datasafe_varchar2_tbl,
    target_names dbms_cloud_oci_datasafe_varchar2_tbl,
    policy_id varchar2,
    alert_type varchar2,
    resource_name varchar2,
    feature_details json_element_t,
    l_comment varchar2,
    compartment_id varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    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) The OCID of the alert.

status

(optional) The status of the alert.

Allowed values are: 'OPEN', 'CLOSED'

severity

(optional) Severity level of the alert.

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

display_name

(required) The display name of the alert.

description

(optional) The description of the alert.

operation_time

(optional) Creation date and time of the operation that triggered alert, in the format defined by RFC3339.

operation

(optional) The operation (event) that triggered alert.

operation_status

(optional) The result of the operation (event) that triggered alert.

Allowed values are: 'SUCCEEDED', 'FAILED'

target_ids

(optional) Array of OCIDs of the target database which are associated with the alert.

target_names

(optional) Array of names of the target database.

policy_id

(optional) The OCID of the policy that triggered alert.

alert_type

(optional) Type of the alert. Indicates the Data Safe feature triggering the alert.

Allowed values are: 'AUDITING', 'SECURITY_ASSESSMENT', 'USER_ASSESSMENT'

resource_name

(optional) The resource endpoint that triggered the alert.

feature_details

(optional) Map that contains maps of values. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

l_comment

(optional) A comment for the alert. Entered by the user.

compartment_id

(required) The OCID of the compartment that contains the alert.

lifecycle_state

(required) The current state of the alert.

Allowed values are: 'UPDATING', 'SUCCEEDED', 'FAILED'

time_created

(required) Creation date and time of the alert, in the format defined by RFC3339.

time_updated

(required) Last date and time the alert was updated, in the format defined by RFC3339.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_ALERTS_AGGREGATION_DIMENSION_T Type

Details of aggregation dimension summarizing alerts.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_alerts_aggregation_dimension_t FORCE AUTHID CURRENT_USER IS OBJECT (
  group_by json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alerts_aggregation_dimension_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alerts_aggregation_dimension_t (
    group_by json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

group_by

(required) GroupBy value used in aggregation.

DBMS_CLOUD_OCI_DATASAFE_ALERT_AGGREGATION_ITEMS_T Type

Details of alerts aggregation items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_alert_aggregation_items_t FORCE AUTHID CURRENT_USER IS OBJECT (
  metric_name varchar2(32767),
  time_started timestamp with time zone,
  time_ended timestamp with time zone,
  l_count number,
  dimensions dbms_cloud_oci_datasafe_alerts_aggregation_dimension_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_aggregation_items_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_aggregation_items_t (
    metric_name varchar2,
    time_started timestamp with time zone,
    time_ended timestamp with time zone,
    l_count number,
    dimensions dbms_cloud_oci_datasafe_alerts_aggregation_dimension_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

metric_name

(required) The name of the aggregation.

time_started

(required) The time at which the aggregation started.

time_ended

(required) The time at which the aggregation ended.

l_count

(required) Total count of aggregated values.

dimensions

(optional)

DBMS_CLOUD_OCI_DATASAFE_ALERT_AGGREGATION_ITEMS_TBL Type

Nested table type of dbms_cloud_oci_datasafe_alert_aggregation_items_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_alert_aggregation_items_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_alert_aggregation_items_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_ALERT_ANALYTICS_COLLECTION_T Type

The summarized detail of alerts aggregation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_alert_analytics_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_alert_aggregation_items_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_analytics_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_analytics_collection_t (
    items dbms_cloud_oci_datasafe_alert_aggregation_items_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) The aggregated data point items.

DBMS_CLOUD_OCI_DATASAFE_ALERT_SUMMARY_T Type

Summary of a Data Safe Alert.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_alert_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  status varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  severity varchar2(32767),
  operation_time timestamp with time zone,
  operation varchar2(32767),
  operation_status varchar2(32767),
  target_ids dbms_cloud_oci_datasafe_varchar2_tbl,
  target_names dbms_cloud_oci_datasafe_varchar2_tbl,
  policy_id varchar2(32767),
  alert_type varchar2(32767),
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  feature_details json_element_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_summary_t (
    id varchar2,
    status varchar2,
    display_name varchar2,
    description varchar2,
    severity varchar2,
    operation_time timestamp with time zone,
    operation varchar2,
    operation_status varchar2,
    target_ids dbms_cloud_oci_datasafe_varchar2_tbl,
    target_names dbms_cloud_oci_datasafe_varchar2_tbl,
    policy_id varchar2,
    alert_type varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    feature_details json_element_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the alert.

status

(required) The status of the alert.

Allowed values are: 'OPEN', 'CLOSED'

display_name

(required) The display name of the alert.

description

(optional) The details of the alert.

severity

(required) Severity level of the alert.

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

operation_time

(optional) Creation date and time of the operation that triggered alert, in the format defined by RFC3339.

operation

(optional) The operation that triggered alert.

operation_status

(optional) The result of the operation (event) that triggered alert.

Allowed values are: 'SUCCEEDED', 'FAILED'

target_ids

(optional) Array of OCIDs of the target database.

target_names

(optional) Array of names of the target database.

policy_id

(optional) The OCID of the policy that triggered alert.

alert_type

(optional) Type of the alert. Indicates the Data Safe feature triggering the alert.

Allowed values are: 'AUDITING', 'SECURITY_ASSESSMENT', 'USER_ASSESSMENT'

compartment_id

(required) The OCID of the compartment that contains the alert.

time_created

(required) Creation date and time of the alert, in the format defined by RFC3339.

time_updated

(required) Last date and time the alert was updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the alert.

Allowed values are: 'UPDATING', 'SUCCEEDED', 'FAILED'

feature_details

(optional) Map that contains maps of values. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_ALERT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_alert_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_alert_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_alert_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_ALERT_COLLECTION_T Type

Collection of alert summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_alert_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_alert_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_collection_t (
    items dbms_cloud_oci_datasafe_alert_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of alert summary

DBMS_CLOUD_OCI_DATASAFE_ALERT_POLICY_T Type

An Alert Policy is a set of alerting rules evaluated against a target. The alert policy is said to be satisfied when all rules in the policy evaulate to true. If there are three rules: rule1,rule2 and rule3, the policy is satisfied if rule1 AND rule2 AND rule3 is True.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_alert_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  alert_policy_type varchar2(32767),
  is_user_defined number,
  severity varchar2(32767),
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_policy_t (
    id varchar2,
    display_name varchar2,
    description varchar2,
    alert_policy_type varchar2,
    is_user_defined number,
    severity varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    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) The OCID of the alert policy.

display_name

(required) The display name of the alert policy.

description

(optional) The description of the alert policy.

alert_policy_type

(optional) Indicates the Data Safe feature to which the alert policy belongs.

Allowed values are: 'AUDITING', 'SECURITY_ASSESSMENT', 'USER_ASSESSMENT'

is_user_defined

(optional) Indicates if the alert policy is user-defined (true) or pre-defined (false).

severity

(optional) Severity level of the alert raised by this policy.

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

compartment_id

(required) The OCID of the compartment that contains the alert policy.

time_created

(required) Creation date and time of the alert policy, in the format defined by RFC3339.

time_updated

(required) Last date and time the alert policy was updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the alert.

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

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_ALERT_POLICY_SUMMARY_T Type

Summary of a Data Safe alert policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_alert_policy_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  alert_policy_type varchar2(32767),
  is_user_defined number,
  severity varchar2(32767),
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_policy_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_policy_summary_t (
    id varchar2,
    display_name varchar2,
    description varchar2,
    alert_policy_type varchar2,
    is_user_defined number,
    severity varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the alert policy.

display_name

(required) The display name of the alert policy.

description

(optional) The details of the alert policy.

alert_policy_type

(required) Indicates the Data Safe feature that the alert policy belongs to.

Allowed values are: 'AUDITING', 'SECURITY_ASSESSMENT', 'USER_ASSESSMENT'

is_user_defined

(optional) Indicates if the alert policy is user-defined (true) or pre-defined (false).

severity

(optional) Severity level of the alert raised by this policy.

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

compartment_id

(required) The OCID of the compartment that contains the alert policy.

time_created

(required) Creation date and time of the alert policy, in the format defined by RFC3339.

time_updated

(required) Last date and time the alert policy was updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the alert policy.

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

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_ALERT_POLICY_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_alert_policy_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_alert_policy_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_alert_policy_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_ALERT_POLICY_COLLECTION_T Type

Collection of alert policy summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_alert_policy_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_alert_policy_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_policy_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_policy_collection_t (
    items dbms_cloud_oci_datasafe_alert_policy_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of alert policy summary

DBMS_CLOUD_OCI_DATASAFE_ALERT_POLICY_RULE_T Type

A rule associated with a alert policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_alert_policy_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  description varchar2(32767),
  expression varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_policy_rule_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_policy_rule_t (
    key varchar2,
    description varchar2,
    expression varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) The unique key of the alert policy rule.

description

(optional) Describes the alert policy rule.

expression

(required) The conditional expression of the alert policy rule which evaluates to boolean value.

DBMS_CLOUD_OCI_DATASAFE_ALERT_POLICY_RULE_SUMMARY_T Type

A rule associated with an alert policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_alert_policy_rule_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  description varchar2(32767),
  expression varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_policy_rule_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_policy_rule_summary_t (
    key varchar2,
    description varchar2,
    expression varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) The unique key of the alert policy rule.

description

(optional) Describes the alert policy rule.

expression

(required) The conditional expression of the alert policy rule which evaluates to boolean value.

DBMS_CLOUD_OCI_DATASAFE_ALERT_POLICY_RULE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_alert_policy_rule_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_alert_policy_rule_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_alert_policy_rule_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_ALERT_POLICY_RULE_COLLECTION_T Type

Collection of alert policy rules summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_alert_policy_rule_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_alert_policy_rule_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_policy_rule_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alert_policy_rule_collection_t (
    items dbms_cloud_oci_datasafe_alert_policy_rule_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of alert policy rules summary

DBMS_CLOUD_OCI_DATASAFE_ALERTS_UPDATE_DETAILS_T Type

The details to update alerts in the specified compartment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_alerts_update_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  status varchar2(32767),
  compartment_id varchar2(32767),
  target_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alerts_update_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_alerts_update_details_t (
    status varchar2,
    compartment_id varchar2,
    target_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

status

(required) The status of the alert.

Allowed values are: 'OPEN', 'CLOSED'

compartment_id

(required) The OCID of the compartment that contains the alerts.

target_id

(optional) The OCID of the target database associated with the alerts.

DBMS_CLOUD_OCI_DATASAFE_APPLY_DISCOVERY_JOB_RESULTS_DETAILS_T Type

Details to apply the discovery results to a sensitive data model.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_apply_discovery_job_results_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  discovery_job_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_apply_discovery_job_results_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_apply_discovery_job_results_details_t (
    discovery_job_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

discovery_job_id

(required) The OCID of the discovery job.

DBMS_CLOUD_OCI_DATASAFE_APPLY_SDM_MASKING_POLICY_DIFFERENCE_DETAILS_T Type

Details to apply the SDM masking policy difference to a masking policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_apply_sdm_masking_policy_difference_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  sdm_masking_policy_difference_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_apply_sdm_masking_policy_difference_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_apply_sdm_masking_policy_difference_details_t (
    sdm_masking_policy_difference_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

sdm_masking_policy_difference_id

(required) The OCID of the SDM masking policy difference.

DBMS_CLOUD_OCI_DATASAFE_AUDIT_ARCHIVE_RETRIEVAL_T Type

Represents the archive retrieve request for the audit data. You can retrieve audit data for a target database from the archive and store it online. For more information, see Retrieve Audit Data for a Target Database from the Archive.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_archive_retrieval_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  start_date timestamp with time zone,
  end_date timestamp with time zone,
  target_id varchar2(32767),
  time_requested timestamp with time zone,
  time_completed timestamp with time zone,
  time_of_expiry timestamp with time zone,
  audit_event_count number,
  error_info varchar2(32767),
  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_datasafe_audit_archive_retrieval_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_archive_retrieval_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    start_date timestamp with time zone,
    end_date timestamp with time zone,
    target_id varchar2,
    time_requested timestamp with time zone,
    time_completed timestamp with time zone,
    time_of_expiry timestamp with time zone,
    audit_event_count number,
    error_info varchar2,
    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) The OCID of the archive retrieval.

compartment_id

(required) The OCID of the compartment that contains archive retrieval.

display_name

(required) The display name of the archive retrieval. The name does not have to be unique, and is changeable.

description

(optional) Description of the archive retrieval.

start_date

(required) Start month of the archive retrieval, in the format defined by RFC3339.

end_date

(required) End month of the archive retrieval, in the format defined by RFC3339.

target_id

(required) The OCID of the target associated with the archive retrieval.

time_requested

(optional) The date time when archive retrieval was requested, in the format defined by RFC3339.

time_completed

(optional) The date time when archive retrieval request was fulfilled, in the format defined by RFC3339.

time_of_expiry

(optional) The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.

audit_event_count

(optional) Total count of audit events to be retrieved from the archive for the specified date range.

error_info

(optional) The Error details of a failed archive retrieval.

lifecycle_state

(required) The current state of the archive retrieval.

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

lifecycle_details

(optional) Details about the current state of the archive retrieval.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_AUDIT_ARCHIVE_RETRIEVAL_SUMMARY_T Type

Summary details of an archive retrieval.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_archive_retrieval_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  start_date timestamp with time zone,
  end_date timestamp with time zone,
  target_id varchar2(32767),
  time_requested timestamp with time zone,
  time_completed timestamp with time zone,
  time_of_expiry timestamp with time zone,
  audit_event_count number,
  error_info varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_archive_retrieval_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_archive_retrieval_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    start_date timestamp with time zone,
    end_date timestamp with time zone,
    target_id varchar2,
    time_requested timestamp with time zone,
    time_completed timestamp with time zone,
    time_of_expiry timestamp with time zone,
    audit_event_count number,
    error_info varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the archive retrieval.

compartment_id

(required) The OCID of the compartment that contains archive retrieval.

display_name

(required) The display name of the archive retrieval. The name does not have to be unique, and is changeable.

description

(optional) Description of the archive retrieval.

start_date

(required) Start month of the archive retrieval, in the format defined by RFC3339.

end_date

(required) End month of the archive retrieval, in the format defined by RFC3339.

target_id

(required) The OCID of the target associated with the archive retrieval.

time_requested

(optional) The date time when archive retrieval was requested, in the format defined by RFC3339.

time_completed

(optional) The date time when archive retrieval request was fulfilled, in the format defined by RFC3339.

time_of_expiry

(optional) The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.

audit_event_count

(optional) Total retrieved archive records audit event count.

error_info

(optional) Error details of failed archive retrieval.

lifecycle_state

(required) The current state of the archive retrieval.

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

lifecycle_details

(optional) Details about the current state of the archive retrieval.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_AUDIT_ARCHIVE_RETRIEVAL_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_audit_archive_retrieval_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_archive_retrieval_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_audit_archive_retrieval_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_AUDIT_ARCHIVE_RETRIEVAL_COLLECTION_T Type

Collection of archive retrieval summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_archive_retrieval_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_audit_archive_retrieval_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_archive_retrieval_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_archive_retrieval_collection_t (
    items dbms_cloud_oci_datasafe_audit_archive_retrieval_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of archive retrieval summary.

DBMS_CLOUD_OCI_DATASAFE_ENABLE_CONDITIONS_T Type

The details of the audit policy provisioning conditions.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_enable_conditions_t FORCE AUTHID CURRENT_USER IS OBJECT (
  entity_selection varchar2(32767),
  entity_type varchar2(32767),
  operation_status varchar2(32767),
  entity_names dbms_cloud_oci_datasafe_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_enable_conditions_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_enable_conditions_t (
    entity_selection varchar2,
    entity_type varchar2,
    operation_status varchar2,
    entity_names dbms_cloud_oci_datasafe_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

entity_selection

(required) The entity include or exclude selection.

Allowed values are: 'INCLUDE', 'EXCLUDE'

entity_type

(required) The entity type that the policy must be enabled for.

Allowed values are: 'USER', 'ROLE', 'ALL_USERS'

operation_status

(required) The operation status that the policy must be enabled for.

Allowed values are: 'SUCCESS', 'FAILURE', 'BOTH'

entity_names

(optional) List of users or roles that the policy must be enabled for.

DBMS_CLOUD_OCI_DATASAFE_ENABLE_CONDITIONS_TBL Type

Nested table type of dbms_cloud_oci_datasafe_enable_conditions_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_enable_conditions_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_enable_conditions_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_AUDIT_CONDITIONS_T Type

Represents audit policies with corresponding audit provisioning conditions.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_conditions_t FORCE AUTHID CURRENT_USER IS OBJECT (
  audit_policy_name varchar2(32767),
  is_priv_users_managed_by_data_safe number,
  is_data_safe_service_account_audited number,
  enable_conditions dbms_cloud_oci_datasafe_enable_conditions_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_conditions_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_conditions_t (
    audit_policy_name varchar2,
    is_priv_users_managed_by_data_safe number,
    is_data_safe_service_account_audited number,
    enable_conditions dbms_cloud_oci_datasafe_enable_conditions_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

audit_policy_name

(required) Indicates the audit policy name. Refer to the documentation for seeded audit policy names. For custom policies, refer to the user-defined policy name created in the target database.

is_priv_users_managed_by_data_safe

(required) Indicates whether the privileged user list is managed by Data Safe.

is_data_safe_service_account_audited

(required) Indicates whether the Data Safe user activity on the target database will be audited by the policy.

enable_conditions

(optional) Indicates the users/roles in the target database for which the audit policy is enforced, and the success/failure event condition to generate the audit event..

DBMS_CLOUD_OCI_DATASAFE_AUDIT_EVENT_AGGREGATION_DIMENSIONS_T Type

The details of the aggregation dimensions used for summarizing audit events.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_event_aggregation_dimensions_t FORCE AUTHID CURRENT_USER IS OBJECT (
  audit_event_time dbms_cloud_oci_datasafe_timestamp_with_time_zone_tbl,
  db_user_name dbms_cloud_oci_datasafe_varchar2_tbl,
  target_id dbms_cloud_oci_datasafe_varchar2_tbl,
  target_name dbms_cloud_oci_datasafe_varchar2_tbl,
  target_class dbms_cloud_oci_datasafe_varchar2_tbl,
  object_type dbms_cloud_oci_datasafe_varchar2_tbl,
  client_hostname dbms_cloud_oci_datasafe_varchar2_tbl,
  client_program dbms_cloud_oci_datasafe_varchar2_tbl,
  client_id dbms_cloud_oci_datasafe_varchar2_tbl,
  audit_type dbms_cloud_oci_datasafe_varchar2_tbl,
  event_name dbms_cloud_oci_datasafe_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_event_aggregation_dimensions_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_event_aggregation_dimensions_t (
    audit_event_time dbms_cloud_oci_datasafe_timestamp_with_time_zone_tbl,
    db_user_name dbms_cloud_oci_datasafe_varchar2_tbl,
    target_id dbms_cloud_oci_datasafe_varchar2_tbl,
    target_name dbms_cloud_oci_datasafe_varchar2_tbl,
    target_class dbms_cloud_oci_datasafe_varchar2_tbl,
    object_type dbms_cloud_oci_datasafe_varchar2_tbl,
    client_hostname dbms_cloud_oci_datasafe_varchar2_tbl,
    client_program dbms_cloud_oci_datasafe_varchar2_tbl,
    client_id dbms_cloud_oci_datasafe_varchar2_tbl,
    audit_type dbms_cloud_oci_datasafe_varchar2_tbl,
    event_name dbms_cloud_oci_datasafe_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

audit_event_time

(optional) The time the audit event occurred in the target database.

db_user_name

(optional) Name of the database user whose actions were audited.

target_id

(optional) The OCID of the target database that was audited.

target_name

(optional) The name of the target database that was audited.

target_class

(optional) Class of the target that was audited.

Allowed values are: 'DATABASE'

object_type

(optional) Type of object in the source database affected by the action. For example PL/SQL, SYNONYM or PACKAGE BODY.

client_hostname

(optional) Name of the host machine from which the session was spawned.

client_program

(optional) The application from which the audit event was generated. For example SQL Plus or SQL Developer.

client_id

(optional) The client identifier in each Oracle session.

audit_type

(optional) Type of auditing.

Allowed values are: 'STANDARD', 'FINE_GRAINED', 'XS', 'DATABASE_VAULT', 'LABEL_SECURITY', 'RMAN', 'DATAPUMP', 'DIRECT_PATH_API'

event_name

(optional) The name of the event executed by the user on the target database. For example ALTER SEQUENCE, CREATE TRIGGER or CREATE INDEX.

DBMS_CLOUD_OCI_DATASAFE_AUDIT_EVENT_AGGREGATION_ITEMS_T Type

The details of audit events aggregation items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_event_aggregation_items_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  metric_name varchar2(32767),
  time_started timestamp with time zone,
  time_ended timestamp with time zone,
  l_count number,
  dimensions dbms_cloud_oci_datasafe_audit_event_aggregation_dimensions_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_event_aggregation_items_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_event_aggregation_items_t (
    display_name varchar2,
    metric_name varchar2,
    time_started timestamp with time zone,
    time_ended timestamp with time zone,
    l_count number,
    dimensions dbms_cloud_oci_datasafe_audit_event_aggregation_dimensions_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) Display Name of aggregation field.

metric_name

(required) Name of the aggregation.

time_started

(required) The time at which the aggregation started.

time_ended

(required) The time at which the aggregation ended.

l_count

(required) Total count of aggregated value.

dimensions

(optional)

DBMS_CLOUD_OCI_DATASAFE_AUDIT_EVENT_AGGREGATION_ITEMS_TBL Type

Nested table type of dbms_cloud_oci_datasafe_audit_event_aggregation_items_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_event_aggregation_items_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_audit_event_aggregation_items_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_AUDIT_EVENT_ANALYTICS_COLLECTION_T Type

Audit events summarized detail.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_event_analytics_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_audit_event_aggregation_items_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_event_analytics_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_event_analytics_collection_t (
    items dbms_cloud_oci_datasafe_audit_event_aggregation_items_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) The aggregated data point items.

DBMS_CLOUD_OCI_DATASAFE_AUDIT_EVENT_SUMMARY_T Type

The resource represents the audit events collected from the target database by Oracle Data Safe.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_event_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  db_user_name varchar2(32767),
  target_id varchar2(32767),
  target_name varchar2(32767),
  database_type varchar2(32767),
  target_class varchar2(32767),
  audit_event_time timestamp with time zone,
  time_collected timestamp with time zone,
  os_user_name varchar2(32767),
  operation varchar2(32767),
  operation_status varchar2(32767),
  event_name varchar2(32767),
  error_code varchar2(32767),
  error_message varchar2(32767),
  object_type varchar2(32767),
  object_name varchar2(32767),
  object_owner varchar2(32767),
  client_hostname varchar2(32767),
  client_ip varchar2(32767),
  audit_trail_id varchar2(32767),
  is_alerted number,
  action_taken varchar2(32767),
  client_program varchar2(32767),
  command_text varchar2(32767),
  command_param varchar2(32767),
  extended_event_attributes varchar2(32767),
  audit_location varchar2(32767),
  os_terminal varchar2(32767),
  client_id varchar2(32767),
  audit_policies varchar2(32767),
  audit_type varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_event_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_event_summary_t (
    id varchar2,
    compartment_id varchar2,
    db_user_name varchar2,
    target_id varchar2,
    target_name varchar2,
    database_type varchar2,
    target_class varchar2,
    audit_event_time timestamp with time zone,
    time_collected timestamp with time zone,
    os_user_name varchar2,
    operation varchar2,
    operation_status varchar2,
    event_name varchar2,
    error_code varchar2,
    error_message varchar2,
    object_type varchar2,
    object_name varchar2,
    object_owner varchar2,
    client_hostname varchar2,
    client_ip varchar2,
    audit_trail_id varchar2,
    is_alerted number,
    action_taken varchar2,
    client_program varchar2,
    command_text varchar2,
    command_param varchar2,
    extended_event_attributes varchar2,
    audit_location varchar2,
    os_terminal varchar2,
    client_id varchar2,
    audit_policies varchar2,
    audit_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the audit event.

compartment_id

(required) The OCID of the compartment containing the audit event. The compartment is the same as that of audit profile of the target database resource.

db_user_name

(optional) The name of the database user whose actions were audited.

target_id

(required) The OCID of the target database that was audited.

target_name

(required) The name of the target database that was audited.

database_type

(required) The type of the target database that was audited. Allowed values are - DATABASE_CLOUD_SERVICE - Represents Oracle Database Cloud Services. - AUTONOMOUS_DATABASE - Represents Oracle Autonomous Databases. - INSTALLED_DATABASE - Represents databases running on-premises or on compute instances.

Allowed values are: 'DATABASE_CLOUD_SERVICE', 'AUTONOMOUS_DATABASE', 'INSTALLED_DATABASE'

target_class

(optional) The class of the target that was audited.

Allowed values are: 'DATABASE'

audit_event_time

(required) The time that the audit event occurs in the target database.

time_collected

(required) The timestamp when this audit event was collected from the target database by Data Safe.

os_user_name

(optional) The name of the operating system user for the database session.

operation

(optional) The name of the action executed by the user on the target database. For example ALTER, CREATE or DROP.

operation_status

(optional) Indicates whether the operation was a success or a failure.

Allowed values are: 'SUCCESS', 'FAILURE'

event_name

(optional) The name of the detail action executed by the user on the target database. For example ALTER SEQUENCE, CREATE TRIGGER or CREATE INDEX.

error_code

(optional) Oracle Error code generated by the action. Zero indicates the action was successful.

error_message

(optional) The detailed message on why the error occurred.

object_type

(optional) The type of the object in the source database affected by the action. For example PL/SQL, SYNONYM or PACKAGE BODY.

object_name

(optional) The name of the object affected by the action.

object_owner

(optional) The schema name of the object affected by the action.

client_hostname

(optional) The name of the host machine from which the session was spawned.

client_ip

(optional) The IP address of the host machine from which the session was spawned.

audit_trail_id

(optional) The OCID of the audit trail that generated this audit event. To be noted, this field has been deprecated.

is_alerted

(required) Indicates whether an alert was raised for this audit event.

action_taken

(optional) The action taken for this audit event.

client_program

(optional) The application from which the audit event was generated. For example SQL Plus or SQL Developer.

command_text

(optional) The SQL associated with the audit event.

command_param

(optional) List of bind variables associated with the command text.

extended_event_attributes

(optional) List of all other attributes of the audit event seperated by a colon other than the one returned in audit record.

audit_location

(optional) The location of the audit. Currently the value is audit table.

Allowed values are: 'AUDIT_TABLE'

os_terminal

(optional) The operating system terminal of the user session.

client_id

(optional) The client identifier in each Oracle session.

audit_policies

(optional) Comma-seperated list of audit policies that caused the current audit event.

audit_type

(optional) The type of the auditing.

Allowed values are: 'STANDARD', 'FINE_GRAINED', 'XS', 'DATABASE_VAULT', 'LABEL_SECURITY', 'RMAN', 'DATAPUMP', 'DIRECT_PATH_API'

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_AUDIT_EVENT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_audit_event_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_event_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_audit_event_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_AUDIT_EVENT_COLLECTION_T Type

Collection of audit event summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_event_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_audit_event_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_event_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_event_collection_t (
    items dbms_cloud_oci_datasafe_audit_event_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of audit event summary.

DBMS_CLOUD_OCI_DATASAFE_AUDIT_SPECIFICATION_T Type

Represents an audit policy relevant for the target database.The audit policy could be in any one of the following 3 states in the target database 1) Created and enabled 2) Created but not enabled 3) Not created For more details on relevant audit policies for the target database, refer to documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_specification_t FORCE AUTHID CURRENT_USER IS OBJECT (
  audit_policy_name varchar2(32767),
  database_policy_names dbms_cloud_oci_datasafe_varchar2_tbl,
  audit_policy_category varchar2(32767),
  enable_status varchar2(32767),
  partially_enabled_msg varchar2(32767),
  is_enabled_for_all_users number,
  is_view_only number,
  is_seeded_in_target number,
  is_seeded_in_data_safe number,
  is_created number,
  enabled_entities varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_specification_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_specification_t (
    audit_policy_name varchar2,
    database_policy_names dbms_cloud_oci_datasafe_varchar2_tbl,
    audit_policy_category varchar2,
    enable_status varchar2,
    partially_enabled_msg varchar2,
    is_enabled_for_all_users number,
    is_view_only number,
    is_seeded_in_target number,
    is_seeded_in_data_safe number,
    is_created number,
    enabled_entities varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

audit_policy_name

(required) Indicates the audit policy name. Refer to the documentation for seeded audit policy names. For custom policies, refer to the user-defined policy name created in the target database.

database_policy_names

(required) Indicates the names of corresponding database policy ( or policies) in the target database.

audit_policy_category

(required) The category to which the audit policy belongs.

Allowed values are: 'BASIC_ACTIVITY', 'ADMIN_USER_ACTIVITY', 'USER_ACTIVITY', 'ORACLE_PREDEFINED', 'COMPLIANCE_STANDARD', 'CUSTOM', 'SQL_FIREWALL_AUDITING'

enable_status

(required) Indicates whether the policy has been enabled, disabled or partially enabled in the target database. The status is PARTIALLY_ENABLED if any of the constituent database audit policies is not enabled.

Allowed values are: 'ENABLED', 'DISABLED', 'PARTIALLY_ENABLED'

partially_enabled_msg

(optional) Provides information about the policy that has been only partially enabled.

is_enabled_for_all_users

(required) Indicates whether the policy by default is enabled for all users with no flexibility to alter the enablement conditions.

is_view_only

(required) Indicates whether the audit policy is available for provisioning/ de-provisioning from Oracle Data Safe, or is only available for displaying the current provisioning status from the target.

is_seeded_in_target

(required) Indicates whether the audit policy is one of the predefined policies provided by Oracle Database.

is_seeded_in_data_safe

(required) Indicates whether the audit policy is one of the seeded policies provided by Oracle Data Safe.

is_created

(required) Indicates whether the policy is already created on the target database.

enabled_entities

(required) Indicates on whom the audit policy is enabled.

Allowed values are: 'ALL_USERS', 'INCLUDE_USERS', 'INCLUDE_ROLES', 'EXCLUDE_USERS', 'INCLUDE_USERS_ROLES', 'DISABLED'

DBMS_CLOUD_OCI_DATASAFE_AUDIT_SPECIFICATION_TBL Type

Nested table type of dbms_cloud_oci_datasafe_audit_specification_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_specification_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_audit_specification_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_AUDIT_CONDITIONS_TBL Type

Nested table type of dbms_cloud_oci_datasafe_audit_conditions_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_conditions_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_audit_conditions_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_AUDIT_POLICY_T Type

The resource represents all available audit policies relevant for the target database with their corresponding audit conditions. The audit policies could be in any one of the following 3 states in the target database 1) Created and enabled 2) Created but not enabled 3) Not created For more details on available audit policies, refer to documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  target_id varchar2(32767),
  is_data_safe_service_account_excluded number,
  time_last_provisioned timestamp with time zone,
  time_last_retrieved timestamp with time zone,
  audit_specifications dbms_cloud_oci_datasafe_audit_specification_tbl,
  audit_conditions dbms_cloud_oci_datasafe_audit_conditions_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_policy_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    target_id varchar2,
    is_data_safe_service_account_excluded number,
    time_last_provisioned timestamp with time zone,
    time_last_retrieved timestamp with time zone,
    audit_specifications dbms_cloud_oci_datasafe_audit_specification_tbl,
    audit_conditions dbms_cloud_oci_datasafe_audit_conditions_tbl,
    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) The OCID of the audit policy.

compartment_id

(required) The OCID of the compartment containing the audit policy.

display_name

(required) The display name of the audit policy.

description

(optional) Description of the audit policy.

time_created

(required) The time the the audit policy was created, in the format defined by RFC3339.

time_updated

(optional) The last date and time the audit policy was updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the audit policy.

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

lifecycle_details

(optional) Details about the current state of the audit policy in Data Safe.

target_id

(required) The OCID of the target for which the audit policy is created.

is_data_safe_service_account_excluded

(required) Option provided to users at the target to indicate whether the Data Safe service account has to be excluded while provisioning the audit policies.

time_last_provisioned

(optional) Indicates the last provisioning time of audit policies on the target, in the format defined by RFC3339.

time_last_retrieved

(optional) The time when the audit policies was last retrieved from this target, in the format defined by RFC3339.

audit_specifications

(optional) Represents all available audit policy specifications relevant for the target database. For more details on available audit polcies, refer to documentation.

audit_conditions

(optional) Lists the audit policy provisioning conditions for the target database.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_AUDIT_POLICY_DIMENSIONS_T Type

Details of aggregation dimensions used for summarizing audit policies.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_policy_dimensions_t FORCE AUTHID CURRENT_USER IS OBJECT (
  audit_policy_category varchar2(32767),
  audit_policy_name varchar2(32767),
  target_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_policy_dimensions_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_policy_dimensions_t (
    audit_policy_category varchar2,
    audit_policy_name varchar2,
    target_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

audit_policy_category

(optional) The category to which the audit policy belongs.

Allowed values are: 'BASIC_ACTIVITY', 'ADMIN_USER_ACTIVITY', 'USER_ACTIVITY', 'ORACLE_PREDEFINED', 'COMPLIANCE_STANDARD', 'CUSTOM', 'SQL_FIREWALL_AUDITING'

audit_policy_name

(optional) The name of the audit policy. Refer to the documentation for seeded audit policy names. For custom policies, refer to the user-defined policy name created in the target database.

target_id

(optional) The OCID of the target database for which the audit policy will be created.

DBMS_CLOUD_OCI_DATASAFE_AUDIT_POLICY_AGGREGATION_ITEMS_T Type

The details of the audit profile aggregation items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_policy_aggregation_items_t FORCE AUTHID CURRENT_USER IS OBJECT (
  dimensions dbms_cloud_oci_datasafe_audit_policy_dimensions_t,
  l_count number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_policy_aggregation_items_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_policy_aggregation_items_t (
    dimensions dbms_cloud_oci_datasafe_audit_policy_dimensions_t,
    l_count number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

dimensions

(optional)

l_count

(optional) The total count of the aggregated metric.

DBMS_CLOUD_OCI_DATASAFE_AUDIT_POLICY_AGGREGATION_ITEMS_TBL Type

Nested table type of dbms_cloud_oci_datasafe_audit_policy_aggregation_items_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_policy_aggregation_items_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_audit_policy_aggregation_items_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_AUDIT_POLICY_ANALYTIC_COLLECTION_T Type

Details of audit policy aggregation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_policy_analytic_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_audit_policy_aggregation_items_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_policy_analytic_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_policy_analytic_collection_t (
    items dbms_cloud_oci_datasafe_audit_policy_aggregation_items_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of audit policy aggregration data.

DBMS_CLOUD_OCI_DATASAFE_AUDIT_POLICY_SUMMARY_T Type

The resource represents all available audit policies relevant for the target database with their corresponding audit conditions. The audit policies could be in any one of the following 3 states in the target database 1) Created and enabled 2) Created but not enabled 3) Not created For more details on available audit policies, refer to documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_policy_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  target_id varchar2(32767),
  is_data_safe_service_account_excluded number,
  audit_specifications dbms_cloud_oci_datasafe_audit_specification_tbl,
  time_last_provisioned timestamp with time zone,
  time_last_retrieved timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_policy_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_policy_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    target_id varchar2,
    is_data_safe_service_account_excluded number,
    audit_specifications dbms_cloud_oci_datasafe_audit_specification_tbl,
    time_last_provisioned timestamp with time zone,
    time_last_retrieved timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the audit policy.

compartment_id

(required) The OCID of the compartment containing the audit policy.

display_name

(required) The display name of the audit policy.

description

(optional) Description of the audit policy.

time_created

(required) The time the the audit policy was created, in the format defined by RFC3339.

time_updated

(optional) The last date and time the audit policy was updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the audit policy.

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

lifecycle_details

(optional) Details about the current state of the audit policy in Data Safe.

target_id

(required) The OCID of the target for which the audit policy is created.

is_data_safe_service_account_excluded

(required) Option provided to users at the target to indicate whether the Data Safe service account has to be excluded while provisioning the audit policies.

audit_specifications

(optional) Represents all available audit policy specifications relevant for the target database. For more details on available audit polcies, refer to documentation.

time_last_provisioned

(optional) Indicates the last provisioning time of audit policies on the target, in the format defined by RFC3339.

time_last_retrieved

(optional) The time when the audit policies was last retrieved from this target, in the format defined by RFC3339.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_AUDIT_POLICY_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_audit_policy_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_policy_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_audit_policy_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_AUDIT_POLICY_COLLECTION_T Type

Collection of audit policy summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_policy_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_audit_policy_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_policy_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_policy_collection_t (
    items dbms_cloud_oci_datasafe_audit_policy_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of audit policy summary.

DBMS_CLOUD_OCI_DATASAFE_AUDIT_TRAIL_T Type

An audit trail represents the source of audit records that provides documentary evidence of the sequence of activities in the target database. Configuring audit trails in Data Safe, and enabling audit data collection on the audit trails copies the audit records from the target database's audit trail into the Data Safe repository.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_trail_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  audit_profile_id varchar2(32767),
  target_id varchar2(32767),
  display_name varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  status varchar2(32767),
  lifecycle_details varchar2(32767),
  trail_location varchar2(32767),
  description varchar2(32767),
  is_auto_purge_enabled number,
  audit_collection_start_time timestamp with time zone,
  work_request_id varchar2(32767),
  compartment_id varchar2(32767),
  time_last_collected timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_trail_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_trail_t (
    id varchar2,
    audit_profile_id varchar2,
    target_id varchar2,
    display_name varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    status varchar2,
    lifecycle_details varchar2,
    trail_location varchar2,
    description varchar2,
    is_auto_purge_enabled number,
    audit_collection_start_time timestamp with time zone,
    work_request_id varchar2,
    compartment_id varchar2,
    time_last_collected timestamp with time zone,
    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) The OCID of the audit trail.

audit_profile_id

(required) The OCID of the parent audit.

target_id

(required) The OCID of the Data Safe target for which the audit trail is created.

display_name

(required) The display name of the audit trail.

time_created

(required) The date and time the audit trail was created, in the format defined by RFC3339.

time_updated

(required) The date and time the audit trail was updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the audit trail.

Allowed values are: 'INACTIVE', 'UPDATING', 'ACTIVE', 'DELETING', 'FAILED', 'NEEDS_ATTENTION'

status

(required) The current sub-state of the audit trail.

Allowed values are: 'STARTING', 'COLLECTING', 'RECOVERING', 'IDLE', 'STOPPING', 'STOPPED', 'RESUMING', 'RETRYING', 'NOT_STARTED', 'STOPPED_NEEDS_ATTN', 'STOPPED_FAILED'

lifecycle_details

(optional) Details about the current state of the audit trail in Data Safe.

trail_location

(optional) An audit trail location represents the source of audit records that provides documentary evidence of the sequence of activities in the target database.

description

(optional) The description of the audit trail.

is_auto_purge_enabled

(optional) Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.

audit_collection_start_time

(optional) The date from which the audit trail must start collecting data, in the format defined by RFC3339.

work_request_id

(optional) The OCID of the workrequest for audit trail which collects audit records.

compartment_id

(required) The OCID of the compartment that contains the audit trail and is the same as the compartment of the audit profile resource.

time_last_collected

(optional) The date and time until when the audit events were collected from the target database by the Data Safe audit trail collection process, in the format defined by RFC3339.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_AUDIT_TRAIL_TBL Type

Nested table type of dbms_cloud_oci_datasafe_audit_trail_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_trail_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_audit_trail_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_AUDIT_PROFILE_T Type

The resource represents audit profile settings and audit configurations for the database target, and helps evaluate the initial audit data volume for configuring collection in Data Safe. The resource is also responsible for auto-discovery of audit trails in the database target during target's registration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_profile_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  target_id varchar2(32767),
  description varchar2(32767),
  audit_trails dbms_cloud_oci_datasafe_audit_trail_tbl,
  is_paid_usage_enabled number,
  online_months number,
  offline_months number,
  audit_collected_volume number,
  is_override_global_retention_setting number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_profile_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_profile_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    target_id varchar2,
    description varchar2,
    audit_trails dbms_cloud_oci_datasafe_audit_trail_tbl,
    is_paid_usage_enabled number,
    online_months number,
    offline_months number,
    audit_collected_volume number,
    is_override_global_retention_setting 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) The OCID of the audit profile.

compartment_id

(required) The OCID of the compartment that contains the audit.

display_name

(required) The display name of the audit profile.

time_created

(required) The date and time the audit profile was created, in the format defined by RFC3339.

time_updated

(required) The date and time the audit profile was updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the audit profile.

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

lifecycle_details

(optional) Details about the current state of the audit profile in Data Safe.

target_id

(required) The OCID of the Data Safe target for which the audit profile is created.

description

(optional) The description of the audit profile.

audit_trails

(optional) Indicates the list of available audit trails on the target.

is_paid_usage_enabled

(required) Indicates if you want to continue collecting audit records beyond the free limit of one million audit records per month per target database, potentially incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.

online_months

(required) Indicates the number of months the audit records will be stored online in Oracle Data Safe audit repository for immediate reporting and analysis. Minimum: 1; Maximum:12 months

offline_months

(required) Indicates the number of months the audit records will be stored offline in the Data Safe audit archive. Minimum: 0; Maximum: 72 months. If you have a requirement to store the audit data even longer in archive, please contact the Oracle Support.

audit_collected_volume

(optional) Indicates number of audit records collected by Data Safe in the current calendar month. Audit records for the Data Safe service account are excluded and are not counted towards your monthly free limit.

is_override_global_retention_setting

(required) Indicates whether audit retention settings like online and offline months is set at the target level overriding the global audit retention settings.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_AUDIT_PROFILE_DIMENSIONS_T Type

Details of aggregation dimensions used for summarizing audit profiles.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_profile_dimensions_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_paid_usage_enabled number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_profile_dimensions_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_profile_dimensions_t (
    is_paid_usage_enabled number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_paid_usage_enabled

(optional) Indicates if you want to continue collecting audit records beyond the free limit of one million audit records per month per target database, potentially incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.

DBMS_CLOUD_OCI_DATASAFE_AUDIT_PROFILE_AGGREGATION_ITEMS_T Type

Details of audit profile aggregation items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_profile_aggregation_items_t FORCE AUTHID CURRENT_USER IS OBJECT (
  dimensions dbms_cloud_oci_datasafe_audit_profile_dimensions_t,
  l_count number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_profile_aggregation_items_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_profile_aggregation_items_t (
    dimensions dbms_cloud_oci_datasafe_audit_profile_dimensions_t,
    l_count number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

dimensions

(optional)

l_count

(optional) Total count of aggregated metric.

DBMS_CLOUD_OCI_DATASAFE_AUDIT_PROFILE_AGGREGATION_ITEMS_TBL Type

Nested table type of dbms_cloud_oci_datasafe_audit_profile_aggregation_items_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_profile_aggregation_items_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_audit_profile_aggregation_items_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_AUDIT_PROFILE_ANALYTIC_COLLECTION_T Type

Details of audit profile analytic summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_profile_analytic_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_audit_profile_aggregation_items_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_profile_analytic_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_profile_analytic_collection_t (
    items dbms_cloud_oci_datasafe_audit_profile_aggregation_items_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of audit profile aggregration data.

DBMS_CLOUD_OCI_DATASAFE_AUDIT_PROFILE_SUMMARY_T Type

Summary of an audit profile.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_profile_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  target_id varchar2(32767),
  lifecycle_state varchar2(32767),
  description varchar2(32767),
  lifecycle_details varchar2(32767),
  is_paid_usage_enabled number,
  online_months number,
  offline_months number,
  audit_collected_volume number,
  is_override_global_retention_setting number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_profile_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_profile_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    target_id varchar2,
    lifecycle_state varchar2,
    description varchar2,
    lifecycle_details varchar2,
    is_paid_usage_enabled number,
    online_months number,
    offline_months number,
    audit_collected_volume number,
    is_override_global_retention_setting number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the audit profile.

compartment_id

(required) The OCID of the compartment that contains the audit profile.

display_name

(required) The display name of the audit profile.

time_created

(required) The date and time the audit profile was created, in the format defined by RFC3339.

time_updated

(required) The date and time the audit profile was updated, in the format defined by RFC3339.

target_id

(required) The OCID of the Data Safe target for which the audit profile is created.

lifecycle_state

(required) The current state of the audit profile.

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

description

(optional) The description of audit profile.

lifecycle_details

(optional) Details about the current state of the audit profile in Data Safe.

is_paid_usage_enabled

(required) Indicates if you want to continue collecting audit records beyond the free limit of one million audit records per month per target database, potentially incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.

online_months

(required) Indicates the number of months the audit records will be stored online in Oracle Data Safe audit repository for immediate reporting and analysis. Minimum: 1; Maximum:12 months

offline_months

(required) Indicates the number of months the audit records will be stored offline in the Data Safe audit archive. Minimum: 0; Maximum: 72 months. If you have a requirement to store the audit data even longer in archive, please contact the Oracle Support.

audit_collected_volume

(optional) Indicates count of audit records collected by Data Safe from the target which is eligible for the current month's billing cycle. Audit records for actions performed by Data Safe service account on the target is excluded.

is_override_global_retention_setting

(required) Indicates whether audit retention settings like online and offline months is set at the target level overriding the global audit retention settings.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_AUDIT_PROFILE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_audit_profile_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_profile_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_audit_profile_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_AUDIT_PROFILE_COLLECTION_T Type

Collection of audit profile summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_profile_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_audit_profile_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_profile_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_profile_collection_t (
    items dbms_cloud_oci_datasafe_audit_profile_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of audit profile summary.

DBMS_CLOUD_OCI_DATASAFE_AUDIT_TRAIL_DIMENSIONS_T Type

Details of aggregation dimensions used for summarizing audit trails.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_trail_dimensions_t FORCE AUTHID CURRENT_USER IS OBJECT (
  location varchar2(32767),
  lifecycle_state varchar2(32767),
  status varchar2(32767),
  target_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_trail_dimensions_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_trail_dimensions_t (
    location varchar2,
    lifecycle_state varchar2,
    status varchar2,
    target_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

location

(optional) The location represents the source of audit records that provides documentary evidence of the sequence of activities in the target database.

lifecycle_state

(optional) The current state of the audit trail.

Allowed values are: 'INACTIVE', 'UPDATING', 'ACTIVE', 'DELETING', 'FAILED', 'NEEDS_ATTENTION'

status

(optional) The current sub-state of the audit trail..

target_id

(optional) The OCID of the Data Safe target for which the audit trail is created.

DBMS_CLOUD_OCI_DATASAFE_AUDIT_TRAIL_AGGREGATION_ITEMS_T Type

Details of audit trail aggregation items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_trail_aggregation_items_t FORCE AUTHID CURRENT_USER IS OBJECT (
  dimensions dbms_cloud_oci_datasafe_audit_trail_dimensions_t,
  l_count number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_trail_aggregation_items_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_trail_aggregation_items_t (
    dimensions dbms_cloud_oci_datasafe_audit_trail_dimensions_t,
    l_count number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

dimensions

(optional)

l_count

(optional) Total count of aggregated metric.

DBMS_CLOUD_OCI_DATASAFE_AUDIT_TRAIL_AGGREGATION_ITEMS_TBL Type

Nested table type of dbms_cloud_oci_datasafe_audit_trail_aggregation_items_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_trail_aggregation_items_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_audit_trail_aggregation_items_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_AUDIT_TRAIL_ANALYTIC_COLLECTION_T Type

Details of audit trail analytic summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_trail_analytic_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_audit_trail_aggregation_items_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_trail_analytic_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_trail_analytic_collection_t (
    items dbms_cloud_oci_datasafe_audit_trail_aggregation_items_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of audit trail aggregration data.

DBMS_CLOUD_OCI_DATASAFE_AUDIT_TRAIL_SUMMARY_T Type

Summary of an audit trail.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_trail_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  audit_profile_id varchar2(32767),
  display_name varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  status varchar2(32767),
  description varchar2(32767),
  trail_location varchar2(32767),
  compartment_id varchar2(32767),
  target_id varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  is_auto_purge_enabled number,
  audit_collection_start_time timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_trail_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_trail_summary_t (
    id varchar2,
    audit_profile_id varchar2,
    display_name varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    status varchar2,
    description varchar2,
    trail_location varchar2,
    compartment_id varchar2,
    target_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    is_auto_purge_enabled number,
    audit_collection_start_time timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the audit trail.

audit_profile_id

(required) The OCID of the parent audit.

display_name

(required) The display name of the audit trail.

time_created

(required) The date and time the audit trail was created, in the format defined by RFC3339.

time_updated

(required) The date and time the audit trail was updated, in the format defined by RFC3339.

status

(required) The current sub-state of the audit trail.

Allowed values are: 'STARTING', 'COLLECTING', 'RECOVERING', 'IDLE', 'STOPPING', 'STOPPED', 'RESUMING', 'RETRYING', 'NOT_STARTED', 'STOPPED_NEEDS_ATTN', 'STOPPED_FAILED'

description

(optional) The description of audit trail.

trail_location

(optional) An audit trail location represents the source of audit records that provides documentary evidence of the sequence of activities in the target database.

compartment_id

(required) The OCID of the compartment that contains the audit.

target_id

(required) The OCID of the Data Safe target for which the audit trail is created.

lifecycle_state

(required) The current state of the audit trail.

Allowed values are: 'INACTIVE', 'UPDATING', 'ACTIVE', 'DELETING', 'FAILED', 'NEEDS_ATTENTION'

lifecycle_details

(optional) Details about the current state of the audit trail in Data Safe.

is_auto_purge_enabled

(optional) Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.

audit_collection_start_time

(optional) The date from which the audit trail must start collecting data, in the format defined by RFC3339.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_AUDIT_TRAIL_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_audit_trail_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_trail_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_audit_trail_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_AUDIT_TRAIL_COLLECTION_T Type

Collection of audit trail detail objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_audit_trail_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_audit_trail_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_trail_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_audit_trail_collection_t (
    items dbms_cloud_oci_datasafe_audit_trail_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of audit trail summary.

DBMS_CLOUD_OCI_DATASAFE_DATABASE_DETAILS_T Type

Details of the database for the registration in Data Safe.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_database_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  database_type varchar2(32767),
  infrastructure_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_database_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_database_details_t (
    database_type varchar2,
    infrastructure_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

database_type

(required) The database type.

Allowed values are: 'DATABASE_CLOUD_SERVICE', 'AUTONOMOUS_DATABASE', 'INSTALLED_DATABASE'

infrastructure_type

(required) The infrastructure type the database is running on.

Allowed values are: 'ORACLE_CLOUD', 'CLOUD_AT_CUSTOMER', 'ON_PREMISES', 'NON_ORACLE_CLOUD'

DBMS_CLOUD_OCI_DATASAFE_AUTONOMOUS_DATABASE_DETAILS_T Type

The details of the Autonomous Database to be registered as a target database in Data Safe.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_autonomous_database_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_database_details_t (
  autonomous_database_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_autonomous_database_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_autonomous_database_details_t (
    database_type varchar2,
    infrastructure_type varchar2,
    autonomous_database_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_autonomous_database_details_t is a subtype of the dbms_cloud_oci_datasafe_database_details_t type.

Fields

Field Description

autonomous_database_id

(required) The OCID of the Autonomous Database registered as a target database in Data Safe.

DBMS_CLOUD_OCI_DATASAFE_AVAILABLE_AUDIT_VOLUME_SUMMARY_T Type

Represents the audit data volume collected by Data Safe from the target database for the specified audit profile.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_available_audit_volume_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  audit_profile_id varchar2(32767),
  trail_location varchar2(32767),
  month_in_consideration timestamp with time zone,
  volume number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_available_audit_volume_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_available_audit_volume_summary_t (
    audit_profile_id varchar2,
    trail_location varchar2,
    month_in_consideration timestamp with time zone,
    volume number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

audit_profile_id

(required) The OCID of the audit profile resource.

trail_location

(required) Audit trail location on the target database from where the audit data is being collected by Data Safe.

month_in_consideration

(required) Represents the month under consideration for which aggregated audit data volume available at the target is computed. This field will be the UTC start of the day of the first day of the month for which the aggregate count corresponds to, in the format defined by RFC3339.. For instance, the value of 01-01-2021T00:00:00Z represents Jan 2021.

volume

(required) Represents the aggregated audit data volume available in the audit trails on the target database which is yet to be collected by Data Safe for the specified month.

DBMS_CLOUD_OCI_DATASAFE_AVAILABLE_AUDIT_VOLUME_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_available_audit_volume_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_available_audit_volume_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_available_audit_volume_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_AVAILABLE_AUDIT_VOLUME_COLLECTION_T Type

Collection of available audit volume summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_available_audit_volume_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_available_audit_volume_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_available_audit_volume_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_available_audit_volume_collection_t (
    items dbms_cloud_oci_datasafe_available_audit_volume_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of available audit volume summary.

DBMS_CLOUD_OCI_DATASAFE_CALCULATE_AUDIT_VOLUME_AVAILABLE_DETAILS_T Type

The details for calculating audit data volume on target.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_calculate_audit_volume_available_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  audit_collection_start_time timestamp with time zone,
  trail_locations dbms_cloud_oci_datasafe_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_calculate_audit_volume_available_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_calculate_audit_volume_available_details_t (
    audit_collection_start_time timestamp with time zone,
    trail_locations dbms_cloud_oci_datasafe_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

audit_collection_start_time

(optional) The date from which the audit trail must start collecting data in UTC, in the format defined by RFC3339. If not specified, this will default to the date based on the retention period.

trail_locations

(required) The trail locations for which the audit data volume has to be calculated.

DBMS_CLOUD_OCI_DATASAFE_CALCULATE_AUDIT_VOLUME_COLLECTED_DETAILS_T Type

The details for calculating audit data volume collected by data safe.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_calculate_audit_volume_collected_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  time_from_month timestamp with time zone,
  time_to_month timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_calculate_audit_volume_collected_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_calculate_audit_volume_collected_details_t (
    time_from_month timestamp with time zone,
    time_to_month timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

time_from_month

(required) The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339.

time_to_month

(optional) The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339. If not specified, this will default to the current date.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_ALERT_COMPARTMENT_DETAILS_T Type

The details used to change the compartment of an alert.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_alert_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_alert_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_alert_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the new compartment to move the alert to.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_ALERT_POLICY_COMPARTMENT_DETAILS_T Type

The details used to change the compartment of an alert policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_alert_policy_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_alert_policy_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_alert_policy_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment where the alert policy has to be moved.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_AUDIT_ARCHIVE_RETRIEVAL_COMPARTMENT_DETAILS_T Type

The description of the achieve retrieval change compartment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_audit_archive_retrieval_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_audit_archive_retrieval_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_audit_archive_retrieval_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the new compartment were achieve retrieval resource would move.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_AUDIT_POLICY_COMPARTMENT_DETAILS_T Type

Details for which compartment to move the resource to.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_audit_policy_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_audit_policy_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_audit_policy_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment where you want to move the audit policy.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_AUDIT_PROFILE_COMPARTMENT_DETAILS_T Type

Moves the specified audit profile and its assoicated resources into a different compartment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_audit_profile_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_audit_profile_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_audit_profile_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment where you want to move the audit profile.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_DATA_SAFE_PRIVATE_ENDPOINT_COMPARTMENT_DETAILS_T Type

The details used to change the compartment of a Data Safe private endpoint.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_data_safe_private_endpoint_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_data_safe_private_endpoint_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_data_safe_private_endpoint_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(optional) The OCID of the new compartment.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_DATABASE_SECURITY_CONFIG_COMPARTMENT_DETAILS_T Type

The details for which compartment to move the resource to.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_database_security_config_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_database_security_config_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_database_security_config_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment where you want to move the database security config.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_DISCOVERY_JOB_COMPARTMENT_DETAILS_T Type

Details to change the compartment of a discovery job resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_discovery_job_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_discovery_job_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_discovery_job_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment where the discovery job should be moved.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_LIBRARY_MASKING_FORMAT_COMPARTMENT_DETAILS_T Type

Details to change the compartment of a library masking format.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_library_masking_format_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_library_masking_format_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_library_masking_format_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment where the library masking format should be moved.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_MASKING_POLICY_COMPARTMENT_DETAILS_T Type

Details to change the compartment of a masking policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_masking_policy_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_masking_policy_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_masking_policy_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment where the masking policy should be moved.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_ON_PREM_CONNECTOR_COMPARTMENT_DETAILS_T Type

The details used to change the compartment of a on-premises connector.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_on_prem_connector_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_on_prem_connector_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_on_prem_connector_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the new compartment where you want to move the on-premises connector.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_REPORT_COMPARTMENT_DETAILS_T Type

The details of the compartment that the audit report is moving to.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_report_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_report_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_report_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_DATASAFE_CHANGE_REPORT_DEFINITION_COMPARTMENT_DETAILS_T Type

Details for which compartment to move the resource to.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_report_definition_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_report_definition_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_report_definition_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_DATASAFE_CHANGE_RETENTION_DETAILS_T Type

Details for the audit retention months to be modified.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_retention_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  online_months number,
  offline_months number,
  is_override_global_retention_setting number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_retention_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_retention_details_t (
    online_months number,
    offline_months number,
    is_override_global_retention_setting number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

online_months

(optional) Indicates the number of months the audit records will be stored online in Oracle Data Safe audit repository for immediate reporting and analysis. Minimum: 1; Maximum:12 months

offline_months

(optional) Indicates the number of months the audit records will be stored offline in the Data Safe audit archive. Minimum: 0; Maximum: 72 months. If you have a requirement to store the audit data even longer in archive, please contact the Oracle Support.

is_override_global_retention_setting

(optional) Indicates whether audit retention settings like online and offline months is set at the target level overriding the global audit retention settings.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_SDM_MASKING_POLICY_DIFFERENCE_COMPARTMENT_DETAILS_T Type

Details to change the compartment of a SDM masking policy difference.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_sdm_masking_policy_difference_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_sdm_masking_policy_difference_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_sdm_masking_policy_difference_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment where the SDM masking policy difference should be moved.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_SECURITY_ASSESSMENT_COMPARTMENT_DETAILS_T Type

The details that can be changed (or retained) when a security assessment is moved to another compartment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_security_assessment_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_security_assessment_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_security_assessment_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment where you want to move the security assessment.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_SECURITY_POLICY_COMPARTMENT_DETAILS_T Type

Details for which compartment to move the resource to.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_security_policy_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_security_policy_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_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 where you want to move the security policy.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_SECURITY_POLICY_DEPLOYMENT_COMPARTMENT_DETAILS_T Type

Details for which compartment to move the resource to.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_security_policy_deployment_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_security_policy_deployment_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_security_policy_deployment_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment where you want to move the security policy deployment.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_SENSITIVE_DATA_MODEL_COMPARTMENT_DETAILS_T Type

Details to change the compartment of a sensitive data model.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_sensitive_data_model_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_sensitive_data_model_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_sensitive_data_model_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment where the sensitive data model should be moved.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_SENSITIVE_TYPE_COMPARTMENT_DETAILS_T Type

Details to change the compartment of a sensitive type.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_sensitive_type_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_sensitive_type_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_sensitive_type_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment where the sensitive type should be moved.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_SQL_COLLECTION_COMPARTMENT_DETAILS_T Type

Details for which compartment to move the resource to.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_sql_collection_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_sql_collection_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_sql_collection_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment where you want to move the SQL collection.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_SQL_FIREWALL_POLICY_COMPARTMENT_DETAILS_T Type

Details for which compartment to move the resource to.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_sql_firewall_policy_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_sql_firewall_policy_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_sql_firewall_policy_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment where you want to move the SQL Firewall policy.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_TARGET_ALERT_POLICY_ASSOCIATION_COMPARTMENT_DETAILS_T Type

The details used to change the compartment of a target-alert policy association.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_target_alert_policy_association_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_target_alert_policy_association_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_target_alert_policy_association_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment to move the target-alert policy association to.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_TARGET_DATABASE_COMPARTMENT_DETAILS_T Type

The details used to change the compartment of a Data Safe target database.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_target_database_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_target_database_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_target_database_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment you want to move the Data Safe target database to.

DBMS_CLOUD_OCI_DATASAFE_CHANGE_USER_ASSESSMENT_COMPARTMENT_DETAILS_T Type

The details used to change the compartment of the user assessment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_change_user_assessment_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_user_assessment_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_change_user_assessment_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment where you want to move the user assessment.

DBMS_CLOUD_OCI_DATASAFE_COLLECTED_AUDIT_VOLUME_SUMMARY_T Type

The volume data point for audit data collected by datasafe.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_collected_audit_volume_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  audit_profile_id varchar2(32767),
  month_in_consideration timestamp with time zone,
  online_volume number,
  archived_volume number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_collected_audit_volume_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_collected_audit_volume_summary_t (
    audit_profile_id varchar2,
    month_in_consideration timestamp with time zone,
    online_volume number,
    archived_volume number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

audit_profile_id

(required) The OCID of the audit profile resource.

month_in_consideration

(required) Represents the month under consideration in which the aggregated audit data volume collected by Data Safe is displayed. This field will be the UTC start of the day of the first day of the month for which the aggregate count corresponds to, in the format defined by RFC3339.. For instance, the value of 01-01-2021T00:00:00Z represents Jan 2021.

online_volume

(required) The audit data volume collected by Data Safe and is available online in repository.

archived_volume

(required) The audit data volume collected by Data Safe and is available in archive storage.

DBMS_CLOUD_OCI_DATASAFE_COLLECTED_AUDIT_VOLUME_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_collected_audit_volume_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_collected_audit_volume_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_collected_audit_volume_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_COLLECTED_AUDIT_VOLUME_COLLECTION_T Type

Collection of collected audit volume summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_collected_audit_volume_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_collected_audit_volume_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_collected_audit_volume_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_collected_audit_volume_collection_t (
    items dbms_cloud_oci_datasafe_collected_audit_volume_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of collected audit volume summary.

DBMS_CLOUD_OCI_DATASAFE_COLUMN_SOURCE_DETAILS_T Type

The source of masking columns.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_column_source_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  column_source varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_column_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_column_source_details_t (
    column_source varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

column_source

(required) The source of masking columns.

Allowed values are: 'TARGET', 'SENSITIVE_DATA_MODEL'

DBMS_CLOUD_OCI_DATASAFE_COLUMN_SOURCE_FROM_SDM_DETAILS_T Type

Details of the sensitive data model that's used as the source of masking columns..

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_column_source_from_sdm_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_column_source_details_t (
  sensitive_data_model_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_column_source_from_sdm_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_column_source_from_sdm_details_t (
    column_source varchar2,
    sensitive_data_model_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_column_source_from_sdm_details_t is a subtype of the dbms_cloud_oci_datasafe_column_source_details_t type.

Fields

Field Description

sensitive_data_model_id

(required) The OCID of the sensitive data model that's used as the source of masking columns.

DBMS_CLOUD_OCI_DATASAFE_COLUMN_SOURCE_FROM_TARGET_DETAILS_T Type

Details of the target database that's used as the source of masking columns.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_column_source_from_target_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_column_source_details_t (
  target_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_column_source_from_target_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_column_source_from_target_details_t (
    column_source varchar2,
    target_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_column_source_from_target_details_t is a subtype of the dbms_cloud_oci_datasafe_column_source_details_t type.

Fields

Field Description

target_id

(required) The OCID of the target database that's used as the source of masking columns.

DBMS_CLOUD_OCI_DATASAFE_COLUMN_SUMMARY_T Type

The details of a column in a table fetched from the database.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_column_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  column_name varchar2(32767),
  data_type varchar2(32767),
  length number,
  precision number,
  scale number,
  character_length number,
  table_name varchar2(32767),
  schema_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_column_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_column_summary_t (
    column_name varchar2,
    data_type varchar2,
    length number,
    precision number,
    scale number,
    character_length number,
    table_name varchar2,
    schema_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

column_name

(required) Name of the column.

data_type

(required) Data type of the column.

length

(required) Length of the data represented by the column.

precision

(optional) Precision of the column.

scale

(optional) Scale of the column.

character_length

(optional) Character length.

table_name

(required) Name of the table.

schema_name

(required) Name of the schema.

DBMS_CLOUD_OCI_DATASAFE_COMPARE_SECURITY_ASSESSMENT_DETAILS_T Type

Details specifying the security assessment used for comparison.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_compare_security_assessment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  comparison_security_assessment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_compare_security_assessment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_compare_security_assessment_details_t (
    comparison_security_assessment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

comparison_security_assessment_id

(required) The OCID of the security assessment. In this case a security assessment can be another security assessment, a latest assessment or a baseline.

DBMS_CLOUD_OCI_DATASAFE_COMPARE_USER_ASSESSMENT_DETAILS_T Type

The details of the user assessment comparison.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_compare_user_assessment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  comparison_user_assessment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_compare_user_assessment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_compare_user_assessment_details_t (
    comparison_user_assessment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

comparison_user_assessment_id

(required) The OCID of the user assessment to be compared. You can compare with another user assessment, a latest assessment, or a baseline.

DBMS_CLOUD_OCI_DATASAFE_FORMAT_SUMMARY_T Type

Summary of a masking format.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_format_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  name varchar2(32767),
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_format_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_format_summary_t (
    id varchar2,
    name varchar2,
    description varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(optional) The OCID of the masking format.

name

(required) The name of the masking format.

description

(optional) The description of the masking format.

DBMS_CLOUD_OCI_DATASAFE_FORMAT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_format_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_format_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_format_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_FORMATS_FOR_DATA_TYPE_T Type

A list of basic masking formats compatible with a supported data type.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_formats_for_data_type_t FORCE AUTHID CURRENT_USER IS OBJECT (
  data_type varchar2(32767),
  masking_formats dbms_cloud_oci_datasafe_format_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_formats_for_data_type_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_formats_for_data_type_t (
    data_type varchar2,
    masking_formats dbms_cloud_oci_datasafe_format_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

data_type

(required) The data type category, which can be one of the following - Character - Includes CHAR, NCHAR, VARCHAR2, and NVARCHAR2 Numeric - Includes NUMBER, FLOAT, RAW, BINARY_FLOAT, and BINARY_DOUBLE Date - Includes DATE and TIMESTAMP LOB - Includes BLOB, CLOB, and NCLOB All - Includes all the supported data types

masking_formats

(optional) An array of the basic masking formats compatible with the data type category.

DBMS_CLOUD_OCI_DATASAFE_FORMATS_FOR_DATA_TYPE_TBL Type

Nested table type of dbms_cloud_oci_datasafe_formats_for_data_type_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_formats_for_data_type_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_formats_for_data_type_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_COMPATIBLE_FORMATS_FOR_DATA_TYPES_T Type

A list of basic masking formats compatible with and grouped by the supported data types. The data types are grouped into the following categories - Character - Includes CHAR, NCHAR, VARCHAR2, and NVARCHAR2 Numeric - Includes NUMBER, FLOAT, RAW, BINARY_FLOAT, and BINARY_DOUBLE Date - Includes DATE and TIMESTAMP LOB - Includes BLOB, CLOB, and NCLOB All - Includes all the supported data types

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_compatible_formats_for_data_types_t FORCE AUTHID CURRENT_USER IS OBJECT (
  formats_for_data_type dbms_cloud_oci_datasafe_formats_for_data_type_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_compatible_formats_for_data_types_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_compatible_formats_for_data_types_t (
    formats_for_data_type dbms_cloud_oci_datasafe_formats_for_data_type_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

formats_for_data_type

(required) An array of lists of basic masking formats compatible with the supported data types.

DBMS_CLOUD_OCI_DATASAFE_FORMATS_FOR_SENSITIVE_TYPE_T Type

A list of library masking formats compatible with an existing sensitive type.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_formats_for_sensitive_type_t FORCE AUTHID CURRENT_USER IS OBJECT (
  sensitive_type_id varchar2(32767),
  masking_formats dbms_cloud_oci_datasafe_format_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_formats_for_sensitive_type_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_formats_for_sensitive_type_t (
    sensitive_type_id varchar2,
    masking_formats dbms_cloud_oci_datasafe_format_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

sensitive_type_id

(required) The OCID of the sensitive type.

masking_formats

(optional) An array of the library masking formats compatible with the sensitive type.

DBMS_CLOUD_OCI_DATASAFE_FORMATS_FOR_SENSITIVE_TYPE_TBL Type

Nested table type of dbms_cloud_oci_datasafe_formats_for_sensitive_type_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_formats_for_sensitive_type_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_formats_for_sensitive_type_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_COMPATIBLE_FORMATS_FOR_SENSITIVE_TYPES_T Type

The list of compatible masking formats grouped by generic sensitive types.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_compatible_formats_for_sensitive_types_t FORCE AUTHID CURRENT_USER IS OBJECT (
  formats_for_sensitive_type dbms_cloud_oci_datasafe_formats_for_sensitive_type_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_compatible_formats_for_sensitive_types_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_compatible_formats_for_sensitive_types_t (
    formats_for_sensitive_type dbms_cloud_oci_datasafe_formats_for_sensitive_type_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

formats_for_sensitive_type

(required) An array of library masking formats compatible with the existing sensitive types.

DBMS_CLOUD_OCI_DATASAFE_CONNECTION_OPTION_T Type

Types of connection supported by Data Safe.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_connection_option_t FORCE AUTHID CURRENT_USER IS OBJECT (
  connection_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_connection_option_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_connection_option_t (
    connection_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

connection_type

(required) The connection type used to connect to the database. Allowed values: - PRIVATE_ENDPOINT - Represents connection through private endpoint in Data Safe. - ONPREM_CONNECTOR - Represents connection through on-premises connector in Data Safe.

Allowed values are: 'PRIVATE_ENDPOINT', 'ONPREM_CONNECTOR'

DBMS_CLOUD_OCI_DATASAFE_CREATE_ALERT_POLICY_DETAILS_T Type

The details used to create a new alert policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_alert_policy_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  alert_policy_type varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  severity varchar2(32767),
  compartment_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_alert_policy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_alert_policy_details_t (
    alert_policy_type varchar2,
    display_name varchar2,
    description varchar2,
    severity varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

alert_policy_type

(required) Indicates the Data Safe feature the alert policy belongs to

Allowed values are: 'AUDITING', 'SECURITY_ASSESSMENT', 'USER_ASSESSMENT'

display_name

(optional) The display name of the alert policy. The name does not have to be unique, and it's changeable.

description

(optional) The description of the alert policy.

severity

(required) Severity level of the alert raised by this policy.

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

compartment_id

(required) The OCID of the compartment where you want to create the alert policy.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_CREATE_ALERT_POLICY_RULE_DETAILS_T Type

The details used to create a new alert policy rule.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_alert_policy_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  expression varchar2(32767),
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_alert_policy_rule_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_alert_policy_rule_details_t (
    expression varchar2,
    description varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

expression

(required) The conditional expression of the alert policy rule which evaluates to boolean value.

description

(optional) Describes the alert policy rule.

DBMS_CLOUD_OCI_DATASAFE_CREATE_AUDIT_ARCHIVE_RETRIEVAL_DETAILS_T Type

Request details for creating a new archive retrieval.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_audit_archive_retrieval_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  target_id varchar2(32767),
  start_date timestamp with time zone,
  end_date timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_audit_archive_retrieval_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_audit_archive_retrieval_details_t (
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    target_id varchar2,
    start_date timestamp with time zone,
    end_date timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of the archive retrieval. The name does not have to be unique, and is changeable.

description

(optional) Description of the archive retrieval.

compartment_id

(required) The OCID of the compartment that contains the archival retrieval.

target_id

(required) The OCID of the target associated with the archive retrieval.

start_date

(required) Start month of the archive retrieval, in the format defined by RFC3339.

end_date

(required) End month of the archive retrieval, in the format defined by RFC3339.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_CREATE_AUDIT_POLICY_DETAILS_T Type

Details for the new audit policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_audit_policy_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  target_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_audit_policy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_audit_policy_details_t (
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    target_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of the audit policy. The name does not have to be unique, and it is changeable.

description

(optional) The description of the audit policy.

compartment_id

(required) The OCID of the compartment where you want to create the audit policy.

target_id

(required) The OCID of the target for which the audit policy has to be created.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_CREATE_AUDIT_PROFILE_DETAILS_T Type

The details used to create a new audit profile.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_audit_profile_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  target_id varchar2(32767),
  description varchar2(32767),
  is_paid_usage_enabled number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_audit_profile_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_audit_profile_details_t (
    display_name varchar2,
    compartment_id varchar2,
    target_id varchar2,
    description varchar2,
    is_paid_usage_enabled number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of the audit profile. The name does not have to be unique, and it's changeable.

compartment_id

(required) The OCID of the compartment where you want to create the audit profile.

target_id

(required) The OCID of the Data Safe target for which the audit profile is created.

description

(optional) The description of the audit profile.

is_paid_usage_enabled

(optional) Indicates if you want to continue collecting audit records beyond the free limit of one million audit records per month per target database, potentially incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_CREATE_COLUMN_SOURCE_DETAILS_T Type

Details to associate a column source with a masking policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_column_source_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  column_source varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_column_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_column_source_details_t (
    column_source varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

column_source

(required) The source of masking columns.

Allowed values are: 'TARGET', 'SENSITIVE_DATA_MODEL'

DBMS_CLOUD_OCI_DATASAFE_CREATE_COLUMN_SOURCE_FROM_SDM_DETAILS_T Type

Details of the sensitive data model to be associated as the column source with a masking policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_column_source_from_sdm_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_create_column_source_details_t (
  sensitive_data_model_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_column_source_from_sdm_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_column_source_from_sdm_details_t (
    column_source varchar2,
    sensitive_data_model_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_create_column_source_from_sdm_details_t is a subtype of the dbms_cloud_oci_datasafe_create_column_source_details_t type.

Fields

Field Description

sensitive_data_model_id

(required) The OCID of the sensitive data model to be associated as the column source with the masking policy.

DBMS_CLOUD_OCI_DATASAFE_CREATE_COLUMN_SOURCE_FROM_TARGET_DETAILS_T Type

Details of the target database to be associated as the column source with a masking policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_column_source_from_target_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_create_column_source_details_t (
  target_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_column_source_from_target_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_column_source_from_target_details_t (
    column_source varchar2,
    target_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_create_column_source_from_target_details_t is a subtype of the dbms_cloud_oci_datasafe_create_column_source_details_t type.

Fields

Field Description

target_id

(required) The OCID of the target database to be associated as the column source with the masking policy.

DBMS_CLOUD_OCI_DATASAFE_CREATE_DATA_SAFE_PRIVATE_ENDPOINT_DETAILS_T Type

The details used to create the new Data Safe private endpoint.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_data_safe_private_endpoint_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  vcn_id varchar2(32767),
  subnet_id varchar2(32767),
  private_endpoint_ip varchar2(32767),
  description varchar2(32767),
  nsg_ids dbms_cloud_oci_datasafe_varchar2_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_data_safe_private_endpoint_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_data_safe_private_endpoint_details_t (
    display_name varchar2,
    compartment_id varchar2,
    vcn_id varchar2,
    subnet_id varchar2,
    private_endpoint_ip varchar2,
    description varchar2,
    nsg_ids dbms_cloud_oci_datasafe_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 display name for the private endpoint. The name does not have to be unique, and it's changeable.

compartment_id

(required) The OCID of the compartment.

vcn_id

(required) The OCID of the VCN.

subnet_id

(required) The OCID of the subnet.

private_endpoint_ip

(optional) The private IP address of the private endpoint.

description

(optional) The description of the private endpoint.

nsg_ids

(optional) The OCIDs of the network security groups that the private endpoint belongs to.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_CREATE_DISCOVERY_JOB_DETAILS_T Type

Details to create a new data discovery job.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_discovery_job_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  discovery_type varchar2(32767),
  sensitive_data_model_id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  schemas_for_discovery dbms_cloud_oci_datasafe_varchar2_tbl,
  sensitive_type_ids_for_discovery dbms_cloud_oci_datasafe_varchar2_tbl,
  is_sample_data_collection_enabled number,
  is_app_defined_relation_discovery_enabled number,
  is_include_all_schemas number,
  is_include_all_sensitive_types number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_discovery_job_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_discovery_job_details_t (
    discovery_type varchar2,
    sensitive_data_model_id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    schemas_for_discovery dbms_cloud_oci_datasafe_varchar2_tbl,
    sensitive_type_ids_for_discovery dbms_cloud_oci_datasafe_varchar2_tbl,
    is_sample_data_collection_enabled number,
    is_app_defined_relation_discovery_enabled number,
    is_include_all_schemas number,
    is_include_all_sensitive_types number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

discovery_type

(optional) The type of the discovery job. It defines the job's scope. NEW identifies new sensitive columns in the target database that are not in the sensitive data model. DELETED identifies columns that are present in the sensitive data model but have been deleted from the target database. MODIFIED identifies columns that are present in the target database as well as the sensitive data model but some of their attributes have been modified. ALL covers all the above three scenarios and reports new, deleted and modified columns.

sensitive_data_model_id

(required) The OCID of the sensitive data model.

compartment_id

(required) The OCID of the compartment where the discovery job resource should be created.

display_name

(optional) A user-friendly name for the discovery job. Does not have to be unique, and it is changeable. Avoid entering confidential information.

schemas_for_discovery

(optional) The schemas to be scanned by the discovery job. If not provided, the schemasForDiscovery attribute of the sensitive data model is used to get the list of schemas.

sensitive_type_ids_for_discovery

(optional) The OCIDs of the sensitive types to be used by the discovery job. If not provided, the sensitiveTypeIdsForDiscovery attribute of the sensitive data model is used to get the list of sensitive types.

is_sample_data_collection_enabled

(optional) Indicates if the discovery job should collect and store sample data values for the discovered columns. Sample data helps review the discovered columns and ensure that they actually contain sensitive data. As it collects original data from the target database, it's disabled by default and should be used only if it's acceptable to store sample data in Data Safe's repository in Oracle Cloud. Note that sample data values are not collected for columns with the following data types: LONG, LOB, RAW, XMLTYPE and BFILE.

is_app_defined_relation_discovery_enabled

(optional) Indicates if the discovery job should identify potential application-level (non-dictionary) referential relationships between columns. Note that data discovery automatically identifies and adds database-level (dictionary-defined) relationships. This option helps identify application-level relationships that are not defined in the database dictionary, which in turn, helps identify additional sensitive columns and preserve referential integrity during data masking. It's disabled by default and should be used only if there is a need to identify application-level relationships.

is_include_all_schemas

(optional) Indicates if all the schemas should be scanned by the discovery job. If it is set to true, sensitive data is discovered in all schemas (except for schemas maintained by Oracle). If both attributes are not provided, the configuration from the sensitive data model is used.

is_include_all_sensitive_types

(optional) Indicates if all the existing sensitive types should be used by the discovery job. If it's set to true, the sensitiveTypeIdsForDiscovery attribute is ignored and all sensitive types are used for data discovery. If both attributes are not provided, the configuration from the sensitive data model is used.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_FORMAT_ENTRY_T Type

A format entry is part of a masking format and defines the logic to mask data. A format entry can be a basic masking format such as Random Number, or it can be a library masking format. If a masking format has more than one format entries, the combined output of all the format entries is used for masking.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_format_entry_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_format_entry_t (
    l_type varchar2,
    description varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

l_type

(required) The type of the format entry.

Allowed values are: 'DELETE_ROWS', 'DETERMINISTIC_SUBSTITUTION', 'DETERMINISTIC_ENCRYPTION', 'DETERMINISTIC_ENCRYPTION_DATE', 'FIXED_NUMBER', 'FIXED_STRING', 'LIBRARY_MASKING_FORMAT', 'NULL_VALUE', 'PATTERN', 'POST_PROCESSING_FUNCTION', 'PRESERVE_ORIGINAL_DATA', 'RANDOM_DATE', 'RANDOM_DECIMAL_NUMBER', 'RANDOM_DIGITS', 'RANDOM_LIST', 'RANDOM_NUMBER', 'RANDOM_STRING', 'RANDOM_SUBSTITUTION', 'REGULAR_EXPRESSION', 'SHUFFLE', 'SQL_EXPRESSION', 'SUBSTRING', 'TRUNCATE_TABLE', 'USER_DEFINED_FUNCTION'

description

(optional) The description of the format entry.

DBMS_CLOUD_OCI_DATASAFE_FORMAT_ENTRY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_format_entry_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_format_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_format_entry_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_CREATE_LIBRARY_MASKING_FORMAT_DETAILS_T Type

Details to create a library masking format, which can have one or more format entries. A format entry can be a basic masking format such as Random Number, or it can be a library masking format. The combined output of all the format entries is used for masking. It provides the flexibility to define a masking format that can generate different parts of a data value separately and then combine them to get the final data value for masking. Note that you cannot define masking condition in a library masking format.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_library_masking_format_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  description varchar2(32767),
  sensitive_type_ids dbms_cloud_oci_datasafe_varchar2_tbl,
  format_entries dbms_cloud_oci_datasafe_format_entry_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_library_masking_format_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_library_masking_format_details_t (
    display_name varchar2,
    compartment_id varchar2,
    description varchar2,
    sensitive_type_ids dbms_cloud_oci_datasafe_varchar2_tbl,
    format_entries dbms_cloud_oci_datasafe_format_entry_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of the library masking format. The name does not have to be unique, and it's changeable.

compartment_id

(required) The OCID of the compartment where the library masking format should be created.

description

(optional) The description of the library masking format.

sensitive_type_ids

(optional) An array of OCIDs of the sensitive types compatible with the library masking format. It helps track the sensitive types for which the library masking format is being created.

format_entries

(required) An array of format entries. The combined output of all the format entries is used for masking.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_MASKING_FORMAT_T Type

A masking format defines the logic to mask data in a database column. The condition attribute defines the condition that must be true for applying the masking format. It enables you to do <a href=\"https://docs.oracle.com/en/cloud/paas/data-safe/udscs/conditional-masking.html\">conditional masking</a> so that you can mask the column data values differently using different masking formats and the associated conditions. A masking format can have one or more format entries. A format entry can be a basic masking format such as Random Number, or it can be a library masking format.The combined output of all the format entries is used for masking. It provides the flexibility to define a masking format that can generate different parts of a data value separately and then combine them to get the final data value for masking.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_format_t FORCE AUTHID CURRENT_USER IS OBJECT (
  condition varchar2(32767),
  description varchar2(32767),
  format_entries dbms_cloud_oci_datasafe_format_entry_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_format_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_format_t (
    condition varchar2,
    description varchar2,
    format_entries dbms_cloud_oci_datasafe_format_entry_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

condition

(optional) A condition that must be true for applying the masking format. It can be any valid SQL construct that can be used in a SQL predicate. It enables you to do <a href=\"https://docs.oracle.com/en/cloud/paas/data-safe/udscs/conditional-masking.html\">conditional masking</a> so that you can mask the column data values differently using different masking formats and the associated conditions.

description

(optional) The description of the masking format.

format_entries

(required) An array of format entries. The combined output of all the format entries is used for masking the column data values.

DBMS_CLOUD_OCI_DATASAFE_MASKING_FORMAT_TBL Type

Nested table type of dbms_cloud_oci_datasafe_masking_format_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_format_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_masking_format_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_CREATE_MASKING_COLUMN_DETAILS_T Type

Details to create a new masking column. You can use this to add a parent column only. It automatically adds the child columns from the associated sensitive data model or target database. If you provide the sensitiveTypeId attribute but not the maskingFormats attribute, it automatically assigns the default masking format associated with the specified sensitive type. Alternatively, if you provide the maskingFormats attribute, the specified masking formats are assigned to the column. Using the maskingFormats attribute, you can assign one or more masking formats to a column. You can specify a condition as part of each masking format. It enables you to do <a href=\"https://docs.oracle.com/en/cloud/paas/data-safe/udscs/conditional-masking.html\">conditional masking</a> so that you can mask the column data values differently using different masking formats and the associated conditions. A masking format can have one or more format entries. The combined output of all the format entries is used for masking. It provides the flexibility to define a masking format that can generate different parts of a data value separately and then combine them to get the final data value for masking. You can use the maskingColumnGroup attribute to group the columns that you would like to mask together. It enables you to do <a href=\"https://docs.oracle.com/en/cloud/paas/data-safe/udscs/group-masking1.html#GUID-755056B9-9540-48C0-9491-262A44A85037\">group or compound masking</a> that ensures that the masked data across the columns in a group continue to retain the same logical relationship.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_masking_column_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  schema_name varchar2(32767),
  object_name varchar2(32767),
  object_type varchar2(32767),
  column_name varchar2(32767),
  masking_column_group varchar2(32767),
  sensitive_type_id varchar2(32767),
  is_masking_enabled number,
  masking_formats dbms_cloud_oci_datasafe_masking_format_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_masking_column_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_masking_column_details_t (
    schema_name varchar2,
    object_name varchar2,
    object_type varchar2,
    column_name varchar2,
    masking_column_group varchar2,
    sensitive_type_id varchar2,
    is_masking_enabled number,
    masking_formats dbms_cloud_oci_datasafe_masking_format_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

schema_name

(required) The name of the schema that contains the database column. This attribute cannot be updated for an existing masking column.

object_name

(required) The name of the object (table or editioning view) that contains the database column. This attribute cannot be updated for an existing masking column.

object_type

(optional) The type of the object that contains the database column.

Allowed values are: 'TABLE', 'EDITIONING_VIEW'

column_name

(required) The name of the database column. This attribute cannot be updated for an existing masking column. Note that the same name is used for the masking column. There is no separate displayName attribute for the masking column.

masking_column_group

(optional) The group of the masking column. It's a masking group identifier and can be any string of acceptable length. All the columns in a group are masked together to ensure that the masked data across these columns continue to retain the same logical relationship. For more details, check <a href=https://docs.oracle.com/en/cloud/paas/data-safe/udscs/group-masking1.html#GUID-755056B9-9540-48C0-9491-262A44A85037>Group Masking in the Data Safe documentation.</a>

sensitive_type_id

(optional) The OCID of the sensitive type to be associated with the masking column. Note that if the maskingFormats attribute isn't provided while creating a masking column, the default masking format associated with the specified sensitive type is assigned to the masking column.

is_masking_enabled

(optional) Indicates whether data masking is enabled for the masking column. Set it to false if you don't want to mask the column.

masking_formats

(optional) The masking formats to be assigned to the masking column. You can specify a condition as part of each masking format. It enables you to do <a href=\"https://docs.oracle.com/en/cloud/paas/data-safe/udscs/conditional-masking.html\">conditional masking</a> so that you can mask the column data values differently using different masking formats and the associated conditions. A masking format can have one or more format entries. The combined output of all the format entries is used for masking. It provides the flexibility to define a masking format that can generate different parts of a data value separately and then combine them to get the final data value for masking.

DBMS_CLOUD_OCI_DATASAFE_CREATE_MASKING_POLICY_DETAILS_T Type

Details to create a new masking policy. Use either a sensitive data model or a reference target database to create your masking policy. To use a sensitive data model as the source of masking columns, set the columnSource attribute to SENSITIVE_DATA_MODEL and provide the sensitiveDataModelId attribute. After creating a masking policy, you can use the AddMaskingColumnsFromSdm operation to automatically add all the columns from the associated sensitive data model. In this case, the target database associated with the sensitive data model is used for column and masking format validations. You can also create a masking policy without using a sensitive data model. In this case, you need to associate your masking policy with a target database by setting the columnSource attribute to TARGET and providing the targetId attribute. The specified target database is used for column and masking format validations. After creating a masking policy, you can use the CreateMaskingColumn or PatchMaskingColumns operation to manually add columns to the policy. You need to add the parent columns only, and it automatically adds the child columns (in referential relationship with the parent columns) from the associated sensitive data model or target database.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_masking_policy_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  description varchar2(32767),
  is_drop_temp_tables_enabled number,
  is_redo_logging_enabled number,
  is_refresh_stats_enabled number,
  parallel_degree varchar2(32767),
  recompile varchar2(32767),
  pre_masking_script varchar2(32767),
  post_masking_script varchar2(32767),
  column_source dbms_cloud_oci_datasafe_create_column_source_details_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_masking_policy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_masking_policy_details_t (
    display_name varchar2,
    compartment_id varchar2,
    description varchar2,
    is_drop_temp_tables_enabled number,
    is_redo_logging_enabled number,
    is_refresh_stats_enabled number,
    parallel_degree varchar2,
    recompile varchar2,
    pre_masking_script varchar2,
    post_masking_script varchar2,
    column_source dbms_cloud_oci_datasafe_create_column_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) The display name of the masking policy. The name does not have to be unique, and it's changeable.

compartment_id

(required) The OCID of the compartment where the masking policy should be created.

description

(optional) The description of the masking policy.

is_drop_temp_tables_enabled

(optional) Indicates if the temporary tables created during a masking operation should be dropped after masking. It's enabled by default. Set this attribute to false to preserve the temporary tables. Masking creates temporary tables that map the original sensitive data values to mask values. By default, these temporary tables are dropped after masking. But, in some cases, you may want to preserve this information to track how masking changed your data. Note that doing so compromises security. These tables must be dropped before the database is available for unprivileged users.

is_redo_logging_enabled

(optional) Indicates if redo logging is enabled during a masking operation. It's disabled by default. Set this attribute to true to enable redo logging. By default, masking disables redo logging and flashback logging to purge any original unmasked data from logs. However, in certain circumstances when you only want to test masking, rollback changes, and retry masking, you could enable logging and use a flashback database to retrieve the original unmasked data after it has been masked.

is_refresh_stats_enabled

(optional) Indicates if statistics gathering is enabled. It's enabled by default. Set this attribute to false to disable statistics gathering. The masking process gathers statistics on masked database tables after masking completes.

parallel_degree

(optional) Specifies options to enable parallel execution when running data masking. Allowed values are 'NONE' (no parallelism), 'DEFAULT' (the Oracle Database computes the optimum degree of parallelism) or an integer value to be used as the degree of parallelism. Parallel execution helps effectively use multiple CPUs and improve masking performance. Refer to the Oracle Database parallel execution framework when choosing an explicit degree of parallelism.

recompile

(optional) Specifies how to recompile invalid objects post data masking. Allowed values are 'SERIAL' (recompile in serial), 'PARALLEL' (recompile in parallel), 'NONE' (do not recompile). If it's set to PARALLEL, the value of parallelDegree attribute is used. Use the built-in UTL_RECOMP package to recompile any remaining invalid objects after masking completes.

pre_masking_script

(optional) A pre-masking script, which can contain SQL and PL/SQL statements. It's executed before the core masking script generated using the masking policy. It's usually used to perform any preparation or prerequisite work before masking data.

post_masking_script

(optional) A post-masking script, which can contain SQL and PL/SQL statements. It's executed after the core masking script generated using the masking policy. It's usually used to perform additional transformation or cleanup work after masking.

column_source

(required)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_CREATE_ON_PREM_CONNECTOR_DETAILS_T Type

The details used to create a new on-premises connector.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_on_prem_connector_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  description varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_on_prem_connector_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_on_prem_connector_details_t (
    display_name varchar2,
    compartment_id varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.

compartment_id

(required) The OCID of the compartment where you want to create the on-premises connector.

description

(optional) The description of the on-premises connector.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_COLUMN_T Type

The description of the column.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_column_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  field_name varchar2(32767),
  data_type varchar2(32767),
  is_hidden number,
  display_order number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_column_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_column_t (
    display_name varchar2,
    field_name varchar2,
    data_type varchar2,
    is_hidden number,
    display_order number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) Name of the column displayed on UI.

field_name

(required) Specifies the corresponding field name in the data source.

data_type

(optional) Specifies the data type of the column.

is_hidden

(required) Indicates if the column is hidden. Values can either be 'true' or 'false'.

display_order

(required) Specifies the display order of the column.

DBMS_CLOUD_OCI_DATASAFE_COLUMN_FILTER_T Type

Filters that are applied to the data at the column level.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_column_filter_t FORCE AUTHID CURRENT_USER IS OBJECT (
  field_name varchar2(32767),
  operator varchar2(32767),
  expressions dbms_cloud_oci_datasafe_varchar2_tbl,
  is_enabled number,
  is_hidden number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_column_filter_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_column_filter_t (
    field_name varchar2,
    operator varchar2,
    expressions dbms_cloud_oci_datasafe_varchar2_tbl,
    is_enabled number,
    is_hidden number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

field_name

(required) Name of the column on which the filter must be applied.

operator

(required) Specifies the type of operator that must be applied for example in, eq etc.

Allowed values are: 'IN', 'EQ', 'GT', 'GE', 'LT', 'LE', 'AND', 'OR', 'NE', 'CO', 'NOT', 'NOT_IN'

expressions

(required) An array of expressions based on the operator type. A filter may have one or more expressions.

is_enabled

(required) Indicates whether the filter is enabled. Values can either be 'true' or 'false'.

is_hidden

(required) Indicates whether the filter is hidden. Values can either be 'true' or 'false'.

DBMS_CLOUD_OCI_DATASAFE_COLUMN_SORTING_T Type

Sorts the data at the column level.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_column_sorting_t FORCE AUTHID CURRENT_USER IS OBJECT (
  field_name varchar2(32767),
  is_ascending number,
  sorting_order number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_column_sorting_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_column_sorting_t (
    field_name varchar2,
    is_ascending number,
    sorting_order number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

field_name

(required) Name of the column that must be sorted.

is_ascending

(required) Indicates if the column must be sorted in ascending order. Values can either be 'true' or 'false'.

sorting_order

(required) Indicates the order at which column must be sorted.

DBMS_CLOUD_OCI_DATASAFE_SUMMARY_T Type

Summary of the audit report.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  is_hidden number,
  display_order number,
  group_by_field_name varchar2(32767),
  count_of varchar2(32767),
  scim_filter varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_summary_t (
    name varchar2,
    is_hidden number,
    display_order number,
    group_by_field_name varchar2,
    count_of varchar2,
    scim_filter varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) Name of the report summary.

is_hidden

(optional) Indicates if the summary is hidden. Values can either be 'true' or 'false'.

display_order

(required) Specifies the order in which the summary must be displayed.

group_by_field_name

(optional) A comma-delimited string that specifies the names of the fields by which the records must be aggregated to get the summary.

count_of

(optional) Name of the key or count of object.

scim_filter

(optional) Additional scim filters used to get the specific summary.

DBMS_CLOUD_OCI_DATASAFE_COLUMN_TBL Type

Nested table type of dbms_cloud_oci_datasafe_column_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_column_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_column_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_COLUMN_FILTER_TBL Type

Nested table type of dbms_cloud_oci_datasafe_column_filter_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_column_filter_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_column_filter_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_COLUMN_SORTING_TBL Type

Nested table type of dbms_cloud_oci_datasafe_column_sorting_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_column_sorting_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_column_sorting_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_CREATE_REPORT_DEFINITION_DETAILS_T Type

Description of a new report definition.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_report_definition_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  parent_id varchar2(32767),
  description varchar2(32767),
  column_info dbms_cloud_oci_datasafe_column_tbl,
  column_filters dbms_cloud_oci_datasafe_column_filter_tbl,
  column_sortings dbms_cloud_oci_datasafe_column_sorting_tbl,
  summary dbms_cloud_oci_datasafe_summary_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_report_definition_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_report_definition_details_t (
    compartment_id varchar2,
    display_name varchar2,
    parent_id varchar2,
    description varchar2,
    column_info dbms_cloud_oci_datasafe_column_tbl,
    column_filters dbms_cloud_oci_datasafe_column_filter_tbl,
    column_sortings dbms_cloud_oci_datasafe_column_sorting_tbl,
    summary dbms_cloud_oci_datasafe_summary_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment containing the report definition.

display_name

(required) Specifies the name of the report definition.

parent_id

(required) The OCID of the parent report definition.

description

(optional) The description of the report definition.

column_info

(required) An array of column objects in the order (left to right) displayed in the report. A column object stores all information about a column, including the name displayed on the UI, corresponding field name in the data source, data type of the column, and column visibility (if the column is visible to the user).

column_filters

(required) An array of column filter objects. A column Filter object stores all information about a column filter including field name, an operator, one or more expressions, if the filter is enabled, or if the filter is hidden.

column_sortings

(required) An array of column sorting objects. Each column sorting object stores the column name to be sorted and if the sorting is in ascending order; sorting is done by the first column in the array, then by the second column in the array, etc.

summary

(required) An array of report summary objects in the order (left to right) displayed in the report. A report summary object stores all information about summary of report to be displayed, including the name displayed on UI, the display order, corresponding group by and count of values, summary visibility (if the summary is visible to user).

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_CREATE_SDM_MASKING_POLICY_DIFFERENCE_DETAILS_T Type

Details to create a new SDM masking policy difference.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_sdm_masking_policy_difference_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  difference_type varchar2(32767),
  masking_policy_id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_sdm_masking_policy_difference_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_sdm_masking_policy_difference_details_t (
    difference_type varchar2,
    masking_policy_id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

difference_type

(optional) The type of the SDM masking policy difference. It defines the difference scope. NEW identifies new sensitive columns in the sensitive data model that are not in the masking policy. DELETED identifies columns that are present in the masking policy but have been deleted from the sensitive data model. MODIFIED identifies columns that are present in the sensitive data model as well as the masking policy but some of their attributes have been modified. ALL covers all the above three scenarios and reports new, deleted and modified columns.

masking_policy_id

(required) The OCID of the masking policy. Note that if the masking policy is not associated with an SDM, CreateSdmMaskingPolicyDifference operation won't be allowed.

compartment_id

(required) The OCID of the compartment where the SDM masking policy difference resource should be created.

display_name

(optional) A user-friendly name for the SDM masking policy difference. Does not have to be unique, and it is changeable. Avoid entering confidential information.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_CREATE_SECURITY_ASSESSMENT_DETAILS_T Type

The details used to save a security assessment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_security_assessment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  target_id varchar2(32767),
  schedule varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_security_assessment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_security_assessment_details_t (
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    target_id varchar2,
    schedule varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment that contains the security assessment.

display_name

(optional) The display name of the security assessment.

description

(optional) Description of the security assessment.

target_id

(required) The OCID of the target database on which security assessment is to be run.

schedule

(optional) To schedule the assessment for running periodically, specify the schedule in this attribute. Create or schedule one assessment per compartment. If not defined, the assessment runs immediately. Format - <version-string>;<version-specific-schedule> Allowed version strings - \"v1\" v1's version specific schedule -<ss> <mm> <hh> <day-of-week> <day-of-month> Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = <ss> (So, the allowed range for <ss> is [0, 59]) 2. minutes = <mm> (So, the allowed range for <mm> is [0, 59]) 3. hours = <hh> (So, the allowed range for <hh> is [0, 23]) <day-of-week> can be either '*' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is '*'. When not, day of week must equal the given value <day-of-month> can be either '*' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is '*'. When not, day of month must equal the given value

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_CREATE_SENSITIVE_TYPE_DETAILS_T Type

Details to create a new sensitive type.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_sensitive_type_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  entity_type varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  short_name varchar2(32767),
  description varchar2(32767),
  parent_category_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_sensitive_type_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_sensitive_type_details_t (
    entity_type varchar2,
    display_name varchar2,
    compartment_id varchar2,
    short_name varchar2,
    description varchar2,
    parent_category_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

entity_type

(required) The entity type. It can be either a sensitive type with regular expressions or a sensitive category used for grouping similar sensitive types.

Allowed values are: 'SENSITIVE_TYPE', 'SENSITIVE_CATEGORY'

display_name

(optional) The display name of the sensitive type. The name does not have to be unique, and it's changeable.

compartment_id

(required) The OCID of the compartment where the sensitive type should be created.

short_name

(optional) The short name of the sensitive type.

description

(optional) The description of the sensitive type.

parent_category_id

(optional) The OCID of the parent sensitive category.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_CREATE_SENSITIVE_CATEGORY_DETAILS_T Type

Details to create a new sensitive category.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_sensitive_category_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_create_sensitive_type_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_sensitive_category_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_sensitive_category_details_t (
    entity_type varchar2,
    display_name varchar2,
    compartment_id varchar2,
    short_name varchar2,
    description varchar2,
    parent_category_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_create_sensitive_category_details_t is a subtype of the dbms_cloud_oci_datasafe_create_sensitive_type_details_t type.

DBMS_CLOUD_OCI_DATASAFE_CREATE_SENSITIVE_COLUMN_DETAILS_T Type

Details to create a new sensitive column in a sensitive data model.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_sensitive_column_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  app_name varchar2(32767),
  schema_name varchar2(32767),
  object_name varchar2(32767),
  column_name varchar2(32767),
  object_type varchar2(32767),
  data_type varchar2(32767),
  status varchar2(32767),
  sensitive_type_id varchar2(32767),
  parent_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
  relation_type varchar2(32767),
  app_defined_child_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
  db_defined_child_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_sensitive_column_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_sensitive_column_details_t (
    app_name varchar2,
    schema_name varchar2,
    object_name varchar2,
    column_name varchar2,
    object_type varchar2,
    data_type varchar2,
    status varchar2,
    sensitive_type_id varchar2,
    parent_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
    relation_type varchar2,
    app_defined_child_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
    db_defined_child_column_keys dbms_cloud_oci_datasafe_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

app_name

(optional) The name of the application associated with the sensitive column. It's useful when the application name is different from the schema name. Otherwise, it can be ignored. If this attribute is not provided, it's automatically populated with the value provided for the schemaName attribute.

schema_name

(required) The database schema that contains the sensitive column.

object_name

(required) The database object that contains the sensitive column.

column_name

(required) The name of the sensitive column.

object_type

(optional) The type of the database object that contains the sensitive column.

Allowed values are: 'TABLE', 'EDITIONING_VIEW'

data_type

(optional) The data type of the sensitive column.

status

(optional) The status of the sensitive column. VALID means the column is considered sensitive. INVALID means the column is not considered sensitive. Tracking invalid columns in a sensitive data model helps ensure that an incremental data discovery job does not identify these columns as sensitive.

Allowed values are: 'VALID', 'INVALID'

sensitive_type_id

(optional) The OCID of the sensitive type to be associated with the sensitive column.

parent_column_keys

(optional) Unique keys identifying the columns that are parents of the sensitive column. At present, it accepts only one parent column key. This attribute can be used to establish relationship between columns in a sensitive data model. Note that the parent column must be added to the sensitive data model before its key can be specified here. If this attribute is provided, the appDefinedChildColumnKeys or dbDefinedChildColumnKeys attribute of the parent column is automatically updated to reflect the relationship.

relation_type

(optional) The type of referential relationship the sensitive column has with its parent. NONE indicates that the sensitive column does not have a parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary.

Allowed values are: 'NONE', 'APP_DEFINED', 'DB_DEFINED'

app_defined_child_column_keys

(optional) Unique keys identifying the columns that are application-level (non-dictionary) children of the sensitive column. This attribute can be used to establish relationship between columns in a sensitive data model. Note that the child columns must be added to the sensitive data model before their keys can be specified here. If this attribute is provided, the parentColumnKeys and relationType attributes of the child columns are automatically updated to reflect the relationship.

db_defined_child_column_keys

(optional) Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column. This attribute can be used to establish relationship between columns in a sensitive data model. Note that the child columns must be added to the sensitive data model before their keys can be specified here. If this attribute is provided, the parentColumnKeys and relationType attributes of the child columns are automatically updated to reflect the relationship.

DBMS_CLOUD_OCI_DATASAFE_CREATE_SENSITIVE_DATA_MODEL_DETAILS_T Type

Details to create a new sensitive data model. If schemas and sensitive types are provided, it automatically runs data discovery and adds the discovered columns to the sensitive data model. Otherwise, it creates an empty sensitive data model that can be updated later. To specify some schemas and sensitive types for data discovery, use schemasForDiscovery and sensitiveTypeIdsForDiscovery attributes. But if you want to include all schemas and sensitive types, you can set isIncludeAllSchemas and isIncludeAllSensitiveTypes attributes to true. In the latter case, you do not need to list all schemas and sensitive types.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_sensitive_data_model_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  target_id varchar2(32767),
  app_suite_name varchar2(32767),
  description varchar2(32767),
  schemas_for_discovery dbms_cloud_oci_datasafe_varchar2_tbl,
  sensitive_type_ids_for_discovery dbms_cloud_oci_datasafe_varchar2_tbl,
  is_sample_data_collection_enabled number,
  is_app_defined_relation_discovery_enabled number,
  is_include_all_schemas number,
  is_include_all_sensitive_types number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_sensitive_data_model_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_sensitive_data_model_details_t (
    display_name varchar2,
    compartment_id varchar2,
    target_id varchar2,
    app_suite_name varchar2,
    description varchar2,
    schemas_for_discovery dbms_cloud_oci_datasafe_varchar2_tbl,
    sensitive_type_ids_for_discovery dbms_cloud_oci_datasafe_varchar2_tbl,
    is_sample_data_collection_enabled number,
    is_app_defined_relation_discovery_enabled number,
    is_include_all_schemas number,
    is_include_all_sensitive_types number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of the sensitive data model. The name does not have to be unique, and it's changeable.

compartment_id

(required) The OCID of the compartment where the sensitive data model should be created.

target_id

(required) The OCID of the reference target database to be associated with the sensitive data model. All operations such as performing data discovery and adding columns manually are done in the context of the associated target database.

app_suite_name

(optional) The application suite name identifying a collection of applications. It's useful only if maintaining a sensitive data model for a suite of applications.

description

(optional) The description of the sensitive data model.

schemas_for_discovery

(optional) The schemas to be scanned by data discovery jobs.

sensitive_type_ids_for_discovery

(optional) The OCIDs of the sensitive types to be used by data discovery jobs. If OCID of a sensitive category is provided, all its child sensitive types are used for data discovery.

is_sample_data_collection_enabled

(optional) Indicates if data discovery jobs should collect and store sample data values for the discovered columns. Sample data helps review the discovered columns and ensure that they actually contain sensitive data. As it collects original data from the target database, it's disabled by default and should be used only if it's acceptable to store sample data in Data Safe's repository in Oracle Cloud. Note that sample data values are not collected for columns with the following data types: LONG, LOB, RAW, XMLTYPE and BFILE.

is_app_defined_relation_discovery_enabled

(optional) Indicates if data discovery jobs should identify potential application-level (non-dictionary) referential relationships between columns. Note that data discovery automatically identifies and adds database-level (dictionary-defined) relationships. This option helps identify application-level relationships that are not defined in the database dictionary, which in turn, helps identify additional sensitive columns and preserve referential integrity during data masking. It's disabled by default and should be used only if there is a need to identify application-level relationships.

is_include_all_schemas

(optional) Indicates if all the schemas in the associated target database should be scanned by data discovery jobs. If it is set to true, sensitive data is discovered in all schemas (except for schemas maintained by Oracle).

is_include_all_sensitive_types

(optional) Indicates if all the existing sensitive types should be used by data discovery jobs. If it's set to true, the sensitiveTypeIdsForDiscovery attribute is ignored and all sensitive types are used for data discovery.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_CREATE_SENSITIVE_TYPE_PATTERN_DETAILS_T Type

Details to create a new sensitive type with regular expressions.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_sensitive_type_pattern_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_create_sensitive_type_details_t (
  name_pattern varchar2(32767),
  comment_pattern varchar2(32767),
  data_pattern varchar2(32767),
  search_type varchar2(32767),
  default_masking_format_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_sensitive_type_pattern_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_sensitive_type_pattern_details_t (
    entity_type varchar2,
    display_name varchar2,
    compartment_id varchar2,
    short_name varchar2,
    description varchar2,
    parent_category_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    name_pattern varchar2,
    comment_pattern varchar2,
    data_pattern varchar2,
    search_type varchar2,
    default_masking_format_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_create_sensitive_type_pattern_details_t is a subtype of the dbms_cloud_oci_datasafe_create_sensitive_type_details_t type.

Fields

Field Description

name_pattern

(optional) A regular expression to be used by data discovery for matching column names.

comment_pattern

(optional) A regular expression to be used by data discovery for matching column comments.

data_pattern

(optional) A regular expression to be used by data discovery for matching column data values.

search_type

(optional) The search type indicating how the column name, comment and data patterns should be used by data discovery.

default_masking_format_id

(optional) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.

DBMS_CLOUD_OCI_DATASAFE_CREATE_SQL_COLLECTION_DETAILS_T Type

Details for SQL collection creation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_sql_collection_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  target_id varchar2(32767),
  status varchar2(32767),
  db_user_name varchar2(32767),
  sql_level varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_sql_collection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_sql_collection_details_t (
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    target_id varchar2,
    status varchar2,
    db_user_name varchar2,
    sql_level varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of the SQL collection. The name does not have to be unique, and it is changeable.

description

(optional) The description of the SQL collection.

compartment_id

(required) The OCID of the compartment containing the SQL collection.

target_id

(required) The OCID of the target corresponding to the security policy deployment.

status

(optional) Specifies if the SqlCollection has to be started after creation. Enabled indicates that the SqlCollection will be started after creation.

Allowed values are: 'ENABLED', 'DISABLED'

db_user_name

(required) The database user name.

sql_level

(optional) Specifies the level of SQL that will be collected. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.

Allowed values are: 'USER_ISSUED_SQL', 'ALL_SQL'

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_CREATE_TARGET_ALERT_POLICY_ASSOCIATION_DETAILS_T Type

The details used to create a new target-alert policy association.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_target_alert_policy_association_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  policy_id varchar2(32767),
  target_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  is_enabled number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_target_alert_policy_association_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_target_alert_policy_association_details_t (
    policy_id varchar2,
    target_id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    is_enabled number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

policy_id

(required) The OCID of the alert policy.

target_id

(required) The OCID of the target.

display_name

(optional) The display name of the target-alert policy association.

description

(optional) Describes the target-alert policy association.

compartment_id

(required) The OCID of the compartment where the target-alert policy association is created.

is_enabled

(required) Indicates if the target-alert policy association is enabled or disabled by user.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_TLS_CONFIG_T Type

The details required to establish a TLS enabled connection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_tls_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
  status varchar2(32767),
  certificate_store_type varchar2(32767),
  store_password varchar2(32767),
  trust_store_content varchar2(32767),
  key_store_content varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_tls_config_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_tls_config_t (
    status varchar2,
    certificate_store_type varchar2,
    store_password varchar2,
    trust_store_content varchar2,
    key_store_content varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

status

(required) Status to represent whether the database connection is TLS enabled or not.

Allowed values are: 'ENABLED', 'DISABLED'

certificate_store_type

(optional) The format of the certificate store.

Allowed values are: 'JKS'

store_password

(optional) The password to read the trust store and key store files, if they are password protected.

trust_store_content

(optional) Base64 encoded string of trust store file content.

key_store_content

(optional) Base64 encoded string of key store file content.

DBMS_CLOUD_OCI_DATASAFE_CREATE_TARGET_DATABASE_DETAILS_T Type

The details used to register the database in Data Safe and to create the Data Safe target database.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_target_database_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  database_details dbms_cloud_oci_datasafe_database_details_t,
  credentials dbms_cloud_oci_datasafe_credentials_t,
  tls_config dbms_cloud_oci_datasafe_tls_config_t,
  connection_option dbms_cloud_oci_datasafe_connection_option_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_target_database_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_target_database_details_t (
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    database_details dbms_cloud_oci_datasafe_database_details_t,
    credentials dbms_cloud_oci_datasafe_credentials_t,
    tls_config dbms_cloud_oci_datasafe_tls_config_t,
    connection_option dbms_cloud_oci_datasafe_connection_option_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment in which to create the Data Safe target database.

display_name

(optional) The display name of the target database in Data Safe. The name is modifiable and does not need to be unique.

description

(optional) The description of the target database in Data Safe.

database_details

(required)

credentials

(optional)

tls_config

(optional)

connection_option

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_CREATE_USER_ASSESSMENT_DETAILS_T Type

The details required to save a user assessment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_create_user_assessment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  description varchar2(32767),
  display_name varchar2(32767),
  schedule varchar2(32767),
  target_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_user_assessment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_create_user_assessment_details_t (
    compartment_id varchar2,
    description varchar2,
    display_name varchar2,
    schedule varchar2,
    target_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment that contains the user assessment.

description

(optional) The description of the user assessment.

display_name

(optional) The display name of the user assessment.

schedule

(optional) To schedule the assessment for saving periodically, specify the schedule in this attribute. Create or schedule one assessment per compartment. If not defined, the assessment runs immediately. Format - <version-string>;<version-specific-schedule> Allowed version strings - \"v1\" v1's version specific schedule -<ss> <mm> <hh> <day-of-week> <day-of-month> Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = <ss> (So, the allowed range for <ss> is [0, 59]) 2. minutes = <mm> (So, the allowed range for <mm> is [0, 59]) 3. hours = <hh> (So, the allowed range for <hh> is [0, 23]) <day-of-week> can be either '*' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is '*'. When not, day of week must equal the given value <day-of-month> can be either '*' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is '*'. When not, day of month must equal the given value

target_id

(required) The OCID of the target database on which the user assessment is to be run.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_GLOBAL_SETTINGS_T Type

Details of the tenancy level global settings in Data Safe.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_global_settings_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_paid_usage number,
  online_retention_period number,
  offline_retention_period number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_global_settings_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_global_settings_t (
    is_paid_usage number,
    online_retention_period number,
    offline_retention_period number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_paid_usage

(optional) The paid usage option chosen by the customer admin.

online_retention_period

(optional) The online retention period in months.

offline_retention_period

(optional) The offline retention period in months.

DBMS_CLOUD_OCI_DATASAFE_DATA_SAFE_CONFIGURATION_T Type

A Data Safe configuration for a tenancy and region.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_data_safe_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_enabled number,
  url varchar2(32767),
  compartment_id varchar2(32767),
  time_enabled timestamp with time zone,
  lifecycle_state varchar2(32767),
  data_safe_nat_gateway_ip_address varchar2(32767),
  global_settings dbms_cloud_oci_datasafe_global_settings_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_data_safe_configuration_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_data_safe_configuration_t (
    is_enabled number,
    url varchar2,
    compartment_id varchar2,
    time_enabled timestamp with time zone,
    lifecycle_state varchar2,
    data_safe_nat_gateway_ip_address varchar2,
    global_settings dbms_cloud_oci_datasafe_global_settings_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_enabled

(required) Indicates if Data Safe is enabled.

url

(optional) The URL of the Data Safe service.

compartment_id

(optional) The OCID of the tenancy used to enable Data Safe.

time_enabled

(optional) The date and time Data Safe was enabled, in the format defined by RFC3339.

lifecycle_state

(optional) The current state of Data Safe.

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

data_safe_nat_gateway_ip_address

(optional) The Oracle Data Safe's NAT Gateway IP Address.

global_settings

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_DATA_SAFE_PRIVATE_ENDPOINT_T Type

A Data Safe private endpoint that allows Data Safe to connect to databases in a customer's virtual cloud network (VCN).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_data_safe_private_endpoint_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  vcn_id varchar2(32767),
  subnet_id varchar2(32767),
  private_endpoint_id varchar2(32767),
  private_endpoint_ip varchar2(32767),
  endpoint_fqdn varchar2(32767),
  description varchar2(32767),
  time_created timestamp with time zone,
  lifecycle_state varchar2(32767),
  nsg_ids dbms_cloud_oci_datasafe_varchar2_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_data_safe_private_endpoint_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_data_safe_private_endpoint_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    vcn_id varchar2,
    subnet_id varchar2,
    private_endpoint_id varchar2,
    private_endpoint_ip varchar2,
    endpoint_fqdn varchar2,
    description varchar2,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    nsg_ids dbms_cloud_oci_datasafe_varchar2_tbl,
    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) The OCID of the Data Safe private endpoint.

display_name

(required) The display name of the private endpoint.

compartment_id

(required) The OCID of the compartment.

vcn_id

(required) The OCID of the VCN.

subnet_id

(required) The OCID of the subnet.

private_endpoint_id

(required) The OCID of the underlying private endpoint.

private_endpoint_ip

(optional) The private IP address of the private endpoint.

endpoint_fqdn

(optional) The three-label fully qualified domain name (FQDN) of the private endpoint. The customer VCN's DNS records are updated with this FQDN.

description

(optional) The description of the private endpoint.

time_created

(optional) The date and time the private endpoint was created, in the format defined by RFC3339.

lifecycle_state

(optional) The current state of the private endpoint.

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

nsg_ids

(optional) The OCIDs of the network security groups that the private endpoint belongs to.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_DATA_SAFE_PRIVATE_ENDPOINT_SUMMARY_T Type

Summary of a Data Safe private endpoint.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_data_safe_private_endpoint_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  vcn_id varchar2(32767),
  subnet_id varchar2(32767),
  private_endpoint_id varchar2(32767),
  description varchar2(32767),
  time_created timestamp with time zone,
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_data_safe_private_endpoint_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_data_safe_private_endpoint_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    vcn_id varchar2,
    subnet_id varchar2,
    private_endpoint_id varchar2,
    description varchar2,
    time_created timestamp with time zone,
    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) The OCID of the Data Safe private endpoint.

display_name

(required) The display name of the private endpoint.

compartment_id

(required) The OCID of the compartment.

vcn_id

(required) The OCID of the VCN.

subnet_id

(required) The OCID of the subnet.

private_endpoint_id

(required) The OCID of the private endpoint.

description

(optional) The description of the private endpoint.

time_created

(optional) The date and time the private endpoint was created, in the format defined by RFC3339.

lifecycle_state

(optional) The current state of the private endpoint.

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

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_DATABASE_CLOUD_SERVICE_DETAILS_T Type

The details of the cloud database to be registered as a target database in Data Safe.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_database_cloud_service_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_database_details_t (
  vm_cluster_id varchar2(32767),
  db_system_id varchar2(32767),
  listener_port number,
  service_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_database_cloud_service_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_database_cloud_service_details_t (
    database_type varchar2,
    infrastructure_type varchar2,
    vm_cluster_id varchar2,
    db_system_id varchar2,
    listener_port number,
    service_name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_database_cloud_service_details_t is a subtype of the dbms_cloud_oci_datasafe_database_details_t type.

Fields

Field Description

vm_cluster_id

(optional) The OCID of the VM cluster in which the database is running.

db_system_id

(optional) The OCID of the cloud database registered as a target database in Data Safe.

listener_port

(optional) The port number of the database listener.

service_name

(required) The database service name.

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_CONFIG_T Type

The SQL Firewall related configurations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
  status varchar2(32767),
  violation_log_auto_purge varchar2(32767),
  exclude_job varchar2(32767),
  time_status_updated timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_config_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_config_t (
    status varchar2,
    violation_log_auto_purge varchar2,
    exclude_job varchar2,
    time_status_updated timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

status

(required) Specifies if the firewall is enabled or disabled on the target database.

Allowed values are: 'ENABLED', 'DISABLED'

violation_log_auto_purge

(required) Specifies whether Data Safe should automatically purge the violation logs from the database after collecting the violation logs and persisting on Data Safe.

Allowed values are: 'ENABLED', 'DISABLED'

exclude_job

(optional) Specifies whether the firewall should include or exclude the database internal job activities.

Allowed values are: 'EXCLUDED', 'INCLUDED'

time_status_updated

(optional) The most recent time when the firewall status is updated, in the format defined by RFC3339.

DBMS_CLOUD_OCI_DATASAFE_DATABASE_SECURITY_CONFIG_T Type

Database Security Configurations resource represents the target database configurations. Included in the Database Security Configurations are the SQL Firewall configurations such as the status of the firewall, the time that the firewall status was last updated, violation log auto purge settings, etc.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_database_security_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  target_id varchar2(32767),
  time_last_refreshed timestamp with time zone,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  sql_firewall_config dbms_cloud_oci_datasafe_sql_firewall_config_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_database_security_config_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_database_security_config_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    target_id varchar2,
    time_last_refreshed timestamp with time zone,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    sql_firewall_config dbms_cloud_oci_datasafe_sql_firewall_config_t,
    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) The OCID of the database security config.

compartment_id

(required) The OCID of the compartment containing the database security config.

display_name

(required) The display name of the database security config.

description

(optional) The description of the database security config.

target_id

(required) The target OCID corresponding to the database security config.

time_last_refreshed

(optional) The last date and time the database security config was refreshed, in the format defined by RFC3339.

time_created

(required) The time that the database security config was created, in the format defined by RFC3339.

time_updated

(optional) The date and time the database security configuration was last updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the database security config.

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

lifecycle_details

(optional) Details about the current state of the database security config in Data Safe.

sql_firewall_config

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_DATABASE_SECURITY_CONFIG_SUMMARY_T Type

Database Security Configurations resource represents the target database configurations. Included in the Database Security Configurations are the SQL Firewall configurations such as the status of the firewall, the time that the firewall status was last updated, violation log auto purge settings, etc.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_database_security_config_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  target_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  time_last_refreshed timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  sql_firewall_config dbms_cloud_oci_datasafe_sql_firewall_config_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_database_security_config_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_database_security_config_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    target_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    time_last_refreshed timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    sql_firewall_config dbms_cloud_oci_datasafe_sql_firewall_config_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the database security config.

compartment_id

(required) The OCID of the compartment containing the database security config.

display_name

(required) The display name of the database security config.

description

(optional) The description of the database security config.

target_id

(required) The target OCID corresponding to the database security config.

time_created

(required) The time that the database security config was created, in the format defined by RFC3339.

time_updated

(optional) The date and time the database security configuration was last updated, in the format defined by RFC3339.

time_last_refreshed

(optional) The last date and time the database security config was refreshed, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the database security config.

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

lifecycle_details

(optional) Details about the current state of the database security config in Data Safe.

sql_firewall_config

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_DATABASE_SECURITY_CONFIG_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_database_security_config_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_database_security_config_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_database_security_config_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_DATABASE_SECURITY_CONFIG_COLLECTION_T Type

Collection of database security config summaries.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_database_security_config_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_database_security_config_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_database_security_config_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_database_security_config_collection_t (
    items dbms_cloud_oci_datasafe_database_security_config_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of database security config summaries.

DBMS_CLOUD_OCI_DATASAFE_DELETE_ROWS_FORMAT_ENTRY_T Type

The Delete Rows masking format deletes the rows that meet a user-specified condition. It is useful in conditional masking when you want to delete a subset of values in a column and mask the remaining values using some other masking formats. You should be careful while using this masking format. If no condition is specified, all rows in a table are deleted. If a column is being masked using Delete Rows, there must not be a foreign key constraint or dependent column referring to the table. To learn more, check Delete Rows in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_delete_rows_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_delete_rows_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_delete_rows_format_entry_t (
    l_type varchar2,
    description varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_delete_rows_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

DBMS_CLOUD_OCI_DATASAFE_DETERMINISTIC_ENCRYPTION_DATE_FORMAT_ENTRY_T Type

The Deterministic Encryption (Date) masking format encrypts column data using a cryptographic key and Advanced Encryption Standard (AES 128). It can be used to encrypt date columns only. It requires a range of dates as input defined by the startDate and endDate attributes. The start date must be less than or equal to the end date. The original column values in all the rows must be within the specified date range. The encrypted values are also within the specified range. Therefore, to ensure uniqueness, the total number of dates in the range must be greater than or equal to the number of distinct original values in the column. If an original value is not in the specified date range, it might not produce a one-to-one mapping. All non-confirming values are mapped to a single encrypted value, thereby producing a many-to-one mapping. Deterministic Encryption (Date) is a format-preserving, deterministic and reversible masking format, which requires a seed value while submitting a masking work request. Passing the same seed value when masking multiple times or masking different databases ensures that the data is masked deterministically. To learn more, check Deterministic Encryption in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_deterministic_encryption_date_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  start_date timestamp with time zone,
  end_date timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_deterministic_encryption_date_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_deterministic_encryption_date_format_entry_t (
    l_type varchar2,
    description varchar2,
    start_date timestamp with time zone,
    end_date timestamp with time zone
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_deterministic_encryption_date_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

Fields

Field Description

start_date

(required) The lower bound of the range within which all the original column values fall. The start date must be less than or equal to the end date.

end_date

(required) The upper bound of the range within which all the original column values fall. The end date must be greater than or equal to the start date.

DBMS_CLOUD_OCI_DATASAFE_DETERMINISTIC_ENCRYPTION_FORMAT_ENTRY_T Type

The Deterministic Encryption masking format encrypts column data using a cryptographic key and Advanced Encryption Standard (AES 128). It can be used to encrypt character and number columns. It can encrypt ASCII data without any input (except seed value), but it needs a regular expression to encrypt non-ASCII data. Deterministic Encryption is a format-preserving, deterministic and reversible masking format, which requires a seed value while submitting a masking work request. Passing the same seed value when masking multiple times or masking different databases ensures that the data is masked deterministically. To learn more, check Deterministic Encryption in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_deterministic_encryption_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  regular_expression varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_deterministic_encryption_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_deterministic_encryption_format_entry_t (
    l_type varchar2,
    description varchar2,
    regular_expression varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_deterministic_encryption_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

Fields

Field Description

regular_expression

(optional) The regular expression to be used for masking. For data with characters in the ASCII character set, providing a regular expression is optional. However, it is required if the data contains multi-byte characters. If not provided, an error is returned when a multi-byte character is found. In the case of ASCII characters, if a regular expression is not provided, Deterministic Encryption can encrypt variable-length column values while preserving their original format. If a regular expression is provided, the column values in all the rows must match the regular expression. Deterministic Encryption supports a subset of the regular expression language. It supports encryption of fixed-length strings, and does not support * or + syntax of regular expressions. The encrypted values also match the regular expression, which helps to ensure that the original format is preserved. If an original value does not match the regular expression, Deterministic Encryption might not produce a one-to-one mapping. All non-confirming values are mapped to a single encrypted value, thereby producing a many-to-one mapping.

DBMS_CLOUD_OCI_DATASAFE_DETERMINISTIC_SUBSTITUTION_FORMAT_ENTRY_T Type

The Deterministic Substitution masking format uses the specified substitution column as the source of masked values. It performs hash-based substitution to replace the original data in a column with values from the substitution column. As a masking operation renames tables temporarily, the substitution column must be in a table that has no masking column. Also, you may want to ensure that the substitution column has sufficient values to uniquely mask the target column. Deterministic Substitution requires a seed value while submitting a masking work request. Passing the same seed value when masking multiple times or masking different databases ensures that the data is masked deterministically. To learn more, check Deterministic Substitution in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_deterministic_substitution_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  schema_name varchar2(32767),
  table_name varchar2(32767),
  column_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_deterministic_substitution_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_deterministic_substitution_format_entry_t (
    l_type varchar2,
    description varchar2,
    schema_name varchar2,
    table_name varchar2,
    column_name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_deterministic_substitution_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

Fields

Field Description

schema_name

(required) The name of the schema that contains the substitution column.

table_name

(required) The name of the table that contains the substitution column.

column_name

(required) The name of the substitution column.

DBMS_CLOUD_OCI_DATASAFE_DIFFERENCE_COLUMN_T Type

A SDM masking policy difference column. It can be one of the following three types: NEW: A new column in the sensitive data model that is not in the masking policy. DELETED: A column that is present in the masking policy but has been deleted from the sensitive data model. MODIFIED: A column that is present in the masking policy as well as the sensitive data model but some of its attributes have been modified.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_difference_column_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  difference_type varchar2(32767),
  sensitive_columnkey varchar2(32767),
  masking_columnkey varchar2(32767),
  schema_name varchar2(32767),
  object_name varchar2(32767),
  column_name varchar2(32767),
  sensitive_type_id varchar2(32767),
  planned_action varchar2(32767),
  sync_status varchar2(32767),
  time_last_synced timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_difference_column_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_difference_column_t (
    key varchar2,
    difference_type varchar2,
    sensitive_columnkey varchar2,
    masking_columnkey varchar2,
    schema_name varchar2,
    object_name varchar2,
    column_name varchar2,
    sensitive_type_id varchar2,
    planned_action varchar2,
    sync_status varchar2,
    time_last_synced timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) The unique key that identifies the SDM masking policy difference column.

difference_type

(required) The type of the SDM masking policy difference column. It can be one of the following three types: NEW: A new sensitive column in the sensitive data model that is not in the masking policy. DELETED: A column that is present in the masking policy but has been deleted from the sensitive data model. MODIFIED: A column that is present in the masking policy as well as the sensitive data model but some of its attributes have been modified.

Allowed values are: 'NEW', 'MODIFIED', 'DELETED'

sensitive_columnkey

(optional) The unique key that identifies the sensitive column represented by the SDM masking policy difference column.

masking_columnkey

(optional) The unique key that identifies the masking column represented by the SDM masking policy difference column.

schema_name

(required) The database schema that contains the difference column.

object_name

(required) The database object that contains the difference column.

column_name

(required) The name of the difference column.

sensitive_type_id

(optional) The OCID of the sensitive type associated with the difference column.

planned_action

(required) Specifies how to process the difference column. It's set to SYNC by default. Use the PatchSdmMaskingPolicyDifferenceColumns operation to update this attribute. You can choose one of the following options: SYNC: To sync the difference column and update the masking policy to reflect the changes. NO_SYNC: To not sync the difference column so that it doesn't change the masking policy. After specifying the planned action, you can use the ApplySdmMaskingPolicyDifference operation to automatically process the difference columns.

Allowed values are: 'SYNC', 'NO_SYNC'

sync_status

(required) Indicates if the difference column has been processed. Use GetDifferenceColumn operation to track whether the difference column has already been processed and applied to the masking policy.

Allowed values are: 'SYNCED', 'NOT_SYNCED'

time_last_synced

(optional) The date and time the SDM masking policy difference column was last synced, in the format defined by RFC3339.

DBMS_CLOUD_OCI_DATASAFE_DIFFERENCE_COLUMN_SUMMARY_T Type

Summary of a SDM masking policy difference column.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_difference_column_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  difference_type varchar2(32767),
  sensitive_columnkey varchar2(32767),
  masking_columnkey varchar2(32767),
  schema_name varchar2(32767),
  object_name varchar2(32767),
  column_name varchar2(32767),
  sensitive_type_id varchar2(32767),
  planned_action varchar2(32767),
  sync_status varchar2(32767),
  time_last_synced timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_difference_column_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_difference_column_summary_t (
    key varchar2,
    difference_type varchar2,
    sensitive_columnkey varchar2,
    masking_columnkey varchar2,
    schema_name varchar2,
    object_name varchar2,
    column_name varchar2,
    sensitive_type_id varchar2,
    planned_action varchar2,
    sync_status varchar2,
    time_last_synced timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) The unique key that identifies the SDM masking policy difference column.

difference_type

(required) The type of the SDM masking policy difference column. It can be one of the following three types: NEW: A new sensitive column in the sensitive data model that is not in the masking policy. DELETED: A column that is present in the masking policy but has been deleted from the sensitive data model. MODIFIED: A column that is present in the masking policy as well as the sensitive data model but some of its attributes have been modified.

sensitive_columnkey

(optional) The unique key that identifies the sensitive column represented by the SDM masking policy difference column.

masking_columnkey

(optional) The unique key that identifies the masking column represented by the SDM masking policy difference column.

schema_name

(required) The database schema that contains the difference column.

object_name

(required) The database object that contains the difference column.

column_name

(required) The name of the difference column.

sensitive_type_id

(optional) The OCID of the sensitive type associated with the difference column.

planned_action

(required) Specifies how to process the difference column. It's set to SYNC by default. Use the PatchSdmMaskingPolicyDifferenceColumns operation to update this attribute. You can choose one of the following options: SYNC: To sync the difference column and update the masking policy to reflect the changes. NO_SYNC: To not sync the difference column so that it doesn't change the masking policy. After specifying the planned action, you can use the ApplySdmMaskingPolicyDifference operation to automatically process the difference columns.

sync_status

(required) Indicates if the difference column has been processed.Use GetDifferenceColumn operation to track whether the difference column has already been processed and applied to the masking policy.

time_last_synced

(optional) The date and time the SDM masking policy difference column was last synced, in the format defined by RFC3339.

DBMS_CLOUD_OCI_DATASAFE_REFERENCES_T Type

References to the sections of STIG, CIS, and/or GDPR relevant to the current finding.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_references_t FORCE AUTHID CURRENT_USER IS OBJECT (
  stig varchar2(32767),
  cis varchar2(32767),
  gdpr varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_references_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_references_t (
    stig varchar2,
    cis varchar2,
    gdpr varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

stig

(optional) Relevant section from STIG.

cis

(optional) Relevant section from CIS.

gdpr

(optional) Relevant section from GDPR.

DBMS_CLOUD_OCI_DATASAFE_FINDING_T Type

The particular finding reported by the security assessment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_finding_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  severity varchar2(32767),
  title varchar2(32767),
  remarks varchar2(32767),
  details json_element_t,
  summary varchar2(32767),
  references dbms_cloud_oci_datasafe_references_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_finding_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_finding_t (
    key varchar2,
    severity varchar2,
    title varchar2,
    remarks varchar2,
    details json_element_t,
    summary varchar2,
    references dbms_cloud_oci_datasafe_references_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(optional) A unique identifier for the finding. This is common for the finding across targets.

severity

(optional) The severity of the finding.

Allowed values are: 'HIGH', 'MEDIUM', 'LOW', 'EVALUATE', 'ADVISORY', 'PASS'

title

(optional) The short title for the finding.

remarks

(optional) The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.

details

(optional) The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.

summary

(optional) The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.

references

(optional) Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.

DBMS_CLOUD_OCI_DATASAFE_DIFFS_T Type

Results of the comparison of an item between two security assessments.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_diffs_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_current dbms_cloud_oci_datasafe_finding_t,
  baseline dbms_cloud_oci_datasafe_finding_t,
  removed_items dbms_cloud_oci_datasafe_varchar2_tbl,
  added_items dbms_cloud_oci_datasafe_varchar2_tbl,
  modified_items dbms_cloud_oci_datasafe_varchar2_tbl,
  severity varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_diffs_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_diffs_t (
    l_current dbms_cloud_oci_datasafe_finding_t,
    baseline dbms_cloud_oci_datasafe_finding_t,
    removed_items dbms_cloud_oci_datasafe_varchar2_tbl,
    added_items dbms_cloud_oci_datasafe_varchar2_tbl,
    modified_items dbms_cloud_oci_datasafe_varchar2_tbl,
    severity varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

l_current

(optional)

baseline

(optional)

removed_items

(optional) This array identifies the items that are present in the baseline, but are missing from the current assessment.

added_items

(optional) This array identifies the items that are present in the current assessment, but are missing from the baseline.

modified_items

(optional) This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.

severity

(optional) The severity of this diff.

Allowed values are: 'HIGH', 'MEDIUM', 'LOW', 'EVALUATE', 'ADVISORY', 'PASS'

DBMS_CLOUD_OCI_DATASAFE_DIMENSIONS_T Type

The scope of analytics data.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_dimensions_t FORCE AUTHID CURRENT_USER IS OBJECT (
  target_id varchar2(32767),
  sensitive_data_model_id varchar2(32767),
  sensitive_type_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_dimensions_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_dimensions_t (
    target_id varchar2,
    sensitive_data_model_id varchar2,
    sensitive_type_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

target_id

(optional) The OCID of the target database.

sensitive_data_model_id

(optional) The OCID of the sensitive data model.

sensitive_type_id

(optional) The OCID of the sensitive type.

DBMS_CLOUD_OCI_DATASAFE_DISCOVERY_ANALYTICS_SUMMARY_T Type

Summary of discovery analytics data.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_discovery_analytics_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  metric_name varchar2(32767),
  dimensions dbms_cloud_oci_datasafe_dimensions_t,
  l_count number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_discovery_analytics_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_discovery_analytics_summary_t (
    metric_name varchar2,
    dimensions dbms_cloud_oci_datasafe_dimensions_t,
    l_count number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

metric_name

(required) The name of the aggregation metric.

Allowed values are: 'SENSITIVE_DATA_MODEL', 'SENSITIVE_TYPE', 'SENSITIVE_SCHEMA', 'SENSITIVE_TABLE', 'SENSITIVE_COLUMN', 'SENSITIVE_DATA_VALUE', 'TARGET_DATABASE'

dimensions

(optional)

l_count

(required) The total count for the aggregation metric.

DBMS_CLOUD_OCI_DATASAFE_DISCOVERY_ANALYTICS_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_discovery_analytics_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_discovery_analytics_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_discovery_analytics_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_DISCOVERY_ANALYTICS_COLLECTION_T Type

A collection of discovery analytics summary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_discovery_analytics_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_discovery_analytics_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_discovery_analytics_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_discovery_analytics_collection_t (
    items dbms_cloud_oci_datasafe_discovery_analytics_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) An array of discovery analytics summary objects.

DBMS_CLOUD_OCI_DATASAFE_DISCOVERY_JOB_T Type

A data discovery job. It helps track job's metadata as well as result statistics.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_discovery_job_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  discovery_type varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  time_started timestamp with time zone,
  time_finished timestamp with time zone,
  lifecycle_state varchar2(32767),
  sensitive_data_model_id varchar2(32767),
  target_id varchar2(32767),
  schemas_for_discovery dbms_cloud_oci_datasafe_varchar2_tbl,
  sensitive_type_ids_for_discovery dbms_cloud_oci_datasafe_varchar2_tbl,
  is_sample_data_collection_enabled number,
  is_app_defined_relation_discovery_enabled number,
  is_include_all_schemas number,
  is_include_all_sensitive_types number,
  total_schemas_scanned number,
  total_objects_scanned number,
  total_columns_scanned number,
  total_new_sensitive_columns number,
  total_modified_sensitive_columns number,
  total_deleted_sensitive_columns number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_discovery_job_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_discovery_job_t (
    id varchar2,
    discovery_type varchar2,
    display_name varchar2,
    compartment_id varchar2,
    time_started timestamp with time zone,
    time_finished timestamp with time zone,
    lifecycle_state varchar2,
    sensitive_data_model_id varchar2,
    target_id varchar2,
    schemas_for_discovery dbms_cloud_oci_datasafe_varchar2_tbl,
    sensitive_type_ids_for_discovery dbms_cloud_oci_datasafe_varchar2_tbl,
    is_sample_data_collection_enabled number,
    is_app_defined_relation_discovery_enabled number,
    is_include_all_schemas number,
    is_include_all_sensitive_types number,
    total_schemas_scanned number,
    total_objects_scanned number,
    total_columns_scanned number,
    total_new_sensitive_columns number,
    total_modified_sensitive_columns number,
    total_deleted_sensitive_columns 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) The OCID of the discovery job.

discovery_type

(required) The type of the discovery job. It defines the job's scope. NEW identifies new sensitive columns in the target database that are not in the sensitive data model. DELETED identifies columns that are present in the sensitive data model but have been deleted from the target database. MODIFIED identifies columns that are present in the target database as well as the sensitive data model but some of their attributes have been modified. ALL covers all the above three scenarios and reports new, deleted and modified columns.

Allowed values are: 'ALL', 'NEW', 'MODIFIED', 'DELETED'

display_name

(required) The display name of the discovery job.

compartment_id

(required) The OCID of the compartment that contains the discovery job.

time_started

(required) The date and time the discovery job started, in the format defined by RFC3339.

time_finished

(required) The date and time the discovery job finished, in the format defined by RFC3339..

lifecycle_state

(required) The current state of the discovery job.

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

sensitive_data_model_id

(required) The OCID of the sensitive data model associated with the discovery job.

target_id

(required) The OCID of the target database associated with the discovery job.

schemas_for_discovery

(optional) The schemas used for data discovery.

sensitive_type_ids_for_discovery

(optional) The OCIDs of the sensitive types used for data discovery.

is_sample_data_collection_enabled

(required) Indicates if the discovery job should collect and store sample data values for the discovered columns. Sample data helps review the discovered columns and ensure that they actually contain sensitive data. As it collects original data from the target database, it's disabled by default and should be used only if it's acceptable to store sample data in Data Safe's repository in Oracle Cloud. Note that sample data values are not collected for columns with the following data types: LONG, LOB, RAW, XMLTYPE and BFILE.

is_app_defined_relation_discovery_enabled

(required) Indicates if the discovery job should identify potential application-level (non-dictionary) referential relationships between columns. Note that data discovery automatically identifies and adds database-level (dictionary-defined) relationships. This option helps identify application-level relationships that are not defined in the database dictionary, which in turn, helps identify additional sensitive columns and preserve referential integrity during data masking. It's disabled by default and should be used only if there is a need to identify application-level relationships.

is_include_all_schemas

(required) Indicates if all the schemas in the associated target database are used for data discovery. If it is set to true, sensitive data is discovered in all schemas (except for schemas maintained by Oracle).

is_include_all_sensitive_types

(required) Indicates if all the existing sensitive types are used for data discovery. If it's set to true, the sensitiveTypeIdsForDiscovery attribute is ignored and all sensitive types are used.

total_schemas_scanned

(required) The total number of schemas scanned by the discovery job.

total_objects_scanned

(required) The total number of objects (tables and editioning views) scanned by the discovery job.

total_columns_scanned

(required) The total number of columns scanned by the discovery job.

total_new_sensitive_columns

(required) The total number of new sensitive columns identified by the discovery job.

total_modified_sensitive_columns

(required) The total number of modified sensitive columns identified by the discovery job.

total_deleted_sensitive_columns

(required) The total number of deleted sensitive columns identified by the discovery job.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_DISCOVERY_JOB_SUMMARY_T Type

Summary of a discovery job.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_discovery_job_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  time_started timestamp with time zone,
  time_finished timestamp with time zone,
  sensitive_data_model_id varchar2(32767),
  target_id varchar2(32767),
  lifecycle_state varchar2(32767),
  discovery_type varchar2(32767),
  compartment_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_discovery_job_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_discovery_job_summary_t (
    id varchar2,
    display_name varchar2,
    time_started timestamp with time zone,
    time_finished timestamp with time zone,
    sensitive_data_model_id varchar2,
    target_id varchar2,
    lifecycle_state varchar2,
    discovery_type varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the discovery job.

display_name

(required) The display name of the discovery job.

time_started

(required) The date and time the discovery job started, in the format defined by RFC3339.

time_finished

(required) The date and time the discovery job finished, in the format defined by RFC3339.

sensitive_data_model_id

(required) The OCID of the sensitive data model associated with the discovery job.

target_id

(required) The OCID of the target database associated with the discovery job.

lifecycle_state

(required) The current state of the discovery job.

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

discovery_type

(required) The type of discovery.

compartment_id

(required) The OCID of the compartment to contain the discovery job.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_DISCOVERY_JOB_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_discovery_job_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_discovery_job_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_discovery_job_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_DISCOVERY_JOB_COLLECTION_T Type

A collection of discovery job summary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_discovery_job_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_discovery_job_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_discovery_job_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_discovery_job_collection_t (
    items dbms_cloud_oci_datasafe_discovery_job_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) An array of discovery job summary objects.

DBMS_CLOUD_OCI_DATASAFE_MODIFIED_ATTRIBUTES_T Type

The attributes of a sensitive column that have been modified in the target database. It's populated only in the case of MODIFIED discovery results and shows the new values of the modified attributes.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_modified_attributes_t FORCE AUTHID CURRENT_USER IS OBJECT (
  app_defined_child_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
  db_defined_child_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_modified_attributes_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_modified_attributes_t (
    app_defined_child_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
    db_defined_child_column_keys dbms_cloud_oci_datasafe_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

app_defined_child_column_keys

(optional) Unique keys identifying the columns that are application-level (non-dictionary) children of the sensitive column.

db_defined_child_column_keys

(optional) Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column.

DBMS_CLOUD_OCI_DATASAFE_DISCOVERY_JOB_RESULT_T Type

A discovery job result representing a sensitive column. It can be one of the following three types: NEW: A new sensitive column in the target database that is not in the sensitive data model. DELETED: A column that is present in the sensitive data model but has been deleted from the target database. MODIFIED: A column that is present in the target database as well as the sensitive data model but some of its attributes have been modified.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_discovery_job_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  discovery_type varchar2(32767),
  sensitive_columnkey varchar2(32767),
  app_name varchar2(32767),
  schema_name varchar2(32767),
  object_name varchar2(32767),
  column_name varchar2(32767),
  object_type varchar2(32767),
  data_type varchar2(32767),
  sensitive_type_id varchar2(32767),
  parent_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
  relation_type varchar2(32767),
  estimated_data_value_count number,
  sample_data_values dbms_cloud_oci_datasafe_varchar2_tbl,
  app_defined_child_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
  db_defined_child_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
  planned_action varchar2(32767),
  is_result_applied number,
  discovery_job_id varchar2(32767),
  modified_attributes dbms_cloud_oci_datasafe_modified_attributes_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_discovery_job_result_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_discovery_job_result_t (
    key varchar2,
    discovery_type varchar2,
    sensitive_columnkey varchar2,
    app_name varchar2,
    schema_name varchar2,
    object_name varchar2,
    column_name varchar2,
    object_type varchar2,
    data_type varchar2,
    sensitive_type_id varchar2,
    parent_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
    relation_type varchar2,
    estimated_data_value_count number,
    sample_data_values dbms_cloud_oci_datasafe_varchar2_tbl,
    app_defined_child_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
    db_defined_child_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
    planned_action varchar2,
    is_result_applied number,
    discovery_job_id varchar2,
    modified_attributes dbms_cloud_oci_datasafe_modified_attributes_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) The unique key that identifies the discovery result.

discovery_type

(required) The type of the discovery result. It can be one of the following three types: NEW: A new sensitive column in the target database that is not in the sensitive data model. DELETED: A column that is present in the sensitive data model but has been deleted from the target database. MODIFIED: A column that is present in the target database as well as the sensitive data model but some of its attributes have been modified.

Allowed values are: 'NEW', 'MODIFIED', 'DELETED'

sensitive_columnkey

(optional) The unique key that identifies the sensitive column represented by the discovery result.

app_name

(optional) The name of the application. An application is an entity that is identified by a schema and stores sensitive information for that schema. Its value will be same as schemaName, if no value is passed.

schema_name

(required) The database schema that contains the sensitive column.

object_name

(required) The database object that contains the sensitive column.

column_name

(required) The name of the sensitive column.

object_type

(required) The type of the database object that contains the sensitive column.

Allowed values are: 'TABLE', 'EDITIONING_VIEW'

data_type

(required) The data type of the sensitive column.

sensitive_type_id

(optional) The OCID of the sensitive type associated with the sensitive column.

parent_column_keys

(optional) Unique keys identifying the columns that are parents of the sensitive column. At present, it tracks a single parent only.

relation_type

(required) The type of referential relationship the sensitive column has with its parent. NONE indicates that the sensitive column does not have a parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary.

Allowed values are: 'NONE', 'APP_DEFINED', 'DB_DEFINED'

estimated_data_value_count

(required) The estimated number of data values the column has in the associated database.

sample_data_values

(optional) Original data values collected for the sensitive column from the associated database. Sample data helps review the column and ensure that it actually contains sensitive data. Note that sample data is retrieved by a data discovery job only if the isSampleDataCollectionEnabled attribute is set to true. At present, only one data value is collected per sensitive column.

app_defined_child_column_keys

(optional) Unique keys identifying the columns that are application-level (non-dictionary) children of the sensitive column.

db_defined_child_column_keys

(optional) Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column.

planned_action

(required) Specifies how to process the discovery result. It's set to NONE by default. Use the PatchDiscoveryJobResults operation to update this attribute. You can choose one of the following options: ACCEPT: To accept the discovery result and update the sensitive data model to reflect the changes. REJECT: To reject the discovery result so that it doesn't change the sensitive data model. INVALIDATE: To invalidate a newly discovered column. It adds the column to the sensitive data model but marks it as invalid. It helps track false positives and ensure that they aren't reported by future discovery jobs. After specifying the planned action, you can use the ApplyDiscoveryJobResults operation to automatically process the discovery results.

Allowed values are: 'NONE', 'ACCEPT', 'INVALIDATE', 'REJECT'

is_result_applied

(required) Indicates whether the discovery result has been processed. You can update this attribute using the PatchDiscoveryJobResults operation to track whether the discovery result has already been processed and applied to the sensitive data model.

discovery_job_id

(required) The OCID of the discovery job.

modified_attributes

(optional)

DBMS_CLOUD_OCI_DATASAFE_DISCOVERY_JOB_RESULT_SUMMARY_T Type

Summary of a discovery job result.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_discovery_job_result_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  discovery_type varchar2(32767),
  sensitive_columnkey varchar2(32767),
  schema_name varchar2(32767),
  object_name varchar2(32767),
  column_name varchar2(32767),
  object_type varchar2(32767),
  data_type varchar2(32767),
  sensitive_type_id varchar2(32767),
  parent_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
  relation_type varchar2(32767),
  estimated_data_value_count number,
  sample_data_values dbms_cloud_oci_datasafe_varchar2_tbl,
  planned_action varchar2(32767),
  is_result_applied number,
  discovery_job_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_discovery_job_result_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_discovery_job_result_summary_t (
    key varchar2,
    discovery_type varchar2,
    sensitive_columnkey varchar2,
    schema_name varchar2,
    object_name varchar2,
    column_name varchar2,
    object_type varchar2,
    data_type varchar2,
    sensitive_type_id varchar2,
    parent_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
    relation_type varchar2,
    estimated_data_value_count number,
    sample_data_values dbms_cloud_oci_datasafe_varchar2_tbl,
    planned_action varchar2,
    is_result_applied number,
    discovery_job_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) The unique key that identifies the discovery result.

discovery_type

(required) The type of the discovery result. It can be one of the following three types: NEW: A new sensitive column in the target database that is not in the sensitive data model. DELETED: A column that is present in the sensitive data model but has been deleted from the target database. MODIFIED: A column that is present in the target database as well as the sensitive data model but some of its attributes have been modified.

sensitive_columnkey

(optional) The unique key that identifies the sensitive column represented by the discovery result.

schema_name

(required) The database schema that contains the sensitive column.

object_name

(required) The database object that contains the sensitive column.

column_name

(required) The name of the sensitive column.

object_type

(required) The type of the database object that contains the sensitive column.

Allowed values are: 'TABLE', 'EDITIONING_VIEW'

data_type

(required) The data type of the sensitive column.

sensitive_type_id

(optional) The OCID of the sensitive type associated with the sensitive column.

parent_column_keys

(optional) Unique keys identifying the columns that are parents of the sensitive column. At present, it tracks a single parent only.

relation_type

(required) The type of referential relationship the sensitive column has with its parent. NONE indicates that the sensitive column does not have a parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary.

Allowed values are: 'NONE', 'APP_DEFINED', 'DB_DEFINED'

estimated_data_value_count

(required) The estimated number of data values the column has in the associated database.

sample_data_values

(optional) Original data values collected for the sensitive column from the associated database. Sample data helps review the column and ensure that it actually contains sensitive data. Note that sample data is retrieved by a data discovery job only if the isSampleDataCollectionEnabled attribute is set to true. At present, only one data value is collected per sensitive column.

planned_action

(required) Specifies how to process the discovery result. It's set to NONE by default. Use the PatchDiscoveryJobResults operation to update this attribute. You can choose one of the following options: ACCEPT: To accept the discovery result and update the sensitive data model to reflect the changes. REJECT: To reject the discovery result so that it doesn't change the sensitive data model. INVALIDATE: To invalidate a newly discovered column. It adds the column to the sensitive data model but marks it as invalid. It helps track false positives and ensure that they aren't reported by future discovery jobs. After specifying the planned action, you can use the ApplyDiscoveryJobResults operation to automatically process the discovery results.

is_result_applied

(required) Indicates whether the discovery result has been processed. You can update this attribute using the PatchDiscoveryJobResults operation to track whether the discovery result has already been processed and applied to the sensitive data model.

discovery_job_id

(required) The OCID of the discovery job.

DBMS_CLOUD_OCI_DATASAFE_DISCOVERY_JOB_RESULT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_discovery_job_result_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_discovery_job_result_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_discovery_job_result_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_DISCOVERY_JOB_RESULT_COLLECTION_T Type

A collection of discovery job result summary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_discovery_job_result_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_discovery_job_result_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_discovery_job_result_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_discovery_job_result_collection_t (
    items dbms_cloud_oci_datasafe_discovery_job_result_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) An array of discovery job result summary objects.

DBMS_CLOUD_OCI_DATASAFE_DOWNLOAD_DISCOVERY_REPORT_DETAILS_T Type

Details to download a discovery report.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_download_discovery_report_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  discovery_job_id varchar2(32767),
  report_format varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_download_discovery_report_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_download_discovery_report_details_t (
    discovery_job_id varchar2,
    report_format varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

discovery_job_id

(optional) The OCID of the discovery job.

report_format

(optional) Format of the report.

Allowed values are: 'PDF', 'XLS'

DBMS_CLOUD_OCI_DATASAFE_DOWNLOAD_MASKING_LOG_DETAILS_T Type

Details to download the masking log.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_download_masking_log_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  target_id varchar2(32767),
  masking_work_request_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_download_masking_log_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_download_masking_log_details_t (
    target_id varchar2,
    masking_work_request_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

target_id

(optional) The OCID of the target database for which the masking log is to be downloaded.

masking_work_request_id

(optional) The OCID of the masking work request that resulted in this masking log.

DBMS_CLOUD_OCI_DATASAFE_DOWNLOAD_MASKING_POLICY_DETAILS_T Type

Details to download a masking policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_download_masking_policy_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  policy_format varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_download_masking_policy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_download_masking_policy_details_t (
    policy_format varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

policy_format

(optional) The format of the masking policy file.

Allowed values are: 'XML'

DBMS_CLOUD_OCI_DATASAFE_DOWNLOAD_MASKING_REPORT_DETAILS_T Type

Details to download a masking report.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_download_masking_report_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  report_id varchar2(32767),
  report_format varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_download_masking_report_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_download_masking_report_details_t (
    report_id varchar2,
    report_format varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

report_id

(required) The OCID of the masking report to be downloaded.

report_format

(required) Format of the report.

Allowed values are: 'PDF', 'XLS'

DBMS_CLOUD_OCI_DATASAFE_DOWNLOAD_SECURITY_ASSESSMENT_REPORT_DETAILS_T Type

The details used to download a security assessment report.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_download_security_assessment_report_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  format varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_download_security_assessment_report_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_download_security_assessment_report_details_t (
    format varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

format

(required) Format of the report.

Allowed values are: 'PDF', 'XLS'

DBMS_CLOUD_OCI_DATASAFE_DOWNLOAD_SENSITIVE_DATA_MODEL_DETAILS_T Type

Details to download a sensitive data model.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_download_sensitive_data_model_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  data_model_format varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_download_sensitive_data_model_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_download_sensitive_data_model_details_t (
    data_model_format varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

data_model_format

(optional) The format of the sensitive data model file.

Allowed values are: 'XML'

DBMS_CLOUD_OCI_DATASAFE_DOWNLOAD_USER_ASSESSMENT_REPORT_DETAILS_T Type

The details used to download a user assessment report.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_download_user_assessment_report_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  format varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_download_user_assessment_report_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_download_user_assessment_report_details_t (
    format varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

format

(required) Format of the report.

Allowed values are: 'PDF', 'XLS'

DBMS_CLOUD_OCI_DATASAFE_ENABLE_DATA_SAFE_CONFIGURATION_DETAILS_T Type

The details used to enable Data Safe in the tenancy and region.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_enable_data_safe_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_enabled number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_enable_data_safe_configuration_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_enable_data_safe_configuration_details_t (
    is_enabled number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_enabled

(required) Indicates if Data Safe is enabled.

DBMS_CLOUD_OCI_DATASAFE_ENTRY_DETAILS_T Type

Details specific to the security policy entry.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_entry_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  entry_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_entry_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_entry_details_t (
    entry_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

entry_type

(required) The security policy entry type. Allowed values: - FIREWALL_POLICY - The SQL Firewall policy entry type.

Allowed values are: 'FIREWALL_POLICY'

DBMS_CLOUD_OCI_DATASAFE_ERROR_T Type

Error Information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_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_DATASAFE_FINDING_SUMMARY_T Type

The particular finding reported by the security assessment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_finding_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  severity varchar2(32767),
  assessment_id varchar2(32767),
  target_id varchar2(32767),
  key varchar2(32767),
  title varchar2(32767),
  remarks varchar2(32767),
  details json_element_t,
  summary varchar2(32767),
  references dbms_cloud_oci_datasafe_references_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_finding_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_finding_summary_t (
    severity varchar2,
    assessment_id varchar2,
    target_id varchar2,
    key varchar2,
    title varchar2,
    remarks varchar2,
    details json_element_t,
    summary varchar2,
    references dbms_cloud_oci_datasafe_references_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

severity

(optional) The severity of the finding as determined by security assessment and is same as oracleDefinedSeverity, unless modified by user.

Allowed values are: 'HIGH', 'MEDIUM', 'LOW', 'EVALUATE', 'ADVISORY', 'PASS'

assessment_id

(optional) The OCID of the assessment that generated this finding.

target_id

(optional) The OCID of the target database.

key

(optional) The unique finding key. This is a system-generated identifier. To get the finding key for a finding, use ListFindings.

title

(optional) The short title for the finding.

remarks

(optional) The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.

details

(optional) The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.

summary

(optional) The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.

references

(optional) Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, a STIG rule, or a GDPR Article/Recital.

DBMS_CLOUD_OCI_DATASAFE_FIREWALL_POLICY_ENTRY_DETAILS_T Type

SQL Firewall policy details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_firewall_policy_entry_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_entry_details_t (
  time_generated timestamp with time zone,
  time_status_updated timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_firewall_policy_entry_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_firewall_policy_entry_details_t (
    entry_type varchar2,
    time_generated timestamp with time zone,
    time_status_updated timestamp with time zone
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_firewall_policy_entry_details_t is a subtype of the dbms_cloud_oci_datasafe_entry_details_t type.

Fields

Field Description

time_generated

(required) The time the the SQL Firewall policy was generated on the target database, in the format defined by RFC3339.

time_status_updated

(optional) The last date and time the status of the SQL Firewall policy was updated on the target database, in the format defined by RFC3339.

DBMS_CLOUD_OCI_DATASAFE_FIXED_NUMBER_FORMAT_ENTRY_T Type

The Fixed Number masking format uses a constant number for masking. To learn more, check Fixed Number in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_fixed_number_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  fixed_number number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_fixed_number_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_fixed_number_format_entry_t (
    l_type varchar2,
    description varchar2,
    fixed_number number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_fixed_number_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

Fields

Field Description

fixed_number

(required) The constant number to be used for masking.

DBMS_CLOUD_OCI_DATASAFE_FIXED_STRING_FORMAT_ENTRY_T Type

The Fixed String masking format uses a constant string for masking. To learn more, check Fixed String in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_fixed_string_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  fixed_string varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_fixed_string_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_fixed_string_format_entry_t (
    l_type varchar2,
    description varchar2,
    fixed_string varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_fixed_string_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

Fields

Field Description

fixed_string

(required) The constant string to be used for masking.

DBMS_CLOUD_OCI_DATASAFE_GENERATE_DISCOVERY_REPORT_FOR_DOWNLOAD_DETAILS_T Type

Details to generate a downloadable discovery report.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_generate_discovery_report_for_download_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  discovery_job_id varchar2(32767),
  report_format varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_generate_discovery_report_for_download_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_generate_discovery_report_for_download_details_t (
    discovery_job_id varchar2,
    report_format varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

discovery_job_id

(optional) The OCID of the discovery job.

report_format

(required) Format of the report.

Allowed values are: 'PDF', 'XLS'

DBMS_CLOUD_OCI_DATASAFE_GENERATE_MASKING_POLICY_FOR_DOWNLOAD_DETAILS_T Type

Details to generate a downloadable masking policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_generate_masking_policy_for_download_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  policy_format varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_generate_masking_policy_for_download_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_generate_masking_policy_for_download_details_t (
    policy_format varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

policy_format

(optional) The format of the masking policy file.

Allowed values are: 'XML'

DBMS_CLOUD_OCI_DATASAFE_GENERATE_MASKING_REPORT_FOR_DOWNLOAD_DETAILS_T Type

Details to generate a downloadable masking report.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_generate_masking_report_for_download_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  report_id varchar2(32767),
  report_format varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_generate_masking_report_for_download_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_generate_masking_report_for_download_details_t (
    report_id varchar2,
    report_format varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

report_id

(required) The OCID of the masking report for which a downloadable file is to be generated.

report_format

(required) Format of the report.

Allowed values are: 'PDF', 'XLS'

DBMS_CLOUD_OCI_DATASAFE_GENERATE_ON_PREM_CONNECTOR_CONFIGURATION_DETAILS_T Type

The details used to create and download on-premises connector's configuration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_generate_on_prem_connector_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  password varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_generate_on_prem_connector_configuration_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_generate_on_prem_connector_configuration_details_t (
    password varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

password

(required) The password to encrypt the keys inside the wallet included as part of the configuration. The password must be between 12 and 30 characters long and must contain atleast 1 uppercase, 1 lowercase, 1 numeric, and 1 special character.

DBMS_CLOUD_OCI_DATASAFE_GENERATE_REPORT_DETAILS_T Type

Details for the report generation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_generate_report_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  target_ids dbms_cloud_oci_datasafe_varchar2_tbl,
  description varchar2(32767),
  compartment_id varchar2(32767),
  mime_type varchar2(32767),
  time_less_than timestamp with time zone,
  time_greater_than timestamp with time zone,
  row_limit number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_generate_report_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_generate_report_details_t (
    display_name varchar2,
    target_ids dbms_cloud_oci_datasafe_varchar2_tbl,
    description varchar2,
    compartment_id varchar2,
    mime_type varchar2,
    time_less_than timestamp with time zone,
    time_greater_than timestamp with time zone,
    row_limit number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) The name of the report to be generated

target_ids

(optional) Array of database target OCIDs.

description

(optional) The description of the report to be generated

compartment_id

(required) The OCID of the compartment into which the resource should be moved.

mime_type

(required) Specifies the format of report to be .xls or .pdf

Allowed values are: 'PDF', 'XLS'

time_less_than

(optional) Specifies the time until which the data needs to be reported.

time_greater_than

(optional) Specifies the time after which the data needs to be reported.

row_limit

(optional) Specifies the limit on the number of rows in the report.

DBMS_CLOUD_OCI_DATASAFE_GENERATE_SECURITY_ASSESSMENT_REPORT_DETAILS_T Type

The details used to generate a new security assessment report.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_generate_security_assessment_report_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  format varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_generate_security_assessment_report_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_generate_security_assessment_report_details_t (
    format varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

format

(required) Format of the report.

Allowed values are: 'PDF', 'XLS'

DBMS_CLOUD_OCI_DATASAFE_GENERATE_SENSITIVE_DATA_MODEL_FOR_DOWNLOAD_DETAILS_T Type

Details to generate a downloadable sensitive data model.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_generate_sensitive_data_model_for_download_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  data_model_format varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_generate_sensitive_data_model_for_download_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_generate_sensitive_data_model_for_download_details_t (
    data_model_format varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

data_model_format

(optional) The format of the sensitive data model file.

Allowed values are: 'XML'

DBMS_CLOUD_OCI_DATASAFE_GENERATE_USER_ASSESSMENT_REPORT_DETAILS_T Type

The details used to generate a new user assessment report.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_generate_user_assessment_report_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  format varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_generate_user_assessment_report_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_generate_user_assessment_report_details_t (
    format varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

format

(required) Format of the report.

Allowed values are: 'PDF', 'XLS'

DBMS_CLOUD_OCI_DATASAFE_GRANT_SUMMARY_T Type

The summary of user grants.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_grant_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  grant_name varchar2(32767),
  privilege_type varchar2(32767),
  privilege_category varchar2(32767),
  depth_level number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_grant_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_grant_summary_t (
    key varchar2,
    grant_name varchar2,
    privilege_type varchar2,
    privilege_category varchar2,
    depth_level number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) The unique key of a user grant.

grant_name

(optional) The name of a user grant.

privilege_type

(optional) The type of a user grant.

Allowed values are: 'SYSTEM_PRIVILEGE', 'OBJECT_PRIVILEGE', 'ADMIN_PRIVILEGE', 'ROLE'

privilege_category

(optional) The privilege category.

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

depth_level

(optional) The grant depth level of the indirect grant. An indirectly granted role/privilege is granted to the user through another role. The depth level indicates how deep a privilege is within the grant hierarchy.

DBMS_CLOUD_OCI_DATASAFE_INITIALIZATION_PARAMETER_T Type

Encapsulates a parameter name and its value.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_initialization_parameter_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  value varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_initialization_parameter_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_initialization_parameter_t (
    name varchar2,
    value varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) The name of the parameter.

value

(required) The value of the parameter.

DBMS_CLOUD_OCI_DATASAFE_INSTALLED_DATABASE_DETAILS_T Type

The details of the database running on-premises or on a compute instance.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_installed_database_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_database_details_t (
  instance_id varchar2(32767),
  ip_addresses dbms_cloud_oci_datasafe_varchar2_tbl,
  listener_port number,
  service_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_installed_database_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_installed_database_details_t (
    database_type varchar2,
    infrastructure_type varchar2,
    instance_id varchar2,
    ip_addresses dbms_cloud_oci_datasafe_varchar2_tbl,
    listener_port number,
    service_name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_installed_database_details_t is a subtype of the dbms_cloud_oci_datasafe_database_details_t type.

Fields

Field Description

instance_id

(optional) The OCID of the compute instance on which the database is running.

ip_addresses

(optional) The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.

listener_port

(required) The port number of the database listener.

service_name

(required) The service name of the database registered as target database.

DBMS_CLOUD_OCI_DATASAFE_LIBRARY_MASKING_FORMAT_T Type

A library masking format is a masking format stored in an Oracle Cloud Infrastructure compartment and can be used in multiple masking policies. If you want to use the same masking logic for multiple masking columns or even in multiple masking policies, you can create a library masking format and assign it to masking columns as needed. It helps you avoid defining the same masking logic again and again. Oracle Data Safe provides a set of predefined library masking formats to mask common sensitive and personal data, such as names, national identifiers, credit card numbers, and phone numbers. To meet your specific requirements, you can easily create new library masking formats and use them in your masking policies.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_library_masking_format_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  description varchar2(32767),
  sensitive_type_ids dbms_cloud_oci_datasafe_varchar2_tbl,
  source varchar2(32767),
  format_entries dbms_cloud_oci_datasafe_format_entry_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_library_masking_format_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_library_masking_format_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    description varchar2,
    sensitive_type_ids dbms_cloud_oci_datasafe_varchar2_tbl,
    source varchar2,
    format_entries dbms_cloud_oci_datasafe_format_entry_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the library masking format.

compartment_id

(required) The OCID of the compartment that contains the library masking format.

display_name

(required) The display name of the library masking format.

time_created

(required) The date and time the library masking format was created, in the format defined by RFC3339

time_updated

(required) The date and time the library masking format was updated, in the format defined by RFC3339

lifecycle_state

(required) The current state of the library masking format.

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

description

(optional) The description of the library masking format.

sensitive_type_ids

(optional) An array of OCIDs of the sensitive types compatible with the library masking format.

source

(required) Specifies whether the library masking format is user-defined or predefined.

Allowed values are: 'ORACLE', 'USER'

format_entries

(optional) An array of format entries. The combined output of all the format entries is used for masking.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_LIBRARY_MASKING_FORMAT_SUMMARY_T Type

Summary of a library masking format.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_library_masking_format_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  description varchar2(32767),
  sensitive_type_ids dbms_cloud_oci_datasafe_varchar2_tbl,
  source varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_library_masking_format_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_library_masking_format_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    description varchar2,
    sensitive_type_ids dbms_cloud_oci_datasafe_varchar2_tbl,
    source varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the library masking format.

compartment_id

(required) The OCID of the compartment that contains the library masking format.

display_name

(required) The display name of the library masking format.

time_created

(required) The date and time the library masking format was created, in the format defined by RFC3339

time_updated

(required) The date and time the library masking format was updated, in the format defined by RFC3339

lifecycle_state

(required) The current state of the library masking format.

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

description

(optional) The description of the library masking format.

sensitive_type_ids

(optional) An array of OCIDs of the sensitive types compatible with the library masking format.

source

(required) Indicates whether the library masking format is user-defined or predefined.

Allowed values are: 'ORACLE', 'USER'

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_LIBRARY_MASKING_FORMAT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_library_masking_format_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_library_masking_format_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_library_masking_format_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_LIBRARY_MASKING_FORMAT_COLLECTION_T Type

A collection of library masking format summary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_library_masking_format_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_library_masking_format_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_library_masking_format_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_library_masking_format_collection_t (
    items dbms_cloud_oci_datasafe_library_masking_format_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) An array of library masking format summary objects.

DBMS_CLOUD_OCI_DATASAFE_LIBRARY_MASKING_FORMAT_ENTRY_T Type

A library masking format to be used for masking. It can be either a predefined or a user-defined library masking format. It enables reuse of an existing library masking format and helps avoid defining the masking logic again. Use the ListLibraryMaskingFormats operation to view the existing library masking formats.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_library_masking_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  library_masking_format_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_library_masking_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_library_masking_format_entry_t (
    l_type varchar2,
    description varchar2,
    library_masking_format_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_library_masking_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

Fields

Field Description

library_masking_format_id

(required) The OCID of the library masking format.

DBMS_CLOUD_OCI_DATASAFE_MASK_DATA_DETAILS_T Type

Details to mask data.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_mask_data_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  target_id varchar2(32767),
  is_decrypt number,
  is_rerun number,
  tablespace varchar2(32767),
  is_ignore_errors_enabled number,
  seed varchar2(32767),
  is_move_interim_tables_enabled number,
  is_execute_saved_script_enabled number,
  is_drop_temp_tables_enabled number,
  is_redo_logging_enabled number,
  is_refresh_stats_enabled number,
  parallel_degree varchar2(32767),
  recompile varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_mask_data_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_mask_data_details_t (
    target_id varchar2,
    is_decrypt number,
    is_rerun number,
    tablespace varchar2,
    is_ignore_errors_enabled number,
    seed varchar2,
    is_move_interim_tables_enabled number,
    is_execute_saved_script_enabled number,
    is_drop_temp_tables_enabled number,
    is_redo_logging_enabled number,
    is_refresh_stats_enabled number,
    parallel_degree varchar2,
    recompile varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

target_id

(optional) The OCID of the target database to be masked. If it's not provided, the value of the targetId attribute in the MaskingPolicy resource is used. The OCID of the target database to be masked. If it's not provided, the value of the targetId attribute in the MaskingPolicy resource is used.

is_decrypt

(optional) Indicates if the masking request is to decrypt the data values previously encrypted using Deterministic Encryption. Note that, to correctly decrypt the encrypted data values, it requires the same seed value that was provided to encrypt those data values.

is_rerun

(optional) Indicates if the masking request is to rerun the previously failed masking steps. If a masking request is submitted with the isIgnoreErrorsEnabled attribute set to true, the masking process tracks the failed masking steps. Another masking request can be submitted with the isRun attribute set to true to rerun those failed masking steps. It helps save time by executing only the failed masking steps and not doing the whole masking again.

tablespace

(optional) The tablespace that should be used to create the mapping tables, DMASK objects, and other temporary tables for data masking. If no tablespace is provided, the DEFAULT tablespace is used.

is_ignore_errors_enabled

(optional) Indicates if the masking process should continue on hitting an error. It provides fault tolerance support and is enabled by default. In fault-tolerant mode, the masking process saves the failed step and continues. You can then submit another masking request (with isRerun attribute set to true) to execute only the failed steps.

seed

(optional) The seed value to be used in case of Deterministic Encryption and Deterministic Substitution masking formats.

is_move_interim_tables_enabled

(optional) Indicates if the interim DMASK tables should be moved to the user-specified tablespace. As interim tables can be large in size, set it to false if moving them causes performance overhead during masking.

is_execute_saved_script_enabled

(optional) Indicates if data masking should be performed using a saved masking script. Setting this attribute to true skips masking script generation and executes the masking script stored in the Data Safe repository. It helps save time if there are no changes in the database tables and their dependencies.

is_drop_temp_tables_enabled

(optional) Indicates if the temporary tables created during a masking operation should be dropped after masking. Set this attribute to false to preserve the temporary tables. Masking creates temporary tables that map the original sensitive data values to mask values. These temporary tables are dropped after masking if this attribute is set as true. But, in some cases, you may want to preserve this information to track how masking changed your data. Note that doing so compromises security. These tables must be dropped before the database is available for unprivileged users. If it's not provided, the value of the isDropTempTablesEnabled attribute in the MaskingPolicy resource is used.

is_redo_logging_enabled

(optional) Indicates if redo logging is enabled during a masking operation. Set this attribute to true to enable redo logging. If set as false, masking disables redo logging and flashback logging to purge any original unmasked data from logs. However, in certain circumstances when you only want to test masking, rollback changes, and retry masking, you could enable logging and use a flashback database to retrieve the original unmasked data after it has been masked. If it's not provided, the value of the isRedoLoggingEnabled attribute in the MaskingPolicy resource is used.

is_refresh_stats_enabled

(optional) Indicates if statistics gathering is enabled. Set this attribute to false to disable statistics gathering. The masking process gathers statistics on masked database tables after masking completes. If it's not provided, the value of the isRefreshStatsEnabled attribute in the MaskingPolicy resource is used.

parallel_degree

(optional) Specifies options to enable parallel execution when running data masking. Allowed values are 'NONE' (no parallelism), 'DEFAULT' (the Oracle Database computes the optimum degree of parallelism) or an integer value to be used as the degree of parallelism. Parallel execution helps effectively use multiple CPUs and improve masking performance. Refer to the Oracle Database parallel execution framework when choosing an explicit degree of parallelism. https://www.oracle.com/pls/topic/lookup?ctx=dblatest&en/database/oracle/oracle-database&id=VLDBG-GUID-3E2AE088-2505-465E-A8B2-AC38813EA355 If it's not provided, the value of the parallelDegree attribute in the MaskingPolicy resource is used.

recompile

(optional) Specifies how to recompile invalid objects post data masking. Allowed values are 'SERIAL' (recompile in serial), 'PARALLEL' (recompile in parallel), 'NONE' (do not recompile). If it's set to PARALLEL, the value of parallelDegree attribute is used. Use the built-in UTL_RECOMP package to recompile any remaining invalid objects after masking completes. If it's not provided, the value of the parallelDegree attribute in the MaskingPolicy resource is used.

DBMS_CLOUD_OCI_DATASAFE_MASKED_COLUMN_SUMMARY_T Type

Summary of a masked column. A masked column is a database column masked by a data masking request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masked_column_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  parent_column_key varchar2(32767),
  sensitive_type_id varchar2(32767),
  schema_name varchar2(32767),
  object_name varchar2(32767),
  object_type varchar2(32767),
  column_name varchar2(32767),
  masking_column_group varchar2(32767),
  masking_format_used varchar2(32767),
  total_masked_values number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masked_column_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masked_column_summary_t (
    key varchar2,
    parent_column_key varchar2,
    sensitive_type_id varchar2,
    schema_name varchar2,
    object_name varchar2,
    object_type varchar2,
    column_name varchar2,
    masking_column_group varchar2,
    masking_format_used varchar2,
    total_masked_values number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) The unique key that identifies the masked column. It's numeric and unique within a masking policy.

parent_column_key

(optional) The unique key that identifies the parent column of the masked column.

sensitive_type_id

(optional) The OCID of the sensitive type associated with the masked column.

schema_name

(required) The name of the schema that contains the masked column.

object_name

(required) The name of the object (table or editioning view) that contains the masked column.

object_type

(required) The type of the object (table or editioning view) that contains the masked column.

Allowed values are: 'TABLE', 'EDITIONING_VIEW'

column_name

(required) The name of the masked column.

masking_column_group

(optional) The masking group of the masked column.

masking_format_used

(required) The masking format used for masking the column.

total_masked_values

(required) The total number of values masked in the column.

DBMS_CLOUD_OCI_DATASAFE_MASKED_COLUMN_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_masked_column_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masked_column_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_masked_column_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_MASKED_COLUMN_COLLECTION_T Type

A collection of masking column summary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masked_column_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_masked_column_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masked_column_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masked_column_collection_t (
    items dbms_cloud_oci_datasafe_masked_column_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) An array of masking column summary objects.

DBMS_CLOUD_OCI_DATASAFE_MASKING_ANALYTICS_DIMENSIONS_T Type

The scope of analytics data.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_analytics_dimensions_t FORCE AUTHID CURRENT_USER IS OBJECT (
  target_id varchar2(32767),
  policy_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_analytics_dimensions_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_analytics_dimensions_t (
    target_id varchar2,
    policy_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

target_id

(optional) The OCID of the target database.

policy_id

(optional) The OCID of the masking policy..

DBMS_CLOUD_OCI_DATASAFE_MASKING_ANALYTICS_SUMMARY_T Type

Summary of masking analytics data.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_analytics_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  metric_name varchar2(32767),
  dimensions dbms_cloud_oci_datasafe_masking_analytics_dimensions_t,
  l_count number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_analytics_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_analytics_summary_t (
    metric_name varchar2,
    dimensions dbms_cloud_oci_datasafe_masking_analytics_dimensions_t,
    l_count number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

metric_name

(required) The name of the aggregation metric.

Allowed values are: 'MASKING_POLICY', 'MASKING_DATABASE', 'MASKING_WORK_REQUEST', 'MASKED_SENSITIVE_TYPE', 'MASKED_SCHEMA', 'MASKED_TABLE', 'MASKED_COLUMN', 'MASKED_DATA_VALUE'

dimensions

(optional)

l_count

(required) The total count for the aggregation metric.

DBMS_CLOUD_OCI_DATASAFE_MASKING_ANALYTICS_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_masking_analytics_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_analytics_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_masking_analytics_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_MASKING_ANALYTICS_COLLECTION_T Type

A collection of masking analytics summary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_analytics_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_masking_analytics_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_analytics_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_analytics_collection_t (
    items dbms_cloud_oci_datasafe_masking_analytics_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) An array of masking analytics summary objects.

DBMS_CLOUD_OCI_DATASAFE_MASKING_COLUMN_T Type

A masking column is a resource corresponding to a database column that you want to mask. It's a subresource of masking policy resource and is always associated with a masking policy. Note that only parent columns are managed as masking columns. The child columns are automatically managed using the childColumns attribute.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_column_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  masking_policy_id varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  schema_name varchar2(32767),
  object_name varchar2(32767),
  object_type varchar2(32767),
  column_name varchar2(32767),
  child_columns dbms_cloud_oci_datasafe_varchar2_tbl,
  masking_column_group varchar2(32767),
  sensitive_type_id varchar2(32767),
  is_masking_enabled number,
  data_type varchar2(32767),
  masking_formats dbms_cloud_oci_datasafe_masking_format_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_column_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_column_t (
    key varchar2,
    masking_policy_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    schema_name varchar2,
    object_name varchar2,
    object_type varchar2,
    column_name varchar2,
    child_columns dbms_cloud_oci_datasafe_varchar2_tbl,
    masking_column_group varchar2,
    sensitive_type_id varchar2,
    is_masking_enabled number,
    data_type varchar2,
    masking_formats dbms_cloud_oci_datasafe_masking_format_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) The unique key that identifies the masking column. It's numeric and unique within a masking policy.

masking_policy_id

(required) The OCID of the masking policy that contains the masking column.

lifecycle_state

(required) The current state of the masking column.

Allowed values are: 'CREATING', 'ACTIVE', 'UPDATING', 'DELETING', 'NEEDS_ATTENTION', 'FAILED'

lifecycle_details

(optional) Details about the current state of the masking column.

time_created

(required) The date and time the masking column was created, in the format defined by RFC3339.

time_updated

(required) The date and time the masking column was last updated, in the format defined by RFC3339.

schema_name

(required) The name of the schema that contains the database column.

object_name

(required) The name of the object (table or editioning view) that contains the database column.

object_type

(optional) The type of the object that contains the database column.

Allowed values are: 'TABLE', 'EDITIONING_VIEW'

column_name

(required) The name of the database column. Note that the same name is used for the masking column. There is no separate displayName attribute for the masking column.

child_columns

(optional) An array of child columns that are in referential relationship with the masking column.

masking_column_group

(optional) The group of the masking column. All the columns in a group are masked together to ensure that the masked data across these columns continue to retain the same logical relationship. For more details, check <a href=https://docs.oracle.com/en/cloud/paas/data-safe/udscs/group-masking1.html#GUID-755056B9-9540-48C0-9491-262A44A85037>Group Masking in the Data Safe documentation.</a>

sensitive_type_id

(optional) The OCID of the sensitive type associated with the masking column.

is_masking_enabled

(required) Indicates whether data masking is enabled for the masking column.

data_type

(optional) The data type of the masking column.

masking_formats

(optional) An array of masking formats assigned to the masking column.

DBMS_CLOUD_OCI_DATASAFE_MASKING_COLUMN_SUMMARY_T Type

Summary of a masking column.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_column_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  masking_policy_id varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  schema_name varchar2(32767),
  object_name varchar2(32767),
  object_type varchar2(32767),
  column_name varchar2(32767),
  child_columns dbms_cloud_oci_datasafe_varchar2_tbl,
  masking_column_group varchar2(32767),
  sensitive_type_id varchar2(32767),
  is_masking_enabled number,
  data_type varchar2(32767),
  masking_formats dbms_cloud_oci_datasafe_masking_format_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_column_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_column_summary_t (
    key varchar2,
    masking_policy_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    schema_name varchar2,
    object_name varchar2,
    object_type varchar2,
    column_name varchar2,
    child_columns dbms_cloud_oci_datasafe_varchar2_tbl,
    masking_column_group varchar2,
    sensitive_type_id varchar2,
    is_masking_enabled number,
    data_type varchar2,
    masking_formats dbms_cloud_oci_datasafe_masking_format_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) The unique key that identifies a masking column. The key is numeric and unique within a masking policy.

masking_policy_id

(required) The OCID of the masking policy that contains the masking column.

lifecycle_state

(required) The current state of the masking column.

Allowed values are: 'CREATING', 'ACTIVE', 'UPDATING', 'DELETING', 'NEEDS_ATTENTION', 'FAILED'

lifecycle_details

(optional) Details about the current state of the masking column.

time_created

(required) The date and time the masking column was created, in the format defined by RFC3339.

time_updated

(required) The date and time the masking column was last updated, in the format defined by RFC3339.

schema_name

(required) The name of the schema that contains the database column.

object_name

(required) The name of the object (table or editioning view) that contains the database column.

object_type

(optional) The type of the object that contains the database column.

Allowed values are: 'TABLE', 'EDITIONING_VIEW'

column_name

(required) The name of the database column. Note that the same name is used for the masking column. There is no separate displayName attribute for the masking column.

child_columns

(optional) An array of child columns that are in referential relationship with the masking column.

masking_column_group

(optional) The group of the masking column. All the columns in a group are masked together to ensure that the masked data across these columns continue to retain the same logical relationship. For more details, check <a href=https://docs.oracle.com/en/cloud/paas/data-safe/udscs/group-masking1.html#GUID-755056B9-9540-48C0-9491-262A44A85037>Group Masking in the Data Safe documentation.</a>

sensitive_type_id

(optional) The OCID of the sensitive type associated with the masking column.

is_masking_enabled

(required) Indicates whether data masking is enabled for the masking column.

data_type

(optional) The data type of the masking column.

masking_formats

(optional) An array of masking formats assigned to the masking column.

DBMS_CLOUD_OCI_DATASAFE_MASKING_COLUMN_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_masking_column_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_column_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_masking_column_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_MASKING_COLUMN_COLLECTION_T Type

A collection of masking column summary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_column_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_masking_column_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_column_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_column_collection_t (
    items dbms_cloud_oci_datasafe_masking_column_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) An array of masking column summary objects.

DBMS_CLOUD_OCI_DATASAFE_MASKING_OBJECT_SUMMARY_T Type

Summary of a masking object present in a masking policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_object_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  schema_name varchar2(32767),
  object_name varchar2(32767),
  object_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_object_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_object_summary_t (
    schema_name varchar2,
    object_name varchar2,
    object_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

schema_name

(required) The database schema that contains the masking column.

object_name

(required) The database object that contains the masking column.

object_type

(required) The type of the database object that contains the masking column.

Allowed values are: 'TABLE', 'EDITIONING_VIEW'

DBMS_CLOUD_OCI_DATASAFE_MASKING_OBJECT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_masking_object_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_object_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_masking_object_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_MASKING_OBJECT_COLLECTION_T Type

A collection of masking object summary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_object_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_masking_object_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_object_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_object_collection_t (
    items dbms_cloud_oci_datasafe_masking_object_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) An array of masking object summary objects.

DBMS_CLOUD_OCI_DATASAFE_MASKING_POLICY_T Type

A masking policy defines the approach to mask data in a target database. It's basically a collection of columns to be masked, called masking columns, and the associated masking formats to be used to mask these columns. A masking policy can be used to mask multiple databases provided that they have the same schema design. For more information, see <a href=\"https://docs.oracle.com/en/cloud/paas/data-safe/udscs/masking-policies.html\">Masking Policies </a> in the Oracle Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  time_created timestamp with time zone,
  lifecycle_state varchar2(32767),
  time_updated timestamp with time zone,
  description varchar2(32767),
  is_drop_temp_tables_enabled number,
  is_redo_logging_enabled number,
  is_refresh_stats_enabled number,
  parallel_degree varchar2(32767),
  recompile varchar2(32767),
  pre_masking_script varchar2(32767),
  post_masking_script varchar2(32767),
  column_source dbms_cloud_oci_datasafe_column_source_details_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_policy_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    time_updated timestamp with time zone,
    description varchar2,
    is_drop_temp_tables_enabled number,
    is_redo_logging_enabled number,
    is_refresh_stats_enabled number,
    parallel_degree varchar2,
    recompile varchar2,
    pre_masking_script varchar2,
    post_masking_script varchar2,
    column_source dbms_cloud_oci_datasafe_column_source_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the masking policy.

compartment_id

(required) The OCID of the compartment that contains the masking policy.

display_name

(required) The display name of the masking policy.

time_created

(required) The date and time the masking policy was created, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the masking policy.

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

time_updated

(required) The date and time the masking policy was last updated, in the format defined by RFC3339

description

(optional) The description of the masking policy.

is_drop_temp_tables_enabled

(required) Indicates if the temporary tables created during a masking operation should be dropped after masking. It's enabled by default. Set this attribute to false to preserve the temporary tables. Masking creates temporary tables that map the original sensitive data values to mask values. By default, these temporary tables are dropped after masking. But, in some cases, you may want to preserve this information to track how masking changed your data. Note that doing so compromises security. These tables must be dropped before the database is available for unprivileged users.

is_redo_logging_enabled

(required) Indicates if redo logging is enabled during a masking operation. It's disabled by default. Set this attribute to true to enable redo logging. By default, masking disables redo logging and flashback logging to purge any original unmasked data from logs. However, in certain circumstances when you only want to test masking, rollback changes, and retry masking, you could enable logging and use a flashback database to retrieve the original unmasked data after it has been masked.

is_refresh_stats_enabled

(required) Indicates if statistics gathering is enabled. It's enabled by default. Set this attribute to false to disable statistics gathering. The masking process gathers statistics on masked database tables after masking completes.

parallel_degree

(required) Specifies options to enable parallel execution when running data masking. Allowed values are 'NONE' (no parallelism), 'DEFAULT' (the Oracle Database computes the optimum degree of parallelism) or an integer value to be used as the degree of parallelism. Parallel execution helps effectively use multiple CPUs and improve masking performance. Refer to the Oracle Database parallel execution framework when choosing an explicit degree of parallelism.

recompile

(required) Specifies how to recompile invalid objects post data masking. Allowed values are 'SERIAL' (recompile in serial), 'PARALLEL' (recompile in parallel), 'NONE' (do not recompile). If it's set to PARALLEL, the value of parallelDegree attribute is used. Use the built-in UTL_RECOMP package to recompile any remaining invalid objects after masking completes.

Allowed values are: 'SERIAL', 'PARALLEL', 'NONE'

pre_masking_script

(optional) A pre-masking script, which can contain SQL and PL/SQL statements. It's executed before the core masking script generated using the masking policy. It's usually used to perform any preparation or prerequisite work before masking data.

post_masking_script

(optional) A post-masking script, which can contain SQL and PL/SQL statements. It's executed after the core masking script generated using the masking policy. It's usually used to perform additional transformation or cleanup work after masking.

column_source

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_MASKING_POLICY_SUMMARY_T Type

Summary of a masking policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_policy_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  description varchar2(32767),
  column_source dbms_cloud_oci_datasafe_column_source_details_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_policy_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_policy_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    description varchar2,
    column_source dbms_cloud_oci_datasafe_column_source_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the masking policy.

compartment_id

(required) The OCID of the compartment that contains the masking policy.

display_name

(required) The display name of the masking policy.

time_created

(required) The date and time the masking policy was created, in the format defined by RFC3339.

time_updated

(required) The date and time the masking policy was last updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the masking policy.

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

description

(optional) The description of the masking policy.

column_source

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_MASKING_POLICY_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_masking_policy_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_policy_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_masking_policy_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_MASKING_POLICY_COLLECTION_T Type

A collection of masking policy summary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_policy_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_masking_policy_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_policy_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_policy_collection_t (
    items dbms_cloud_oci_datasafe_masking_policy_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) An array of masking policy summary objects.

DBMS_CLOUD_OCI_DATASAFE_MASKING_REPORT_T Type

A masking report contains information about a completed masking request. It includes details such as the target database masked, masking policy used, masking start and finish time, total number of schemas, tables, columns and values masked, masked columns, and the masking formats used.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_report_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  masking_work_request_id varchar2(32767),
  masking_policy_id varchar2(32767),
  target_id varchar2(32767),
  total_masked_sensitive_types number,
  total_masked_schemas number,
  total_masked_objects number,
  total_masked_columns number,
  total_masked_values number,
  time_masking_started timestamp with time zone,
  time_masking_finished timestamp with time zone,
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  is_drop_temp_tables_enabled number,
  is_redo_logging_enabled number,
  is_refresh_stats_enabled number,
  parallel_degree varchar2(32767),
  recompile varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_report_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_report_t (
    id varchar2,
    compartment_id varchar2,
    masking_work_request_id varchar2,
    masking_policy_id varchar2,
    target_id varchar2,
    total_masked_sensitive_types number,
    total_masked_schemas number,
    total_masked_objects number,
    total_masked_columns number,
    total_masked_values number,
    time_masking_started timestamp with time zone,
    time_masking_finished timestamp with time zone,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    is_drop_temp_tables_enabled number,
    is_redo_logging_enabled number,
    is_refresh_stats_enabled number,
    parallel_degree varchar2,
    recompile varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the masking report.

compartment_id

(required) The OCID of the compartment that contains the masking report.

masking_work_request_id

(required) The OCID of the masking work request that resulted in this masking report.

masking_policy_id

(required) The OCID of the masking policy used.

target_id

(required) The OCID of the target database masked.

total_masked_sensitive_types

(required) The total number of unique sensitive types associated with the masked columns.

total_masked_schemas

(required) The total number of unique schemas that contain the masked columns.

total_masked_objects

(required) The total number of unique objects (tables and editioning views) that contain the masked columns.

total_masked_columns

(required) The total number of masked columns.

total_masked_values

(required) The total number of masked values.

time_masking_started

(required) The date and time data masking started, in the format defined by RFC3339

time_masking_finished

(required) The date and time data masking finished, in the format defined by RFC3339

lifecycle_state

(required) The current state of the masking report.

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

time_created

(optional) The date and time the masking report was created, in the format defined by RFC3339.

is_drop_temp_tables_enabled

(optional) Indicates if the temporary tables created during the masking operation were dropped after masking.

is_redo_logging_enabled

(optional) Indicates if redo logging was enabled during the masking operation.

is_refresh_stats_enabled

(optional) Indicates if statistics gathering was enabled during the masking operation.

parallel_degree

(optional) Indicates if parallel execution was enabled during the masking operation.

recompile

(optional) Indicates how invalid objects were recompiled post the masking operation.

DBMS_CLOUD_OCI_DATASAFE_MASKING_REPORT_SUMMARY_T Type

Summary of a masking report.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_report_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  masking_work_request_id varchar2(32767),
  masking_policy_id varchar2(32767),
  target_id varchar2(32767),
  total_masked_sensitive_types number,
  total_masked_schemas number,
  total_masked_objects number,
  total_masked_columns number,
  total_masked_values number,
  time_masking_started timestamp with time zone,
  time_masking_finished timestamp with time zone,
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  is_drop_temp_tables_enabled number,
  is_redo_logging_enabled number,
  is_refresh_stats_enabled number,
  parallel_degree varchar2(32767),
  recompile varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_report_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_report_summary_t (
    id varchar2,
    compartment_id varchar2,
    masking_work_request_id varchar2,
    masking_policy_id varchar2,
    target_id varchar2,
    total_masked_sensitive_types number,
    total_masked_schemas number,
    total_masked_objects number,
    total_masked_columns number,
    total_masked_values number,
    time_masking_started timestamp with time zone,
    time_masking_finished timestamp with time zone,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    is_drop_temp_tables_enabled number,
    is_redo_logging_enabled number,
    is_refresh_stats_enabled number,
    parallel_degree varchar2,
    recompile varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the masking report.

compartment_id

(required) The OCID of the compartment that contains the masking report.

masking_work_request_id

(required) The OCID of the masking work request that resulted in this masking report.

masking_policy_id

(required) The OCID of the masking policy used.

target_id

(required) The OCID of the target database masked.

total_masked_sensitive_types

(required) The total number of unique sensitive types associated with the masked columns.

total_masked_schemas

(required) The total number of unique schemas that contain the masked columns.

total_masked_objects

(required) The total number of unique objects (tables and editioning views) that contain the masked columns.

total_masked_columns

(required) The total number of masked columns.

total_masked_values

(required) The total number of masked values.

time_masking_started

(required) The date and time data masking started, in the format defined by RFC3339

time_masking_finished

(required) The date and time data masking finished, in the format defined by RFC3339

lifecycle_state

(required) The current state of the masking report.

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

time_created

(optional) The date and time the masking report was created, in the format defined by RFC3339.

is_drop_temp_tables_enabled

(optional) Indicates if the temporary tables created during the masking operation were dropped after masking.

is_redo_logging_enabled

(optional) Indicates if redo logging was enabled during the masking operation.

is_refresh_stats_enabled

(optional) Indicates if statistics gathering was enabled during the masking operation.

parallel_degree

(optional) Indicates if parallel execution was enabled during the masking operation.

recompile

(optional) Indicates how invalid objects were recompiled post the masking operation.

DBMS_CLOUD_OCI_DATASAFE_MASKING_REPORT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_masking_report_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_report_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_masking_report_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_MASKING_REPORT_COLLECTION_T Type

A collection of masking report summary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_report_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_masking_report_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_report_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_report_collection_t (
    items dbms_cloud_oci_datasafe_masking_report_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) An array of masking report summary objects.

DBMS_CLOUD_OCI_DATASAFE_MASKING_SCHEMA_SUMMARY_T Type

Summary of a masking schema present in masking policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_schema_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  schema_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_schema_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_schema_summary_t (
    schema_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

schema_name

(required) The database schema that contains the masking column.

DBMS_CLOUD_OCI_DATASAFE_MASKING_SCHEMA_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_masking_schema_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_schema_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_masking_schema_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_MASKING_SCHEMA_COLLECTION_T Type

A collection of masking schema summary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_masking_schema_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_masking_schema_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_schema_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_masking_schema_collection_t (
    items dbms_cloud_oci_datasafe_masking_schema_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) An array of masking schema summary objects.

DBMS_CLOUD_OCI_DATASAFE_MODIFY_GLOBAL_SETTINGS_DETAILS_T Type

The details required to modify the global settings in Data Safe.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_modify_global_settings_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_paid_usage number,
  online_retention_period number,
  offline_retention_period number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_modify_global_settings_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_modify_global_settings_details_t (
    is_paid_usage number,
    online_retention_period number,
    offline_retention_period number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_paid_usage

(optional) The paid usage option chosen by the customer admin.

online_retention_period

(optional) The online retention period in months.

offline_retention_period

(optional) The offline retention period in months.

DBMS_CLOUD_OCI_DATASAFE_NULL_VALUE_FORMAT_ENTRY_T Type

The Null Value masking format replaces column data with NULL. The column being masked must be allowed to contain null values. To learn more, check Null Value in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_null_value_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_null_value_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_null_value_format_entry_t (
    l_type varchar2,
    description varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_null_value_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

DBMS_CLOUD_OCI_DATASAFE_ON_PREM_CONNECTOR_T Type

A Data Safe on-premises connector that enables Data Safe to connect to on-premises databases.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_on_prem_connector_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  description varchar2(32767),
  time_created 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,
  available_version varchar2(32767),
  created_version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_on_prem_connector_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_on_prem_connector_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    description varchar2,
    time_created 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,
    available_version varchar2,
    created_version varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the on-premises connector.

display_name

(required) The display name of the on-premises connector.

compartment_id

(required) The OCID of the compartment that contains the on-premises connector.

description

(optional) The description of the on-premises connector.

time_created

(required) The date and time the on-premises connector was created, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the on-premises connector.

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

lifecycle_details

(optional) Details about the current state of the on-premises connector.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

available_version

(optional) Latest available version of the on-premises connector.

created_version

(optional) Created version of the on-premises connector.

DBMS_CLOUD_OCI_DATASAFE_ON_PREM_CONNECTOR_SUMMARY_T Type

Summary of a Data Safe on-premises connector.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_on_prem_connector_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  description varchar2(32767),
  time_created 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,
  created_version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_on_prem_connector_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_on_prem_connector_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    description varchar2,
    time_created 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,
    created_version varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the on-premises connector.

display_name

(required) The display name of the on-premises connector.

compartment_id

(required) The OCID of the compartment that contains the on-premises connector.

description

(optional) The description of the on-premises connector.

time_created

(required) The date and time the on-premises connector was created, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the on-premises connector.

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

lifecycle_details

(optional) Details about the current state of the on-premises connector.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

created_version

(optional) Created version of the on-premises connector.

DBMS_CLOUD_OCI_DATASAFE_ON_PREMISE_CONNECTOR_T Type

The details required to establish a connection to the database using an on-premises connector.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_on_premise_connector_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_connection_option_t (
  on_prem_connector_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_on_premise_connector_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_on_premise_connector_t (
    connection_type varchar2,
    on_prem_connector_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_on_premise_connector_t is a subtype of the dbms_cloud_oci_datasafe_connection_option_t type.

Fields

Field Description

on_prem_connector_id

(required) The OCID of the on-premises connector.

DBMS_CLOUD_OCI_DATASAFE_PPF_FORMAT_ENTRY_T Type

The Post Processing Function masking format is a special masking option that enables you to use a custom function to further transform column values after they have been masked using some other masking formats. It takes the intermediate masked values as input and returns the final masked values. For example, you can use it for adding checksums or special encodings to the masked values. A post-processing function has the same signature as a user-defined function, but it passes in the masked values the masking engine generates, and returns the final masked values that should be used for masking. To learn more, check Post Processing Function in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_ppf_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  post_processing_function varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_ppf_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_ppf_format_entry_t (
    l_type varchar2,
    description varchar2,
    post_processing_function varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_ppf_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

Fields

Field Description

post_processing_function

(required) The post processing function in SCHEMA_NAME.PACKAGE_NAME.FUNCTION_NAME format. It can be a standalone or packaged function, so PACKAGE_NAME is optional.

DBMS_CLOUD_OCI_DATASAFE_PATCH_INSTRUCTION_T Type

A single instruction to be included as part of Patch request content.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_patch_instruction_t FORCE AUTHID CURRENT_USER IS OBJECT (
  operation varchar2(32767),
  selection varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_instruction_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_instruction_t (
    operation varchar2,
    selection varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

operation

(required) The patch operation.

Allowed values are: 'INSERT', 'REMOVE', 'MERGE'

selection

(required) The set of values to which the operation applies as a JMESPath expression for evaluation against the context resource. An operation fails if the selection yields an exception, except as otherwise specified. Note that comparisons involving non-primitive values (objects or arrays) are not supported and will always evaluate to false.

DBMS_CLOUD_OCI_DATASAFE_PATCH_INSTRUCTION_TBL Type

Nested table type of dbms_cloud_oci_datasafe_patch_instruction_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_patch_instruction_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_patch_instruction_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_PATCH_ALERT_POLICY_RULE_DETAILS_T Type

Details for how to patch a alert policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_patch_alert_policy_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_patch_instruction_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_alert_policy_rule_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_alert_policy_rule_details_t (
    items dbms_cloud_oci_datasafe_patch_instruction_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(optional) Array of patch instructions.

DBMS_CLOUD_OCI_DATASAFE_PATCH_ALERTS_DETAILS_T Type

The alert details to update the status of one or more alerts specified by the alert IDs.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_patch_alerts_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_patch_instruction_tbl,
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_alerts_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_alerts_details_t (
    items dbms_cloud_oci_datasafe_patch_instruction_tbl,
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of alert detail to update the status of the alert specified by the alert ID.

compartment_id

(required) The OCID of the compartment that contains the alerts.

DBMS_CLOUD_OCI_DATASAFE_PATCH_DISCOVERY_JOB_RESULT_DETAILS_T Type

Details to patch discovery results.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_patch_discovery_job_result_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_patch_instruction_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_discovery_job_result_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_discovery_job_result_details_t (
    items dbms_cloud_oci_datasafe_patch_instruction_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(optional) An array of patch instructions.

DBMS_CLOUD_OCI_DATASAFE_PATCH_INSERT_INSTRUCTION_T Type

An operation that inserts a value into an array, shifting array items as necessary and handling NOT_FOUND exceptions by creating the implied containing structure.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_patch_insert_instruction_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_patch_instruction_t (
  value json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_insert_instruction_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_insert_instruction_t (
    operation varchar2,
    selection varchar2,
    value json_element_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_patch_insert_instruction_t is a subtype of the dbms_cloud_oci_datasafe_patch_instruction_t type.

Fields

Field Description

value

(required) A value to be inserted into the target.

DBMS_CLOUD_OCI_DATASAFE_PATCH_MASKING_COLUMNS_DETAILS_T Type

Details to patch columns in a masking policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_patch_masking_columns_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_patch_instruction_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_masking_columns_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_masking_columns_details_t (
    items dbms_cloud_oci_datasafe_patch_instruction_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(optional) An array of patch instructions.

DBMS_CLOUD_OCI_DATASAFE_PATCH_MERGE_INSTRUCTION_T Type

An operation that recursively updates items of the selection, or adding the value if the selection is empty. If the value is not an object, it is used directly, otherwise each key-value member is used to create or update a member of the same name in the target and the same process is applied recursively for each object-typed value (similar to RFC 7396 JSON Merge Patch, except that null values are copied rather than transformed into deletions). NOT_FOUND exceptions are handled by creating the implied containing structure. To avoid referential errors if an item's descendant is also in the selection, items of the selection are processed in order of decreasing depth.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_patch_merge_instruction_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_patch_instruction_t (
  value json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_merge_instruction_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_merge_instruction_t (
    operation varchar2,
    selection varchar2,
    value json_element_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_patch_merge_instruction_t is a subtype of the dbms_cloud_oci_datasafe_patch_instruction_t type.

Fields

Field Description

value

(optional) A value to be merged into the target.

DBMS_CLOUD_OCI_DATASAFE_PATCH_REMOVE_INSTRUCTION_T Type

An operation that deletes items, ignoring NOT_FOUND exceptions. To avoid referential errors if an item's descendant is also in the selection, items of the selection are processed in order of decreasing depth.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_patch_remove_instruction_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_patch_instruction_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_remove_instruction_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_remove_instruction_t (
    operation varchar2,
    selection varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_patch_remove_instruction_t is a subtype of the dbms_cloud_oci_datasafe_patch_instruction_t type.

DBMS_CLOUD_OCI_DATASAFE_PATCH_SDM_MASKING_POLICY_DIFFERENCE_COLUMNS_DETAILS_T Type

Details to patch SDM masking policy difference.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_patch_sdm_masking_policy_difference_columns_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_patch_instruction_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_sdm_masking_policy_difference_columns_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_sdm_masking_policy_difference_columns_details_t (
    items dbms_cloud_oci_datasafe_patch_instruction_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(optional) An array of patch instructions.

DBMS_CLOUD_OCI_DATASAFE_PATCH_SENSITIVE_COLUMN_DETAILS_T Type

Details to patch columns in a sensitive data model.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_patch_sensitive_column_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_patch_instruction_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_sensitive_column_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_sensitive_column_details_t (
    items dbms_cloud_oci_datasafe_patch_instruction_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(optional) An array of patch instructions.

DBMS_CLOUD_OCI_DATASAFE_PATCH_TARGET_ALERT_POLICY_ASSOCIATION_DETAILS_T Type

The details used to create associations for target databases and audit policies.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_patch_target_alert_policy_association_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_patch_instruction_tbl,
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_target_alert_policy_association_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_patch_target_alert_policy_association_details_t (
    items dbms_cloud_oci_datasafe_patch_instruction_tbl,
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) An array of patch instructions.

compartment_id

(required) The OCID of the compartment that contains the alerts.

DBMS_CLOUD_OCI_DATASAFE_PATTERN_FORMAT_ENTRY_T Type

The Pattern masking format randomly selects values according to pattern to replace the original values. Rules Max Generated Data Length 30 characters Use '%c' for a random lowercase letter Use '%C' for a random uppercase letter Use '%u[]' for a random character out of all characters enclosed in [] Use '%%' for a '%' Use '%d' for a random digit Use '%nd','%nc', '%nC', or '%nu[]' n random letters or digits or characters enclosed in [], n can be 0-9 only Any other character will be included as it is Examples %3d-%5C will generate 416-JQPCS %3d-%5c will generate 392-dehco %u[$^#] will generate $ %%%3d will generate %704

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_pattern_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  pattern varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_pattern_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_pattern_format_entry_t (
    l_type varchar2,
    description varchar2,
    pattern varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_pattern_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

Fields

Field Description

pattern

(required) The pattern that should be used to mask data.

DBMS_CLOUD_OCI_DATASAFE_PRESERVE_ORIGINAL_DATA_FORMAT_ENTRY_T Type

The Preserve Original Data masking format retains the original values in a column. It is useful in conditional masking when you want to preserve a subset of values in a column and mask the remaining values using some other masking formats. To learn more, check Preserve Original Data in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_preserve_original_data_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_preserve_original_data_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_preserve_original_data_format_entry_t (
    l_type varchar2,
    description varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_preserve_original_data_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

DBMS_CLOUD_OCI_DATASAFE_PRIVATE_ENDPOINT_T Type

The details required to establish a connection to the database using a private endpoint.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_private_endpoint_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_connection_option_t (
  datasafe_private_endpoint_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_private_endpoint_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_private_endpoint_t (
    connection_type varchar2,
    datasafe_private_endpoint_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_private_endpoint_t is a subtype of the dbms_cloud_oci_datasafe_connection_option_t type.

Fields

Field Description

datasafe_private_endpoint_id

(required) The OCID of the Data Safe private endpoint.

DBMS_CLOUD_OCI_DATASAFE_PROFILE_T Type

The comprehensive information about the user profiles available on a given target. It includes details such as profile name, failed login attempts, password reuse time, password verification function, password verification function implementation code snippet, sessions per user, connect time inactive account time, password lock time, cpu usage per session, target id, and compartment id.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_profile_t FORCE AUTHID CURRENT_USER IS OBJECT (
  user_assessment_id varchar2(32767),
  compartment_id varchar2(32767),
  target_id varchar2(32767),
  profile_name varchar2(32767),
  user_count number,
  failed_login_attempts varchar2(32767),
  password_verification_function varchar2(32767),
  password_verification_function_details varchar2(32767),
  password_lock_time varchar2(32767),
  password_life_time varchar2(32767),
  password_reuse_max varchar2(32767),
  password_reuse_time varchar2(32767),
  password_rollover_time varchar2(32767),
  password_grace_time varchar2(32767),
  is_user_created number,
  sessions_per_user varchar2(32767),
  inactive_account_time varchar2(32767),
  connect_time varchar2(32767),
  idle_time varchar2(32767),
  composite_limit varchar2(32767),
  cpu_per_call varchar2(32767),
  cpu_per_session varchar2(32767),
  logical_reads_per_call varchar2(32767),
  logical_reads_per_session varchar2(32767),
  private_sga varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_profile_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_profile_t (
    user_assessment_id varchar2,
    compartment_id varchar2,
    target_id varchar2,
    profile_name varchar2,
    user_count number,
    failed_login_attempts varchar2,
    password_verification_function varchar2,
    password_verification_function_details varchar2,
    password_lock_time varchar2,
    password_life_time varchar2,
    password_reuse_max varchar2,
    password_reuse_time varchar2,
    password_rollover_time varchar2,
    password_grace_time varchar2,
    is_user_created number,
    sessions_per_user varchar2,
    inactive_account_time varchar2,
    connect_time varchar2,
    idle_time varchar2,
    composite_limit varchar2,
    cpu_per_call varchar2,
    cpu_per_session varchar2,
    logical_reads_per_call varchar2,
    logical_reads_per_session varchar2,
    private_sga varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

user_assessment_id

(required) The OCID of the user assessment corresponding to the target under consideration.

compartment_id

(optional) The OCID of the compartment that contains the user assessment.

target_id

(optional) The OCID of the target database.

profile_name

(required) The name of the profile.

user_count

(optional) The number of users that have a given profile.

failed_login_attempts

(optional) Maximum times the user is allowed in fail login before the user account is locked.

password_verification_function

(optional) Name of the PL/SQL that can be used for password verification.

password_verification_function_details

(optional) Details about the PL/SQL that can be used for password verification.

password_lock_time

(optional) Number of days the user account remains locked after failed login.

password_life_time

(optional) Number of days the password is valid before expiry.

password_reuse_max

(optional) Number of day after the user can use the already used password.

password_reuse_time

(optional) Number of days before which a password cannot be reused.

password_rollover_time

(optional) Number of days the password rollover is allowed. Minimum value can be 1/24 day (1 hour) to 60 days.

password_grace_time

(optional) Number of grace days for user to change password.

is_user_created

(optional) Represents if the profile is created by user.

sessions_per_user

(optional) Specify the number of concurrent sessions to which you want to limit the user.

inactive_account_time

(optional) The permitted periods of continuous inactive time during a session, expressed in minutes. Long-running queries and other operations are not subject to this limit.

connect_time

(optional) Specify the total elapsed time limit for a session, expressed in minutes.

idle_time

(optional) Specify the permitted periods of continuous inactive time during a session, expressed in minutes.

composite_limit

(optional) Specify the total resource cost for a session, expressed in service units. Oracle Database calculates the total service units as a weighted sum of CPU_PER_SESSION, CONNECT_TIME, LOGICAL_READS_PER_SESSION, and PRIVATE_SGA.

cpu_per_call

(optional) Specify the CPU time limit for a call (a parse, execute, or fetch), expressed in hundredths of seconds.

cpu_per_session

(optional) Specify the CPU time limit for a session, expressed in hundredth of seconds.

logical_reads_per_call

(optional) Specify the permitted the number of data blocks read for a call to process a SQL statement (a parse, execute, or fetch).

logical_reads_per_session

(optional) Specify the permitted number of data blocks read in a session, including blocks read from memory and disk.

private_sga

(optional) Specify the amount of private space a session can allocate in the shared pool of the system global area (SGA), expressed in bytes.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_JSON_ELEMENT_T_TBL Type

Nested table type of json_element_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_json_element_t_tbl FORCE IS TABLE OF (json_element_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_PROFILE_AGGREGATION_T Type

The profile aggregation provides information about the user profiles available on the database. For example, the user profile details include how many users have a given profile assigned and how many profiles have password verification function.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_profile_aggregation_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_json_element_t_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_profile_aggregation_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_profile_aggregation_t (
    items dbms_cloud_oci_datasafe_json_element_t_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) The array of profile aggregation data.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_PROFILE_DETAILS_T Type

The details of a particular profile

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_profile_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  num_users number,
  connect_time varchar2(32767),
  failed_login_attempts varchar2(32767),
  idle_time varchar2(32767),
  inactive_account_time varchar2(32767),
  password_grace_time varchar2(32767),
  password_life_time varchar2(32767),
  password_lock_time varchar2(32767),
  password_reuse_time varchar2(32767),
  password_reuse_max varchar2(32767),
  password_verify_function varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_profile_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_profile_details_t (
    num_users number,
    connect_time varchar2,
    failed_login_attempts varchar2,
    idle_time varchar2,
    inactive_account_time varchar2,
    password_grace_time varchar2,
    password_life_time varchar2,
    password_lock_time varchar2,
    password_reuse_time varchar2,
    password_reuse_max varchar2,
    password_verify_function varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

num_users

(optional) The number of users using this profile.

connect_time

(optional) The value of the CONNECT_TIME resource parameter.

failed_login_attempts

(optional) The value of the FAILED_LOGIN_ATTEMPTS password parameter.

idle_time

(optional) The value of the IDLE_TIME resource parameter.

inactive_account_time

(optional) The value of the INACTIVE_ACCOUNT_TIME password parameter.

password_grace_time

(optional) The value of the PASSWORD_GRACE_TIME password parameter.

password_life_time

(optional) The value of the PASSWORD_LIFE_TIME password parameter.

password_lock_time

(optional) The value of the PASSWORD_LOCK_TIME password parameter.

password_reuse_time

(optional) The value of the PASSWORD_REUSE_TIME password parameter.

password_reuse_max

(optional) The value of the PASSWORD_REUSE_MAX resource parameter.

password_verify_function

(optional) The value of the PASSWORD_VERIFY_FUNCTION resource.

DBMS_CLOUD_OCI_DATASAFE_PROFILE_SUMMARY_T Type

The summary of information about the user profiles. It includes details such as profile name, failed login attempts, sessions per user, inactive account time, password lock time, user created, target id, and the compartment id.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_profile_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  user_assessment_id varchar2(32767),
  compartment_id varchar2(32767),
  target_id varchar2(32767),
  profile_name varchar2(32767),
  user_count number,
  failed_login_attempts varchar2(32767),
  password_verification_function varchar2(32767),
  sessions_per_user varchar2(32767),
  inactive_account_time varchar2(32767),
  password_lock_time varchar2(32767),
  is_user_created number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_profile_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_profile_summary_t (
    user_assessment_id varchar2,
    compartment_id varchar2,
    target_id varchar2,
    profile_name varchar2,
    user_count number,
    failed_login_attempts varchar2,
    password_verification_function varchar2,
    sessions_per_user varchar2,
    inactive_account_time varchar2,
    password_lock_time varchar2,
    is_user_created number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

user_assessment_id

(required) The OCID of the latest user assessment corresponding to the target under consideration. A compartment type assessment can also be passed to profiles from all the targets from the corresponding compartment.

compartment_id

(required) The OCID of the compartment that contains the user assessment.

target_id

(optional) The OCID of the target database.

profile_name

(optional) The name of the profile.

user_count

(optional) The number of users having a given profile.

failed_login_attempts

(optional) Maximum times the user is allowed to fail login before the user account is locked.

password_verification_function

(optional) PL/SQL that can be used for password verification.

sessions_per_user

(optional) The maximum number of sessions a user is allowed to create.

inactive_account_time

(optional) The permitted periods of continuous inactive time during a session, expressed in minutes. Long-running queries and other operations are not subjected to this limit.

password_lock_time

(optional) Number of days the user account remains locked after failed login

is_user_created

(optional) Represents if the profile is created by user.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_PROVISION_AUDIT_CONDITIONS_T Type

Represents audit policies with corresponding audit provisioning conditions.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_provision_audit_conditions_t FORCE AUTHID CURRENT_USER IS OBJECT (
  audit_policy_name varchar2(32767),
  is_priv_users_managed_by_data_safe number,
  is_enabled number,
  enable_conditions dbms_cloud_oci_datasafe_enable_conditions_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_provision_audit_conditions_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_provision_audit_conditions_t (
    audit_policy_name varchar2,
    is_priv_users_managed_by_data_safe number,
    is_enabled number,
    enable_conditions dbms_cloud_oci_datasafe_enable_conditions_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

audit_policy_name

(required) Indicates the audit policy name available for provisioning from Data Safe. Refer to the documentation for seeded audit policy names. For custom policies, refer to the user-defined policy name created in the target database.

is_priv_users_managed_by_data_safe

(required) Indicates whether the privileged user list is managed by Data Safe.

is_enabled

(required) Indicates whether the policy has to be enabled or disabled in the target database. Set this to true if you want the audit policy to be enabled in the target database. If the seeded audit policy is not already created in the database, the provisioning creates and enables them. If this is set to false, the policy will be disabled in the target database.

enable_conditions

(optional) Indicates the users/roles in the target database for which the audit policy will be enforced, and the success/failure event condition to generate the audit event.

DBMS_CLOUD_OCI_DATASAFE_PROVISION_AUDIT_CONDITIONS_TBL Type

Nested table type of dbms_cloud_oci_datasafe_provision_audit_conditions_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_provision_audit_conditions_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_provision_audit_conditions_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_PROVISION_AUDIT_POLICY_DETAILS_T Type

Details for audit policy provisioning.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_provision_audit_policy_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_data_safe_service_account_excluded number,
  provision_audit_conditions dbms_cloud_oci_datasafe_provision_audit_conditions_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_provision_audit_policy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_provision_audit_policy_details_t (
    is_data_safe_service_account_excluded number,
    provision_audit_conditions dbms_cloud_oci_datasafe_provision_audit_conditions_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_data_safe_service_account_excluded

(optional) Option provided to users at the target to indicate whether the Data Safe service account has to be excluded while provisioning the audit policies.

provision_audit_conditions

(required) The audit policy details for provisioning.

DBMS_CLOUD_OCI_DATASAFE_RANDOM_DATE_FORMAT_ENTRY_T Type

The Random Date masking format generates random and unique dates within a range. The date range is defined by the startDate and endDate attributes. The start date must be less than or equal to the end date. When masking columns with uniqueness constraint, ensure that the date range is sufficient enough to generate unique values. To learn more, check Random Date in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_random_date_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  start_date timestamp with time zone,
  end_date timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_random_date_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_random_date_format_entry_t (
    l_type varchar2,
    description varchar2,
    start_date timestamp with time zone,
    end_date timestamp with time zone
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_random_date_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

Fields

Field Description

start_date

(required) The lower bound of the range within which random dates should be generated. The start date must be less than or equal to the end date.

end_date

(required) The upper bound of the range within which random dates should be generated. The end date must be greater than or equal to the start date.

DBMS_CLOUD_OCI_DATASAFE_RANDOM_DECIMAL_NUMBER_FORMAT_ENTRY_T Type

The Random Decimal Number masking format generates random and unique decimal numbers within a range. The range is defined by the startValue and endValue attributes. The start value must be less than or equal to the end value. To learn more, check Random Decimal Number in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_random_decimal_number_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  start_value number,
  end_value number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_random_decimal_number_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_random_decimal_number_format_entry_t (
    l_type varchar2,
    description varchar2,
    start_value number,
    end_value number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_random_decimal_number_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

Fields

Field Description

start_value

(required) The lower bound of the range within which random decimal numbers should be generated. It must be less than or equal to the end value. It supports input of double type.

end_value

(required) The upper bound of the range within which random decimal numbers should be generated. It must be greater than or equal to the start value. It supports input of double type.

DBMS_CLOUD_OCI_DATASAFE_RANDOM_DIGITS_FORMAT_ENTRY_T Type

The Random Digits masking format generates random digits of length within a range. The length range is defined by the startLength and endLength attributes. The start length must be less than or equal to the end length. When masking columns with uniqueness constraint, ensure that the length range is sufficient enough to generate unique values. This masking format pads to the appropriate length in a string, but does not pad when used for a number column. It's a complementary type of Random Number, which is not padded.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_random_digits_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  start_length number,
  end_length number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_random_digits_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_random_digits_format_entry_t (
    l_type varchar2,
    description varchar2,
    start_length number,
    end_length number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_random_digits_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

Fields

Field Description

start_length

(required) The minimum number of digits the generated values should have. It can be any integer greater than zero, but it must be less than or equal to the end length.

end_length

(required) The maximum number of digits the generated values should have. It can be any integer greater than zero, but it must be greater than or equal to the start length.

DBMS_CLOUD_OCI_DATASAFE_RANDOM_LIST_FORMAT_ENTRY_T Type

The Random List masking format randomly selects values from a list of values to replace the original values. To learn more, check Random List in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_random_list_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  random_list dbms_cloud_oci_datasafe_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_random_list_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_random_list_format_entry_t (
    l_type varchar2,
    description varchar2,
    random_list dbms_cloud_oci_datasafe_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_random_list_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

Fields

Field Description

random_list

(required) A comma-separated list of values to be used to replace column values. The list can be of strings, numbers, or dates. The data type of each value in the list must be compatible with the data type of the column. The number of entries in the list cannot be more than 999.

DBMS_CLOUD_OCI_DATASAFE_RANDOM_NUMBER_FORMAT_ENTRY_T Type

The Random Number masking format generates random and unique integers within a range. The range is defined by the startValue and endValue attributes. The start value must be less than or equal to the end value. When masking columns with uniqueness constraint, ensure that the range is sufficient enough to generate unique values. To learn more, check Random Number in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_random_number_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  start_value number,
  end_value number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_random_number_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_random_number_format_entry_t (
    l_type varchar2,
    description varchar2,
    start_value number,
    end_value number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_random_number_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

Fields

Field Description

start_value

(required) The lower bound of the range within which random numbers should be generated. It must be less than or equal to the end value. It supports input of long type.

end_value

(required) The upper bound of the range within which random numbers should be generated. It must be greater than or equal to the start value. It supports input of long type.

DBMS_CLOUD_OCI_DATASAFE_RANDOM_STRING_FORMAT_ENTRY_T Type

The Random String masking format generates random and unique strings of length within a range. The length range is defined by the startLength and endLength attributes. The start length must be less than or equal to the end length. When masking columns with uniqueness constraint, ensure that the length range is sufficient enough to generate unique values. To learn more, check Random String in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_random_string_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  start_length number,
  end_length number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_random_string_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_random_string_format_entry_t (
    l_type varchar2,
    description varchar2,
    start_length number,
    end_length number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_random_string_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

Fields

Field Description

start_length

(required) The minimum number of characters the generated strings should have. It can be any integer greater than zero, but it must be less than or equal to the end length.

end_length

(required) The maximum number of characters the generated strings should have. It can be any integer greater than zero, but it must be greater than or equal to the start length.

DBMS_CLOUD_OCI_DATASAFE_RANDOM_SUBSTITUTION_FORMAT_ENTRY_T Type

The Random Substitution masking format uses the specified substitution column as the source of masked values. The values in the substitution column are randomly ordered before mapping them to the original column values. As a masking operation renames tables temporarily, the substitution column must be in a table that has no masking column. Also, you may want to ensure that the substitution column has sufficient values to uniquely mask the target column. Unlike Deterministic Substitution, Random Substitution doesn't do deterministic masking, and thus, doesn't require a seed value. To learn more, check Random Substitution in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_random_substitution_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  schema_name varchar2(32767),
  table_name varchar2(32767),
  column_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_random_substitution_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_random_substitution_format_entry_t (
    l_type varchar2,
    description varchar2,
    schema_name varchar2,
    table_name varchar2,
    column_name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_random_substitution_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

Fields

Field Description

schema_name

(required) The name of the schema that contains the substitution column.

table_name

(required) The name of the table that contains the substitution column.

column_name

(required) The name of the substitution column.

DBMS_CLOUD_OCI_DATASAFE_REGULAR_EXPRESSION_FORMAT_ENTRY_T Type

The Regular Expression masking format gives the flexibility to use regular expressions to search for sensitive data in a column of Large Object data type (LOB), and replace the data with a fixed string, fixed number, null value, or SQL expression. It can also be used for columns of VARCHAR2 type to mask parts of strings. To learn more, check Regular Expressions in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_regular_expression_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  regular_expression varchar2(32767),
  replace_with varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_regular_expression_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_regular_expression_format_entry_t (
    l_type varchar2,
    description varchar2,
    regular_expression varchar2,
    replace_with varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_regular_expression_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

Fields

Field Description

regular_expression

(required) The pattern that should be used to search for data.

replace_with

(required) The value that should be used to replace the data matching the regular expression. It can be a fixed string, fixed number, null value, or SQL expression.

DBMS_CLOUD_OCI_DATASAFE_REPORT_T Type

The description of the report.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_report_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  report_definition_id varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  mime_type varchar2(32767),
  time_generated timestamp with time zone,
  lifecycle_state varchar2(32767),
  l_type varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_report_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_report_t (
    id varchar2,
    display_name varchar2,
    report_definition_id varchar2,
    description varchar2,
    compartment_id varchar2,
    mime_type varchar2,
    time_generated timestamp with time zone,
    lifecycle_state varchar2,
    l_type 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) The OCID of the report.

display_name

(required) Name of the report.

report_definition_id

(optional) The OCID of the report definition.

description

(optional) Specifies a description of the report.

compartment_id

(required) The OCID of the compartment containing the report.

mime_type

(optional) Specifies the format of report to be .xls or .pdf

Allowed values are: 'PDF', 'XLS'

time_generated

(required) Specifies the date and time the report was generated.

lifecycle_state

(required) The current state of the audit report.

Allowed values are: 'UPDATING', 'ACTIVE'

l_type

(optional) The type of the audit report.

Allowed values are: 'GENERATED', 'SCHEDULED'

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_REPORT_SUMMARY_T Type

Description of report.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_report_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  id varchar2(32767),
  report_definition_id varchar2(32767),
  description varchar2(32767),
  mime_type varchar2(32767),
  time_generated timestamp with time zone,
  compartment_id varchar2(32767),
  lifecycle_state varchar2(32767),
  l_type varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_report_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_report_summary_t (
    display_name varchar2,
    id varchar2,
    report_definition_id varchar2,
    description varchar2,
    mime_type varchar2,
    time_generated timestamp with time zone,
    compartment_id varchar2,
    lifecycle_state varchar2,
    l_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) Name of the report.

id

(required) The OCID of the report.

report_definition_id

(optional) The OCID of the report definition.

description

(optional) Description of the report.

mime_type

(optional) Specifies the format of report to be .xls or .pdf.

Allowed values are: 'PDF', 'XLS'

time_generated

(required) Specifies the time at which the report was generated.

compartment_id

(required) The OCID of the compartment containing the report.

lifecycle_state

(required) The current state of the report.

Allowed values are: 'UPDATING', 'ACTIVE'

l_type

(optional) The type of the report.

Allowed values are: 'GENERATED', 'SCHEDULED'

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_REPORT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_report_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_report_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_report_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_REPORT_COLLECTION_T Type

Collection of report summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_report_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_report_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_report_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_report_collection_t (
    items dbms_cloud_oci_datasafe_report_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of report summary.

DBMS_CLOUD_OCI_DATASAFE_REPORT_DEFINITION_T Type

Description of report definition.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_report_definition_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  id varchar2(32767),
  parent_id varchar2(32767),
  category varchar2(32767),
  description varchar2(32767),
  data_source varchar2(32767),
  is_seeded number,
  display_order number,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  scim_filter varchar2(32767),
  column_info dbms_cloud_oci_datasafe_column_tbl,
  column_filters dbms_cloud_oci_datasafe_column_filter_tbl,
  column_sortings dbms_cloud_oci_datasafe_column_sorting_tbl,
  summary dbms_cloud_oci_datasafe_summary_tbl,
  compartment_id varchar2(32767),
  lifecycle_state varchar2(32767),
  schedule varchar2(32767),
  scheduled_report_mime_type varchar2(32767),
  scheduled_report_row_limit number,
  scheduled_report_name varchar2(32767),
  scheduled_report_compartment_id varchar2(32767),
  record_time_span varchar2(32767),
  compliance_standards dbms_cloud_oci_datasafe_varchar2_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_report_definition_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_report_definition_t (
    display_name varchar2,
    id varchar2,
    parent_id varchar2,
    category varchar2,
    description varchar2,
    data_source varchar2,
    is_seeded number,
    display_order number,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    scim_filter varchar2,
    column_info dbms_cloud_oci_datasafe_column_tbl,
    column_filters dbms_cloud_oci_datasafe_column_filter_tbl,
    column_sortings dbms_cloud_oci_datasafe_column_sorting_tbl,
    summary dbms_cloud_oci_datasafe_summary_tbl,
    compartment_id varchar2,
    lifecycle_state varchar2,
    schedule varchar2,
    scheduled_report_mime_type varchar2,
    scheduled_report_row_limit number,
    scheduled_report_name varchar2,
    scheduled_report_compartment_id varchar2,
    record_time_span varchar2,
    compliance_standards dbms_cloud_oci_datasafe_varchar2_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) Name of the report definition.

id

(required) The OCID of the report definition.

parent_id

(optional) The OCID of the parent report definition. In the case of seeded report definition, this is same as definition OCID.

category

(optional) Specifies the name of the category that this report belongs to.

Allowed values are: 'CUSTOM_REPORTS', 'SUMMARY', 'ACTIVITY_AUDITING', 'FIREWALL_VIOLATIONS', 'ALLOWED_SQL'

description

(optional) A description of the report definition.

data_source

(optional) Specifies the name of a resource that provides data for the report. For example alerts, events.

Allowed values are: 'EVENTS', 'ALERTS', 'VIOLATIONS', 'ALLOWED_SQL'

is_seeded

(optional) Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.

display_order

(optional) Specifies how the report definitions are ordered in the display.

time_created

(optional) Specifies the date and time the report definition was created.

time_updated

(optional) The date and time the report definition was updated.

scim_filter

(optional) Additional SCIM filters used to define the report.

column_info

(optional) An array of column objects in the order (left to right) displayed in the report. A column object stores all information about a column, including the name displayed on the UI, corresponding field name in the data source, data type of the column, and column visibility (if the column is visible to the user).

column_filters

(optional) An array of columnFilter objects. A columnFilter object stores all information about a column filter including field name, an operator, one or more expressions, if the filter is enabled, or if the filter is hidden.

column_sortings

(optional) An array of column sorting objects. Each column sorting object stores the column name to be sorted and if the sorting is in ascending order; sorting is done by the first column in the array, then by the second column in the array, etc.

summary

(optional) An array of report summary objects in the order (left to right) displayed in the report. A report summary object stores all information about summary of report to be displayed, including the name displayed on UI, the display order, corresponding group by and count of values, summary visibility (if the summary is visible to user).

compartment_id

(required) The OCID of the compartment containing the report definition.

lifecycle_state

(required) The current state of the report.

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

schedule

(optional) The schedule to generate the report periodically in the specified format: <version-string>;<version-specific-schedule> Allowed version strings - \"v1\" v1's version specific schedule -<ss> <mm> <hh> <day-of-week> <day-of-month> Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = <ss> (So, the allowed range for <ss> is [0, 59]) 2. minutes = <mm> (So, the allowed range for <mm> is [0, 59]) 3. hours = <hh> (So, the allowed range for <hh> is [0, 23]) 4. <day-of-week> can be either '*' (without quotes or a number between 1(Monday) and 7(Sunday)) No constraint introduced when it is '*'. When not, day of week must equal the given value 5. <day-of-month> can be either '*' (without quotes or a number between 1 and 28) No constraint introduced when it is '*'. When not, day of month must equal the given value

scheduled_report_mime_type

(optional) Specifies the format of the report ( either .xls or .pdf )

Allowed values are: 'PDF', 'XLS'

scheduled_report_row_limit

(optional) Specifies the limit on the number of rows in the report.

scheduled_report_name

(optional) The name of the report to be scheduled.

scheduled_report_compartment_id

(optional) The OCID of the compartment in which the scheduled resource will be created.

record_time_span

(optional) The time span for the records in the report to be scheduled. <period-value><period> Allowed period strings - \"H\",\"D\",\"M\",\"Y\" Each of the above fields potentially introduce constraints. A workRequest is created only when period-value satisfies all the constraints. Constraints introduced: 1. period = H (The allowed range for period-value is [1, 23]) 2. period = D (The allowed range for period-value is [1, 30]) 3. period = M (The allowed range for period-value is [1, 11]) 4. period = Y (The minimum period-value is 1)

compliance_standards

(optional) The list of the data protection regulations/standards used in the report that will help demonstrate compliance.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_REPORT_DEFINITION_SUMMARY_T Type

Summary of report definition.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_report_definition_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  id varchar2(32767),
  category varchar2(32767),
  description varchar2(32767),
  is_seeded number,
  display_order number,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  compartment_id varchar2(32767),
  data_source varchar2(32767),
  lifecycle_state varchar2(32767),
  schedule varchar2(32767),
  compliance_standards dbms_cloud_oci_datasafe_varchar2_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_report_definition_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_report_definition_summary_t (
    display_name varchar2,
    id varchar2,
    category varchar2,
    description varchar2,
    is_seeded number,
    display_order number,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    compartment_id varchar2,
    data_source varchar2,
    lifecycle_state varchar2,
    schedule varchar2,
    compliance_standards dbms_cloud_oci_datasafe_varchar2_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) Name of the report definition.

id

(required) The OCID of the report definition.

category

(optional) Specifies the name of the category that this report belongs to.

Allowed values are: 'CUSTOM_REPORTS', 'SUMMARY', 'ACTIVITY_AUDITING', 'FIREWALL_VIOLATIONS', 'ALLOWED_SQL'

description

(optional) A description of the report definition.

is_seeded

(optional) Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.

display_order

(optional) Specifies how the report definitions are ordered in the display.

time_created

(required) Specifies the time at which the report definition was created.

time_updated

(optional) The date and time of the report definition update in Data Safe.

compartment_id

(required) The OCID of the compartment containing the report definition.

data_source

(optional) Specifies the name of a resource that provides data for the report. For example alerts, events.

Allowed values are: 'EVENTS', 'ALERTS', 'VIOLATIONS', 'ALLOWED_SQL'

lifecycle_state

(required) The current state of the audit report.

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

schedule

(optional) The schedule to generate the report periodically in the specified format: <version-string>;<version-specific-schedule> Allowed version strings - \"v1\" v1's version specific schedule -<ss> <mm> <hh> <day-of-week> <day-of-month> Each of the above fields potentially introduce constraints. A work request is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = <ss> (So, the allowed range for <ss> is [0, 59]) 2. minutes = <mm> (So, the allowed range for <mm> is [0, 59]) 3. hours = <hh> (So, the allowed range for <hh> is [0, 23]) 4. <day-of-week> can be either '*' (without quotes or a number between 1(Monday) and 7(Sunday)) No constraint introduced when it is '*'. When not, day of week must equal the given value. 5. <day-of-month> can be either '*' (without quotes or a number between 1 and 28) No constraint introduced when it is '*'. When not, day of month must equal the given value

compliance_standards

(optional) The list of data protection regulations/standards used in the report that will help demonstrate compliance.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_REPORT_DEFINITION_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_report_definition_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_report_definition_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_report_definition_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_REPORT_DEFINITION_COLLECTION_T Type

Collection of report definition objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_report_definition_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_report_definition_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_report_definition_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_report_definition_collection_t (
    items dbms_cloud_oci_datasafe_report_definition_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of report definition summary.

DBMS_CLOUD_OCI_DATASAFE_REPORT_DETAILS_T Type

The details of the report schedule.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_report_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  report_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_report_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_report_details_t (
    report_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

report_type

(required) The type of the report.

Allowed values are: 'AUDIT'

DBMS_CLOUD_OCI_DATASAFE_ROLE_SUMMARY_T Type

The details of a role fetched from the database.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_role_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  role_name varchar2(32767),
  authentication_type varchar2(32767),
  is_password_required number,
  is_common number,
  is_oracle_maintained number,
  is_inherited number,
  is_implicit number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_role_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_role_summary_t (
    role_name varchar2,
    authentication_type varchar2,
    is_password_required number,
    is_common number,
    is_oracle_maintained number,
    is_inherited number,
    is_implicit number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

role_name

(required) The name of the role.

authentication_type

(required) Type of authentication.

is_password_required

(optional) Is password required.

is_common

(optional) Is the role common.

is_oracle_maintained

(optional) Is the role oracle maintained.

is_inherited

(optional) Is the role inherited.

is_implicit

(optional) Is the role implicit.

DBMS_CLOUD_OCI_DATASAFE_RUN_SECURITY_ASSESSMENT_DETAILS_T Type

The details required to create an on-demand saved security assessment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_run_security_assessment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_run_security_assessment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_run_security_assessment_details_t (
    compartment_id varchar2,
    display_name varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(optional) The OCID of the compartment that contains the security assessment.

display_name

(optional) The display name of the security assessment.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_RUN_USER_ASSESSMENT_DETAILS_T Type

The details required to create an on-demand saved user assessment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_run_user_assessment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  description varchar2(32767),
  display_name varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_run_user_assessment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_run_user_assessment_details_t (
    compartment_id varchar2,
    description varchar2,
    display_name varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(optional) The OCID of the compartment that contains the user assessment.

description

(optional) The description of the user assessment.

display_name

(optional) The display name of the user assessment.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_SQL_EXPRESSION_FORMAT_ENTRY_T Type

The SQL Expression masking format uses a SQL expression to generate values that are used to replace the original data values. SQL expressions with dbms_lob and other user-defined functions can be used to mask columns of Large Object data type (LOB). To learn more, check SQL Expression in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_expression_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  sql_expression varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_expression_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_expression_format_entry_t (
    l_type varchar2,
    description varchar2,
    sql_expression varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_sql_expression_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

Fields

Field Description

sql_expression

(required) The SQL expression to be used to generate the masked values. It can consist of one or more values, operators, and SQL functions that evaluate to a value. It can also contain substitution columns from the same table. Specify the substitution columns within percent (%) symbols.

DBMS_CLOUD_OCI_DATASAFE_SCHEDULE_AUDIT_REPORT_DETAILS_T Type

Details for the audit report schedule.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_schedule_audit_report_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_report_details_t (
  row_limit number,
  record_time_span varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_schedule_audit_report_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_schedule_audit_report_details_t (
    report_type varchar2,
    row_limit number,
    record_time_span varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_schedule_audit_report_details_t is a subtype of the dbms_cloud_oci_datasafe_report_details_t type.

Fields

Field Description

row_limit

(optional) Specifies the limit on the number of rows in the report.

record_time_span

(required) The time span of records in report to be scheduled. <period-value><period> Allowed period strings - \"H\",\"D\",\"M\",\"Y\" Each of the above fields potentially introduce constraints. A workRequest is created only when period-value satisfies all the constraints. Constraints introduced: 1. period = H (The allowed range for period-value is [1, 23]) 2. period = D (The allowed range for period-value is [1, 30]) 3. period = M (The allowed range for period-value is [1, 11]) 4. period = Y (The minimum period-value is 1)

DBMS_CLOUD_OCI_DATASAFE_SCHEDULE_REPORT_DETAILS_T Type

The details of the report schedule.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_schedule_report_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  schedule varchar2(32767),
  mime_type varchar2(32767),
  compartment_id varchar2(32767),
  report_details dbms_cloud_oci_datasafe_report_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_schedule_report_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_schedule_report_details_t (
    display_name varchar2,
    schedule varchar2,
    mime_type varchar2,
    compartment_id varchar2,
    report_details dbms_cloud_oci_datasafe_report_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The name of the report to be scheduled

schedule

(required) The schedule to generate the report periodically in the specified format: <version-string>;<version-specific-schedule> Allowed version strings - \"v1\" v1's version specific schedule -<ss> <mm> <hh> <day-of-week> <day-of-month> Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = <ss> (So, the allowed range for <ss> is [0, 59]) 2. minutes = <mm> (So, the allowed range for <mm> is [0, 59]) 3. hours = <hh> (So, the allowed range for <hh> is [0, 23]) 4. <day-of-week> can be either '*' (without quotes or a number between 1(Monday) and 7(Sunday)) No constraint introduced when it is '*'. When not, day of week must equal the given value 5. <day-of-month> can be either '*' (without quotes or a number between 1 and 28) No constraint introduced when it is '*'. When not, day of month must equal the given value

mime_type

(required) Specifies if the report will be in .xls or .pdf format

Allowed values are: 'PDF', 'XLS'

compartment_id

(required) The OCID of the compartment in which the resource should be created.

report_details

(required)

DBMS_CLOUD_OCI_DATASAFE_SCHEMA_SUMMARY_T Type

The details of a schema fetched from the database.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_schema_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  schema_name varchar2(32767),
  is_oracle_maintained number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_schema_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_schema_summary_t (
    schema_name varchar2,
    is_oracle_maintained number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

schema_name

(required) Name of the schema.

is_oracle_maintained

(required) Indicates if the schema is oracle supplied.

DBMS_CLOUD_OCI_DATASAFE_SDM_MASKING_POLICY_DIFFERENCE_T Type

A resource that tracks the differences between sensitive columns in the sensitive data model and masking columns in the masking policy

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sdm_masking_policy_difference_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  difference_type varchar2(32767),
  display_name varchar2(32767),
  time_created timestamp with time zone,
  time_creation_started timestamp with time zone,
  lifecycle_state varchar2(32767),
  sensitive_data_model_id varchar2(32767),
  masking_policy_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sdm_masking_policy_difference_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sdm_masking_policy_difference_t (
    id varchar2,
    compartment_id varchar2,
    difference_type varchar2,
    display_name varchar2,
    time_created timestamp with time zone,
    time_creation_started timestamp with time zone,
    lifecycle_state varchar2,
    sensitive_data_model_id varchar2,
    masking_policy_id 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) The OCID of the Sensitive data model and masking policy difference resource.

compartment_id

(required) The OCID of the compartment that contains the Sensitive data model and masking policy difference resource.

difference_type

(required) The type of the SDM masking policy difference. It defines the difference scope. NEW identifies new sensitive columns in the sensitive data model that are not in the masking policy. DELETED identifies columns that are present in the masking policy but have been deleted from the sensitive data model. MODIFIED identifies columns that are present in the sensitive data model as well as the masking policy but some of their attributes have been modified. ALL covers all the above three scenarios and reports new, deleted and modified columns.

Allowed values are: 'ALL', 'NEW', 'MODIFIED', 'DELETED'

display_name

(required) The display name of the SDM masking policy difference.

time_created

(required) The date and time the SDM masking policy difference was created, in the format defined by RFC3339.

time_creation_started

(required) The date and time the SDM masking policy difference creation started, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the SDM masking policy difference.

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

sensitive_data_model_id

(required) The OCID of the sensitive data model associated with the SDM masking policy difference.

masking_policy_id

(required) The OCID of the masking policy associated with the SDM masking policy difference.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_SDM_MASKING_POLICY_DIFFERENCE_SUMMARY_T Type

Summary of a SDM masking policy difference.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sdm_masking_policy_difference_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  time_created timestamp with time zone,
  time_creation_started timestamp with time zone,
  sensitive_data_model_id varchar2(32767),
  masking_policy_id varchar2(32767),
  lifecycle_state varchar2(32767),
  difference_type varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sdm_masking_policy_difference_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sdm_masking_policy_difference_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    time_created timestamp with time zone,
    time_creation_started timestamp with time zone,
    sensitive_data_model_id varchar2,
    masking_policy_id varchar2,
    lifecycle_state varchar2,
    difference_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the SDM masking policy difference.

compartment_id

(required) The OCID of the compartment to contain the SDM masking policy difference.

display_name

(required) The display name of the SDM masking policy difference.

time_created

(required) The date and time the SDM masking policy difference was created, in the format defined by RFC3339.

time_creation_started

(required) The date and time the SDM masking policy difference creation started, in the format defined by RFC3339.

sensitive_data_model_id

(required) The OCID of the sensitive data model associated with the SDM masking policy difference.

masking_policy_id

(required) The OCID of the masking policy associated with the SDM masking policy difference.

lifecycle_state

(required) The current state of the SDM masking policy difference.

difference_type

(required) The type of difference.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_SDM_MASKING_POLICY_DIFFERENCE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_sdm_masking_policy_difference_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sdm_masking_policy_difference_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_sdm_masking_policy_difference_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SDM_MASKING_POLICY_DIFFERENCE_COLLECTION_T Type

A collection of SDM masking policy difference objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sdm_masking_policy_difference_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_sdm_masking_policy_difference_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sdm_masking_policy_difference_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sdm_masking_policy_difference_collection_t (
    items dbms_cloud_oci_datasafe_sdm_masking_policy_difference_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) An array of SDM masking policy difference objects.

DBMS_CLOUD_OCI_DATASAFE_DIFFERENCE_COLUMN_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_difference_column_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_difference_column_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_difference_column_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SDM_MASKING_POLICY_DIFFERENCE_COLUMN_COLLECTION_T Type

A collection of SDM masking policy difference column summary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sdm_masking_policy_difference_column_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_difference_column_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sdm_masking_policy_difference_column_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sdm_masking_policy_difference_column_collection_t (
    items dbms_cloud_oci_datasafe_difference_column_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) An array of SDM masking policy difference column summary objects.

DBMS_CLOUD_OCI_DATASAFE_SECTION_STATISTICS_T Type

Statistics showing the number of findings with a particular risk level for each category.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_section_statistics_t FORCE AUTHID CURRENT_USER IS OBJECT (
  targets_count number,
  auditing_findings_count number,
  authorization_control_findings_count number,
  data_encryption_findings_count number,
  db_configuration_findings_count number,
  fine_grained_access_control_findings_count number,
  privileges_and_roles_findings_count number,
  user_accounts_findings_count number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_section_statistics_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_section_statistics_t (
    targets_count number,
    auditing_findings_count number,
    authorization_control_findings_count number,
    data_encryption_findings_count number,
    db_configuration_findings_count number,
    fine_grained_access_control_findings_count number,
    privileges_and_roles_findings_count number,
    user_accounts_findings_count number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

targets_count

(optional) The number of targets that contributed to the counts at this risk level.

auditing_findings_count

(optional) The number of findings in the Auditing category.

authorization_control_findings_count

(optional) The number of findings in the Authorization Control category.

data_encryption_findings_count

(optional) The number of findings in the Data Encryption category.

db_configuration_findings_count

(optional) The number of findings in the Database Configuration category.

fine_grained_access_control_findings_count

(optional) The number of findings in the Fine-Grained Access Control category.

privileges_and_roles_findings_count

(optional) The number of findings in the Privileges and Roles category.

user_accounts_findings_count

(optional) The number of findings in the User Accounts category.

DBMS_CLOUD_OCI_DATASAFE_SECURITY_ASSESSMENT_STATISTICS_T Type

Statistics showing the number of findings for each category grouped by risk levels for all the targets in the specified security assessment. The categories include Auditing, Authorization Control, Data Encryption, Database Configuration, Fine-Grained Access Control, Privileges and Roles, and User Accounts. The risk levels include High Risk, Medium Risk, Low Risk, Advisory, Evaluate, and Pass.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_security_assessment_statistics_t FORCE AUTHID CURRENT_USER IS OBJECT (
  targets_count number,
  high_risk dbms_cloud_oci_datasafe_section_statistics_t,
  medium_risk dbms_cloud_oci_datasafe_section_statistics_t,
  low_risk dbms_cloud_oci_datasafe_section_statistics_t,
  advisory dbms_cloud_oci_datasafe_section_statistics_t,
  evaluate dbms_cloud_oci_datasafe_section_statistics_t,
  pass dbms_cloud_oci_datasafe_section_statistics_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_assessment_statistics_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_assessment_statistics_t (
    targets_count number,
    high_risk dbms_cloud_oci_datasafe_section_statistics_t,
    medium_risk dbms_cloud_oci_datasafe_section_statistics_t,
    low_risk dbms_cloud_oci_datasafe_section_statistics_t,
    advisory dbms_cloud_oci_datasafe_section_statistics_t,
    evaluate dbms_cloud_oci_datasafe_section_statistics_t,
    pass dbms_cloud_oci_datasafe_section_statistics_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

targets_count

(optional) The total number of targets in this security assessment.

high_risk

(optional)

medium_risk

(optional)

low_risk

(optional)

advisory

(optional)

evaluate

(optional)

pass

(optional)

DBMS_CLOUD_OCI_DATASAFE_SECURITY_ASSESSMENT_T Type

A security assessment that provides an overall insight into your database security posture. The security assessment results are based on the analysis of your database configurations, user accounts, and security controls. For more information, see Security Assessment Overview.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_security_assessment_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  time_last_assessed timestamp with time zone,
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  target_ids dbms_cloud_oci_datasafe_varchar2_tbl,
  ignored_targets dbms_cloud_oci_datasafe_json_element_t_tbl,
  ignored_assessment_ids dbms_cloud_oci_datasafe_json_element_t_tbl,
  target_version varchar2(32767),
  is_baseline number,
  is_deviated_from_baseline number,
  last_compared_baseline_id varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  schedule_security_assessment_id varchar2(32767),
  triggered_by varchar2(32767),
  description varchar2(32767),
  schedule varchar2(32767),
  link varchar2(32767),
  l_type varchar2(32767),
  statistics dbms_cloud_oci_datasafe_security_assessment_statistics_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_assessment_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_assessment_t (
    id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    time_last_assessed timestamp with time zone,
    compartment_id varchar2,
    display_name varchar2,
    target_ids dbms_cloud_oci_datasafe_varchar2_tbl,
    ignored_targets dbms_cloud_oci_datasafe_json_element_t_tbl,
    ignored_assessment_ids dbms_cloud_oci_datasafe_json_element_t_tbl,
    target_version varchar2,
    is_baseline number,
    is_deviated_from_baseline number,
    last_compared_baseline_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    schedule_security_assessment_id varchar2,
    triggered_by varchar2,
    description varchar2,
    schedule varchar2,
    link varchar2,
    l_type varchar2,
    statistics dbms_cloud_oci_datasafe_security_assessment_statistics_t,
    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) The OCID of the security assessment.

time_created

(required) The date and time the security assessment was created, in the format defined by RFC3339.

time_updated

(required) The date and time the security assessment was last updated, in the format defined by RFC3339.

time_last_assessed

(optional) The date and time the security assessment was last executed, in the format defined by RFC3339.

compartment_id

(required) The OCID of the compartment that contains the security assessment.

display_name

(required) The display name of the security assessment.

target_ids

(required) Array of database target OCIDs.

ignored_targets

(optional) List containing maps as values. Example: `{\"Operations\": [ {\"CostCenter\": \"42\"} ] }`

ignored_assessment_ids

(optional) List containing maps as values. Example: `{\"Operations\": [ {\"CostCenter\": \"42\"} ] }`

target_version

(optional) The version of the target database.

is_baseline

(optional) Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.

is_deviated_from_baseline

(optional) Indicates if the assessment has deviated from the baseline.

last_compared_baseline_id

(optional) The OCID of the baseline against which the latest security assessment was compared.

lifecycle_state

(required) The current state of the security assessment.

Allowed values are: 'CREATING', 'SUCCEEDED', 'UPDATING', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(optional) Details about the current state of the security assessment.

schedule_security_assessment_id

(optional) The OCID of the security assessment that is responsible for creating this scheduled save assessment.

triggered_by

(optional) Indicates whether the security assessment was created by system or by a user.

Allowed values are: 'USER', 'SYSTEM'

description

(optional) The description of the security assessment.

schedule

(optional) Schedule to save the assessment periodically in the specified format: <version-string>;<version-specific-schedule> Allowed version strings - \"v1\" v1's version specific schedule -<ss> <mm> <hh> <day-of-week> <day-of-month> Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = <ss> (So, the allowed range for <ss> is [0, 59]) 2. minutes = <mm> (So, the allowed range for <mm> is [0, 59]) 3. hours = <hh> (So, the allowed range for <hh> is [0, 23]) <day-of-week> can be either '*' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is '*'. When not, day of week must equal the given value <day-of-month> can be either '*' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is '*'. When not, day of month must equal the given value

link

(optional) The summary of findings for the security assessment

l_type

(required) The type of this security assessment. The possible types are: LATEST: The most up-to-date assessment that is running automatically for a target. It is system generated. SAVED: A saved security assessment. LATEST assessments are always saved in order to maintain the history of runs. A SAVED assessment is also generated by a 'refresh' action (triggered by the user). SAVE_SCHEDULE: The schedule for periodic saves of LATEST assessments. COMPARTMENT: An automatically managed assessment type that stores all details of targets in one compartment. This type keeps an up-to-date assessment of all database risks in one compartment. It is automatically updated when the latest assessment or refresh action is executed. It is also automatically updated when a target is deleted or move to a different compartment.

Allowed values are: 'LATEST', 'SAVED', 'SAVE_SCHEDULE', 'COMPARTMENT'

statistics

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_SECURITY_ASSESSMENT_BASE_LINE_DETAILS_T Type

The details required to set the baseline for the assessment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_security_assessment_base_line_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  assessment_ids dbms_cloud_oci_datasafe_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_assessment_base_line_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_assessment_base_line_details_t (
    assessment_ids dbms_cloud_oci_datasafe_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

assessment_ids

(optional) The list of OCIDs for the security assessments that need to be updated while setting the baseline.

DBMS_CLOUD_OCI_DATASAFE_DIFFS_TBL Type

Nested table type of dbms_cloud_oci_datasafe_diffs_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_diffs_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_diffs_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SECURITY_ASSESSMENT_COMPARISON_PER_TARGET_T Type

The results of the comparison between two security assessment resources.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_security_assessment_comparison_per_target_t FORCE AUTHID CURRENT_USER IS OBJECT (
  baseline_target_id varchar2(32767),
  current_target_id varchar2(32767),
  auditing dbms_cloud_oci_datasafe_diffs_tbl,
  authorization_control dbms_cloud_oci_datasafe_diffs_tbl,
  data_encryption dbms_cloud_oci_datasafe_diffs_tbl,
  db_configuration dbms_cloud_oci_datasafe_diffs_tbl,
  fine_grained_access_control dbms_cloud_oci_datasafe_diffs_tbl,
  privileges_and_roles dbms_cloud_oci_datasafe_diffs_tbl,
  user_accounts dbms_cloud_oci_datasafe_diffs_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_assessment_comparison_per_target_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_assessment_comparison_per_target_t (
    baseline_target_id varchar2,
    current_target_id varchar2,
    auditing dbms_cloud_oci_datasafe_diffs_tbl,
    authorization_control dbms_cloud_oci_datasafe_diffs_tbl,
    data_encryption dbms_cloud_oci_datasafe_diffs_tbl,
    db_configuration dbms_cloud_oci_datasafe_diffs_tbl,
    fine_grained_access_control dbms_cloud_oci_datasafe_diffs_tbl,
    privileges_and_roles dbms_cloud_oci_datasafe_diffs_tbl,
    user_accounts dbms_cloud_oci_datasafe_diffs_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

baseline_target_id

(optional) The OCID of the target that is used as a baseline in this comparison.

current_target_id

(optional) The OCID of the target to be compared against the baseline target.

auditing

(optional) A comparison between findings belonging to Auditing category.

authorization_control

(optional) A comparison between findings belonging to Authorization Control category.

data_encryption

(optional) Comparison between findings belonging to Data Encryption category.

db_configuration

(optional) Comparison between findings belonging to Database Configuration category.

fine_grained_access_control

(optional) Comparison between findings belonging to Fine-Grained Access Control category.

privileges_and_roles

(optional) Comparison between findings belonging to Privileges and Roles category.

user_accounts

(optional) Comparison between findings belonging to User Accounts category.

DBMS_CLOUD_OCI_DATASAFE_SECURITY_ASSESSMENT_COMPARISON_PER_TARGET_TBL Type

Nested table type of dbms_cloud_oci_datasafe_security_assessment_comparison_per_target_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_security_assessment_comparison_per_target_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_security_assessment_comparison_per_target_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SECURITY_ASSESSMENT_COMPARISON_T Type

Provides a list of the differences in a comparison of the security assessment with the baseline value.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_security_assessment_comparison_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  baseline_id varchar2(32767),
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  targets dbms_cloud_oci_datasafe_security_assessment_comparison_per_target_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_assessment_comparison_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_assessment_comparison_t (
    id varchar2,
    baseline_id varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    targets dbms_cloud_oci_datasafe_security_assessment_comparison_per_target_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(optional) The OCID of the security assessment that is being compared with a baseline security assessment.

baseline_id

(optional) The OCID of the security assessment that is set as a baseline.

lifecycle_state

(required) The current state of the security assessment comparison.

Allowed values are: 'CREATING', 'SUCCEEDED', 'FAILED'

time_created

(required) The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.

targets

(optional) A target-based comparison between two security assessments.

DBMS_CLOUD_OCI_DATASAFE_SECURITY_ASSESSMENT_SUMMARY_T Type

The summary of a security assessment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_security_assessment_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  description varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  time_last_assessed timestamp with time zone,
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  target_ids dbms_cloud_oci_datasafe_varchar2_tbl,
  ignored_target_ids dbms_cloud_oci_datasafe_json_element_t_tbl,
  ignored_assessment_ids dbms_cloud_oci_datasafe_json_element_t_tbl,
  is_baseline number,
  is_deviated_from_baseline number,
  last_compared_baseline_id varchar2(32767),
  schedule_security_assessment_id varchar2(32767),
  schedule varchar2(32767),
  triggered_by varchar2(32767),
  link varchar2(32767),
  l_type varchar2(32767),
  statistics dbms_cloud_oci_datasafe_security_assessment_statistics_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_assessment_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_assessment_summary_t (
    id varchar2,
    description varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    time_last_assessed timestamp with time zone,
    compartment_id varchar2,
    display_name varchar2,
    target_ids dbms_cloud_oci_datasafe_varchar2_tbl,
    ignored_target_ids dbms_cloud_oci_datasafe_json_element_t_tbl,
    ignored_assessment_ids dbms_cloud_oci_datasafe_json_element_t_tbl,
    is_baseline number,
    is_deviated_from_baseline number,
    last_compared_baseline_id varchar2,
    schedule_security_assessment_id varchar2,
    schedule varchar2,
    triggered_by varchar2,
    link varchar2,
    l_type varchar2,
    statistics dbms_cloud_oci_datasafe_security_assessment_statistics_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the security assessment.

description

(optional) The description of the security assessment.

lifecycle_state

(required) The current state of the security assessment.

Allowed values are: 'CREATING', 'SUCCEEDED', 'UPDATING', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(optional) Details about the current state of the security assessment.

time_created

(required) The date and time the security assessment was created, in the format defined by RFC3339.

time_updated

(required) The date and time the security assessment was last updated, in the format defined by RFC3339.

time_last_assessed

(optional) The date and time the security assessment was last executed, in the format defined by RFC3339.

compartment_id

(required) The OCID of the compartment that contains the security assessment.

display_name

(required) The display name of the security assessment.

target_ids

(required) Array of database target OCIDs.

ignored_target_ids

(optional) List containing maps as values. Example: `{\"Operations\": [ {\"CostCenter\": \"42\"} ] }`

ignored_assessment_ids

(optional) List containing maps as values. Example: `{\"Operations\": [ {\"CostCenter\": \"42\"} ] }`

is_baseline

(optional) Indicates whether or not the assessment is a baseline assessment. This applied to saved security assessments only.

is_deviated_from_baseline

(optional) Indicates whether or not the security assessment deviates from the baseline.

last_compared_baseline_id

(optional) The OCID of the baseline against which the latest assessment was compared.

schedule_security_assessment_id

(optional) The OCID of the security assessment that created this scheduled save assessment.

schedule

(optional) Schedule of the assessment that runs periodically in the specified format: - <version-string>;<version-specific-schedule> Allowed version strings - \"v1\" v1's version specific schedule -<ss> <mm> <hh> <day-of-week> <day-of-month> Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = <ss> (So, the allowed range for <ss> is [0, 59]) 2. minutes = <mm> (So, the allowed range for <mm> is [0, 59]) 3. hours = <hh> (So, the allowed range for <hh> is [0, 23]) <day-of-week> can be either '*' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is '*'. When not, day of week must equal the given value <day-of-month> can be either '*' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is '*'. When not, day of month must equal the given value

triggered_by

(optional) Indicates whether the security assessment was created by system or by a user.

Allowed values are: 'USER', 'SYSTEM'

link

(optional) The summary of findings for the security assessment.

l_type

(required) The type of the security assessment. Possible values are: LATEST: The most up-to-date assessment that is running automatically for a target. It is system generated. SAVED: A saved security assessment. LATEST assessments are always saved in order to maintain the history of runs. A SAVED assessment is also generated by a 'refresh' action (triggered by the user). SAVE_SCHEDULE: The schedule for periodic saves of LATEST assessments. COMPARTMENT: An automatically managed assessment type that stores all details of targets in one compartment. This type keeps an up-to-date assessment of all database risks in one compartment. It is automatically updated when the latest assessment or refresh action is executed. It is also automatically updated when a target is deleted or move to a different compartment.

Allowed values are: 'LATEST', 'SAVED', 'SAVE_SCHEDULE', 'COMPARTMENT'

statistics

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_SECURITY_POLICY_T Type

The resource represents as a container for all the security policies in Data Safe.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_security_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description 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_datasafe_security_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_policy_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description 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) The OCID of the security policy.

compartment_id

(required) The OCID of the compartment containing the security policy.

display_name

(required) The display name of the security policy.

description

(optional) The description of the security policy.

time_created

(required) The time that the security policy was created, in the format defined by RFC3339.

time_updated

(optional) The last date and time the security policy was updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the security policy.

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

lifecycle_details

(optional) Details about the current state of the security policy in Data Safe.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_SECURITY_POLICY_SUMMARY_T Type

The resource represents as a container for all the security policies in Data Safe.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_security_policy_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description 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_datasafe_security_policy_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_policy_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description 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) The OCID of the security policy.

compartment_id

(required) The OCID of the compartment containing the security policy.

display_name

(required) The display name of the security policy.

description

(optional) The description of the security policy.

time_created

(required) The time that the security policy was created, in the format defined by RFC3339.

time_updated

(optional) The last date and time the security policy was updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the security policy.

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

lifecycle_details

(optional) Details about the current state of the security policy in Data Safe.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_SECURITY_POLICY_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_security_policy_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_security_policy_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_security_policy_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SECURITY_POLICY_COLLECTION_T Type

Collection of security policy summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_security_policy_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_security_policy_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_policy_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_policy_collection_t (
    items dbms_cloud_oci_datasafe_security_policy_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of security policy summary.

DBMS_CLOUD_OCI_DATASAFE_SECURITY_POLICY_DEPLOYMENT_T Type

The resource represents the state of the deployment of a security policy on a target.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_security_policy_deployment_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  target_id varchar2(32767),
  security_policy_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_datasafe_security_policy_deployment_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_policy_deployment_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    target_id varchar2,
    security_policy_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) The OCID of the security policy deployment.

compartment_id

(required) The OCID of the compartment containing the security policy deployment.

display_name

(required) The display name of the security policy deployment.

description

(optional) The description of the security policy deployment.

target_id

(required) The OCID of the target where the security policy is deployed.

security_policy_id

(required) The OCID of the security policy corresponding to the security policy deployment.

time_created

(required) The time that the security policy deployment was created, in the format defined by RFC3339.

time_updated

(optional) The last date and time the security policy deployment was updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the security policy deployment.

Allowed values are: 'CREATING', 'UPDATING', 'DEPLOYED', 'NEEDS_ATTENTION', 'FAILED', 'DELETING', 'DELETED'

lifecycle_details

(optional) Details about the current state of the security policy deployment in Data Safe.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_SECURITY_POLICY_DEPLOYMENT_SUMMARY_T Type

The resource represents the state of the deployment of a security policy on a target.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_security_policy_deployment_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  target_id varchar2(32767),
  security_policy_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_datasafe_security_policy_deployment_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_policy_deployment_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    target_id varchar2,
    security_policy_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) The OCID of the security policy deployment.

compartment_id

(required) The OCID of the compartment containing the security policy deployment.

display_name

(required) The display name of the security policy deployment.

description

(optional) The description of the security policy deployment.

target_id

(required) The OCID of the target where the security policy is deployed.

security_policy_id

(required) The OCID of the security policy corresponding to the security policy deployment.

time_created

(required) The time that the security policy deployment was created, in the format defined by RFC3339.

time_updated

(optional) The last date and time the security policy deployment was updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the security policy deployment.

Allowed values are: 'CREATING', 'UPDATING', 'DEPLOYED', 'NEEDS_ATTENTION', 'FAILED', 'DELETING', 'DELETED'

lifecycle_details

(optional) Details about the current state of the security policy deployment in Data Safe.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_SECURITY_POLICY_DEPLOYMENT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_security_policy_deployment_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_security_policy_deployment_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_security_policy_deployment_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SECURITY_POLICY_DEPLOYMENT_COLLECTION_T Type

Collection of security policy deployment summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_security_policy_deployment_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_security_policy_deployment_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_policy_deployment_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_policy_deployment_collection_t (
    items dbms_cloud_oci_datasafe_security_policy_deployment_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of security policy deployment summary.

DBMS_CLOUD_OCI_DATASAFE_SECURITY_POLICY_ENTRY_STATE_T Type

The resource represents the state of a specific entry type deployment on a target.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_security_policy_entry_state_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  security_policy_entry_id varchar2(32767),
  security_policy_deployment_id varchar2(32767),
  deployment_status varchar2(32767),
  entry_details dbms_cloud_oci_datasafe_entry_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_policy_entry_state_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_policy_entry_state_t (
    id varchar2,
    security_policy_entry_id varchar2,
    security_policy_deployment_id varchar2,
    deployment_status varchar2,
    entry_details dbms_cloud_oci_datasafe_entry_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique id of the security policy entry state.

security_policy_entry_id

(required) The OCID of the security policy entry type associated.

security_policy_deployment_id

(optional) The OCID of the security policy deployment associated.

deployment_status

(required) The current deployment status of the security policy deployment and the security policy entry associated.

Allowed values are: 'CREATED', 'MODIFIED', 'CONFLICT', 'UNAUTHORIZED', 'DELETED'

entry_details

(optional)

DBMS_CLOUD_OCI_DATASAFE_SECURITY_POLICY_ENTRY_STATE_SUMMARY_T Type

The resource represents the state of a specific entry type deployment on a target.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_security_policy_entry_state_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  security_policy_entry_id varchar2(32767),
  security_policy_deployment_id varchar2(32767),
  deployment_status varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_policy_entry_state_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_policy_entry_state_summary_t (
    id varchar2,
    security_policy_entry_id varchar2,
    security_policy_deployment_id varchar2,
    deployment_status varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique id of the security policy entry state.

security_policy_entry_id

(required) The OCID of the security policy entry associated.

security_policy_deployment_id

(optional) The OCID of the security policy deployment associated.

deployment_status

(required) The current deployment status of the security policy deployment and the security policy entry associated.

Allowed values are: 'CREATED', 'MODIFIED', 'CONFLICT', 'UNAUTHORIZED', 'DELETED'

DBMS_CLOUD_OCI_DATASAFE_SECURITY_POLICY_ENTRY_STATE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_security_policy_entry_state_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_security_policy_entry_state_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_security_policy_entry_state_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SECURITY_POLICY_ENTRY_STATE_COLLECTION_T Type

Collection of security policy entry state summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_security_policy_entry_state_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_security_policy_entry_state_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_policy_entry_state_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_security_policy_entry_state_collection_t (
    items dbms_cloud_oci_datasafe_security_policy_entry_state_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of security policy entry state summary.

DBMS_CLOUD_OCI_DATASAFE_SENSITIVE_TYPE_T Type

A sensitive type defines a particular type or class of sensitive data. It can be a basic sensitive type with regular expressions or a sensitive category. While sensitive types are used for data discovery, sensitive categories are used for logically grouping the related or similar sensitive types.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sensitive_type_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  entity_type varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  lifecycle_state varchar2(32767),
  short_name varchar2(32767),
  source varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  description varchar2(32767),
  parent_category_id varchar2(32767),
  is_common number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_type_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_type_t (
    id varchar2,
    entity_type varchar2,
    display_name varchar2,
    compartment_id varchar2,
    lifecycle_state varchar2,
    short_name varchar2,
    source varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    description varchar2,
    parent_category_id varchar2,
    is_common number,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(required) The OCID of the sensitive type.

entity_type

(required) The entity type. It can be either a sensitive type with regular expressions or a sensitive category used for grouping similar sensitive types.

Allowed values are: 'SENSITIVE_TYPE', 'SENSITIVE_CATEGORY'

display_name

(required) The display name of the sensitive type.

compartment_id

(required) The OCID of the compartment that contains the sensitive type.

lifecycle_state

(required) The current state of the sensitive type.

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

short_name

(optional) The short name of the sensitive type.

source

(required) Specifies whether the sensitive type is user-defined or predefined.

Allowed values are: 'ORACLE', 'USER'

time_created

(required) The date and time the sensitive type was created, in the format defined by RFC3339.

time_updated

(required) The date and time the sensitive type was last updated, in the format defined by RFC3339.

description

(optional) The description of the sensitive type.

parent_category_id

(optional) The OCID of the parent sensitive category.

is_common

(optional) Specifies whether the sensitive type is common. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_SENSITIVE_CATEGORY_T Type

Details of the sensitive category.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sensitive_category_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_sensitive_type_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_category_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_category_t (
    id varchar2,
    entity_type varchar2,
    display_name varchar2,
    compartment_id varchar2,
    lifecycle_state varchar2,
    short_name varchar2,
    source varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    description varchar2,
    parent_category_id varchar2,
    is_common number,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_sensitive_category_t is a subtype of the dbms_cloud_oci_datasafe_sensitive_type_t type.

DBMS_CLOUD_OCI_DATASAFE_SENSITIVE_COLUMN_T Type

A sensitive column is a resource corresponding to a database column that is considered sensitive. It's a subresource of sensitive data model resource and is always associated with a sensitive data model. Note that referential relationships are also managed as part of sensitive columns.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sensitive_column_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  sensitive_data_model_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  app_name varchar2(32767),
  schema_name varchar2(32767),
  object_name varchar2(32767),
  column_name varchar2(32767),
  object_type varchar2(32767),
  data_type varchar2(32767),
  status varchar2(32767),
  sensitive_type_id varchar2(32767),
  source varchar2(32767),
  parent_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
  relation_type varchar2(32767),
  estimated_data_value_count number,
  sample_data_values dbms_cloud_oci_datasafe_varchar2_tbl,
  app_defined_child_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
  db_defined_child_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
  column_groups dbms_cloud_oci_datasafe_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_column_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_column_t (
    key varchar2,
    sensitive_data_model_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    app_name varchar2,
    schema_name varchar2,
    object_name varchar2,
    column_name varchar2,
    object_type varchar2,
    data_type varchar2,
    status varchar2,
    sensitive_type_id varchar2,
    source varchar2,
    parent_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
    relation_type varchar2,
    estimated_data_value_count number,
    sample_data_values dbms_cloud_oci_datasafe_varchar2_tbl,
    app_defined_child_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
    db_defined_child_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
    column_groups dbms_cloud_oci_datasafe_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) The unique key that identifies the sensitive column. It's numeric and unique within a sensitive data model.

sensitive_data_model_id

(required) The OCID of the sensitive data model that contains the sensitive column.

time_created

(required) The date and time, in the format defined by RFC3339, the sensitive column was created in the sensitive data model.

time_updated

(required) The date and time, in the format defined by RFC3339, the sensitive column was last updated in the sensitive data model.

lifecycle_state

(required) The current state of the sensitive column.

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

lifecycle_details

(optional) Details about the current state of the sensitive column.

app_name

(required) The name of the application associated with the sensitive column. It's useful when the application name is different from the schema name. Otherwise, it can be ignored.

schema_name

(required) The database schema that contains the sensitive column.

object_name

(required) The database object that contains the sensitive column.

column_name

(required) The name of the sensitive column.

object_type

(required) The type of the database object that contains the sensitive column.

Allowed values are: 'TABLE', 'EDITIONING_VIEW'

data_type

(required) The data type of the sensitive column.

status

(required) The status of the sensitive column. VALID means the column is considered sensitive. INVALID means the column is not considered sensitive. Tracking invalid columns in a sensitive data model helps ensure that an incremental data discovery job does not identify these columns as sensitive again.

Allowed values are: 'VALID', 'INVALID'

sensitive_type_id

(optional) The OCID of the sensitive type associated with the sensitive column.

source

(required) The source of the sensitive column. DISCOVERY indicates that the column was added to the sensitive data model using a data discovery job. MANUAL indicates that the column was added manually.

Allowed values are: 'MANUAL', 'DISCOVERY'

parent_column_keys

(optional) Unique keys identifying the columns that are parents of the sensitive column. At present, it tracks a single parent only.

relation_type

(required) The type of referential relationship the sensitive column has with its parent. NONE indicates that the sensitive column does not have a parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary.

Allowed values are: 'NONE', 'APP_DEFINED', 'DB_DEFINED'

estimated_data_value_count

(required) The estimated number of data values the column has in the associated database.

sample_data_values

(optional) Original data values collected for the sensitive column from the associated database. Sample data helps review the column and ensure that it actually contains sensitive data. Note that sample data is retrieved by a data discovery job only if the isSampleDataCollectionEnabled attribute is set to true. At present, only one data value is collected per sensitive column.

app_defined_child_column_keys

(optional) Unique keys identifying the columns that are application-level (non-dictionary) children of the sensitive column.

db_defined_child_column_keys

(optional) Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column.

column_groups

(optional) The composite key groups to which the sensitive column belongs. If the column is part of a composite key, it's assigned a column group. It helps identify and manage referential relationships that involve composite keys.

DBMS_CLOUD_OCI_DATASAFE_SENSITIVE_COLUMN_SUMMARY_T Type

Summary of a sensitive column present in a sensitive data model.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sensitive_column_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  sensitive_data_model_id varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  app_name varchar2(32767),
  schema_name varchar2(32767),
  object_name varchar2(32767),
  column_name varchar2(32767),
  object_type varchar2(32767),
  data_type varchar2(32767),
  status varchar2(32767),
  sensitive_type_id varchar2(32767),
  source varchar2(32767),
  parent_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
  relation_type varchar2(32767),
  estimated_data_value_count number,
  sample_data_values dbms_cloud_oci_datasafe_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_column_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_column_summary_t (
    key varchar2,
    sensitive_data_model_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    app_name varchar2,
    schema_name varchar2,
    object_name varchar2,
    column_name varchar2,
    object_type varchar2,
    data_type varchar2,
    status varchar2,
    sensitive_type_id varchar2,
    source varchar2,
    parent_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
    relation_type varchar2,
    estimated_data_value_count number,
    sample_data_values dbms_cloud_oci_datasafe_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) The unique key that identifies the sensitive column. It's numeric and unique within a sensitive data model.

sensitive_data_model_id

(required) The OCID of the sensitive data model that contains the sensitive column.

lifecycle_state

(required) The current state of the sensitive column.

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

lifecycle_details

(optional) Details about the current state of the sensitive column.

time_created

(required) The date and time, in the format defined by RFC3339, the sensitive column was created in the sensitive data model.

time_updated

(required) The date and time, in the format defined by RFC3339, the sensitive column was last updated in the sensitive data model.

app_name

(required) The name of the application associated with the sensitive column. It's useful when the application name is different from the schema name. Otherwise, it can be ignored.

schema_name

(required) The database schema that contains the sensitive column.

object_name

(required) The database object that contains the sensitive column.

column_name

(required) The name of the sensitive column.

object_type

(required) The type of the database object that contains the sensitive column.

Allowed values are: 'TABLE', 'EDITIONING_VIEW'

data_type

(required) The data type of the sensitive column.

status

(required) The status of the sensitive column. VALID means the column is considered sensitive. INVALID means the column is not considered sensitive. Tracking invalid columns in a sensitive data model helps ensure that an incremental data discovery job does not identify these columns as sensitive again.

Allowed values are: 'VALID', 'INVALID'

sensitive_type_id

(optional) The OCID of the sensitive type associated with the sensitive column.

source

(required) The source of the sensitive column. DISCOVERY indicates that the column was added to the sensitive data model using a data discovery job. MANUAL indicates that the column was added manually.

Allowed values are: 'MANUAL', 'DISCOVERY'

parent_column_keys

(optional) Unique keys identifying the columns that are parents of the sensitive column. At present, it tracks a single parent only.

relation_type

(required) The type of referential relationship the sensitive column has with its parent. NONE indicates that the sensitive column does not have a parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary.

Allowed values are: 'NONE', 'APP_DEFINED', 'DB_DEFINED'

estimated_data_value_count

(required) The estimated number of data values the column has in the associated database.

sample_data_values

(optional) Original data values collected for the sensitive column from the associated database. Sample data helps review the column and ensure that it actually contains sensitive data. Note that sample data is retrieved by a data discovery job only if the isSampleDataCollectionEnabled attribute is set to true. At present, only one data value is collected per sensitive column.

DBMS_CLOUD_OCI_DATASAFE_SENSITIVE_COLUMN_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_sensitive_column_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sensitive_column_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_sensitive_column_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SENSITIVE_COLUMN_COLLECTION_T Type

A collection of sensitive column summary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sensitive_column_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_sensitive_column_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_column_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_column_collection_t (
    items dbms_cloud_oci_datasafe_sensitive_column_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) An array of sensitive column summary objects.

DBMS_CLOUD_OCI_DATASAFE_SENSITIVE_DATA_MODEL_T Type

A sensitive data model is a collection of sensitive columns and their referential relationships. It helps understand the sensitive data landscape, track changes, and efficiently enable security controls such as data masking. It can be managed either manually or by performing sensitive data discovery on a reference target database.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sensitive_data_model_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  target_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  app_suite_name varchar2(32767),
  description varchar2(32767),
  schemas_for_discovery dbms_cloud_oci_datasafe_varchar2_tbl,
  sensitive_type_ids_for_discovery dbms_cloud_oci_datasafe_varchar2_tbl,
  is_sample_data_collection_enabled number,
  is_app_defined_relation_discovery_enabled number,
  is_include_all_schemas number,
  is_include_all_sensitive_types number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_data_model_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_data_model_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    target_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    app_suite_name varchar2,
    description varchar2,
    schemas_for_discovery dbms_cloud_oci_datasafe_varchar2_tbl,
    sensitive_type_ids_for_discovery dbms_cloud_oci_datasafe_varchar2_tbl,
    is_sample_data_collection_enabled number,
    is_app_defined_relation_discovery_enabled number,
    is_include_all_schemas number,
    is_include_all_sensitive_types 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) The OCID of the sensitive data model.

display_name

(required) The display name of the sensitive data model.

compartment_id

(required) The OCID of the compartment that contains the sensitive data model.

target_id

(required) The OCID of the reference target database associated with the sensitive data model. All operations such as performing data discovery and adding columns manually are done in the context of the associated target database.

time_created

(required) The date and time the sensitive data model was created, in the format defined by RFC3339.

time_updated

(required) The date and time the sensitive data model was last updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the sensitive data model.

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

app_suite_name

(required) The application suite name identifying a collection of applications. The default value is GENERIC. It's useful only if maintaining a sensitive data model for a suite of applications.

description

(optional) The description of the sensitive data model.

schemas_for_discovery

(optional) The schemas to be scanned by data discovery jobs.

sensitive_type_ids_for_discovery

(optional) The OCIDs of the sensitive types to be used by data discovery jobs.

is_sample_data_collection_enabled

(required) Indicates if data discovery jobs should collect and store sample data values for the discovered columns. Sample data helps review the discovered columns and ensure that they actually contain sensitive data. As it collects original data from the target database, it's disabled by default and should be used only if it's acceptable to store sample data in Data Safe's repository in Oracle Cloud. Note that sample data values are not collected for columns with the following data types: LONG, LOB, RAW, XMLTYPE and BFILE.

is_app_defined_relation_discovery_enabled

(required) Indicates if data discovery jobs should identify potential application-level (non-dictionary) referential relationships between columns. Note that data discovery automatically identifies and adds database-level (dictionary-defined) relationships. This option helps identify application-level relationships that are not defined in the database dictionary, which in turn, helps identify additional sensitive columns and preserve referential integrity during data masking. It's disabled by default and should be used only if there is a need to identify application-level relationships.

is_include_all_schemas

(required) Indicates if all the schemas in the associated target database should be scanned by data discovery jobs. If it is set to true, sensitive data is discovered in all schemas (except for schemas maintained by Oracle).

is_include_all_sensitive_types

(required) Indicates if all the existing sensitive types should be used by data discovery jobs.If it's set to true, the sensitiveTypeIdsForDiscovery attribute is ignored and all sensitive types are used for data discovery.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_SENSITIVE_DATA_MODEL_SUMMARY_T Type

Summary of a sensitive data model.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sensitive_data_model_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  target_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  app_suite_name varchar2(32767),
  description varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_data_model_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_data_model_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    target_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    app_suite_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the sensitive data model.

display_name

(required) The display name of the sensitive data model.

compartment_id

(required) The OCID of the compartment that contains the sensitive data model.

target_id

(required) The OCID of the reference target database associated with the sensitive data model. All operations such as performing data discovery and adding columns manually are done in the context of the associated target database.

time_created

(required) The date and time the sensitive data model was created, in the format defined by RFC3339.

time_updated

(required) The date and time the sensitive data model was last updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the sensitive data model.

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

app_suite_name

(required) The application suite name identifying a collection of applications. The default value is GENERIC. It's useful only if maintaining a sensitive data model for a suite of applications.

description

(optional) The description of the sensitive data model.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_SENSITIVE_DATA_MODEL_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_sensitive_data_model_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sensitive_data_model_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_sensitive_data_model_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SENSITIVE_DATA_MODEL_COLLECTION_T Type

A collection of sensitive data model summary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sensitive_data_model_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_sensitive_data_model_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_data_model_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_data_model_collection_t (
    items dbms_cloud_oci_datasafe_sensitive_data_model_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) An array of sensitive data model summary objects.

DBMS_CLOUD_OCI_DATASAFE_SENSITIVE_OBJECT_SUMMARY_T Type

Summary of a sensitive object present in a sensitive data model.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sensitive_object_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  schema_name varchar2(32767),
  object_name varchar2(32767),
  object_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_object_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_object_summary_t (
    schema_name varchar2,
    object_name varchar2,
    object_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

schema_name

(required) The database schema that contains the sensitive column.

object_name

(required) The database object that contains the sensitive column.

object_type

(required) The type of the database object that contains the sensitive column.

Allowed values are: 'TABLE', 'EDITIONING_VIEW'

DBMS_CLOUD_OCI_DATASAFE_SENSITIVE_OBJECT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_sensitive_object_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sensitive_object_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_sensitive_object_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SENSITIVE_OBJECT_COLLECTION_T Type

A collection of sensitive object summary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sensitive_object_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_sensitive_object_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_object_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_object_collection_t (
    items dbms_cloud_oci_datasafe_sensitive_object_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) An array of sensitive object summary objects.

DBMS_CLOUD_OCI_DATASAFE_SENSITIVE_SCHEMA_SUMMARY_T Type

Summary of a sensitive schema present in a sensitive data model.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sensitive_schema_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  schema_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_schema_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_schema_summary_t (
    schema_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

schema_name

(required) The database schema that contains the sensitive column.

DBMS_CLOUD_OCI_DATASAFE_SENSITIVE_SCHEMA_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_sensitive_schema_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sensitive_schema_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_sensitive_schema_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SENSITIVE_SCHEMA_COLLECTION_T Type

A collection of sensitive schema summary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sensitive_schema_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_sensitive_schema_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_schema_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_schema_collection_t (
    items dbms_cloud_oci_datasafe_sensitive_schema_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) An array of sensitive schema summary objects.

DBMS_CLOUD_OCI_DATASAFE_SENSITIVE_TYPE_SUMMARY_T Type

Summary of a sensitive type.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sensitive_type_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  lifecycle_state varchar2(32767),
  short_name varchar2(32767),
  source varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  description varchar2(32767),
  entity_type varchar2(32767),
  parent_category_id varchar2(32767),
  default_masking_format_id varchar2(32767),
  is_common number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_type_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_type_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    lifecycle_state varchar2,
    short_name varchar2,
    source varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    description varchar2,
    entity_type varchar2,
    parent_category_id varchar2,
    default_masking_format_id varchar2,
    is_common number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the sensitive type.

display_name

(required) The display name of the sensitive type.

compartment_id

(required) The OCID of the compartment that contains the sensitive type.

lifecycle_state

(required) The current state of the sensitive type.

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

short_name

(optional) The short name of the sensitive type.

source

(required) Specifies whether the sensitive type is user-defined or predefined.

Allowed values are: 'ORACLE', 'USER'

time_created

(required) The date and time the sensitive type was created, in the format defined by RFC3339.

time_updated

(required) The date and time the sensitive type was last updated, in the format defined by RFC3339.

description

(optional) The description of the sensitive type.

entity_type

(required) The entity type. It can be either a sensitive type with regular expressions or a sensitive category used for grouping similar sensitive types.

Allowed values are: 'SENSITIVE_TYPE', 'SENSITIVE_CATEGORY'

parent_category_id

(optional) The OCID of the parent sensitive category.

default_masking_format_id

(optional) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.

is_common

(optional) Specifies whether the sensitive type is common. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_SENSITIVE_TYPE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_sensitive_type_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sensitive_type_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_sensitive_type_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SENSITIVE_TYPE_COLLECTION_T Type

A collection of sensitive type summary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sensitive_type_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_sensitive_type_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_type_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_type_collection_t (
    items dbms_cloud_oci_datasafe_sensitive_type_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) An array of sensitive type summary objects.

DBMS_CLOUD_OCI_DATASAFE_SENSITIVE_TYPE_PATTERN_T Type

Details of the sensitive type.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sensitive_type_pattern_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_sensitive_type_t (
  name_pattern varchar2(32767),
  comment_pattern varchar2(32767),
  data_pattern varchar2(32767),
  search_type varchar2(32767),
  default_masking_format_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_type_pattern_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sensitive_type_pattern_t (
    id varchar2,
    entity_type varchar2,
    display_name varchar2,
    compartment_id varchar2,
    lifecycle_state varchar2,
    short_name varchar2,
    source varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    description varchar2,
    parent_category_id varchar2,
    is_common number,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    name_pattern varchar2,
    comment_pattern varchar2,
    data_pattern varchar2,
    search_type varchar2,
    default_masking_format_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_sensitive_type_pattern_t is a subtype of the dbms_cloud_oci_datasafe_sensitive_type_t type.

Fields

Field Description

name_pattern

(optional) A regular expression to be used by data discovery for matching column names.

comment_pattern

(optional) A regular expression to be used by data discovery for matching column comments.

data_pattern

(optional) A regular expression to be used by data discovery for matching column data values.

search_type

(optional) The search type indicating how the column name, comment and data patterns should be used by data discovery.

Allowed values are: 'OR', 'AND'

default_masking_format_id

(optional) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.

DBMS_CLOUD_OCI_DATASAFE_SHUFFLE_FORMAT_ENTRY_T Type

The Shuffle masking format randomly shuffles values within a column. It can also be used to shuffle column data within discrete units, or groups, where there is a relationship among the members of each group. To learn more, check Shuffle in the Data Safe documentation. The Shuffle masking format randomly shuffles values within a column. It can also be used to shuffle column data within discrete units, or groups, where there is a relationship among the members of each group. To learn more, check Shuffle in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_shuffle_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  grouping_columns dbms_cloud_oci_datasafe_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_shuffle_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_shuffle_format_entry_t (
    l_type varchar2,
    description varchar2,
    grouping_columns dbms_cloud_oci_datasafe_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_shuffle_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

Fields

Field Description

grouping_columns

(optional) One or more reference columns to be used to group column values so that they can be shuffled within their own group. The grouping columns and the column to be masked must belong to the same table.

DBMS_CLOUD_OCI_DATASAFE_SQL_COLLECTION_T Type

The resource represents SQL collection for a specific database user in a target. SqlCollection encapsulates the SQL commands issued in the user’s database sessions, and its execution context.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  target_id varchar2(32767),
  status varchar2(32767),
  db_user_name varchar2(32767),
  time_last_started timestamp with time zone,
  time_last_stopped timestamp with time zone,
  sql_level 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_datasafe_sql_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_collection_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    target_id varchar2,
    status varchar2,
    db_user_name varchar2,
    time_last_started timestamp with time zone,
    time_last_stopped timestamp with time zone,
    sql_level 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) The OCID of the SQL collection.

compartment_id

(required) The OCID of the compartment containing the SQL collection.

display_name

(required) The display name of the SQL collection.

description

(optional) The description of the SQL collection.

target_id

(required) The OCID of the target corresponding to the security policy deployment.

status

(required) Specifies if the status of the SqlCollection. Enabled indicates that the collecting is in progress.

Allowed values are: 'ENABLED', 'DISABLED'

db_user_name

(required) The database user name.

time_last_started

(optional) The timestamp of the most recent SqlCollection start operation, in the format defined by RFC3339.

time_last_stopped

(optional) The timestamp of the most recent SqlCollection stop operation, in the format defined by RFC3339.

sql_level

(optional) Specifies the level of SQL that will be collected. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.

Allowed values are: 'USER_ISSUED_SQL', 'ALL_SQL'

time_created

(required) The time that the SQL collection was created, in the format defined by RFC3339.

time_updated

(optional) The last date and time the SQL collection was updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the SQL collection.

Allowed values are: 'CREATING', 'UPDATING', 'COLLECTING', 'COMPLETED', 'INACTIVE', 'FAILED', 'DELETING', 'DELETED', 'NEEDS_ATTENTION'

lifecycle_details

(optional) Details about the current state of the SQL collection in Data Safe.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_SQL_COLLECTION_DIMENSIONS_T Type

The dimensions available for SQL collection analytics.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_collection_dimensions_t FORCE AUTHID CURRENT_USER IS OBJECT (
  target_id varchar2(32767),
  lifecycle_state varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_collection_dimensions_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_collection_dimensions_t (
    target_id varchar2,
    lifecycle_state varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

target_id

(optional) The OCID of the target corresponding to the security policy deployment.

lifecycle_state

(optional) The current state of the SQL collection.

Allowed values are: 'CREATING', 'UPDATING', 'COLLECTING', 'COMPLETED', 'INACTIVE', 'FAILED', 'DELETING', 'DELETED', 'NEEDS_ATTENTION'

DBMS_CLOUD_OCI_DATASAFE_SQL_COLLECTION_AGGREGATION_T Type

The details of SQL collections.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_collection_aggregation_t FORCE AUTHID CURRENT_USER IS OBJECT (
  dimensions dbms_cloud_oci_datasafe_sql_collection_dimensions_t,
  l_count number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_collection_aggregation_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_collection_aggregation_t (
    dimensions dbms_cloud_oci_datasafe_sql_collection_dimensions_t,
    l_count number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

dimensions

(required)

l_count

(required) The total count of the aggregated metric.

DBMS_CLOUD_OCI_DATASAFE_SQL_COLLECTION_AGGREGATION_TBL Type

Nested table type of dbms_cloud_oci_datasafe_sql_collection_aggregation_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_collection_aggregation_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_sql_collection_aggregation_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SQL_COLLECTION_ANALYTICS_COLLECTION_T Type

SQL collection analytics collection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_collection_analytics_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_sql_collection_aggregation_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_collection_analytics_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_collection_analytics_collection_t (
    items dbms_cloud_oci_datasafe_sql_collection_aggregation_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) The aggregated data point items.

DBMS_CLOUD_OCI_DATASAFE_SQL_COLLECTION_SUMMARY_T Type

The resource represents SQL collection for a specific database user in a target. SqlCollection encapsulates the SQL commands issued in the user’s database sessions, and its execution context.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_collection_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  target_id varchar2(32767),
  status varchar2(32767),
  db_user_name varchar2(32767),
  time_last_started timestamp with time zone,
  time_last_stopped timestamp with time zone,
  sql_level 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,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_collection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_collection_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    target_id varchar2,
    status varchar2,
    db_user_name varchar2,
    time_last_started timestamp with time zone,
    time_last_stopped timestamp with time zone,
    sql_level 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
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the SQL collection.

compartment_id

(required) The OCID of the compartment containing the SQL collection.

display_name

(required) The display name of the SQL collection.

description

(optional) The description of the SQL collection.

target_id

(required) The OCID of the target corresponding to the security policy deployment.

status

(required) Specifies if the status of the SqlCollection. Enabled indicates that the collecting is in progress.

Allowed values are: 'ENABLED', 'DISABLED'

db_user_name

(required) The database user name.

time_last_started

(optional) The timestamp of the most recent SqlCollection start operation, in the format defined by RFC3339.

time_last_stopped

(optional) The timestamp of the most recent SqlCollection stop operation, in the format defined by RFC3339.

sql_level

(optional) Specifies the level of SQL that will be collected. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.

Allowed values are: 'USER_ISSUED_SQL', 'ALL_SQL'

time_created

(required) The time that the SQL collection was created, in the format defined by RFC3339.

time_updated

(optional) The last date and time the SQL collection was updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the SQL collection.

Allowed values are: 'CREATING', 'UPDATING', 'COLLECTING', 'COMPLETED', 'INACTIVE', 'FAILED', 'DELETING', 'DELETED', 'NEEDS_ATTENTION'

lifecycle_details

(optional) Details about the current state of the SQL collection in Data Safe.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_SQL_COLLECTION_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_sql_collection_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_collection_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_sql_collection_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SQL_COLLECTION_COLLECTION_T Type

Collection of SQL collection summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_collection_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_sql_collection_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_collection_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_collection_collection_t (
    items dbms_cloud_oci_datasafe_sql_collection_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of SQL collection summary.

DBMS_CLOUD_OCI_DATASAFE_SQL_COLLECTION_LOG_DIMENSIONS_T Type

The dimensions available for SQL collection analytics.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_collection_log_dimensions_t FORCE AUTHID CURRENT_USER IS OBJECT (
  client_ip varchar2(32767),
  client_os_user_name varchar2(32767),
  client_program varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_collection_log_dimensions_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_collection_log_dimensions_t (
    client_ip varchar2,
    client_os_user_name varchar2,
    client_program varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

client_ip

(optional) The IP addresses for the SQL collection.

client_os_user_name

(optional) The operating system user names for the SQL collection.

client_program

(optional) The allowed client programs for the SQL collection.

DBMS_CLOUD_OCI_DATASAFE_SQL_COLLECTION_LOG_AGGREGATION_T Type

The details of SQL collection log aggregation items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_collection_log_aggregation_t FORCE AUTHID CURRENT_USER IS OBJECT (
  metric_name varchar2(32767),
  time_started timestamp with time zone,
  time_ended timestamp with time zone,
  l_count number,
  dimensions dbms_cloud_oci_datasafe_sql_collection_log_dimensions_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_collection_log_aggregation_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_collection_log_aggregation_t (
    metric_name varchar2,
    time_started timestamp with time zone,
    time_ended timestamp with time zone,
    l_count number,
    dimensions dbms_cloud_oci_datasafe_sql_collection_log_dimensions_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

metric_name

(required) Name of the aggregation.

time_started

(optional) The time at which the aggregation started.

time_ended

(optional) The time at which the aggregation ended.

l_count

(required) Total count of aggregated value.

dimensions

(optional)

DBMS_CLOUD_OCI_DATASAFE_SQL_COLLECTION_LOG_AGGREGATION_TBL Type

Nested table type of dbms_cloud_oci_datasafe_sql_collection_log_aggregation_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_collection_log_aggregation_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_sql_collection_log_aggregation_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SQL_COLLECTION_LOG_INSIGHTS_COLLECTION_T Type

SQL collection log analytics collection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_collection_log_insights_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_sql_collection_log_aggregation_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_collection_log_insights_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_collection_log_insights_collection_t (
    items dbms_cloud_oci_datasafe_sql_collection_log_aggregation_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) The aggregated data point items.

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_ALLOWED_SQL_DIMENSIONS_T Type

The dimensions available for SQL Firewall allow SQL analytics.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_dimensions_t FORCE AUTHID CURRENT_USER IS OBJECT (
  sql_firewall_policy_id varchar2(32767),
  sql_level varchar2(32767),
  db_user_name varchar2(32767),
  lifecycle_state varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_dimensions_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_dimensions_t (
    sql_firewall_policy_id varchar2,
    sql_level varchar2,
    db_user_name varchar2,
    lifecycle_state varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

sql_firewall_policy_id

(optional) The OCID of the SQL Firewall policy corresponding to the SQL Firewall allowed SQL.

sql_level

(optional) Specifies the level of SQL included for this SQL Firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.

Allowed values are: 'USER_ISSUED_SQL', 'ALL_SQL'

db_user_name

(optional) The database user name.

lifecycle_state

(optional) The current state of the SQL Firewall allowed SQL.

Allowed values are: 'ACTIVE', 'DELETED'

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_ALLOWED_SQL_AGGREGATION_T Type

The details of SQL Firewall allow SQL aggregate.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_aggregation_t FORCE AUTHID CURRENT_USER IS OBJECT (
  dimensions dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_dimensions_t,
  l_count number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_aggregation_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_aggregation_t (
    dimensions dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_dimensions_t,
    l_count number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

dimensions

(required)

l_count

(required) The total count of the aggregated metric.

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_ALLOWED_SQL_AGGREGATION_TBL Type

Nested table type of dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_aggregation_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_aggregation_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_aggregation_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_ALLOWED_SQL_ANALYTICS_COLLECTION_T Type

SQL Firewall allowed SQL analytics collection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_analytics_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_aggregation_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_analytics_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_analytics_collection_t (
    items dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_aggregation_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) The aggregated data point items.

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_ALLOWED_SQL_SUMMARY_T Type

The resource represents a SQL Firewall allowed SQL in Data Safe.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  sql_firewall_policy_id varchar2(32767),
  current_user varchar2(32767),
  db_user_name varchar2(32767),
  sql_text varchar2(32767),
  sql_level varchar2(32767),
  sql_accessed_objects dbms_cloud_oci_datasafe_varchar2_tbl,
  version number,
  time_collected timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    sql_firewall_policy_id varchar2,
    current_user varchar2,
    db_user_name varchar2,
    sql_text varchar2,
    sql_level varchar2,
    sql_accessed_objects dbms_cloud_oci_datasafe_varchar2_tbl,
    version number,
    time_collected timestamp with time zone,
    time_updated timestamp with time zone,
    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) The OCID of the SQL Firewall allowed SQL.

compartment_id

(required) The OCID of the compartment containing the SQL Firewall allowed SQL.

display_name

(required) The display name of the SQL Firewall allowed SQL.

description

(optional) The description of the SQL Firewall allowed SQL.

sql_firewall_policy_id

(required) The OCID of the SQL Firewall policy corresponding to the SQL Firewall allowed SQL.

current_user

(optional) The name of the user that SQL was executed as.

db_user_name

(required) The database user name.

sql_text

(required) The SQL text of the SQL Firewall allowed SQL.

sql_level

(required) Specifies the level of SQL included for this SQL Firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.

Allowed values are: 'USER_ISSUED_SQL', 'ALL_SQL'

sql_accessed_objects

(optional) The objects accessed by the SQL.

version

(required) Version of the associated SQL Firewall policy. This identifies whether the allowed SQLs were added in the same batch or not.

time_collected

(required) The time the the SQL Firewall allowed SQL was collected from the target database, in the format defined by RFC3339.

time_updated

(optional) The last date and time the SQL Firewall allowed SQL was updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the SQL Firewall allowed SQL.

Allowed values are: 'ACTIVE', 'DELETED'

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_ALLOWED_SQL_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_ALLOWED_SQL_COLLECTION_T Type

Collection of SQL Firewall allowed SQL statements.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_collection_t (
    items dbms_cloud_oci_datasafe_sql_firewall_allowed_sql_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of SQL Firewall allowed SQL statements.

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_POLICY_T Type

The SQL Firewall policy resource contains the firewall policy metadata for a single user.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  security_policy_id varchar2(32767),
  db_user_name varchar2(32767),
  sql_level varchar2(32767),
  status varchar2(32767),
  enforcement_scope varchar2(32767),
  violation_action varchar2(32767),
  violation_audit varchar2(32767),
  allowed_client_ips dbms_cloud_oci_datasafe_varchar2_tbl,
  allowed_client_os_usernames dbms_cloud_oci_datasafe_varchar2_tbl,
  allowed_client_programs dbms_cloud_oci_datasafe_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_datasafe_sql_firewall_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_policy_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    security_policy_id varchar2,
    db_user_name varchar2,
    sql_level varchar2,
    status varchar2,
    enforcement_scope varchar2,
    violation_action varchar2,
    violation_audit varchar2,
    allowed_client_ips dbms_cloud_oci_datasafe_varchar2_tbl,
    allowed_client_os_usernames dbms_cloud_oci_datasafe_varchar2_tbl,
    allowed_client_programs dbms_cloud_oci_datasafe_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) The OCID of the SQL Firewall policy.

compartment_id

(required) The OCID of the compartment containing the SQL Firewall policy.

display_name

(required) The display name of the SQL Firewall policy.

description

(optional) The description of the SQL Firewall policy.

security_policy_id

(required) The OCID of the security policy corresponding to the SQL Firewall policy.

db_user_name

(required) The database user name.

sql_level

(optional) Specifies the level of SQL included for this SQL Firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.

Allowed values are: 'USER_ISSUED_SQL', 'ALL_SQL'

status

(required) Specifies whether the SQL Firewall policy is enabled or disabled.

Allowed values are: 'ENABLED', 'DISABLED'

enforcement_scope

(optional) Specifies the SQL Firewall policy enforcement option.

Allowed values are: 'ENFORCE_CONTEXT', 'ENFORCE_SQL', 'ENFORCE_ALL'

violation_action

(optional) Specifies the mode in which the SQL Firewall policy is enabled.

Allowed values are: 'BLOCK', 'OBSERVE'

violation_audit

(optional) Specifies whether a unified audit policy should be enabled for auditing the SQL Firewall policy violations.

Allowed values are: 'ENABLED', 'DISABLED'

allowed_client_ips

(optional) The list of allowed ip addresses for the SQL Firewall policy.

allowed_client_os_usernames

(optional) The list of allowed operating system user names for the SQL Firewall policy.

allowed_client_programs

(optional) The list of allowed client programs for the SQL Firewall policy.

time_created

(required) The time that the SQL Firewall policy was created, in the format defined by RFC3339.

time_updated

(optional) The date and time the SQL Firewall policy was last updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the SQL Firewall policy.

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

lifecycle_details

(optional) Details about the current state of the SQL Firewall policy in Data Safe.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_POLICY_DIMENSIONS_T Type

The dimensions available for SQL Firewall policy analytics.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_policy_dimensions_t FORCE AUTHID CURRENT_USER IS OBJECT (
  security_policy_id varchar2(32767),
  enforcement_scope varchar2(32767),
  violation_action varchar2(32767),
  lifecycle_state varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_policy_dimensions_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_policy_dimensions_t (
    security_policy_id varchar2,
    enforcement_scope varchar2,
    violation_action varchar2,
    lifecycle_state varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

security_policy_id

(optional) The OCID of the security policy corresponding to the SQL Firewall policy.

enforcement_scope

(optional) Specifies the SQL Firewall policy enforcement option.

Allowed values are: 'ENFORCE_CONTEXT', 'ENFORCE_SQL', 'ENFORCE_ALL'

violation_action

(optional) Specifies the mode in which the SQL Firewall policy is enabled.

Allowed values are: 'BLOCK', 'OBSERVE'

lifecycle_state

(optional) The current state of the SQL Firewall policy.

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

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_POLICY_AGGREGATION_T Type

The details of SQL Firewall policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_policy_aggregation_t FORCE AUTHID CURRENT_USER IS OBJECT (
  dimensions dbms_cloud_oci_datasafe_sql_firewall_policy_dimensions_t,
  l_count number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_policy_aggregation_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_policy_aggregation_t (
    dimensions dbms_cloud_oci_datasafe_sql_firewall_policy_dimensions_t,
    l_count number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

dimensions

(required)

l_count

(required) The total count of the aggregated metric.

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_POLICY_AGGREGATION_TBL Type

Nested table type of dbms_cloud_oci_datasafe_sql_firewall_policy_aggregation_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_policy_aggregation_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_sql_firewall_policy_aggregation_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_POLICY_ANALYTICS_COLLECTION_T Type

SQL Firewall policy analytics collection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_policy_analytics_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_sql_firewall_policy_aggregation_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_policy_analytics_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_policy_analytics_collection_t (
    items dbms_cloud_oci_datasafe_sql_firewall_policy_aggregation_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) The aggregated data point items.

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_POLICY_SUMMARY_T Type

The SQL Firewall policy resource contains the firewall policy metadata for a single user.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_policy_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  security_policy_id varchar2(32767),
  db_user_name varchar2(32767),
  sql_level varchar2(32767),
  status varchar2(32767),
  enforcement_scope varchar2(32767),
  violation_action varchar2(32767),
  violation_audit 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,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_policy_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_policy_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    security_policy_id varchar2,
    db_user_name varchar2,
    sql_level varchar2,
    status varchar2,
    enforcement_scope varchar2,
    violation_action varchar2,
    violation_audit 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
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the SQL Firewall policy.

compartment_id

(required) The OCID of the compartment containing the SQL Firewall policy.

display_name

(required) The display name of the SQL Firewall policy.

description

(optional) The description of the SQL Firewall policy.

security_policy_id

(required) The OCID of the security policy corresponding to the SQL Firewall policy.

db_user_name

(required) The database user name.

sql_level

(optional) Specifies the level of SQL included for this SQL Firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.

Allowed values are: 'USER_ISSUED_SQL', 'ALL_SQL'

status

(required) Specifies whether the SQL Firewall policy is enabled or disabled.

Allowed values are: 'ENABLED', 'DISABLED'

enforcement_scope

(optional) Specifies the SQL Firewall policy enforcement option.

Allowed values are: 'ENFORCE_CONTEXT', 'ENFORCE_SQL', 'ENFORCE_ALL'

violation_action

(optional) Specifies the SQL Firewall action based on detection of SQL Firewall violations.

Allowed values are: 'BLOCK', 'OBSERVE'

violation_audit

(optional) Specifies whether a unified audit policy should be enabled for auditing the SQL Firewall policy violations.

Allowed values are: 'ENABLED', 'DISABLED'

time_created

(required) The time that the SQL Firewall policy was created, in the format defined by RFC3339.

time_updated

(optional) The date and time the SQL Firewall policy was last updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the SQL Firewall policy.

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

lifecycle_details

(optional) Details about the current state of the SQL Firewall policy in Data Safe.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_POLICY_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_sql_firewall_policy_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_policy_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_sql_firewall_policy_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_POLICY_COLLECTION_T Type

Collection of SQL Firewall policy summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_policy_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_sql_firewall_policy_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_policy_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_policy_collection_t (
    items dbms_cloud_oci_datasafe_sql_firewall_policy_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of SQL Firewall policy summary.

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_VIOLATION_AGGREGATION_DIMENSIONS_T Type

The details of the aggregation dimensions used for summarizing SQL violations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_violation_aggregation_dimensions_t FORCE AUTHID CURRENT_USER IS OBJECT (
  operation_time dbms_cloud_oci_datasafe_timestamp_with_time_zone_tbl,
  db_user_name dbms_cloud_oci_datasafe_varchar2_tbl,
  target_id dbms_cloud_oci_datasafe_varchar2_tbl,
  target_name dbms_cloud_oci_datasafe_varchar2_tbl,
  client_program dbms_cloud_oci_datasafe_varchar2_tbl,
  operation dbms_cloud_oci_datasafe_varchar2_tbl,
  client_os_user_name dbms_cloud_oci_datasafe_varchar2_tbl,
  violation_cause dbms_cloud_oci_datasafe_varchar2_tbl,
  client_ip dbms_cloud_oci_datasafe_varchar2_tbl,
  violation_action dbms_cloud_oci_datasafe_varchar2_tbl,
  sql_level dbms_cloud_oci_datasafe_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_violation_aggregation_dimensions_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_violation_aggregation_dimensions_t (
    operation_time dbms_cloud_oci_datasafe_timestamp_with_time_zone_tbl,
    db_user_name dbms_cloud_oci_datasafe_varchar2_tbl,
    target_id dbms_cloud_oci_datasafe_varchar2_tbl,
    target_name dbms_cloud_oci_datasafe_varchar2_tbl,
    client_program dbms_cloud_oci_datasafe_varchar2_tbl,
    operation dbms_cloud_oci_datasafe_varchar2_tbl,
    client_os_user_name dbms_cloud_oci_datasafe_varchar2_tbl,
    violation_cause dbms_cloud_oci_datasafe_varchar2_tbl,
    client_ip dbms_cloud_oci_datasafe_varchar2_tbl,
    violation_action dbms_cloud_oci_datasafe_varchar2_tbl,
    sql_level dbms_cloud_oci_datasafe_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

operation_time

(optional) The time of the SQL violation occurrence in the target database.

db_user_name

(optional) The name of the database user.

target_id

(optional) The OCID of the target database.

target_name

(optional) The name of the target database.

client_program

(optional) The application from which the SQL violation was generated. Examples SQL Plus or SQL Developer.

operation

(optional) The name of the action executed by the user on the target database, for example, ALTER, CREATE, DROP.

client_os_user_name

(optional) The name of the operating system user for the database session.

violation_cause

(optional) Indicates whether SQL or context violation.

client_ip

(optional) The IP address of the host from which the session was spawned.

violation_action

(optional) The action taken for this SQL violation.

sql_level

(optional) Specifies the level of SQL included for this SQL Firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.

Allowed values are: 'USER_ISSUED_SQL', 'ALL_SQL'

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_VIOLATION_AGGREGATION_T Type

The details of SQL violations aggregation items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_violation_aggregation_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  metric_name varchar2(32767),
  time_started timestamp with time zone,
  time_ended timestamp with time zone,
  l_count number,
  dimensions dbms_cloud_oci_datasafe_sql_firewall_violation_aggregation_dimensions_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_violation_aggregation_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_violation_aggregation_t (
    display_name varchar2,
    metric_name varchar2,
    time_started timestamp with time zone,
    time_ended timestamp with time zone,
    l_count number,
    dimensions dbms_cloud_oci_datasafe_sql_firewall_violation_aggregation_dimensions_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of aggregation field.

metric_name

(required) The name of the aggregation.

time_started

(required) The time at which the aggregation started.

time_ended

(required) The time at which the aggregation ended.

l_count

(required) Total count of aggregated value.

dimensions

(optional)

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_VIOLATION_AGGREGATION_TBL Type

Nested table type of dbms_cloud_oci_datasafe_sql_firewall_violation_aggregation_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_violation_aggregation_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_sql_firewall_violation_aggregation_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_VIOLATION_ANALYTICS_COLLECTION_T Type

SQL violations summarized detail.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_violation_analytics_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_sql_firewall_violation_aggregation_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_violation_analytics_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_violation_analytics_collection_t (
    items dbms_cloud_oci_datasafe_sql_firewall_violation_aggregation_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) The aggregated data point items.

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_VIOLATION_SUMMARY_T Type

The resource represents the SQL violations collected from the target database by Oracle Data Safe.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_violation_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  db_user_name varchar2(32767),
  target_id varchar2(32767),
  target_name varchar2(32767),
  operation_time timestamp with time zone,
  time_collected timestamp with time zone,
  client_os_user_name varchar2(32767),
  operation varchar2(32767),
  sql_text varchar2(32767),
  sql_accessed_objects varchar2(32767),
  current_db_user_name varchar2(32767),
  sql_level varchar2(32767),
  client_ip varchar2(32767),
  client_program varchar2(32767),
  violation_cause varchar2(32767),
  violation_action varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_violation_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_violation_summary_t (
    id varchar2,
    compartment_id varchar2,
    db_user_name varchar2,
    target_id varchar2,
    target_name varchar2,
    operation_time timestamp with time zone,
    time_collected timestamp with time zone,
    client_os_user_name varchar2,
    operation varchar2,
    sql_text varchar2,
    sql_accessed_objects varchar2,
    current_db_user_name varchar2,
    sql_level varchar2,
    client_ip varchar2,
    client_program varchar2,
    violation_cause varchar2,
    violation_action varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the SQL violation.

compartment_id

(required) The OCID of the compartment containing the SQL violation.

db_user_name

(optional) The name of the database user.

target_id

(required) The OCID of the target database.

target_name

(required) The name of the target database.

operation_time

(required) The time of the SQL violation occurrence in the target database.

time_collected

(required) The timestamp when this SQL violation was collected from the target database by Data Safe.

client_os_user_name

(optional) The name of the operating system user for the database session.

operation

(optional) The name of the action executed by the user on the target database. For example, ALTER, CREATE, DROP.

sql_text

(optional) The SQL text caught by the firewall.

sql_accessed_objects

(optional) The objects accessed by the SQL.

current_db_user_name

(optional) The name of the user that SQL was executed as.

sql_level

(optional) Specifies the level of SQL for this violation. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.

Allowed values are: 'USER_ISSUED_SQL', 'ALL_SQL'

client_ip

(optional) The IP address of the host machine from which the session was generated.

client_program

(optional) The application from which the SQL violation was generated. Examples include SQL Plus or SQL Developer.

violation_cause

(optional) Indicates whether SQL or context violation.

violation_action

(required) The action taken for this SQL violation.

Allowed values are: 'BLOCKED', 'ALLOWED'

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_VIOLATION_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_sql_firewall_violation_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_violation_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_sql_firewall_violation_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_SQL_FIREWALL_VIOLATIONS_COLLECTION_T Type

Collection of SQL violation summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_sql_firewall_violations_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_sql_firewall_violation_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_violations_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_sql_firewall_violations_collection_t (
    items dbms_cloud_oci_datasafe_sql_firewall_violation_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of SQL violation summary.

DBMS_CLOUD_OCI_DATASAFE_START_AUDIT_TRAIL_DETAILS_T Type

The details used to start an audit trail.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_start_audit_trail_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  audit_collection_start_time timestamp with time zone,
  is_auto_purge_enabled number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_start_audit_trail_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_start_audit_trail_details_t (
    audit_collection_start_time timestamp with time zone,
    is_auto_purge_enabled number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

audit_collection_start_time

(required) The date from which the audit trail must start collecting data, in the format defined by RFC3339.

is_auto_purge_enabled

(optional) Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.

DBMS_CLOUD_OCI_DATASAFE_SUBSTRING_FORMAT_ENTRY_T Type

The Substring masking format extracts a portion of the original column value and uses it to replace the original value. It internally uses the Oracle SUBSTR function. It takes the start position and length as input, extracts substring from the original value using SUBSTR, and uses the substring to replace the original value. To learn more, check Substring in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_substring_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  start_position number,
  length number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_substring_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_substring_format_entry_t (
    l_type varchar2,
    description varchar2,
    start_position number,
    length number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_substring_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

Fields

Field Description

start_position

(required) The starting position in the original string from where the substring should be extracted. It can be either a positive or a negative integer. If It's negative, the counting starts from the end of the string.

length

(required) The number of characters that should be there in the substring. It should be an integer and greater than zero.

DBMS_CLOUD_OCI_DATASAFE_TABLE_SUMMARY_T Type

The details of a table fetched from the database.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_table_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  table_name varchar2(32767),
  schema_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_table_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_table_summary_t (
    table_name varchar2,
    schema_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

table_name

(required) Name of the table.

schema_name

(required) Name of the schema.

DBMS_CLOUD_OCI_DATASAFE_TARGET_ALERT_POLICY_ASSOCIATION_T Type

The association of the target database to an alert policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_target_alert_policy_association_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  policy_id varchar2(32767),
  target_id varchar2(32767),
  is_enabled number,
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_target_alert_policy_association_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_target_alert_policy_association_t (
    id varchar2,
    display_name varchar2,
    description varchar2,
    policy_id varchar2,
    target_id varchar2,
    is_enabled number,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    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) The OCID of the target-alert policy association.

display_name

(optional) The display name of the target-alert policy association.

description

(optional) Describes the target-alert policy association.

policy_id

(optional) The OCID of the alert policy.

target_id

(optional) The OCID of the target on which alert policy is to be applied.

is_enabled

(optional) Indicates if the target-alert policy association is enabled or disabled by user.

compartment_id

(required) The OCID of the compartment that contains the policy.

time_created

(required) Creation date and time of the alert policy, in the format defined by RFC3339.

time_updated

(required) Last date and time the alert policy was updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the target-alert policy association.

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

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_TARGET_ALERT_POLICY_ASSOCIATION_SUMMARY_T Type

A summary of target to alert policy association.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_target_alert_policy_association_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  policy_id varchar2(32767),
  target_id varchar2(32767),
  is_enabled number,
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_target_alert_policy_association_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_target_alert_policy_association_summary_t (
    id varchar2,
    display_name varchar2,
    description varchar2,
    policy_id varchar2,
    target_id varchar2,
    is_enabled number,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the target-alert policy association.

display_name

(optional) The display name of the target-alert policy association.

description

(optional) Describes the target-alert policy association.

policy_id

(optional) The OCID of the alert policy.

target_id

(optional) The OCID of the target on which alert policy is to be applied.

is_enabled

(optional) Indicates if the target-alert policy association is enabled or disabled by user.

compartment_id

(required) The OCID of the compartment that contains the target-alert policy association.

time_created

(required) Creation date and time of the target-alert policy association, in the format defined by RFC3339.

time_updated

(required) Last date and time the target-alert policy association was updated, in the format defined by RFC3339.

lifecycle_state

(required) The current state of the target-alert policy association.

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

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_TARGET_ALERT_POLICY_ASSOCIATION_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_datasafe_target_alert_policy_association_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_target_alert_policy_association_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_target_alert_policy_association_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_TARGET_ALERT_POLICY_ASSOCIATION_COLLECTION_T Type

Collection of target to alert policy summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_target_alert_policy_association_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_target_alert_policy_association_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_target_alert_policy_association_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_target_alert_policy_association_collection_t (
    items dbms_cloud_oci_datasafe_target_alert_policy_association_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Array of target to alert policy summary

DBMS_CLOUD_OCI_DATASAFE_TARGET_DATABASE_T Type

The details of the Data Safe target database.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_target_database_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  database_details dbms_cloud_oci_datasafe_database_details_t,
  credentials dbms_cloud_oci_datasafe_credentials_t,
  tls_config dbms_cloud_oci_datasafe_tls_config_t,
  connection_option dbms_cloud_oci_datasafe_connection_option_t,
  associated_resource_ids dbms_cloud_oci_datasafe_varchar2_tbl,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_target_database_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_target_database_t (
    compartment_id varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    database_details dbms_cloud_oci_datasafe_database_details_t,
    credentials dbms_cloud_oci_datasafe_credentials_t,
    tls_config dbms_cloud_oci_datasafe_tls_config_t,
    connection_option dbms_cloud_oci_datasafe_connection_option_t,
    associated_resource_ids dbms_cloud_oci_datasafe_varchar2_tbl,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment which contains the Data Safe target database.

id

(required) The OCID of the Data Safe target database.

display_name

(required) The display name of the target database in Data Safe.

description

(optional) The description of the target database in Data Safe.

database_details

(required)

credentials

(optional)

tls_config

(optional)

connection_option

(optional)

associated_resource_ids

(optional) The OCIDs of associated resources like database, Data Safe private endpoint etc.

lifecycle_state

(required) The current state of the target database in Data Safe.

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

lifecycle_details

(optional) Details about the current state of the target database in Data Safe.

time_created

(required) The date and time of the target database registration and creation in Data Safe.

time_updated

(optional) The date and time of the target database update in Data Safe.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_TARGET_DATABASE_SUMMARY_T Type

Summary of a Data Safe target database.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_target_database_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  infrastructure_type varchar2(32767),
  database_type varchar2(32767),
  associated_resource_ids dbms_cloud_oci_datasafe_varchar2_tbl,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  time_created timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_target_database_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_target_database_summary_t (
    compartment_id varchar2,
    id varchar2,
    display_name varchar2,
    description varchar2,
    infrastructure_type varchar2,
    database_type varchar2,
    associated_resource_ids dbms_cloud_oci_datasafe_varchar2_tbl,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment that contains the Data Safe target database.

id

(required) The OCID of the Data Safe target database.

display_name

(required) The display name of the target database in Data Safe.

description

(optional) The description of the target database in Data Safe.

infrastructure_type

(required) The infrastructure type the database is running on.

Allowed values are: 'ORACLE_CLOUD', 'CLOUD_AT_CUSTOMER', 'ON_PREMISES', 'NON_ORACLE_CLOUD'

database_type

(required) The database type.

Allowed values are: 'DATABASE_CLOUD_SERVICE', 'AUTONOMOUS_DATABASE', 'INSTALLED_DATABASE'

associated_resource_ids

(optional) The OCIDs of associated resources like database, Data Safe private endpoint etc.

lifecycle_state

(required) The current state of the target database in Data Safe.

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

lifecycle_details

(optional) Details about the current state of the target database in Data Safe.

time_created

(required) The date and time the database was registered in Data Safe and created as a target database in Data Safe.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_TRUNCATE_TABLE_FORMAT_ENTRY_T Type

The Truncate Table masking format drops all the rows in a table. If one of the columns in a table is masked using Truncate Table, the entire table is truncated, so no other masking format can be used for any of the other columns in that table. If a table is being truncated, it cannot be referred to by a foreign key constraint or a dependent column. To learn more, check Truncate Table in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_truncate_table_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_truncate_table_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_truncate_table_format_entry_t (
    l_type varchar2,
    description varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_truncate_table_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

DBMS_CLOUD_OCI_DATASAFE_UDF_FORMAT_ENTRY_T Type

The User Defined Function masking format lets you define your own logic to mask column data. The return value of the user-defined function is used to replace the original values. The user-defined function has a fixed signature and is a PL/SQL function that can be invoked in a SELECT statement. To learn more, check User Defined Function in the Data Safe documentation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_udf_format_entry_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_format_entry_t (
  user_defined_function varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_udf_format_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_udf_format_entry_t (
    l_type varchar2,
    description varchar2,
    user_defined_function varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_udf_format_entry_t is a subtype of the dbms_cloud_oci_datasafe_format_entry_t type.

Fields

Field Description

user_defined_function

(required) The user-defined function in SCHEMA_NAME.PACKAGE_NAME.FUNCTION_NAME format. It can be a standalone or packaged function, so PACKAGE_NAME is optional.

DBMS_CLOUD_OCI_DATASAFE_UPDATE_ALERT_DETAILS_T Type

The details used to update an alert.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_alert_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_comment varchar2(32767),
  status varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_alert_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_alert_details_t (
    l_comment varchar2,
    status varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

l_comment

(optional) A comment can be entered to track the alert changes done by the user.

status

(optional) The status of the alert.

Allowed values are: 'OPEN', 'CLOSED'

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_ALERT_POLICY_RULE_DETAILS_T Type

The details used to update a alert policy rule.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_alert_policy_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  description varchar2(32767),
  expression varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_alert_policy_rule_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_alert_policy_rule_details_t (
    description varchar2,
    expression varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

description

(optional) Describes the alert policy rule.

expression

(optional) The conditional expression of the alert policy rule which evaluates to boolean value.

DBMS_CLOUD_OCI_DATASAFE_UPDATE_AUDIT_ARCHIVE_RETRIEVAL_DETAILS_T Type

Details to update the audit archive retrieval.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_audit_archive_retrieval_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_audit_archive_retrieval_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_audit_archive_retrieval_details_t (
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of the archive retrieval. The name does not have to be unique, and is changeable.

description

(optional) Description of the archive retrieval.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_AUDIT_POLICY_DETAILS_T Type

Details to update the audit policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_audit_policy_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_audit_policy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_audit_policy_details_t (
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of the audit policy. The name does not have to be unique, and it is changeable.

description

(optional) The description of the audit policy.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_AUDIT_PROFILE_DETAILS_T Type

The details used to update a audit profile.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_audit_profile_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  description varchar2(32767),
  display_name varchar2(32767),
  is_paid_usage_enabled number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_audit_profile_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_audit_profile_details_t (
    description varchar2,
    display_name varchar2,
    is_paid_usage_enabled number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

description

(optional) The description of the audit profile.

display_name

(optional) The display name of the audit profile. The name does not have to be unique, and it's changeable.

is_paid_usage_enabled

(optional) Indicates if you want to continue collecting audit records beyond the free limit of one million audit records per month per target database, potentially incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_AUDIT_TRAIL_DETAILS_T Type

The details used to update an audit trail.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_audit_trail_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  description varchar2(32767),
  display_name varchar2(32767),
  is_auto_purge_enabled number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_audit_trail_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_audit_trail_details_t (
    description varchar2,
    display_name varchar2,
    is_auto_purge_enabled number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

description

(optional) The description of the audit trail.

display_name

(optional) The display name of the audit trail. The name does not have to be unique, and it's changeable.

is_auto_purge_enabled

(optional) Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_COLUMN_SOURCE_DETAILS_T Type

Details to update the column source of a masking policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_column_source_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  column_source varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_column_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_column_source_details_t (
    column_source varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

column_source

(required) The source of masking columns.

Allowed values are: 'TARGET', 'SENSITIVE_DATA_MODEL'

DBMS_CLOUD_OCI_DATASAFE_UPDATE_COLUMN_SOURCE_SDM_DETAILS_T Type

Details of the sensitive data model to be associated as the column source with a masking policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_column_source_sdm_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_update_column_source_details_t (
  sensitive_data_model_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_column_source_sdm_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_column_source_sdm_details_t (
    column_source varchar2,
    sensitive_data_model_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_update_column_source_sdm_details_t is a subtype of the dbms_cloud_oci_datasafe_update_column_source_details_t type.

Fields

Field Description

sensitive_data_model_id

(required) The OCID of the sensitive data model to be associated as the column source with the masking policy.

DBMS_CLOUD_OCI_DATASAFE_UPDATE_COLUMN_SOURCE_TARGET_DETAILS_T Type

Details of the target database to be associated as the column source with a masking policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_column_source_target_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_update_column_source_details_t (
  target_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_column_source_target_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_column_source_target_details_t (
    column_source varchar2,
    target_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_update_column_source_target_details_t is a subtype of the dbms_cloud_oci_datasafe_update_column_source_details_t type.

Fields

Field Description

target_id

(required) The OCID of the target database to be associated as the column source with the masking policy.

DBMS_CLOUD_OCI_DATASAFE_UPDATE_DATA_SAFE_PRIVATE_ENDPOINT_DETAILS_T Type

The details used to update the Data Safe private endpoint.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_data_safe_private_endpoint_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  nsg_ids dbms_cloud_oci_datasafe_varchar2_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_data_safe_private_endpoint_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_data_safe_private_endpoint_details_t (
    display_name varchar2,
    description varchar2,
    nsg_ids dbms_cloud_oci_datasafe_varchar2_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of the private endpoint.

description

(optional) The description of the private endpoint.

nsg_ids

(optional) The OCIDs of the network security groups that the private endpoint belongs to.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_SQL_FIREWALL_CONFIG_DETAILS_T Type

Details to update the SQL Firewall config.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_sql_firewall_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  status varchar2(32767),
  violation_log_auto_purge varchar2(32767),
  exclude_job varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_sql_firewall_config_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_sql_firewall_config_details_t (
    status varchar2,
    violation_log_auto_purge varchar2,
    exclude_job varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

status

(optional) Specifies whether the firewall is enabled or disabled on the target database.

Allowed values are: 'ENABLED', 'DISABLED'

violation_log_auto_purge

(optional) Specifies whether Data Safe should automatically purge the violation logs from the database after collecting the violation logs and persisting on Data Safe.

Allowed values are: 'ENABLED', 'DISABLED'

exclude_job

(optional) Specifies whether the firewall should include or exclude the database internal job activities.

Allowed values are: 'EXCLUDED', 'INCLUDED'

DBMS_CLOUD_OCI_DATASAFE_UPDATE_DATABASE_SECURITY_CONFIG_DETAILS_T Type

The details to update the database security config.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_database_security_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  sql_firewall_config dbms_cloud_oci_datasafe_update_sql_firewall_config_details_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_database_security_config_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_database_security_config_details_t (
    display_name varchar2,
    description varchar2,
    sql_firewall_config dbms_cloud_oci_datasafe_update_sql_firewall_config_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of the database security config. The name does not have to be unique, and it is changeable.

description

(optional) The description of the security policy.

sql_firewall_config

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_LIBRARY_MASKING_FORMAT_DETAILS_T Type

Details to update a library masking format. Note that updating the formatEntries attribute replaces all the existing masking format entries with the specified format entries.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_library_masking_format_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  sensitive_type_ids dbms_cloud_oci_datasafe_varchar2_tbl,
  format_entries dbms_cloud_oci_datasafe_format_entry_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_library_masking_format_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_library_masking_format_details_t (
    display_name varchar2,
    description varchar2,
    sensitive_type_ids dbms_cloud_oci_datasafe_varchar2_tbl,
    format_entries dbms_cloud_oci_datasafe_format_entry_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of the library masking format. The name does not have to be unique, and it's changeable.

description

(optional) The description of the library masking format.

sensitive_type_ids

(optional) An array of OCIDs of the sensitive types compatible with the library masking format.

format_entries

(optional) An array of format entries. The combined output of all the format entries is used for masking.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_MASKING_COLUMN_DETAILS_T Type

Details to update a masking column.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_masking_column_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  object_type varchar2(32767),
  masking_column_group varchar2(32767),
  sensitive_type_id varchar2(32767),
  is_masking_enabled number,
  masking_formats dbms_cloud_oci_datasafe_masking_format_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_masking_column_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_masking_column_details_t (
    object_type varchar2,
    masking_column_group varchar2,
    sensitive_type_id varchar2,
    is_masking_enabled number,
    masking_formats dbms_cloud_oci_datasafe_masking_format_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

object_type

(optional) The type of the object that contains the database column.

Allowed values are: 'TABLE', 'EDITIONING_VIEW'

masking_column_group

(optional) The group of the masking column. It's a masking group identifier and can be any string of acceptable length. All the columns in a group are masked together to ensure that the masked data across these columns continue to retain the same logical relationship. For more details, check <a href=https://docs.oracle.com/en/cloud/paas/data-safe/udscs/group-masking1.html#GUID-755056B9-9540-48C0-9491-262A44A85037>Group Masking in the Data Safe documentation.</a>

sensitive_type_id

(optional) The OCID of the sensitive type to be associated with the masking column. Note that there will be no change in assigned masking format when sensitive type is changed.

is_masking_enabled

(optional) Indicates whether data masking is enabled for the masking column. Set it to false if you don't want to mask the column.

masking_formats

(optional) The masking formats to be assigned to the masking column. You can specify a condition as part of each masking format. It enables you to do <a href=\"https://docs.oracle.com/en/cloud/paas/data-safe/udscs/conditional-masking.html\">conditional masking</a> so that you can mask the column data values differently using different masking formats and the associated conditions. A masking format can have one or more format entries. The combined output of all the format entries is used for masking. It provides the flexibility to define a masking format that can generate different parts of a data value separately and then combine them to get the final data value for masking.

DBMS_CLOUD_OCI_DATASAFE_UPDATE_MASKING_POLICY_DETAILS_T Type

Details to update a masking policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_masking_policy_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  is_drop_temp_tables_enabled number,
  is_redo_logging_enabled number,
  is_refresh_stats_enabled number,
  parallel_degree varchar2(32767),
  recompile varchar2(32767),
  pre_masking_script varchar2(32767),
  post_masking_script varchar2(32767),
  column_source dbms_cloud_oci_datasafe_update_column_source_details_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_masking_policy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_masking_policy_details_t (
    display_name varchar2,
    description varchar2,
    is_drop_temp_tables_enabled number,
    is_redo_logging_enabled number,
    is_refresh_stats_enabled number,
    parallel_degree varchar2,
    recompile varchar2,
    pre_masking_script varchar2,
    post_masking_script varchar2,
    column_source dbms_cloud_oci_datasafe_update_column_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) The display name of the masking policy. The name does not have to be unique, and it's changeable.

description

(optional) The description of the masking policy.

is_drop_temp_tables_enabled

(optional) Indicates if the temporary tables created during a masking operation should be dropped after masking. It's enabled by default. Set this attribute to false to preserve the temporary tables. Masking creates temporary tables that map the original sensitive data values to mask values. By default, these temporary tables are dropped after masking. But, in some cases, you may want to preserve this information to track how masking changed your data. Note that doing so compromises security. These tables must be dropped before the database is available for unprivileged users.

is_redo_logging_enabled

(optional) Indicates if redo logging is enabled during a masking operation. It's disabled by default. Set this attribute to true to enable redo logging. By default, masking disables redo logging and flashback logging to purge any original unmasked data from logs. However, in certain circumstances when you only want to test masking, rollback changes, and retry masking, you could enable logging and use a flashback database to retrieve the original unmasked data after it has been masked.

is_refresh_stats_enabled

(optional) Indicates if statistics gathering is enabled. It's enabled by default. Set this attribute to false to disable statistics gathering. The masking process gathers statistics on masked database tables after masking completes.

parallel_degree

(optional) Specifies options to enable parallel execution when running data masking. Allowed values are 'NONE' (no parallelism), 'DEFAULT' (the Oracle Database computes the optimum degree of parallelism) or an integer value to be used as the degree of parallelism. Parallel execution helps effectively use multiple CPUs and improve masking performance. Refer to the Oracle Database parallel execution framework when choosing an explicit degree of parallelism.

recompile

(optional) Specifies how to recompile invalid objects post data masking. Allowed values are 'SERIAL' (recompile in serial), 'PARALLEL' (recompile in parallel), 'NONE' (do not recompile). If it's set to PARALLEL, the value of parallelDegree attribute is used. Use the built-in UTL_RECOMP package to recompile any remaining invalid objects after masking completes.

pre_masking_script

(optional) A pre-masking script, which can contain SQL and PL/SQL statements. It's executed before the core masking script generated using the masking policy. It's usually used to perform any preparation or prerequisite work before masking data.

post_masking_script

(optional) A post-masking script, which can contain SQL and PL/SQL statements. It's executed after the core masking script generated using the masking policy. It's usually used to perform additional transformation or cleanup work after masking.

column_source

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_ON_PREM_CONNECTOR_DETAILS_T Type

The details used to update a on-premises connector.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_on_prem_connector_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_on_prem_connector_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_on_prem_connector_details_t (
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.

description

(optional) The description of the on-premises connector.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_ON_PREM_CONNECTOR_WALLET_DETAILS_T Type

The details used to update an on-premises connector's wallet.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_on_prem_connector_wallet_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_update number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_on_prem_connector_wallet_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_on_prem_connector_wallet_details_t (
    is_update number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_update

(optional) Indicates whether to update or not. If false, the wallet will not be updated. Default is false.

DBMS_CLOUD_OCI_DATASAFE_UPDATE_REPORT_DEFINITION_DETAILS_T Type

Description of a new report definition.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_report_definition_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  column_info dbms_cloud_oci_datasafe_column_tbl,
  column_filters dbms_cloud_oci_datasafe_column_filter_tbl,
  column_sortings dbms_cloud_oci_datasafe_column_sorting_tbl,
  summary dbms_cloud_oci_datasafe_summary_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_report_definition_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_report_definition_details_t (
    display_name varchar2,
    description varchar2,
    column_info dbms_cloud_oci_datasafe_column_tbl,
    column_filters dbms_cloud_oci_datasafe_column_filter_tbl,
    column_sortings dbms_cloud_oci_datasafe_column_sorting_tbl,
    summary dbms_cloud_oci_datasafe_summary_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) Specifies the name of the report definition.

description

(optional) The description of the report definition.

column_info

(required) An array of column objects in the order (left to right) displayed in the report. A column object stores all information about a column, including the name displayed on the UI, corresponding field name in the data source, data type of the column, and column visibility (if the column is visible to the user).

column_filters

(required) An array of column filter objects. A column Filter object stores all information about a column filter including field name, an operator, one or more expressions, if the filter is enabled, or if the filter is hidden.

column_sortings

(required) An array of column sorting objects. Each column sorting object stores the column name to be sorted and if the sorting is in ascending order; sorting is done by the first column in the array, then by the second column in the array, etc.

summary

(required) An array of report summary objects in the order (left to right) displayed in the report. A report summary object stores all information about summary of report to be displayed, including the name displayed on UI, the display order, corresponding group by and count of values, summary visibility (if the summary is visible to user).

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_SDM_MASKING_POLICY_DIFFERENCE_DETAILS_T Type

Details to update a sdm masking policy difference.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_sdm_masking_policy_difference_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_datasafe_update_sdm_masking_policy_difference_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_sdm_masking_policy_difference_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

(optional) The display name of the sdm masking policy difference. The name does not have to be unique, and it's changeable.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_SECURITY_ASSESSMENT_DETAILS_T Type

Updates one or more attributes of the specified security assessment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_security_assessment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  schedule varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_security_assessment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_security_assessment_details_t (
    display_name varchar2,
    description varchar2,
    schedule varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of the security assessment.

description

(optional) The description of the security assessment.

schedule

(optional) This is applicable only for save schedule and latest assessment. It updates the existing schedule in a specified format: <version-string>;<version-specific-schedule> Allowed version strings - \"v1\" v1's version specific schedule -<ss> <mm> <hh> <day-of-week> <day-of-month> Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = <ss> (So, the allowed range for <ss> is [0, 59]) 2. minutes = <mm> (So, the allowed range for <mm> is [0, 59]) 3. hours = <hh> (So, the allowed range for <hh> is [0, 23]) <day-of-week> can be either '*' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is '*'. When not, day of week must equal the given value <day-of-month> can be either '*' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is '*'. When not, day of month must equal the given value

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_SECURITY_POLICY_DEPLOYMENT_DETAILS_T Type

Details to update the security policy deployment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_security_policy_deployment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_security_policy_deployment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_security_policy_deployment_details_t (
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.

description

(optional) The description of the security policy deployment.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_SECURITY_POLICY_DETAILS_T Type

Details to update the security policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_security_policy_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_security_policy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_security_policy_details_t (
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of the security policy. The name does not have to be unique, and it is changeable.

description

(optional) The description of the security policy.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_SENSITIVE_TYPE_DETAILS_T Type

Details to update a sensitive type.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_sensitive_type_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  entity_type varchar2(32767),
  display_name varchar2(32767),
  short_name varchar2(32767),
  description varchar2(32767),
  parent_category_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_sensitive_type_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_sensitive_type_details_t (
    entity_type varchar2,
    display_name varchar2,
    short_name varchar2,
    description varchar2,
    parent_category_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

entity_type

(required) The entity type. It can be either a sensitive type with regular expressions or a sensitive category used for grouping similar sensitive types.

Allowed values are: 'SENSITIVE_TYPE', 'SENSITIVE_CATEGORY'

display_name

(optional) The display name of the sensitive type. The name does not have to be unique, and it's changeable.

short_name

(optional) The short name of the sensitive type.

description

(optional) The description of the sensitive type.

parent_category_id

(optional) The OCID of the parent sensitive category.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_SENSITIVE_CATEGORY_DETAILS_T Type

Details to update a sensitive category.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_sensitive_category_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_update_sensitive_type_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_sensitive_category_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_sensitive_category_details_t (
    entity_type varchar2,
    display_name varchar2,
    short_name varchar2,
    description varchar2,
    parent_category_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_update_sensitive_category_details_t is a subtype of the dbms_cloud_oci_datasafe_update_sensitive_type_details_t type.

DBMS_CLOUD_OCI_DATASAFE_UPDATE_SENSITIVE_COLUMN_DETAILS_T Type

Details to update a sensitive column in a sensitive data model.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_sensitive_column_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  data_type varchar2(32767),
  status varchar2(32767),
  sensitive_type_id varchar2(32767),
  parent_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
  relation_type varchar2(32767),
  app_defined_child_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
  db_defined_child_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_sensitive_column_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_sensitive_column_details_t (
    data_type varchar2,
    status varchar2,
    sensitive_type_id varchar2,
    parent_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
    relation_type varchar2,
    app_defined_child_column_keys dbms_cloud_oci_datasafe_varchar2_tbl,
    db_defined_child_column_keys dbms_cloud_oci_datasafe_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

data_type

(optional) The data type of the sensitive column.

status

(optional) The status of the sensitive column. VALID means the column is considered sensitive. INVALID means the column is not considered sensitive. Tracking invalid columns in a sensitive data model helps ensure that an incremental data discovery job does not identify these columns as sensitive.

Allowed values are: 'VALID', 'INVALID'

sensitive_type_id

(optional) The OCID of the sensitive type to be associated with the sensitive column.

parent_column_keys

(optional) Unique keys identifying the columns that are parents of the sensitive column. At present, it accepts only one parent column key. This attribute can be used to establish relationship between columns in a sensitive data model. Note that the parent column must be added to the sensitive data model before its key can be specified here. If this attribute is provided, the appDefinedChildColumnKeys or dbDefinedChildColumnKeys attribute of the parent column is automatically updated to reflect the relationship.

relation_type

(optional) The type of referential relationship the sensitive column has with its parent. NONE indicates that the sensitive column does not have a parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary.

Allowed values are: 'NONE', 'APP_DEFINED', 'DB_DEFINED'

app_defined_child_column_keys

(optional) Unique keys identifying the columns that are application-level (non-dictionary) children of the sensitive column. This attribute can be used to establish relationship between columns in a sensitive data model. Note that the child columns must be added to the sensitive data model before their keys can be specified here. If this attribute is provided, the parentColumnKeys and relationType attributes of the child columns are automatically updated to reflect the relationship.

db_defined_child_column_keys

(optional) Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column. This attribute can be used to establish relationship between columns in a sensitive data model. Note that the child columns must be added to the sensitive data model before their keys can be specified here. If this attribute is provided, the parentColumnKeys and relationType attributes of the child columns are automatically updated to reflect the relationship.

DBMS_CLOUD_OCI_DATASAFE_UPDATE_SENSITIVE_DATA_MODEL_DETAILS_T Type

Details to update a sensitive data model. Note that updating any attribute of a sensitive data model does not perform data discovery.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_sensitive_data_model_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  target_id varchar2(32767),
  app_suite_name varchar2(32767),
  description varchar2(32767),
  schemas_for_discovery dbms_cloud_oci_datasafe_varchar2_tbl,
  sensitive_type_ids_for_discovery dbms_cloud_oci_datasafe_varchar2_tbl,
  is_sample_data_collection_enabled number,
  is_app_defined_relation_discovery_enabled number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_sensitive_data_model_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_sensitive_data_model_details_t (
    display_name varchar2,
    target_id varchar2,
    app_suite_name varchar2,
    description varchar2,
    schemas_for_discovery dbms_cloud_oci_datasafe_varchar2_tbl,
    sensitive_type_ids_for_discovery dbms_cloud_oci_datasafe_varchar2_tbl,
    is_sample_data_collection_enabled number,
    is_app_defined_relation_discovery_enabled number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of the sensitive data model. The name does not have to be unique, and it's changeable.

target_id

(optional) The OCID of the reference target database to be associated with the sensitive data model. All operations such as performing data discovery and adding columns manually are done in the context of the associated target database. Note that updating the targetId attribute does not perform data discovery automatically.

app_suite_name

(optional) The application suite name identifying a collection of applications. It's useful only if maintaining a sensitive data model for a suite of applications.

description

(optional) The description of the sensitive data model.

schemas_for_discovery

(optional) The schemas to be used for future data discovery jobs.

sensitive_type_ids_for_discovery

(optional) The OCIDs of the sensitive types to be used for future data discovery jobs. If OCID of a sensitive category is provided, all its child sensitive types are used for data discovery.

is_sample_data_collection_enabled

(optional) Indicates if data discovery jobs should collect and store sample data values for the discovered columns. Sample data helps review the discovered columns and ensure that they actually contain sensitive data. As it collects original data from the target database, it's disabled by default and should be used only if it's acceptable to store sample data in Data Safe's repository in Oracle Cloud. Note that sample data values are not collected for columns with the following data types: LONG, LOB, RAW, XMLTYPE and BFILE.

is_app_defined_relation_discovery_enabled

(optional) Indicates if data discovery jobs should identify potential application-level (non-dictionary) referential relationships between columns. Note that data discovery automatically identifies and adds database-level (dictionary-defined) relationships. This option helps identify application-level relationships that are not defined in the database dictionary, which in turn, helps identify additional sensitive columns and preserve referential integrity during data masking. It's disabled by default and should be used only if there is a need to identify application-level relationships.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_SENSITIVE_TYPE_PATTERN_DETAILS_T Type

Details to update a sensitive type with regular expressions.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_sensitive_type_pattern_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datasafe_update_sensitive_type_details_t (
  name_pattern varchar2(32767),
  comment_pattern varchar2(32767),
  data_pattern varchar2(32767),
  search_type varchar2(32767),
  default_masking_format_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_sensitive_type_pattern_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_sensitive_type_pattern_details_t (
    entity_type varchar2,
    display_name varchar2,
    short_name varchar2,
    description varchar2,
    parent_category_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    name_pattern varchar2,
    comment_pattern varchar2,
    data_pattern varchar2,
    search_type varchar2,
    default_masking_format_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_datasafe_update_sensitive_type_pattern_details_t is a subtype of the dbms_cloud_oci_datasafe_update_sensitive_type_details_t type.

Fields

Field Description

name_pattern

(optional) A regular expression to be used by data discovery for matching column names.

comment_pattern

(optional) A regular expression to be used by data discovery for matching column comments.

data_pattern

(optional) A regular expression to be used by data discovery for matching column data values.

search_type

(optional) The search type indicating how the column name, comment and data patterns should be used by data discovery.

default_masking_format_id

(optional) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.

DBMS_CLOUD_OCI_DATASAFE_UPDATE_SQL_COLLECTION_DETAILS_T Type

Details to update the SQL collection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_sql_collection_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_sql_collection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_sql_collection_details_t (
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of the SQL collection. The name does not have to be unique, and it is changeable.

description

(optional) The description of the SQL collection.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_SQL_FIREWALL_POLICY_DETAILS_T Type

Details to update the SQL Firewall policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_sql_firewall_policy_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  status varchar2(32767),
  enforcement_scope varchar2(32767),
  violation_action varchar2(32767),
  violation_audit varchar2(32767),
  allowed_client_ips dbms_cloud_oci_datasafe_varchar2_tbl,
  allowed_client_os_usernames dbms_cloud_oci_datasafe_varchar2_tbl,
  allowed_client_programs dbms_cloud_oci_datasafe_varchar2_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_sql_firewall_policy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_sql_firewall_policy_details_t (
    display_name varchar2,
    description varchar2,
    status varchar2,
    enforcement_scope varchar2,
    violation_action varchar2,
    violation_audit varchar2,
    allowed_client_ips dbms_cloud_oci_datasafe_varchar2_tbl,
    allowed_client_os_usernames dbms_cloud_oci_datasafe_varchar2_tbl,
    allowed_client_programs dbms_cloud_oci_datasafe_varchar2_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of the SQL Firewall policy. The name does not have to be unique, and it is changeable.

description

(optional) The description of the SQL Firewall policy.

status

(optional) Specifies whether the SQL Firewall policy is enabled or disabled.

Allowed values are: 'ENABLED', 'DISABLED'

enforcement_scope

(optional) Specifies the SQL Firewall policy enforcement option.

Allowed values are: 'ENFORCE_CONTEXT', 'ENFORCE_SQL', 'ENFORCE_ALL'

violation_action

(optional) Specifies the SQL Firewall action based on detection of SQL Firewall violations.

Allowed values are: 'BLOCK', 'OBSERVE'

violation_audit

(optional) Specifies whether a unified audit policy should be enabled for auditing the SQL Firewall policy violations.

Allowed values are: 'ENABLED', 'DISABLED'

allowed_client_ips

(optional) List of allowed ip addresses for the SQL Firewall policy.

allowed_client_os_usernames

(optional) List of allowed operating system user names for the SQL Firewall policy.

allowed_client_programs

(optional) List of allowed client programs for the SQL Firewall policy.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_TARGET_ALERT_POLICY_ASSOCIATION_DETAILS_T Type

The details used to update a target-alert policy association.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_target_alert_policy_association_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_enabled number,
  display_name varchar2(32767),
  description varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_target_alert_policy_association_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_target_alert_policy_association_details_t (
    is_enabled number,
    display_name varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_enabled

(optional) Indicates if the target-alert policy association is enabled or disabled by user.

display_name

(optional) The display name of the target-alert policy association.

description

(optional) Describes the target-alert policy association.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_TARGET_DATABASE_DETAILS_T Type

The details of the database used for updating the target database in Data Safe.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_target_database_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  database_details dbms_cloud_oci_datasafe_database_details_t,
  credentials dbms_cloud_oci_datasafe_credentials_t,
  tls_config dbms_cloud_oci_datasafe_tls_config_t,
  connection_option dbms_cloud_oci_datasafe_connection_option_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_target_database_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_target_database_details_t (
    display_name varchar2,
    description varchar2,
    database_details dbms_cloud_oci_datasafe_database_details_t,
    credentials dbms_cloud_oci_datasafe_credentials_t,
    tls_config dbms_cloud_oci_datasafe_tls_config_t,
    connection_option dbms_cloud_oci_datasafe_connection_option_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name of the target database in Data Safe.

description

(optional) The description of the target database in Data Safe.

database_details

(optional)

credentials

(optional)

tls_config

(optional)

connection_option

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_UPDATE_USER_ASSESSMENT_DETAILS_T Type

Updates one or more attributes of the specified user assessment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_update_user_assessment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  description varchar2(32767),
  display_name varchar2(32767),
  schedule varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_user_assessment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_update_user_assessment_details_t (
    description varchar2,
    display_name varchar2,
    schedule varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

description

(optional) The description of the user assessment.

display_name

(optional) The display name of the user assessment.

schedule

(optional) The schedule for periodically saving the assessment. This is applicable only for assessments of type save schedule and latest assessment. It updates the existing schedule in a specified format: <version-string>;<version-specific-schedule> Allowed version strings - \"v1\" v1's version specific schedule -<ss> <mm> <hh> <day-of-week> <day-of-month> Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = <ss> (So, the allowed range for <ss> is [0, 59]) 2. minutes = <mm> (So, the allowed range for <mm> is [0, 59]) 3. hours = <hh> (So, the allowed range for <hh> is [0, 23]) <day-of-week> can be either '*' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is '*'. When not, day of week must equal the given value <day-of-month> can be either '*' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is '*'. When not, day of month must equal the given value

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_USER_AGGREGATION_T Type

The user aggregation provides information about the overall security state of database users. For example, it states how many users have the DBA role and how many users are in the critical category.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_user_aggregation_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_datasafe_json_element_t_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_user_aggregation_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_user_aggregation_t (
    items dbms_cloud_oci_datasafe_json_element_t_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) The array of user aggregation data.

DBMS_CLOUD_OCI_DATASAFE_USER_ASSESSMENT_T Type

The details of the user assessment, which includes statistics related to target database users.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_user_assessment_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  description varchar2(32767),
  display_name varchar2(32767),
  id varchar2(32767),
  ignored_targets dbms_cloud_oci_datasafe_json_element_t_tbl,
  ignored_assessment_ids dbms_cloud_oci_datasafe_json_element_t_tbl,
  is_baseline number,
  is_deviated_from_baseline number,
  last_compared_baseline_id varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  schedule_assessment_id varchar2(32767),
  schedule varchar2(32767),
  statistics json_element_t,
  target_ids dbms_cloud_oci_datasafe_varchar2_tbl,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  time_last_assessed timestamp with time zone,
  triggered_by varchar2(32767),
  l_type varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_user_assessment_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_user_assessment_t (
    compartment_id varchar2,
    description varchar2,
    display_name varchar2,
    id varchar2,
    ignored_targets dbms_cloud_oci_datasafe_json_element_t_tbl,
    ignored_assessment_ids dbms_cloud_oci_datasafe_json_element_t_tbl,
    is_baseline number,
    is_deviated_from_baseline number,
    last_compared_baseline_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    schedule_assessment_id varchar2,
    schedule varchar2,
    statistics json_element_t,
    target_ids dbms_cloud_oci_datasafe_varchar2_tbl,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    time_last_assessed timestamp with time zone,
    triggered_by varchar2,
    l_type 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

compartment_id

(required) The OCID of the compartment that contains the user assessment.

description

(optional) The description of the user assessment.

display_name

(required) The display name of the user assessment.

id

(required) The OCID of the user assessment.

ignored_targets

(optional) List containing maps as values. Example: `{\"Operations\": [ {\"CostCenter\": \"42\"} ] }`

ignored_assessment_ids

(optional) List containing maps as values. Example: `{\"Operations\": [ {\"CostCenter\": \"42\"} ] }`

is_baseline

(optional) Indicates if the user assessment is set as a baseline. This is applicable only to saved user assessments.

is_deviated_from_baseline

(optional) Indicates if the user assessment deviates from the baseline.

last_compared_baseline_id

(optional) The OCID of the last user assessment baseline against which the latest assessment was compared.

lifecycle_state

(required) The current state of the user assessment.

Allowed values are: 'CREATING', 'SUCCEEDED', 'UPDATING', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(optional) Details about the current state of the user assessment.

schedule_assessment_id

(optional) The OCID of the user assessment that is responsible for creating this scheduled save assessment.

schedule

(optional) Schedule of the assessment that runs periodically in this specified format: <version-string>;<version-specific-schedule> Allowed version strings - \"v1\" v1's version specific schedule -<ss> <mm> <hh> <day-of-week> <day-of-month> Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = <ss> (So, the allowed range for <ss> is [0, 59]) 2. minutes = <mm> (So, the allowed range for <mm> is [0, 59]) 3. hours = <hh> (So, the allowed range for <hh> is [0, 23]) <day-of-week> can be either '*' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is '*'. When not, day of week must equal the given value <day-of-month> can be either '*' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is '*'. When not, day of month must equal the given value

statistics

(optional) Map that contains maps of values. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

target_ids

(optional) Array of database target OCIDs.

time_created

(required) The date and time the user assessment was created, in the format defined by RFC3339.

time_updated

(required) The date and time the user assessment was last updated, in the format defined by RFC3339.

time_last_assessed

(optional) The date and time the user assessment was last executed, in the format defined by RFC3339.

triggered_by

(optional) Indicates whether the user assessment was created by the system or the user.

Allowed values are: 'USER', 'SYSTEM'

l_type

(required) The type of the user assessment. The possible types are: LATEST: The latest assessment that was executed for a target. It can either be system generated as part of the scheduled assessments or user driven by refreshing the latest assessment. SAVED: A saved user assessment. All user assessments are saved in the user assessment history. SAVE_SCHEDULE: The schedule to periodically save the LATEST assessment of a target database. COMPARTMENT: An automatic managed assessment type that stores all details of the targets in one compartment. This will keep an up-to-date status of all potential risks identified in the compartment. It also keeps track of user count and target count for each profile available on the targets in a given compartment. It is automatically updated once the latest assessment or refresh action is executed, as well as when a target is deleted or moved to a different compartment.

Allowed values are: 'LATEST', 'SAVED', 'SAVE_SCHEDULE', 'COMPARTMENT'

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_DATASAFE_USER_ASSESSMENT_BASE_LINE_DETAILS_T Type

The details required to set the baseline for the assessment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_user_assessment_base_line_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  assessment_ids dbms_cloud_oci_datasafe_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_user_assessment_base_line_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_user_assessment_base_line_details_t (
    assessment_ids dbms_cloud_oci_datasafe_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

assessment_ids

(optional) The list of OCIDs for the user assessments that need to be updated while setting the baseline.

DBMS_CLOUD_OCI_DATASAFE_USER_ASSESSMENT_COMPARISON_T Type

Provides a list of differences for user assessment when compared with the baseline value.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_user_assessment_comparison_t FORCE AUTHID CURRENT_USER IS OBJECT (
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  summary dbms_cloud_oci_datasafe_json_element_t_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_user_assessment_comparison_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_user_assessment_comparison_t (
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    summary dbms_cloud_oci_datasafe_json_element_t_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

lifecycle_state

(required) The current state of the user assessment comparison.

Allowed values are: 'CREATING', 'SUCCEEDED', 'FAILED'

time_created

(required) The date and time the user assessment comparison was created, in the format defined by RFC3339.

summary

(optional) List containing maps as values. Example: `{\"Operations\": [ {\"CostCenter\": \"42\"} ] }`

DBMS_CLOUD_OCI_DATASAFE_USER_ASSESSMENT_SUMMARY_T Type

The summary of the user assessment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_user_assessment_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  description varchar2(32767),
  display_name varchar2(32767),
  id varchar2(32767),
  ignored_targets dbms_cloud_oci_datasafe_json_element_t_tbl,
  ignored_assessment_ids dbms_cloud_oci_datasafe_json_element_t_tbl,
  is_baseline number,
  is_deviated_from_baseline number,
  last_compared_baseline_id varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  schedule_assessment_id varchar2(32767),
  schedule varchar2(32767),
  statistics json_element_t,
  target_ids dbms_cloud_oci_datasafe_varchar2_tbl,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  time_last_assessed timestamp with time zone,
  triggered_by varchar2(32767),
  l_type varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_user_assessment_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_user_assessment_summary_t (
    compartment_id varchar2,
    description varchar2,
    display_name varchar2,
    id varchar2,
    ignored_targets dbms_cloud_oci_datasafe_json_element_t_tbl,
    ignored_assessment_ids dbms_cloud_oci_datasafe_json_element_t_tbl,
    is_baseline number,
    is_deviated_from_baseline number,
    last_compared_baseline_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    schedule_assessment_id varchar2,
    schedule varchar2,
    statistics json_element_t,
    target_ids dbms_cloud_oci_datasafe_varchar2_tbl,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    time_last_assessed timestamp with time zone,
    triggered_by varchar2,
    l_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment that contains the user assessment.

description

(optional) The description of the user assessment.

display_name

(required) The display name of the user assessment.

id

(required) The OCID of the user assessment.

ignored_targets

(optional) List containing maps as values. Example: `{\"Operations\": [ {\"CostCenter\": \"42\"} ] }`

ignored_assessment_ids

(optional) List containing maps as values. Example: `{\"Operations\": [ {\"CostCenter\": \"42\"} ] }`

is_baseline

(optional) Indicates if the assessment is a baseline assessment. This applies to saved user assessments only.

is_deviated_from_baseline

(optional) Indicates if the assessment has deviated from the baseline.

last_compared_baseline_id

(optional) The OCID of the last user assessment baseline against which the latest assessment was compared.

lifecycle_state

(required) The current state of the user assessment.

Allowed values are: 'CREATING', 'SUCCEEDED', 'UPDATING', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(optional) Details about the current state of the user assessment.

schedule_assessment_id

(optional) The OCID of the user assessment that created this scheduled save assessment.

schedule

(optional) Schedule to save the assessment periodically in the specified format: <version-string>;<version-specific-schedule> Allowed version strings - \"v1\" v1's version specific schedule -<ss> <mm> <hh> <day-of-week> <day-of-month> Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = <ss> (So, the allowed range for <ss> is [0, 59]) 2. minutes = <mm> (So, the allowed range for <mm> is [0, 59]) 3. hours = <hh> (So, the allowed range for <hh> is [0, 23]) <day-of-week> can be either '*' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is '*'. When not, day of week must equal the given value <day-of-month> can be either '*' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is '*'. When not, day of month must equal the given value

statistics

(optional) Map that contains maps of values. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

target_ids

(optional) Array of database target OCIDs.

time_created

(required) The date and time the user assessment was created, in the format defined by RFC3339.

time_updated

(required) The last date and time the user assessment was updated, in the format defined by RFC3339.

time_last_assessed

(optional) The date and time the user assessment was last executed, in the format defined by RFC3339.

triggered_by

(optional) Indicates whether the user assessment was created by the system or the user.

Allowed values are: 'USER', 'SYSTEM'

l_type

(required) The type of the user assessment. The possible types are: LATEST: The latest assessment that was executed for a target. It can either be system generated as part of the scheduled assessments or user driven by refreshing the latest assessment. SAVED: A saved user assessment. All user assessments are saved in the user assessment history. SAVE_SCHEDULE: The schedule to periodically save the LATEST assessment of a target database. COMPARTMENT: An automatic managed assessment type that stores all details of the targets in one compartment. This will keep an up-to-date status of all potential risks identified in the compartment. It is automatically updated once the latest assessment or refresh action is executed, as well as when a target is deleted or moved to a different compartment.

Allowed values are: 'LATEST', 'SAVED', 'SAVE_SCHEDULE', 'COMPARTMENT'

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DATASAFE_USER_DETAILS_T Type

The details of a particular user.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_user_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  status varchar2(32767),
  profile varchar2(32767),
  tablespace varchar2(32767),
  is_user_predefined_by_oracle number,
  authentication_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_user_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_user_details_t (
    name varchar2,
    status varchar2,
    profile varchar2,
    tablespace varchar2,
    is_user_predefined_by_oracle number,
    authentication_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(optional) The name of the user.

status

(optional) The status of the user account.

profile

(optional) The name of the profile assigned to the user.

tablespace

(optional) The default tablespace of the user.

is_user_predefined_by_oracle

(optional) Indicates whether or not the user is predefined by ORACLE.

authentication_type

(optional) The authentication type of the user.

Allowed values are: 'PASSWORD', 'NONE'

DBMS_CLOUD_OCI_DATASAFE_USER_SUMMARY_T Type

The summary of information about the database user. It includes details such as user type, account status, last login time, user creation time, authentication type, user profile, and time and date of the last password change. It also contains the user category derived from these user details, as well as granted privileges.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_user_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  user_name varchar2(32767),
  user_category varchar2(32767),
  account_status varchar2(32767),
  target_id varchar2(32767),
  time_last_login timestamp with time zone,
  time_user_created timestamp with time zone,
  authentication_type varchar2(32767),
  user_profile varchar2(32767),
  time_password_changed timestamp with time zone,
  user_types dbms_cloud_oci_datasafe_varchar2_tbl,
  admin_roles dbms_cloud_oci_datasafe_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_user_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_user_summary_t (
    key varchar2,
    user_name varchar2,
    user_category varchar2,
    account_status varchar2,
    target_id varchar2,
    time_last_login timestamp with time zone,
    time_user_created timestamp with time zone,
    authentication_type varchar2,
    user_profile varchar2,
    time_password_changed timestamp with time zone,
    user_types dbms_cloud_oci_datasafe_varchar2_tbl,
    admin_roles dbms_cloud_oci_datasafe_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) The unique user key. This is a system-generated identifier. Use ListUsers to get the user key for a user.

user_name

(required) The database user name.

user_category

(optional) The user category based on the privileges and other details of the user.

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

account_status

(optional) The status of the user account.

Allowed values are: 'OPEN', 'LOCKED', 'EXPIRED', 'EXPIRED_AND_LOCKED', 'NONE'

target_id

(required) The OCID of the target database.

time_last_login

(optional) The date and time the user last logged in, in the format defined by RFC3339.

time_user_created

(optional) The date and time the user was created in the database, in the format defined by RFC3339.

authentication_type

(optional) The user authentication method.

Allowed values are: 'PASSWORD', 'NONE'

user_profile

(optional) The user profile name.

time_password_changed

(optional) The date and time the user password was last changed, in the format defined by RFC3339.

user_types

(optional) The user type, which can be a combination of the following: 'Admin Privileged': The user has administrative privileges. 'Application': The user is an Oracle E-Business Suite Applications (EBS) or Fusion Applications (FA) user. 'Privileged': The user is a privileged user. 'Schema': The user is EXPIRED & LOCKED / EXPIRED / LOCKED, or a schema-only account (authentication type is NONE). 'Non-privileged': The user is a non-privileged user.

Allowed values are: 'ADMIN_PRIVILEGED', 'APPLICATION', 'PRIVILEGED', 'SCHEMA', 'NON_PRIVILEGED'

admin_roles

(optional) The admin roles granted to the user.

Allowed values are: 'PDB_DBA', 'DBA', 'DV_ADMIN', 'AUDIT_ADMIN'

DBMS_CLOUD_OCI_DATASAFE_WORK_REQUEST_RESOURCE_T Type

A resource that is created or operated on by an asynchronous operation that is tracked by a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_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),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_work_request_resource_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_work_request_resource_t (
    entity_type varchar2,
    action_type varchar2,
    identifier varchar2,
    entity_uri varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

entity_type

(required) The resource type impacted by the work request.

action_type

(required) The way in which this resource was affected by the operation that spawned 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', 'FAILED'

identifier

(required) An OCID or other unique identifier for the resource.

entity_uri

(optional) The URI path that the user can use for a GET request to access the resource metadata.

DBMS_CLOUD_OCI_DATASAFE_WORK_REQUEST_RESOURCE_TBL Type

Nested table type of dbms_cloud_oci_datasafe_work_request_resource_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_datasafe_work_request_resource_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DATASAFE_WORK_REQUEST_T Type

An asynchronous work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_work_request_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_datasafe_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_datasafe_work_request_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_work_request_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_datasafe_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) The resources that are affected by the work request.

Allowed values are: 'ENABLE_DATA_SAFE_CONFIGURATION', 'CREATE_PRIVATE_ENDPOINT', 'UPDATE_PRIVATE_ENDPOINT', 'DELETE_PRIVATE_ENDPOINT', 'CHANGE_PRIVATE_ENDPOINT_COMPARTMENT', 'CREATE_ONPREM_CONNECTOR', 'UPDATE_ONPREM_CONNECTOR', 'DELETE_ONPREM_CONNECTOR', 'UPDATE_ONPREM_CONNECTOR_WALLET', 'CHANGE_ONPREM_CONNECTOR_COMPARTMENT', 'CREATE_TARGET_DATABASE', 'UPDATE_TARGET_DATABASE', 'ACTIVATE_TARGET_DATABASE', 'DEACTIVATE_TARGET_DATABASE', 'DELETE_TARGET_DATABASE', 'CHANGE_TARGET_DATABASE_COMPARTMENT', 'PROVISION_POLICY', 'RETRIEVE_POLICY', 'UPDATE_POLICY', 'CHANGE_POLICY_COMPARTMENT', 'CREATE_USER_ASSESSMENT', 'ASSESS_USER_ASSESSMENT', 'CREATE_SNAPSHOT_USER_ASSESSMENT', 'CREATE_SCHEDULE_USER_ASSESSMENT', 'COMPARE_WITH_BASELINE_USER_ASSESSMENT', 'DELETE_USER_ASSESSMENT', 'UPDATE_USER_ASSESSMENT', 'CHANGE_USER_ASSESSMENT_COMPARTMENT', 'SET_USER_ASSESSMENT_BASELINE', 'UNSET_USER_ASSESSMENT_BASELINE', 'GENERATE_USER_ASSESSMENT_REPORT', 'CREATE_SECURITY_ASSESSMENT', 'CREATE_SECURITY_ASSESSMENT_NOW', 'ASSESS_SECURITY_ASSESSMENT', 'CREATE_SNAPSHOT_SECURITY_ASSESSMENT', 'CREATE_SCHEDULE_SECURITY_ASSESSMENT', 'COMPARE_WITH_BASELINE_SECURITY_ASSESSMENT', 'DELETE_SECURITY_ASSESSMENT', 'UPDATE_SECURITY_ASSESSMENT', 'CHANGE_SECURITY_ASSESSMENT_COMPARTMENT', 'SET_SECURITY_ASSESSMENT_BASELINE', 'UNSET_SECURITY_ASSESSMENT_BASELINE', 'GENERATE_SECURITY_ASSESSMENT_REPORT', 'CREATE_AUDIT_PROFILE', 'CALCULATE_VOLUME', 'CALCULATE_COLLECTED_VOLUME', 'CREATE_DB_SECURITY_CONFIG', 'REFRESH_DB_SECURITY_CONFIG', 'UPDATE_DB_SECURITY_CONFIG', 'CHANGE_DB_SECURITY_CONFIG_COMPARTMENT', 'GENERATE_FIREWALL_POLICY', 'UPDATE_FIREWALL_POLICY', 'CHANGE_FIREWALL_POLICY_COMPARTMENT', 'DELETE_FIREWALL_POLICY', 'CREATE_SQL_COLLECTION', 'UPDATE_SQL_COLLECTION', 'START_SQL_COLLECTION', 'STOP_SQL_COLLECTION', 'DELETE_SQL_COLLECTION', 'CHANGE_SQL_COLLECTION_COMPARTMENT', 'REFRESH_SQL_COLLECTION_LOG_INSIGHTS', 'PURGE_SQL_COLLECTION_LOGS', 'REFRESH_VIOLATIONS', 'UPDATE_SECURITY_POLICY', 'CHANGE_SECURITY_POLICY_COMPARTMENT', 'UPDATE_SECURITY_POLICY_DEPLOYMENT', 'CHANGE_SECURITY_POLICY_DEPLOYMENT_COMPARTMENT', 'AUDIT_TRAIL', 'DELETE_AUDIT_TRAIL', 'DISCOVER_AUDIT_TRAILS', 'UPDATE_AUDIT_TRAIL', 'UPDATE_AUDIT_PROFILE', 'AUDIT_CHANGE_COMPARTMENT', 'CREATE_REPORT_DEFINITION', 'UPDATE_REPORT_DEFINITION', 'CHANGE_REPORT_DEFINITION_COMPARTMENT', 'DELETE_REPORT_DEFINITION', 'GENERATE_REPORT', 'CHANGE_REPORT_COMPARTMENT', 'DELETE_ARCHIVE_RETRIEVAL', 'CREATE_ARCHIVE_RETRIEVAL', 'UPDATE_ARCHIVE_RETRIEVAL', 'CHANGE_ARCHIVE_RETRIEVAL_COMPARTMENT', 'UPDATE_ALERT', 'TARGET_ALERT_POLICY_ASSOCIATION', 'CREATE_SENSITIVE_DATA_MODEL', 'UPDATE_SENSITIVE_DATA_MODEL', 'DELETE_SENSITIVE_DATA_MODEL', 'UPLOAD_SENSITIVE_DATA_MODEL', 'GENERATE_SENSITIVE_DATA_MODEL_FOR_DOWNLOAD', 'CREATE_SENSITIVE_COLUMN', 'UPDATE_SENSITIVE_COLUMN', 'PATCH_SENSITIVE_COLUMNS', 'CREATE_DISCOVERY_JOB', 'DELETE_DISCOVERY_JOB', 'PATCH_DISCOVERY_JOB_RESULT', 'APPLY_DISCOVERY_JOB_RESULT', 'GENERATE_DISCOVERY_REPORT', 'CREATE_SENSITIVE_TYPE', 'UPDATE_SENSITIVE_TYPE', 'CREATE_MASKING_POLICY', 'UPDATE_MASKING_POLICY', 'DELETE_MASKING_POLICY', 'UPLOAD_MASKING_POLICY', 'GENERATE_MASKING_POLICY_FOR_DOWNLOAD', 'CREATE_MASKING_COLUMN', 'UPDATE_MASKING_COLUMN', 'PATCH_MASKING_COLUMNS', 'GENERATE_MASKING_REPORT', 'CREATE_LIBRARY_MASKING_FORMAT', 'UPDATE_LIBRARY_MASKING_FORMAT', 'ADD_COLUMNS_FROM_SDM', 'MASKING_JOB', 'CREATE_DIFFERENCE', 'DELETE_DIFFERENCE', 'UPDATE_DIFFERENCE', 'PATCH_DIFFERENCE', 'APPLY_DIFFERENCE', 'ABORT_MASKING', 'CREATE_SCHEDULE', 'REMOVE_SCHEDULE_REPORT', 'UPDATE_ALL_ALERT', 'PATCH_TARGET_ALERT_POLICY_ASSOCIATION'

status

(required) The current status of the work request.

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

id

(required) The OCID of the work request.

compartment_id

(required) The OCID of the compartment that contains the work request.

resources

(required) The resources that are affected by this work request.

percent_complete

(required) Progress of the work request in percentage.

time_accepted

(required) The date and time the work request was accepted, in the format defined by RFC3339.

time_started

(optional) The date and time the work request transitioned from ACCEPTED to IN_PROGRESS, in the format defined by RFC3339.

time_finished

(optional) The date and time the work request reached a terminal state, either FAILED or SUCCEEDED. Format is defined by RFC3339.

DBMS_CLOUD_OCI_DATASAFE_WORK_REQUEST_ERROR_T Type

An error related to a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_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_datasafe_work_request_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_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 error code. For a list of common errors, see API Errors.

message

(required) A human-readable error string.

l_timestamp

(required) The date and time the error occurred, in the format defined by RFC3339.

DBMS_CLOUD_OCI_DATASAFE_WORK_REQUEST_LOG_ENTRY_T Type

A log entry related to a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_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_datasafe_work_request_log_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_work_request_log_entry_t (
    message varchar2,
    l_timestamp timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

message

(required) A human-readable log entry.

l_timestamp

(required) The date and time the log entry was created, in the format defined by RFC3339.

DBMS_CLOUD_OCI_DATASAFE_WORK_REQUEST_SUMMARY_T Type

Summary of a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datasafe_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_datasafe_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_datasafe_work_request_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_datasafe_work_request_summary_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_datasafe_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) The asynchronous operation tracked by this work request.

Allowed values are: 'ENABLE_DATA_SAFE_CONFIGURATION', 'CREATE_PRIVATE_ENDPOINT', 'UPDATE_PRIVATE_ENDPOINT', 'DELETE_PRIVATE_ENDPOINT', 'CHANGE_PRIVATE_ENDPOINT_COMPARTMENT', 'CREATE_ONPREM_CONNECTOR', 'UPDATE_ONPREM_CONNECTOR', 'DELETE_ONPREM_CONNECTOR', 'UPDATE_ONPREM_CONNECTOR_WALLET', 'CHANGE_ONPREM_CONNECTOR_COMPARTMENT', 'PROVISION_POLICY', 'RETRIEVE_POLICY', 'UPDATE_POLICY', 'CHANGE_POLICY_COMPARTMENT', 'CREATE_TARGET_DATABASE', 'UPDATE_TARGET_DATABASE', 'ACTIVATE_TARGET_DATABASE', 'DEACTIVATE_TARGET_DATABASE', 'DELETE_TARGET_DATABASE', 'CHANGE_TARGET_DATABASE_COMPARTMENT', 'CREATE_USER_ASSESSMENT', 'ASSESS_USER_ASSESSMENT', 'CREATE_SNAPSHOT_USER_ASSESSMENT', 'CREATE_SCHEDULE_USER_ASSESSMENT', 'COMPARE_WITH_BASELINE_USER_ASSESSMENT', 'DELETE_USER_ASSESSMENT', 'UPDATE_USER_ASSESSMENT', 'CHANGE_USER_ASSESSMENT_COMPARTMENT', 'SET_USER_ASSESSMENT_BASELINE', 'UNSET_USER_ASSESSMENT_BASELINE', 'GENERATE_USER_ASSESSMENT_REPORT', 'CREATE_SECURITY_ASSESSMENT', 'CREATE_SECURITY_ASSESSMENT_NOW', 'ASSESS_SECURITY_ASSESSMENT', 'CREATE_SNAPSHOT_SECURITY_ASSESSMENT', 'CREATE_SCHEDULE_SECURITY_ASSESSMENT', 'COMPARE_WITH_BASELINE_SECURITY_ASSESSMENT', 'DELETE_SECURITY_ASSESSMENT', 'UPDATE_SECURITY_ASSESSMENT', 'CHANGE_SECURITY_ASSESSMENT_COMPARTMENT', 'SET_SECURITY_ASSESSMENT_BASELINE', 'UNSET_SECURITY_ASSESSMENT_BASELINE', 'GENERATE_SECURITY_ASSESSMENT_REPORT', 'CALCULATE_VOLUME', 'CALCULATE_COLLECTED_VOLUME', 'CREATE_DB_SECURITY_CONFIG', 'REFRESH_DB_SECURITY_CONFIG', 'UPDATE_DB_SECURITY_CONFIG', 'CHANGE_DB_SECURITY_CONFIG_COMPARTMENT', 'GENERATE_FIREWALL_POLICY', 'UPDATE_FIREWALL_POLICY', 'CHANGE_FIREWALL_POLICY_COMPARTMENT', 'DELETE_FIREWALL_POLICY', 'CREATE_SQL_COLLECTION', 'UPDATE_SQL_COLLECTION', 'START_SQL_COLLECTION', 'STOP_SQL_COLLECTION', 'DELETE_SQL_COLLECTION', 'CHANGE_SQL_COLLECTION_COMPARTMENT', 'REFRESH_SQL_COLLECTION_LOG_INSIGHTS', 'PURGE_SQL_COLLECTION_LOGS', 'REFRESH_VIOLATIONS', 'UPDATE_SECURITY_POLICY', 'CHANGE_SECURITY_POLICY_COMPARTMENT', 'UPDATE_SECURITY_POLICY_DEPLOYMENT', 'CHANGE_SECURITY_POLICY_DEPLOYMENT_COMPARTMENT', 'AUDIT_TRAIL', 'DELETE_AUDIT_TRAIL', 'DISCOVER_AUDIT_TRAILS', 'UPDATE_AUDIT_TRAIL', 'UPDATE_AUDIT_PROFILE', 'AUDIT_CHANGE_COMPARTMENT', 'CREATE_REPORT_DEFINITION', 'UPDATE_REPORT_DEFINITION', 'CHANGE_REPORT_DEFINITION_COMPARTMENT', 'DELETE_REPORT_DEFINITION', 'GENERATE_REPORT', 'CHANGE_REPORT_COMPARTMENT', 'DELETE_ARCHIVE_RETRIEVAL', 'CREATE_ARCHIVE_RETRIEVAL', 'UPDATE_ARCHIVE_RETRIEVAL', 'CHANGE_ARCHIVE_RETRIEVAL_COMPARTMENT', 'UPDATE_ALERT', 'TARGET_ALERT_POLICY_ASSOCIATION', 'CREATE_SENSITIVE_DATA_MODEL', 'UPDATE_SENSITIVE_DATA_MODEL', 'DELETE_SENSITIVE_DATA_MODEL', 'UPLOAD_SENSITIVE_DATA_MODEL', 'GENERATE_SENSITIVE_DATA_MODEL_FOR_DOWNLOAD', 'CREATE_SENSITIVE_COLUMN', 'UPDATE_SENSITIVE_COLUMN', 'PATCH_SENSITIVE_COLUMNS', 'CREATE_DISCOVERY_JOB', 'DELETE_DISCOVERY_JOB', 'PATCH_DISCOVERY_JOB_RESULT', 'APPLY_DISCOVERY_JOB_RESULT', 'GENERATE_DISCOVERY_REPORT', 'CREATE_SENSITIVE_TYPE', 'UPDATE_SENSITIVE_TYPE', 'CREATE_MASKING_POLICY', 'UPDATE_MASKING_POLICY', 'DELETE_MASKING_POLICY', 'UPLOAD_MASKING_POLICY', 'GENERATE_MASKING_POLICY_FOR_DOWNLOAD', 'CREATE_MASKING_COLUMN', 'UPDATE_MASKING_COLUMN', 'PATCH_MASKING_COLUMNS', 'GENERATE_MASKING_REPORT', 'CREATE_LIBRARY_MASKING_FORMAT', 'UPDATE_LIBRARY_MASKING_FORMAT', 'ADD_COLUMNS_FROM_SDM', 'MASKING_JOB', 'CREATE_DIFFERENCE', 'DELETE_DIFFERENCE', 'UPDATE_DIFFERENCE', 'PATCH_DIFFERENCE', 'APPLY_DIFFERENCE', 'ABORT_MASKING', 'CREATE_SCHEDULE', 'REMOVE_SCHEDULE_REPORT', 'UPDATE_ALL_ALERT', 'PATCH_TARGET_ALERT_POLICY_ASSOCIATION'

status

(required) The current status of the work request.

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

id

(required) The OCID of the work request.

compartment_id

(required) The OCID of the compartment that contains the work request.

resources

(required) The resources that are affected by the work request.

percent_complete

(required) Progress of the work request in percentage.

time_accepted

(required) The date and time the work request was accepted, in the format defined by RFC3339.

time_started

(optional) The date and time the work request transitioned from ACCEPTED to IN_PROGRESS, in the format defined by RFC3339.

time_finished

(optional) The date and time the work request reached a terminal state, either FAILED or SUCCEEDED, in the format defined by RFC3339.

Was this article helpful?