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

com.pulumi.googlenative.cloudidentity.v1.kotlin.outputs.EntityKeyResponse.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.v1.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * A unique identifier for an entity in the Cloud Identity Groups API. An entity can represent either a group with an optional `namespace` or a user without a `namespace`. The combination of `id` and `namespace` must be unique; however, the same `id` can be used with different `namespace`s.
 * @property namespace The namespace in which the entity exists. If not specified, the `EntityKey` represents a Google-managed entity such as a Google user or a Google Group. If specified, the `EntityKey` represents an external-identity-mapped group. The namespace must correspond to an identity source created in Admin Console and must be in the form of `identitysources/{identity_source}`.
 */
public data class EntityKeyResponse(
    public val namespace: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.cloudidentity.v1.outputs.EntityKeyResponse): EntityKeyResponse = EntityKeyResponse(
            namespace = javaType.namespace(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy