com.pulumi.cloudflare.kotlin.inputs.AccessPolicyExcludeAzureArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.cloudflare.kotlin.inputs
import com.pulumi.cloudflare.inputs.AccessPolicyExcludeAzureArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property identityProviderId The ID of the Azure identity provider.
* @property ids The ID of the Azure group or user.
*/
public data class AccessPolicyExcludeAzureArgs(
public val identityProviderId: Output? = null,
public val ids: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.cloudflare.inputs.AccessPolicyExcludeAzureArgs =
com.pulumi.cloudflare.inputs.AccessPolicyExcludeAzureArgs.builder()
.identityProviderId(identityProviderId?.applyValue({ args0 -> args0 }))
.ids(ids?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [AccessPolicyExcludeAzureArgs].
*/
@PulumiTagMarker
public class AccessPolicyExcludeAzureArgsBuilder internal constructor() {
private var identityProviderId: Output? = null
private var ids: Output>? = null
/**
* @param value The ID of the Azure identity provider.
*/
@JvmName("ldsuhhojpobbckkk")
public suspend fun identityProviderId(`value`: Output) {
this.identityProviderId = value
}
/**
* @param value The ID of the Azure group or user.
*/
@JvmName("yrwsbfpjqeplbjrh")
public suspend fun ids(`value`: Output>) {
this.ids = value
}
@JvmName("gwkjgmryivbgnsqu")
public suspend fun ids(vararg values: Output) {
this.ids = Output.all(values.asList())
}
/**
* @param values The ID of the Azure group or user.
*/
@JvmName("gnugyloyatooigre")
public suspend fun ids(values: List