Skip to content

changeVfdOnHost

Install or uninstall volume filter driver on hosts.

Arguments

Argument Type Description
input (required) ChangeVfdOnHostInput! Input for InternalChangeVfdOnHost.

Returns

ChangeVfdOnHostReply!

Sample

mutation ChangeVfdOnHost($input: ChangeVfdOnHostInput!) {
  changeVfdOnHost(input: $input)
}
{
  "input": {
    "config": {
      "hostIds": [
        "example-string"
      ],
      "install": true
    }
  }
}
{
  "data": {
    "changeVfdOnHost": {
      "output": {}
    }
  }
}