Skip to content

Commit 3308335

Browse files
authored
feat(instance): add max_file_systems capability (#2015)
1 parent df01e5e commit 3308335

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1155,6 +1155,7 @@ const unmarshalServerTypeCapabilities = (
11551155
return {
11561156
blockStorage: data.block_storage,
11571157
bootTypes: data.boot_types,
1158+
maxFileSystems: data.max_file_systems,
11581159
} as ServerTypeCapabilities
11591160
}
11601161

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -447,6 +447,10 @@ export interface ServerTypeCapabilities {
447447
* List of supported boot types.
448448
*/
449449
bootTypes: BootType[]
450+
/**
451+
* Max number of SFS (Scaleway File Systems) that can be attached to the Instance.
452+
*/
453+
maxFileSystems: number
450454
}
451455

452456
export interface ServerTypeGPUInfo {

0 commit comments

Comments
 (0)