![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.devopsinfrastructure.kotlin.outputs.OrganizationResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.devopsinfrastructure.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* Defines an Azure DevOps organization.
* @property parallelism How many machines can be created at maximum in this organization out of the maximumConcurrency of the pool.
* @property projects Optional list of projects in which the pool should be created.
* @property url The Azure DevOps organization URL in which the pool should be created.
*/
public data class OrganizationResponse(
public val parallelism: Int? = null,
public val projects: List? = null,
public val url: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.devopsinfrastructure.outputs.OrganizationResponse): OrganizationResponse = OrganizationResponse(
parallelism = javaType.parallelism().map({ args0 -> args0 }).orElse(null),
projects = javaType.projects().map({ args0 -> args0 }),
url = javaType.url(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy