CertificateSigningRequestStatus

data class CertificateSigningRequestStatus(val certificate: String? = null, val conditions: List<CertificateSigningRequestCondition>? = null)

CertificateSigningRequestStatus contains conditions used to indicate approved/denied/failed status of the request, and the issued certificate.

Constructors

Link copied to clipboard
fun CertificateSigningRequestStatus(certificate: String? = null, conditions: List<CertificateSigningRequestCondition>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val certificate: String? = null

certificate is populated with an issued certificate by the signer after an Approved condition is present. This field is set via the /status subresource. Once populated, this field is immutable. If the certificate signing request is denied, a condition of type "Denied" is added and this field remains empty. If the signer cannot issue the certificate, a condition of type "Failed" is added and this field remains empty. Validation requirements:

Link copied to clipboard

conditions applied to the request. Known conditions are "Approved", "Denied", and "Failed".