com.pulumi.gcp.gkehub.kotlin.inputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentArgs.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.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.gkehub.inputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @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 FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentArgs(
public val bundles: Output>? =
null,
public val templateLibrary: Output? =
null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.gkehub.inputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentArgs =
com.pulumi.gcp.gkehub.inputs.FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentArgs.builder()
.bundles(
bundles?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.templateLibrary(
templateLibrary?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentArgs].
*/
@PulumiTagMarker
public class FeatureMembershipPolicycontrollerPolicyControllerHubConfigPolicyContentArgsBuilder
internal constructor() {
private var bundles:
Output>? =
null
private var templateLibrary:
Output? =
null
/**
* @param value map of bundle name to BundleInstallSpec. The bundle name maps to the `bundleName` key in the `policycontroller.gke.io/constraintData` annotation on a constraint.
*/
@JvmName("yercbqcrleysqlim")
public suspend fun bundles(`value`: Output>) {
this.bundles = value
}
@JvmName("lbqnbkydsbwlwbko")
public suspend fun bundles(vararg values: Output) {
this.bundles = Output.all(values.asList())
}
/**
* @param values map of bundle name to BundleInstallSpec. The bundle name maps to the `bundleName` key in the `policycontroller.gke.io/constraintData` annotation on a constraint.
*/
@JvmName("umqusnnkymfwavlh")
public suspend fun bundles(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy