Io Filter Manager Query Disks Using Filter

Io Filter Manager Query Disks Using Filter

Return the list of virtual disks that use an IO Filter installed on a compute resource.

Required privileges: System.View

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

string
release
Required

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


Request Body
QueryDisksUsingFilterRequestType of type(s) application/json
Required
{
    "filterId": "string",
    "compRes": {
        "_typeName": "string",
        "type": "string",
        "value": "string"
    }
}
string
filterId
Required

ID of the filter.

compRes
Required

Reference to an instance of the ComputeResource managed object.

Authentication
This operation uses the following authentication methods.
Responses
200

An array of VirtualDiskId objects that use the given IO Filter installed on the compute resource.

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

500

NotFound: if the filter specified by "filterId" is not installed on the cluster.

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