diff --git a/packages/clients/src/api/rdb/v1/marshalling.gen.ts b/packages/clients/src/api/rdb/v1/marshalling.gen.ts index 166a76d90..00ddaf9ca 100644 --- a/packages/clients/src/api/rdb/v1/marshalling.gen.ts +++ b/packages/clients/src/api/rdb/v1/marshalling.gen.ts @@ -491,6 +491,7 @@ const unmarshalNodeType = (data: unknown) => { description: data.description, disabled: data.disabled, generation: data.generation, + instanceRange: data.instance_range, isBssdCompatible: data.is_bssd_compatible, isHaRequired: data.is_ha_required, memory: data.memory, diff --git a/packages/clients/src/api/rdb/v1/types.gen.ts b/packages/clients/src/api/rdb/v1/types.gen.ts index 0d71b94fa..a74a6c75b 100644 --- a/packages/clients/src/api/rdb/v1/types.gen.ts +++ b/packages/clients/src/api/rdb/v1/types.gen.ts @@ -593,8 +593,10 @@ export interface NodeType { availableVolumeTypes: NodeTypeVolumeType[] /** The Node Type can be used only with high availability option. */ isHaRequired: boolean - /** Generation associated the NodeType offer. */ + /** Generation associated with the NodeType offer. */ generation: NodeTypeGeneration + /** Instance range associated with the NodeType offer. */ + instanceRange: string /** Region the Node Type is in. */ region: Region }