ServiceCertificateArgs

data class ServiceCertificateArgs(val certificatePassword: Output<String>? = null, val encodedCertificate: Output<String>, val expiry: Output<String>? = null, val storeName: Output<String>, val subject: Output<String>? = null, val thumbprint: Output<String>? = null) : ConvertibleToJava<ServiceCertificateArgs>

Constructors

Link copied to clipboard
constructor(certificatePassword: Output<String>? = null, encodedCertificate: Output<String>, expiry: Output<String>? = null, storeName: Output<String>, subject: Output<String>? = null, thumbprint: Output<String>? = null)

Properties

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

The password for the certificate.

Link copied to clipboard

The Base64 Encoded PFX or Base64 Encoded X.509 Certificate.

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

The expiration date of the certificate in RFC3339 format: 2000-01-02T03:04:05Z.

Link copied to clipboard
val storeName: Output<String>

The name of the Certificate Store where this certificate should be stored. Possible values are CertificateAuthority and Root.

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

The subject of the certificate.

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

The thumbprint of the certificate.

Functions

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