List View Reset List View

List View Reset List View

Replaces the list with an entirely new set of objects.

If the entire set is changing, this is less data to send than a delta.

May partially succeed if some objects could not be resolved. The operation will still succeed for all objects which could be resolved, and the list of those which failed is as the result.

Request
URI
POST
https://{vcenter-host}/sdk/vim25/{release}/ListView/{moId}/ResetListView
COPY
Path Parameters
string
moId
Required

The unique identifier for the managed object to which the method attaches; the serialized managed object reference for a request has the form moType/moId, in this case ListView/{moId}.

string
release
Required

The vSphere release schema. The current specification covers vSphere 8.0.2.0 APIs.


Request Body
ResetListViewRequestType of type(s) application/json
Required
{
    "obj": [
        {
            "_typeName": "string",
            "type": "string",
            "value": "string"
        }
    ]
}
obj
Optional

The new list of objects.

Required privileges: System.View

Authentication
This operation uses the following authentication methods.
Responses
200

A list containing any objects in 'obj' that could not be resolved.

Returns Array of ManagedObjectReference of type(s) application/json
[
    {
        "_typeName": "string",
        "type": "string",
        "value": "string"
    }
]