Ovf_OvfError

Ovf_OvfError
Ovf_OvfError

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

JSON Example
{
    "category": "string",
    "issues": [
        {
            "category": "string",
            "file": "string",
            "line_number": 0,
            "column_number": 0,
            "message": {
                "id": "string",
                "default_message": "string",
                "args": [
                    "string"
                ],
                "params": {
                    "params": {
                        "s": "string",
                        "dt": "string",
                        "i": 0,
                        "d": "number",
                        "l": {
                            "id": "string",
                            "params": {
                                "params": "Std_LocalizationParam Object"
                            }
                        },
                        "format": "string",
                        "precision": 0
                    }
                },
                "localized": "string"
            }
        }
    ],
    "name": "string",
    "value": "string",
    "message": {
        "id": "string",
        "default_message": "string",
        "args": [
            "string"
        ],
        "params": {
            "params": {
                "s": "string",
                "dt": "string",
                "i": 0,
                "d": "number",
                "l": {
                    "id": "string",
                    "params": {
                        "params": "Std_LocalizationParam Object"
                    }
                },
                "format": "string",
                "precision": 0
            }
        },
        "localized": "string"
    },
    "error": {}
}
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.

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.

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.

message
Optional

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.

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.