
com.pulumi.gcp.serviceaccount.kotlin.outputs.GetSAccount.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.serviceaccount.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property accountId The Google service account ID (the part before the `@` sign in the `email`)
* @property disabled Whether a service account is disabled or not.
* @property displayName The display name for the service account.
* @property email The e-mail address of the service account. This value
* should be referenced from any `gcp.organizations.getIAMPolicy` data sources
* that would grant the service account privileges.
* @property member The Identity of the service account in the form `serviceAccount:{email}`. This value is often used to refer to the service account in order to grant IAM permissions.
* @property name The fully-qualified name of the service account.
* @property uniqueId The unique id of the service account.
*/
public data class GetSAccount(
public val accountId: String,
public val disabled: Boolean,
public val displayName: String,
public val email: String,
public val member: String,
public val name: String,
public val uniqueId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.serviceaccount.outputs.GetSAccount): GetSAccount =
GetSAccount(
accountId = javaType.accountId(),
disabled = javaType.disabled(),
displayName = javaType.displayName(),
email = javaType.email(),
member = javaType.member(),
name = javaType.name(),
uniqueId = javaType.uniqueId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy