Generic Artifacts Content Functions

Package: DBMS_CLOUD_OCI_GAC_GENERIC_ARTIFACTS_CONTENT

GET_GENERIC_ARTIFACT_CONTENT Function

Gets the specified artifact's content.

Syntax

FUNCTION get_generic_artifact_content (
  artifact_id varchar2,
  opc_request_id varchar2 DEFAULT NULL,
  region varchar2 DEFAULT NULL, 
  endpoint varchar2 DEFAULT NULL,
  credential_name varchar2 DEFAULT NULL
) RETURN dbms_cloud_oci_gac_generic_artifacts_content_get_generic_artifact_content_response_t;

Parameters

Parameter Description

artifact_id

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

opc_request_id

(optional) Unique Oracle-assigned request ID Example: `bxxxxxxx-fxxx-4xxx-9xxx-bxxxxxxxxxxx` If you contact Oracle about a request, provide this request ID.

region

(optional) OCI region id. e.g us-phoenix-1 for US West (Phoenix).

endpoint

(optional) The endpoint of the service to call using this function. e.g https://generic.artifacts.{region}.oci.{secondLevelDomain}.If both endpoint and region are given, then endpoint takes precedence.

credential_name

(optional) The name of the credential for authenticating with the corresponding cloud native API.

GET_GENERIC_ARTIFACT_CONTENT_BY_PATH Function

Gets the content of an artifact with a specified `artifactPath` and `version`.

Syntax

FUNCTION get_generic_artifact_content_by_path (
  repository_id varchar2,
  artifact_path varchar2,
  version varchar2,
  opc_request_id varchar2 DEFAULT NULL,
  region varchar2 DEFAULT NULL, 
  endpoint varchar2 DEFAULT NULL,
  credential_name varchar2 DEFAULT NULL
) RETURN dbms_cloud_oci_gac_generic_artifacts_content_get_generic_artifact_content_by_path_response_t;

Parameters

Parameter Description

repository_id

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

artifact_path

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

version

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

opc_request_id

(optional) Unique Oracle-assigned request ID Example: `bxxxxxxx-fxxx-4xxx-9xxx-bxxxxxxxxxxx` If you contact Oracle about a request, provide this request ID.

region

(optional) OCI region id. e.g us-phoenix-1 for US West (Phoenix).

endpoint

(optional) The endpoint of the service to call using this function. e.g https://generic.artifacts.{region}.oci.{secondLevelDomain}.If both endpoint and region are given, then endpoint takes precedence.

credential_name

(optional) The name of the credential for authenticating with the corresponding cloud native API.

PUT_GENERIC_ARTIFACT_CONTENT_BY_PATH Function

Uploads an artifact. Provide `artifactPath`, `version` and content. Avoid entering confidential information when you define the path and version.

Syntax

FUNCTION put_generic_artifact_content_by_path (
  repository_id varchar2,
  artifact_path varchar2,
  version varchar2,
  generic_artifact_content_body blob,
  if_match varchar2 DEFAULT NULL,
  opc_request_id varchar2 DEFAULT NULL,
  region varchar2 DEFAULT NULL, 
  endpoint varchar2 DEFAULT NULL,
  credential_name varchar2 DEFAULT NULL
) RETURN dbms_cloud_oci_gac_generic_artifacts_content_put_generic_artifact_content_by_path_response_t;

Parameters

Parameter Description

repository_id

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

artifact_path

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

version

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

generic_artifact_content_body

(required) Uploads an artifact. Provide artifact path, version and content. Avoid entering confidential information when you define the path and version.

if_match

(optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the `etag` from a previous GET or POST response for that resource. The resource will be updated or deleted only if the `etag` you provide matches the resource's current `etag` value. When 'if-match' is provided and its value does not exactly match the 'etag' of the resource on the server, the request fails with the 412 response code.

opc_request_id

(optional) Unique Oracle-assigned request ID Example: `bxxxxxxx-fxxx-4xxx-9xxx-bxxxxxxxxxxx` If you contact Oracle about a request, provide this request ID.

region

(optional) OCI region id. e.g us-phoenix-1 for US West (Phoenix).

endpoint

(optional) The endpoint of the service to call using this function. e.g https://generic.artifacts.{region}.oci.{secondLevelDomain}.If both endpoint and region are given, then endpoint takes precedence.

credential_name

(optional) The name of the credential for authenticating with the corresponding cloud native API.