Skip to content

updateClusterNtpServers

Assign NTP servers to Rubrik cluster Supported in v5.0+ Assign NTP servers to Rubrik cluster.

Arguments

Argument Type Description
input (required) UpdateClusterNtpServersInput! Input for InternalSetClusterNtpServers.

Returns

ResponseSuccess!

Sample

mutation UpdateClusterNtpServers($input: UpdateClusterNtpServersInput!) {
  updateClusterNtpServers(input: $input) {
    success
  }
}
{
  "input": {
    "id": "example-string",
    "ntpServerConfigs": [
      {
        "server": "example-string"
      }
    ]
  }
}
{
  "data": {
    "updateClusterNtpServers": {
      "success": true
    }
  }
}