@pulumi/harness
Version:
A Pulumi package for creating and managing Harness resources.
93 lines (92 loc) • 2.35 kB
TypeScript
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<GetPipelineListResult>;
/**
* 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<GetPipelineListResult>;
/**
* A collection of arguments for invoking getPipelineList.
*/
export interface GetPipelineListOutputArgs {
/**
* Unique identifier of the resource.
*/
identifier?: pulumi.Input<string>;
limit?: pulumi.Input<number>;
/**
* Name of the resource.
*/
name?: pulumi.Input<string>;
/**
* Unique identifier of the organization.
*/
orgId: pulumi.Input<string>;
page?: pulumi.Input<number>;
/**
* Unique identifier of the project.
*/
projectId: pulumi.Input<string>;
}