Skip to content

refreshNasSystems

On-demand discovery of a list of NAS systems Supported in v7.0+ Runs the NAS_DISCOVER job for autodiscovery/refresh of NAS systems.

Arguments

Argument Type Description
input (required) RefreshNasSystemsInput! Input for V1DiscoverNasSystems.

Returns

RefreshNasSystemsReply!

Sample

mutation RefreshNasSystems($input: RefreshNasSystemsInput!) {
  refreshNasSystems(input: $input)
}
{
  "input": {
    "discoverNasSystemRequest": {
      "ids": [
        "example-string"
      ]
    }
  }
}
{
  "data": {
    "refreshNasSystems": {
      "discoverNasSystemSummaries": [
        {
          "nasSystemId": "example-string"
        }
      ]
    }
  }
}