File tree Expand file tree Collapse file tree 4 files changed +18
-0
lines changed
scaleway-async/scaleway_async/instance/v1
scaleway/scaleway/instance/v1 Expand file tree Collapse file tree 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:
20562056 if field is not None :
20572057 args ["boot_types" ] = [BootType (v ) for v in field ] if field is not None else None
20582058
2059+ field = data .get ("max_file_systems" , None )
2060+ if field is not None :
2061+ args ["max_file_systems" ] = field
2062+
20592063 field = data .get ("block_storage" , None )
20602064 if field is not None :
20612065 args ["block_storage" ] = field
Original file line number Diff line number Diff line change @@ -708,6 +708,11 @@ class ServerTypeCapabilities:
708708 List of supported boot types.
709709 """
710710
711+ max_file_systems : int
712+ """
713+ Max number of SFS (Scaleway File Systems) that can be attached to the Instance.
714+ """
715+
711716 block_storage : Optional [bool ]
712717 """
713718 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:
20562056 if field is not None :
20572057 args ["boot_types" ] = [BootType (v ) for v in field ] if field is not None else None
20582058
2059+ field = data .get ("max_file_systems" , None )
2060+ if field is not None :
2061+ args ["max_file_systems" ] = field
2062+
20592063 field = data .get ("block_storage" , None )
20602064 if field is not None :
20612065 args ["block_storage" ] = field
Original file line number Diff line number Diff line change @@ -708,6 +708,11 @@ class ServerTypeCapabilities:
708708 List of supported boot types.
709709 """
710710
711+ max_file_systems : int
712+ """
713+ Max number of SFS (Scaleway File Systems) that can be attached to the Instance.
714+ """
715+
711716 block_storage : Optional [bool ]
712717 """
713718 Defines whether the Instance supports block storage.
You can’t perform that action at this time.
0 commit comments