VmGuestFilesystemFileErrorDetails
The FileErrorDetails structure describes additional error information for file and directory operations.
Properties
The file path associated with the error.
The ErrorReason enumerated type defines the reasons a file or directory operation failed.
NOT_A_FILE : An argument is not a file.
NOT_A_DIRECTORY : The argument is not a directory.
PATH_TOO_LONG : The file path is too long.
FILE_NOT_FOUND : The file is not found.
FILE_TOO_LARGE : The file is too large.
NO_DISK_SPACE : There is insufficent disk space.
DIRECTORY_NOT_EMPTY : Directory not empty.
Possible values are: NOT_A_FILE , NOT_A_DIRECTORY , PATH_TOO_LONG , FILE_NOT_FOUND , FILE_TOO_LARGE , NO_DISK_SPACE , DIRECTORY_NOT_EMPTY
JSON Example
{
"file_path": "string",
"reason": "NOT_A_FILE"
}