CertificateManagementVcenterTlsInfo
The Tls.Info structure contains information from a TLS certificate.
Properties
Collection of authority information access URI.
TLS certificate in PEM format.
Collection of extended keyusage that contains details for which the certificate can be used for.
Certificate constraints isCA from the critical BasicConstraints extension, (OID = 2.5.29.19).
Issuer (issuer distinguished name) value from the certificate.
Collection of keyusage contained in the certificate.
Certificate constraints path length from the critical BasicConstraints extension, (OID = 2.5.29.19).
SerialNumber value from the certificate.
Signature algorithm name from the certificate.
Collection of subject alternative names.
Subject (subject distinguished name) value from the certificate.
Thumbprint value from the certificate.
validFrom specify the start date of the certificate.
validTo specify the end date of the certificate.
Version (version number) value from the certificate.
JSON Example
{
"authority_information_access_uri": [
"string"
],
"cert": "string",
"extended_key_usage": [
"string"
],
"is_CA": false,
"issuer_dn": "string",
"key_usage": [
"string"
],
"path_length_constraint": 0,
"serial_number": "string",
"signature_algorithm": "string",
"subject_alternative_name": [
"string"
],
"subject_dn": "string",
"thumbprint": "string",
"valid_from": "string",
"valid_to": "string",
"version": 0
}