VsanXvcQueryResultSet

VsanXvcQueryResultSet
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.

AllOf
This class requires all of the following:
JSON Example
{
    "_typeName": "string",
    "properties": [
        "string"
    ],
    "resultItems": [
        {
            "_typeName": "string",
            "propertyValues": [
                {
                    "_typeName": "string",
                    "value": {
                        "_typeName": "string"
                    }
                }
            ]
        }
    ],
    "totalCount": 0
}
array of string
properties
Optional

The names of properties returned for each object item in the result set.

resultItems
Optional

The list of result items.

Each item corresponds to a particular object that satisfies the query conditions.

integer As int64 As int64
totalCount
Optional

The total number of objects that match the query.