DBMS_CLOUD_OCI_AG_GATEWAY_CHANGE_GATEWAY_COMPARTMENT_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the change_gateway_compartment request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ag_gateway_change_gateway_compartment_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_AG_GATEWAY_CREATE_GATEWAY_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the create_gateway request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ag_gateway_create_gateway_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_apigateway_gateway_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of create_gateway
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_AG_GATEWAY_DELETE_GATEWAY_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the delete_gateway request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ag_gateway_delete_gateway_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_AG_GATEWAY_GET_GATEWAY_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the get_gateway request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ag_gateway_get_gateway_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_apigateway_gateway_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of get_gateway
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_AG_GATEWAY_LIST_GATEWAYS_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_gateways request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ag_gateway_list_gateways_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_apigateway_gateway_collection_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_gateways
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_AG_GATEWAY_UPDATE_GATEWAY_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the update_gateway request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ag_gateway_update_gateway_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
headers json_object_t,
status_code number
) NOT PERSISTABLE;