Skip to content

Commit 17a1b1d

Browse files
authored
Merge pull request #774 from linode/release-4.149.0
Release 4.149.0
2 parents f81d897 + e2dfb6d commit 17a1b1d

File tree

2 files changed

+39
-17
lines changed

2 files changed

+39
-17
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Trigger CLI Release
2+
on:
3+
release:
4+
types: [ published ]
5+
jobs:
6+
trigger-cli-release:
7+
runs-on: ubuntu-22.04
8+
steps:
9+
- name: Generate App Installation Token
10+
id: generate_token
11+
uses: tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92 # pin@v1
12+
with:
13+
app_id: ${{ secrets.CLI_RELEASE_APP_ID }}
14+
private_key: ${{ secrets.CLI_RELEASE_PRIVATE_KEY }}
15+
repository: linode/linode-cli
16+
17+
- name: Repository Dispatch
18+
uses: peter-evans/repository-dispatch@26b39ed245ab8f31526069329e112ab2fb224588 # pin@v2
19+
with:
20+
token: ${{ steps.generate_token.outputs.token }}
21+
repository: linode/linode-cli
22+
event-type: cli-release
23+
client-payload: '{"spec_version": "${{ github.event.release.tag_name }}"}'

openapi.yaml

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
openapi: 3.0.1
22
info:
3-
version: 4.147.0
3+
version: 4.149.0
44

55
title: Linode API
66
description: |
@@ -14385,7 +14385,7 @@ paths:
1438514385
https://api.linode.com/v4beta/networking/vlans/
1438614386
- lang: CLI
1438714387
source: >
14388-
linode-cli networking vlans-list
14388+
linode-cli vlans list
1438914389
/nodebalancers:
1439014390
x-linode-cli-command: nodebalancers
1439114391
get:
@@ -22981,25 +22981,24 @@ components:
2298122981
readOnly: true
2298222982
memory:
2298322983
type: integer
22984-
description: >
22985-
The amount of RAM, in MB, this Linode has access to. Typically a Linode will
22986-
choose to boot with all of its available RAM, but this can be configured in a
22987-
Config profile, see the
22988-
[/linode/instances/{linodeId}/configs](/docs/api/linode-instances/#configuration-profiles-list)
22989-
endpoints and the LinodeConfig object for more information.
22984+
description: |
22985+
The amount of RAM, in MB, this Linode has access to.
22986+
22987+
Typically, a Linode boots with all of its available RAM, but this can be configured in a Config profile. See the [/linode/instances/{linodeId}/configs](/docs/api/linode-instances/#configuration-profiles-list) endpoints and the LinodeConfig object for more information.
2299022988
example: 4096
2299122989
readOnly: true
2299222990
vcpus:
2299322991
type: integer
2299422992
description: >
2299522993
The number of vcpus this Linode has access to.
22996-
Typically a Linode will choose to
22997-
boot with all of its available vcpus, but this can be configured in a Config
22998-
Profile, see the
22999-
[/linode/instances/{linodeId}/configs](/docs/api/linode-instances/#configuration-profiles-list)
23000-
endpoints and the LinodeConfig object for more information.
2300122994
example: 2
2300222995
readOnly: true
22996+
gpus:
22997+
type: integer
22998+
description: |
22999+
The number of gpus this Linode has access to.
23000+
example: 0
23001+
readOnly: true
2300323002
transfer:
2300423003
type: integer
2300523004
description: The amount of network transfer this Linode is allotted each month.
@@ -23556,12 +23555,12 @@ components:
2355623555
Cost in US dollars, broken down into hourly and monthly charges.
2355723556
properties:
2355823557
hourly:
23559-
type: integer
23558+
type: number
2356023559
description: Cost (in US dollars) per hour.
2356123560
example: 0.03
2356223561
x-linode-cli-display: 9
2356323562
monthly:
23564-
type: integer
23563+
type: number
2356523564
description: Cost (in US dollars) per month.
2356623565
example: 20
2356723566
x-linode-cli-display: 10
@@ -23583,12 +23582,12 @@ components:
2358323582
description: Cost of enabling Backups for this Linode Type.
2358423583
properties:
2358523584
hourly:
23586-
type: integer
23585+
type: number
2358723586
description: >
2358823587
The cost (in US dollars) per hour to add Backups service.
2358923588
example: 0.008
2359023589
monthly:
23591-
type: integer
23590+
type: number
2359223591
description: >
2359323592
The cost (in US dollars) per month to add Backups service.
2359423593
example: 5

0 commit comments

Comments
 (0)