![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.app.kotlin.inputs.AllowedPrincipalsArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.app.kotlin.inputs
import com.pulumi.azurenative.app.inputs.AllowedPrincipalsArgs.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
/**
* The configuration settings of the Azure Active Directory allowed principals.
* @property groups The list of the allowed groups.
* @property identities The list of the allowed identities.
*/
public data class AllowedPrincipalsArgs(
public val groups: Output>? = null,
public val identities: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.app.inputs.AllowedPrincipalsArgs =
com.pulumi.azurenative.app.inputs.AllowedPrincipalsArgs.builder()
.groups(groups?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.identities(identities?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [AllowedPrincipalsArgs].
*/
@PulumiTagMarker
public class AllowedPrincipalsArgsBuilder internal constructor() {
private var groups: Output>? = null
private var identities: Output>? = null
/**
* @param value The list of the allowed groups.
*/
@JvmName("gnpsydrssnpyidsa")
public suspend fun groups(`value`: Output>) {
this.groups = value
}
@JvmName("ejufnpqbetnbelns")
public suspend fun groups(vararg values: Output) {
this.groups = Output.all(values.asList())
}
/**
* @param values The list of the allowed groups.
*/
@JvmName("rreqefkgvlyablkj")
public suspend fun groups(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy