OS Management Event Types

DBMS_CLOUD_OCI_OM_EVENT_DELETE_EVENT_CONTENT_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_om_event_delete_event_content_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

DBMS_CLOUD_OCI_OM_EVENT_GET_EVENT_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_event

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OM_EVENT_GET_EVENT_CONTENT_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_event_content

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OM_EVENT_GET_EVENT_REPORT_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_event_report

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OM_EVENT_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_om_event_list_events_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_os_management_event_collection_t,
  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_OM_EVENT_LIST_RELATED_EVENTS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_related_events

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OM_EVENT_UPDATE_EVENT_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of update_event

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OM_EVENT_UPLOAD_EVENT_CONTENT_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_om_event_upload_event_content_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