CIMS Incident Types

DBMS_CLOUD_OCI_CI_INCIDENT_CREATE_INCIDENT_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of create_incident

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_CI_INCIDENT_GET_CSI_NUMBER_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_csi_number

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_CI_INCIDENT_GET_INCIDENT_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_incident

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_CI_INCIDENT_GET_STATUS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_status

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_CIMS_INCIDENT_RESOURCE_TYPE_TBL Type

Nested table type of dbms_cloud_oci_cims_incident_resource_type_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_incident_resource_type_tbl FORCE IS TABLE OF (dbms_cloud_oci_cims_incident_resource_type_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_CI_INCIDENT_LIST_INCIDENT_RESOURCE_TYPES_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_incident_resource_types

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_CIMS_INCIDENT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_cims_incident_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cims_incident_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cims_incident_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_CI_INCIDENT_LIST_INCIDENTS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_incidents

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_CI_INCIDENT_UPDATE_INCIDENT_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of update_incident

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_CI_INCIDENT_VALIDATE_USER_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of validate_user

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer