UNPKG

@pulumi/sdwan

Version:

A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1

71 lines (70 loc) 1.52 kB
import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Tag . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getTag({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getTag(args: GetTagArgs, opts?: pulumi.InvokeOptions): Promise<GetTagResult>; /** * A collection of arguments for invoking getTag. */ export interface GetTagArgs { /** * The id of the object */ id: string; } /** * A collection of values returned by getTag. */ export interface GetTagResult { /** * Tag description */ readonly description: string; /** * List of associated devices */ readonly devices: string[]; /** * The id of the object */ readonly id: string; /** * Tag name */ readonly name: string; } /** * This data source can read the Tag . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getTag({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getTagOutput(args: GetTagOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTagResult>; /** * A collection of arguments for invoking getTag. */ export interface GetTagOutputArgs { /** * The id of the object */ id: pulumi.Input<string>; }