com.pulumi.gcp.gkehub.kotlin.inputs.FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentBundleArgs.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.FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentBundleArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property bundle The identifier for this object. Format specified above.
* @property exemptedNamespaces The set of namespaces to be exempted from the bundle.
*/
public data class
FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentBundleArgs(
public val bundle: Output,
public val exemptedNamespaces: Output>? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.gkehub.inputs.FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentBundleArgs =
com.pulumi.gcp.gkehub.inputs.FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentBundleArgs.builder()
.bundle(bundle.applyValue({ args0 -> args0 }))
.exemptedNamespaces(
exemptedNamespaces?.applyValue({ args0 ->
args0.map({ args0 ->
args0
})
}),
).build()
}
/**
* Builder for [FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentBundleArgs].
*/
@PulumiTagMarker
public class
FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentBundleArgsBuilder
internal constructor() {
private var bundle: Output? = null
private var exemptedNamespaces: Output>? = null
/**
* @param value The identifier for this object. Format specified above.
*/
@JvmName("unjncnpdxjiqbgvg")
public suspend fun bundle(`value`: Output) {
this.bundle = value
}
/**
* @param value The set of namespaces to be exempted from the bundle.
*/
@JvmName("irmqowoqmasbcxdm")
public suspend fun exemptedNamespaces(`value`: Output>) {
this.exemptedNamespaces = value
}
@JvmName("nqaubvbitiokkpvh")
public suspend fun exemptedNamespaces(vararg values: Output) {
this.exemptedNamespaces = Output.all(values.asList())
}
/**
* @param values The set of namespaces to be exempted from the bundle.
*/
@JvmName("ofginygmhgxkqfjg")
public suspend fun exemptedNamespaces(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy