DBMS_CLOUD_OCI_MS_DB_BACKUPS_CHANGE_BACKUP_COMPARTMENT_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the change_backup_compartment request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ms_db_backups_change_backup_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_MS_DB_BACKUPS_CREATE_BACKUP_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the create_backup request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ms_db_backups_create_backup_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_mysql_backup_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of create_backup
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_MS_DB_BACKUPS_DELETE_BACKUP_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the delete_backup request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ms_db_backups_delete_backup_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_DB_BACKUPS_GET_BACKUP_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the get_backup request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ms_db_backups_get_backup_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_mysql_backup_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of get_backup
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_MYSQL_BACKUP_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_mysql_backup_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_mysql_backup_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_mysql_backup_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_MS_DB_BACKUPS_LIST_BACKUPS_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_backups request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ms_db_backups_list_backups_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_mysql_backup_summary_tbl,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_backups
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_MS_DB_BACKUPS_UPDATE_BACKUP_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the update_backup request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_ms_db_backups_update_backup_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_mysql_backup_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;