All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.devopsinfrastructure.kotlin.outputs.OrganizationResponse.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 2.82.0.0
Show newest version
@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