OvfOvfError

The OvfError structure describes an error related to accessing, validating, deploying, or exporting an OVF package.


Properties

category Required

The OvfMessage.Category enumerated type defines the categories of messages (see OvfMessage).
VALIDATION : The OVF descriptor is invalid, for example, syntax errors or schema errors.
INPUT : The user provided input parameters are invalid.
SERVER : Server error.

Possible values are: VALIDATIONINPUTSERVER


object
error Optional

Represents a server Error. This field is optional and it is only relevant when the value of OvfMessage.category is SERVER. When clients pass a value of this structure as a parameter, the field must contain all the attributes defined in Error. When operations return a value of this structure as a result, the field will contain all the attributes defined in Error.


array of OvfParseIssue
issues Optional

List of parse issues (see ParseIssue). This field is optional and it is only relevant when the value of OvfMessage.category is VALIDATION.


message Optional

A localizable message. This field is optional and it is only relevant when the value of OvfMessage.category is INPUT.


string
name Optional

The name of input parameter. This field is optional and it is only relevant when the value of OvfMessage.category is INPUT.


string
value Optional

The value of input parameter. This field is optional and it is only relevant when the value of OvfMessage.category is INPUT.

JSON Example

{
	"category": "VALIDATION"
}

Feedback

Was this page helpful?