Skip to content

slaDomain

Query that retrieves an SLA Domain.

Arguments

Argument Type Description
id (required) UUID! SLA Domain ID.
shouldShowSyncStatus Boolean Specifies whether to show the SLA Domain sync status on Rubrik CDM.
shouldShowUpgradeInfo Boolean Specifies whether to show the upgrade information for an SLA Domain.
shouldShowPausedClusters Boolean Specifies whether to show the Rubrik clusters where this SLA Domain is paused.

Returns

SlaDomain!

Sample

query SlaDomain($id: UUID!) {
  slaDomain(id: $id) {
    id
    name
    version
  }
}
{
  "id": "00000000-0000-0000-0000-000000000000"
}
{
  "data": {
    "slaDomain": {
      "id": "example-string",
      "name": "example-string",
      "version": "example-string"
    }
  }
}