|
1 | 1 | openapi: 3.0.1
|
2 | 2 | info:
|
3 |
| - version: 4.60.1 |
| 3 | + version: 4.61.0 |
4 | 4 |
|
5 | 5 | title: Linode API
|
6 | 6 | description: |
|
@@ -6132,7 +6132,8 @@ paths:
|
6132 | 6132 | --region us-central \
|
6133 | 6133 | --version 1.16 \
|
6134 | 6134 | --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 |
6136 | 6137 | /lke/clusters/{clusterId}:
|
6137 | 6138 | parameters:
|
6138 | 6139 | - name: clusterId
|
@@ -6207,26 +6208,66 @@ paths:
|
6207 | 6208 | properties:
|
6208 | 6209 | label:
|
6209 | 6210 | $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. |
6210 | 6223 | responses:
|
6211 | 6224 | '200':
|
6212 | 6225 | description: Returns a single Kubernetes cluster.
|
6213 | 6226 | content:
|
6214 | 6227 | application/json:
|
6215 | 6228 | 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' |
6217 | 6253 | x-code-samples:
|
6218 | 6254 | - lang: Shell
|
6219 | 6255 | source: >
|
6220 | 6256 | curl -H "Content-Type: application/json" \
|
6221 | 6257 | -H "Authorization: Bearer $TOKEN" \
|
6222 | 6258 | -X PUT -d '{
|
6223 | 6259 | "label": "lkecluster54321"
|
| 6260 | + "tags" : ["ecomm", "blog", "prod", "monitoring"] |
6224 | 6261 | }' \
|
6225 | 6262 | https://api.linode.com/v4beta/lke/clusters/12345
|
6226 | 6263 | - lang: CLI
|
6227 | 6264 | source: >
|
6228 | 6265 | linode-cli lke cluster-update 12345 \
|
6229 |
| - --label lkecluster54321 |
| 6266 | + --label lkecluster54321 \ |
| 6267 | + --tags ecomm \ |
| 6268 | + --tags blog \ |
| 6269 | + --tags prod \ |
| 6270 | + --tags monitoring |
6230 | 6271 | delete:
|
6231 | 6272 | operationId: deleteLKECluster
|
6232 | 6273 | x-linode-cli-action: cluster-delete
|
@@ -10444,8 +10485,7 @@ paths:
|
10444 | 10485 | https://api.linode.com/v4/object-storage/keys/12345
|
10445 | 10486 | - lang: CLI
|
10446 | 10487 | source: >
|
10447 |
| - linode-cli object-storage keys-delete \ |
10448 |
| - --keyId 12345 |
| 10488 | + linode-cli object-storage keys-delete 12345 |
10449 | 10489 | /object-storage/cancel:
|
10450 | 10490 | x-linode-cli-command: object-storage
|
10451 | 10491 | post:
|
@@ -12611,7 +12651,7 @@ paths:
|
12611 | 12651 | content:
|
12612 | 12652 | application/json:
|
12613 | 12653 | schema:
|
12614 |
| - type: object |
| 12654 | + $ref: '#/components/schemas/Volume' |
12615 | 12655 | default:
|
12616 | 12656 | $ref: '#/components/responses/ErrorResponse'
|
12617 | 12657 | x-code-samples:
|
@@ -14219,6 +14259,12 @@ components:
|
14219 | 14259 | description: When this Image was created.
|
14220 | 14260 | example: '2018-01-01T00:01:01'
|
14221 | 14261 | 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 |
14222 | 14268 | created_by:
|
14223 | 14269 | type: string
|
14224 | 14270 | description: >
|
@@ -14316,6 +14362,12 @@ components:
|
14316 | 14362 | description: When this Image was created.
|
14317 | 14363 | example: '2018-01-01T00:01:01'
|
14318 | 14364 | 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 |
14319 | 14371 | created_by:
|
14320 | 14372 | type: string
|
14321 | 14373 | description: >
|
@@ -15708,7 +15760,6 @@ components:
|
15708 | 15760 | x-linode-filterable: true
|
15709 | 15761 | example: "1.16"
|
15710 | 15762 | tags:
|
15711 |
| - x-linode-filterable: true |
15712 | 15763 | example:
|
15713 | 15764 | - ecomm
|
15714 | 15765 | - blogs
|
@@ -17504,6 +17555,7 @@ components:
|
17504 | 17555 | - linode/debian8
|
17505 | 17556 | x-linode-cli-display: 4
|
17506 | 17557 | deployments_total:
|
| 17558 | + x-linode-filterable: true |
17507 | 17559 | type: integer
|
17508 | 17560 | description: >
|
17509 | 17561 | The total number of times this StackScript has been deployed.
|
|
0 commit comments