UNPKG

@pulumi/scm

Version:

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

64 lines (63 loc) 1.42 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 { /** * UUID of the link tag */ id: string; /** * The name of the link tag */ name?: 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 */ readonly device: string; readonly folder: string; /** * UUID of the link tag */ readonly id: string; /** * The name of the link tag */ readonly name: string; 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 { /** * UUID of the link tag */ id: pulumi.Input<string>; /** * The name of the link tag */ name?: pulumi.Input<string>; }