Generic Signed Attestation Args
data class GenericSignedAttestationArgs(val contentType: Output<GenericSignedAttestationContentType>? = null, val serializedPayload: Output<String>? = null, val signatures: Output<List<SignatureArgs>>? = null) : ConvertibleToJava<GenericSignedAttestationArgs>
An attestation wrapper that uses the Grafeas Signature
message. This attestation must define the serialized_payload
that the signatures
verify and any metadata necessary to interpret that plaintext. The signatures should always be over the serialized_payload
bytestring.
Constructors
Link copied to clipboard
fun GenericSignedAttestationArgs(contentType: Output<GenericSignedAttestationContentType>? = null, serializedPayload: Output<String>? = null, signatures: Output<List<SignatureArgs>>? = null)