API Gateway Types

DBMS_CLOUD_OCI_AG_API_GATEWAY_CHANGE_API_COMPARTMENT_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ag_api_gateway_change_api_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_API_GATEWAY_CHANGE_CERTIFICATE_COMPARTMENT_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ag_api_gateway_change_certificate_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_API_GATEWAY_CREATE_API_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of create_api

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AG_API_GATEWAY_CREATE_CERTIFICATE_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of create_certificate

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AG_API_GATEWAY_CREATE_SDK_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of create_sdk

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AG_API_GATEWAY_DELETE_API_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ag_api_gateway_delete_api_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_API_GATEWAY_DELETE_CERTIFICATE_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ag_api_gateway_delete_certificate_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_API_GATEWAY_DELETE_SDK_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ag_api_gateway_delete_sdk_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_API_GATEWAY_GET_API_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_api

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AG_API_GATEWAY_GET_API_CONTENT_RESPONSE_T Type

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

Syntax

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

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AG_API_GATEWAY_GET_API_DEPLOYMENT_SPECIFICATION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_api_deployment_specification

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AG_API_GATEWAY_GET_API_VALIDATIONS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_api_validations

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AG_API_GATEWAY_GET_CERTIFICATE_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_certificate

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AG_API_GATEWAY_GET_SDK_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_sdk

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AG_API_GATEWAY_LIST_APIS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_apis

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AG_API_GATEWAY_LIST_CERTIFICATES_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_certificates

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AG_API_GATEWAY_LIST_SDK_LANGUAGE_TYPES_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_sdk_language_types

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AG_API_GATEWAY_LIST_SDKS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_sdks

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_AG_API_GATEWAY_UPDATE_API_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ag_api_gateway_update_api_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_API_GATEWAY_UPDATE_CERTIFICATE_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ag_api_gateway_update_certificate_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_API_GATEWAY_UPDATE_SDK_RESPONSE_T Type

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

Syntax

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