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

com.pulumi.gcp.compute.kotlin.outputs.GetDefaultServiceAccountResult.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.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.compute.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 VMs running 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.compute.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