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 vapi.std.errors.not_found. See vapi.std.errors.error.data.
Representations:
{
"primary": "string",
"secondary": [
"string",
"string"
]
}
"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>
<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 | Description |
---|---|---|
Required | ||
primary | string | String identifying the file that triggered the error. |
secondary | string[] | Array (possibly empty) of strings identifying other files that caused the primary file to trigger the error. |