OrganizationArgs

data class OrganizationArgs(val openAccess: Output<Boolean>? = null, val parallelism: Output<Int>? = null, val projects: Output<List<String>>? = null, val url: Output<String>) : ConvertibleToJava<OrganizationArgs>

Defines an Azure DevOps organization.

Constructors

Link copied to clipboard
constructor(openAccess: Output<Boolean>? = null, parallelism: Output<Int>? = null, projects: Output<List<String>>? = null, url: Output<String>)

Properties

Link copied to clipboard
val openAccess: Output<Boolean>? = null

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

Link copied to clipboard
val parallelism: Output<Int>? = null

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

Link copied to clipboard
val projects: Output<List<String>>? = null

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

Link copied to clipboard
val url: Output<String>

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

Functions

Link copied to clipboard
open override fun toJava(): OrganizationArgs