File tree Expand file tree Collapse file tree 4 files changed +18
-0
lines changed
scaleway-async/scaleway_async/baremetal/v1
scaleway/scaleway/baremetal/v1 Expand file tree Collapse file tree 4 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,10 @@ def unmarshal_SchemaPartition(data: Any) -> SchemaPartition:
9191 if field is not None :
9292 args ["size" ] = field
9393
94+ field = data .get ("use_all_available_space" , None )
95+ if field is not None :
96+ args ["use_all_available_space" ] = field
97+
9498 return SchemaPartition (** args )
9599
96100
@@ -1417,6 +1421,9 @@ def marshal_SchemaPartition(
14171421 if request .size is not None :
14181422 output ["size" ] = request .size
14191423
1424+ if request .use_all_available_space is not None :
1425+ output ["use_all_available_space" ] = request .use_all_available_space
1426+
14201427 return output
14211428
14221429
Original file line number Diff line number Diff line change @@ -225,6 +225,8 @@ class SchemaPartition:
225225
226226 size : int
227227
228+ use_all_available_space : bool
229+
228230
229231@dataclass
230232class SchemaPool :
Original file line number Diff line number Diff line change @@ -91,6 +91,10 @@ def unmarshal_SchemaPartition(data: Any) -> SchemaPartition:
9191 if field is not None :
9292 args ["size" ] = field
9393
94+ field = data .get ("use_all_available_space" , None )
95+ if field is not None :
96+ args ["use_all_available_space" ] = field
97+
9498 return SchemaPartition (** args )
9599
96100
@@ -1417,6 +1421,9 @@ def marshal_SchemaPartition(
14171421 if request .size is not None :
14181422 output ["size" ] = request .size
14191423
1424+ if request .use_all_available_space is not None :
1425+ output ["use_all_available_space" ] = request .use_all_available_space
1426+
14201427 return output
14211428
14221429
Original file line number Diff line number Diff line change @@ -225,6 +225,8 @@ class SchemaPartition:
225225
226226 size : int
227227
228+ use_all_available_space : bool
229+
228230
229231@dataclass
230232class SchemaPool :
You can’t perform that action at this time.
0 commit comments