DBMS_CLOUD_OCI_DTS_TRANSFER_JOB_CHANGE_TRANSFER_JOB_COMPARTMENT_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the change_transfer_job_compartment request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dts_transfer_job_change_transfer_job_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_DTS_TRANSFER_JOB_CREATE_TRANSFER_JOB_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the create_transfer_job request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dts_transfer_job_create_transfer_job_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_dts_transfer_job_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of create_transfer_job
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_DTS_TRANSFER_JOB_DELETE_TRANSFER_JOB_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the delete_transfer_job request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dts_transfer_job_delete_transfer_job_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_DTS_TRANSFER_JOB_GET_TRANSFER_JOB_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the get_transfer_job request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dts_transfer_job_get_transfer_job_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_dts_transfer_job_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of get_transfer_job
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_DTS_TRANSFER_JOB_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dts_transfer_job_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dts_transfer_job_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dts_transfer_job_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DTS_TRANSFER_JOB_LIST_TRANSFER_JOBS_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_transfer_jobs request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dts_transfer_job_list_transfer_jobs_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_dts_transfer_job_summary_tbl,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_transfer_jobs
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_DTS_TRANSFER_JOB_UPDATE_TRANSFER_JOB_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the update_transfer_job request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dts_transfer_job_update_transfer_job_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_dts_transfer_job_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;