OvfLibraryItemResultInfo
The LibraryItem.ResultInfo structure defines the information returned along with the result of a LibraryItem.create or LibraryItem.deploy operation to describe errors, warnings, and informational messages produced by the server.
Properties
Errors reported by the LibraryItem.create or LibraryItem.deploy operation. These errors would have prevented the LibraryItem.create or LibraryItem.deploy operation from completing successfully.
Information messages reported by the LibraryItem.create or LibraryItem.deploy operation. For example, a non-required parameter was ignored.
Warnings reported by the LibraryItem.create or LibraryItem.deploy operation. These warnings would not have prevented the LibraryItem.create or LibraryItem.deploy operation from completing successfully, but there might be issues that warrant attention.
JSON Example
{
"errors": [
{
"category": "VALIDATION"
}
],
"information": [
{
"messages": [
{
"args": [
"string"
],
"default_message": "string",
"id": "string"
}
]
}
],
"warnings": [
{
"category": "VALIDATION"
}
]
}