
com.pulumi.googlenative.tpu.v2alpha1.kotlin.outputs.ServiceAccountResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.tpu.v2alpha1.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.v2alpha1.outputs.ServiceAccountResponse): ServiceAccountResponse = ServiceAccountResponse(
email = javaType.email(),
scope = javaType.scope().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy