com.pulumi.gcp.gkehub.kotlin.inputs.FleetDefaultClusterConfigBinaryAuthorizationConfigPolicyBindingArgs.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.FleetDefaultClusterConfigBinaryAuthorizationConfigPolicyBindingArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property name The relative resource name of the binauthz platform policy to audit. GKE
* platform policies have the following format:
* `projects/{project_number}/platforms/gke/policies/{policy_id}`.
*/
public data class FleetDefaultClusterConfigBinaryAuthorizationConfigPolicyBindingArgs(
public val name: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.gkehub.inputs.FleetDefaultClusterConfigBinaryAuthorizationConfigPolicyBindingArgs =
com.pulumi.gcp.gkehub.inputs.FleetDefaultClusterConfigBinaryAuthorizationConfigPolicyBindingArgs.builder()
.name(name?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [FleetDefaultClusterConfigBinaryAuthorizationConfigPolicyBindingArgs].
*/
@PulumiTagMarker
public class FleetDefaultClusterConfigBinaryAuthorizationConfigPolicyBindingArgsBuilder internal constructor() {
private var name: Output? = null
/**
* @param value The relative resource name of the binauthz platform policy to audit. GKE
* platform policies have the following format:
* `projects/{project_number}/platforms/gke/policies/{policy_id}`.
*/
@JvmName("mxhsuiemxjycijvx")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The relative resource name of the binauthz platform policy to audit. GKE
* platform policies have the following format:
* `projects/{project_number}/platforms/gke/policies/{policy_id}`.
*/
@JvmName("lynopqfmcunjpwnx")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
internal fun build(): FleetDefaultClusterConfigBinaryAuthorizationConfigPolicyBindingArgs =
FleetDefaultClusterConfigBinaryAuthorizationConfigPolicyBindingArgs(
name = name,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy