VsanXvcQueryResultSet
This data type describes the info of the objects returned from Query API.
It is a dictionary like structure. The 'properties' list defines all keys of the returned information. The 'resultItems' list contains all returned objects' information. The properties' values of each object are listed in VsanXvcResultItem. The mapping between keys and values is by the index of the lists.
This structure may be used only with operations rendered under /vsan
.
{
"_typeName": "string",
"properties": [
"string"
],
"resultItems": [
{
"_typeName": "string",
"propertyValues": [
{
"_typeName": "string",
"value": {
"_typeName": "string"
}
}
]
}
],
"totalCount": 0
}
The names of properties returned for each object item in the result set.
The list of result items.
Each item corresponds to a particular object that satisfies the query conditions.
The total number of objects that match the query.