@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
54 lines (53 loc) • 1.16 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Label data source
*/
export declare function getLabel(args: GetLabelArgs, opts?: pulumi.InvokeOptions): Promise<GetLabelResult>;
/**
* A collection of arguments for invoking getLabel.
*/
export interface GetLabelArgs {
/**
* The UUID of the label
*/
id: string;
/**
* The name of the label
*/
name?: string;
}
/**
* A collection of values returned by getLabel.
*/
export interface GetLabelResult {
/**
* The description of the label
*/
readonly description: string;
/**
* The UUID of the label
*/
readonly id: string;
/**
* The name of the label
*/
readonly name: string;
readonly tfid: string;
}
/**
* Label data source
*/
export declare function getLabelOutput(args: GetLabelOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLabelResult>;
/**
* A collection of arguments for invoking getLabel.
*/
export interface GetLabelOutputArgs {
/**
* The UUID of the label
*/
id: pulumi.Input<string>;
/**
* The name of the label
*/
name?: pulumi.Input<string>;
}