![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.cloudflare.kotlin.outputs.GetLoadBalancerPoolsResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-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.cloudflare.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A collection of values returned by getLoadBalancerPools.
* @property accountId The account identifier to target for the datasource lookups.
* @property filter One or more values used to look up Load Balancer pools. If more than one value is given all values must match in order to be included.
* @property id The provider-assigned unique ID for this managed resource.
* @property pools A list of Load Balancer Pools details.
*/
public data class GetLoadBalancerPoolsResult(
public val accountId: String,
public val filter: GetLoadBalancerPoolsFilter? = null,
public val id: String,
public val pools: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.GetLoadBalancerPoolsResult): GetLoadBalancerPoolsResult = GetLoadBalancerPoolsResult(
accountId = javaType.accountId(),
filter = javaType.filter().map({ args0 ->
args0.let({ args0 ->
com.pulumi.cloudflare.kotlin.outputs.GetLoadBalancerPoolsFilter.Companion.toKotlin(args0)
})
}).orElse(null),
id = javaType.id(),
pools = javaType.pools().map({ args0 ->
args0.let({ args0 ->
com.pulumi.cloudflare.kotlin.outputs.GetLoadBalancerPoolsPool.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy