API Gateway Deployment Types

DBMS_CLOUD_OCI_AG_DEPLOYMENT_CHANGE_DEPLOYMENT_COMPARTMENT_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ag_deployment_change_deployment_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_DEPLOYMENT_CREATE_DEPLOYMENT_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of create_deployment

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AG_DEPLOYMENT_DELETE_DEPLOYMENT_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ag_deployment_delete_deployment_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_DEPLOYMENT_GET_DEPLOYMENT_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_deployment

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AG_DEPLOYMENT_LIST_DEPLOYMENTS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_deployments

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AG_DEPLOYMENT_UPDATE_DEPLOYMENT_RESPONSE_T Type

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

Syntax

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