Redis Common Types
DBMS_CLOUD_OCI_REDIS_VARCHAR2_TBL Type
Nested table type of varchar2(32767).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_REDIS_CHANGE_REDIS_CLUSTER_COMPARTMENT_DETAILS_T Type
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_change_redis_cluster_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_change_redis_cluster_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_change_redis_cluster_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The OCID of the compartment into which the Redis cluster should be moved. |
DBMS_CLOUD_OCI_REDIS_CREATE_REDIS_CLUSTER_DETAILS_T Type
The configuration details for a new Redis cluster. A Redis cluster is a memory-based storage solution. For more information, see OCI Caching Service with Redis.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_create_redis_cluster_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
compartment_id varchar2(32767),
node_count number,
software_version varchar2(32767),
node_memory_in_g_bs number,
subnet_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_create_redis_cluster_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_create_redis_cluster_details_t (
display_name varchar2,
compartment_id varchar2,
node_count number,
software_version varchar2,
node_memory_in_g_bs number,
subnet_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. |
|
(required) The OCID of the compartment that contains the Redis cluster. |
|
(required) The number of nodes in the Redis cluster. |
|
(required) The Redis version that the cluster is running. |
|
(required) The amount of memory allocated to the Redis cluster's nodes, in gigabytes. |
|
(required) The OCID of the Redis cluster's subnet. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_REDIS_ERROR_T Type
Specifies details for an error.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_error_t (
code varchar2,
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) A machine-usable code for the error that occured. |
|
(required) A human-readable error string for the error that occured. |
DBMS_CLOUD_OCI_REDIS_NODE_T Type
The details of each node in the Redis cluster.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_node_t FORCE AUTHID CURRENT_USER IS OBJECT (
private_endpoint_fqdn varchar2(32767),
private_endpoint_ip_address varchar2(32767),
display_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_node_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_node_t (
private_endpoint_fqdn varchar2,
private_endpoint_ip_address varchar2,
display_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The fully qualified domain name (FQDN) of the API endpoint to access a specific node. |
|
(required) The private IP address of the API endpoint to access a specific node. |
|
(required) A user-friendly name of a Redis cluster node. |
DBMS_CLOUD_OCI_REDIS_NODE_TBL Type
Nested table type of dbms_cloud_oci_redis_node_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_node_tbl FORCE IS TABLE OF (dbms_cloud_oci_redis_node_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_REDIS_NODE_COLLECTION_T Type
The collection of Redis cluster nodes.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_node_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_redis_node_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_node_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_node_collection_t (
items dbms_cloud_oci_redis_node_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Collection of node objects. |
DBMS_CLOUD_OCI_REDIS_REDIS_CLUSTER_T Type
A Redis cluster is a memory-based storage solution. For more information, see OCI Caching Service with Redis.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_redis_cluster_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
node_count number,
node_memory_in_g_bs number,
primary_fqdn varchar2(32767),
primary_endpoint_ip_address varchar2(32767),
replicas_fqdn varchar2(32767),
replicas_endpoint_ip_address varchar2(32767),
software_version varchar2(32767),
subnet_id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
node_collection dbms_cloud_oci_redis_node_collection_t,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_redis_cluster_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_redis_cluster_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
lifecycle_state varchar2,
lifecycle_details varchar2,
node_count number,
node_memory_in_g_bs number,
primary_fqdn varchar2,
primary_endpoint_ip_address varchar2,
replicas_fqdn varchar2,
replicas_endpoint_ip_address varchar2,
software_version varchar2,
subnet_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
node_collection dbms_cloud_oci_redis_node_collection_t,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The OCID of the Redis cluster. |
|
(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. |
|
(required) The OCID of the compartment that contains the Redis cluster. |
|
(optional) The current state of the Redis cluster. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) A message describing the current state in more detail. For example, the message might provide actionable information for a resource in `FAILED` state. |
|
(required) The number of nodes in the Redis cluster. |
|
(required) The amount of memory allocated to the Redis cluster's nodes, in gigabytes. |
|
(required) The fully qualified domain name (FQDN) of the API endpoint for the Redis cluster's primary node. |
|
(required) The private IP address of the API endpoint for the Redis cluster's primary node. |
|
(required) The fully qualified domain name (FQDN) of the API endpoint for the Redis cluster's replica nodes. |
|
(required) The private IP address of the API endpoint for the Redis cluster's replica nodes. |
|
(required) The Redis version that the cluster is running. Allowed values are: 'V7_0_5' |
|
(required) The OCID of the Redis cluster's subnet. |
|
(optional) The date and time the Redis cluster was created. An RFC3339 formatted datetime string. |
|
(optional) The date and time the Redis cluster was updated. An RFC3339 formatted datetime string. |
|
(required) |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_REDIS_REDIS_CLUSTER_SUMMARY_T Type
Summary of information about a Redis cluster. A Redis cluster is a memory-based storage solution. For more information, see OCI Caching Service with Redis.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_redis_cluster_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
node_count number,
node_memory_in_g_bs number,
primary_fqdn varchar2(32767),
primary_endpoint_ip_address varchar2(32767),
replicas_fqdn varchar2(32767),
replicas_endpoint_ip_address varchar2(32767),
software_version varchar2(32767),
subnet_id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_redis_cluster_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_redis_cluster_summary_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
lifecycle_state varchar2,
lifecycle_details varchar2,
node_count number,
node_memory_in_g_bs number,
primary_fqdn varchar2,
primary_endpoint_ip_address varchar2,
replicas_fqdn varchar2,
replicas_endpoint_ip_address varchar2,
software_version varchar2,
subnet_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The OCID of the Redis cluster. |
|
(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. |
|
(required) The OCID of the compartment that contains the Redis cluster. |
|
(optional) The current state of the Redis cluster. |
|
(optional) A message describing the current state in more detail. For example, the message might provide actionable information for a resource in `FAILED` state. |
|
(required) The number of nodes in the Redis cluster. |
|
(required) The amount of memory allocated to the Redis cluster's nodes, in gigabytes. |
|
(required) The fully qualified domain name (FQDN) of the API endpoint for the Redis cluster's primary node. |
|
(required) The private IP address of the API endpoint for the Redis cluster's primary node. |
|
(required) The fully qualified domain name (FQDN) of the API endpoint for the Redis cluster's replica nodes. |
|
(required) The private IP address of the API endpoint for the Redis cluster's replica nodes. |
|
(required) The Redis version that the cluster is running. |
|
(required) The OCID of the Redis cluster's subnet. |
|
(optional) The date and time the Redis cluster was created. An RFC3339 formatted datetime string. |
|
(optional) The date and time the Redis cluster was updated. An RFC3339 formatted datetime string. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_REDIS_REDIS_CLUSTER_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_redis_redis_cluster_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_redis_cluster_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_redis_redis_cluster_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_REDIS_REDIS_CLUSTER_COLLECTION_T Type
A list of Redis clusters that match filter criteria, if any. A Redis cluster is a memory-based storage solution. For more information, see OCI Caching Service with Redis.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_redis_cluster_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_redis_redis_cluster_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_redis_cluster_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_redis_cluster_collection_t (
items dbms_cloud_oci_redis_redis_cluster_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The list of Redis clusters. |
DBMS_CLOUD_OCI_REDIS_UPDATE_REDIS_CLUSTER_DETAILS_T Type
The configuration to update for an existing Redis cluster.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_update_redis_cluster_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
node_count number,
node_memory_in_g_bs number,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_update_redis_cluster_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_update_redis_cluster_details_t (
display_name varchar2,
node_count number,
node_memory_in_g_bs number,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. |
|
(optional) The number of nodes in the Redis cluster. |
|
(optional) The amount of memory allocated to the Redis cluster's nodes, in gigabytes. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_REDIS_WORK_REQUEST_RESOURCE_T Type
The resources that are affected by the work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_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_redis_work_request_resource_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_work_request_resource_t (
entity_type varchar2,
action_type varchar2,
identifier varchar2,
entity_uri varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The resource type the work request affects. |
|
(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. Allowed values are: 'CREATED', 'UPDATED', 'DELETED', 'IN_PROGRESS', 'RELATED', 'FAILED' |
|
(required) The OCID of the resource the work request affects. |
|
(optional) The URI path that you can use for a GET to access the resource metadata |
DBMS_CLOUD_OCI_REDIS_WORK_REQUEST_RESOURCE_TBL Type
Nested table type of dbms_cloud_oci_redis_work_request_resource_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_redis_work_request_resource_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_REDIS_WORK_REQUEST_T Type
An asynchronous work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_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_redis_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_redis_work_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_work_request_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
resources dbms_cloud_oci_redis_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;
Fields
Field | Description |
---|---|
|
(required) The type of operation that spawned the work request. Allowed values are: 'CREATE_REDIS_CLUSTER', 'UPDATE_REDIS_CLUSTER', 'DELETE_REDIS_CLUSTER', 'MOVE_REDIS_CLUSTER', 'FAILOVER_REDIS_CLUSTER', 'CREATE_REDIS_CONFIG_SET', 'UPDATE_REDIS_CONFIG_SET', 'DELETE_REDIS_CONFIG_SET', 'MOVE_REDIS_CONFIG_SET' |
|
(required) The status of current work request. Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', 'NEEDS_ATTENTION', 'FAILED', 'SUCCEEDED', 'CANCELING', 'CANCELED' |
|
(required) The OCID of the work request. |
|
(required) The OCID of the compartment that contains the work request. |
|
(required) The resources that are affected by the work request. |
|
(required) The percentage complete of the operation tracked by the work request. |
|
(required) The date and time the work request was created, in the format defined by RFC 3339. |
|
(optional) The date and time the work request was started, in the format defined by RFC 3339. |
|
(optional) The date and time the work request completed, in the format defined by RFC 3339. |
DBMS_CLOUD_OCI_REDIS_WORK_REQUEST_ERROR_T Type
An error encountered while executing an operation that is tracked by a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_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_redis_work_request_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_work_request_error_t (
code varchar2,
message varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) A machine-usable code for the error that occured. Error codes are listed at API Errors. |
|
(required) A human-readable error string for the error that occured. |
|
(required) The time and time the error occured. |
DBMS_CLOUD_OCI_REDIS_WORK_REQUEST_ERROR_TBL Type
Nested table type of dbms_cloud_oci_redis_work_request_error_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_redis_work_request_error_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_REDIS_WORK_REQUEST_ERROR_COLLECTION_T Type
A list of errors for a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_work_request_error_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_redis_work_request_error_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_work_request_error_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_work_request_error_collection_t (
items dbms_cloud_oci_redis_work_request_error_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) A collection of work request errors. |
DBMS_CLOUD_OCI_REDIS_WORK_REQUEST_LOG_ENTRY_T Type
A log message from executing an operation that is tracked by a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_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_redis_work_request_log_entry_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_work_request_log_entry_t (
message varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) A human-readable log message. |
|
(required) The date and time the log message was written. |
DBMS_CLOUD_OCI_REDIS_WORK_REQUEST_LOG_ENTRY_TBL Type
Nested table type of dbms_cloud_oci_redis_work_request_log_entry_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_work_request_log_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_redis_work_request_log_entry_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_REDIS_WORK_REQUEST_LOG_ENTRY_COLLECTION_T Type
A list of logs for the specified work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_work_request_log_entry_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_redis_work_request_log_entry_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_work_request_log_entry_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_work_request_log_entry_collection_t (
items dbms_cloud_oci_redis_work_request_log_entry_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) A collection of work request logs. |
DBMS_CLOUD_OCI_REDIS_WORK_REQUEST_SUMMARY_T Type
A description of the work request status.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_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_redis_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,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_work_request_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_work_request_summary_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
resources dbms_cloud_oci_redis_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,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The type of operation that spawned the work request. Allowed values are: 'CREATE_REDIS_CLUSTER', 'UPDATE_REDIS_CLUSTER', 'DELETE_REDIS_CLUSTER', 'MOVE_REDIS_CLUSTER', 'FAILOVER_REDIS_CLUSTER', 'CREATE_REDIS_CONFIG_SET', 'UPDATE_REDIS_CONFIG_SET', 'DELETE_REDIS_CONFIG_SET', 'MOVE_REDIS_CONFIG_SET' |
|
(required) The status of current work request. Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', 'NEEDS_ATTENTION', 'FAILED', 'SUCCEEDED', 'CANCELING', 'CANCELED' |
|
(required) The OCID of the work request. |
|
(required) The OCID of the compartment that contains the work request. |
|
(required) The resources affected by this work request. |
|
(required) Percentage of the request completed. |
|
(required) The date and time the work request was created, in the format defined by RFC 3339. |
|
(optional) The date and time the work request was started, in the format defined by RFC 3339. |
|
(optional) The date and time the work request completed, in the format defined by RFC 3339. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_REDIS_WORK_REQUEST_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_redis_work_request_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_redis_work_request_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_REDIS_WORK_REQUEST_SUMMARY_COLLECTION_T Type
A list of work requests.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_redis_work_request_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_redis_work_request_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_work_request_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_redis_work_request_summary_collection_t (
items dbms_cloud_oci_redis_work_request_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) A collection of work requests. |