import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Deploy Artifact resource in Oracle Cloud Infrastructure Devops service. * * Retrieves a deployment artifact by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDeployArtifact = oci.devops.getDeployArtifact({ * deployArtifactId: testDeployArtifactOciDevopsDeployArtifact.id, * }); * ``` */ export declare function getDeployArtifact(args: GetDeployArtifactArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDeployArtifact. */ export interface GetDeployArtifactArgs { /** * Unique artifact identifier. */ deployArtifactId: string; } /** * A collection of values returned by getDeployArtifact. */ export interface GetDeployArtifactResult { /** * Mode for artifact parameter substitution. Options: `"NONE", "SUBSTITUTE_PLACEHOLDERS"` For Helm Deployments only "NONE" is supported. */ readonly argumentSubstitutionMode: string; /** * The OCID of a compartment. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; readonly deployArtifactId: string; /** * Specifies source of an artifact. */ readonly deployArtifactSources: outputs.DevOps.GetDeployArtifactDeployArtifactSource[]; /** * Type of the deployment artifact. */ readonly deployArtifactType: string; /** * Optional description about the artifact to be deployed. */ readonly description: string; /** * Deployment artifact identifier, which can be renamed and is not necessarily unique. Avoid entering confidential information. */ readonly displayName: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * Unique identifier that is immutable on creation. */ readonly id: string; /** * A detailed message describing the current state. For example, can be used to provide actionable information for a resource in Failed state. */ readonly lifecycleDetails: string; /** * The OCID of a project. */ readonly projectId: string; /** * Current state of the deployment artifact. */ readonly state: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * Time the deployment artifact was created. Format defined by [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339). */ readonly timeCreated: string; /** * Time the deployment artifact was updated. Format defined by [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339). */ readonly timeUpdated: string; } /** * This data source provides details about a specific Deploy Artifact resource in Oracle Cloud Infrastructure Devops service. * * Retrieves a deployment artifact by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDeployArtifact = oci.devops.getDeployArtifact({ * deployArtifactId: testDeployArtifactOciDevopsDeployArtifact.id, * }); * ``` */ export declare function getDeployArtifactOutput(args: GetDeployArtifactOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDeployArtifact. */ export interface GetDeployArtifactOutputArgs { /** * Unique artifact identifier. */ deployArtifactId: pulumi.Input; } //# sourceMappingURL=getDeployArtifact.d.ts.map