ArmDevOpsInfrastructureModelFactory.DevOpsOrganization Method

Definition

Defines an Azure DevOps organization.

public static Azure.ResourceManager.DevOpsInfrastructure.Models.DevOpsOrganization DevOpsOrganization(Uri uri = default, System.Collections.Generic.IEnumerable<string> projects = default, int? parallelism = default, bool? openAccess = default, string alias = default);
static member DevOpsOrganization : Uri * seq<string> * Nullable<int> * Nullable<bool> * string -> Azure.ResourceManager.DevOpsInfrastructure.Models.DevOpsOrganization
Public Shared Function DevOpsOrganization (Optional uri As Uri = Nothing, Optional projects As IEnumerable(Of String) = Nothing, Optional parallelism As Nullable(Of Integer) = Nothing, Optional openAccess As Nullable(Of Boolean) = Nothing, Optional alias As String = Nothing) As DevOpsOrganization

Parameters

uri
Uri

The Azure DevOps organization URL in which the pool should be created.

projects
IEnumerable<String>

Optional list of projects in which the pool should be created.

parallelism
Nullable<Int32>

How many machines can be created at maximum in this organization out of the maximumConcurrency of the pool.

openAccess
Nullable<Boolean>

Determines if the pool should have open access to all projects in this organization.

alias
String

An alias to reference the Azure DevOps pool name.

Returns

A new DevOpsOrganization instance for mocking.

Applies to