Skip to content

allNcdUsageOverTimeData

NAS Cloud Direct usage over time data for the requested clusters.

Arguments

Argument Type Description
clusters (required) [UUID!]! List of Rubrik clusters to filter.

Returns

[NcdUsageOverTimeData!]!

Sample

query AllNcdUsageOverTimeData($clusters: [UUID!]!) {
  allNcdUsageOverTimeData(clusters: $clusters) {
    changeInBytes
    newInBytes
    timestamp
  }
}
{
  "clusters": [
    "00000000-0000-0000-0000-000000000000"
  ]
}
{
  "data": {
    "allNcdUsageOverTimeData": [
      {
        "changeInBytes": 0,
        "newInBytes": 0,
        "timestamp": "2024-01-01T00:00:00.000Z"
      }
    ]
  }
}