Skip to content

Commit 3bfcc27

Browse files
committed
Add engines to Database Types
1 parent 231b02c commit 3bfcc27

File tree

1 file changed

+32
-23
lines changed

1 file changed

+32
-23
lines changed

openapi.yaml

Lines changed: 32 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -18174,30 +18174,16 @@ components:
1817418174
type: string
1817518175
description: A human-readable string that describes each plan type. For display purposes only.
1817618176
readOnly: true
18177-
example: DBaaS MySQL - Nanode 1GB
18177+
example: DBaaS Cluster - Nanode 1GB
1817818178
x-linode-cli-display: 2
18179-
cluster_size:
18180-
type: array
18181-
description: A pricing list depending on the number of nodes.
18182-
items:
18183-
type: object
18184-
properties:
18185-
quantity:
18186-
type: integer
18187-
description: The number of nodes.
18188-
example: 1
18189-
price:
18190-
type: object
18191-
description: Cost in US dollars, broken down into hourly and monthly charges.
18192-
properties:
18193-
hourly:
18194-
type: number
18195-
description: Cost (in US dollars) per hour.
18196-
example: 0.03
18197-
monthly:
18198-
type: number
18199-
description: Cost (in US dollars) per month.
18200-
example: 20
18179+
engines:
18180+
type: object
18181+
properties:
18182+
mysql:
18183+
type: array
18184+
description: Pricing details for MySQL Managed Databases.
18185+
items:
18186+
$ref: '#/components/schemas/DatabaseTypeEngine'
1820118187
memory:
1820218188
type: integer
1820318189
description: The amount of RAM allocated to Database created of this plan type. The value is represented in megabytes.
@@ -18223,6 +18209,29 @@ components:
1822318209
type: string
1822418210
description: The compute class category.
1822518211
example: nanode
18212+
DatabaseTypeEngine:
18213+
type: object
18214+
properties:
18215+
quantity:
18216+
type: integer
18217+
enum:
18218+
- 1
18219+
- 2
18220+
- 3
18221+
description: The number of nodes for the Managed Database cluster for this subscription tier.
18222+
example: 1
18223+
price:
18224+
type: object
18225+
description: Cost in US dollars, broken down into hourly and monthly charges.
18226+
properties:
18227+
hourly:
18228+
type: number
18229+
description: Cost (in US dollars) per hour for this subscription tier.
18230+
example: 0.03
18231+
monthly:
18232+
type: number
18233+
description: Maximum cost (in US dollars) per month for this subscription tier.
18234+
example: 20
1822618235
Device:
1822718236
type: object
1822818237
description: >

0 commit comments

Comments
 (0)