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 Gdp Pipelines in Oracle Cloud Infrastructure Gdp service. * * Returns a list of pipelines. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testGdpPipelines = oci.oci.getGdpGdpPipelines({ * compartmentId: compartmentId, * displayName: gdpPipelineDisplayName, * env: gdpEnv, * }); * ``` */ export declare function getGdpGdpPipelines(args?: GetGdpGdpPipelinesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getGdpGdpPipelines. */ export interface GetGdpGdpPipelinesArgs { /** * The ID 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; /** * The environment where the pipeline resides. Valid values are COMMERCIAL or USGOV. Defaults to COMMERCIAL. */ env?: string; filters?: inputs.oci.GetGdpGdpPipelinesFilter[]; } /** * A collection of values returned by getGdpGdpPipelines. */ export interface GetGdpGdpPipelinesResult { /** * The OCID of the compartment. */ readonly compartmentId?: string; /** * Pipeline short name. */ readonly displayName?: string; readonly env?: string; readonly filters?: outputs.oci.GetGdpGdpPipelinesFilter[]; /** * The list of gdp_pipeline_collection. */ readonly gdpPipelineCollections: outputs.oci.GetGdpGdpPipelinesGdpPipelineCollection[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Gdp Pipelines in Oracle Cloud Infrastructure Gdp service. * * Returns a list of pipelines. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testGdpPipelines = oci.oci.getGdpGdpPipelines({ * compartmentId: compartmentId, * displayName: gdpPipelineDisplayName, * env: gdpEnv, * }); * ``` */ export declare function getGdpGdpPipelinesOutput(args?: GetGdpGdpPipelinesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getGdpGdpPipelines. */ export interface GetGdpGdpPipelinesOutputArgs { /** * The ID 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; /** * The environment where the pipeline resides. Valid values are COMMERCIAL or USGOV. Defaults to COMMERCIAL. */ env?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getGdpGdpPipelines.d.ts.map