1. Packages
  2. Azure DevOps Provider
  3. API Docs
  4. ProjectTags
Azure DevOps v3.8.0 published on Monday, Mar 17, 2025 by Pulumi

azuredevops.ProjectTags

Explore with Pulumi AI

azuredevops logo
Azure DevOps v3.8.0 published on Monday, Mar 17, 2025 by Pulumi

    Manages Project Tags within Azure DevOps organization.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azuredevops from "@pulumi/azuredevops";
    
    const example = new azuredevops.Project("example", {
        name: "Example Project",
        visibility: "private",
        versionControl: "Git",
        workItemTemplate: "Agile",
        description: "Managed by Pulumi",
    });
    const exampleProjectTags = new azuredevops.ProjectTags("example", {
        projectId: example.id,
        tags: [
            "tag1",
            "tag2",
        ],
    });
    
    import pulumi
    import pulumi_azuredevops as azuredevops
    
    example = azuredevops.Project("example",
        name="Example Project",
        visibility="private",
        version_control="Git",
        work_item_template="Agile",
        description="Managed by Pulumi")
    example_project_tags = azuredevops.ProjectTags("example",
        project_id=example.id,
        tags=[
            "tag1",
            "tag2",
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azuredevops/sdk/v3/go/azuredevops"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := azuredevops.NewProject(ctx, "example", &azuredevops.ProjectArgs{
    			Name:             pulumi.String("Example Project"),
    			Visibility:       pulumi.String("private"),
    			VersionControl:   pulumi.String("Git"),
    			WorkItemTemplate: pulumi.String("Agile"),
    			Description:      pulumi.String("Managed by Pulumi"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = azuredevops.NewProjectTags(ctx, "example", &azuredevops.ProjectTagsArgs{
    			ProjectId: example.ID(),
    			Tags: pulumi.StringArray{
    				pulumi.String("tag1"),
    				pulumi.String("tag2"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureDevOps = Pulumi.AzureDevOps;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new AzureDevOps.Project("example", new()
        {
            Name = "Example Project",
            Visibility = "private",
            VersionControl = "Git",
            WorkItemTemplate = "Agile",
            Description = "Managed by Pulumi",
        });
    
        var exampleProjectTags = new AzureDevOps.ProjectTags("example", new()
        {
            ProjectId = example.Id,
            Tags = new[]
            {
                "tag1",
                "tag2",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azuredevops.Project;
    import com.pulumi.azuredevops.ProjectArgs;
    import com.pulumi.azuredevops.ProjectTags;
    import com.pulumi.azuredevops.ProjectTagsArgs;
    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 Project("example", ProjectArgs.builder()
                .name("Example Project")
                .visibility("private")
                .versionControl("Git")
                .workItemTemplate("Agile")
                .description("Managed by Pulumi")
                .build());
    
            var exampleProjectTags = new ProjectTags("exampleProjectTags", ProjectTagsArgs.builder()
                .projectId(example.id())
                .tags(            
                    "tag1",
                    "tag2")
                .build());
    
        }
    }
    
    resources:
      example:
        type: azuredevops:Project
        properties:
          name: Example Project
          visibility: private
          versionControl: Git
          workItemTemplate: Agile
          description: Managed by Pulumi
      exampleProjectTags:
        type: azuredevops:ProjectTags
        name: example
        properties:
          projectId: ${example.id}
          tags:
            - tag1
            - tag2
    

    Create ProjectTags Resource

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

    Constructor syntax

    new ProjectTags(name: string, args: ProjectTagsArgs, opts?: CustomResourceOptions);
    @overload
    def ProjectTags(resource_name: str,
                    args: ProjectTagsArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def ProjectTags(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    project_id: Optional[str] = None,
                    tags: Optional[Sequence[str]] = None)
    func NewProjectTags(ctx *Context, name string, args ProjectTagsArgs, opts ...ResourceOption) (*ProjectTags, error)
    public ProjectTags(string name, ProjectTagsArgs args, CustomResourceOptions? opts = null)
    public ProjectTags(String name, ProjectTagsArgs args)
    public ProjectTags(String name, ProjectTagsArgs args, CustomResourceOptions options)
    
    type: azuredevops:ProjectTags
    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 ProjectTagsArgs
    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 ProjectTagsArgs
    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 ProjectTagsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProjectTagsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProjectTagsArgs
    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 projectTagsResource = new AzureDevOps.ProjectTags("projectTagsResource", new()
    {
        ProjectId = "string",
        Tags = new[]
        {
            "string",
        },
    });
    
    example, err := azuredevops.NewProjectTags(ctx, "projectTagsResource", &azuredevops.ProjectTagsArgs{
    	ProjectId: pulumi.String("string"),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var projectTagsResource = new ProjectTags("projectTagsResource", ProjectTagsArgs.builder()
        .projectId("string")
        .tags("string")
        .build());
    
    project_tags_resource = azuredevops.ProjectTags("projectTagsResource",
        project_id="string",
        tags=["string"])
    
    const projectTagsResource = new azuredevops.ProjectTags("projectTagsResource", {
        projectId: "string",
        tags: ["string"],
    });
    
    type: azuredevops:ProjectTags
    properties:
        projectId: string
        tags:
            - string
    

    ProjectTags 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 ProjectTags resource accepts the following input properties:

    ProjectId string
    The ID of the Project. Changing this forces a new resource to be created.
    Tags List<string>
    A mapping of tags assigned to the Project.
    ProjectId string
    The ID of the Project. Changing this forces a new resource to be created.
    Tags []string
    A mapping of tags assigned to the Project.
    projectId String
    The ID of the Project. Changing this forces a new resource to be created.
    tags List<String>
    A mapping of tags assigned to the Project.
    projectId string
    The ID of the Project. Changing this forces a new resource to be created.
    tags string[]
    A mapping of tags assigned to the Project.
    project_id str
    The ID of the Project. Changing this forces a new resource to be created.
    tags Sequence[str]
    A mapping of tags assigned to the Project.
    projectId String
    The ID of the Project. Changing this forces a new resource to be created.
    tags List<String>
    A mapping of tags assigned to the Project.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ProjectTags 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 ProjectTags Resource

    Get an existing ProjectTags 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?: ProjectTagsState, opts?: CustomResourceOptions): ProjectTags
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            project_id: Optional[str] = None,
            tags: Optional[Sequence[str]] = None) -> ProjectTags
    func GetProjectTags(ctx *Context, name string, id IDInput, state *ProjectTagsState, opts ...ResourceOption) (*ProjectTags, error)
    public static ProjectTags Get(string name, Input<string> id, ProjectTagsState? state, CustomResourceOptions? opts = null)
    public static ProjectTags get(String name, Output<String> id, ProjectTagsState state, CustomResourceOptions options)
    resources:  _:    type: azuredevops:ProjectTags    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:
    ProjectId string
    The ID of the Project. Changing this forces a new resource to be created.
    Tags List<string>
    A mapping of tags assigned to the Project.
    ProjectId string
    The ID of the Project. Changing this forces a new resource to be created.
    Tags []string
    A mapping of tags assigned to the Project.
    projectId String
    The ID of the Project. Changing this forces a new resource to be created.
    tags List<String>
    A mapping of tags assigned to the Project.
    projectId string
    The ID of the Project. Changing this forces a new resource to be created.
    tags string[]
    A mapping of tags assigned to the Project.
    project_id str
    The ID of the Project. Changing this forces a new resource to be created.
    tags Sequence[str]
    A mapping of tags assigned to the Project.
    projectId String
    The ID of the Project. Changing this forces a new resource to be created.
    tags List<String>
    A mapping of tags assigned to the Project.

    Import

    Azure DevOps Project Tags can be imported using the Project ID e.g.:

    $ pulumi import azuredevops:index/projectTags:ProjectTags example 00000000-0000-0000-0000-000000000000
    

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

    Package Details

    Repository
    Azure DevOps pulumi/pulumi-azuredevops
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azuredevops Terraform Provider.
    azuredevops logo
    Azure DevOps v3.8.0 published on Monday, Mar 17, 2025 by Pulumi