Skip to content

clusterNtpServers

Get NTP Servers Supported in v5.0+ Retrieve a list of the NTP servers assigned to the Rubrik cluster. Encryption keys are not reported.

Arguments

Argument Type Description
input (required) GetClusterNtpServersInput! Input for InternalGetClusterNtpServers.

Returns

NtpServerConfigurationListResponse!

Sample

query ClusterNtpServers($input: GetClusterNtpServersInput!) {
  clusterNtpServers(input: $input) {
    hasMore
    nextCursor
    total
  }
}
{
  "input": {
    "id": "example-string"
  }
}
{
  "data": {
    "clusterNtpServers": {
      "hasMore": true,
      "nextCursor": "example-string",
      "total": 0,
      "data": [
        {
          "server": "example-string"
        }
      ]
    }
  }
}