Skip to content

cloudNativeCustomerTags

Retrieves the list of all customer-specified tags and the corresponding value indicating whether resource tags should be overridden by customer-specified tags for a specific cloud type.

Arguments

Argument Type Description
cloudVendor (required) CloudVendor! Vendor of the cloud account.
cloudAccountId UUID The Rubrik ID of the cloud account.

Returns

CloudNativeCustomerTagsReply!

Sample

query CloudNativeCustomerTags($cloudVendor: CloudVendor!) {
  cloudNativeCustomerTags(cloudVendor: $cloudVendor) {
    excludedTags
    shouldOverrideResourceTags
  }
}
{
  "cloudVendor": "ALL_VENDORS"
}
{
  "data": {
    "cloudNativeCustomerTags": {
      "excludedTags": [
        "example-string"
      ],
      "shouldOverrideResourceTags": true,
      "customerTags": [
        {
          "key": "example-string",
          "value": "example-string"
        }
      ]
    }
  }
}