1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DevOps
  5. getDeployArtifacts
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

oci.DevOps.getDeployArtifacts

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

This data source provides the list of Deploy Artifacts in Oracle Cloud Infrastructure Devops service.

Returns a list of deployment artifacts.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testDeployArtifacts = oci.DevOps.getDeployArtifacts({
    compartmentId: compartmentId,
    displayName: deployArtifactDisplayName,
    id: deployArtifactId,
    projectId: testProject.id,
    state: deployArtifactState,
});
Copy
import pulumi
import pulumi_oci as oci

test_deploy_artifacts = oci.DevOps.get_deploy_artifacts(compartment_id=compartment_id,
    display_name=deploy_artifact_display_name,
    id=deploy_artifact_id,
    project_id=test_project["id"],
    state=deploy_artifact_state)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/devops"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := devops.GetDeployArtifacts(ctx, &devops.GetDeployArtifactsArgs{
			CompartmentId: pulumi.StringRef(compartmentId),
			DisplayName:   pulumi.StringRef(deployArtifactDisplayName),
			Id:            pulumi.StringRef(deployArtifactId),
			ProjectId:     pulumi.StringRef(testProject.Id),
			State:         pulumi.StringRef(deployArtifactState),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testDeployArtifacts = Oci.DevOps.GetDeployArtifacts.Invoke(new()
    {
        CompartmentId = compartmentId,
        DisplayName = deployArtifactDisplayName,
        Id = deployArtifactId,
        ProjectId = testProject.Id,
        State = deployArtifactState,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DevOps.DevOpsFunctions;
import com.pulumi.oci.DevOps.inputs.GetDeployArtifactsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var testDeployArtifacts = DevOpsFunctions.getDeployArtifacts(GetDeployArtifactsArgs.builder()
            .compartmentId(compartmentId)
            .displayName(deployArtifactDisplayName)
            .id(deployArtifactId)
            .projectId(testProject.id())
            .state(deployArtifactState)
            .build());

    }
}
Copy
variables:
  testDeployArtifacts:
    fn::invoke:
      function: oci:DevOps:getDeployArtifacts
      arguments:
        compartmentId: ${compartmentId}
        displayName: ${deployArtifactDisplayName}
        id: ${deployArtifactId}
        projectId: ${testProject.id}
        state: ${deployArtifactState}
Copy

Using getDeployArtifacts

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getDeployArtifacts(args: GetDeployArtifactsArgs, opts?: InvokeOptions): Promise<GetDeployArtifactsResult>
function getDeployArtifactsOutput(args: GetDeployArtifactsOutputArgs, opts?: InvokeOptions): Output<GetDeployArtifactsResult>
Copy
def get_deploy_artifacts(compartment_id: Optional[str] = None,
                         display_name: Optional[str] = None,
                         filters: Optional[Sequence[_devops.GetDeployArtifactsFilter]] = None,
                         id: Optional[str] = None,
                         project_id: Optional[str] = None,
                         state: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetDeployArtifactsResult
def get_deploy_artifacts_output(compartment_id: Optional[pulumi.Input[str]] = None,
                         display_name: Optional[pulumi.Input[str]] = None,
                         filters: Optional[pulumi.Input[Sequence[pulumi.Input[_devops.GetDeployArtifactsFilterArgs]]]] = None,
                         id: Optional[pulumi.Input[str]] = None,
                         project_id: Optional[pulumi.Input[str]] = None,
                         state: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetDeployArtifactsResult]
Copy
func GetDeployArtifacts(ctx *Context, args *GetDeployArtifactsArgs, opts ...InvokeOption) (*GetDeployArtifactsResult, error)
func GetDeployArtifactsOutput(ctx *Context, args *GetDeployArtifactsOutputArgs, opts ...InvokeOption) GetDeployArtifactsResultOutput
Copy

> Note: This function is named GetDeployArtifacts in the Go SDK.

public static class GetDeployArtifacts 
{
    public static Task<GetDeployArtifactsResult> InvokeAsync(GetDeployArtifactsArgs args, InvokeOptions? opts = null)
    public static Output<GetDeployArtifactsResult> Invoke(GetDeployArtifactsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetDeployArtifactsResult> getDeployArtifacts(GetDeployArtifactsArgs args, InvokeOptions options)
public static Output<GetDeployArtifactsResult> getDeployArtifacts(GetDeployArtifactsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DevOps/getDeployArtifacts:getDeployArtifacts
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId string
The OCID of the compartment in which to list resources.
DisplayName string
A filter to return only resources that match the entire display name given.
Filters Changes to this property will trigger replacement. List<GetDeployArtifactsFilter>
Id string
Unique identifier or OCID for listing a single resource by ID.
ProjectId string
unique project identifier
State string
A filter to return only DeployArtifacts that matches the given lifecycleState.
CompartmentId string
The OCID of the compartment in which to list resources.
DisplayName string
A filter to return only resources that match the entire display name given.
Filters Changes to this property will trigger replacement. []GetDeployArtifactsFilter
Id string
Unique identifier or OCID for listing a single resource by ID.
ProjectId string
unique project identifier
State string
A filter to return only DeployArtifacts that matches the given lifecycleState.
compartmentId String
The OCID of the compartment in which to list resources.
displayName String
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. List<GetDeployArtifactsFilter>
id String
Unique identifier or OCID for listing a single resource by ID.
projectId String
unique project identifier
state String
A filter to return only DeployArtifacts that matches the given lifecycleState.
compartmentId string
The OCID of the compartment in which to list resources.
displayName string
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. GetDeployArtifactsFilter[]
id string
Unique identifier or OCID for listing a single resource by ID.
projectId string
unique project identifier
state string
A filter to return only DeployArtifacts that matches the given lifecycleState.
compartment_id str
The OCID of the compartment in which to list resources.
display_name str
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. Sequence[devops.GetDeployArtifactsFilter]
id str
Unique identifier or OCID for listing a single resource by ID.
project_id str
unique project identifier
state str
A filter to return only DeployArtifacts that matches the given lifecycleState.
compartmentId String
The OCID of the compartment in which to list resources.
displayName String
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. List<Property Map>
id String
Unique identifier or OCID for listing a single resource by ID.
projectId String
unique project identifier
state String
A filter to return only DeployArtifacts that matches the given lifecycleState.

getDeployArtifacts Result

The following output properties are available:

DeployArtifactCollections List<GetDeployArtifactsDeployArtifactCollection>
The list of deploy_artifact_collection.
CompartmentId string
The OCID of a compartment.
DisplayName string
Deployment artifact identifier, which can be renamed and is not necessarily unique. Avoid entering confidential information.
Filters List<GetDeployArtifactsFilter>
Id string
Unique identifier that is immutable on creation.
ProjectId string
The OCID of a project.
State string
Current state of the deployment artifact.
DeployArtifactCollections []GetDeployArtifactsDeployArtifactCollection
The list of deploy_artifact_collection.
CompartmentId string
The OCID of a compartment.
DisplayName string
Deployment artifact identifier, which can be renamed and is not necessarily unique. Avoid entering confidential information.
Filters []GetDeployArtifactsFilter
Id string
Unique identifier that is immutable on creation.
ProjectId string
The OCID of a project.
State string
Current state of the deployment artifact.
deployArtifactCollections List<GetDeployArtifactsDeployArtifactCollection>
The list of deploy_artifact_collection.
compartmentId String
The OCID of a compartment.
displayName String
Deployment artifact identifier, which can be renamed and is not necessarily unique. Avoid entering confidential information.
filters List<GetDeployArtifactsFilter>
id String
Unique identifier that is immutable on creation.
projectId String
The OCID of a project.
state String
Current state of the deployment artifact.
deployArtifactCollections GetDeployArtifactsDeployArtifactCollection[]
The list of deploy_artifact_collection.
compartmentId string
The OCID of a compartment.
displayName string
Deployment artifact identifier, which can be renamed and is not necessarily unique. Avoid entering confidential information.
filters GetDeployArtifactsFilter[]
id string
Unique identifier that is immutable on creation.
projectId string
The OCID of a project.
state string
Current state of the deployment artifact.
deploy_artifact_collections Sequence[devops.GetDeployArtifactsDeployArtifactCollection]
The list of deploy_artifact_collection.
compartment_id str
The OCID of a compartment.
display_name str
Deployment artifact identifier, which can be renamed and is not necessarily unique. Avoid entering confidential information.
filters Sequence[devops.GetDeployArtifactsFilter]
id str
Unique identifier that is immutable on creation.
project_id str
The OCID of a project.
state str
Current state of the deployment artifact.
deployArtifactCollections List<Property Map>
The list of deploy_artifact_collection.
compartmentId String
The OCID of a compartment.
displayName String
Deployment artifact identifier, which can be renamed and is not necessarily unique. Avoid entering confidential information.
filters List<Property Map>
id String
Unique identifier that is immutable on creation.
projectId String
The OCID of a project.
state String
Current state of the deployment artifact.

Supporting Types

GetDeployArtifactsDeployArtifactCollection

items This property is required. List<Property Map>

GetDeployArtifactsDeployArtifactCollectionItem

ArgumentSubstitutionMode This property is required. string
Mode for artifact parameter substitution. Options: "NONE", "SUBSTITUTE_PLACEHOLDERS" For Helm Deployments only "NONE" is supported.
CompartmentId This property is required. string
The OCID of the compartment in which to list resources.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
DeployArtifactSources This property is required. List<GetDeployArtifactsDeployArtifactCollectionItemDeployArtifactSource>
Specifies source of an artifact.
DeployArtifactType This property is required. string
Type of the deployment artifact.
Description This property is required. string
Optional description about the artifact to be deployed.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given.
FreeformTags This property is required. Dictionary<string, string>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
Id This property is required. string
Unique identifier or OCID for listing a single resource by ID.
LifecycleDetails This property is required. string
A detailed message describing the current state. For example, can be used to provide actionable information for a resource in Failed state.
ProjectId This property is required. string
unique project identifier
State This property is required. string
A filter to return only DeployArtifacts that matches the given lifecycleState.
SystemTags This property is required. Dictionary<string, string>
Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
Time the deployment artifact was created. Format defined by RFC3339.
TimeUpdated This property is required. string
Time the deployment artifact was updated. Format defined by RFC3339.
ArgumentSubstitutionMode This property is required. string
Mode for artifact parameter substitution. Options: "NONE", "SUBSTITUTE_PLACEHOLDERS" For Helm Deployments only "NONE" is supported.
CompartmentId This property is required. string
The OCID of the compartment in which to list resources.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
DeployArtifactSources This property is required. []GetDeployArtifactsDeployArtifactCollectionItemDeployArtifactSource
Specifies source of an artifact.
DeployArtifactType This property is required. string
Type of the deployment artifact.
Description This property is required. string
Optional description about the artifact to be deployed.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given.
FreeformTags This property is required. map[string]string
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
Id This property is required. string
Unique identifier or OCID for listing a single resource by ID.
LifecycleDetails This property is required. string
A detailed message describing the current state. For example, can be used to provide actionable information for a resource in Failed state.
ProjectId This property is required. string
unique project identifier
State This property is required. string
A filter to return only DeployArtifacts that matches the given lifecycleState.
SystemTags This property is required. map[string]string
Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
Time the deployment artifact was created. Format defined by RFC3339.
TimeUpdated This property is required. string
Time the deployment artifact was updated. Format defined by RFC3339.
argumentSubstitutionMode This property is required. String
Mode for artifact parameter substitution. Options: "NONE", "SUBSTITUTE_PLACEHOLDERS" For Helm Deployments only "NONE" is supported.
compartmentId This property is required. String
The OCID of the compartment in which to list resources.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
deployArtifactSources This property is required. List<GetDeployArtifactsDeployArtifactCollectionItemDeployArtifactSource>
Specifies source of an artifact.
deployArtifactType This property is required. String
Type of the deployment artifact.
description This property is required. String
Optional description about the artifact to be deployed.
displayName This property is required. String
A filter to return only resources that match the entire display name given.
freeformTags This property is required. Map<String,String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
id This property is required. String
Unique identifier or OCID for listing a single resource by ID.
lifecycleDetails This property is required. String
A detailed message describing the current state. For example, can be used to provide actionable information for a resource in Failed state.
projectId This property is required. String
unique project identifier
state This property is required. String
A filter to return only DeployArtifacts that matches the given lifecycleState.
systemTags This property is required. Map<String,String>
Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
Time the deployment artifact was created. Format defined by RFC3339.
timeUpdated This property is required. String
Time the deployment artifact was updated. Format defined by RFC3339.
argumentSubstitutionMode This property is required. string
Mode for artifact parameter substitution. Options: "NONE", "SUBSTITUTE_PLACEHOLDERS" For Helm Deployments only "NONE" is supported.
compartmentId This property is required. string
The OCID of the compartment in which to list resources.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
deployArtifactSources This property is required. GetDeployArtifactsDeployArtifactCollectionItemDeployArtifactSource[]
Specifies source of an artifact.
deployArtifactType This property is required. string
Type of the deployment artifact.
description This property is required. string
Optional description about the artifact to be deployed.
displayName This property is required. string
A filter to return only resources that match the entire display name given.
freeformTags This property is required. {[key: string]: string}
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
id This property is required. string
Unique identifier or OCID for listing a single resource by ID.
lifecycleDetails This property is required. string
A detailed message describing the current state. For example, can be used to provide actionable information for a resource in Failed state.
projectId This property is required. string
unique project identifier
state This property is required. string
A filter to return only DeployArtifacts that matches the given lifecycleState.
systemTags This property is required. {[key: string]: string}
Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. string
Time the deployment artifact was created. Format defined by RFC3339.
timeUpdated This property is required. string
Time the deployment artifact was updated. Format defined by RFC3339.
argument_substitution_mode This property is required. str
Mode for artifact parameter substitution. Options: "NONE", "SUBSTITUTE_PLACEHOLDERS" For Helm Deployments only "NONE" is supported.
compartment_id This property is required. str
The OCID of the compartment in which to list resources.
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
deploy_artifact_sources This property is required. Sequence[devops.GetDeployArtifactsDeployArtifactCollectionItemDeployArtifactSource]
Specifies source of an artifact.
deploy_artifact_type This property is required. str
Type of the deployment artifact.
description This property is required. str
Optional description about the artifact to be deployed.
display_name This property is required. str
A filter to return only resources that match the entire display name given.
freeform_tags This property is required. Mapping[str, str]
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
id This property is required. str
Unique identifier or OCID for listing a single resource by ID.
lifecycle_details This property is required. str
A detailed message describing the current state. For example, can be used to provide actionable information for a resource in Failed state.
project_id This property is required. str
unique project identifier
state This property is required. str
A filter to return only DeployArtifacts that matches the given lifecycleState.
system_tags This property is required. Mapping[str, str]
Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created This property is required. str
Time the deployment artifact was created. Format defined by RFC3339.
time_updated This property is required. str
Time the deployment artifact was updated. Format defined by RFC3339.
argumentSubstitutionMode This property is required. String
Mode for artifact parameter substitution. Options: "NONE", "SUBSTITUTE_PLACEHOLDERS" For Helm Deployments only "NONE" is supported.
compartmentId This property is required. String
The OCID of the compartment in which to list resources.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
deployArtifactSources This property is required. List<Property Map>
Specifies source of an artifact.
deployArtifactType This property is required. String
Type of the deployment artifact.
description This property is required. String
Optional description about the artifact to be deployed.
displayName This property is required. String
A filter to return only resources that match the entire display name given.
freeformTags This property is required. Map<String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
id This property is required. String
Unique identifier or OCID for listing a single resource by ID.
lifecycleDetails This property is required. String
A detailed message describing the current state. For example, can be used to provide actionable information for a resource in Failed state.
projectId This property is required. String
unique project identifier
state This property is required. String
A filter to return only DeployArtifacts that matches the given lifecycleState.
systemTags This property is required. Map<String>
Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
Time the deployment artifact was created. Format defined by RFC3339.
timeUpdated This property is required. String
Time the deployment artifact was updated. Format defined by RFC3339.

GetDeployArtifactsDeployArtifactCollectionItemDeployArtifactSource

Base64encodedContent This property is required. string
The Helm commands to be executed, base 64 encoded
ChartUrl This property is required. string
The URL of an OCIR repository.
DeployArtifactPath This property is required. string
Specifies the artifact path in the repository.
DeployArtifactSourceType This property is required. string
Specifies types of artifact sources.
DeployArtifactVersion This property is required. string
Users can set this as a placeholder value that refers to a pipeline parameter, for example, ${appVersion}.
HelmArtifactSourceType This property is required. string
Specifies types of artifact sources.
HelmVerificationKeySources This property is required. List<GetDeployArtifactsDeployArtifactCollectionItemDeployArtifactSourceHelmVerificationKeySource>
The source of the verification material.
ImageDigest This property is required. string
Specifies image digest for the version of the image.
ImageUri This property is required. string
Specifies OCIR Image Path - optionally include tag.
RepositoryId This property is required. string
The OCID of a repository
Base64encodedContent This property is required. string
The Helm commands to be executed, base 64 encoded
ChartUrl This property is required. string
The URL of an OCIR repository.
DeployArtifactPath This property is required. string
Specifies the artifact path in the repository.
DeployArtifactSourceType This property is required. string
Specifies types of artifact sources.
DeployArtifactVersion This property is required. string
Users can set this as a placeholder value that refers to a pipeline parameter, for example, ${appVersion}.
HelmArtifactSourceType This property is required. string
Specifies types of artifact sources.
HelmVerificationKeySources This property is required. []GetDeployArtifactsDeployArtifactCollectionItemDeployArtifactSourceHelmVerificationKeySource
The source of the verification material.
ImageDigest This property is required. string
Specifies image digest for the version of the image.
ImageUri This property is required. string
Specifies OCIR Image Path - optionally include tag.
RepositoryId This property is required. string
The OCID of a repository
base64encodedContent This property is required. String
The Helm commands to be executed, base 64 encoded
chartUrl This property is required. String
The URL of an OCIR repository.
deployArtifactPath This property is required. String
Specifies the artifact path in the repository.
deployArtifactSourceType This property is required. String
Specifies types of artifact sources.
deployArtifactVersion This property is required. String
Users can set this as a placeholder value that refers to a pipeline parameter, for example, ${appVersion}.
helmArtifactSourceType This property is required. String
Specifies types of artifact sources.
helmVerificationKeySources This property is required. List<GetDeployArtifactsDeployArtifactCollectionItemDeployArtifactSourceHelmVerificationKeySource>
The source of the verification material.
imageDigest This property is required. String
Specifies image digest for the version of the image.
imageUri This property is required. String
Specifies OCIR Image Path - optionally include tag.
repositoryId This property is required. String
The OCID of a repository
base64encodedContent This property is required. string
The Helm commands to be executed, base 64 encoded
chartUrl This property is required. string
The URL of an OCIR repository.
deployArtifactPath This property is required. string
Specifies the artifact path in the repository.
deployArtifactSourceType This property is required. string
Specifies types of artifact sources.
deployArtifactVersion This property is required. string
Users can set this as a placeholder value that refers to a pipeline parameter, for example, ${appVersion}.
helmArtifactSourceType This property is required. string
Specifies types of artifact sources.
helmVerificationKeySources This property is required. GetDeployArtifactsDeployArtifactCollectionItemDeployArtifactSourceHelmVerificationKeySource[]
The source of the verification material.
imageDigest This property is required. string
Specifies image digest for the version of the image.
imageUri This property is required. string
Specifies OCIR Image Path - optionally include tag.
repositoryId This property is required. string
The OCID of a repository
base64encoded_content This property is required. str
The Helm commands to be executed, base 64 encoded
chart_url This property is required. str
The URL of an OCIR repository.
deploy_artifact_path This property is required. str
Specifies the artifact path in the repository.
deploy_artifact_source_type This property is required. str
Specifies types of artifact sources.
deploy_artifact_version This property is required. str
Users can set this as a placeholder value that refers to a pipeline parameter, for example, ${appVersion}.
helm_artifact_source_type This property is required. str
Specifies types of artifact sources.
helm_verification_key_sources This property is required. Sequence[devops.GetDeployArtifactsDeployArtifactCollectionItemDeployArtifactSourceHelmVerificationKeySource]
The source of the verification material.
image_digest This property is required. str
Specifies image digest for the version of the image.
image_uri This property is required. str
Specifies OCIR Image Path - optionally include tag.
repository_id This property is required. str
The OCID of a repository
base64encodedContent This property is required. String
The Helm commands to be executed, base 64 encoded
chartUrl This property is required. String
The URL of an OCIR repository.
deployArtifactPath This property is required. String
Specifies the artifact path in the repository.
deployArtifactSourceType This property is required. String
Specifies types of artifact sources.
deployArtifactVersion This property is required. String
Users can set this as a placeholder value that refers to a pipeline parameter, for example, ${appVersion}.
helmArtifactSourceType This property is required. String
Specifies types of artifact sources.
helmVerificationKeySources This property is required. List<Property Map>
The source of the verification material.
imageDigest This property is required. String
Specifies image digest for the version of the image.
imageUri This property is required. String
Specifies OCIR Image Path - optionally include tag.
repositoryId This property is required. String
The OCID of a repository

GetDeployArtifactsDeployArtifactCollectionItemDeployArtifactSourceHelmVerificationKeySource

CurrentPublicKey This property is required. string
Current version of Base64 encoding of the public key which is in binary GPG exported format.
PreviousPublicKey This property is required. string
Previous version of Base64 encoding of the public key which is in binary GPG exported format. This would be used for key rotation scenarios.
VaultSecretId This property is required. string
The OCID of the Vault Secret containing the verification key versions.
VerificationKeySourceType This property is required. string
Specifies type of verification material.
CurrentPublicKey This property is required. string
Current version of Base64 encoding of the public key which is in binary GPG exported format.
PreviousPublicKey This property is required. string
Previous version of Base64 encoding of the public key which is in binary GPG exported format. This would be used for key rotation scenarios.
VaultSecretId This property is required. string
The OCID of the Vault Secret containing the verification key versions.
VerificationKeySourceType This property is required. string
Specifies type of verification material.
currentPublicKey This property is required. String
Current version of Base64 encoding of the public key which is in binary GPG exported format.
previousPublicKey This property is required. String
Previous version of Base64 encoding of the public key which is in binary GPG exported format. This would be used for key rotation scenarios.
vaultSecretId This property is required. String
The OCID of the Vault Secret containing the verification key versions.
verificationKeySourceType This property is required. String
Specifies type of verification material.
currentPublicKey This property is required. string
Current version of Base64 encoding of the public key which is in binary GPG exported format.
previousPublicKey This property is required. string
Previous version of Base64 encoding of the public key which is in binary GPG exported format. This would be used for key rotation scenarios.
vaultSecretId This property is required. string
The OCID of the Vault Secret containing the verification key versions.
verificationKeySourceType This property is required. string
Specifies type of verification material.
current_public_key This property is required. str
Current version of Base64 encoding of the public key which is in binary GPG exported format.
previous_public_key This property is required. str
Previous version of Base64 encoding of the public key which is in binary GPG exported format. This would be used for key rotation scenarios.
vault_secret_id This property is required. str
The OCID of the Vault Secret containing the verification key versions.
verification_key_source_type This property is required. str
Specifies type of verification material.
currentPublicKey This property is required. String
Current version of Base64 encoding of the public key which is in binary GPG exported format.
previousPublicKey This property is required. String
Previous version of Base64 encoding of the public key which is in binary GPG exported format. This would be used for key rotation scenarios.
vaultSecretId This property is required. String
The OCID of the Vault Secret containing the verification key versions.
verificationKeySourceType This property is required. String
Specifies type of verification material.

GetDeployArtifactsFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi