File tree 4 files changed +18
-0
lines changed
scaleway/scaleway/instance/v1
scaleway-async/scaleway_async/instance/v1
4 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -2056,6 +2056,10 @@ def unmarshal_ServerTypeCapabilities(data: Any) -> ServerTypeCapabilities:
2056
2056
if field is not None :
2057
2057
args ["boot_types" ] = [BootType (v ) for v in field ] if field is not None else None
2058
2058
2059
+ field = data .get ("max_file_systems" , None )
2060
+ if field is not None :
2061
+ args ["max_file_systems" ] = field
2062
+
2059
2063
field = data .get ("block_storage" , None )
2060
2064
if field is not None :
2061
2065
args ["block_storage" ] = field
Original file line number Diff line number Diff line change @@ -708,6 +708,11 @@ class ServerTypeCapabilities:
708
708
List of supported boot types.
709
709
"""
710
710
711
+ max_file_systems : int
712
+ """
713
+ Max number of SFS (Scaleway File Systems) that can be attached to the Instance.
714
+ """
715
+
711
716
block_storage : Optional [bool ]
712
717
"""
713
718
Defines whether the Instance supports block storage.
Original file line number Diff line number Diff line change @@ -2056,6 +2056,10 @@ def unmarshal_ServerTypeCapabilities(data: Any) -> ServerTypeCapabilities:
2056
2056
if field is not None :
2057
2057
args ["boot_types" ] = [BootType (v ) for v in field ] if field is not None else None
2058
2058
2059
+ field = data .get ("max_file_systems" , None )
2060
+ if field is not None :
2061
+ args ["max_file_systems" ] = field
2062
+
2059
2063
field = data .get ("block_storage" , None )
2060
2064
if field is not None :
2061
2065
args ["block_storage" ] = field
Original file line number Diff line number Diff line change @@ -708,6 +708,11 @@ class ServerTypeCapabilities:
708
708
List of supported boot types.
709
709
"""
710
710
711
+ max_file_systems : int
712
+ """
713
+ Max number of SFS (Scaleway File Systems) that can be attached to the Instance.
714
+ """
715
+
711
716
block_storage : Optional [bool ]
712
717
"""
713
718
Defines whether the Instance supports block storage.
You can’t perform that action at this time.
0 commit comments