Skip to content

allAuthorizationsForObjects

List of authorizations for the objects.

Arguments

Argument Type Description
fids (required) [UUID!]! The Rubrik UUIDs for the objects.

Returns

[AuthorizedOperations!]!

Sample

query AllAuthorizationsForObjects($fids: [UUID!]!) {
  allAuthorizationsForObjects(fids: $fids) {
    id
    operations
    workloadHierarchy
  }
}
{
  "fids": [
    "00000000-0000-0000-0000-000000000000"
  ]
}
{
  "data": {
    "allAuthorizationsForObjects": [
      {
        "id": "example-string",
        "operations": [
          "ACCESS_CDM_CLUSTER"
        ],
        "workloadHierarchy": "AWS_NATIVE_CONFIG"
      }
    ]
  }
}