com.pulumi.gcp.compute.kotlin.outputs.BackendServiceLocalityLbPolicy.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.compute.kotlin.outputs
import kotlin.Suppress
/**
*
* @property customPolicy The configuration for a custom policy implemented by the user and
* deployed with the client.
* Structure is documented below.
* @property policy The configuration for a built-in load balancing policy.
* Structure is documented below.
*/
public data class BackendServiceLocalityLbPolicy(
public val customPolicy: BackendServiceLocalityLbPolicyCustomPolicy? = null,
public val policy: BackendServiceLocalityLbPolicyPolicy? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.BackendServiceLocalityLbPolicy): BackendServiceLocalityLbPolicy = BackendServiceLocalityLbPolicy(
customPolicy = javaType.customPolicy().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.compute.kotlin.outputs.BackendServiceLocalityLbPolicyCustomPolicy.Companion.toKotlin(args0)
})
}).orElse(null),
policy = javaType.policy().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.compute.kotlin.outputs.BackendServiceLocalityLbPolicyPolicy.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy