CertificateConfigPublicKeyArgs

data class CertificateConfigPublicKeyArgs(val format: Output<String>, val key: Output<String>? = null) : ConvertibleToJava<CertificateConfigPublicKeyArgs>

Constructors

Link copied to clipboard
constructor(format: Output<String>, key: Output<String>? = null)

Properties

Link copied to clipboard
val format: Output<String>

The format of the public key. Currently, only PEM format is supported. Possible values are: KEY_TYPE_UNSPECIFIED, PEM.

Link copied to clipboard
val key: Output<String>? = null

Required. A public key. When this is specified in a request, the padding and encoding can be any of the options described by the respective 'KeyType' value. When this is generated by the service, it will always be an RFC 5280 SubjectPublicKeyInfo structure containing an algorithm identifier and a key. A base64-encoded string.

Functions

Link copied to clipboard
open override fun toJava(): CertificateConfigPublicKeyArgs