Audit Types

DBMS_CLOUD_OCI_AD_AUDIT_GET_CONFIGURATION_RESPONSE_T Type

Contains the response body, headers and the status code of the get_configuration request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ad_audit_get_configuration_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_audit_configuration_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of get_configuration

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AUDIT_AUDIT_EVENT_TBL Type

Nested table type of dbms_cloud_oci_audit_audit_event_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_audit_audit_event_tbl FORCE IS TABLE OF (dbms_cloud_oci_audit_audit_event_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_AD_AUDIT_LIST_EVENTS_RESPONSE_T Type

Contains the response body, headers and the status code of the list_events request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ad_audit_list_events_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_audit_audit_event_tbl,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of list_events

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AD_AUDIT_UPDATE_CONFIGURATION_RESPONSE_T Type

Contains the response body, headers and the status code of the update_configuration request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ad_audit_update_configuration_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer