Artifacts Common Types

DBMS_CLOUD_OCI_ARTIFACTS_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;

DBMS_CLOUD_OCI_ARTIFACTS_CHANGE_CONTAINER_REPOSITORY_COMPARTMENT_DETAILS_T Type

Change container repository compartment details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_change_container_repository_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_change_container_repository_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_change_container_repository_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment into which to move the resource.

DBMS_CLOUD_OCI_ARTIFACTS_CHANGE_REPOSITORY_COMPARTMENT_DETAILS_T Type

Details for changing a repository's compartment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_change_repository_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_change_repository_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_change_repository_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment into which the repository should be moved.

DBMS_CLOUD_OCI_ARTIFACTS_CONTAINER_CONFIGURATION_T Type

Container configuration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_container_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_repository_created_on_first_push number,
  namespace varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_configuration_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_configuration_t (
    is_repository_created_on_first_push number,
    namespace varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_repository_created_on_first_push

(required) Whether to create a new container repository when a container is pushed to a new repository path. Repositories created in this way belong to the root compartment.

namespace

(required) The tenancy namespace used in the container repository path.

DBMS_CLOUD_OCI_ARTIFACTS_CONTAINER_IMAGE_LAYER_T Type

The container image layer metadata.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_container_image_layer_t FORCE AUTHID CURRENT_USER IS OBJECT (
  digest varchar2(32767),
  size_in_bytes number,
  time_created timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_image_layer_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_image_layer_t (
    digest varchar2,
    size_in_bytes number,
    time_created timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

digest

(required) The sha256 digest of the image layer.

size_in_bytes

(required) The size of the layer in bytes.

time_created

(required) An RFC 3339 timestamp indicating when the layer was created.

DBMS_CLOUD_OCI_ARTIFACTS_CONTAINER_VERSION_T Type

Container version metadata.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_container_version_t FORCE AUTHID CURRENT_USER IS OBJECT (
  created_by varchar2(32767),
  time_created timestamp with time zone,
  version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_version_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_version_t (
    created_by varchar2,
    time_created timestamp with time zone,
    version varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

created_by

(required) The OCID of the user or principal that pushed the version.

time_created

(required) The creation time of the version.

version

(required) The version name.

DBMS_CLOUD_OCI_ARTIFACTS_CONTAINER_IMAGE_LAYER_TBL Type

Nested table type of dbms_cloud_oci_artifacts_container_image_layer_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_container_image_layer_tbl FORCE IS TABLE OF (dbms_cloud_oci_artifacts_container_image_layer_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_ARTIFACTS_CONTAINER_VERSION_TBL Type

Nested table type of dbms_cloud_oci_artifacts_container_version_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_container_version_tbl FORCE IS TABLE OF (dbms_cloud_oci_artifacts_container_version_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_ARTIFACTS_CONTAINER_IMAGE_T Type

Container image metadata.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_container_image_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  created_by varchar2(32767),
  digest varchar2(32767),
  display_name varchar2(32767),
  id varchar2(32767),
  layers dbms_cloud_oci_artifacts_container_image_layer_tbl,
  layers_size_in_bytes number,
  lifecycle_state varchar2(32767),
  manifest_size_in_bytes number,
  pull_count number,
  repository_id varchar2(32767),
  repository_name varchar2(32767),
  time_created timestamp with time zone,
  time_last_pulled timestamp with time zone,
  version varchar2(32767),
  versions dbms_cloud_oci_artifacts_container_version_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_image_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_image_t (
    compartment_id varchar2,
    created_by varchar2,
    digest varchar2,
    display_name varchar2,
    id varchar2,
    layers dbms_cloud_oci_artifacts_container_image_layer_tbl,
    layers_size_in_bytes number,
    lifecycle_state varchar2,
    manifest_size_in_bytes number,
    pull_count number,
    repository_id varchar2,
    repository_name varchar2,
    time_created timestamp with time zone,
    time_last_pulled timestamp with time zone,
    version varchar2,
    versions dbms_cloud_oci_artifacts_container_version_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The compartment OCID to which the container image belongs. Inferred from the container repository.

created_by

(required) The OCID of the user or principal that created the resource.

digest

(required) The container image digest.

display_name

(required) The repository name and the most recent version associated with the image. If there are no versions associated with the image, then last known version and digest are used instead. If the last known version is unavailable, then 'unknown' is used instead of the version. Example: `ubuntu:latest` or `ubuntu:latest@sha256:45b23dee08af5e43a7fea6c4cf9c25ccf269ee113168c19722f87876677c5cb2`

id

(required) The OCID of the container image. Example: `ocid1.containerimage.oc1..exampleuniqueID`

layers

(required) Layers of which the image is composed, ordered by the layer digest.

layers_size_in_bytes

(required) The total size of the container image layers in bytes.

lifecycle_state

(required) The current state of the container image.

Allowed values are: 'AVAILABLE', 'DELETED', 'DELETING'

manifest_size_in_bytes

(required) The size of the container image manifest in bytes.

pull_count

(required) Total number of pulls.

repository_id

(required) The OCID of the container repository.

repository_name

(required) The container repository name.

time_created

(required) An RFC 3339 timestamp indicating when the image was created.

time_last_pulled

(optional) An RFC 3339 timestamp indicating when the image was last pulled.

version

(optional) The most recent version associated with this image.

versions

(required) The versions associated with this image.

freeform_tags

(required) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(required) The system tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_ARTIFACTS_CONTAINER_IMAGE_SUMMARY_T Type

Container image summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_container_image_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  digest varchar2(32767),
  display_name varchar2(32767),
  id varchar2(32767),
  lifecycle_state varchar2(32767),
  repository_id varchar2(32767),
  repository_name varchar2(32767),
  time_created timestamp with time zone,
  version varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_image_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_image_summary_t (
    compartment_id varchar2,
    digest varchar2,
    display_name varchar2,
    id varchar2,
    lifecycle_state varchar2,
    repository_id varchar2,
    repository_name varchar2,
    time_created timestamp with time zone,
    version varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The compartment OCID to which the container image belongs. Inferred from the container repository.

digest

(required) The container image digest.

display_name

(required) The repository name and the most recent version associated with the image. If there are no versions associated with the image, then last known version and digest are used instead. If the last known version is unavailable, then 'unknown' is used instead of the version. Example: `ubuntu:latest` or `ubuntu:latest@sha256:45b23dee08af5e43a7fea6c4cf9c25ccf269ee113168c19722f87876677c5cb2`

id

(required) The OCID of the container image. Example: `ocid1.containerimage.oc1..exampleuniqueID`

lifecycle_state

(required) The current state of the container image.

repository_id

(required) The OCID of the container repository.

repository_name

(required) The container repository name.

time_created

(required) An RFC 3339 timestamp indicating when the image was created.

version

(optional) The most recent version associated with this image.

freeform_tags

(required) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(required) The system tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_ARTIFACTS_CONTAINER_IMAGE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_artifacts_container_image_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_container_image_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_artifacts_container_image_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_ARTIFACTS_CONTAINER_IMAGE_COLLECTION_T Type

List container image results.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_container_image_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_artifacts_container_image_summary_tbl,
  remaining_items_count number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_image_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_image_collection_t (
    items dbms_cloud_oci_artifacts_container_image_summary_tbl,
    remaining_items_count number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Page of matching container images.

remaining_items_count

(required) Estimated number of remaining results.

DBMS_CLOUD_OCI_ARTIFACTS_CONTAINER_IMAGE_SIGNATURE_T Type

Container image signature metadata.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_container_image_signature_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  created_by varchar2(32767),
  display_name varchar2(32767),
  id varchar2(32767),
  image_id varchar2(32767),
  kms_key_id varchar2(32767),
  kms_key_version_id varchar2(32767),
  message varchar2(32767),
  signature varchar2(32767),
  signing_algorithm varchar2(32767),
  time_created timestamp with time zone,
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_image_signature_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_image_signature_t (
    compartment_id varchar2,
    created_by varchar2,
    display_name varchar2,
    id varchar2,
    image_id varchar2,
    kms_key_id varchar2,
    kms_key_version_id varchar2,
    message varchar2,
    signature varchar2,
    signing_algorithm varchar2,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment in which the container repository exists.

created_by

(required) The id of the user or principal that created the resource.

display_name

(required) The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example: `wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva`

id

(required) The OCID of the container image signature. Example: `ocid1.containerimagesignature.oc1..exampleuniqueID`

image_id

(required) The OCID of the container image. Example: `ocid1.containerimage.oc1..exampleuniqueID`

kms_key_id

(required) The OCID of the kmsKeyId used to sign the container image. Example: `ocid1.key.oc1..exampleuniqueID`

kms_key_version_id

(required) The OCID of the kmsKeyVersionId used to sign the container image. Example: `ocid1.keyversion.oc1..exampleuniqueID`

message

(required) The base64 encoded signature payload that was signed.

signature

(required) The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.

signing_algorithm

(required) The algorithm to be used for signing. These are the only supported signing algorithms for container images.

Allowed values are: 'SHA_224_RSA_PKCS_PSS', 'SHA_256_RSA_PKCS_PSS', 'SHA_384_RSA_PKCS_PSS', 'SHA_512_RSA_PKCS_PSS'

time_created

(required) An RFC 3339 timestamp indicating when the image was created.

lifecycle_state

(required) The current state of the container image signature.

Allowed values are: 'AVAILABLE', 'DELETING', 'DELETED'

freeform_tags

(required) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(required) The system tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_ARTIFACTS_CONTAINER_IMAGE_SIGNATURE_SUMMARY_T Type

Container image signature summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_container_image_signature_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  id varchar2(32767),
  image_id varchar2(32767),
  kms_key_id varchar2(32767),
  kms_key_version_id varchar2(32767),
  message varchar2(32767),
  signature varchar2(32767),
  signing_algorithm varchar2(32767),
  time_created timestamp with time zone,
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_image_signature_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_image_signature_summary_t (
    compartment_id varchar2,
    display_name varchar2,
    id varchar2,
    image_id varchar2,
    kms_key_id varchar2,
    kms_key_version_id varchar2,
    message varchar2,
    signature varchar2,
    signing_algorithm varchar2,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment in which the container repository exists.

display_name

(required) The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example: `wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva`

id

(required) The OCID of the container image signature. Example: `ocid1.containerimagesignature.oc1..exampleuniqueID`

image_id

(required) The OCID of the container image. Example: `ocid1.containerimage.oc1..exampleuniqueID`

kms_key_id

(required) The OCID of the kmsKeyId used to sign the container image. Example: `ocid1.key.oc1..exampleuniqueID`

kms_key_version_id

(required) The OCID of the kmsKeyVersionId used to sign the container image. Example: `ocid1.keyversion.oc1..exampleuniqueID`

message

(required) The base64 encoded signature payload that was signed.

signature

(required) The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.

signing_algorithm

(required) The algorithm to be used for signing. These are the only supported signing algorithms for container images.

Allowed values are: 'SHA_224_RSA_PKCS_PSS', 'SHA_256_RSA_PKCS_PSS', 'SHA_384_RSA_PKCS_PSS', 'SHA_512_RSA_PKCS_PSS'

time_created

(required) An RFC 3339 timestamp indicating when the image was created.

lifecycle_state

(required) The current state of the container image signature.

freeform_tags

(required) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(required) The system tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_ARTIFACTS_CONTAINER_IMAGE_SIGNATURE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_artifacts_container_image_signature_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_container_image_signature_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_artifacts_container_image_signature_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_ARTIFACTS_CONTAINER_IMAGE_SIGNATURE_COLLECTION_T Type

List container image signature results.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_container_image_signature_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_artifacts_container_image_signature_summary_tbl,
  remaining_items_count number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_image_signature_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_image_signature_collection_t (
    items dbms_cloud_oci_artifacts_container_image_signature_summary_tbl,
    remaining_items_count number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Page of matching container image signatures.

remaining_items_count

(required) Estimated number of remaining results.

DBMS_CLOUD_OCI_ARTIFACTS_CONTAINER_REPOSITORY_README_T Type

Container repository readme.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_container_repository_readme_t FORCE AUTHID CURRENT_USER IS OBJECT (
  content varchar2(32767),
  format varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_repository_readme_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_repository_readme_t (
    content varchar2,
    format varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

content

(required) Readme content. Avoid entering confidential information.

format

(required) Readme format. Supported formats are text/plain and text/markdown.

Allowed values are: 'TEXT_MARKDOWN', 'TEXT_PLAIN'

DBMS_CLOUD_OCI_ARTIFACTS_CONTAINER_REPOSITORY_T Type

Container repository metadata.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_container_repository_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  created_by varchar2(32767),
  display_name varchar2(32767),
  id varchar2(32767),
  image_count number,
  is_immutable number,
  is_public number,
  layer_count number,
  layers_size_in_bytes number,
  lifecycle_state varchar2(32767),
  readme dbms_cloud_oci_artifacts_container_repository_readme_t,
  time_created timestamp with time zone,
  time_last_pushed timestamp with time zone,
  billable_size_in_g_bs number,
  namespace varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_repository_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_repository_t (
    compartment_id varchar2,
    created_by varchar2,
    display_name varchar2,
    id varchar2,
    image_count number,
    is_immutable number,
    is_public number,
    layer_count number,
    layers_size_in_bytes number,
    lifecycle_state varchar2,
    readme dbms_cloud_oci_artifacts_container_repository_readme_t,
    time_created timestamp with time zone,
    time_last_pushed timestamp with time zone,
    billable_size_in_g_bs number,
    namespace varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment in which the container repository exists.

created_by

(required) The id of the user or principal that created the resource.

display_name

(required) The container repository name.

id

(required) The OCID of the container repository. Example: `ocid1.containerrepo.oc1..exampleuniqueID`

image_count

(required) Total number of images.

is_immutable

(required) Whether the repository is immutable. Images cannot be overwritten in an immutable repository.

is_public

(required) Whether the repository is public. A public repository allows unauthenticated access.

layer_count

(required) Total number of layers.

layers_size_in_bytes

(required) Total storage in bytes consumed by layers.

lifecycle_state

(required) The current state of the container repository.

Allowed values are: 'AVAILABLE', 'DELETING', 'DELETED'

readme

(optional)

time_created

(required) An RFC 3339 timestamp indicating when the repository was created.

time_last_pushed

(optional) An RFC 3339 timestamp indicating when an image was last pushed to the repository.

billable_size_in_g_bs

(required) Total storage size in GBs that will be charged.

namespace

(required) The tenancy namespace used in the container repository path.

freeform_tags

(required) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(required) The system tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_ARTIFACTS_CONTAINER_REPOSITORY_SUMMARY_T Type

Container repository summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_container_repository_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  id varchar2(32767),
  image_count number,
  is_public number,
  layer_count number,
  layers_size_in_bytes number,
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  billable_size_in_g_bs number,
  namespace varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_repository_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_repository_summary_t (
    compartment_id varchar2,
    display_name varchar2,
    id varchar2,
    image_count number,
    is_public number,
    layer_count number,
    layers_size_in_bytes number,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    billable_size_in_g_bs number,
    namespace varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment in which the container repository exists.

display_name

(required) The container repository name.

id

(required) The OCID of the container repository. Example: `ocid1.containerrepo.oc1..exampleuniqueID`

image_count

(required) Total number of images.

is_public

(required) Whether the repository is public. A public repository allows unauthenticated access.

layer_count

(required) Total number of layers.

layers_size_in_bytes

(required) Total storage in bytes consumed by layers.

lifecycle_state

(required) The current state of the container repository.

time_created

(required) An RFC 3339 timestamp indicating when the repository was created.

billable_size_in_g_bs

(required) Total storage size in GBs that will be charged.

namespace

(required) The tenancy namespace used in the container repository path.

freeform_tags

(required) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(required) The system tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_ARTIFACTS_CONTAINER_REPOSITORY_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_artifacts_container_repository_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_container_repository_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_artifacts_container_repository_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_ARTIFACTS_CONTAINER_REPOSITORY_COLLECTION_T Type

List of container repository results.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_container_repository_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  layer_count number,
  layers_size_in_bytes number,
  image_count number,
  items dbms_cloud_oci_artifacts_container_repository_summary_tbl,
  remaining_items_count number,
  repository_count number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_repository_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_container_repository_collection_t (
    layer_count number,
    layers_size_in_bytes number,
    image_count number,
    items dbms_cloud_oci_artifacts_container_repository_summary_tbl,
    remaining_items_count number,
    repository_count number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

layer_count

(required) Total number of layers.

layers_size_in_bytes

(required) Total storage in bytes consumed by layers.

image_count

(required) Total number of images.

items

(required) Collection of container repositories.

remaining_items_count

(required) Estimated number of remaining results.

repository_count

(required) Total number of repositories.

DBMS_CLOUD_OCI_ARTIFACTS_CREATE_CONTAINER_IMAGE_SIGNATURE_DETAILS_T Type

Upload container image signature request details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_create_container_image_signature_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  image_id varchar2(32767),
  kms_key_id varchar2(32767),
  kms_key_version_id varchar2(32767),
  message varchar2(32767),
  signature varchar2(32767),
  signing_algorithm varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_create_container_image_signature_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_create_container_image_signature_details_t (
    compartment_id varchar2,
    image_id varchar2,
    kms_key_id varchar2,
    kms_key_version_id varchar2,
    message varchar2,
    signature varchar2,
    signing_algorithm varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment in which the container repository exists.

image_id

(required) The OCID of the container image. Example: `ocid1.containerimage.oc1..exampleuniqueID`

kms_key_id

(required) The OCID of the kmsKeyId used to sign the container image. Example: `ocid1.key.oc1..exampleuniqueID`

kms_key_version_id

(required) The OCID of the kmsKeyVersionId used to sign the container image. Example: `ocid1.keyversion.oc1..exampleuniqueID`

message

(required) The base64 encoded signature payload that was signed.

signature

(required) The signature of the message field using the kmsKeyId, the kmsKeyVersionId, and the signingAlgorithm.

signing_algorithm

(required) The algorithm to be used for signing. These are the only supported signing algorithms for container images.

Allowed values are: 'SHA_224_RSA_PKCS_PSS', 'SHA_256_RSA_PKCS_PSS', 'SHA_384_RSA_PKCS_PSS', 'SHA_512_RSA_PKCS_PSS'

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_ARTIFACTS_CREATE_CONTAINER_REPOSITORY_DETAILS_T Type

Create container repository details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_create_container_repository_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  is_immutable number,
  is_public number,
  readme dbms_cloud_oci_artifacts_container_repository_readme_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_create_container_repository_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_create_container_repository_details_t (
    compartment_id varchar2,
    display_name varchar2,
    is_immutable number,
    is_public number,
    readme dbms_cloud_oci_artifacts_container_repository_readme_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment in which to create the resource.

display_name

(required) The container repository name.

is_immutable

(optional) Whether the repository is immutable. Images cannot be overwritten in an immutable repository.

is_public

(optional) Whether the repository is public. A public repository allows unauthenticated access.

readme

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_ARTIFACTS_CREATE_REPOSITORY_DETAILS_T Type

Parameters needed to create an artifact repository.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_create_repository_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  repository_type varchar2(32767),
  description varchar2(32767),
  is_immutable number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_create_repository_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_create_repository_details_t (
    display_name varchar2,
    compartment_id varchar2,
    repository_type varchar2,
    description varchar2,
    is_immutable number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

display_name

(optional) A user-friendly display name for the repository. If not present, will be auto-generated. It can be modified later. Avoid entering confidential information.

compartment_id

(required) The OCID of the repository's compartment.

repository_type

(required) The repository's supported artifact type.

description

(optional) A short description of the repository. It can be updated later.

is_immutable

(required) Whether to make the repository immutable. The artifacts of an immutable repository cannot be overwritten.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_ARTIFACTS_CREATE_GENERIC_REPOSITORY_DETAILS_T Type

Parameters needed to create an artifact repository.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_create_generic_repository_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_artifacts_create_repository_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_create_generic_repository_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_create_generic_repository_details_t (
    display_name varchar2,
    compartment_id varchar2,
    repository_type varchar2,
    description varchar2,
    is_immutable number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_artifacts_create_generic_repository_details_t is a subtype of the dbms_cloud_oci_artifacts_create_repository_details_t type.

DBMS_CLOUD_OCI_ARTIFACTS_ERROR_T Type

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_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. See API Errors.

message

(required) A human-readable error string.

DBMS_CLOUD_OCI_ARTIFACTS_GENERIC_ARTIFACT_T Type

The metadata of the artifact.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_generic_artifact_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  repository_id varchar2(32767),
  artifact_path varchar2(32767),
  version varchar2(32767),
  sha256 varchar2(32767),
  size_in_bytes number,
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  time_created timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_generic_artifact_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_generic_artifact_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    repository_id varchar2,
    artifact_path varchar2,
    version varchar2,
    sha256 varchar2,
    size_in_bytes number,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    time_created timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the artifact. Example: `ocid1.genericartifact.oc1..exampleuniqueID`

display_name

(required) The artifact name with the format of `<artifact-path>:<artifact-version>`. The artifact name is truncated to a maximum length of 255. Example: `project01/my-web-app/artifact-abc:1.0.0`

compartment_id

(required) The OCID of the repository's compartment.

repository_id

(required) The OCID of the repository.

artifact_path

(required) A user-defined path to describe the location of an artifact. Slashes do not create a directory structure, but you can use slashes to organize the repository. An artifact path does not include an artifact version. Example: `project01/my-web-app/artifact-abc`

version

(required) A user-defined string to describe the artifact version. Example: `1.1.0` or `1.2-beta-2`

sha256

(required) The SHA256 digest for the artifact. When you upload an artifact to the repository, a SHA256 digest is calculated and added to the artifact properties.

size_in_bytes

(required) The size of the artifact in bytes.

lifecycle_state

(required) The current state of the artifact.

Allowed values are: 'AVAILABLE', 'DELETING', 'DELETED'

freeform_tags

(required) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

time_created

(required) An RFC 3339 timestamp indicating when the repository was created.

DBMS_CLOUD_OCI_ARTIFACTS_GENERIC_ARTIFACT_SUMMARY_T Type

Summary information for an artifact.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_generic_artifact_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  repository_id varchar2(32767),
  artifact_path varchar2(32767),
  version varchar2(32767),
  sha256 varchar2(32767),
  size_in_bytes number,
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  time_created timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_generic_artifact_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_generic_artifact_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    repository_id varchar2,
    artifact_path varchar2,
    version varchar2,
    sha256 varchar2,
    size_in_bytes number,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    time_created timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the artifact. Example: `ocid1.genericartifact.oc1..exampleuniqueID`

display_name

(required) The artifact name with the format of `<artifact-path>:<artifact-version>`. The artifact name is truncated to a maximum length of 255. Example: `project01/my-web-app/artifact-abc:1.0.0`

compartment_id

(required) The OCID of the artifact's compartment.

repository_id

(required) The OCID of the repository.

artifact_path

(required) A user-defined path to describe the location of an artifact. Slashes do not create a directory structure, but you can use slashes to organize the repository. An artifact path does not include an artifact version. Example: `project01/my-web-app/artifact-abc`

version

(required) A user-defined string to describe the artifact version. Example: `1.1.0` or `1.2-beta-2`

sha256

(required) The SHA256 digest for the artifact. When you upload an artifact to the repository, a SHA256 digest is calculated and added to the artifact properties.

size_in_bytes

(required) The size of the artifact in bytes.

lifecycle_state

(required) The current state of the generic artifact.

freeform_tags

(required) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

time_created

(required) An RFC 3339 timestamp indicating when the artifact was created.

DBMS_CLOUD_OCI_ARTIFACTS_GENERIC_ARTIFACT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_artifacts_generic_artifact_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_generic_artifact_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_artifacts_generic_artifact_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_ARTIFACTS_GENERIC_ARTIFACT_COLLECTION_T Type

A list of artifacts.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_generic_artifact_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_artifacts_generic_artifact_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_generic_artifact_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_generic_artifact_collection_t (
    items dbms_cloud_oci_artifacts_generic_artifact_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) The listed artifacts.

DBMS_CLOUD_OCI_ARTIFACTS_REPOSITORY_T Type

The metadata for the artifact repository.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_repository_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  repository_type varchar2(32767),
  description varchar2(32767),
  is_immutable number,
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  time_created timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_repository_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_repository_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    repository_type varchar2,
    description varchar2,
    is_immutable number,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    time_created timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(required) The OCID of the repository. Example: `ocid1.artifactrepository.oc1..exampleuniqueID`

display_name

(required) The repository name.

compartment_id

(required) The OCID of the repository's compartment.

repository_type

(required) The repository's supported artifact type.

Allowed values are: 'GENERIC'

description

(required) The repository description.

is_immutable

(required) Whether the repository is immutable. The artifacts of an immutable repository cannot be overwritten.

lifecycle_state

(required) The current state of the repository.

Allowed values are: 'AVAILABLE', 'DELETING', 'DELETED'

freeform_tags

(required) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

time_created

(required) An RFC 3339 timestamp indicating when the repository was created.

DBMS_CLOUD_OCI_ARTIFACTS_GENERIC_REPOSITORY_T Type

The metadata for the artifact repository.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_generic_repository_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_artifacts_repository_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_generic_repository_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_generic_repository_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    repository_type varchar2,
    description varchar2,
    is_immutable number,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    time_created timestamp with time zone
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_artifacts_generic_repository_t is a subtype of the dbms_cloud_oci_artifacts_repository_t type.

DBMS_CLOUD_OCI_ARTIFACTS_REPOSITORY_SUMMARY_T Type

Summary information for a repository.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_repository_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  repository_type varchar2(32767),
  description varchar2(32767),
  is_immutable number,
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  time_created timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_repository_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_repository_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    repository_type varchar2,
    description varchar2,
    is_immutable number,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    time_created timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(required) The OCID of the repository. Example: `ocid1.artifactrepository.oc1..exampleuniqueID`

display_name

(required) The repository name.

compartment_id

(required) The OCID of the repository's compartment.

repository_type

(required) The repository's supported artifact type.

description

(optional) The repository description.

is_immutable

(required) Whether the repository is immutable. The artifacts of an immutable repository cannot be overwritten.

lifecycle_state

(required) The current state of the artifact repository.

freeform_tags

(required) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

time_created

(required) An RFC 3339 timestamp indicating when the repository was created.

DBMS_CLOUD_OCI_ARTIFACTS_GENERIC_REPOSITORY_SUMMARY_T Type

Summary information for a repository.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_generic_repository_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_artifacts_repository_summary_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_generic_repository_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_generic_repository_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    repository_type varchar2,
    description varchar2,
    is_immutable number,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    time_created timestamp with time zone
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_artifacts_generic_repository_summary_t is a subtype of the dbms_cloud_oci_artifacts_repository_summary_t type.

DBMS_CLOUD_OCI_ARTIFACTS_REMOVE_CONTAINER_VERSION_DETAILS_T Type

Remove version details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_remove_container_version_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_remove_container_version_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_remove_container_version_details_t (
    version varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

version

(required) The version to remove.

DBMS_CLOUD_OCI_ARTIFACTS_REPOSITORY_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_artifacts_repository_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_repository_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_artifacts_repository_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_ARTIFACTS_REPOSITORY_COLLECTION_T Type

A list of repositories.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_repository_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_artifacts_repository_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_repository_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_repository_collection_t (
    items dbms_cloud_oci_artifacts_repository_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) The listed repositories.

DBMS_CLOUD_OCI_ARTIFACTS_RESTORE_CONTAINER_IMAGE_DETAILS_T Type

Undelete container image request details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_restore_container_image_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_restore_container_image_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_restore_container_image_details_t (
    version varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

version

(optional) Optional version to associate with image.

DBMS_CLOUD_OCI_ARTIFACTS_UPDATE_CONTAINER_CONFIGURATION_DETAILS_T Type

Update container configuration request details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_update_container_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_repository_created_on_first_push number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_update_container_configuration_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_update_container_configuration_details_t (
    is_repository_created_on_first_push number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_repository_created_on_first_push

(optional) Whether to create a new container repository when a container is pushed to a new repository path. Repositories created in this way belong to the root compartment.

DBMS_CLOUD_OCI_ARTIFACTS_UPDATE_CONTAINER_IMAGE_DETAILS_T Type

Details for updating a container image.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_update_container_image_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_update_container_image_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_update_container_image_details_t (
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_ARTIFACTS_UPDATE_CONTAINER_IMAGE_SIGNATURE_DETAILS_T Type

Details for updating a container image signature.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_update_container_image_signature_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_update_container_image_signature_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_update_container_image_signature_details_t (
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_ARTIFACTS_UPDATE_CONTAINER_REPOSITORY_DETAILS_T Type

Update container repository request details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_update_container_repository_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_immutable number,
  is_public number,
  readme dbms_cloud_oci_artifacts_container_repository_readme_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_update_container_repository_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_update_container_repository_details_t (
    is_immutable number,
    is_public number,
    readme dbms_cloud_oci_artifacts_container_repository_readme_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_immutable

(optional) Whether the repository is immutable. Images cannot be overwritten in an immutable repository.

is_public

(optional) Whether the repository is public. A public repository allows unauthenticated access.

readme

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_ARTIFACTS_UPDATE_GENERIC_ARTIFACT_BY_PATH_DETAILS_T Type

Details for updating an artifact by providing its `artifactPath` and `version`.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_update_generic_artifact_by_path_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_update_generic_artifact_by_path_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_update_generic_artifact_by_path_details_t (
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_ARTIFACTS_UPDATE_GENERIC_ARTIFACT_DETAILS_T Type

Details for updating an artifact by providing its OCID.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_update_generic_artifact_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_update_generic_artifact_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_update_generic_artifact_details_t (
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_ARTIFACTS_UPDATE_REPOSITORY_DETAILS_T Type

Details for updating a repository.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_update_repository_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  repository_type varchar2(32767),
  description varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_update_repository_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_update_repository_details_t (
    display_name varchar2,
    repository_type varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

display_name

(optional) The repository name.

repository_type

(required) The repository's supported artifact type.

description

(optional) The repository description.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_ARTIFACTS_UPDATE_GENERIC_REPOSITORY_DETAILS_T Type

Details for updating an artifact repository.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_artifacts_update_generic_repository_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_artifacts_update_repository_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_update_generic_repository_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_artifacts_update_generic_repository_details_t (
    display_name varchar2,
    repository_type varchar2,
    description varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_artifacts_update_generic_repository_details_t is a subtype of the dbms_cloud_oci_artifacts_update_repository_details_t type.

Was this article helpful?