com.vmware.vapi.std.errors

file_locations

The file_locations structure identifies the file(s) that caused the operation to report the error.

Some types of errors are caused by a problem with one or more files. This structure is intended to be used as the payload to identify those files when the operation reports errors like com.vmware.vapi.std.errors.not_found. See com.vmware.vapi.std.errors.error.data.

Representations:
{
    "primary""string",
    "secondary"[
        "string",
        "string"
    ]
}
<?xml version="1.0" ?>
<ns0:FileLocations xmlns:ns0="http://vmware.com/vapi/std/errors" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <primary>string</primary>
  <secondary-array>
    <array-item>string</array-item>
    <array-item>string</array-item>
  </secondary-array>
</ns0:FileLocations>

Attributes:
Name Type Required Description
primary
 *
string Yes String identifying the file that triggered the error.
secondary
 *
List<string> Yes Array (possibly empty) of strings identifying other files that caused the primary file to trigger the error.

Copyright © 2014. All Rights Reserved.