OvfWarningInfo
The WarningInfo structure provides information about the warnings which are raised during the OVF package deployment.
Properties
Indicates if this warning will be ignored when deploying the OVF package. The value is set to be false when it is returned from LibraryItem.filter, it should be updated to be true when calling LibraryItem.deploy if the warning can be ignored, otherwise the OVF package deployment will fail.
The WarningType enumerated type defines the warnings which can be raised during the OVF package deployment.
SELF_SIGNED_CERTIFICATE : The certificate used for signing the OVF package content is self-signed.
EXPIRED_CERTIFICATE : The certificate used for signing the OVF package content is expired.
NOT_YET_VALID_CERTIFICATE : The certificate used for signing the OVF package content is not yet valid.
UNTRUSTED_CERTIFICATE : The certificate used for signing the OVF package content is not trusted.
Possible values are: SELF_SIGNED_CERTIFICATE , EXPIRED_CERTIFICATE , NOT_YET_VALID_CERTIFICATE , UNTRUSTED_CERTIFICATE
JSON Example
{
"ignored": false,
"message": {
"args": [
"string"
],
"default_message": "string",
"id": "string"
},
"type": "SELF_SIGNED_CERTIFICATE"
}