Skip to content

allFeaturePermissionsForGcpCloudAccount

List of permissions required to enable the given feature.

Arguments

Argument Type Description
feature (required) CloudAccountFeature! A cloud account feature of Rubrik Security Cloud.

Returns

[GcpPermission!]!

Sample

query AllFeaturePermissionsForGcpCloudAccount($feature: CloudAccountFeature!) {
  allFeaturePermissionsForGcpCloudAccount(feature: $feature) {
    permission
  }
}
{
  "feature": "ALL"
}
{
  "data": {
    "allFeaturePermissionsForGcpCloudAccount": [
      {
        "permission": "example-string"
      }
    ]
  }
}