-
Notifications
You must be signed in to change notification settings - Fork 0
AzDoOrganizationSettings
github-actions[bot] edited this page Aug 19, 2026
·
4 revisions
| Parameter | Attribute | DataType | Description | Allowed Values |
|---|---|---|---|---|
| OrganizationName | Key | System.String | ||
| AllowExternalGuestAccess | Write | System.Boolean | ||
| AllowPublicProjects | Write | System.Boolean | ||
| DisallowAadGuestUserPolicy | Write | System.Boolean | ||
| EnableOAuthAuthentication | Write | System.Boolean | ||
| EnableSSHAuthentication | Write | System.Boolean | ||
| Ensure | Write | Ensure |
Present, Absent
|
|
| LookupResult | Read | System.Collections.Hashtable |
This example shows how to configure organization-level settings in Azure DevOps.
Configuration Example
{
Import-DscResource -ModuleName 'AzureDevOpsDscNative'
node localhost
{
AzDoOrganizationSettings 'AddAzDoOrganizationSettings'
{
Ensure = 'Present'
OrganizationName = 'test-organization'
AllowPublicProjects = $false
AllowExternalGuestAccess = $false
EnableOAuthAuthentication = $true
EnableSSHAuthentication = $true
DisallowAadGuestUserPolicy = $false
}
}
}This example shows how to update organization-level settings in Azure DevOps.
Configuration Example
{
Import-DscResource -ModuleName 'AzureDevOpsDscNative'
node localhost
{
AzDoOrganizationSettings 'UpdateAzDoOrganizationSettings'
{
Ensure = 'Present'
OrganizationName = 'test-organization'
AllowPublicProjects = $false
AllowExternalGuestAccess = $true
EnableOAuthAuthentication = $true
EnableSSHAuthentication = $false
DisallowAadGuestUserPolicy = $true
}
}
}This example shows how to reset organization-level settings to their defaults in Azure DevOps.
Configuration Example
{
Import-DscResource -ModuleName 'AzureDevOpsDscNative'
node localhost
{
AzDoOrganizationSettings 'RemoveAzDoOrganizationSettings'
{
Ensure = 'Absent'
OrganizationName = 'test-organization'
}
}
}- 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