Marketplace Publisher Common Types

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

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

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_ARTIFACT_T Type

Base model object for the artifacts.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_artifact_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  artifact_type varchar2(32767),
  status varchar2(32767),
  status_notes varchar2(32767),
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  compartment_id varchar2(32767),
  publisher_id varchar2(32767),
  time_updated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_artifact_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_artifact_t (
    id varchar2,
    display_name varchar2,
    artifact_type varchar2,
    status varchar2,
    status_notes varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    compartment_id varchar2,
    publisher_id varchar2,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(required) Unique OCID identifier for the artifact.

display_name

(required) A display name for the artifact.

artifact_type

(required) Artifact type for the artifact.

Allowed values are: 'CONTAINER_IMAGE', 'HELM_CHART'

status

(required) The current status for the Artifact.

Allowed values are: 'IN_PROGRESS', 'AVAILABLE', 'UNAVAILABLE'

status_notes

(optional) Status notes for the Artifact.

lifecycle_state

(required) The current state for the Artifact.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

time_created

(required) The date and time the artifact was created, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

compartment_id

(required) The unique identifier for the compartment.

publisher_id

(required) The unique identifier for the publisher.

time_updated

(required) The date and time the artifact was updated, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_ARTIFACT_SUMMARY_T Type

The model for the artifact summary.

Syntax

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

Fields

Field Description

id

(required) Unique identifier for the artifact.

compartment_id

(required) The unique identifier for the compartment.

display_name

(required) The display name for the artifact.

artifact_type

(required) Artifact Type for the artifact.

Allowed values are: 'CONTAINER_IMAGE', 'HELM_CHART'

lifecycle_state

(required) The current state for the Artifact.

status

(required) The current status for the Artifact.

time_created

(required) The date and time the artifact was created, in the format defined by RFC3339. Example: `2023-03-27T21:10:29.600Z`

time_updated

(required) The date and time the artifact was updated, in the format defined by RFC3339. Example: `2023-03-27T21:10:29.600Z`

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_ARTIFACT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_marketplace_publisher_artifact_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_artifact_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_marketplace_publisher_artifact_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_ARTIFACT_COLLECTION_T Type

Results of the artifact search. Contains the artifact items.

Syntax

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

Fields

Field Description

items

(required) List of artifact summary.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_CATEGORY_T Type

The model for the category details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_category_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  code varchar2(32767),
  product_code varchar2(32767),
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_category_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_category_t (
    name varchar2,
    code varchar2,
    product_code varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) The name for the category.

code

(required) The code of the category.

product_code

(required) The product that the category belongs to.

lifecycle_state

(required) The current state for the category.

Allowed values are: 'ACTIVE', 'INACTIVE'

time_created

(required) The date and time the category was created, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

time_updated

(required) The date and time the category was updated, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_CATEGORY_SUMMARY_T Type

The model for the category summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_category_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  code varchar2(32767),
  product_code varchar2(32767),
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_category_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_category_summary_t (
    name varchar2,
    code varchar2,
    product_code varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) The name of the category.

code

(required) The code of the category.

product_code

(required) The product that the category belongs.

lifecycle_state

(required) The current state of the category.

time_created

(required) The date and time the category was created, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

time_updated

(required) The date and time the category was updated, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_CATEGORY_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_marketplace_publisher_category_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_category_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_marketplace_publisher_category_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_CATEGORY_COLLECTION_T Type

Results of a category search. Contains the category items.

Syntax

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

Fields

Field Description

items

(required) List of category summary.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_CHANGE_ARTIFACT_COMPARTMENT_DETAILS_T Type

Contains details indicating which compartment the artifact should move to.

Syntax

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

Fields

Field Description

compartment_id

(required) The unique identifier of the compartment for the artifact.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_CHANGE_LISTING_COMPARTMENT_DETAILS_T Type

Contains details indicating which compartment the listing should move to.

Syntax

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

Fields

Field Description

compartment_id

(optional) The id of the compartment which the listing should be moved.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_CHANGE_TERM_COMPARTMENT_DETAILS_T Type

Contains details indicating which compartment the term should move to

Syntax

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

Fields

Field Description

compartment_id

(optional) The id of the compartment which the term should be moved.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_CONTAINER_IMAGE_DETAILS_T Type

Container Image details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_container_image_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  source_registry_id varchar2(32767),
  source_registry_url varchar2(32767),
  validation_status varchar2(32767),
  validation_error varchar2(32767),
  publication_status varchar2(32767),
  publication_error varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_container_image_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_container_image_details_t (
    source_registry_id varchar2,
    source_registry_url varchar2,
    validation_status varchar2,
    validation_error varchar2,
    publication_status varchar2,
    publication_error varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

source_registry_id

(optional) The source registry OCID of the container image.

source_registry_url

(required) The source registry url of the container image.

validation_status

(required) image validation status

Allowed values are: 'VALIDATION_IN_PROGRESS', 'VALIDATION_FAILED', 'VALIDATION_COMPLETED'

validation_error

(optional) image validation failure errors

publication_status

(required) image publication status

Allowed values are: 'PUBLICATION_IN_PROGRESS', 'PUBLICATION_COMPLETED', 'PUBLICATION_FAILED'

publication_error

(optional) image publication failure errors

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_CONTAINER_IMAGE_ARTIFACT_T Type

Container Image artifact details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_container_image_artifact_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_marketplace_publisher_artifact_t (
  container_image dbms_cloud_oci_marketplace_publisher_container_image_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_container_image_artifact_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_container_image_artifact_t (
    id varchar2,
    display_name varchar2,
    artifact_type varchar2,
    status varchar2,
    status_notes varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    compartment_id varchar2,
    publisher_id varchar2,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    container_image dbms_cloud_oci_marketplace_publisher_container_image_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_marketplace_publisher_container_image_artifact_t is a subtype of the dbms_cloud_oci_marketplace_publisher_artifact_t type.

Fields

Field Description

container_image

(required)

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_REVISION_PACKAGE_T Type

A base object for all types of listing revision packages.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_listing_revision_package_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  listing_revision_id varchar2(32767),
  compartment_id varchar2(32767),
  artifact_id varchar2(32767),
  term_id varchar2(32767),
  package_version varchar2(32767),
  package_type varchar2(32767),
  lifecycle_state varchar2(32767),
  status varchar2(32767),
  are_security_upgrades_provided number,
  is_default number,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  extended_metadata json_element_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_listing_revision_package_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_listing_revision_package_t (
    id varchar2,
    display_name varchar2,
    description varchar2,
    listing_revision_id varchar2,
    compartment_id varchar2,
    artifact_id varchar2,
    term_id varchar2,
    package_version varchar2,
    package_type varchar2,
    lifecycle_state varchar2,
    status varchar2,
    are_security_upgrades_provided number,
    is_default number,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    extended_metadata json_element_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(optional) The OCID for the listing revision package in Marketplace Publisher.

display_name

(required) The name of the listing revision package.

description

(optional) The description of this package.

listing_revision_id

(required) The unique identifier for the listing revision.

compartment_id

(required) The unique identifier for the compartment.

artifact_id

(required) The unique identifier for the artifact.

term_id

(required) The unique identifier for the term.

package_version

(required) The version for the package.

package_type

(required) The package type for the listing.

Allowed values are: 'CONTAINER_IMAGE', 'HELM_CHART'

lifecycle_state

(required) The current state for the listing revision package.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

status

(required) The current status for the listing revision package.

Allowed values are: 'NEW', 'PUBLISH_IN_PROGRESS', 'UNPUBLISH_IN_PROGRESS', 'PUBLISH_FAILED', 'PUBLISHED', 'PUBLISHED_AS_PRIVATE', 'UNPUBLISHED'

are_security_upgrades_provided

(required) Identifies whether security upgrades will be provided for this package.

is_default

(required) Identifies that this will be default package for the listing revision.

time_created

(required) The date and time this listing revision package was created, expressed in RFC 3339 timestamp format. Example: `2016-08-25T21:10:29.600Z`

time_updated

(required) The date and time this listing revision package was updated, expressed in RFC 3339 timestamp format. Example: `2016-08-25T21:10:29.600Z`

extended_metadata

(optional) Additional metadata key/value pairs for the listing revision package summary. For example: `{\"partnerListingRevisionPackageStatus\": \"Published\",\"parentListingRevisionPackageId\": \"1\" }`

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_CONTAINER_PACKAGE_T Type

A package for container image listings.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_container_package_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_marketplace_publisher_listing_revision_package_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_container_package_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_container_package_t (
    id varchar2,
    display_name varchar2,
    description varchar2,
    listing_revision_id varchar2,
    compartment_id varchar2,
    artifact_id varchar2,
    term_id varchar2,
    package_version varchar2,
    package_type varchar2,
    lifecycle_state varchar2,
    status varchar2,
    are_security_upgrades_provided number,
    is_default number,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    extended_metadata json_element_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_marketplace_publisher_container_package_t is a subtype of the dbms_cloud_oci_marketplace_publisher_listing_revision_package_t type.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_CREATE_ARTIFACT_DETAILS_T Type

Common Details to create Marketplace Publisher artifact.

Syntax

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

Fields

Field Description

compartment_id

(required) The unique identifier for the compartment.

display_name

(optional) The display name for the artifact.

artifact_type

(required) Artifact Type for the artifact.

Allowed values are: 'CONTAINER_IMAGE', 'HELM_CHART'

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_MARKETPLACE_PUBLISHER_CREATE_CONTAINER_IMAGE_DETAILS_T Type

Container image details required to create a container artifact.

Syntax

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

Fields

Field Description

source_registry_id

(required) The source registry id of the container image.

source_registry_url

(required) The source registry url of the container image.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_CREATE_CONTAINER_IMAGE_ARTIFACT_DETAILS_T Type

Details to create a new container image artifact.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_create_container_image_artifact_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_marketplace_publisher_create_artifact_details_t (
  container_image dbms_cloud_oci_marketplace_publisher_create_container_image_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_create_container_image_artifact_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_create_container_image_artifact_details_t (
    compartment_id varchar2,
    display_name varchar2,
    artifact_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    container_image dbms_cloud_oci_marketplace_publisher_create_container_image_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_marketplace_publisher_create_container_image_artifact_details_t is a subtype of the dbms_cloud_oci_marketplace_publisher_create_artifact_details_t type.

Fields

Field Description

container_image

(required)

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_CREATE_HELM_CHART_IMAGE_DETAILS_T Type

Helmchart image details required to create an helmchart artifact.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_create_helm_chart_image_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  source_registry_id varchar2(32767),
  source_registry_url varchar2(32767),
  supported_kubernetes_versions dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_create_helm_chart_image_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_create_helm_chart_image_details_t (
    source_registry_id varchar2,
    source_registry_url varchar2,
    supported_kubernetes_versions dbms_cloud_oci_marketplace_publisher_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

source_registry_id

(required) The source registry OCID of the container image.

source_registry_url

(required) The source registry url of the helmchart image.

supported_kubernetes_versions

(optional) The Supported Versions of Kubernetes

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_CREATE_KUBERNETES_IMAGE_ARTIFACT_DETAILS_T Type

Details to create a new helm chart image artifact.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_create_kubernetes_image_artifact_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_marketplace_publisher_create_artifact_details_t (
  helm_chart dbms_cloud_oci_marketplace_publisher_create_helm_chart_image_details_t,
  container_image_artifact_ids dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_create_kubernetes_image_artifact_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_create_kubernetes_image_artifact_details_t (
    compartment_id varchar2,
    display_name varchar2,
    artifact_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    helm_chart dbms_cloud_oci_marketplace_publisher_create_helm_chart_image_details_t,
    container_image_artifact_ids dbms_cloud_oci_marketplace_publisher_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_marketplace_publisher_create_kubernetes_image_artifact_details_t is a subtype of the dbms_cloud_oci_marketplace_publisher_create_artifact_details_t type.

Fields

Field Description

helm_chart

(required)

container_image_artifact_ids

(optional) List of container image artifact uniquie identifiers included in the helm chart.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_CREATE_LISTING_DETAILS_T Type

Details to create a new listing.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_create_listing_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  name varchar2(32767),
  listing_type varchar2(32767),
  package_type varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_create_listing_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_create_listing_details_t (
    compartment_id varchar2,
    name varchar2,
    listing_type varchar2,
    package_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The unique identifier for the compartment.

name

(required) The name for the listing.

listing_type

(required) The listing type for the listing.

Allowed values are: 'OCI_APPLICATION'

package_type

(required) The package type for the listing.

Allowed values are: 'CONTAINER_IMAGE', 'HELM_CHART'

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_MARKETPLACE_PUBLISHER_CREATE_LISTING_REVISION_ATTACHMENT_DETAILS_T Type

Attachment uploaded by the publisher for the listing revision.

Syntax

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

Fields

Field Description

listing_revision_id

(required) The OCID for the listing revision in Marketplace Publisher.

display_name

(optional) The name for the listing revision attachment.

description

(optional) Description for this specified attachment.

attachment_type

(required) The specified attachment type.

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_MARKETPLACE_PUBLISHER_VERSION_DETAILS_T Type

A listing version provided by the Publisher.

Syntax

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

Fields

Field Description

l_number

(required) The version number.

description

(required) The version description.

release_date

(required) The version release date.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LANGUAGE_ITEM_T Type

The model for a language item within an array of filter values.

Syntax

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

Fields

Field Description

name

(required) The name of the item.

code

(required) A code assigned to the item.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_SUPPORT_CONTACT_T Type

Contact information to use to get support.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_support_contact_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  phone varchar2(32767),
  email varchar2(32767),
  subject varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_support_contact_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_support_contact_t (
    name varchar2,
    phone varchar2,
    email varchar2,
    subject varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) The name of the contact.

phone

(optional) The phone number of the contact.

email

(optional) The email of the contact.

subject

(optional) The email subject line to use when contacting support.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_NAMED_LINK_T Type

A link to a resource on the internet.

Syntax

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

Fields

Field Description

name

(required) Text that describes the resource.

url

(required) The URL of the resource.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LANGUAGE_ITEM_TBL Type

Nested table type of dbms_cloud_oci_marketplace_publisher_language_item_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_language_item_tbl FORCE IS TABLE OF (dbms_cloud_oci_marketplace_publisher_language_item_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_SUPPORT_CONTACT_TBL Type

Nested table type of dbms_cloud_oci_marketplace_publisher_support_contact_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_support_contact_tbl FORCE IS TABLE OF (dbms_cloud_oci_marketplace_publisher_support_contact_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_NAMED_LINK_TBL Type

Nested table type of dbms_cloud_oci_marketplace_publisher_named_link_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_named_link_tbl FORCE IS TABLE OF (dbms_cloud_oci_marketplace_publisher_named_link_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_CREATE_LISTING_REVISION_DETAILS_T Type

The model for an Oracle Cloud Infrastructure Marketplace Publisher listing revision.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_create_listing_revision_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  listing_id varchar2(32767),
  version_details dbms_cloud_oci_marketplace_publisher_version_details_t,
  headline varchar2(32767),
  tagline varchar2(32767),
  keywords varchar2(32767),
  short_description varchar2(32767),
  usage_information varchar2(32767),
  long_description varchar2(32767),
  system_requirements varchar2(32767),
  categories dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
  markets dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
  content_language dbms_cloud_oci_marketplace_publisher_language_item_t,
  supportedlanguages dbms_cloud_oci_marketplace_publisher_language_item_tbl,
  support_contacts dbms_cloud_oci_marketplace_publisher_support_contact_tbl,
  support_links dbms_cloud_oci_marketplace_publisher_named_link_tbl,
  status varchar2(32767),
  pricing_type varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_create_listing_revision_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_create_listing_revision_details_t (
    display_name varchar2,
    listing_id varchar2,
    version_details dbms_cloud_oci_marketplace_publisher_version_details_t,
    headline varchar2,
    tagline varchar2,
    keywords varchar2,
    short_description varchar2,
    usage_information varchar2,
    long_description varchar2,
    system_requirements varchar2,
    categories dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
    markets dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
    content_language dbms_cloud_oci_marketplace_publisher_language_item_t,
    supportedlanguages dbms_cloud_oci_marketplace_publisher_language_item_tbl,
    support_contacts dbms_cloud_oci_marketplace_publisher_support_contact_tbl,
    support_links dbms_cloud_oci_marketplace_publisher_named_link_tbl,
    status varchar2,
    pricing_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The name for the listing revision.

listing_id

(required) The unique identifier for the listing this revision belongs to.

version_details

(optional)

headline

(required) Single line introduction for the listing revision.

tagline

(optional) The tagline for the listing revision.

keywords

(optional) Keywords associated with the listing revision.

short_description

(optional) A short description for the listing revision.

usage_information

(optional) Usage information for the listing revision.

long_description

(optional) A long description for the listing revision.

system_requirements

(optional) System requirements for the listing revision.

categories

(required) The categories for the listing revision.

markets

(optional) The markets supported by the listing revision.

content_language

(optional)

supportedlanguages

(optional) Languages supported by the publisher for the listing revision.

support_contacts

(optional) Contact information to use to get support from the publisher for the listing revision.

support_links

(optional) Links to support resources for the listing revision.

status

(optional) The current status of the Listing revision.

pricing_type

(required) The pricing model for the listing revision.

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_MARKETPLACE_PUBLISHER_CREATE_LISTING_REVISION_NOTE_DETAILS_T Type

The model for an Oracle Cloud Infrastructure Marketplace Publisher listing revision note.

Syntax

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

Fields

Field Description

listing_revision_id

(required) The unique identifier of the listing revision that the specified note belongs to.

note_details

(required) Notes provided for the listing revision.

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_MARKETPLACE_PUBLISHER_CREATE_LISTING_REVISION_PACKAGE_DETAILS_T Type

The model for an Oracle Cloud Infrastructure Marketplace Publisher listing revision package.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_create_listing_revision_package_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  listing_revision_id varchar2(32767),
  package_version varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  artifact_id varchar2(32767),
  term_id varchar2(32767),
  is_default number,
  are_security_upgrades_provided number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_create_listing_revision_package_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_create_listing_revision_package_details_t (
    listing_revision_id varchar2,
    package_version varchar2,
    display_name varchar2,
    description varchar2,
    artifact_id varchar2,
    term_id varchar2,
    is_default number,
    are_security_upgrades_provided number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

listing_revision_id

(required) The OCID for the listing revision in Marketplace Publisher.

package_version

(required) The version for the package.

display_name

(optional) The name for the listing revision package.

description

(optional) Description for this package.

artifact_id

(required) The unique identifier for the artifact.

term_id

(required) The unique identifier for the term.

is_default

(optional) Identifies that this will be default package for the listing revision.

are_security_upgrades_provided

(required) Identifies whether security upgrades will be provided for this package.

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_MARKETPLACE_PUBLISHER_CREATE_RELATED_DOCUMENT_ATTACHMENT_DETAILS_T Type

Create Details of the related document attachment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_create_related_document_attachment_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_marketplace_publisher_create_listing_revision_attachment_details_t (
  document_category varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_create_related_document_attachment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_create_related_document_attachment_details_t (
    listing_revision_id varchar2,
    display_name varchar2,
    description varchar2,
    attachment_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    document_category varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_marketplace_publisher_create_related_document_attachment_details_t is a subtype of the dbms_cloud_oci_marketplace_publisher_create_listing_revision_attachment_details_t type.

Fields

Field Description

document_category

(required) The document category of the listing revision attachment.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_CREATE_SCREEN_SHOT_ATTACHMENT_DETAILS_T Type

Create Details of the screenshot attachment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_create_screen_shot_attachment_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_marketplace_publisher_create_listing_revision_attachment_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_create_screen_shot_attachment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_create_screen_shot_attachment_details_t (
    listing_revision_id varchar2,
    display_name varchar2,
    description varchar2,
    attachment_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_marketplace_publisher_create_screen_shot_attachment_details_t is a subtype of the dbms_cloud_oci_marketplace_publisher_create_listing_revision_attachment_details_t type.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_CREATE_TERM_DETAILS_T Type

Details to create Marketplace Publisher term.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_create_term_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  name varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_create_term_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_create_term_details_t (
    compartment_id varchar2,
    name 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 publisher's compartment.

name

(required) The name of the term.

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_MARKETPLACE_PUBLISHER_CREATE_VIDEO_DETAILS_T Type

A link to a video on the internet.

Syntax

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

Fields

Field Description

content_url

(required) The URL of the video.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_CREATE_VIDEO_ATTACHMENT_DETAILS_T Type

Create Details of the video attachment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_create_video_attachment_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_marketplace_publisher_create_listing_revision_attachment_details_t (
  video_attachment_details dbms_cloud_oci_marketplace_publisher_create_video_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_create_video_attachment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_create_video_attachment_details_t (
    listing_revision_id varchar2,
    display_name varchar2,
    description varchar2,
    attachment_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    video_attachment_details dbms_cloud_oci_marketplace_publisher_create_video_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_marketplace_publisher_create_video_attachment_details_t is a subtype of the dbms_cloud_oci_marketplace_publisher_create_listing_revision_attachment_details_t type.

Fields

Field Description

video_attachment_details

(required)

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_ERROR_T Type

Error Information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_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_MARKETPLACE_PUBLISHER_HELM_CHART_IMAGE_DETAILS_T Type

Helmchart image details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_helm_chart_image_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  source_registry_id varchar2(32767),
  source_registry_url varchar2(32767),
  supported_kubernetes_versions dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
  validation_status varchar2(32767),
  validation_error varchar2(32767),
  publication_status varchar2(32767),
  publication_error varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_helm_chart_image_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_helm_chart_image_details_t (
    source_registry_id varchar2,
    source_registry_url varchar2,
    supported_kubernetes_versions dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
    validation_status varchar2,
    validation_error varchar2,
    publication_status varchar2,
    publication_error varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

source_registry_id

(optional) The source registry OCID of the helmchart image.

source_registry_url

(required) source registry url of the helmchart image.

supported_kubernetes_versions

(optional) The supported versions of Kubernetes

validation_status

(required) image validation status.

Allowed values are: 'VALIDATION_IN_PROGRESS', 'VALIDATION_FAILED', 'VALIDATION_COMPLETED'

validation_error

(optional) image validation failure errors

publication_status

(required) image publication status

Allowed values are: 'PUBLICATION_IN_PROGRESS', 'PUBLICATION_COMPLETED', 'PUBLICATION_FAILED'

publication_error

(optional) image validation failure errors

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_HELM_CHART_PACKAGE_T Type

A package for container image listings.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_helm_chart_package_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_marketplace_publisher_listing_revision_package_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_helm_chart_package_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_helm_chart_package_t (
    id varchar2,
    display_name varchar2,
    description varchar2,
    listing_revision_id varchar2,
    compartment_id varchar2,
    artifact_id varchar2,
    term_id varchar2,
    package_version varchar2,
    package_type varchar2,
    lifecycle_state varchar2,
    status varchar2,
    are_security_upgrades_provided number,
    is_default number,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    extended_metadata json_element_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_marketplace_publisher_helm_chart_package_t is a subtype of the dbms_cloud_oci_marketplace_publisher_listing_revision_package_t type.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_KUBERNETES_IMAGE_ARTIFACT_T Type

Kubernetes HelmChart Image artifact details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_kubernetes_image_artifact_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_marketplace_publisher_artifact_t (
  helm_chart dbms_cloud_oci_marketplace_publisher_helm_chart_image_details_t,
  container_image_artifact_ids dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_kubernetes_image_artifact_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_kubernetes_image_artifact_t (
    id varchar2,
    display_name varchar2,
    artifact_type varchar2,
    status varchar2,
    status_notes varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    compartment_id varchar2,
    publisher_id varchar2,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    helm_chart dbms_cloud_oci_marketplace_publisher_helm_chart_image_details_t,
    container_image_artifact_ids dbms_cloud_oci_marketplace_publisher_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_marketplace_publisher_kubernetes_image_artifact_t is a subtype of the dbms_cloud_oci_marketplace_publisher_artifact_t type.

Fields

Field Description

helm_chart

(required)

container_image_artifact_ids

(optional) List of container image artifact unique identifiers included in the helm chart.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_T Type

The model for the Marketplace Publisher listing.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_listing_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  publisher_id varchar2(32767),
  listing_type varchar2(32767),
  name varchar2(32767),
  package_type varchar2(32767),
  extended_metadata json_element_t,
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_listing_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_listing_t (
    id varchar2,
    compartment_id varchar2,
    publisher_id varchar2,
    listing_type varchar2,
    name varchar2,
    package_type varchar2,
    extended_metadata json_element_t,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique OCID identifier for the listing.

compartment_id

(required) The unique identifier for the compartment.

publisher_id

(required) The unique identifier for the publisher.

listing_type

(required) The listing type for the listing.

Allowed values are: 'OCI_APPLICATION'

name

(required) Name for the listing.

package_type

(required) The package type for the listing.

Allowed values are: 'CONTAINER_IMAGE', 'HELM_CHART'

extended_metadata

(optional) Additional metadata key/value pairs for the listing summary. For example: `{\"listingRevisionStatus\": \"Published\",\"listingRevision\": \"1\" }`

lifecycle_state

(optional) The current state of the Listing.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'INACTIVE', 'DELETING', 'DELETED', 'FAILED'

time_created

(required) The date and time the listing was created, in the format defined by RFC3339. Example: `2023-03-27T21:10:29.600Z`

time_updated

(required) The date and time the listing was updated, in the format defined by RFC3339. Example: `2023-03-27T21:10:29.600Z`

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_SUMMARY_T Type

The model for a summary of the publisher listing.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_listing_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  listing_type varchar2(32767),
  name varchar2(32767),
  lifecycle_state varchar2(32767),
  package_type varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_listing_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_listing_summary_t (
    id varchar2,
    compartment_id varchar2,
    listing_type varchar2,
    name varchar2,
    lifecycle_state varchar2,
    package_type varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The unique OCID of the listing.

compartment_id

(required) The unique identifier of the compartment.

listing_type

(required) The listing type of the Listing.

Allowed values are: 'OCI_APPLICATION'

name

(required) The name of the listing.

lifecycle_state

(required) The current state for the Listing.

package_type

(required) The package type for the listing.

Allowed values are: 'CONTAINER_IMAGE', 'HELM_CHART'

time_created

(required) The date and time the listing was created, in the format defined by RFC3339. Example: `2023-03-27T21:10:29.600Z`

time_updated

(required) The date and time the listing was updated, in the format defined by RFC3339. Example: `2023-03-27T21:10:29.600Z`

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_marketplace_publisher_listing_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_listing_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_marketplace_publisher_listing_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_COLLECTION_T Type

Results of listing search. Contains Listing items.

Syntax

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

Fields

Field Description

items

(required) List of listing summary.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_REVISION_ICON_ATTACHMENT_T Type

An attachment uploaded by the Publisher to be attached to the listing revision.

Syntax

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

Fields

Field Description

content_url

(required) The content URL of the uploaded data.

mime_type

(required) The MIME type of the uploaded data.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_REVISION_T Type

The model for an Oracle Cloud Infrastructure Marketplace Publisher listing revision.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_listing_revision_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  listing_id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  revision_number varchar2(32767),
  version_details dbms_cloud_oci_marketplace_publisher_version_details_t,
  headline varchar2(32767),
  tagline varchar2(32767),
  keywords varchar2(32767),
  short_description varchar2(32767),
  usage_information varchar2(32767),
  long_description varchar2(32767),
  system_requirements varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  categories dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
  markets dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
  content_language dbms_cloud_oci_marketplace_publisher_language_item_t,
  supportedlanguages dbms_cloud_oci_marketplace_publisher_language_item_tbl,
  support_contacts dbms_cloud_oci_marketplace_publisher_support_contact_tbl,
  support_links dbms_cloud_oci_marketplace_publisher_named_link_tbl,
  icon dbms_cloud_oci_marketplace_publisher_listing_revision_icon_attachment_t,
  status varchar2(32767),
  status_notes varchar2(32767),
  lifecycle_state varchar2(32767),
  package_type varchar2(32767),
  pricing_type varchar2(32767),
  allowed_tenancies dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
  are_internal_tenancy_launch_allowed number,
  extended_metadata json_element_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_listing_revision_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_listing_revision_t (
    id varchar2,
    listing_id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    revision_number varchar2,
    version_details dbms_cloud_oci_marketplace_publisher_version_details_t,
    headline varchar2,
    tagline varchar2,
    keywords varchar2,
    short_description varchar2,
    usage_information varchar2,
    long_description varchar2,
    system_requirements varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    categories dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
    markets dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
    content_language dbms_cloud_oci_marketplace_publisher_language_item_t,
    supportedlanguages dbms_cloud_oci_marketplace_publisher_language_item_tbl,
    support_contacts dbms_cloud_oci_marketplace_publisher_support_contact_tbl,
    support_links dbms_cloud_oci_marketplace_publisher_named_link_tbl,
    icon dbms_cloud_oci_marketplace_publisher_listing_revision_icon_attachment_t,
    status varchar2,
    status_notes varchar2,
    lifecycle_state varchar2,
    package_type varchar2,
    pricing_type varchar2,
    allowed_tenancies dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
    are_internal_tenancy_launch_allowed number,
    extended_metadata json_element_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique OCID identifier for the listing revision in Marketplace Publisher.

listing_id

(required) The unique identifier for the listing this revision belongs to.

compartment_id

(optional) The unique identifier for the compartment.

display_name

(required) The name for the listing revision.

revision_number

(optional) The revision number for the listing revision. This is an internal attribute

version_details

(optional)

headline

(required) Single line introduction for the listing revision.

tagline

(optional) The tagline of the listing revision.

keywords

(optional) Keywords associated with the listing revision.

short_description

(optional) A short description for the listing revision.

usage_information

(optional) Usage information for the listing revision.

long_description

(optional) A long description for the listing revision.

system_requirements

(optional) System requirements for the listing revision.

time_created

(required) The time the listing revision was created. An RFC3339 formatted datetime string.

time_updated

(required) The time the listing revision was updated. An RFC3339 formatted datetime string.

categories

(required) The categories for the listing revsion.

markets

(optional) The markets supported by the listing revision.

content_language

(optional)

supportedlanguages

(optional) Languages supported by the publisher for the listing revision.

support_contacts

(optional) Contact information to use to get support from the publisher for the listing revision.

support_links

(optional) Links to support resources for the listing revision.

icon

(optional)

status

(required) The current status for the Listing revision.

Allowed values are: 'NEW', 'PENDING_REVIEW', 'REVIEW_IN_PROGRESS', 'REJECTED', 'APPROVED', 'PUBLISH_IN_PROGRESS', 'PUBLISH_FAILED', 'PUBLISHED', 'PUBLISH_AS_PRIVATE_FAILED', 'PUBLISHED_AS_PRIVATE', 'PUBLISH_AS_PRIVATE_IN_PROGRESS', 'UNPUBLISH_IN_PROGRESS', 'UNPUBLISHED'

status_notes

(optional) Status notes for the listing revision.

lifecycle_state

(required) The current state of the listing revision.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

package_type

(required) The listing's package type. Populated from the listing.

Allowed values are: 'CONTAINER_IMAGE', 'HELM_CHART'

pricing_type

(required) The pricing model for the listing revision.

Allowed values are: 'FREE', 'BYOL', 'PAYGO'

allowed_tenancies

(optional) Allowed tenancies provided when a listing revision is published as private.

are_internal_tenancy_launch_allowed

(optional) Identifies whether publisher allows internal tenancy launches for the listing revision.

extended_metadata

(optional) Additional metadata key/value pairs for the listing revision summary.

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_REVISION_ATTACHMENT_T Type

A attachment for the listing revision. User can provide an external URL/upload a file

Syntax

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

Fields

Field Description

id

(required) Unique OCID identifier for the listing revision attachment.

compartment_id

(required) The unique identifier for the compartment.

listing_revision_id

(required) The unique identifier of the listing revision that the specified attachment belongs to.

display_name

(required) Name of the listing revision attachment.

description

(optional) Description of the listing revision attachment.

attachment_type

(required) Possible values for the publisher listing revision attachments. The attachment type informs the type of attachment for the listing revision.

Allowed values are: 'RELATED_DOCUMENT', 'SCREENSHOT', 'VIDEO'

lifecycle_state

(required) The current state of the attachment.

Allowed values are: 'ACTIVE', 'INACTIVE', 'DELETED'

time_created

(required) The time the attachment was created. An RFC3339 formatted datetime string.

time_updated

(required) The time the attachment was updated. An RFC3339 formatted datetime string.

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_REVISION_ATTACHMENT_SUMMARY_T Type

The model for a summary of a listing revision related attachments.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_listing_revision_attachment_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  listing_revision_id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  attachment_type varchar2(32767),
  content_url varchar2(32767),
  mime_type varchar2(32767),
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_listing_revision_attachment_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_listing_revision_attachment_summary_t (
    id varchar2,
    listing_revision_id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    attachment_type varchar2,
    content_url varchar2,
    mime_type varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the listing revision attachment.

listing_revision_id

(required) The ID of the listing revision.

compartment_id

(required) The unique identifier for the compartment.

display_name

(required) The name of the specified document.

attachment_type

(required) The specified attachment type.

content_url

(required) The URL of the specified attachment.

mime_type

(optional) The MIME type of the screenshot.

lifecycle_state

(optional) The current state of the document.

time_created

(required) The date and time the related document was created, expressed in RFC 3339 timestamp format. Example: `2022-09-24T21:10:29.600Z`

time_updated

(required) The date and time the related document was updated, expressed in RFC 3339 timestamp format. Example: `2022-09-24T21:10:29.600Z`

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_REVISION_ATTACHMENT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_marketplace_publisher_listing_revision_attachment_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_listing_revision_attachment_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_marketplace_publisher_listing_revision_attachment_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_REVISION_ATTACHMENT_COLLECTION_T Type

Results of the listing attachments search. Contains attachment items.

Syntax

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

Fields

Field Description

items

(required) List of attachment summary.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_REVISION_SUMMARY_T Type

The model for a summary of an Oracle Cloud Infrastructure Marketplace Publisher listing revision.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_listing_revision_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  listing_id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  status varchar2(32767),
  lifecycle_state varchar2(32767),
  package_type varchar2(32767),
  pricing_type varchar2(32767),
  short_description varchar2(32767),
  tagline varchar2(32767),
  icon dbms_cloud_oci_marketplace_publisher_listing_revision_icon_attachment_t,
  markets dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
  categories dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_listing_revision_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_listing_revision_summary_t (
    id varchar2,
    listing_id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    status varchar2,
    lifecycle_state varchar2,
    package_type varchar2,
    pricing_type varchar2,
    short_description varchar2,
    tagline varchar2,
    icon dbms_cloud_oci_marketplace_publisher_listing_revision_icon_attachment_t,
    markets dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
    categories dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID for the listing revision in Marketplace Publisher.

listing_id

(required) The OCID for the listing in Marketplace Publisher.

compartment_id

(required) The unique identifier for the compartment.

display_name

(required) The name of the listing revision.

status

(required) The current status of the listing revision.

lifecycle_state

(required) The current state of the Listing.

package_type

(required) The listing's package type.

Allowed values are: 'CONTAINER_IMAGE', 'HELM_CHART'

pricing_type

(required) Pricing type of the listing.

short_description

(optional) A short description of the listing revision.

tagline

(optional) The tagline of the listing revision.

icon

(optional)

markets

(optional) The markets where you can deploy the listing.

categories

(required) Categories that the listing revision belongs to.

time_created

(required) The date and time the listing revision was created, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

time_updated

(required) The date and time the listing revision was updated, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_REVISION_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_marketplace_publisher_listing_revision_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_listing_revision_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_marketplace_publisher_listing_revision_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_REVISION_COLLECTION_T Type

Results of listing revision search. Contains Listing revision items.

Syntax

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

Fields

Field Description

items

(required) List of listing revision summary.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_REVISION_NOTE_T Type

The model for the listing revision notes.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_listing_revision_note_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  listing_revision_id varchar2(32767),
  compartment_id varchar2(32767),
  note_source varchar2(32767),
  note_details varchar2(32767),
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_listing_revision_note_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_listing_revision_note_t (
    id varchar2,
    listing_revision_id varchar2,
    compartment_id varchar2,
    note_source varchar2,
    note_details varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the listing revision note.

listing_revision_id

(required) The unique identifier of the listing revision that the specified note belongs to.

compartment_id

(required) The unique identifier for the compartment.

note_source

(required) type of the note.

Allowed values are: 'PUBLISHER', 'ADMINISTRATOR'

note_details

(required) Notes provided for the listing revision.

lifecycle_state

(optional) The current state of the listing revision note.

Allowed values are: 'ACTIVE', 'DELETED'

time_created

(required) The date and time the listing revision note was created, expressed in RFC 3339 timestamp format. Example: `2022-09-24T21:10:29.600Z`

time_updated

(required) The date and time the listing revision note was updated, expressed in RFC 3339 timestamp format. Example: `2022-09-24T21:10:29.600Z`

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_REVISION_NOTE_SUMMARY_T Type

The model for a summary of a listing revision notes.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_listing_revision_note_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  listing_revision_id varchar2(32767),
  compartment_id varchar2(32767),
  note_source varchar2(32767),
  note_details varchar2(32767),
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_listing_revision_note_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_listing_revision_note_summary_t (
    id varchar2,
    listing_revision_id varchar2,
    compartment_id varchar2,
    note_source varchar2,
    note_details varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the listing revision note.

listing_revision_id

(required) The unique identifier of the listing revision that the specified note belongs to.

compartment_id

(required) The unique identifier for the compartment.

note_source

(required) type of the note.

note_details

(required) Notes provided for the listing revision.

lifecycle_state

(optional) The current state of the note.

time_created

(required) The date and time the listing revision note was created, expressed in RFC 3339 timestamp format. Example: `2022-09-24T21:10:29.600Z`

time_updated

(required) The date and time the listing revision note was updated, expressed in RFC 3339 timestamp format. Example: `2022-09-24T21:10:29.600Z`

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_REVISION_NOTE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_marketplace_publisher_listing_revision_note_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_listing_revision_note_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_marketplace_publisher_listing_revision_note_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_REVISION_NOTE_COLLECTION_T Type

Results of note search. Contains listing revision note items.

Syntax

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

Fields

Field Description

items

(required) List of note summary.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_REVISION_PACKAGE_SUMMARY_T Type

The model for a summary of a package.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_listing_revision_package_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  listing_revision_id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  package_version varchar2(32767),
  package_type varchar2(32767),
  are_security_upgrades_provided number,
  lifecycle_state varchar2(32767),
  status varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_listing_revision_package_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_listing_revision_package_summary_t (
    id varchar2,
    listing_revision_id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    package_version varchar2,
    package_type varchar2,
    are_security_upgrades_provided number,
    lifecycle_state varchar2,
    status varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The ID of the listing revision package.

listing_revision_id

(required) The ID of the listing revision.

compartment_id

(required) The unique identifier for the compartment.

display_name

(required) The name of the listing revision package.

package_version

(required) The version of the specified package.

package_type

(required) The specified package's type.

Allowed values are: 'CONTAINER_IMAGE', 'HELM_CHART'

are_security_upgrades_provided

(required) Identifies whether security upgrades will be provided for this package.

lifecycle_state

(required) The current state of the Package.

status

(required) The current status of the package.

time_created

(required) The date and time the publication package was created, expressed in RFC 3339 timestamp format. Example: `2022-09-24T21:10:29.600Z`

time_updated

(required) The date and time the publication package was updated, expressed in RFC 3339 timestamp format. Example: `2022-09-24T21:10:29.600Z`

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_REVISION_PACKAGE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_marketplace_publisher_listing_revision_package_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_listing_revision_package_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_marketplace_publisher_listing_revision_package_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_LISTING_REVISION_PACKAGE_COLLECTION_T Type

Results of package search. Contains Package items.

Syntax

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

Fields

Field Description

items

(required) List of package summary.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_MARKET_T Type

The model for the market details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_market_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  code varchar2(32767),
  category_code varchar2(32767),
  realm_code varchar2(32767),
  bill_to_countries dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_market_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_market_t (
    name varchar2,
    code varchar2,
    category_code varchar2,
    realm_code varchar2,
    bill_to_countries dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) The name of the market.

code

(required) The code of the market.

category_code

(required) The category code of the market.

realm_code

(optional) The realm code of the market.

bill_to_countries

(required) bill to countries for the market.

lifecycle_state

(required) The current state for the market.

Allowed values are: 'ACTIVE', 'INACTIVE'

time_created

(required) The date and time the market was created, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

time_updated

(required) The date and time the market was updated, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_MARKET_SUMMARY_T Type

The model for the market metadata.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_market_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  code varchar2(32767),
  category_code varchar2(32767),
  bill_to_countries dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_market_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_market_summary_t (
    name varchar2,
    code varchar2,
    category_code varchar2,
    bill_to_countries dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) The name of the product.

code

(required) The code of the product.

category_code

(required) The category code for the market.

bill_to_countries

(required) Bill to countries for the market.

lifecycle_state

(required) The current state for the market.

time_created

(required) The date and time the market was created, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

time_updated

(required) The date and time the market was updated, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_MARKET_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_marketplace_publisher_market_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_market_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_marketplace_publisher_market_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_MARKET_COLLECTION_T Type

Results of a market search. Contains the market items.

Syntax

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

Fields

Field Description

items

(required) List of market summary.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_OPN_MEMBERSHIP_T Type

OPN membership information

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_opn_membership_t FORCE AUTHID CURRENT_USER IS OBJECT (
  time_start timestamp with time zone,
  time_end timestamp with time zone,
  opn_status varchar2(32767),
  opn_number varchar2(32767),
  opn_membership_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_opn_membership_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_opn_membership_t (
    time_start timestamp with time zone,
    time_end timestamp with time zone,
    opn_status varchar2,
    opn_number varchar2,
    opn_membership_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

time_start

(optional) OPN membership start date. An RFC3339 formatted datetime string

time_end

(optional) OPN membership end date. An RFC3339 formatted datetime string

opn_status

(optional) OPN status

Allowed values are: 'ACTIVE', 'INACTIVE', 'RENEWAL_IN_PROGRESS'

opn_number

(optional) OPN Number number

opn_membership_type

(optional) OPN membership type

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_PRIVATE_OFFER_ACCOUNT_DETAILS_T Type

Private Offer account details.

Syntax

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

Fields

Field Description

meter

(optional) Meter name

sku

(optional) SKU name

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_PRODUCT_T Type

The model for the product details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_product_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  code varchar2(32767),
  product_group varchar2(32767),
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_product_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_product_t (
    name varchar2,
    code varchar2,
    product_group varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) The name for the product.

code

(required) The code for the product.

product_group

(required) The product group for the product.

lifecycle_state

(required) The current state for the product.

Allowed values are: 'ACTIVE', 'INACTIVE'

time_created

(required) The date and time the product was created, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

time_updated

(required) The date and time the product was updated, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_PRODUCT_SUMMARY_T Type

The model for the product metadata.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_product_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  code varchar2(32767),
  product_group varchar2(32767),
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_product_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_product_summary_t (
    name varchar2,
    code varchar2,
    product_group varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) The name for the product.

code

(optional) The code for the product.

product_group

(optional) The product group for the product.

lifecycle_state

(required) The current state for the product.

time_created

(required) The date and time the product was created, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

time_updated

(required) The date and time the product was updated, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_PRODUCT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_marketplace_publisher_product_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_product_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_marketplace_publisher_product_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_PRODUCT_COLLECTION_T Type

Results of a product search. Contains the product items.

Syntax

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

Fields

Field Description

items

(required) List of product summary.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_PUBLISH_LISTING_REVISION_AS_PRIVATE_DETAILS_T Type

The model for an Oracle Cloud Infrastructure Marketplace Publisher publish as private listing revision.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_publish_listing_revision_as_private_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  allowed_tenancies dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_publish_listing_revision_as_private_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_publish_listing_revision_as_private_details_t (
    allowed_tenancies dbms_cloud_oci_marketplace_publisher_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

allowed_tenancies

(optional) Allowed tenancies provided when a listing is published as private.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_UPLOAD_DATA_T Type

The model for upload data for images and icons.

Syntax

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

Fields

Field Description

name

(optional) The name used to refer to the upload data.

content_url

(optional) The content URL of the upload data.

mime_type

(optional) The MIME type of the upload data.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_PUBLISHER_T Type

The model for a publisher details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_publisher_t FORCE AUTHID CURRENT_USER IS OBJECT (
  publisher_status varchar2(32767),
  notification_email varchar2(32767),
  opn_membership dbms_cloud_oci_marketplace_publisher_opn_membership_t,
  private_offer_account_details dbms_cloud_oci_marketplace_publisher_private_offer_account_details_t,
  id varchar2(32767),
  compartment_id varchar2(32767),
  registry_namespace varchar2(32767),
  legacy_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  year_founded number,
  website_url varchar2(32767),
  contact_email varchar2(32767),
  contact_phone varchar2(32767),
  hq_address varchar2(32767),
  logo dbms_cloud_oci_marketplace_publisher_upload_data_t,
  facebook_url varchar2(32767),
  twitter_url varchar2(32767),
  linkedin_url varchar2(32767),
  publisher_type varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_publisher_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_publisher_t (
    publisher_status varchar2,
    notification_email varchar2,
    opn_membership dbms_cloud_oci_marketplace_publisher_opn_membership_t,
    private_offer_account_details dbms_cloud_oci_marketplace_publisher_private_offer_account_details_t,
    id varchar2,
    compartment_id varchar2,
    registry_namespace varchar2,
    legacy_id varchar2,
    display_name varchar2,
    description varchar2,
    year_founded number,
    website_url varchar2,
    contact_email varchar2,
    contact_phone varchar2,
    hq_address varchar2,
    logo dbms_cloud_oci_marketplace_publisher_upload_data_t,
    facebook_url varchar2,
    twitter_url varchar2,
    linkedin_url varchar2,
    publisher_type varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

publisher_status

(required) publisher status.

Allowed values are: 'NEW', 'APPROVED', 'SUSPENDED', 'REMOVED', 'REJECTED', 'CONTACTED'

notification_email

(optional) The private email address of the publisher product team.

opn_membership

(optional)

private_offer_account_details

(optional)

id

(required) Unique OCID identifier for the publisher.

compartment_id

(required) The root compartment of the Publisher.

registry_namespace

(required) The namespace for the publisher registry to persist artifacts.

legacy_id

(optional) Unique legacy service identifier for the publisher.

display_name

(required) The name of the publisher.

description

(optional) A description of the publisher.

year_founded

(optional) The year the publisher's company or organization was founded.

website_url

(optional) The publisher's website.

contact_email

(required) The public email address of the publisher for customers.

contact_phone

(required) The phone number of the publisher in E.164 format.

hq_address

(optional) The address of the publisher's headquarters.

logo

(optional)

facebook_url

(optional) Publisher's Facebook URL

twitter_url

(optional) Publisher's Twitter URL

linkedin_url

(optional) Publisher's LinkedIn URL

publisher_type

(required) publisher type.

Allowed values are: 'INTERNAL', 'EXTERNAL'

time_created

(required) The time the publisher was created. An RFC3339 formatted datetime string.

time_updated

(required) The time the publisher was updated. An RFC3339 formatted datetime string.

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_PUBLISHER_SUMMARY_T Type

The model for a publisher.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_publisher_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  registry_namespace varchar2(32767),
  legacy_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  year_founded number,
  website_url varchar2(32767),
  contact_email varchar2(32767),
  contact_phone varchar2(32767),
  hq_address varchar2(32767),
  logo dbms_cloud_oci_marketplace_publisher_upload_data_t,
  facebook_url varchar2(32767),
  twitter_url varchar2(32767),
  linkedin_url varchar2(32767),
  publisher_type varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_publisher_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_publisher_summary_t (
    id varchar2,
    compartment_id varchar2,
    registry_namespace varchar2,
    legacy_id varchar2,
    display_name varchar2,
    description varchar2,
    year_founded number,
    website_url varchar2,
    contact_email varchar2,
    contact_phone varchar2,
    hq_address varchar2,
    logo dbms_cloud_oci_marketplace_publisher_upload_data_t,
    facebook_url varchar2,
    twitter_url varchar2,
    linkedin_url varchar2,
    publisher_type varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique OCID identifier for the publisher.

compartment_id

(required) The root compartment of the Publisher.

registry_namespace

(required) The namespace for the publisher registry to persist artifacts.

legacy_id

(optional) Unique legacy service identifier for the publisher.

display_name

(required) The name of the publisher.

description

(optional) A description of the publisher.

year_founded

(optional) The year the publisher's company or organization was founded.

website_url

(optional) The publisher's website.

contact_email

(required) The public email address of the publisher for customers.

contact_phone

(required) The phone number of the publisher in E.164 format.

hq_address

(optional) The address of the publisher's headquarters.

logo

(optional)

facebook_url

(optional) Publisher's Facebook URL

twitter_url

(optional) Publisher's Twitter URL

linkedin_url

(optional) Publisher's LinkedIn URL

publisher_type

(required) publisher type.

Allowed values are: 'INTERNAL', 'EXTERNAL'

time_created

(required) The time the publisher was created. An RFC3339 formatted datetime string.

time_updated

(required) The time the publisher was updated. An RFC3339 formatted datetime string.

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_PUBLISHER_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_marketplace_publisher_publisher_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_publisher_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_marketplace_publisher_publisher_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_PUBLISHER_COLLECTION_T Type

Results of a publisher search. Contains Publisher items.

Syntax

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

Fields

Field Description

items

(required) List of publisher summary.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_RELATED_DOCUMENT_ATTACHMENT_T Type

Related document attachment for the listing revision.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_related_document_attachment_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_marketplace_publisher_listing_revision_attachment_t (
  document_category varchar2(32767),
  content_url varchar2(32767),
  mime_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_related_document_attachment_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_related_document_attachment_t (
    id varchar2,
    compartment_id varchar2,
    listing_revision_id varchar2,
    display_name varchar2,
    description varchar2,
    attachment_type varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    document_category varchar2,
    content_url varchar2,
    mime_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_marketplace_publisher_related_document_attachment_t is a subtype of the dbms_cloud_oci_marketplace_publisher_listing_revision_attachment_t type.

Fields

Field Description

document_category

(optional) Possible lifecycle states.

Allowed values are: 'CASE_STUDIES', 'CUSTOMIZATION_GUIDES', 'DATA_SHEETS', 'PRESS_RELEASE', 'PRODUCT_DOCUMENTATION', 'USER_GUIDES', 'WEBINAR'

content_url

(optional) URL of the uploaded document.

mime_type

(optional) The MIME type of the uploaded data.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_SCREEN_SHOT_ATTACHMENT_T Type

Screenshot attachment for the listing revision.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_screen_shot_attachment_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_marketplace_publisher_listing_revision_attachment_t (
  content_url varchar2(32767),
  mime_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_screen_shot_attachment_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_screen_shot_attachment_t (
    id varchar2,
    compartment_id varchar2,
    listing_revision_id varchar2,
    display_name varchar2,
    description varchar2,
    attachment_type varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    content_url varchar2,
    mime_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_marketplace_publisher_screen_shot_attachment_t is a subtype of the dbms_cloud_oci_marketplace_publisher_listing_revision_attachment_t type.

Fields

Field Description

content_url

(optional) URL of the uploaded document.

mime_type

(optional) The MIME type of the uploaded data.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_SUBMIT_LISTING_REVISION_FOR_REVIEW_DETAILS_T Type

The model for an Oracle Cloud Infrastructure Marketplace Publisher review listing revision.

Syntax

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

Fields

Field Description

note_details

(optional) Notes provided for the listing revision.

are_internal_tenancy_launch_allowed

(optional) Identifies whether publisher allows internal tenancy launches for the listing revision.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_TERM_T Type

Base model object for the term.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_term_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  name varchar2(32767),
  author varchar2(32767),
  compartment_id varchar2(32767),
  publisher_id varchar2(32767),
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_term_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_term_t (
    id varchar2,
    name varchar2,
    author varchar2,
    compartment_id varchar2,
    publisher_id varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(optional) Unique OCID identifier for the term.

name

(required) The name for the term.

author

(required) Who authored the term. Publisher terms will be defaulted to 'PARTNER'.

Allowed values are: 'ORACLE', 'PARTNER'

compartment_id

(required) The unique identifier for the compartment.

publisher_id

(required) The unique identifier for the publisher.

lifecycle_state

(required) The current state for the Term.

Allowed values are: 'ACTIVE', 'INACTIVE'

time_created

(required) The date and time the term was created, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

time_updated

(required) The date and time the term was updated, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_TERM_SUMMARY_T Type

The model for the term summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_term_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  name varchar2(32767),
  author varchar2(32767),
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_term_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_term_summary_t (
    id varchar2,
    compartment_id varchar2,
    name varchar2,
    author varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique OCID identifier for the term.

compartment_id

(required) The unique identifier for the compartment.

name

(required) The name for the term.

author

(required) Who authored the term. Publisher terms will be defaulted to as 'PARTNER'.

lifecycle_state

(required) The current state for the term version.

time_created

(required) The date and time the resource was created, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

time_updated

(required) The date and time the resource was updated, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_TERM_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_marketplace_publisher_term_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_term_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_marketplace_publisher_term_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_TERM_COLLECTION_T Type

Results of the term search. Contains term items.

Syntax

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

Fields

Field Description

items

(required) List of the Terms summary.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_TERM_VERSION_ATTACHMENT_T Type

An attachment uploaded by the Publisher for the term.

Syntax

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

Fields

Field Description

content_url

(required) The content URL of the uploaded data.

mime_type

(required) The MIME type of the uploaded data.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_TERM_VERSION_T Type

Model object for the term version details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_term_version_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  term_id varchar2(32767),
  term_author varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  attachment dbms_cloud_oci_marketplace_publisher_term_version_attachment_t,
  status varchar2(32767),
  author varchar2(32767),
  lifecycle_state varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_term_version_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_term_version_t (
    id varchar2,
    term_id varchar2,
    term_author varchar2,
    display_name varchar2,
    compartment_id varchar2,
    attachment dbms_cloud_oci_marketplace_publisher_term_version_attachment_t,
    status varchar2,
    author varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(optional) Unique OCID identifier for the term version.

term_id

(required) The unique identifier for the term.

term_author

(required) Who authored the term. Publisher terms will be defaulted to 'PARTNER'.

display_name

(required) The name for the term version.

compartment_id

(optional) The unique identifier for the compartment.

attachment

(required)

status

(required) The current status for the term version.

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

author

(optional) Who authored the term. Publisher terms will be defaulted to 'PARTNER'.

lifecycle_state

(required) The current state for the term version.

Allowed values are: 'ACTIVE', 'INACTIVE'

time_created

(required) The date and time the term version was created, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

time_updated

(required) The date and time the term version was updated, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_TERM_VERSION_SUMMARY_T Type

The model for the term version summary.

Syntax

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

Fields

Field Description

id

(required) Unique OCID identifier for the term version.

compartment_id

(required) The unique identifier for the compartment.

display_name

(required) The name for the term version.

status

(required) The current status for the term version.

lifecycle_state

(required) The current state for the Term version.

time_created

(required) The date and time the term version was created, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

time_updated

(required) The date and time the time version was updated, in the format defined by RFC3339. Example: `2022-09-15T21:10:29.600Z`

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_TERM_VERSION_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_marketplace_publisher_term_version_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_term_version_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_marketplace_publisher_term_version_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_TERM_VERSION_COLLECTION_T Type

Results of the term version search. Contains term version items.

Syntax

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

Fields

Field Description

items

(required) List of the Terms version summary.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_UPDATE_ARTIFACT_DETAILS_T Type

The model for an Oracle Cloud Infrastructure Marketplace artifact.

Syntax

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

Fields

Field Description

compartment_id

(optional) The unique identifier for the compartment.

display_name

(optional) The display name for the artifact.

artifact_type

(optional) Artifact Type for the artifact.

Allowed values are: 'CONTAINER_IMAGE', 'HELM_CHART'

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_MARKETPLACE_PUBLISHER_UPDATE_CONTAINER_IMAGE_DETAILS_T Type

Container image details required to update a container artifact.

Syntax

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

Fields

Field Description

source_registry_id

(required) The source registry OCID of the container image.

source_registry_url

(required) The source registry url of the container image.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_UPDATE_CONTAINER_IMAGE_ARTIFACT_DETAILS_T Type

Details to update the container image artifact.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_update_container_image_artifact_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_marketplace_publisher_update_artifact_details_t (
  container_image dbms_cloud_oci_marketplace_publisher_update_container_image_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_update_container_image_artifact_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_update_container_image_artifact_details_t (
    compartment_id varchar2,
    display_name varchar2,
    artifact_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    container_image dbms_cloud_oci_marketplace_publisher_update_container_image_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_marketplace_publisher_update_container_image_artifact_details_t is a subtype of the dbms_cloud_oci_marketplace_publisher_update_artifact_details_t type.

Fields

Field Description

container_image

(optional)

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_UPDATE_HELM_CHART_IMAGE_DETAILS_T Type

Helmchart image details required to update an helmchart artifact.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_update_helm_chart_image_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  source_registry_id varchar2(32767),
  source_registry_url varchar2(32767),
  supported_kubernetes_versions dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_update_helm_chart_image_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_update_helm_chart_image_details_t (
    source_registry_id varchar2,
    source_registry_url varchar2,
    supported_kubernetes_versions dbms_cloud_oci_marketplace_publisher_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

source_registry_id

(required) The source registry OCID of the helmchart image.

source_registry_url

(required) The source registry url of the helmchart image.

supported_kubernetes_versions

(optional) The Supported Versions of Kubernetes

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_UPDATE_KUBERNETES_IMAGE_ARTIFACT_DETAILS_T Type

Details to update the kubernetes image artifact.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_update_kubernetes_image_artifact_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_marketplace_publisher_update_artifact_details_t (
  helm_chart dbms_cloud_oci_marketplace_publisher_update_helm_chart_image_details_t,
  container_image_artifact_ids dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_update_kubernetes_image_artifact_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_update_kubernetes_image_artifact_details_t (
    compartment_id varchar2,
    display_name varchar2,
    artifact_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    helm_chart dbms_cloud_oci_marketplace_publisher_update_helm_chart_image_details_t,
    container_image_artifact_ids dbms_cloud_oci_marketplace_publisher_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_marketplace_publisher_update_kubernetes_image_artifact_details_t is a subtype of the dbms_cloud_oci_marketplace_publisher_update_artifact_details_t type.

Fields

Field Description

helm_chart

(optional)

container_image_artifact_ids

(optional) List of container image artifact unique identifiers included in the helm chart.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_UPDATE_LISTING_DETAILS_T Type

Details to update an existing listing.

Syntax

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

Fields

Field Description

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_MARKETPLACE_PUBLISHER_UPDATE_LISTING_REVISION_ATTACHMENT_DETAILS_T Type

Update the attachment for the listing revision.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_update_listing_revision_attachment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  attachment_type varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_update_listing_revision_attachment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_update_listing_revision_attachment_details_t (
    display_name varchar2,
    description varchar2,
    attachment_type 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 name for the listing revision attachment.

description

(optional) The description for the listing revision attachment.

attachment_type

(optional) The specified attachment type for the listing revision attachment.

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_MARKETPLACE_PUBLISHER_UPDATE_LISTING_REVISION_DETAILS_T Type

The model for an Oracle Cloud Infrastructure Marketplace Publisher listing revision.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_update_listing_revision_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  version_details dbms_cloud_oci_marketplace_publisher_version_details_t,
  headline varchar2(32767),
  tagline varchar2(32767),
  keywords varchar2(32767),
  short_description varchar2(32767),
  usage_information varchar2(32767),
  long_description varchar2(32767),
  system_requirements varchar2(32767),
  categories dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
  markets dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
  content_language dbms_cloud_oci_marketplace_publisher_language_item_t,
  supportedlanguages dbms_cloud_oci_marketplace_publisher_language_item_tbl,
  support_contacts dbms_cloud_oci_marketplace_publisher_support_contact_tbl,
  support_links dbms_cloud_oci_marketplace_publisher_named_link_tbl,
  pricing_type varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_update_listing_revision_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_update_listing_revision_details_t (
    display_name varchar2,
    version_details dbms_cloud_oci_marketplace_publisher_version_details_t,
    headline varchar2,
    tagline varchar2,
    keywords varchar2,
    short_description varchar2,
    usage_information varchar2,
    long_description varchar2,
    system_requirements varchar2,
    categories dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
    markets dbms_cloud_oci_marketplace_publisher_varchar2_tbl,
    content_language dbms_cloud_oci_marketplace_publisher_language_item_t,
    supportedlanguages dbms_cloud_oci_marketplace_publisher_language_item_tbl,
    support_contacts dbms_cloud_oci_marketplace_publisher_support_contact_tbl,
    support_links dbms_cloud_oci_marketplace_publisher_named_link_tbl,
    pricing_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The name for the listing revision.

version_details

(optional)

headline

(optional) Single line introduction for the listing revision.

tagline

(optional) The tagline for the listing revision.

keywords

(optional) Keywords associated for the listing revision.

short_description

(optional) A short description for the listing revision.

usage_information

(optional) Usage information for the listing revision.

long_description

(optional) A long description for the listing revision.

system_requirements

(optional) System requirements for the listing revision.

categories

(optional) The categories for the listing revision.

markets

(optional) The markets supported by the listing revision.

content_language

(optional)

supportedlanguages

(optional) Languages supported by the listing revision.

support_contacts

(optional) Contact information to use to get support from the publisher for the listing revision.

support_links

(optional) Links to support resources for the listing revision.

pricing_type

(optional) The pricing model for the listing revision.

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_MARKETPLACE_PUBLISHER_UPDATE_LISTING_REVISION_PACKAGE_DETAILS_T Type

The model for an Oracle Cloud Infrastructure Marketplace Listing revison package.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_update_listing_revision_package_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  package_version varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  artifact_id varchar2(32767),
  term_id varchar2(32767),
  is_default number,
  are_security_upgrades_provided number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_update_listing_revision_package_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_update_listing_revision_package_details_t (
    package_version varchar2,
    display_name varchar2,
    description varchar2,
    artifact_id varchar2,
    term_id varchar2,
    is_default number,
    are_security_upgrades_provided number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

package_version

(optional) The version for the package.

display_name

(optional) The name for the listing revision package.

description

(optional) The description for this package.

artifact_id

(optional) The unique identifier for the artifact.

term_id

(optional) The unique term identifier.

is_default

(optional) Identifies that this will be default package for the listing revision.

are_security_upgrades_provided

(optional) Identifies whether security upgrades will be provided for this package.

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_MARKETPLACE_PUBLISHER_UPDATE_RELATED_DOCUMENT_ATTACHMENT_DETAILS_T Type

Update Details of the related document attachment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_update_related_document_attachment_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_marketplace_publisher_update_listing_revision_attachment_details_t (
  document_category varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_update_related_document_attachment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_update_related_document_attachment_details_t (
    display_name varchar2,
    description varchar2,
    attachment_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    document_category varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_marketplace_publisher_update_related_document_attachment_details_t is a subtype of the dbms_cloud_oci_marketplace_publisher_update_listing_revision_attachment_details_t type.

Fields

Field Description

document_category

(optional) The document category of the listing revision attachment.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_UPDATE_SCREEN_SHOT_ATTACHMENT_DETAILS_T Type

Update details of the screenshot attachment.

Syntax

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

dbms_cloud_oci_marketplace_publisher_update_screen_shot_attachment_details_t is a subtype of the dbms_cloud_oci_marketplace_publisher_update_listing_revision_attachment_details_t type.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_UPDATE_TERM_DETAILS_T Type

Details to update Marketplace Publisher term.

Syntax

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

Fields

Field Description

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_MARKETPLACE_PUBLISHER_UPDATE_TERM_VERSION_DETAILS_T Type

Details to update Marketplace Publisher term version.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_update_term_version_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_marketplace_publisher_update_term_version_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_update_term_version_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) The name for the term version.

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_MARKETPLACE_PUBLISHER_UPDATE_VIDEO_ATTACHMENT_DETAILS_T Type

Details of the video attachment.

Syntax

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

dbms_cloud_oci_marketplace_publisher_update_video_attachment_details_t is a subtype of the dbms_cloud_oci_marketplace_publisher_update_listing_revision_attachment_details_t type.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_VIDEO_ATTACHMENT_T Type

Video attachment for the listing revision.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_video_attachment_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_marketplace_publisher_listing_revision_attachment_t (
  content_url varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_video_attachment_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_video_attachment_t (
    id varchar2,
    compartment_id varchar2,
    listing_revision_id varchar2,
    display_name varchar2,
    description varchar2,
    attachment_type varchar2,
    lifecycle_state varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    content_url varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_marketplace_publisher_video_attachment_t is a subtype of the dbms_cloud_oci_marketplace_publisher_listing_revision_attachment_t type.

Fields

Field Description

content_url

(required) The URL for the video.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_WORK_REQUEST_RESOURCE_T Type

A resource created or operated on by a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_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),
  metadata json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_work_request_resource_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_work_request_resource_t (
    entity_type varchar2,
    action_type varchar2,
    identifier varchar2,
    entity_uri varchar2,
    metadata json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

entity_type

(required) The resource type the work request affects.

action_type

(required) The way in which this resource is affected by the work tracked in the work request. A resource being created, updated, or deleted will remain in the IN_PROGRESS state until work is complete for that resource at which point it will transition to CREATED, UPDATED, or DELETED, respectively.

Allowed values are: 'CREATED', 'UPDATED', 'DELETED', 'IN_PROGRESS', 'RELATED', 'FAILED'

identifier

(required) The identifier of the resource the work request affects.

entity_uri

(optional) The URI path that the user can do a GET on to access the resource metadata

metadata

(optional) Additional information that helps to explain the resource.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_WORK_REQUEST_RESOURCE_TBL Type

Nested table type of dbms_cloud_oci_marketplace_publisher_work_request_resource_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_marketplace_publisher_work_request_resource_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_WORK_REQUEST_T Type

A description of workrequest status

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_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_marketplace_publisher_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_marketplace_publisher_work_request_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_work_request_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_marketplace_publisher_work_request_resource_tbl,
    percent_complete number,
    time_accepted timestamp with time zone,
    time_started timestamp with time zone,
    time_finished timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

operation_type

(required) Type of the work request

Allowed values are: 'PUBLISH_LISTING_REVISION_PACKAGE', 'UNPUBLISH_LISTING_REVISION_PACKAGE', 'PUBLISH_LISTING_REVISION', 'PUBLISH_LISTING_REVISION_AS_PRIVATE', 'WITHDRAW_LISTING_REVISION', 'CLONE_LISTING_REVISION', 'CASCADING_DELETE_LISTING', 'CASCADING_DELETE_LISTING_REVISION', 'MARK_AS_DEFAULT_LISTING_REVISION_PACKAGE', 'CHANGE_LISTING_COMPARTMENT', 'CREATE_ARTIFACT', 'VALIDATE_AND_PUBLISH_ARTIFACT', 'CHANGE_ARTIFACT_COMPARTMENT', 'CHANGE_TERM_COMPARTMENT', 'DELETE_ARTIFACT'

status

(required) Status of current work request.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', 'NEEDS_ATTENTION', 'FAILED', 'SUCCEEDED', 'CANCELING', 'CANCELED'

id

(required) The id of the work request.

compartment_id

(required) The ocid of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request affects multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used

resources

(required) The resources affected by this work request.

percent_complete

(required) Percentage of the request completed.

time_accepted

(required) The date and time the request was created, as described in RFC 3339, section 14.29.

time_started

(optional) The date and time the request was started, as described in RFC 3339, section 14.29.

time_finished

(optional) The date and time the object was finished, as described in RFC 3339.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_WORK_REQUEST_ERROR_T Type

An error encountered while executing a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_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_marketplace_publisher_work_request_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_work_request_error_t (
    code varchar2,
    message varchar2,
    l_timestamp timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

code

(required) A machine-usable code for the error that occured. Error codes are listed on (https://docs.cloud.oracle.com/Content/API/References/apierrors.htm)

message

(required) A human readable description of the issue encountered.

l_timestamp

(required) The time the error occured. An RFC3339 formatted datetime string.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_WORK_REQUEST_ERROR_TBL Type

Nested table type of dbms_cloud_oci_marketplace_publisher_work_request_error_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_marketplace_publisher_work_request_error_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_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_marketplace_publisher_work_request_error_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_marketplace_publisher_work_request_error_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_work_request_error_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_work_request_error_collection_t (
    items dbms_cloud_oci_marketplace_publisher_work_request_error_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of workRequestError objects.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_WORK_REQUEST_LOG_ENTRY_T Type

A log message from the execution of a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_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_marketplace_publisher_work_request_log_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_work_request_log_entry_t (
    message varchar2,
    l_timestamp timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

message

(required) Human-readable log message.

l_timestamp

(required) The time the log message was written. An RFC3339 formatted datetime string

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_WORK_REQUEST_LOG_ENTRY_TBL Type

Nested table type of dbms_cloud_oci_marketplace_publisher_work_request_log_entry_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_work_request_log_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_marketplace_publisher_work_request_log_entry_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_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_marketplace_publisher_work_request_log_entry_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_marketplace_publisher_work_request_log_entry_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_work_request_log_entry_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_work_request_log_entry_collection_t (
    items dbms_cloud_oci_marketplace_publisher_work_request_log_entry_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of workRequestLogEntries.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_WORK_REQUEST_SUMMARY_T Type

A summary of the status of a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_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_marketplace_publisher_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_marketplace_publisher_work_request_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_work_request_summary_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_marketplace_publisher_work_request_resource_tbl,
    percent_complete number,
    time_accepted timestamp with time zone,
    time_started timestamp with time zone,
    time_finished timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

operation_type

(required) Type of the work request

Allowed values are: 'PUBLISH_LISTING_REVISION_PACKAGE', 'UNPUBLISH_LISTING_REVISION_PACKAGE', 'PUBLISH_LISTING_REVISION', 'PUBLISH_LISTING_REVISION_AS_PRIVATE', 'WITHDRAW_LISTING_REVISION', 'CLONE_LISTING_REVISION', 'CASCADING_DELETE_LISTING', 'CASCADING_DELETE_LISTING_REVISION', 'MARK_AS_DEFAULT_LISTING_REVISION_PACKAGE', 'CHANGE_LISTING_COMPARTMENT', 'CREATE_ARTIFACT', 'VALIDATE_AND_PUBLISH_ARTIFACT', 'CHANGE_ARTIFACT_COMPARTMENT', 'CHANGE_TERM_COMPARTMENT', 'DELETE_ARTIFACT'

status

(required) Status of current work request.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', 'NEEDS_ATTENTION', 'FAILED', 'SUCCEEDED', 'CANCELING', 'CANCELED'

id

(required) The id of the work request.

compartment_id

(required) The ocid of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request affects multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used

resources

(required) The resources affected by this work request.

percent_complete

(required) Percentage of the request completed.

time_accepted

(required) The date and time the request was created, as described in RFC 3339, section 14.29.

time_started

(optional) The date and time the request was started, as described in RFC 3339, section 14.29.

time_finished

(optional) The date and time the object was finished, as described in RFC 3339.

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_WORK_REQUEST_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_marketplace_publisher_work_request_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_marketplace_publisher_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_marketplace_publisher_work_request_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_MARKETPLACE_PUBLISHER_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_marketplace_publisher_work_request_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_marketplace_publisher_work_request_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_work_request_summary_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_marketplace_publisher_work_request_summary_collection_t (
    items dbms_cloud_oci_marketplace_publisher_work_request_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of workRequestSummary objects.

Was this article helpful?