en-US/about_AzDoAgentQueue.help.txt
|
.NAME
AzDoAgentQueue .SYNOPSIS DSC resource for managing Azure DevOps agent queues. .DESCRIPTION .PARAMETER ProjectName Key - System.String .PARAMETER QueueName Required - System.String .PARAMETER PoolName Required - System.String .PARAMETER AuthorizeAllPipelines Write - System.Boolean .EXAMPLE 1 Configuration Example { Import-DscResource -ModuleName 'AzureDevOpsDscNative' node localhost { AzDoAgentQueue 'AddAgentQueue' { Ensure='Present'; ProjectName='MyProject'; QueueName='MyQueue'; PoolName='MyAgentPool' } } } .EXAMPLE 2 Configuration Example { Import-DscResource -ModuleName 'AzureDevOpsDscNative' node localhost { AzDoAgentQueue 'UpdateAgentQueue' { Ensure='Present'; ProjectName='MyProject'; QueueName='MyQueue'; PoolName='MyAgentPool'; AuthorizeAllPipelines=$true } } } .EXAMPLE 3 Configuration Example { Import-DscResource -ModuleName 'AzureDevOpsDscNative' node localhost { AzDoAgentQueue 'RemoveAgentQueue' { Ensure='Absent'; ProjectName='MyProject'; QueueName='MyQueue'; PoolName='MyAgentPool' } } } |