OCVP Cluster Types

DBMS_CLOUD_OCI_OV_CLUSTER_CREATE_CLUSTER_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ov_cluster_create_cluster_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_OV_CLUSTER_DELETE_CLUSTER_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ov_cluster_delete_cluster_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_OV_CLUSTER_GET_CLUSTER_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_cluster

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OV_CLUSTER_LIST_CLUSTERS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_clusters

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OV_CLUSTER_UPDATE_CLUSTER_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of update_cluster

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer