com.pulumi.gcp.storage.kotlin.outputs.GetTransferProjectServieAccountResult.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.storage.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getTransferProjectServieAccount.
* @property email Email address of the default service account used by Storage Transfer Jobs 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 project
* @property subjectId Unique identifier for the service account.
*/
public data class GetTransferProjectServieAccountResult(
public val email: String,
public val id: String,
public val member: String,
public val project: String,
public val subjectId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.storage.outputs.GetTransferProjectServieAccountResult): GetTransferProjectServieAccountResult = GetTransferProjectServieAccountResult(
email = javaType.email(),
id = javaType.id(),
member = javaType.member(),
project = javaType.project(),
subjectId = javaType.subjectId(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy