com.pulumi.gcp.gkehub.kotlin.outputs.FeatureFleetDefaultMemberConfig.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.gkehub.kotlin.outputs
import kotlin.Suppress
/**
*
* @property configmanagement Config Management spec
* Structure is documented below.
* @property mesh Service Mesh spec
* Structure is documented below.
* @property policycontroller Policy Controller spec
* Structure is documented below.
*/
public data class FeatureFleetDefaultMemberConfig(
public val configmanagement: FeatureFleetDefaultMemberConfigConfigmanagement? = null,
public val mesh: FeatureFleetDefaultMemberConfigMesh? = null,
public val policycontroller: FeatureFleetDefaultMemberConfigPolicycontroller? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.gkehub.outputs.FeatureFleetDefaultMemberConfig): FeatureFleetDefaultMemberConfig = FeatureFleetDefaultMemberConfig(
configmanagement = javaType.configmanagement().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.gkehub.kotlin.outputs.FeatureFleetDefaultMemberConfigConfigmanagement.Companion.toKotlin(args0)
})
}).orElse(null),
mesh = javaType.mesh().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.gkehub.kotlin.outputs.FeatureFleetDefaultMemberConfigMesh.Companion.toKotlin(args0)
})
}).orElse(null),
policycontroller = javaType.policycontroller().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.gkehub.kotlin.outputs.FeatureFleetDefaultMemberConfigPolicycontroller.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy