MySQL Replicas Types

DBMS_CLOUD_OCI_MS_REPLICAS_CREATE_REPLICA_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of create_replica

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_MS_REPLICAS_DELETE_REPLICA_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ms_replicas_delete_replica_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_MS_REPLICAS_GET_REPLICA_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_replica

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_MYSQL_REPLICA_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_mysql_replica_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_mysql_replica_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_mysql_replica_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MS_REPLICAS_LIST_REPLICAS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_replicas

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_MS_REPLICAS_UPDATE_REPLICA_RESPONSE_T Type

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

Syntax

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