Skip to content

Commit deb3fba

Browse files
authored
feat(rdb): add isHaRequired flag on node type (#292)
1 parent e6e8aad commit deb3fba

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/clients/src/api/rdb/v1/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -486,6 +486,7 @@ const unmarshalNodeType = (data: unknown) => {
486486
description: data.description,
487487
disabled: data.disabled,
488488
isBssdCompatible: data.is_bssd_compatible,
489+
isHaRequired: data.is_ha_required,
489490
memory: data.memory,
490491
name: data.name,
491492
region: data.region,

packages/clients/src/api/rdb/v1/types.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -558,6 +558,8 @@ export interface NodeType {
558558
beta: boolean
559559
/** Available storage options for the Node Type */
560560
availableVolumeTypes: Array<NodeTypeVolumeType>
561+
/** The Node Type can be used only with high availability option */
562+
isHaRequired: boolean
561563
/** Region the Node Type is in */
562564
region: Region
563565
}

0 commit comments

Comments
 (0)