Ovf_OvfWarning
The OvfWarning structure describes a warning related to accessing, validating, deploying, or exporting an OVF package.
{
"category": "string",
"issues": [
{
"category": "string",
"file": "string",
"line_number": 0,
"column_number": 0,
"message": {
"id": "string",
"default_message": "string",
"args": [
"string"
],
"localized": "string"
}
}
],
"name": "string",
"value": "string",
"message": {
"id": "string",
"default_message": "string",
"args": [
"string"
],
"localized": "string"
}
}
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.
List of parse issues (see ParseIssue). This field is optional and it is only relevant when the value of OvfMessage.category is VALIDATION.
The name of input parameter. This field is optional and it is only relevant when the value of OvfMessage.category is INPUT.
The value of input parameter. This field is optional and it is only relevant when the value of OvfMessage.category is INPUT.
The LocalizableMessage structure represents localizable string and message template. Services include one or more localizable message templates in the errors they report so that clients can display diagnostic messages in the native language of the user. Services can include localizable strings in the data returned from operations to allow clients to display localized status information in the native language of the user.
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.