com.pulumi.gcp.appengine.kotlin.outputs.GetDefaultServiceAccountResult.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.appengine.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getDefaultServiceAccount.
* @property displayName The display name for the service account.
* @property email Email address of the default service account used by App Engine in this project.
* @property id The provider-assigned unique ID for this managed resource.
* @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 project
* @property uniqueId The unique id of the service account.
*/
public data class GetDefaultServiceAccountResult(
public val displayName: String,
public val email: String,
public val id: String,
public val member: String,
public val name: String,
public val project: String,
public val uniqueId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.appengine.outputs.GetDefaultServiceAccountResult): GetDefaultServiceAccountResult = GetDefaultServiceAccountResult(
displayName = javaType.displayName(),
email = javaType.email(),
id = javaType.id(),
member = javaType.member(),
name = javaType.name(),
project = javaType.project(),
uniqueId = javaType.uniqueId(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy