
com.pulumi.googlenative.cloudidentity.v1.kotlin.inputs.DynamicGroupMetadataArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.cloudidentity.v1.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.googlenative.cloudidentity.v1.inputs.DynamicGroupMetadataArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Dynamic group metadata like queries and status.
* @property queries Memberships will be the union of all queries. Only one entry with USER resource is currently supported. Customers can create up to 100 dynamic groups.
*/
public data class DynamicGroupMetadataArgs(
public val queries: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.googlenative.cloudidentity.v1.inputs.DynamicGroupMetadataArgs =
com.pulumi.googlenative.cloudidentity.v1.inputs.DynamicGroupMetadataArgs.builder()
.queries(
queries?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [DynamicGroupMetadataArgs].
*/
@PulumiTagMarker
public class DynamicGroupMetadataArgsBuilder internal constructor() {
private var queries: Output>? = null
/**
* @param value Memberships will be the union of all queries. Only one entry with USER resource is currently supported. Customers can create up to 100 dynamic groups.
*/
@JvmName("jrydssssyjwubmqf")
public suspend fun queries(`value`: Output>) {
this.queries = value
}
@JvmName("sdvcqwhfubemnjln")
public suspend fun queries(vararg values: Output) {
this.queries = Output.all(values.asList())
}
/**
* @param values Memberships will be the union of all queries. Only one entry with USER resource is currently supported. Customers can create up to 100 dynamic groups.
*/
@JvmName("sypxwqhydfmgfctl")
public suspend fun queries(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy