en-US/about_AzDoWIPTags.help.txt

.NAME
    AzDoWIPTags
 
.SYNOPSIS
 
 
.DESCRIPTION
 
 
.PARAMETER ProjectName
    Key - System.String
 
.PARAMETER WorkItemTrackingTagList
    Required - System.String[]
 
.EXAMPLE 1
 
This example shows how to add Tags
 
Configuration Example
{
 
    Import-DscResource -ModuleName 'AzureDevOpsDscNative'
 
    Node localhost {
        AzDoWIPTags 'AddProjectWIPTags' {
            Ensure = 'Present'
            ProjectName = 'SampleProject'
            WorkItemTrackingTagList = @('Blocked', 'Need More Info', 'Ready for Dev', 'Ready for QA', 'Ready for Prod')
        }
    }
}
 
.EXAMPLE 2
 
This example shows how to remove Tags
 
Configuration Example
{
 
    Import-DscResource -ModuleName 'AzureDevOpsDscNative'
 
    Node localhost {
        AzDoWIPTags 'AddProjectWIPTags' {
            Ensure = 'Absent'
            ProjectName = 'SampleProject'
            WorkItemTrackingTagList = @('Blocked', 'Need More Info', 'Ready for Dev', 'Ready for QA', 'Ready for Prod')
        }
    }
}
 
.EXAMPLE 3
 
This example shows how to update Tags
 
Configuration Example
{
 
    Import-DscResource -ModuleName 'AzureDevOpsDscNative'
 
    Node localhost {
        AzDoWIPTags 'AddProjectWIPTags' {
            ProjectName = 'SampleProject'
            WorkItemTrackingTagList = @('Blocked', 'Need More Info', 'Ready for Review')
        }
    }
}