import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data source for retieving the Harness pipleine List */ export declare function getPipelineList(args: GetPipelineListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPipelineList. */ export interface GetPipelineListArgs { /** * Unique identifier of the resource. */ identifier?: string; limit?: number; /** * Name of the resource. */ name?: string; /** * Unique identifier of the organization. */ orgId: string; page?: number; /** * Unique identifier of the project. */ projectId: string; } /** * A collection of values returned by getPipelineList. */ export interface GetPipelineListResult { /** * Description of the resource. */ readonly description: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Unique identifier of the resource. */ readonly identifier?: string; readonly limit?: number; /** * Name of the resource. */ readonly name?: string; /** * Unique identifier of the organization. */ readonly orgId: string; readonly page?: number; readonly pipelines: outputs.platform.GetPipelineListPipeline[]; /** * Unique identifier of the project. */ readonly projectId: string; /** * Tags to associate with the resource. */ readonly tags: string[]; } /** * Data source for retieving the Harness pipleine List */ export declare function getPipelineListOutput(args: GetPipelineListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPipelineList. */ export interface GetPipelineListOutputArgs { /** * Unique identifier of the resource. */ identifier?: pulumi.Input; limit?: pulumi.Input; /** * Name of the resource. */ name?: pulumi.Input; /** * Unique identifier of the organization. */ orgId: pulumi.Input; page?: pulumi.Input; /** * Unique identifier of the project. */ projectId: pulumi.Input; } //# sourceMappingURL=getPipelineList.d.ts.map