File tree Expand file tree Collapse file tree 1 file changed +24
-2
lines changed Expand file tree Collapse file tree 1 file changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -6208,26 +6208,48 @@ paths:
6208
6208
properties:
6209
6209
label:
6210
6210
$ref: '#/components/schemas/LKEClusterRequestBody/properties/label'
6211
+ tags:
6212
+ $ref: '#/components/schemas/LKEClusterRequestBody/properties/tags'
6211
6213
responses:
6212
6214
'200':
6213
6215
description: Returns a single Kubernetes cluster.
6214
6216
content:
6215
6217
application/json:
6216
6218
schema:
6217
- $ref: '#/components/schemas/LKECluster'
6219
+ properties:
6220
+ label:
6221
+ $ref: '#/components/schemas/LKECluster/properties/label'
6222
+ tags:
6223
+ x-linode-filterable: true
6224
+ example:
6225
+ - prod
6226
+ - monitoring
6227
+ - ecomm
6228
+ - blog
6229
+ created:
6230
+ $ref: '#/components/schemas/LKECluster/properties/created'
6231
+ updated:
6232
+ $ref: '#/components/schemas/LKECluster/properties/updated'
6233
+ region:
6234
+ $ref: '#/components/schemas/LKECluster/properties/region'
6235
+ version:
6236
+ $ref: '#/components/schemas/LKECluster/properties/version'
6218
6237
x-code-samples:
6219
6238
- lang: Shell
6220
6239
source: >
6221
6240
curl -H "Content-Type: application/json" \
6222
6241
-H "Authorization: Bearer $TOKEN" \
6223
6242
-X PUT -d '{
6224
6243
"label": "lkecluster54321"
6244
+ "tags" : ["prod", "monitoring"]
6225
6245
}' \
6226
6246
https://api.linode.com/v4beta/lke/clusters/12345
6227
6247
- lang: CLI
6228
6248
source: >
6229
6249
linode-cli lke cluster-update 12345 \
6230
- --label lkecluster54321
6250
+ --label lkecluster54321 \
6251
+ --tags prod
6252
+ --tags monitoring
6231
6253
delete:
6232
6254
operationId: deleteLKECluster
6233
6255
x-linode-cli-action: cluster-delete
You can’t perform that action at this time.
0 commit comments