com.pulumi.gcp.gkehub.kotlin.outputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContent.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
import kotlin.collections.List
/**
*
* @property bundles map of bundle name to BundleInstallSpec. The bundle name maps to the `bundleName` key in the `policycontroller.gke.io/constraintData` annotation on a constraint.
* @property templateLibrary Configures the installation of the Template Library. Structure is documented below.
*/
public data class FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContent(
public val bundles: List? = null,
public val templateLibrary: FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibrary? =
null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.gkehub.outputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContent): FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContent =
FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContent(
bundles = javaType.bundles().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.gkehub.kotlin.outputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentBundle.Companion.toKotlin(args0)
})
}),
templateLibrary = javaType.templateLibrary().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.gkehub.kotlin.outputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibrary.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy