Skip to content

Commit abdb97d

Browse files
authored
feat(rdb): add instanceRange to NodeType (#760)
1 parent 04380f4 commit abdb97d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
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
@@ -491,6 +491,7 @@ const unmarshalNodeType = (data: unknown) => {
491491
description: data.description,
492492
disabled: data.disabled,
493493
generation: data.generation,
494+
instanceRange: data.instance_range,
494495
isBssdCompatible: data.is_bssd_compatible,
495496
isHaRequired: data.is_ha_required,
496497
memory: data.memory,

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,8 +593,10 @@ export interface NodeType {
593593
availableVolumeTypes: NodeTypeVolumeType[]
594594
/** The Node Type can be used only with high availability option. */
595595
isHaRequired: boolean
596-
/** Generation associated the NodeType offer. */
596+
/** Generation associated with the NodeType offer. */
597597
generation: NodeTypeGeneration
598+
/** Instance range associated with the NodeType offer. */
599+
instanceRange: string
598600
/** Region the Node Type is in. */
599601
region: Region
600602
}

0 commit comments

Comments
 (0)