
com.pulumi.googlenative.containeranalysis.v1alpha1.kotlin.outputs.EnvelopeSignatureResponse.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.containeranalysis.v1alpha1.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* A DSSE signature
* @property keyid A reference id to the key being used for signing
* @property sig The signature itself
*/
public data class EnvelopeSignatureResponse(
public val keyid: String,
public val sig: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.containeranalysis.v1alpha1.outputs.EnvelopeSignatureResponse): EnvelopeSignatureResponse = EnvelopeSignatureResponse(
keyid = javaType.keyid(),
sig = javaType.sig(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy