File tree Expand file tree Collapse file tree
scaleway-async/scaleway_async/product_catalog/v2alpha1
scaleway/scaleway/product_catalog/v2alpha1 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -170,6 +170,12 @@ def unmarshal_PublicCatalogProductPropertiesHardwareCPU(
170170 else :
171171 args ["threads" ] = 0
172172
173+ field = data .get ("shared" , None )
174+ if field is not None :
175+ args ["shared" ] = field
176+ else :
177+ args ["shared" ] = False
178+
173179 field = data .get ("virtual" , None )
174180 if field is not None :
175181 args ["virtual" ] = unmarshal_PublicCatalogProductPropertiesHardwareCPUVirtual (
Original file line number Diff line number Diff line change @@ -306,6 +306,11 @@ class PublicCatalogProductPropertiesHardwareCPU:
306306 The total number of threads.
307307 """
308308
309+ shared : bool
310+ """
311+ Indicates whether the CPU is shared or not.
312+ """
313+
309314 virtual : Optional [PublicCatalogProductPropertiesHardwareCPUVirtual ] = None
310315
311316 physical : Optional [PublicCatalogProductPropertiesHardwareCPUPhysical ] = None
Original file line number Diff line number Diff line change @@ -170,6 +170,12 @@ def unmarshal_PublicCatalogProductPropertiesHardwareCPU(
170170 else :
171171 args ["threads" ] = 0
172172
173+ field = data .get ("shared" , None )
174+ if field is not None :
175+ args ["shared" ] = field
176+ else :
177+ args ["shared" ] = False
178+
173179 field = data .get ("virtual" , None )
174180 if field is not None :
175181 args ["virtual" ] = unmarshal_PublicCatalogProductPropertiesHardwareCPUVirtual (
Original file line number Diff line number Diff line change @@ -306,6 +306,11 @@ class PublicCatalogProductPropertiesHardwareCPU:
306306 The total number of threads.
307307 """
308308
309+ shared : bool
310+ """
311+ Indicates whether the CPU is shared or not.
312+ """
313+
309314 virtual : Optional [PublicCatalogProductPropertiesHardwareCPUVirtual ] = None
310315
311316 physical : Optional [PublicCatalogProductPropertiesHardwareCPUPhysical ] = None
You can’t perform that action at this time.
0 commit comments