ListTagKeysResponse

Response message for listing tag keys.

API ManagementCloud ComputingInfrastructurePlatform as a Service

Properties

Name Type Description
tagKeys array The list of tag keys.
nextPageToken string Pagination token for the next page of results.
View JSON Schema on GitHub

JSON Schema

google-cloud-platform-listtagkeysresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListTagKeysResponse",
  "title": "ListTagKeysResponse",
  "type": "object",
  "description": "Response message for listing tag keys.",
  "properties": {
    "tagKeys": {
      "type": "array",
      "description": "The list of tag keys.",
      "items": {
        "$ref": "#/components/schemas/TagKey"
      },
      "example": []
    },
    "nextPageToken": {
      "type": "string",
      "description": "Pagination token for the next page of results.",
      "example": "example_value"
    }
  }
}