List GCP label values
Returns a list of GCP label values for the specified label key.
Path Parameters
- label_key_id string required
Query Parameters
- limit int64
Limits the size of the response on each page to the specified number of items.
- start string
Sets the page number used to browse the collection. Pages are indexed starting from 1 (i.e.,
?start=1). - filter string
Responses
- 200
- default
Success
- application/api.clumio.gcp-labels=v1+json
- Schema
- Example (from schema)
Schema
_embedded object
items object[]
created_timestamp stringid stringis_deleted booleankey_name stringlabel_key_id stringmodified_timestamp stringname stringproject_uuid stringregion_uuid string- current_count int64
The number of items listed on the current page.
- limit int64
The maximum number of items displayed per page in the response.
- start string
The page number used to get this response. Pages are indexed starting from 1 (i.e.,
"start": "1"). - total_count int64
The total number of items, summed across all pages.
- total_pages_count int64
The total number of pages of results.
{
"_embedded": {
"items": [
{
"created_timestamp": "string",
"id": "string",
"is_deleted": true,
"key_name": "string",
"label_key_id": "string",
"modified_timestamp": "string",
"name": "string",
"project_uuid": "string",
"region_uuid": "string"
}
]
},
"current_count": 0,
"limit": 0,
"start": "string",
"total_count": 0,
"total_pages_count": 0
}
Error
- application/json
- Schema
- Example (from schema)
Schema
errors object[]
A list of errors encountered during runtime.
error_code uint32error_message stringThe reason for the error.
{
"errors": [
{
"error_code": 0,
"error_message": "string"
}
]
}
Loading...