1. Packages
  2. Cisco Catalyst SD-WAN Provider
  3. API Docs
  4. Tag
Cisco Catalyst SD-WAN v0.3.0 published on Friday, Mar 28, 2025 by Pulumi

sdwan.Tag

Explore with Pulumi AI

sdwan logo
Cisco Catalyst SD-WAN v0.3.0 published on Friday, Mar 28, 2025 by Pulumi

    This resource can manage a Tag .

    • Minimum SD-WAN Manager version: 20.12.0

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as sdwan from "@pulumi/sdwan";
    
    const example = new sdwan.Tag("example", {
        name: "TAG_1",
        description: "My tag",
        devices: ["C8K-40C0CCFD-9EA8-2B2E-E73B-32C5924EC79B"],
    });
    
    import pulumi
    import pulumi_sdwan as sdwan
    
    example = sdwan.Tag("example",
        name="TAG_1",
        description="My tag",
        devices=["C8K-40C0CCFD-9EA8-2B2E-E73B-32C5924EC79B"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-sdwan/sdk/go/sdwan"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := sdwan.NewTag(ctx, "example", &sdwan.TagArgs{
    			Name:        pulumi.String("TAG_1"),
    			Description: pulumi.String("My tag"),
    			Devices: pulumi.StringArray{
    				pulumi.String("C8K-40C0CCFD-9EA8-2B2E-E73B-32C5924EC79B"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Sdwan = Pulumi.Sdwan;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Sdwan.Tag("example", new()
        {
            Name = "TAG_1",
            Description = "My tag",
            Devices = new[]
            {
                "C8K-40C0CCFD-9EA8-2B2E-E73B-32C5924EC79B",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sdwan.Tag;
    import com.pulumi.sdwan.TagArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new Tag("example", TagArgs.builder()
                .name("TAG_1")
                .description("My tag")
                .devices("C8K-40C0CCFD-9EA8-2B2E-E73B-32C5924EC79B")
                .build());
    
        }
    }
    
    resources:
      example:
        type: sdwan:Tag
        properties:
          name: TAG_1
          description: My tag
          devices:
            - C8K-40C0CCFD-9EA8-2B2E-E73B-32C5924EC79B
    

    Create Tag Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Tag(name: string, args: TagArgs, opts?: CustomResourceOptions);
    @overload
    def Tag(resource_name: str,
            args: TagArgs,
            opts: Optional[ResourceOptions] = None)
    
    @overload
    def Tag(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            devices: Optional[Sequence[str]] = None,
            name: Optional[str] = None)
    func NewTag(ctx *Context, name string, args TagArgs, opts ...ResourceOption) (*Tag, error)
    public Tag(string name, TagArgs args, CustomResourceOptions? opts = null)
    public Tag(String name, TagArgs args)
    public Tag(String name, TagArgs args, CustomResourceOptions options)
    
    type: sdwan:Tag
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args TagArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args TagArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args TagArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TagArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TagArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var tagResource = new Sdwan.Tag("tagResource", new()
    {
        Description = "string",
        Devices = new[]
        {
            "string",
        },
        Name = "string",
    });
    
    example, err := sdwan.NewTag(ctx, "tagResource", &sdwan.TagArgs{
    	Description: pulumi.String("string"),
    	Devices: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Name: pulumi.String("string"),
    })
    
    var tagResource = new Tag("tagResource", TagArgs.builder()
        .description("string")
        .devices("string")
        .name("string")
        .build());
    
    tag_resource = sdwan.Tag("tagResource",
        description="string",
        devices=["string"],
        name="string")
    
    const tagResource = new sdwan.Tag("tagResource", {
        description: "string",
        devices: ["string"],
        name: "string",
    });
    
    type: sdwan:Tag
    properties:
        description: string
        devices:
            - string
        name: string
    

    Tag Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Tag resource accepts the following input properties:

    Description string
    Tag description
    Devices List<string>
    List of associated devices
    Name string
    Tag name
    Description string
    Tag description
    Devices []string
    List of associated devices
    Name string
    Tag name
    description String
    Tag description
    devices List<String>
    List of associated devices
    name String
    Tag name
    description string
    Tag description
    devices string[]
    List of associated devices
    name string
    Tag name
    description str
    Tag description
    devices Sequence[str]
    List of associated devices
    name str
    Tag name
    description String
    Tag description
    devices List<String>
    List of associated devices
    name String
    Tag name

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Tag resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Tag Resource

    Get an existing Tag resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: TagState, opts?: CustomResourceOptions): Tag
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            devices: Optional[Sequence[str]] = None,
            name: Optional[str] = None) -> Tag
    func GetTag(ctx *Context, name string, id IDInput, state *TagState, opts ...ResourceOption) (*Tag, error)
    public static Tag Get(string name, Input<string> id, TagState? state, CustomResourceOptions? opts = null)
    public static Tag get(String name, Output<String> id, TagState state, CustomResourceOptions options)
    resources:  _:    type: sdwan:Tag    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Description string
    Tag description
    Devices List<string>
    List of associated devices
    Name string
    Tag name
    Description string
    Tag description
    Devices []string
    List of associated devices
    Name string
    Tag name
    description String
    Tag description
    devices List<String>
    List of associated devices
    name String
    Tag name
    description string
    Tag description
    devices string[]
    List of associated devices
    name string
    Tag name
    description str
    Tag description
    devices Sequence[str]
    List of associated devices
    name str
    Tag name
    description String
    Tag description
    devices List<String>
    List of associated devices
    name String
    Tag name

    Import

    $ pulumi import sdwan:index/tag:Tag example "f6b2c44c-693c-4763-b010-895aa3d236bd"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    sdwan pulumi/pulumi-sdwan
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the sdwan Terraform Provider.
    sdwan logo
    Cisco Catalyst SD-WAN v0.3.0 published on Friday, Mar 28, 2025 by Pulumi