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

com.pulumi.googlenative.tpu.v2.kotlin.outputs.ServiceAccountResponse.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.tpu.v2.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 * A service account.
 * @property email Email address of the service account. If empty, default Compute service account will be used.
 * @property scope The list of scopes to be made available for this service account. If empty, access to all Cloud APIs will be allowed.
 */
public data class ServiceAccountResponse(
    public val email: String,
    public val scope: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.tpu.v2.outputs.ServiceAccountResponse): ServiceAccountResponse = ServiceAccountResponse(
            email = javaType.email(),
            scope = javaType.scope().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy