DBMS_CLOUD_OCI_CONTAINER_INSTANCES_VARCHAR2_TBL Type 🔗
Nested table type of varchar2(32767).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_IMAGE_PULL_SECRET_T Type 🔗
The image pull secrets for accessing private registry to pull images for containers
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_image_pull_secret_t FORCE AUTHID CURRENT_USER IS OBJECT (
secret_type varchar2(32767),
registry_endpoint varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_image_pull_secret_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_image_pull_secret_t (
secret_type varchar2,
registry_endpoint varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
secret_type
(required) The type of ImagePullSecret.
Allowed values are: 'BASIC', 'VAULT'
registry_endpoint
(required) The registry endpoint of the container image.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_BASIC_IMAGE_PULL_SECRET_T Type 🔗
A BasicImagePullSecret is a ImagePullSecret which accepts username and password as credentials information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_basic_image_pull_secret_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_container_instances_image_pull_secret_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_basic_image_pull_secret_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_basic_image_pull_secret_t (
secret_type varchar2,
registry_endpoint varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_container_instances_basic_image_pull_secret_t is a subtype of the dbms_cloud_oci_container_instances_image_pull_secret_t type.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CHANGE_CONTAINER_INSTANCE_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_change_container_instance_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_change_container_instance_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_change_container_instance_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the container instance to.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_VOLUME_MOUNT_T Type 🔗
Define the mapping from volume to a mount path in container.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_volume_mount_t FORCE AUTHID CURRENT_USER IS OBJECT (
mount_path varchar2(32767),
volume_name varchar2(32767),
sub_path varchar2(32767),
is_read_only number,
partition number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_volume_mount_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_volume_mount_t (
mount_path varchar2,
volume_name varchar2,
sub_path varchar2,
is_read_only number,
partition number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
mount_path
(required) Describes the volume access path.
volume_name
(required) The name of the volume.
sub_path
(optional) A sub-path inside the referenced volume.
is_read_only
(optional) Whether the volume was mounted in read-only mode. By default, the volume is mounted with write access.
partition
(optional) If there is more than one partition in the volume, reference this number of partitions. Here is an example: Number Start End Size File system Name Flags 1 1049kB 106MB 105MB fat16 EFI System Partition boot, esp 2 106MB 1180MB 1074MB xfs 3 1180MB 50.0GB 48.8GB lvm
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_HEALTH_CHECK_T Type 🔗
Type of container health check which could be either HTTP, TCP, or Command.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_health_check_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
health_check_type varchar2(32767),
initial_delay_in_seconds number,
interval_in_seconds number,
failure_threshold number,
success_threshold number,
timeout_in_seconds number,
status varchar2(32767),
status_details varchar2(32767),
failure_action varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_health_check_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_health_check_t (
name varchar2,
health_check_type varchar2,
initial_delay_in_seconds number,
interval_in_seconds number,
failure_threshold number,
success_threshold number,
timeout_in_seconds number,
status varchar2,
status_details varchar2,
failure_action varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
name
(optional) Health check name.
health_check_type
(required) Container health check type.
Allowed values are: 'HTTP', 'TCP', 'COMMAND'
initial_delay_in_seconds
(optional) The initial delay in seconds before start checking container health status.
interval_in_seconds
(optional) Number of seconds between two consecutive runs for checking container health.
failure_threshold
(optional) Number of consecutive failures at which we consider the check failed.
success_threshold
(optional) Number of consecutive successes at which we consider the check succeeded again after it was in failure state.
timeout_in_seconds
(optional) Length of waiting time in seconds before marking health check failed.
(optional) A message describing the current status in more details.
failure_action
(optional) The action will be triggered when the container health check fails. There are two types of action: KILL or NONE. The default action is KILL. If failure action is KILL, the container will be subject to the container restart policy.
Allowed values are: 'KILL', 'NONE'
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_RESOURCE_CONFIG_T Type 🔗
The resource configuration for a container. The resource configuration determines the amount of resources allocated to the container and the maximum allowed resources for a container.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_resource_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
vcpus_limit number,
memory_limit_in_g_bs number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_resource_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_resource_config_t (
vcpus_limit number,
memory_limit_in_g_bs number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
vcpus_limit
(optional) The maximum amount of CPUs that can be consumed by the container's process. If you do not set a value, then the process may use all available CPU resources on the container instance. CPU usage is defined in terms of logical CPUs. This means that the maximum possible value on an E3 ContainerInstance with 1 OCPU is 2.0.
memory_limit_in_g_bs
(optional) The maximum amount of memory that can be consumed by the container's process. If you do not set a value, then the process may use all available memory on the instance.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_SECURITY_CONTEXT_T Type 🔗
Security context for container.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_security_context_t FORCE AUTHID CURRENT_USER IS OBJECT (
security_context_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_security_context_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_security_context_t (
security_context_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
security_context_type
(optional) The type of security context
Allowed values are: 'LINUX'
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_VOLUME_MOUNT_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_volume_mount_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_volume_mount_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_volume_mount_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_HEALTH_CHECK_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_container_health_check_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_health_check_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_container_health_check_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_T Type 🔗
A single container on a container instance. If you delete a container, the record remains visible for a short period of time before being permanently removed.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
availability_domain varchar2(32767),
fault_domain varchar2(32767),
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
exit_code number,
time_terminated timestamp with time zone,
time_created timestamp with time zone,
time_updated timestamp with time zone,
container_instance_id varchar2(32767),
image_url varchar2(32767),
command dbms_cloud_oci_container_instances_varchar2_tbl,
arguments dbms_cloud_oci_container_instances_varchar2_tbl,
working_directory varchar2(32767),
environment_variables json_element_t,
volume_mounts dbms_cloud_oci_container_instances_volume_mount_tbl,
health_checks dbms_cloud_oci_container_instances_container_health_check_tbl,
is_resource_principal_disabled number,
resource_config dbms_cloud_oci_container_instances_container_resource_config_t,
container_restart_attempt_count number,
security_context dbms_cloud_oci_container_instances_security_context_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
availability_domain varchar2,
fault_domain varchar2,
lifecycle_state varchar2,
lifecycle_details varchar2,
exit_code number,
time_terminated timestamp with time zone,
time_created timestamp with time zone,
time_updated timestamp with time zone,
container_instance_id varchar2,
image_url varchar2,
command dbms_cloud_oci_container_instances_varchar2_tbl,
arguments dbms_cloud_oci_container_instances_varchar2_tbl,
working_directory varchar2,
environment_variables json_element_t,
volume_mounts dbms_cloud_oci_container_instances_volume_mount_tbl,
health_checks dbms_cloud_oci_container_instances_container_health_check_tbl,
is_resource_principal_disabled number,
resource_config dbms_cloud_oci_container_instances_container_resource_config_t,
container_restart_attempt_count number,
security_context dbms_cloud_oci_container_instances_security_context_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
compartment_id
(required) The OCID of the compartment that contains the container.
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\"}}`.
availability_domain
(required) The availability domain where the container instance that hosts the container runs.
fault_domain
(optional) The fault domain of the container instance that hosts the container runs.
(optional) A message that describes the current state of the container in more detail. Can be used to provide actionable information.
exit_code
(optional) The exit code of the container process when it stopped running.
time_terminated
(optional) The time when the container last deleted (terminated), in the format defined by RFC 3339.
time_created
(required) The time the container was created, in the format defined by RFC 3339.
time_updated
(optional) The time the container was updated, in the format defined by RFC 3339.
container_instance_id
(required) The OCID of the container instance that the container is running on.
image_url
(required) The container image information. Currently only supports public Docker registry. You can provide either the image name (containerImage), image name with version (containerImagev1), or complete Docker image URL `docker.io/library/containerImage:latest`. If you do not provide a registry, the registry defaults to public Docker hub `docker.io/library`. The registry used for the container image must be reachable over the VNIC of the container instance.
command
(optional) This command overrides ENTRYPOINT process of the container. If you do not specify this command, the existing ENTRYPOINT process defined in the image is the default.
arguments
(optional) A list of string arguments for the ENTRYPOINT process of the container. Many containers use an ENTRYPOINT process pointing to a shell `/bin/bash`. For those containers, you can use the argument list to specify the main command in the container process.
working_directory
(optional) The working directory within the container's filesystem for the container process. If not specified, the default working directory from the image is used.
environment_variables
(optional) A map of additional environment variables to set in the environment of the ENTRYPOINT process of the container. These variables are in addition to any variables already defined in the container's image.
volume_mounts
(optional) List of the volume mounts.
health_checks
(optional) List of container health checks
is_resource_principal_disabled
(optional) Determines if the container will have access to the container instance resource principal. This method utilizes resource principal version 2.2. For more information on how to use the exposed resource principal elements, see https://docs.oracle.com/en-us/iaas/Content/API/Concepts/sdk_authentication_methods.htm#sdk_authentication_methods_resource_principal.
resource_config
(optional)
container_restart_attempt_count
(optional) The number of container restart attempts. Depending on the restart policy, a restart might be attempted after a health check failure or a container exit.
security_context
(optional)
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_SUMMARY_T Type 🔗
Summary information about a container.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
availability_domain varchar2(32767),
fault_domain varchar2(32767),
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
container_instance_id varchar2(32767),
resource_config dbms_cloud_oci_container_instances_container_resource_config_t,
image_url varchar2(32767),
is_resource_principal_disabled number,
security_context dbms_cloud_oci_container_instances_security_context_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_summary_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
availability_domain varchar2,
fault_domain varchar2,
lifecycle_state varchar2,
lifecycle_details varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
container_instance_id varchar2,
resource_config dbms_cloud_oci_container_instances_container_resource_config_t,
image_url varchar2,
is_resource_principal_disabled number,
security_context dbms_cloud_oci_container_instances_security_context_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(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\"}}`.
availability_domain
(required) The availability domain where the container instance that hosts this container runs.
fault_domain
(optional) The fault domain where the container instance that hosts the container runs.
lifecycle_state
(required) The current state of the container.
lifecycle_details
(optional) A message that describes the current state of the container in more detail. Can be used to provide actionable information.
time_created
(required) The time the the container was created in the format defined by RFC 3339.
time_updated
(optional) The time the container was updated in the format defined by RFC 3339.
container_instance_id
(required) The OCID of the container instance on which the container is running.
resource_config
(optional)
image_url
(required) A URL identifying the image that the container runs in, such as docker.io/library/busybox:latest. If you do not provide a tag, the tag will default to latest. If no registry is provided, will default the registry to public docker hub `docker.io/library`. The registry used for container image must be reachable over the Container Instance's VNIC.
is_resource_principal_disabled
(optional) Determines whether the container will have access to the container instance resource principal. This method utilizes resource principal version 2.2. For information on how to use the exposed resource principal elements, see https://docs.oracle.com/en-us/iaas/Content/API/Concepts/sdk_authentication_methods.htm#sdk_authentication_methods_resource_principal.
security_context
(optional)
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_container_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_container_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_COLLECTION_T Type 🔗
A list of containers.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_container_instances_container_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_collection_t (
items dbms_cloud_oci_container_instances_container_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of containers.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_COMMAND_HEALTH_CHECK_T Type 🔗
Container Health Check with command type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_command_health_check_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_container_instances_container_health_check_t (
command dbms_cloud_oci_container_instances_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_command_health_check_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_command_health_check_t (
name varchar2,
health_check_type varchar2,
initial_delay_in_seconds number,
interval_in_seconds number,
failure_threshold number,
success_threshold number,
timeout_in_seconds number,
status varchar2,
status_details varchar2,
failure_action varchar2,
command dbms_cloud_oci_container_instances_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_container_instances_container_command_health_check_t is a subtype of the dbms_cloud_oci_container_instances_container_health_check_t type.
Fields
Field
Description
command
(required) The list of strings that will be simplified to a single command for checking the status of the container.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_CONFIG_FILE_T Type 🔗
The file that is mounted on a container instance through a volume mount.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_config_file_t FORCE AUTHID CURRENT_USER IS OBJECT (
file_name varchar2(32767),
data clob,
path varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_config_file_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_config_file_t (
file_name varchar2,
data clob,
path varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
file_name
(required) The name of the file. The fileName should be unique across the volume.
data
(required) The base64 encoded contents of the file. The contents are decoded to plain text before mounted as a file to a container inside container instance.
path
(optional) (Optional) Relative path for this file inside the volume mount directory. By default, the file is presented at the root of the volume mount path.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_VOLUME_T Type 🔗
A volume represents a directory with data that is accessible across multiple containers in a container instance.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_volume_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
volume_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_volume_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_volume_t (
name varchar2,
volume_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
name
(required) The name of the volume. This must be unique within a single container instance.
volume_type
(required) The type of volume.
Allowed values are: 'EMPTYDIR', 'CONFIGFILE'
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_CONFIG_FILE_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_container_config_file_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_config_file_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_container_config_file_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_CONFIG_FILE_VOLUME_T Type 🔗
The volume based on configuration files received during container creation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_config_file_volume_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_container_instances_container_volume_t (
configs dbms_cloud_oci_container_instances_container_config_file_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_config_file_volume_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_config_file_volume_t (
name varchar2,
volume_type varchar2,
configs dbms_cloud_oci_container_instances_container_config_file_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_container_instances_container_config_file_volume_t is a subtype of the dbms_cloud_oci_container_instances_container_volume_t type.
Fields
Field
Description
configs
(optional) Contains string key value pairs which can be mounted as individual files inside the container. The value needs to be base64 encoded. It is decoded to plain text before the mount.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_DNS_CONFIG_T Type 🔗
DNS settings for containers.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_dns_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
nameservers dbms_cloud_oci_container_instances_varchar2_tbl,
searches dbms_cloud_oci_container_instances_varchar2_tbl,
options dbms_cloud_oci_container_instances_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_dns_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_dns_config_t (
nameservers dbms_cloud_oci_container_instances_varchar2_tbl,
searches dbms_cloud_oci_container_instances_varchar2_tbl,
options dbms_cloud_oci_container_instances_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
nameservers
(optional) IP address of the name server..
searches
(optional) Search list for hostname lookup.
options
(optional) Options allows certain internal resolver variables to be modified.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_EMPTY_DIR_VOLUME_T Type 🔗
The empty directory volume of a container instance. You can create up to 64 EmptyDir per container instance.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_empty_dir_volume_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_container_instances_container_volume_t (
backing_store varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_empty_dir_volume_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_empty_dir_volume_t (
name varchar2,
volume_type varchar2,
backing_store varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_container_instances_container_empty_dir_volume_t is a subtype of the dbms_cloud_oci_container_instances_container_volume_t type.
Fields
Field
Description
backing_store
(optional) The volume type of the empty directory, can be either File Storage or Memory.
Allowed values are: 'EPHEMERAL_STORAGE', 'MEMORY'
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_HEALTH_CHECK_HTTP_HEADER_T Type 🔗
Container Http headers for Http health check.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_health_check_http_header_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
value varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_health_check_http_header_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_health_check_http_header_t (
name varchar2,
value varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) Container HTTP header Key.
value
(required) Container HTTP header value.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_HEALTH_CHECK_HTTP_HEADER_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_health_check_http_header_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_health_check_http_header_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_health_check_http_header_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_HTTP_HEALTH_CHECK_T Type 🔗
Container Health Check HTTP type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_http_health_check_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_container_instances_container_health_check_t (
path varchar2(32767),
port number,
headers dbms_cloud_oci_container_instances_health_check_http_header_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_http_health_check_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_http_health_check_t (
name varchar2,
health_check_type varchar2,
initial_delay_in_seconds number,
interval_in_seconds number,
failure_threshold number,
success_threshold number,
timeout_in_seconds number,
status varchar2,
status_details varchar2,
failure_action varchar2,
path varchar2,
port number,
headers dbms_cloud_oci_container_instances_health_check_http_header_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_container_instances_container_http_health_check_t is a subtype of the dbms_cloud_oci_container_instances_container_health_check_t type.
Fields
Field
Description
path
(required) Container health check HTTP path.
port
(required) Container health check HTTP port.
headers
(optional) Container health check HTTP headers.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_INSTANCE_CONTAINER_T Type 🔗
A container on a container instance.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_instance_container_t FORCE AUTHID CURRENT_USER IS OBJECT (
container_id varchar2(32767),
display_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_instance_container_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_instance_container_t (
container_id varchar2,
display_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
container_id
(required) The OCID of the container.
display_name
(optional) Display name for the Container.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_INSTANCE_SHAPE_CONFIG_T Type 🔗
The shape configuration for a container instance. The shape configuration determines the resources thats are available to the container instance and its containers.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_instance_shape_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
ocpus number,
memory_in_g_bs number,
processor_description varchar2(32767),
networking_bandwidth_in_gbps number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_instance_shape_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_instance_shape_config_t (
ocpus number,
memory_in_g_bs number,
processor_description varchar2,
networking_bandwidth_in_gbps number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
ocpus
(required) The total number of OCPUs available to the container instance.
memory_in_g_bs
(required) The total amount of memory available to the container instance, in gigabytes.
processor_description
(required) A short description of the container instance's processor (CPU).
networking_bandwidth_in_gbps
(required) The networking bandwidth available to the container instance, in gigabits per second.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_VNIC_T Type 🔗
An interface to a virtual network available to containers on a container instance.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_vnic_t FORCE AUTHID CURRENT_USER IS OBJECT (
vnic_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_vnic_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_vnic_t (
vnic_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
vnic_id
(optional) The identifier of the virtual network interface card (VNIC) over which the containers accessing this network can communicate with the larger virtual cloud network.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_VOLUME_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_container_volume_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_volume_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_container_volume_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_INSTANCE_CONTAINER_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_container_instance_container_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_instance_container_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_container_instance_container_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_VNIC_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_container_vnic_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_vnic_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_container_vnic_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_IMAGE_PULL_SECRET_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_image_pull_secret_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_image_pull_secret_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_image_pull_secret_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_INSTANCE_T Type 🔗
A container instance to host containers. If you delete a container instance, the record remains visible for a short period of time before being permanently removed.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_instance_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
availability_domain varchar2(32767),
fault_domain varchar2(32767),
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
volumes dbms_cloud_oci_container_instances_container_volume_tbl,
volume_count number,
containers dbms_cloud_oci_container_instances_container_instance_container_tbl,
container_count number,
time_created timestamp with time zone,
time_updated timestamp with time zone,
shape varchar2(32767),
shape_config dbms_cloud_oci_container_instances_container_instance_shape_config_t,
vnics dbms_cloud_oci_container_instances_container_vnic_tbl,
dns_config dbms_cloud_oci_container_instances_container_dns_config_t,
graceful_shutdown_timeout_in_seconds number,
image_pull_secrets dbms_cloud_oci_container_instances_image_pull_secret_tbl,
container_restart_policy varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_instance_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_instance_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
availability_domain varchar2,
fault_domain varchar2,
lifecycle_state varchar2,
lifecycle_details varchar2,
volumes dbms_cloud_oci_container_instances_container_volume_tbl,
volume_count number,
containers dbms_cloud_oci_container_instances_container_instance_container_tbl,
container_count number,
time_created timestamp with time zone,
time_updated timestamp with time zone,
shape varchar2,
shape_config dbms_cloud_oci_container_instances_container_instance_shape_config_t,
vnics dbms_cloud_oci_container_instances_container_vnic_tbl,
dns_config dbms_cloud_oci_container_instances_container_dns_config_t,
graceful_shutdown_timeout_in_seconds number,
image_pull_secrets dbms_cloud_oci_container_instances_image_pull_secret_tbl,
container_restart_policy varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) An OCID that cannot be changed.
display_name
(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
compartment_id
(required) The OCID of the compartment.
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\"}}`.
availability_domain
(required) The availability domain to place the container instance.
fault_domain
(optional) The fault domain to place the container instance.
lifecycle_state
(required) The current state of the container instance.
(optional) A message that describes the current state of the container in more detail. Can be used to provide actionable information.
volumes
(optional) A volume is a directory with data that is accessible across multiple containers in a container instance.
volume_count
(optional) The number of volumes that are attached to the container instance.
containers
(required) The containers on the container instance.
container_count
(required) The number of containers on the container instance.
time_created
(required) The time the container instance was created, in the format defined by RFC 3339.
time_updated
(optional) The time the container instance was updated, in the format defined by RFC 3339.
shape
(required) The shape of the container instance. The shape determines the number of OCPUs, amount of memory, and other resources that are allocated to a container instance.
shape_config
(required)
vnics
(required) The virtual networks available to the containers in the container instance.
dns_config
(optional)
graceful_shutdown_timeout_in_seconds
(optional) The amount of time that processes in a container have to gracefully end when the container must be stopped. For example, when you delete a container instance. After the timeout is reached, the processes are sent a signal to be deleted.
image_pull_secrets
(optional) The image pulls secrets so you can access private registry to pull container images.
container_restart_policy
(required) The container restart policy is applied for all containers in container instance.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_INSTANCE_SUMMARY_T Type 🔗
A set of details about a single container instance returned by list APIs.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_instance_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
availability_domain varchar2(32767),
fault_domain varchar2(32767),
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
shape varchar2(32767),
shape_config dbms_cloud_oci_container_instances_container_instance_shape_config_t,
container_count number,
graceful_shutdown_timeout_in_seconds number,
volume_count number,
container_restart_policy varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_instance_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_instance_summary_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
availability_domain varchar2,
fault_domain varchar2,
lifecycle_state varchar2,
lifecycle_details varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
shape varchar2,
shape_config dbms_cloud_oci_container_instances_container_instance_shape_config_t,
container_count number,
graceful_shutdown_timeout_in_seconds number,
volume_count number,
container_restart_policy varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) OCID that cannot be changed.
display_name
(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
compartment_id
(required) The OCID of the compartment to create the container instance in.
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\"}}`.
availability_domain
(required) The availability domain where the container instance runs.
fault_domain
(optional) The fault domain where the container instance runs.
lifecycle_state
(required) The current state of the container instance.
lifecycle_details
(optional) A message that describes the current state of the container instance in more detail. Can be used to provide actionable information.
time_created
(required) The time the container instance was created, in the format defined by RFC3339.
time_updated
(optional) The time the container instance was updated, in the format defined by RFC3339.
shape
(required) The shape of the container instance. The shape determines the resources available to the container instance.
shape_config
(required)
container_count
(required) The number of containers in the container instance.
graceful_shutdown_timeout_in_seconds
(optional) The amount of time that processes in a container have to gracefully end when the container must be stopped. For example, when you delete a container instance. After the timeout is reached, the processes are sent a signal to be deleted.
volume_count
(optional) The number of volumes that are attached to the container instance.
container_restart_policy
(required) Container Restart Policy
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_INSTANCE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_container_instance_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_instance_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_container_instance_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_INSTANCE_COLLECTION_T Type 🔗
Summary information about a list of container instances.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_instance_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_container_instances_container_instance_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_instance_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_instance_collection_t (
items dbms_cloud_oci_container_instances_container_instance_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of container instances.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_SHAPE_OCPU_OPTIONS_T Type 🔗
For a flexible shape, the number of OCPUs available for container instances that use this shape.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_shape_ocpu_options_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_min number,
l_max number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_shape_ocpu_options_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_shape_ocpu_options_t (
l_min number,
l_max number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
l_min
(required) The minimum number of OCPUs.
l_max
(required) The maximum number of OCPUs.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_SHAPE_MEMORY_OPTIONS_T Type 🔗
For a flexible shape, the amount of memory available for container instances that use this shape.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_shape_memory_options_t FORCE AUTHID CURRENT_USER IS OBJECT (
min_in_g_bs number,
max_in_g_bs number,
default_per_ocpu_in_g_bs number,
min_per_ocpu_in_g_bs number,
max_per_ocpu_in_g_bs number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_shape_memory_options_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_shape_memory_options_t (
min_in_g_bs number,
max_in_g_bs number,
default_per_ocpu_in_g_bs number,
min_per_ocpu_in_g_bs number,
max_per_ocpu_in_g_bs number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
min_in_g_bs
(required) The minimum amount of memory (GB).
max_in_g_bs
(required) The maximum amount of memory (GB).
default_per_ocpu_in_g_bs
(required) The default amount of memory per OCPU available for this shape (GB).
min_per_ocpu_in_g_bs
(required) The minimum amount of memory per OCPU available for this shape (GB).
max_per_ocpu_in_g_bs
(required) The maximum amount of memory per OCPU available for this shape (GB).
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_SHAPE_NETWORKING_BANDWIDTH_OPTIONS_T Type 🔗
For a flexible shape, the amount of networking bandwidth available for container instances that use this shape.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_shape_networking_bandwidth_options_t FORCE AUTHID CURRENT_USER IS OBJECT (
min_in_gbps number,
max_in_gbps number,
default_per_ocpu_in_gbps number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_shape_networking_bandwidth_options_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_shape_networking_bandwidth_options_t (
min_in_gbps number,
max_in_gbps number,
default_per_ocpu_in_gbps number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
min_in_gbps
(required) The minimum amount of networking bandwidth, in gigabits per second.
max_in_gbps
(required) The maximum amount of networking bandwidth, in gigabits per second.
default_per_ocpu_in_gbps
(required) The default amount of networking bandwidth per OCPU, in gigabits per second.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_INSTANCE_SHAPE_SUMMARY_T Type 🔗
Details about a shape for a container instance.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_instance_shape_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
processor_description varchar2(32767),
ocpu_options dbms_cloud_oci_container_instances_shape_ocpu_options_t,
memory_options dbms_cloud_oci_container_instances_shape_memory_options_t,
networking_bandwidth_options dbms_cloud_oci_container_instances_shape_networking_bandwidth_options_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_instance_shape_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_instance_shape_summary_t (
name varchar2,
processor_description varchar2,
ocpu_options dbms_cloud_oci_container_instances_shape_ocpu_options_t,
memory_options dbms_cloud_oci_container_instances_shape_memory_options_t,
networking_bandwidth_options dbms_cloud_oci_container_instances_shape_networking_bandwidth_options_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) The name identifying the shape.
processor_description
(required) A short description of the container instance's processor (CPU).
ocpu_options
(optional)
memory_options
(optional)
networking_bandwidth_options
(optional)
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_INSTANCE_SHAPE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_container_instance_shape_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_instance_shape_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_container_instance_shape_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_INSTANCE_SHAPE_COLLECTION_T Type 🔗
A collection of container instance shapes.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_instance_shape_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_container_instances_container_instance_shape_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_instance_shape_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_instance_shape_collection_t (
items dbms_cloud_oci_container_instances_container_instance_shape_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) A list of shapes.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CONTAINER_TCP_HEALTH_CHECK_T Type 🔗
Container Health Check with TCP type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_container_tcp_health_check_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_container_instances_container_health_check_t (
port number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_tcp_health_check_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_container_tcp_health_check_t (
name varchar2,
health_check_type varchar2,
initial_delay_in_seconds number,
interval_in_seconds number,
failure_threshold number,
success_threshold number,
timeout_in_seconds number,
status varchar2,
status_details varchar2,
failure_action varchar2,
port number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_container_instances_container_tcp_health_check_t is a subtype of the dbms_cloud_oci_container_instances_container_health_check_t type.
Fields
Field
Description
port
(required) Container health check port.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_IMAGE_PULL_SECRET_DETAILS_T Type 🔗
The image pull secrets for accessing private registry to pull images for containers
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_image_pull_secret_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
secret_type varchar2(32767),
registry_endpoint varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_image_pull_secret_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_image_pull_secret_details_t (
secret_type varchar2,
registry_endpoint varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
secret_type
(required) The type of ImagePullSecret.
Allowed values are: 'BASIC', 'VAULT'
registry_endpoint
(required) The registry endpoint of the container image.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_BASIC_IMAGE_PULL_SECRET_DETAILS_T Type 🔗
A CreateBasicImagePullSecretDetails is a ImagePullSecret which accepts username and password as credentials information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_basic_image_pull_secret_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_container_instances_create_image_pull_secret_details_t (
username varchar2(32767),
password varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_basic_image_pull_secret_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_basic_image_pull_secret_details_t (
secret_type varchar2,
registry_endpoint varchar2,
username varchar2,
password varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_container_instances_create_basic_image_pull_secret_details_t is a subtype of the dbms_cloud_oci_container_instances_create_image_pull_secret_details_t type.
Fields
Field
Description
username
(required) The username which should be used with the registry for authentication. The value is expected in base64 format.
password
(required) The password which should be used with the registry for authentication. The value is expected in base64 format.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_CONTAINER_HEALTH_CHECK_DETAILS_T Type 🔗
Container Health Check is used to check and report the status of a container.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_container_health_check_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
health_check_type varchar2(32767),
initial_delay_in_seconds number,
interval_in_seconds number,
failure_threshold number,
success_threshold number,
timeout_in_seconds number,
failure_action varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_health_check_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_health_check_details_t (
name varchar2,
health_check_type varchar2,
initial_delay_in_seconds number,
interval_in_seconds number,
failure_threshold number,
success_threshold number,
timeout_in_seconds number,
failure_action varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
name
(optional) Health check name.
health_check_type
(required) Container health check type.
Allowed values are: 'HTTP', 'TCP', 'COMMAND'
initial_delay_in_seconds
(optional) The initial delay in seconds before start checking container health status.
interval_in_seconds
(optional) Number of seconds between two consecutive runs for checking container health.
failure_threshold
(optional) Number of consecutive failures at which we consider the check failed.
success_threshold
(optional) Number of consecutive successes at which we consider the check succeeded again after it was in failure state.
timeout_in_seconds
(optional) Length of waiting time in seconds before marking health check failed.
failure_action
(optional) The action will be triggered when the container health check fails. There are two types of action: KILL or NONE. The default action is KILL. If failure action is KILL, the container will be subject to the container restart policy.
Allowed values are: 'KILL', 'NONE'
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_CONTAINER_COMMAND_HEALTH_CHECK_DETAILS_T Type 🔗
Container Health Check Command type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_container_command_health_check_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_container_instances_create_container_health_check_details_t (
command dbms_cloud_oci_container_instances_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_command_health_check_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_command_health_check_details_t (
name varchar2,
health_check_type varchar2,
initial_delay_in_seconds number,
interval_in_seconds number,
failure_threshold number,
success_threshold number,
timeout_in_seconds number,
failure_action varchar2,
command dbms_cloud_oci_container_instances_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_container_instances_create_container_command_health_check_details_t is a subtype of the dbms_cloud_oci_container_instances_create_container_health_check_details_t type.
Fields
Field
Description
command
(required) The list of strings that will be simplified to a single command for checking the status of the container.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_CONTAINER_VOLUME_DETAILS_T Type 🔗
A volume represents a directory with data that is accessible across multiple containers in a container instance.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_container_volume_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
volume_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_volume_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_volume_details_t (
name varchar2,
volume_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
name
(required) The name of the volume. This must be unique within a single container instance.
volume_type
(required) The type of volume.
Allowed values are: 'EMPTYDIR', 'CONFIGFILE'
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_CONTAINER_CONFIG_FILE_VOLUME_DETAILS_T Type 🔗
The configuration files to pass to the container using volume mounts.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_container_config_file_volume_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_container_instances_create_container_volume_details_t (
configs dbms_cloud_oci_container_instances_container_config_file_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_config_file_volume_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_config_file_volume_details_t (
name varchar2,
volume_type varchar2,
configs dbms_cloud_oci_container_instances_container_config_file_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_container_instances_create_container_config_file_volume_details_t is a subtype of the dbms_cloud_oci_container_instances_create_container_volume_details_t type.
Fields
Field
Description
configs
(optional) Contains key value pairs which can be mounted as individual files inside the container. The value needs to be base64 encoded. It is decoded to plain text before the mount.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_VOLUME_MOUNT_DETAILS_T Type 🔗
Defines the mapping from volume to a mount path in a container.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_volume_mount_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
mount_path varchar2(32767),
volume_name varchar2(32767),
sub_path varchar2(32767),
is_read_only number,
partition number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_volume_mount_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_volume_mount_details_t (
mount_path varchar2,
volume_name varchar2,
sub_path varchar2,
is_read_only number,
partition number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
mount_path
(required) The volume access path.
volume_name
(required) The name of the volume. Avoid entering confidential information.
sub_path
(optional) A subpath inside the referenced volume.
is_read_only
(optional) Whether the volume was mounted in read-only mode. By default, the volume is not read-only.
partition
(optional) If there is more than one partition in the volume, reference this number of partitions. Here is an example: Number Start End Size File system Name Flags 1 1049kB 106MB 105MB fat16 EFI System Partition boot, esp 2 106MB 1180MB 1074MB xfs 3 1180MB 50.0GB 48.8GB lvm
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_CONTAINER_RESOURCE_CONFIG_DETAILS_T Type 🔗
The size and amount of resources available to the container.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_container_resource_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
vcpus_limit number,
memory_limit_in_g_bs number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_resource_config_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_resource_config_details_t (
vcpus_limit number,
memory_limit_in_g_bs number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
vcpus_limit
(optional) The maximum amount of CPUs that can be consumed by the container's process. If you do not set a value, then the process can use all available CPU resources on the instance. CPU usage is defined in terms of logical CPUs. This means that the maximum possible value on an E3 ContainerInstance with 1 OCPU is 2.0. A container with a 2.0 vcpusLimit could consume up to 100% of the CPU resources available on the container instance. Values can be fractional. A value of \"1.5\" means that the container can consume at most the equivalent of 1 and a half logical CPUs worth of CPU capacity.
memory_limit_in_g_bs
(optional) The maximum amount of memory that can be consumed by the container's process. If you do not set a value, then the process may use all available memory on the instance.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_SECURITY_CONTEXT_DETAILS_T Type 🔗
Security context for container.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_security_context_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
security_context_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_security_context_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_security_context_details_t (
security_context_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
security_context_type
(optional) The type of security context
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_VOLUME_MOUNT_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_create_volume_mount_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_volume_mount_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_create_volume_mount_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_CONTAINER_HEALTH_CHECK_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_create_container_health_check_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_container_health_check_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_create_container_health_check_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_CONTAINER_DETAILS_T Type 🔗
Information to create a new container within a container instance. The container created by this call contains both the tags specified in this object and any tags specified in the parent container instance. The container is created in the same compartment, availability domain, and fault domain as its container instance.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_container_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
image_url varchar2(32767),
command dbms_cloud_oci_container_instances_varchar2_tbl,
arguments dbms_cloud_oci_container_instances_varchar2_tbl,
working_directory varchar2(32767),
environment_variables json_element_t,
volume_mounts dbms_cloud_oci_container_instances_create_volume_mount_details_tbl,
is_resource_principal_disabled number,
resource_config dbms_cloud_oci_container_instances_create_container_resource_config_details_t,
health_checks dbms_cloud_oci_container_instances_create_container_health_check_details_tbl,
security_context dbms_cloud_oci_container_instances_create_security_context_details_t,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_details_t (
display_name varchar2,
image_url varchar2,
command dbms_cloud_oci_container_instances_varchar2_tbl,
arguments dbms_cloud_oci_container_instances_varchar2_tbl,
working_directory varchar2,
environment_variables json_element_t,
volume_mounts dbms_cloud_oci_container_instances_create_volume_mount_details_tbl,
is_resource_principal_disabled number,
resource_config dbms_cloud_oci_container_instances_create_container_resource_config_details_t,
health_checks dbms_cloud_oci_container_instances_create_container_health_check_details_tbl,
security_context dbms_cloud_oci_container_instances_create_security_context_details_t,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. If you don't provide a name, a name is generated automatically.
image_url
(required) A URL identifying the image that the container runs in, such as docker.io/library/busybox:latest. If you do not provide a tag, the tag will default to latest. If no registry is provided, will default the registry to public docker hub `docker.io/library`. The registry used for container image must be reachable over the Container Instance's VNIC.
command
(optional) An optional command that overrides the ENTRYPOINT process. If you do not provide a value, the existing ENTRYPOINT process defined in the image is used.
arguments
(optional) A list of string arguments for a container's ENTRYPOINT process. Many containers use an ENTRYPOINT process pointing to a shell (/bin/bash). For those containers, this argument list specifies the main command in the container process. The total size of all arguments combined must be 64 KB or smaller.
working_directory
(optional) The working directory within the container's filesystem for the container process. If not specified, the default working directory from the image is used.
environment_variables
(optional) A map of additional environment variables to set in the environment of the container's ENTRYPOINT process. These variables are in addition to any variables already defined in the container's image. The total size of all environment variables combined, name and values, must be 64 KB or smaller.
volume_mounts
(optional) List of the volume mounts.
is_resource_principal_disabled
(optional) Determines if the container will have access to the container instance resource principal. This method utilizes resource principal version 2.2. For information on how to use the exposed resource principal elements, see https://docs.oracle.com/en-us/iaas/Content/API/Concepts/sdk_authentication_methods.htm#sdk_authentication_methods_resource_principal.
resource_config
(optional)
health_checks
(optional) list of container health checks to check container status and take appropriate action if container status is failed. There are three types of health checks that we currently support HTTP, TCP, and Command.
security_context
(optional)
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_CONTAINER_INSTANCES_CREATE_CONTAINER_DNS_CONFIG_DETAILS_T Type 🔗
Allow customers to define DNS settings for containers. If this is not provided, the containers use the default DNS settings of the subnet.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_container_dns_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
nameservers dbms_cloud_oci_container_instances_varchar2_tbl,
searches dbms_cloud_oci_container_instances_varchar2_tbl,
options dbms_cloud_oci_container_instances_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_dns_config_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_dns_config_details_t (
nameservers dbms_cloud_oci_container_instances_varchar2_tbl,
searches dbms_cloud_oci_container_instances_varchar2_tbl,
options dbms_cloud_oci_container_instances_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
nameservers
(optional) IP address of a name server that the resolver should query, either an IPv4 address (in dot notation), or an IPv6 address in colon (and possibly dot) notation. If null, uses nameservers from subnet dhcpDnsOptions.
searches
(optional) Search list for host-name lookup. If null, we will use searches from subnet dhcpDnsOptios.
options
(optional) Options allows certain internal resolver variables to be modified. Options are a list of objects in https://man7.org/linux/man-pages/man5/resolv.conf.5.html. Examples: [\"ndots:n\", \"edns0\"].
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_CONTAINER_EMPTY_DIR_VOLUME_DETAILS_T Type 🔗
The empty directory for the container instance.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_container_empty_dir_volume_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_container_instances_create_container_volume_details_t (
backing_store varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_empty_dir_volume_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_empty_dir_volume_details_t (
name varchar2,
volume_type varchar2,
backing_store varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_container_instances_create_container_empty_dir_volume_details_t is a subtype of the dbms_cloud_oci_container_instances_create_container_volume_details_t type.
Fields
Field
Description
backing_store
(optional) The volume type of the empty directory, can be either File Storage or Memory.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_CONTAINER_HTTP_HEALTH_CHECK_DETAILS_T Type 🔗
Container Health Check HTTP type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_container_http_health_check_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_container_instances_create_container_health_check_details_t (
path varchar2(32767),
port number,
headers dbms_cloud_oci_container_instances_health_check_http_header_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_http_health_check_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_http_health_check_details_t (
name varchar2,
health_check_type varchar2,
initial_delay_in_seconds number,
interval_in_seconds number,
failure_threshold number,
success_threshold number,
timeout_in_seconds number,
failure_action varchar2,
path varchar2,
port number,
headers dbms_cloud_oci_container_instances_health_check_http_header_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_container_instances_create_container_http_health_check_details_t is a subtype of the dbms_cloud_oci_container_instances_create_container_health_check_details_t type.
Fields
Field
Description
path
(required) Container health check HTTP path.
port
(required) Container health check HTTP port.
headers
(optional) Container health check HTTP headers.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_CONTAINER_INSTANCE_SHAPE_CONFIG_DETAILS_T Type 🔗
The size and amount of resources available to the container instance.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_container_instance_shape_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
ocpus number,
memory_in_g_bs number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_instance_shape_config_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_instance_shape_config_details_t (
ocpus number,
memory_in_g_bs number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
ocpus
(required) The total number of OCPUs available to the container instance.
memory_in_g_bs
(optional) The total amount of memory available to the container instance (GB).
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_CONTAINER_VNIC_DETAILS_T Type 🔗
Information to create a virtual network interface card (VNIC) which gives the containers on this container instance access to a virtual client network (VCN). You use this object when creating the primary VNIC during container instance launch or when creating a secondary VNIC. This VNIC is created in the same compartment as the specified subnet on behalf of the customer. The VNIC created by this call contains both the tags specified in this object as well as any tags specified in the parent container instance.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_container_vnic_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
hostname_label varchar2(32767),
is_public_ip_assigned number,
skip_source_dest_check number,
nsg_ids dbms_cloud_oci_container_instances_varchar2_tbl,
private_ip varchar2(32767),
subnet_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_vnic_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_vnic_details_t (
display_name varchar2,
hostname_label varchar2,
is_public_ip_assigned number,
skip_source_dest_check number,
nsg_ids dbms_cloud_oci_container_instances_varchar2_tbl,
private_ip varchar2,
subnet_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly name for the VNIC. Does not have to be unique. Avoid entering confidential information.
hostname_label
(optional) The hostname for the VNIC's primary private IP. Used for DNS.
is_public_ip_assigned
(optional) Whether the VNIC should be assigned a public IP address.
skip_source_dest_check
(optional) Whether the source/destination check is disabled on the VNIC.
nsg_ids
(optional) A list of the OCIDs of the network security groups (NSGs) to add the VNIC to.
private_ip
(optional) A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR.
subnet_id
(required) The OCID of the subnet to create the VNIC in.
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_CONTAINER_INSTANCES_CREATE_CONTAINER_VOLUME_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_create_container_volume_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_container_volume_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_create_container_volume_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_CONTAINER_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_create_container_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_container_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_create_container_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_CONTAINER_VNIC_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_create_container_vnic_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_container_vnic_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_create_container_vnic_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_IMAGE_PULL_SECRET_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_create_image_pull_secret_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_image_pull_secret_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_create_image_pull_secret_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_CONTAINER_INSTANCE_DETAILS_T Type 🔗
Information to create a container instance.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_container_instance_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
compartment_id varchar2(32767),
availability_domain varchar2(32767),
fault_domain varchar2(32767),
shape varchar2(32767),
shape_config dbms_cloud_oci_container_instances_create_container_instance_shape_config_details_t,
volumes dbms_cloud_oci_container_instances_create_container_volume_details_tbl,
containers dbms_cloud_oci_container_instances_create_container_details_tbl,
vnics dbms_cloud_oci_container_instances_create_container_vnic_details_tbl,
dns_config dbms_cloud_oci_container_instances_create_container_dns_config_details_t,
graceful_shutdown_timeout_in_seconds number,
image_pull_secrets dbms_cloud_oci_container_instances_create_image_pull_secret_details_tbl,
container_restart_policy varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_instance_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_instance_details_t (
display_name varchar2,
compartment_id varchar2,
availability_domain varchar2,
fault_domain varchar2,
shape varchar2,
shape_config dbms_cloud_oci_container_instances_create_container_instance_shape_config_details_t,
volumes dbms_cloud_oci_container_instances_create_container_volume_details_tbl,
containers dbms_cloud_oci_container_instances_create_container_details_tbl,
vnics dbms_cloud_oci_container_instances_create_container_vnic_details_tbl,
dns_config dbms_cloud_oci_container_instances_create_container_dns_config_details_t,
graceful_shutdown_timeout_in_seconds number,
image_pull_secrets dbms_cloud_oci_container_instances_create_image_pull_secret_details_tbl,
container_restart_policy varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. If you don't provide a name, a name is generated automatically.
compartment_id
(required) The compartment OCID.
availability_domain
(required) The availability domain where the container instance runs.
fault_domain
(optional) The fault domain where the container instance runs.
shape
(required) The shape of the container instance. The shape determines the resources available to the container instance.
shape_config
(required)
volumes
(optional) A volume is a directory with data that is accessible across multiple containers in a container instance. You can attach up to 32 volumes to single container instance.
containers
(required) The containers to create on this container instance.
vnics
(required) The networks available to containers on this container instance.
dns_config
(optional)
graceful_shutdown_timeout_in_seconds
(optional) The amount of time that processes in a container have to gracefully end when the container must be stopped. For example, when you delete a container instance. After the timeout is reached, the processes are sent a signal to be deleted.
image_pull_secrets
(optional) The image pulls secrets so you can access private registry to pull container images.
container_restart_policy
(optional) Container restart policy
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_CONTAINER_INSTANCES_CREATE_CONTAINER_TCP_HEALTH_CHECK_DETAILS_T Type 🔗
Container Health Check TCP type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_container_tcp_health_check_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_container_instances_create_container_health_check_details_t (
port number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_tcp_health_check_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_container_tcp_health_check_details_t (
name varchar2,
health_check_type varchar2,
initial_delay_in_seconds number,
interval_in_seconds number,
failure_threshold number,
success_threshold number,
timeout_in_seconds number,
failure_action varchar2,
port number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_container_instances_create_container_tcp_health_check_details_t is a subtype of the dbms_cloud_oci_container_instances_create_container_health_check_details_t type.
Fields
Field
Description
port
(required) Container health check port.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_LINUX_SECURITY_CONTEXT_DETAILS_T Type 🔗
Security context for Linux container.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_linux_security_context_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_container_instances_create_security_context_details_t (
run_as_user number,
run_as_group number,
is_non_root_user_check_enabled number,
is_root_file_system_readonly number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_linux_security_context_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_linux_security_context_details_t (
security_context_type varchar2,
run_as_user number,
run_as_group number,
is_non_root_user_check_enabled number,
is_root_file_system_readonly number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_container_instances_create_linux_security_context_details_t is a subtype of the dbms_cloud_oci_container_instances_create_security_context_details_t type.
Fields
Field
Description
run_as_user
(optional) The user ID (UID) to run the entrypoint process of the container. Defaults to user specified UID in container image metadata if not provided. This must be provided if runAsGroup is provided.
run_as_group
(optional) The group ID (GID) to run the entrypoint process of the container. Uses runtime default if not provided.
is_non_root_user_check_enabled
(optional) Indicates if the container must run as a non-root user. If true, the service validates the container image at runtime to ensure that it is not going to run with UID 0 (root) and fails the container instance creation if the validation fails.
is_root_file_system_readonly
(optional) Determines if the container will have a read-only root file system. Default value is false.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_CREATE_VAULT_IMAGE_PULL_SECRET_DETAILS_T Type 🔗
A CreateVaultImagePullSecretDetails is a ImagePullSecret which accepts secretId as credentials information. **Sample Format for username and password in Vault Secret** ``` { \"username\": \"this-is-not-the-secret\", \"password\": \"example-password\" } ```
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_create_vault_image_pull_secret_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_container_instances_create_image_pull_secret_details_t (
secret_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_vault_image_pull_secret_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_create_vault_image_pull_secret_details_t (
secret_type varchar2,
registry_endpoint varchar2,
secret_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_container_instances_create_vault_image_pull_secret_details_t is a subtype of the dbms_cloud_oci_container_instances_create_image_pull_secret_details_t type.
Fields
Field
Description
secret_id
(required) The OCID of the secret for registry credentials.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_ERROR_T Type 🔗
Error Information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_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_CONTAINER_INSTANCES_LINUX_SECURITY_CONTEXT_T Type 🔗
Security context for Linux container.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_linux_security_context_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_container_instances_security_context_t (
run_as_user number,
run_as_group number,
is_non_root_user_check_enabled number,
is_root_file_system_readonly number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_linux_security_context_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_linux_security_context_t (
security_context_type varchar2,
run_as_user number,
run_as_group number,
is_non_root_user_check_enabled number,
is_root_file_system_readonly number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_container_instances_linux_security_context_t is a subtype of the dbms_cloud_oci_container_instances_security_context_t type.
Fields
Field
Description
run_as_user
(optional) The user ID (UID) to run the entrypoint process of the container. Defaults to user specified UID in container image metadata if not provided. This must be provided if runAsGroup is provided.
run_as_group
(optional) The group ID (GID) to run the entrypoint process of the container. Uses runtime default if not provided.
is_non_root_user_check_enabled
(optional) Indicates if the container must run as a non-root user. If true, the service validates the container image at runtime to ensure that it is not going to run with UID 0 (root) and fails the container instance creation if the validation fails.
is_root_file_system_readonly
(optional) Determines if the container will have a read-only root file system. Default value is false.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_UPDATE_CONTAINER_DETAILS_T Type 🔗
The container information to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_update_container_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_update_container_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_update_container_details_t (
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
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_CONTAINER_INSTANCES_UPDATE_CONTAINER_INSTANCE_DETAILS_T Type 🔗
The information to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_update_container_instance_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_update_container_instance_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_update_container_instance_details_t (
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
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_CONTAINER_INSTANCES_VAULT_IMAGE_PULL_SECRET_T Type 🔗
A VaultImagePullSecret is a ImagePullSecret which accepts secretId as credentials information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_vault_image_pull_secret_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_container_instances_image_pull_secret_t (
secret_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_vault_image_pull_secret_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_vault_image_pull_secret_t (
secret_type varchar2,
registry_endpoint varchar2,
secret_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_container_instances_vault_image_pull_secret_t is a subtype of the dbms_cloud_oci_container_instances_image_pull_secret_t type.
Fields
Field
Description
secret_id
(required) The OCID of the secret for registry credentials.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_WORK_REQUEST_RESOURCE_T Type 🔗
A resource created or operated on by a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_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_container_instances_work_request_resource_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_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 remains in the IN_PROGRESS state until work is complete for that resource, at which point it updates to CREATED, UPDATED, or DELETED, respectively.
(required) The ID 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_CONTAINER_INSTANCES_WORK_REQUEST_RESOURCE_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_work_request_resource_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_work_request_resource_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_WORK_REQUEST_T Type 🔗
A description of the work request status.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_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_container_instances_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_container_instances_work_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_work_request_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
resources dbms_cloud_oci_container_instances_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.
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_CONTAINER_INSTANCES_WORK_REQUEST_ERROR_T Type 🔗
An error encountered while executing a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_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_container_instances_work_request_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_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. See API Errors for a list of error codes.
message
(required) A description of the issue encountered.
l_timestamp
(required) The time the error occured, in the format defined by RFC 3339.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_WORK_REQUEST_ERROR_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_work_request_error_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_work_request_error_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_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_container_instances_work_request_error_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_container_instances_work_request_error_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_work_request_error_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_work_request_error_collection_t (
items dbms_cloud_oci_container_instances_work_request_error_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of workRequestError objects.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_WORK_REQUEST_LOG_ENTRY_T Type 🔗
A log message from a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_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_container_instances_work_request_log_entry_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_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, in the format defined by RFC 3339.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_WORK_REQUEST_LOG_ENTRY_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_work_request_log_entry_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_work_request_log_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_work_request_log_entry_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_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_container_instances_work_request_log_entry_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_container_instances_work_request_log_entry_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_work_request_log_entry_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_work_request_log_entry_collection_t (
items dbms_cloud_oci_container_instances_work_request_log_entry_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of workRequestLogEntries.
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_WORK_REQUEST_SUMMARY_T Type 🔗
A summary of the status of a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_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_container_instances_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_container_instances_work_request_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_work_request_summary_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
resources dbms_cloud_oci_container_instances_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.
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_CONTAINER_INSTANCES_WORK_REQUEST_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_container_instances_work_request_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_container_instances_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_container_instances_work_request_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CONTAINER_INSTANCES_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_container_instances_work_request_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_container_instances_work_request_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_work_request_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_container_instances_work_request_summary_collection_t (
items dbms_cloud_oci_container_instances_work_request_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;