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

array of OvfOvfError
errors Required

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.


array of OvfOvfInfo
information Required

Information messages reported by the LibraryItem.create or LibraryItem.deploy operation. For example, a non-required parameter was ignored.


array of OvfOvfWarning
warnings Required

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"
		}
	]
}

Feedback

Was this page helpful?