From fdc046a9f1224f6acf3483bda0db8ca04dcd29f3 Mon Sep 17 00:00:00 2001 From: scaleway-bot Date: Fri, 3 Oct 2025 15:05:03 +0000 Subject: [PATCH] feat: update generated APIs --- scaleway-async/scaleway_async/applesilicon/v1alpha1/api.py | 3 --- .../scaleway_async/applesilicon/v1alpha1/marshalling.py | 5 ----- scaleway-async/scaleway_async/applesilicon/v1alpha1/types.py | 5 ----- scaleway/scaleway/applesilicon/v1alpha1/api.py | 3 --- scaleway/scaleway/applesilicon/v1alpha1/marshalling.py | 5 ----- scaleway/scaleway/applesilicon/v1alpha1/types.py | 5 ----- 6 files changed, 26 deletions(-) diff --git a/scaleway-async/scaleway_async/applesilicon/v1alpha1/api.py b/scaleway-async/scaleway_async/applesilicon/v1alpha1/api.py index eda4dde7..fb4ca035 100644 --- a/scaleway-async/scaleway_async/applesilicon/v1alpha1/api.py +++ b/scaleway-async/scaleway_async/applesilicon/v1alpha1/api.py @@ -642,7 +642,6 @@ async def reinstall_server( server_id: str, zone: Optional[ScwZone] = None, os_id: Optional[str] = None, - runner_configuration: Optional[RunnerConfiguration] = None, ) -> Server: """ Reinstall a server. @@ -650,7 +649,6 @@ async def reinstall_server( :param server_id: UUID of the server you want to reinstall. :param zone: Zone to target. If none is passed will use default zone from the config. :param os_id: Reinstall the server with the target OS, when no os_id provided the default OS for the server type is used. - :param runner_configuration: Specify the configuration to install an optional CICD runner on the server during installation. :return: :class:`Server ` Usage: @@ -672,7 +670,6 @@ async def reinstall_server( server_id=server_id, zone=zone, os_id=os_id, - runner_configuration=runner_configuration, ), self.client, ), diff --git a/scaleway-async/scaleway_async/applesilicon/v1alpha1/marshalling.py b/scaleway-async/scaleway_async/applesilicon/v1alpha1/marshalling.py index 5a468954..6dd880c1 100644 --- a/scaleway-async/scaleway_async/applesilicon/v1alpha1/marshalling.py +++ b/scaleway-async/scaleway_async/applesilicon/v1alpha1/marshalling.py @@ -1060,11 +1060,6 @@ def marshal_ReinstallServerRequest( if request.os_id is not None: output["os_id"] = request.os_id - if request.runner_configuration is not None: - output["runner_configuration"] = marshal_RunnerConfiguration( - request.runner_configuration, defaults - ) - return output diff --git a/scaleway-async/scaleway_async/applesilicon/v1alpha1/types.py b/scaleway-async/scaleway_async/applesilicon/v1alpha1/types.py index 7eeb6e7f..a11d72a1 100644 --- a/scaleway-async/scaleway_async/applesilicon/v1alpha1/types.py +++ b/scaleway-async/scaleway_async/applesilicon/v1alpha1/types.py @@ -915,11 +915,6 @@ class ReinstallServerRequest: Reinstall the server with the target OS, when no os_id provided the default OS for the server type is used. """ - runner_configuration: Optional[RunnerConfiguration] = None - """ - Specify the configuration to install an optional CICD runner on the server during installation. - """ - @dataclass class SetServerPrivateNetworksResponse: diff --git a/scaleway/scaleway/applesilicon/v1alpha1/api.py b/scaleway/scaleway/applesilicon/v1alpha1/api.py index 169035ee..06c7e844 100644 --- a/scaleway/scaleway/applesilicon/v1alpha1/api.py +++ b/scaleway/scaleway/applesilicon/v1alpha1/api.py @@ -642,7 +642,6 @@ def reinstall_server( server_id: str, zone: Optional[ScwZone] = None, os_id: Optional[str] = None, - runner_configuration: Optional[RunnerConfiguration] = None, ) -> Server: """ Reinstall a server. @@ -650,7 +649,6 @@ def reinstall_server( :param server_id: UUID of the server you want to reinstall. :param zone: Zone to target. If none is passed will use default zone from the config. :param os_id: Reinstall the server with the target OS, when no os_id provided the default OS for the server type is used. - :param runner_configuration: Specify the configuration to install an optional CICD runner on the server during installation. :return: :class:`Server ` Usage: @@ -672,7 +670,6 @@ def reinstall_server( server_id=server_id, zone=zone, os_id=os_id, - runner_configuration=runner_configuration, ), self.client, ), diff --git a/scaleway/scaleway/applesilicon/v1alpha1/marshalling.py b/scaleway/scaleway/applesilicon/v1alpha1/marshalling.py index 5a468954..6dd880c1 100644 --- a/scaleway/scaleway/applesilicon/v1alpha1/marshalling.py +++ b/scaleway/scaleway/applesilicon/v1alpha1/marshalling.py @@ -1060,11 +1060,6 @@ def marshal_ReinstallServerRequest( if request.os_id is not None: output["os_id"] = request.os_id - if request.runner_configuration is not None: - output["runner_configuration"] = marshal_RunnerConfiguration( - request.runner_configuration, defaults - ) - return output diff --git a/scaleway/scaleway/applesilicon/v1alpha1/types.py b/scaleway/scaleway/applesilicon/v1alpha1/types.py index 7eeb6e7f..a11d72a1 100644 --- a/scaleway/scaleway/applesilicon/v1alpha1/types.py +++ b/scaleway/scaleway/applesilicon/v1alpha1/types.py @@ -915,11 +915,6 @@ class ReinstallServerRequest: Reinstall the server with the target OS, when no os_id provided the default OS for the server type is used. """ - runner_configuration: Optional[RunnerConfiguration] = None - """ - Specify the configuration to install an optional CICD runner on the server during installation. - """ - @dataclass class SetServerPrivateNetworksResponse: