DTS Transfer Device Types
DBMS_CLOUD_OCI_DTS_TRANSFER_DEVICE_CREATE_TRANSFER_DEVICE_RESPONSE_T Type
Contains the response body, headers and the status code of the create_transfer_device request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dts_transfer_device_create_transfer_device_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_dts_new_transfer_device_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
Response body of |
|
Response headers as JSON data in a JSON object |
|
HTTP response status code as an integer |
DBMS_CLOUD_OCI_DTS_TRANSFER_DEVICE_DELETE_TRANSFER_DEVICE_RESPONSE_T Type
Contains the response body, headers and the status code of the delete_transfer_device request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dts_transfer_device_delete_transfer_device_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
Response headers as JSON data in a JSON object |
|
HTTP response status code as an integer |
DBMS_CLOUD_OCI_DTS_TRANSFER_DEVICE_GET_TRANSFER_DEVICE_RESPONSE_T Type
Contains the response body, headers and the status code of the get_transfer_device request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dts_transfer_device_get_transfer_device_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_dts_transfer_device_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
Response body of |
|
Response headers as JSON data in a JSON object |
|
HTTP response status code as an integer |
DBMS_CLOUD_OCI_DTS_TRANSFER_DEVICE_LIST_TRANSFER_DEVICES_RESPONSE_T Type
Contains the response body, headers and the status code of the list_transfer_devices request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dts_transfer_device_list_transfer_devices_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_dts_multiple_transfer_devices_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
Response body of |
|
Response headers as JSON data in a JSON object |
|
HTTP response status code as an integer |
DBMS_CLOUD_OCI_DTS_TRANSFER_DEVICE_UPDATE_TRANSFER_DEVICE_RESPONSE_T Type
Contains the response body, headers and the status code of the update_transfer_device request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dts_transfer_device_update_transfer_device_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_dts_transfer_device_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
Response body of |
|
Response headers as JSON data in a JSON object |
|
HTTP response status code as an integer |