
com.pulumi.nomad.kotlin.outputs.GetJwksKey.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.nomad.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property algorithm `(string)` - JWK field `alg`
* @property exponent `(string)` - JWK field `e`
* @property keyId `(string)` - JWK field `kid`
* @property keyType `(string)` - JWK field `kty`
* @property keyUse `(string)` - JWK field `use`
* @property modulus `(string)` - JWK field `n`
*/
public data class GetJwksKey(
public val algorithm: String,
public val exponent: String,
public val keyId: String,
public val keyType: String,
public val keyUse: String,
public val modulus: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.nomad.outputs.GetJwksKey): GetJwksKey = GetJwksKey(
algorithm = javaType.algorithm(),
exponent = javaType.exponent(),
keyId = javaType.keyId(),
keyType = javaType.keyType(),
keyUse = javaType.keyUse(),
modulus = javaType.modulus(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy