-
Notifications
You must be signed in to change notification settings - Fork 0
AzDoIterationNodes
github-actions[bot] edited this page Aug 19, 2026
·
4 revisions
| Parameter | Attribute | DataType | Description | Allowed Values |
|---|---|---|---|---|
| ProjectName | Key | System.String | Specifies the name of the Azure DevOps project. This parameter is mandatory and serves as the key identifier for the resource. | |
| Ensure | Write | Ensure |
Present, Absent
|
|
| IterationAttributes | Write | System.Collections.Hashtable[] | Specifies an array of hashtables, each representing attributes for iterations to be managed within the Azure DevOps project. This parameter is mandatory. | |
| LookupResult | Read | System.Collections.Hashtable |
The AzDoIterationNodes class is a DSC resource that inherits from the AzDevOpsDscResourceBase class. It manages iteration paths and their attributes within a specified Azure DevOps project.
This example shows how to ensure that Azure DevOps iteration nodes exist in a project.
Configuration Example
{
Import-DscResource -ModuleName 'AzureDevOpsDscNative'
node localhost
{
AzDoIterationNodes 'AddAzDoIterationNodes'
{
Ensure = 'Present'
ProjectName = 'MyProject'
IterationAttributes = @(
@{
Name = 'Sprint 1'
StartDate = '2024-01-01'
FinishDate = '2024-01-14'
}
@{
Name = 'Sprint 2'
StartDate = '2024-01-15'
FinishDate = '2024-01-28'
}
)
}
}
}This example shows how to update the iteration nodes in an Azure DevOps project.
Configuration Example
{
Import-DscResource -ModuleName 'AzureDevOpsDscNative'
node localhost
{
AzDoIterationNodes 'UpdateAzDoIterationNodes'
{
Ensure = 'Present'
ProjectName = 'MyProject'
IterationAttributes = @(
@{
Name = 'Sprint 1'
StartDate = '2024-01-01'
FinishDate = '2024-01-14'
}
@{
Name = 'Sprint 2'
StartDate = '2024-01-15'
FinishDate = '2024-01-28'
}
@{
Name = 'Sprint 3'
StartDate = '2024-01-29'
FinishDate = '2024-02-11'
}
)
}
}
}This example shows how to remove iteration nodes from an Azure DevOps project.
Configuration Example
{
Import-DscResource -ModuleName 'AzureDevOpsDscNative'
node localhost
{
AzDoIterationNodes 'RemoveAzDoIterationNodes'
{
Ensure = 'Absent'
ProjectName = 'MyProject'
}
}
}- Assert-BoundParameter
- Assert-ElevatedUser
- Assert-IPAddress
- Assert-Module
- AzDoAPI_0_ProjectCache
- AzDoAPI_1_GroupCache
- AzDoAPI_2_UserCache
- AzDoAPI_3_GroupMemberCache
- AzDoAPI_4_GitRepositoryCache
- AzDoAPI_5_PermissionsCache
- AzDoAPI_6_ServicePrinciple
- AzDoAPI_7_IdentitySubjectDescriptors
- AzDoAPI_8_ProjectProcessTemplates
- AzDoAPI_9_DevOpsClassificationNodes
- Compare-DscParameterState
- Compare-ResourcePropertyState
- ConvertFrom-DscResourceInstance
- ConvertTo-Base64String
- ConvertTo-CimInstance
- ConvertTo-HashTable
- Find-Certificate
- Format-Path
- Get-AzDevOpsOperation
- Get-AzDevOpsServicesApiUri
- Get-AzDevOpsServicesUri
- AzDoAgentPool
- AzDoAgentPoolPermission
- AzDoAgentQueue
- AzDoAreaNodes
- AzDoAreaPermission
- AzDoArtifactFeed
- AzDoArtifactFeedPermission
- AzDoArtifactFeedSettings
- AzDoArtifactFeedView
- AzDoAuditStream
- AzDoBranchPolicy
- AzDoCheckConfiguration
- AzDoDeploymentGroup
- AzDoEnvironmentApproval
- AzDoEnvironmentPermission
- AzDoExtension
- AzDoGitPermission
- AzDoGitRepository
- AzDoGroupMember
- AzDoGroupPermission
- AzDoIterationNodes
- AzDoIterationPermission
- AzDoNotificationSubscription
- AzDoOrganizationGroup
- AzDoOrganizationSettings
- AzDoPipeline
- AzDoPipelineEnvironment
- AzDoPipelinePermission
- AzDoPipelineSettings
- AzDoProcess
- AzDoProcessPermission
- AzDoProject
- AzDoProjectGroup
- AzDoProjectPermission
- AzDoProjectServices
- AzDoRepositorySettings
- AzDoSecurityNamespacePermission
- AzDoServiceConnection
- AzDoServiceConnectionPermission
- AzDoServiceHook
- AzDoTaskGroup
- AzDoTeam
- AzDoTeamMember
- AzDoTeamSettings
- AzDoUserEntitlement
- AzDoVariableGroup
- AzDoVariableGroupPermission
- AzDoWiki
- AzDoWIPTags