import * as pulumi from "@pulumi/pulumi"; /** * Data source for retrieving an SLO. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = harness.platform.getSlo({ * identifier: "identifier", * orgId: "org_id", * projectId: "project_id", * }); * ``` */ export declare function getSlo(args: GetSloArgs, opts?: pulumi.InvokeOptions): Promise; /** * 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. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = harness.platform.getSlo({ * identifier: "identifier", * orgId: "org_id", * projectId: "project_id", * }); * ``` */ export declare function getSloOutput(args: GetSloOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSlo. */ export interface GetSloOutputArgs { /** * Identifier of the SLO. */ identifier: pulumi.Input; /** * Identifier of the organization in which the SLO is configured. */ orgId: pulumi.Input; /** * Identifier of the project in which the SLO is configured. */ projectId: pulumi.Input; } //# sourceMappingURL=getSlo.d.ts.map