DBMS_CLOUD_OCI_Q_QUEUE_DELETE_MESSAGE_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the delete_message request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_q_queue_delete_message_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_Q_QUEUE_DELETE_MESSAGES_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the delete_messages request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_q_queue_delete_messages_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_queue_delete_messages_result_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of delete_messages
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_Q_QUEUE_GET_MESSAGES_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the get_messages request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_q_queue_get_messages_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_queue_get_messages_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of get_messages
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_Q_QUEUE_GET_STATS_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the get_stats request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_q_queue_get_stats_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_queue_queue_stats_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of get_stats
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_Q_QUEUE_LIST_CHANNELS_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_channels request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_q_queue_list_channels_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_queue_channel_collection_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_channels
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_Q_QUEUE_PUT_MESSAGES_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the put_messages request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_q_queue_put_messages_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_queue_put_messages_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of put_messages
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_Q_QUEUE_UPDATE_MESSAGE_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the update_message request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_q_queue_update_message_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_queue_updated_message_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of update_message
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_Q_QUEUE_UPDATE_MESSAGES_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the update_messages request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_q_queue_update_messages_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_queue_update_messages_result_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;