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

com.pulumi.gcp.gkehub.kotlin.outputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContent.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
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