All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.googlenative.cloudidentity.v1beta1.kotlin.outputs.DynamicGroupMetadataResponse.kt Maven / Gradle / Ivy

Go to download

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.v1beta1.kotlin.outputs

import kotlin.Suppress
import kotlin.collections.List

/**
 * 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.
 * @property status Status of the dynamic group.
 */
public data class DynamicGroupMetadataResponse(
    public val queries: List,
    public val status: DynamicGroupStatusResponse,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.cloudidentity.v1beta1.outputs.DynamicGroupMetadataResponse): DynamicGroupMetadataResponse = DynamicGroupMetadataResponse(
            queries = javaType.queries().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.googlenative.cloudidentity.v1beta1.kotlin.outputs.DynamicGroupQueryResponse.Companion.toKotlin(args0)
                })
            }),
            status = javaType.status().let({ args0 ->
                com.pulumi.googlenative.cloudidentity.v1beta1.kotlin.outputs.DynamicGroupStatusResponse.Companion.toKotlin(args0)
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy