Skip to content

hideRevealNasNamespaces

Hide and reveal NAS namespaces Supported in v7.0+ Hide individually selected NAS namespaces by setting the "action" field to "Hide". Reveal the selected NAS namespaces by setting the "action" field to "Reveal".

Arguments

Argument Type Description
input (required) HideRevealNasNamespacesInput! Input for V1HideRevealNasNamespaces.

Returns

Void

Sample

mutation HideRevealNasNamespaces($input: HideRevealNasNamespacesInput!) {
  hideRevealNasNamespaces(input: $input)
}
{
  "input": {
    "hideNasNamespacesRequest": {
      "action": "HIDE_REVEAL_ACTION_HIDE",
      "ids": [
        "example-string"
      ]
    }
  }
}
{
  "data": {
    "hideRevealNasNamespaces": "example-string"
  }
}