
com.pulumi.gcp.networksecurity.kotlin.inputs.AuthzPolicyCustomProviderAuthzExtensionArgs.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.networksecurity.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.networksecurity.inputs.AuthzPolicyCustomProviderAuthzExtensionArgs.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 resources A list of references to authorization extensions that will be invoked for requests matching this policy. Limited to 1 custom provider.
*/
public data class AuthzPolicyCustomProviderAuthzExtensionArgs(
public val resources: Output>,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.networksecurity.inputs.AuthzPolicyCustomProviderAuthzExtensionArgs =
com.pulumi.gcp.networksecurity.inputs.AuthzPolicyCustomProviderAuthzExtensionArgs.builder()
.resources(resources.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [AuthzPolicyCustomProviderAuthzExtensionArgs].
*/
@PulumiTagMarker
public class AuthzPolicyCustomProviderAuthzExtensionArgsBuilder internal constructor() {
private var resources: Output>? = null
/**
* @param value A list of references to authorization extensions that will be invoked for requests matching this policy. Limited to 1 custom provider.
*/
@JvmName("ralyqygloylcelwr")
public suspend fun resources(`value`: Output>) {
this.resources = value
}
@JvmName("shdadjhxcoynumif")
public suspend fun resources(vararg values: Output) {
this.resources = Output.all(values.asList())
}
/**
* @param values A list of references to authorization extensions that will be invoked for requests matching this policy. Limited to 1 custom provider.
*/
@JvmName("gdmirppqmlasdlaa")
public suspend fun resources(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy