InstallCertificateSpec
                                InstallCertificateSpec                            
                            Specification to install new certificate:
- selfsignedFormat - Generate and install new self-signed certificate.
- csrFormat - Install signed certificate based on a generated CSR.
- pkcs12Format - Install PKCS#12 certificate.
Initialize ONLY the property corresponding to the desired certificate installation format. Leave rest of the fields null or unset.
JSON Example
                                    {
    "selfsigned_format": {
        "common_name": "string",
        "organization": "VMware",
        "organization_unit": "VMware organization unit",
        "fqdn": "string",
        "ip": "10.20.11.15, 10.20.11.26",
        "locality": "Palo Alto",
        "state": "California",
        "country": "US",
        "email": "[email protected]"
    },
    "csr_format": {
        "certificate": "string",
        "ca_chain": [
            {}
        ]
    },
    "pkcs12_format": {
        "certificate": "string",
        "password": "string"
    }
}