Skip to content

Commit 968266f

Browse files
Merge pull request #235 from linode/release-4.61.0
Release 4.61.0
2 parents cea3753 + 480cfe3 commit 968266f

File tree

1 file changed

+60
-8
lines changed

1 file changed

+60
-8
lines changed

openapi.yaml

Lines changed: 60 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
openapi: 3.0.1
22
info:
3-
version: 4.60.1
3+
version: 4.61.0
44

55
title: Linode API
66
description: |
@@ -6132,7 +6132,8 @@ paths:
61326132
--region us-central \
61336133
--version 1.16 \
61346134
--node_pools.type g6-standard-4 --node_pools.count 6 \
6135-
--node_pools.type g6-standard-8 --node_pools.count 3
6135+
--node_pools.type g6-standard-8 --node_pools.count 3 \
6136+
--tags ecomm
61366137
/lke/clusters/{clusterId}:
61376138
parameters:
61386139
- name: clusterId
@@ -6207,26 +6208,66 @@ paths:
62076208
properties:
62086209
label:
62096210
$ref: '#/components/schemas/LKEClusterRequestBody/properties/label'
6211+
tags:
6212+
type: array
6213+
items:
6214+
type: string
6215+
example:
6216+
- prod
6217+
- monitoring
6218+
- ecomm
6219+
- blog
6220+
description: >
6221+
An array of tags applied to the Kubernetes cluster. Tags are for organizational purposes only.
6222+
To delete a tag, exclude it from your `tags` array.
62106223
responses:
62116224
'200':
62126225
description: Returns a single Kubernetes cluster.
62136226
content:
62146227
application/json:
62156228
schema:
6216-
$ref: '#/components/schemas/LKECluster'
6229+
properties:
6230+
label:
6231+
$ref: '#/components/schemas/LKECluster/properties/label'
6232+
tags:
6233+
x-linode-filterable: true
6234+
type: array
6235+
items:
6236+
type: string
6237+
example:
6238+
- prod
6239+
- monitoring
6240+
- ecomm
6241+
- blog
6242+
description: >
6243+
An array of tags applied to the Kubernetes cluster. Tags are for organizational purposes only.
6244+
To delete a tag, exclude it from your `tags` array.
6245+
created:
6246+
$ref: '#/components/schemas/LKECluster/properties/created'
6247+
updated:
6248+
$ref: '#/components/schemas/LKECluster/properties/updated'
6249+
region:
6250+
$ref: '#/components/schemas/LKECluster/properties/region'
6251+
version:
6252+
$ref: '#/components/schemas/LKECluster/properties/version'
62176253
x-code-samples:
62186254
- lang: Shell
62196255
source: >
62206256
curl -H "Content-Type: application/json" \
62216257
-H "Authorization: Bearer $TOKEN" \
62226258
-X PUT -d '{
62236259
"label": "lkecluster54321"
6260+
"tags" : ["ecomm", "blog", "prod", "monitoring"]
62246261
}' \
62256262
https://api.linode.com/v4beta/lke/clusters/12345
62266263
- lang: CLI
62276264
source: >
62286265
linode-cli lke cluster-update 12345 \
6229-
--label lkecluster54321
6266+
--label lkecluster54321 \
6267+
--tags ecomm \
6268+
--tags blog \
6269+
--tags prod \
6270+
--tags monitoring
62306271
delete:
62316272
operationId: deleteLKECluster
62326273
x-linode-cli-action: cluster-delete
@@ -10444,8 +10485,7 @@ paths:
1044410485
https://api.linode.com/v4/object-storage/keys/12345
1044510486
- lang: CLI
1044610487
source: >
10447-
linode-cli object-storage keys-delete \
10448-
--keyId 12345
10488+
linode-cli object-storage keys-delete 12345
1044910489
/object-storage/cancel:
1045010490
x-linode-cli-command: object-storage
1045110491
post:
@@ -12611,7 +12651,7 @@ paths:
1261112651
content:
1261212652
application/json:
1261312653
schema:
12614-
type: object
12654+
$ref: '#/components/schemas/Volume'
1261512655
default:
1261612656
$ref: '#/components/responses/ErrorResponse'
1261712657
x-code-samples:
@@ -14219,6 +14259,12 @@ components:
1421914259
description: When this Image was created.
1422014260
example: '2018-01-01T00:01:01'
1422114261
readOnly: true
14262+
updated:
14263+
type: string
14264+
format: date-time
14265+
description: When this Image was last updated.
14266+
example: '2019-01-02T00:01:01'
14267+
readOnly: true
1422214268
created_by:
1422314269
type: string
1422414270
description: >
@@ -14316,6 +14362,12 @@ components:
1431614362
description: When this Image was created.
1431714363
example: '2018-01-01T00:01:01'
1431814364
readOnly: true
14365+
updated:
14366+
type: string
14367+
format: date-time
14368+
description: When this Image was last updated.
14369+
example: '2019-01-02T00:01:01'
14370+
readOnly: true
1431914371
created_by:
1432014372
type: string
1432114373
description: >
@@ -15708,7 +15760,6 @@ components:
1570815760
x-linode-filterable: true
1570915761
example: "1.16"
1571015762
tags:
15711-
x-linode-filterable: true
1571215763
example:
1571315764
- ecomm
1571415765
- blogs
@@ -17504,6 +17555,7 @@ components:
1750417555
- linode/debian8
1750517556
x-linode-cli-display: 4
1750617557
deployments_total:
17558+
x-linode-filterable: true
1750717559
type: integer
1750817560
description: >
1750917561
The total number of times this StackScript has been deployed.

0 commit comments

Comments
 (0)