Operator Access Control Operator Actions Types

DBMS_CLOUD_OCI_OAC_OPERATOR_ACTIONS_GET_OPERATOR_ACTION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_operator_action

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OAC_OPERATOR_ACTIONS_LIST_OPERATOR_ACTIONS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_operator_actions

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer