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

com.pulumi.gcp.gkehub.kotlin.outputs.FeatureFleetDefaultMemberConfig.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: 8.10.0.0
Show newest version
@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