UNPKG

@pulumi/scm

Version:

A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1

103 lines (102 loc) 2.97 kB
import * as pulumi from "@pulumi/pulumi"; /** * LinkTag data source */ export declare function getLinkTag(args: GetLinkTagArgs, opts?: pulumi.InvokeOptions): Promise<GetLinkTagResult>; /** * A collection of arguments for invoking getLinkTag. */ export interface GetLinkTagArgs { /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ device?: string; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: string; /** * UUID of the link tag */ id: string; /** * The name of the link tag */ name?: string; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: string; } /** * A collection of values returned by getLinkTag. */ export interface GetLinkTagResult { /** * The color of the link tag */ readonly color: string; /** * Description of the link tag */ readonly comments: string; /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly device: string; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly folder: string; /** * UUID of the link tag */ readonly id: string; /** * The name of the link tag */ readonly name: string; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly snippet: string; readonly tfid: string; } /** * LinkTag data source */ export declare function getLinkTagOutput(args: GetLinkTagOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLinkTagResult>; /** * A collection of arguments for invoking getLinkTag. */ export interface GetLinkTagOutputArgs { /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ device?: pulumi.Input<string>; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: pulumi.Input<string>; /** * UUID of the link tag */ id: pulumi.Input<string>; /** * The name of the link tag */ name?: pulumi.Input<string>; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: pulumi.Input<string>; }