@lbrlabs/pulumi-harness
Version:
A Pulumi package for creating and managing Harness resources.
115 lines (114 loc) • 2.88 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
* Data source for retrieving a Harness input set.
*/
export declare function getInputSet(args: GetInputSetArgs, opts?: pulumi.InvokeOptions): Promise<GetInputSetResult>;
/**
* A collection of arguments for invoking getInputSet.
*/
export interface GetInputSetArgs {
/**
* Contains parameters related to creating an Entity for Git Experience.
*/
gitDetails?: inputs.platform.GetInputSetGitDetails;
/**
* Unique identifier of the resource.
*/
identifier?: string;
/**
* Name of the resource.
*/
name?: string;
/**
* Unique identifier of the organization.
*/
orgId: string;
/**
* Identifier of the pipeline
*/
pipelineId: string;
/**
* Unique identifier of the project.
*/
projectId: string;
}
/**
* A collection of values returned by getInputSet.
*/
export interface GetInputSetResult {
/**
* Description of the resource.
*/
readonly description: string;
/**
* Contains parameters related to creating an Entity for Git Experience.
*/
readonly gitDetails?: outputs.platform.GetInputSetGitDetails;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* Unique identifier of the resource.
*/
readonly identifier?: string;
/**
* Name of the resource.
*/
readonly name?: string;
/**
* Unique identifier of the organization.
*/
readonly orgId: string;
/**
* Identifier of the pipeline
*/
readonly pipelineId: string;
/**
* Unique identifier of the project.
*/
readonly projectId: string;
/**
* Tags to associate with the resource.
*/
readonly tags: string[];
/**
* Input Set YAML
*/
readonly yaml: string;
}
/**
* Data source for retrieving a Harness input set.
*/
export declare function getInputSetOutput(args: GetInputSetOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetInputSetResult>;
/**
* A collection of arguments for invoking getInputSet.
*/
export interface GetInputSetOutputArgs {
/**
* Contains parameters related to creating an Entity for Git Experience.
*/
gitDetails?: pulumi.Input<inputs.platform.GetInputSetGitDetailsArgs>;
/**
* Unique identifier of the resource.
*/
identifier?: pulumi.Input<string>;
/**
* Name of the resource.
*/
name?: pulumi.Input<string>;
/**
* Unique identifier of the organization.
*/
orgId: pulumi.Input<string>;
/**
* Identifier of the pipeline
*/
pipelineId: pulumi.Input<string>;
/**
* Unique identifier of the project.
*/
projectId: pulumi.Input<string>;
}