Host Vsan Internal System Get Vsan Obj Ext Attrs

Host Vsan Internal System Get Vsan Obj Ext Attrs

Get VSAN object extended attributes.

This API is internal and intended for troubleshooting/debugging situations in the field. WARNING: This API can be slow because we do IOs (reads) to all the objects. This API can be used to get extended attributes of any object in the VSAN cluster from any host provided the object is accessible from that host. In case of an error, we return a dict with key "Error" for that object.

Required privileges: System.Read

Request
URI
POST
https://{vcenter-host}/sdk/vim25/{release}/HostVsanInternalSystem/{moId}/GetVsanObjExtAttrs
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 HostVsanInternalSystem/{moId}.

string
release
Required

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


Request Body
GetVsanObjExtAttrsRequestType of type(s) application/json
Required
{
    "uuids": [
        "string"
    ]
}
array of string
uuids
Required

List of object UUIDs.

Authentication
This operation uses the following authentication methods.
Responses
200

JSON string with the extended attributes.

Returns string of type(s) application/json
Operation doesn't return any data structure

500

Failure

Returns VimFault of type(s) application/json
This response body class contains all of the following: MethodFault
{
    "_typeName": "string",
    "faultCause": "MethodFault Object",
    "faultMessage": [
        {
            "_typeName": "string",
            "key": "string",
            "arg": [
                {
                    "_typeName": "string",
                    "key": "string",
                    "value": {
                        "_typeName": "string"
                    }
                }
            ],
            "message": "string"
        }
    ]
}