CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_QUEUE_CHANGE_QUEUE_COMPARTMENT_DETAILS_T Type 🔗
The information to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_change_queue_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_change_queue_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_change_queue_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment into which the resource should be moved.
DBMS_CLOUD_OCI_QUEUE_CHANNEL_COLLECTION_T Type 🔗
List of IDs of non-empty channels.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_channel_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_queue_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_channel_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_channel_collection_t (
items dbms_cloud_oci_queue_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The approximate list of IDs of non-empty channels.
DBMS_CLOUD_OCI_QUEUE_CREATE_QUEUE_DETAILS_T Type 🔗
The information about a new queue.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_create_queue_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
compartment_id varchar2(32767),
retention_in_seconds number,
visibility_in_seconds number,
timeout_in_seconds number,
channel_consumption_limit number,
dead_letter_queue_delivery_count number,
custom_encryption_key_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_create_queue_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_create_queue_details_t (
display_name varchar2,
compartment_id varchar2,
retention_in_seconds number,
visibility_in_seconds number,
timeout_in_seconds number,
channel_consumption_limit number,
dead_letter_queue_delivery_count number,
custom_encryption_key_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(required) The user-friendly name of the queue.
compartment_id
(required) The OCID of the compartment containing the queue.
retention_in_seconds
(optional) The retention period of messages in the queue, in seconds.
visibility_in_seconds
(optional) The default visibility timeout of the messages consumed from the queue, in seconds.
timeout_in_seconds
(optional) The default polling timeout of the messages in the queue, in seconds.
channel_consumption_limit
(optional) The percentage of allocated queue resources that can be consumed by a single channel. For example, if a queue has a storage limit of 2Gb, and a single channel consumption limit is 0.1 (10%), that means data size of a single channel can't exceed 200Mb. Consumption limit of 100% (default) means that a single channel can consume up-to all allocated queue's resources.
dead_letter_queue_delivery_count
(optional) The number of times a message can be delivered to a consumer before being moved to the dead letter queue. A value of 0 indicates that the DLQ is not used.
custom_encryption_key_id
(optional) The OCID of the custom encryption key to be used to encrypt messages content.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_QUEUE_DELETE_MESSAGES_DETAILS_ENTRY_T Type 🔗
Object that represents a message to delete from a queue.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_delete_messages_details_entry_t FORCE AUTHID CURRENT_USER IS OBJECT (
receipt varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_delete_messages_details_entry_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_delete_messages_details_entry_t (
receipt varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
receipt
(required) The receipt of the message to delete.
DBMS_CLOUD_OCI_QUEUE_DELETE_MESSAGES_DETAILS_ENTRY_TBL Type 🔗
Nested table type of dbms_cloud_oci_queue_delete_messages_details_entry_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_delete_messages_details_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_queue_delete_messages_details_entry_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_QUEUE_DELETE_MESSAGES_DETAILS_T Type 🔗
The details of a DeleteMessages request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_delete_messages_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
entries dbms_cloud_oci_queue_delete_messages_details_entry_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_delete_messages_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_delete_messages_details_t (
entries dbms_cloud_oci_queue_delete_messages_details_entry_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
entries
(required) The array of messages to delete from a queue.
DBMS_CLOUD_OCI_QUEUE_DELETE_MESSAGES_RESULT_ENTRY_T Type 🔗
Represents the result of a DeleteMessages request, whether it was successful or not. If a message was successfully deleted from the queue, the entry does not contain any fields. If a message failed to be deleted from the queue, the entry includes the `errorCode` and `errorMessage` fields.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_delete_messages_result_entry_t FORCE AUTHID CURRENT_USER IS OBJECT (
error_code number,
error_message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_delete_messages_result_entry_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_delete_messages_result_entry_t (
error_code number,
error_message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
error_code
(optional) The error code, in case the message was not successfully deleted from the queue.
error_message
(optional) A human-readable error message associated with the error code.
DBMS_CLOUD_OCI_QUEUE_DELETE_MESSAGES_RESULT_ENTRY_TBL Type 🔗
Nested table type of dbms_cloud_oci_queue_delete_messages_result_entry_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_delete_messages_result_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_queue_delete_messages_result_entry_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_QUEUE_DELETE_MESSAGES_RESULT_T Type 🔗
The response to a DeleteMessages request. It indicates the number of server and client failures as well as an array of entries for successful and failed actions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_delete_messages_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
server_failures number,
client_failures number,
entries dbms_cloud_oci_queue_delete_messages_result_entry_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_delete_messages_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_delete_messages_result_t (
server_failures number,
client_failures number,
entries dbms_cloud_oci_queue_delete_messages_result_entry_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
server_failures
(required) The number of messages that failed to be deleted from the queue because of a server failure.
client_failures
(required) The number of messages that failed to be deleted from the queue because of a client failure such as an invalid receipt.
entries
(required) An array of items representing the result of each action. The order is guaranteed to be the same as in the `DeleteMessagesDetails` object. If a message was successfully deleted from the queue, the entry does not contain any fields. If a message failed to be deleted from the queue, the entry includes the `errorCode` and `errorMessage` fields.
DBMS_CLOUD_OCI_QUEUE_ERROR_T Type 🔗
Error Information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_error_t (
code varchar2,
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
code
(required) A short error code that defines the error, meant for programmatic parsing.
message
(required) A human-readable error string.
DBMS_CLOUD_OCI_QUEUE_MESSAGE_METADATA_T Type 🔗
Object that represents metadata for message.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_message_metadata_t FORCE AUTHID CURRENT_USER IS OBJECT (
channel_id varchar2(32767),
custom_properties json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_message_metadata_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_message_metadata_t (
channel_id varchar2,
custom_properties json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
channel_id
(required) The channel ID which specifies the channel to publish or retrieve messages.
custom_properties
(optional) Additional message properties
DBMS_CLOUD_OCI_QUEUE_GET_MESSAGE_T Type 🔗
A message consumed from a queue.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_get_message_t FORCE AUTHID CURRENT_USER IS OBJECT (
id number,
content varchar2(32767),
receipt varchar2(32767),
delivery_count number,
visible_after timestamp with time zone,
expire_after timestamp with time zone,
metadata dbms_cloud_oci_queue_message_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_get_message_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_get_message_t (
id number,
content varchar2,
receipt varchar2,
delivery_count number,
visible_after timestamp with time zone,
expire_after timestamp with time zone,
metadata dbms_cloud_oci_queue_message_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The ID of the message. This ID is only used for tracing and debugging purposes and isn't used as a parameter in any request.
content
(required) The content of the message.
receipt
(required) A receipt is a base64urlencode opaque token, uniquely representing a message. The receipt can be used to delete a message or update its visibility.
delivery_count
(required) The number of times that the message has been delivered to a consumer.
visible_after
(required) The time after which the message will be visible to other consumers, expressed in RFC 3339 timestamp format. Example: `2018-04-20T00:00:07.405Z`
expire_after
(required) The time after which the message will be automatically deleted, expressed in RFC 3339 timestamp format. Example: `2018-04-20T00:00:07.405Z`
metadata
(optional)
DBMS_CLOUD_OCI_QUEUE_GET_MESSAGE_TBL Type 🔗
Nested table type of dbms_cloud_oci_queue_get_message_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_get_message_tbl FORCE IS TABLE OF (dbms_cloud_oci_queue_get_message_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_QUEUE_GET_MESSAGES_T Type 🔗
A list of messages from a queue.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_get_messages_t FORCE AUTHID CURRENT_USER IS OBJECT (
messages dbms_cloud_oci_queue_get_message_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_get_messages_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_get_messages_t (
messages dbms_cloud_oci_queue_get_message_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
messages
(required) List of messages from a queue.
DBMS_CLOUD_OCI_QUEUE_PURGE_QUEUE_DETAILS_T Type 🔗
Purge parameters.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_purge_queue_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
purge_type varchar2(32767),
channel_ids dbms_cloud_oci_queue_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_purge_queue_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_purge_queue_details_t (
purge_type varchar2,
channel_ids dbms_cloud_oci_queue_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
purge_type
(required) Type of the purge to perform: - NORMAL - purge only the normal queue - DLQ - purge only the dead letter queue - BOTH - purge both the normal queue and the dead letter queue
Allowed values are: 'NORMAL', 'DLQ', 'BOTH'
channel_ids
(optional) Optional parameter to specify the destination of purge operation. If the channel ID is specified, the purge operation will delete all the messages in the specific channels. If the channel ID is not specified, the purge operation will delete all the messages in the queue and in the child channels.
DBMS_CLOUD_OCI_QUEUE_PUT_MESSAGE_T Type 🔗
A message that has been published to a queue.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_put_message_t FORCE AUTHID CURRENT_USER IS OBJECT (
id number,
expire_after timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_put_message_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_put_message_t (
id number,
expire_after timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The ID of the message.
expire_after
(optional) The time after which the message will be automatically deleted, expressed in RFC 3339 timestamp format. Example: `2018-04-20T00:00:07.405Z`
DBMS_CLOUD_OCI_QUEUE_PUT_MESSAGE_TBL Type 🔗
Nested table type of dbms_cloud_oci_queue_put_message_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_put_message_tbl FORCE IS TABLE OF (dbms_cloud_oci_queue_put_message_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_QUEUE_PUT_MESSAGES_T Type 🔗
A list of the messages published to a queue.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_put_messages_t FORCE AUTHID CURRENT_USER IS OBJECT (
messages dbms_cloud_oci_queue_put_message_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_put_messages_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_put_messages_t (
messages dbms_cloud_oci_queue_put_message_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
messages
(required) The messages that have been published to a queue.
DBMS_CLOUD_OCI_QUEUE_PUT_MESSAGES_DETAILS_ENTRY_T Type 🔗
Object that represents a message to publish into a queue.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_put_messages_details_entry_t FORCE AUTHID CURRENT_USER IS OBJECT (
content varchar2(32767),
metadata dbms_cloud_oci_queue_message_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_put_messages_details_entry_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_put_messages_details_entry_t (
content varchar2,
metadata dbms_cloud_oci_queue_message_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
content
(required) The content of the message
metadata
(optional)
DBMS_CLOUD_OCI_QUEUE_PUT_MESSAGES_DETAILS_ENTRY_TBL Type 🔗
Nested table type of dbms_cloud_oci_queue_put_messages_details_entry_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_put_messages_details_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_queue_put_messages_details_entry_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_QUEUE_PUT_MESSAGES_DETAILS_T Type 🔗
The details of a PutMessages request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_put_messages_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
messages dbms_cloud_oci_queue_put_messages_details_entry_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_put_messages_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_put_messages_details_t (
messages dbms_cloud_oci_queue_put_messages_details_entry_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
messages
(required) The array of messages to put into a queue.
DBMS_CLOUD_OCI_QUEUE_QUEUE_T Type 🔗
A detailed representation of a queue and its configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_queue_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
messages_endpoint varchar2(32767),
retention_in_seconds number,
visibility_in_seconds number,
timeout_in_seconds number,
dead_letter_queue_delivery_count number,
custom_encryption_key_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
channel_consumption_limit number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_queue_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_queue_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
messages_endpoint varchar2,
retention_in_seconds number,
visibility_in_seconds number,
timeout_in_seconds number,
dead_letter_queue_delivery_count number,
custom_encryption_key_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
channel_consumption_limit number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) A unique identifier for the queue that is immutable on creation.
display_name
(optional) A user-friendly name for the queue. Does not have to be unique, and it's changeable. Avoid entering confidential information.
compartment_id
(required) The OCID of the compartment containing the queue.
time_created
(required) The time that the queue was created, expressed in RFC 3339 timestamp format. Example: `2018-04-20T00:00:07.405Z`
time_updated
(required) The time that the queue was updated, expressed in RFC 3339 timestamp format. Example: `2018-04-20T00:00:07.405Z`
(optional) Any additional details about the current state of the queue.
messages_endpoint
(required) The endpoint to use to consume or publish messages in the queue.
retention_in_seconds
(required) The retention period of the messages in the queue, in seconds.
visibility_in_seconds
(required) The default visibility timeout of the messages consumed from the queue, in seconds.
timeout_in_seconds
(required) The default polling timeout of the messages in the queue, in seconds.
dead_letter_queue_delivery_count
(required) The number of times a message can be delivered to a consumer before being moved to the dead letter queue. A value of 0 indicates that the DLQ is not used.
custom_encryption_key_id
(optional) The OCID of the custom encryption key to be used to encrypt messages content.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
channel_consumption_limit
(optional) The percentage of allocated queue resources that can be consumed by a single channel. For example, if a queue has a storage limit of 2Gb, and a single channel consumption limit is 0.1 (10%), that means data size of a single channel can't exceed 200Mb. Consumption limit of 100% (default) means that a single channel can consume up-to all allocated queue's resources.
DBMS_CLOUD_OCI_QUEUE_QUEUE_SUMMARY_T Type 🔗
Summary of the queue.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_queue_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
messages_endpoint varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_queue_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_queue_summary_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
messages_endpoint varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) A unique identifier for the queue that is immutable on creation.
display_name
(optional) A user-friendly name for the queue. Does not have to be unique, and it's changeable. Avoid entering confidential information.
compartment_id
(required) The OCID of the compartment containing the queue.
time_created
(required) The time that the queue was created, expressed in RFC 3339 timestamp format. Example: `2018-04-20T00:00:07.405Z`
time_updated
(required) The time that the queue was updated, expressed in RFC 3339 timestamp format. Example: `2018-04-20T00:00:07.405Z`
lifecycle_state
(required) The current state of the queue.
lifecycle_details
(optional) Any additional details about the current state of the queue.
messages_endpoint
(required) The endpoint to use to consume or publish messages in the queue.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_QUEUE_QUEUE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_queue_queue_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_queue_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_queue_queue_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_QUEUE_QUEUE_COLLECTION_T Type 🔗
Results of a queue search. Contains both QueueSummary items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_queue_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_queue_queue_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_queue_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_queue_collection_t (
items dbms_cloud_oci_queue_queue_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of queues.
DBMS_CLOUD_OCI_QUEUE_STATS_T Type 🔗
The stats for a queue or a dead letter queue.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_stats_t FORCE AUTHID CURRENT_USER IS OBJECT (
visible_messages number,
in_flight_messages number,
size_in_bytes number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_stats_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_stats_t (
visible_messages number,
in_flight_messages number,
size_in_bytes number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
visible_messages
(required) The approximate number of visible messages (available for delivery) currently in the queue.
in_flight_messages
(required) The approximate number of messages delivered to a consumer but not yet deleted and so unavailable for re-delivery.
size_in_bytes
(required) The approximate size of the queue in bytes. Sum of the size of visible and in-flight messages.
DBMS_CLOUD_OCI_QUEUE_QUEUE_STATS_T Type 🔗
The stats for a queue and its dead letter queue. If channelId is specified in request field, it will return channel specific stats response.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_queue_stats_t FORCE AUTHID CURRENT_USER IS OBJECT (
queue dbms_cloud_oci_queue_stats_t,
dlq dbms_cloud_oci_queue_stats_t,
channel_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_queue_stats_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_queue_stats_t (
queue dbms_cloud_oci_queue_stats_t,
dlq dbms_cloud_oci_queue_stats_t,
channel_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
queue
(required)
dlq
(required)
channel_id
(optional) If channelId is presented in GetStats call, the channel id will be returned in the GetStats response.
DBMS_CLOUD_OCI_QUEUE_UPDATE_MESSAGE_DETAILS_T Type 🔗
Updates the visibility of a message
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_update_message_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
visibility_in_seconds number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_update_message_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_update_message_details_t (
visibility_in_seconds number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
visibility_in_seconds
(required) The new visibility of the message relative to the current time (as-per the clock of the server receiving the request).
DBMS_CLOUD_OCI_QUEUE_UPDATE_MESSAGES_DETAILS_ENTRY_T Type 🔗
Object that represents a message to update in a queue.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_update_messages_details_entry_t FORCE AUTHID CURRENT_USER IS OBJECT (
receipt varchar2(32767),
visibility_in_seconds number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_update_messages_details_entry_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_update_messages_details_entry_t (
receipt varchar2,
visibility_in_seconds number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
receipt
(required) The receipt of the message to update.
visibility_in_seconds
(required) The new visibility of the message relative to the current time (as-per the clock of the server receiving the request).
DBMS_CLOUD_OCI_QUEUE_UPDATE_MESSAGES_DETAILS_ENTRY_TBL Type 🔗
Nested table type of dbms_cloud_oci_queue_update_messages_details_entry_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_update_messages_details_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_queue_update_messages_details_entry_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_QUEUE_UPDATE_MESSAGES_DETAILS_T Type 🔗
The details of an UpdateMessages request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_update_messages_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
entries dbms_cloud_oci_queue_update_messages_details_entry_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_update_messages_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_update_messages_details_t (
entries dbms_cloud_oci_queue_update_messages_details_entry_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
entries
(required) The array of messages to update in a queue.
DBMS_CLOUD_OCI_QUEUE_UPDATE_MESSAGES_RESULT_ENTRY_T Type 🔗
Represents the result of a UpdateMessages request, whether it was successful or not. If a message was successfully updated in the queue, the entry includes the `id` and `visibleAfter` fields. If a message failed to be updated in the queue, the entry includes the `errorCode` and `errorMessage` fields.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_update_messages_result_entry_t FORCE AUTHID CURRENT_USER IS OBJECT (
id number,
visible_after timestamp with time zone,
error_code number,
error_message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_update_messages_result_entry_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_update_messages_result_entry_t (
id number,
visible_after timestamp with time zone,
error_code number,
error_message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(optional) The ID of the message that's been updated.
visible_after
(optional) The time after which the message will be visible to other consumers, expressed in RFC 3339 timestamp format. Example: `2018-04-20T00:00:07.405Z`
error_code
(optional) The error code, in case the message was not successfully updated in the queue.
error_message
(optional) A human-readable error message associated with the error code.
DBMS_CLOUD_OCI_QUEUE_UPDATE_MESSAGES_RESULT_ENTRY_TBL Type 🔗
Nested table type of dbms_cloud_oci_queue_update_messages_result_entry_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_update_messages_result_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_queue_update_messages_result_entry_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_QUEUE_UPDATE_MESSAGES_RESULT_T Type 🔗
The response to a UpdateMessages request. It indicates the number of server and client failures as well as an array of entries for successful and failed actions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_update_messages_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
server_failures number,
client_failures number,
entries dbms_cloud_oci_queue_update_messages_result_entry_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_update_messages_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_update_messages_result_t (
server_failures number,
client_failures number,
entries dbms_cloud_oci_queue_update_messages_result_entry_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
server_failures
(required) The number of messages that failed to be updated in the queue because of a server failure.
client_failures
(required) The number of messages that failed to be updated in the queue because of a client failure such as an invalid receipt or invalid `visibilityInSeconds`.
entries
(required) An array of items representing the result of each action. The order is guaranteed to be the same as in the `UpdateMessagesDetails` object. If a message was successfully updated in the queue, the entry includes the `id` and `visibleAfter` fields. If a message failed to be updated in the queue, the entry includes the `errorCode` and `errorMessage` fields.
DBMS_CLOUD_OCI_QUEUE_UPDATE_QUEUE_DETAILS_T Type 🔗
The information to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_update_queue_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
visibility_in_seconds number,
timeout_in_seconds number,
channel_consumption_limit number,
dead_letter_queue_delivery_count number,
custom_encryption_key_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_update_queue_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_update_queue_details_t (
display_name varchar2,
visibility_in_seconds number,
timeout_in_seconds number,
channel_consumption_limit number,
dead_letter_queue_delivery_count number,
custom_encryption_key_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(optional) The default visibility timeout of the messages consumed from the queue, in seconds.
timeout_in_seconds
(optional) The default polling timeout of the messages in the queue, in seconds.
channel_consumption_limit
(optional) The percentage of allocated queue resources that can be consumed by a single channel. For example, if a queue has a storage limit of 2Gb, and a single channel consumption limit is 0.1 (10%), that means data size of a single channel can't exceed 200Mb. Consumption limit of 100% (default) means that a single channel can consume up-to all allocated queue's resources.
dead_letter_queue_delivery_count
(optional) The number of times a message can be delivered to a consumer before being moved to the dead letter queue. A value of 0 indicates that the DLQ is not used. Changing that value to a lower threshold does not retroactively move in-flight messages in the dead letter queue.
custom_encryption_key_id
(optional) The OCID of the custom encryption key to be used to encrypt messages content. A string with a length of 0 means the custom key should be removed from queue.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_QUEUE_UPDATED_MESSAGE_T Type 🔗
An updated message with the new visibility.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_updated_message_t FORCE AUTHID CURRENT_USER IS OBJECT (
id number,
visible_after timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_updated_message_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_updated_message_t (
id number,
visible_after timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The ID of the message that's been updated.
visible_after
(required) The time after which the message will be visible to other consumers, expressed in RFC 3339 timestamp format. Example: `2018-04-20T00:00:07.405Z`
DBMS_CLOUD_OCI_QUEUE_WORK_REQUEST_RESOURCE_T Type 🔗
A resource created or operated on by a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_work_request_resource_t FORCE AUTHID CURRENT_USER IS OBJECT (
entity_type varchar2(32767),
action_type varchar2(32767),
identifier varchar2(32767),
entity_uri varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_work_request_resource_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_work_request_resource_t (
entity_type varchar2,
action_type varchar2,
identifier varchar2,
entity_uri varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
entity_type
(required) The resource type the work request affects.
action_type
(required) The way in which this resource is affected by the work tracked in the work request. A resource being created, updated, or deleted will remain in the IN_PROGRESS state until work is complete for that resource at which point it will transition to CREATED, UPDATED, or DELETED, respectively.
(required) The identifier of the resource the work request affects.
entity_uri
(optional) The URI path that the user can do a GET on to access the resource metadata
DBMS_CLOUD_OCI_QUEUE_WORK_REQUEST_RESOURCE_TBL Type 🔗
Nested table type of dbms_cloud_oci_queue_work_request_resource_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_queue_work_request_resource_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_QUEUE_WORK_REQUEST_T Type 🔗
A description of workrequest status
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_work_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
operation_type varchar2(32767),
status varchar2(32767),
id varchar2(32767),
compartment_id varchar2(32767),
resources dbms_cloud_oci_queue_work_request_resource_tbl,
percent_complete number,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_work_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_work_request_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
resources dbms_cloud_oci_queue_work_request_resource_tbl,
percent_complete number,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(required) The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request affects multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used
resources
(required) The resources affected by this work request.
percent_complete
(required) Percentage of the request completed.
time_accepted
(required) The date and time the request was created, as described in RFC 3339, section 14.29.
time_started
(optional) The date and time the request was started, as described in RFC 3339, section 14.29.
time_finished
(optional) The date and time the object was finished, as described in RFC 3339.
DBMS_CLOUD_OCI_QUEUE_WORK_REQUEST_ERROR_T Type 🔗
An error encountered while executing a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_work_request_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
l_timestamp timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_work_request_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_work_request_error_t (
code varchar2,
message varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
code
(required) A machine-usable code for the error that occured. Error codes are listed on (https://docs.cloud.oracle.com/Content/API/References/apierrors.htm)
message
(required) A human readable description of the issue encountered.
l_timestamp
(required) The time the error occured. An RFC 3339 formatted datetime string.
DBMS_CLOUD_OCI_QUEUE_WORK_REQUEST_ERROR_TBL Type 🔗
Nested table type of dbms_cloud_oci_queue_work_request_error_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_queue_work_request_error_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_QUEUE_WORK_REQUEST_ERROR_COLLECTION_T Type 🔗
Results of a workRequestError search. Contains both WorkRequestError items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_work_request_error_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_queue_work_request_error_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_work_request_error_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_work_request_error_collection_t (
items dbms_cloud_oci_queue_work_request_error_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of workRequestError objects.
DBMS_CLOUD_OCI_QUEUE_WORK_REQUEST_LOG_ENTRY_T Type 🔗
A log message from the execution of a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_work_request_log_entry_t FORCE AUTHID CURRENT_USER IS OBJECT (
message varchar2(32767),
l_timestamp timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_work_request_log_entry_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_work_request_log_entry_t (
message varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
message
(required) Human-readable log message.
l_timestamp
(required) The time the log message was written. An RFC 3339 formatted datetime string
DBMS_CLOUD_OCI_QUEUE_WORK_REQUEST_LOG_ENTRY_TBL Type 🔗
Nested table type of dbms_cloud_oci_queue_work_request_log_entry_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_work_request_log_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_queue_work_request_log_entry_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_QUEUE_WORK_REQUEST_LOG_ENTRY_COLLECTION_T Type 🔗
Results of a workRequestLog search. Contains both workRequestLog items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_work_request_log_entry_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_queue_work_request_log_entry_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_work_request_log_entry_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_work_request_log_entry_collection_t (
items dbms_cloud_oci_queue_work_request_log_entry_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of workRequestLogEntries.
DBMS_CLOUD_OCI_QUEUE_WORK_REQUEST_SUMMARY_T Type 🔗
A summary of the status of a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_work_request_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
operation_type varchar2(32767),
status varchar2(32767),
id varchar2(32767),
compartment_id varchar2(32767),
resources dbms_cloud_oci_queue_work_request_resource_tbl,
percent_complete number,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_work_request_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_work_request_summary_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
resources dbms_cloud_oci_queue_work_request_resource_tbl,
percent_complete number,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(required) The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request affects multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used
resources
(required) The resources affected by this work request.
percent_complete
(required) Percentage of the request completed.
time_accepted
(required) The date and time the request was created, as described in RFC 3339, section 14.29.
time_started
(optional) The date and time the request was started, as described in RFC 3339, section 14.29.
time_finished
(optional) The date and time the object was finished, as described in RFC 3339.
DBMS_CLOUD_OCI_QUEUE_WORK_REQUEST_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_queue_work_request_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_queue_work_request_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_QUEUE_WORK_REQUEST_SUMMARY_COLLECTION_T Type 🔗
Results of a workRequest search. Contains both WorkRequest items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_queue_work_request_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_queue_work_request_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_work_request_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_queue_work_request_summary_collection_t (
items dbms_cloud_oci_queue_work_request_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;