scaleway-sdk-python
scaleway-sdk-python copied to clipboard
Integrate Scaleway with your Python applications
Versions used: ``` scaleway 2.6.0 Scaleway SDK for Python scaleway-core 2.6.0 Scaleway SDK for Python ``` When using `list_images` from `instance.v1`, `unmarshall_Volume` fails with the following error: ``` TypeError: Volume.__init__()...
Hi, First of all thank you for the sdk. 🙏 This is issue is very similar to: https://github.com/scaleway/scaleway-sdk-python/issues/636 It would seem that when the `extra_volume` is of type `sbs_snapshots` some...
The RecordChange subtypes have not been marshalled correctly to the expected format and could not be dumped as json. This fix ensures that the subtypes are now correctly converted
On version 2.9.0 I have an error when calling list_clusters(region= 'fr-par', page_size=10) The error is: Cluster.__init__() missing 1 required positional argument: 'iam_nodes_group_id' Using Python 3.12
Hello there, When I try to create an IP address like this: ```python client = Client.from_env() api = InstanceUtilsV1API(client) api.create_ip(type_=IpType.ROUTED_IPV6) ``` I get an error: ``` result = api.create_ip(type_=IpType.ROUTED_IPV6) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...