Share feedback
Answers are generated based on the documentation.

Experimental

Schema

ListVolumesResponse

Type: object

ListVolumesResponse returns volumes and a next-page token.
nextPageToken

Type: string

next_page_token is empty when there are no more pages.
All schema constraints and annotations
{
  "description": "next_page_token is empty when there are no more pages.",
  "type": "string"
}
volumes

Type: array

volumes is the current page.
Array item

Schema: Volume

All schema constraints and annotations
{
  "description": "volumes is the current page.",
  "items": {
    "$ref": "#/components/schemas/Volume"
  },
  "type": "array"
}
All schema constraints and annotations
{
  "description": "ListVolumesResponse returns volumes and a next-page token.",
  "properties": {
    "nextPageToken": {
      "description": "next_page_token is empty when there are no more pages.",
      "type": "string"
    },
    "volumes": {
      "description": "volumes is the current page.",
      "items": {
        "$ref": "#/components/schemas/Volume"
      },
      "type": "array"
    }
  },
  "title": "ListVolumesResponse",
  "type": "object"
}