ServiceCertificate

data class ServiceCertificate(val certificatePassword: String? = null, val encodedCertificate: String, val expiry: String? = null, val storeName: String, val subject: String? = null, val thumbprint: String? = null)

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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: String? = null

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

Link copied to clipboard

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

Link copied to clipboard
val subject: String? = null

The subject of the certificate.

Link copied to clipboard
val thumbprint: String? = null

The thumbprint of the certificate.