@lbrlabs/pulumi-harness
Version:
A Pulumi package for creating and managing Harness resources.
65 lines (64 loc) • 1.64 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Data source for retrieving an SLO.
*/
export declare function getSlo(args: GetSloArgs, opts?: pulumi.InvokeOptions): Promise<GetSloResult>;
/**
* A collection of arguments for invoking getSlo.
*/
export interface GetSloArgs {
/**
* Identifier of the SLO.
*/
identifier: string;
/**
* Identifier of the organization in which the SLO is configured.
*/
orgId: string;
/**
* Identifier of the project in which the SLO is configured.
*/
projectId: string;
}
/**
* A collection of values returned by getSlo.
*/
export interface GetSloResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* Identifier of the SLO.
*/
readonly identifier: string;
/**
* Identifier of the organization in which the SLO is configured.
*/
readonly orgId: string;
/**
* Identifier of the project in which the SLO is configured.
*/
readonly projectId: string;
}
/**
* Data source for retrieving an SLO.
*/
export declare function getSloOutput(args: GetSloOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSloResult>;
/**
* A collection of arguments for invoking getSlo.
*/
export interface GetSloOutputArgs {
/**
* Identifier of the SLO.
*/
identifier: pulumi.Input<string>;
/**
* Identifier of the organization in which the SLO is configured.
*/
orgId: pulumi.Input<string>;
/**
* Identifier of the project in which the SLO is configured.
*/
projectId: pulumi.Input<string>;
}