File tree Expand file tree Collapse file tree 4 files changed +10
-2
lines changed
scaleway-async/scaleway_async/baremetal/v1
scaleway/scaleway/baremetal/v1 Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -412,6 +412,10 @@ def unmarshal_PrivateNetworkOption(data: Any) -> PrivateNetworkOption:
412412
413413 args : Dict [str , Any ] = {}
414414
415+ field = data .get ("bandwidth_in_bps" , None )
416+ if field is not None :
417+ args ["bandwidth_in_bps" ] = field
418+
415419 return PrivateNetworkOption (** args )
416420
417421
Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ class LicenseOption:
280280
281281@dataclass
282282class PrivateNetworkOption :
283- pass
283+ bandwidth_in_bps : int
284284
285285
286286@dataclass
Original file line number Diff line number Diff line change @@ -412,6 +412,10 @@ def unmarshal_PrivateNetworkOption(data: Any) -> PrivateNetworkOption:
412412
413413 args : Dict [str , Any ] = {}
414414
415+ field = data .get ("bandwidth_in_bps" , None )
416+ if field is not None :
417+ args ["bandwidth_in_bps" ] = field
418+
415419 return PrivateNetworkOption (** args )
416420
417421
Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ class LicenseOption:
280280
281281@dataclass
282282class PrivateNetworkOption :
283- pass
283+ bandwidth_in_bps : int
284284
285285
286286@dataclass
You can’t perform that action at this time.
0 commit comments