ListTagBindingsResponse

Response message for listing tag bindings.

API ManagementCloud ComputingInfrastructurePlatform as a Service

Properties

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

JSON Schema

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