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 Pipelines in Oracle Cloud Infrastructure Devops service. * * Returns a list of deployment pipelines. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDeployPipelines = oci.devops.getDeployPipelines({ * compartmentId: compartmentId, * displayName: deployPipelineDisplayName, * id: deployPipelineId, * projectId: testProject.id, * state: deployPipelineState, * }); * ``` */ export declare function getDeployPipelines(args?: GetDeployPipelinesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDeployPipelines. */ export interface GetDeployPipelinesArgs { /** * 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.GetDeployPipelinesFilter[]; /** * Unique identifier or OCID for listing a single resource by ID. */ id?: string; /** * unique project identifier */ projectId?: string; /** * A filter to return only DeployPipelines that matches the given lifecycleState. */ state?: string; } /** * A collection of values returned by getDeployPipelines. */ export interface GetDeployPipelinesResult { /** * The OCID of the compartment where the pipeline is created. */ readonly compartmentId?: string; /** * The list of deploy_pipeline_collection. */ readonly deployPipelineCollections: outputs.DevOps.GetDeployPipelinesDeployPipelineCollection[]; /** * Deployment pipeline display name, which can be renamed and is not necessarily unique. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.DevOps.GetDeployPipelinesFilter[]; /** * Unique identifier that is immutable on creation. */ readonly id?: string; /** * The OCID of a project. */ readonly projectId?: string; /** * The current state of the deployment pipeline. */ readonly state?: string; } /** * This data source provides the list of Deploy Pipelines in Oracle Cloud Infrastructure Devops service. * * Returns a list of deployment pipelines. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDeployPipelines = oci.devops.getDeployPipelines({ * compartmentId: compartmentId, * displayName: deployPipelineDisplayName, * id: deployPipelineId, * projectId: testProject.id, * state: deployPipelineState, * }); * ``` */ export declare function getDeployPipelinesOutput(args?: GetDeployPipelinesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDeployPipelines. */ export interface GetDeployPipelinesOutputArgs { /** * 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 DeployPipelines that matches the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getDeployPipelines.d.ts.map