ListTagValuesResponse

Response message for listing tag values.

API ManagementCloud ComputingInfrastructurePlatform as a Service

Properties

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

JSON Schema

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