com.vmware.vcenter.ovf

certificate_params

The certificate_params structure contains information about the public key certificate used to sign the OVF package. This structure will only be returned if the OVF package is signed.

See deploy and filter.

Representations:
{
    "is_self_signed"true,
    "is_valid"true,
    "issuer""string",
    "subject""string",
    "x509""string"
}
<?xml version="1.0" ?>
<ns0:CertificateParams xmlns:ns0="http://vmware.com/vcenter/ovf" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <is_self_signed>true</is_self_signed>
  <issuer>string</issuer>
  <subject>string</subject>
  <x509>string</x509>
  <is_valid>true</is_valid>
</ns0:CertificateParams>

Attributes:
Name Type Required Description
issuer string Read Certificate issuer. For example: /C=US/ST=California/L=Palo Alto/O=VMware, Inc.
subject string Read Certificate subject. For example: /C=US/ST=Massachusetts/L=Hopkinton/O=EMC Corporation/OU=EMC Avamar/CN=EMC Corporation.
is_valid boolean Read Is the certificate chain validated.
is_self_signed boolean Read Is the certificate self-signed.
x509 string Read The X509 representation of the certificate.
type string Create, Read Unique identifier describing the type of the OVF parameters. The value is the name of the OVF parameters structure.

Copyright © 2014. All Rights Reserved.