com.pulumi.gcp.serviceaccount.kotlin.outputs.GetAccountJwtResult.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.serviceaccount.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A collection of values returned by getAccountJwt.
* @property delegates
* @property expiresIn
* @property id The provider-assigned unique ID for this managed resource.
* @property jwt The signed JWT containing the JWT Claims Set from the `payload`.
* @property payload
* @property targetServiceAccount
*/
public data class GetAccountJwtResult(
public val delegates: List? = null,
public val expiresIn: Int? = null,
public val id: String,
public val jwt: String,
public val payload: String,
public val targetServiceAccount: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.serviceaccount.outputs.GetAccountJwtResult): GetAccountJwtResult = GetAccountJwtResult(
delegates = javaType.delegates().map({ args0 -> args0 }),
expiresIn = javaType.expiresIn().map({ args0 -> args0 }).orElse(null),
id = javaType.id(),
jwt = javaType.jwt(),
payload = javaType.payload(),
targetServiceAccount = javaType.targetServiceAccount(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy