Io Filter Manager Query Io Filter Issues

Io Filter Manager Query Io Filter Issues

Return the issues that occurred during the last installation/uninstallation/upgrade operation of an IO Filter on a compute resource.

Required privileges: System.View

Request
URI
POST
https://{vcenter-host}/sdk/vim25/{release}/IoFilterManager/{moId}/QueryIoFilterIssues
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
QueryIoFilterIssuesRequestType of type(s) application/json
Required
{
    "filterId": "string",
    "compRes": {
        "type": "string",
        "value": "string"
    }
}
string
filterId
Required

The filter.

compRes
Required

Reference to an instance of the ComputeResource managed object.

Authentication
This operation uses the following authentication methods.
Responses
200
Returns IoFilterQueryIssueResult of type(s) application/json
This response body class contains all of the following: DataObject
{
    "_typeName": "string",
    "opType": "string",
    "hostIssue": [
        {
            "_typeName": "string",
            "host": {
                "type": "string",
                "value": "string"
            },
            "issue": [
                {
                    "_typeName": "string",
                    "faultCause": "MethodFault Object",
                    "faultMessage": [
                        {
                            "_typeName": "string",
                            "key": "string",
                            "arg": [
                                {
                                    "_typeName": "string",
                                    "key": "string",
                                    "value": {
                                        "_typeName": "string"
                                    }
                                }
                            ],
                            "message": "string"
                        }
                    ]
                }
            ]
        }
    ]
}
string
opType
Required

The type of the operation performed on the IO Filter.

The set of possible values are defined in IoFilterOperationEnum.

hostIssue
Optional

The issues on hosts.


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"
        }
    ]
}