import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Deploy Artifacts in Oracle Cloud Infrastructure Devops service. * * Returns a list of deployment artifacts. * * ## Example Usage * * ```typescript * 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, * }); * ``` */ export declare function getDeployArtifacts(args?: GetDeployArtifactsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDeployArtifacts. */ export interface GetDeployArtifactsArgs { /** * The OCID of the compartment in which to list resources. */ compartmentId?: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.DevOps.GetDeployArtifactsFilter[]; /** * Unique identifier or OCID for listing a single resource by ID. */ id?: string; /** * unique project identifier */ projectId?: string; /** * A filter to return only DeployArtifacts that matches the given lifecycleState. */ state?: string; } /** * A collection of values returned by getDeployArtifacts. */ export interface GetDeployArtifactsResult { /** * The OCID of a compartment. */ readonly compartmentId?: string; /** * The list of deploy_artifact_collection. */ readonly deployArtifactCollections: outputs.DevOps.GetDeployArtifactsDeployArtifactCollection[]; /** * Deployment artifact identifier, which can be renamed and is not necessarily unique. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.DevOps.GetDeployArtifactsFilter[]; /** * Unique identifier that is immutable on creation. */ readonly id?: string; /** * The OCID of a project. */ readonly projectId?: string; /** * Current state of the deployment artifact. */ readonly state?: string; } /** * This data source provides the list of Deploy Artifacts in Oracle Cloud Infrastructure Devops service. * * Returns a list of deployment artifacts. * * ## Example Usage * * ```typescript * 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, * }); * ``` */ export declare function getDeployArtifactsOutput(args?: GetDeployArtifactsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDeployArtifacts. */ export interface GetDeployArtifactsOutputArgs { /** * The OCID of the compartment in which to list resources. */ compartmentId?: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Unique identifier or OCID for listing a single resource by ID. */ id?: pulumi.Input; /** * unique project identifier */ projectId?: pulumi.Input; /** * A filter to return only DeployArtifacts that matches the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getDeployArtifacts.d.ts.map