diff --git a/scaleway-async/scaleway_async/container/v1beta1/marshalling.py b/scaleway-async/scaleway_async/container/v1beta1/marshalling.py index 213a5920..35c34608 100644 --- a/scaleway-async/scaleway_async/container/v1beta1/marshalling.py +++ b/scaleway-async/scaleway_async/container/v1beta1/marshalling.py @@ -77,9 +77,6 @@ def unmarshal_TriggerMnqNatsClientConfig(data: Any) -> TriggerMnqNatsClientConfi field = data.get("mnq_credential_id", None) args["mnq_credential_id"] = field - field = data.get("mnq_namespace_id", None) - args["mnq_namespace_id"] = field - field = data.get("mnq_nats_account_id", None) args["mnq_nats_account_id"] = field @@ -106,9 +103,6 @@ def unmarshal_TriggerMnqSqsClientConfig(data: Any) -> TriggerMnqSqsClientConfig: field = data.get("mnq_credential_id", None) args["mnq_credential_id"] = field - field = data.get("mnq_namespace_id", None) - args["mnq_namespace_id"] = field - field = data.get("mnq_project_id", None) args["mnq_project_id"] = field @@ -571,9 +565,6 @@ def marshal_CreateTriggerRequestMnqNatsClientConfig( ) -> Dict[str, Any]: output: Dict[str, Any] = {} - if request.mnq_namespace_id is not None: - output["mnq_namespace_id"] = request.mnq_namespace_id - if request.mnq_nats_account_id is not None: output["mnq_nats_account_id"] = request.mnq_nats_account_id @@ -595,9 +586,6 @@ def marshal_CreateTriggerRequestMnqSqsClientConfig( ) -> Dict[str, Any]: output: Dict[str, Any] = {} - if request.mnq_namespace_id is not None: - output["mnq_namespace_id"] = request.mnq_namespace_id - if request.mnq_project_id is not None: output["mnq_project_id"] = request.mnq_project_id diff --git a/scaleway-async/scaleway_async/container/v1beta1/types.py b/scaleway-async/scaleway_async/container/v1beta1/types.py index 6662661b..42e0bc30 100644 --- a/scaleway-async/scaleway_async/container/v1beta1/types.py +++ b/scaleway-async/scaleway_async/container/v1beta1/types.py @@ -327,11 +327,6 @@ class CreateTriggerRequestMnqNatsClientConfig: Create trigger request. mnq nats client config. """ - mnq_namespace_id: Optional[str] - """ - :deprecated - """ - subject: str """ Name of the NATS subject the trigger should listen to. @@ -350,7 +345,7 @@ class CreateTriggerRequestMnqNatsClientConfig: mnq_region: str """ Region in which the Messaging and Queuing project is activated. - Currently, only the `fr-par` region is available. + Currently, only the `fr-par` and `nl-ams` regions are available. """ @@ -360,11 +355,6 @@ class CreateTriggerRequestMnqSqsClientConfig: Create trigger request. mnq sqs client config. """ - mnq_namespace_id: Optional[str] - """ - :deprecated - """ - queue: str """ Name of the SQS queue the trigger should listen to. @@ -379,7 +369,7 @@ class CreateTriggerRequestMnqSqsClientConfig: mnq_region: str """ Region in which the Messaging and Queuing project is activated. - Currently, only the `fr-par` region is available. + Currently, only the `fr-par` and `nl-ams` regions are available. """ @@ -801,11 +791,6 @@ class TriggerMnqNatsClientConfig: Trigger. mnq nats client config. """ - mnq_namespace_id: Optional[str] - """ - :deprecated - """ - subject: str """ Name of the NATS subject the trigger listens to. @@ -824,7 +809,7 @@ class TriggerMnqNatsClientConfig: mnq_region: str """ Region in which the Messaging and Queuing project is activated. - Currently, only the `fr-par` region is available. + Currently, only the `fr-par` and `nl-ams` regions are available. """ mnq_credential_id: Optional[str] @@ -839,11 +824,6 @@ class TriggerMnqSqsClientConfig: Trigger. mnq sqs client config. """ - mnq_namespace_id: Optional[str] - """ - :deprecated - """ - queue: str """ Name of the SQS queue the trigger listens to. @@ -857,7 +837,7 @@ class TriggerMnqSqsClientConfig: mnq_region: str """ Region in which the Messaging and Queuing project is activated. - Currently, only the `fr-par` region is available. + Currently, only the `fr-par` and `nl-ams` regions are available. """ mnq_credential_id: Optional[str] diff --git a/scaleway-async/scaleway_async/function/v1beta1/marshalling.py b/scaleway-async/scaleway_async/function/v1beta1/marshalling.py index a326d595..e7e83049 100644 --- a/scaleway-async/scaleway_async/function/v1beta1/marshalling.py +++ b/scaleway-async/scaleway_async/function/v1beta1/marshalling.py @@ -81,9 +81,6 @@ def unmarshal_TriggerMnqNatsClientConfig(data: Any) -> TriggerMnqNatsClientConfi field = data.get("mnq_credential_id", None) args["mnq_credential_id"] = field - field = data.get("mnq_namespace_id", None) - args["mnq_namespace_id"] = field - field = data.get("mnq_nats_account_id", None) args["mnq_nats_account_id"] = field @@ -110,9 +107,6 @@ def unmarshal_TriggerMnqSqsClientConfig(data: Any) -> TriggerMnqSqsClientConfig: field = data.get("mnq_credential_id", None) args["mnq_credential_id"] = field - field = data.get("mnq_namespace_id", None) - args["mnq_namespace_id"] = field - field = data.get("mnq_project_id", None) args["mnq_project_id"] = field @@ -669,9 +663,6 @@ def marshal_CreateTriggerRequestMnqNatsClientConfig( ) -> Dict[str, Any]: output: Dict[str, Any] = {} - if request.mnq_namespace_id is not None: - output["mnq_namespace_id"] = request.mnq_namespace_id - if request.mnq_nats_account_id is not None: output["mnq_nats_account_id"] = request.mnq_nats_account_id @@ -693,9 +684,6 @@ def marshal_CreateTriggerRequestMnqSqsClientConfig( ) -> Dict[str, Any]: output: Dict[str, Any] = {} - if request.mnq_namespace_id is not None: - output["mnq_namespace_id"] = request.mnq_namespace_id - if request.mnq_project_id is not None: output["mnq_project_id"] = request.mnq_project_id diff --git a/scaleway-async/scaleway_async/function/v1beta1/types.py b/scaleway-async/scaleway_async/function/v1beta1/types.py index 900a7a8e..46d74953 100644 --- a/scaleway-async/scaleway_async/function/v1beta1/types.py +++ b/scaleway-async/scaleway_async/function/v1beta1/types.py @@ -246,11 +246,6 @@ class CreateTriggerRequestMnqNatsClientConfig: Create trigger request. mnq nats client config. """ - mnq_namespace_id: Optional[str] - """ - :deprecated - """ - subject: str """ Name of the NATS subject the trigger should listen to. @@ -269,7 +264,7 @@ class CreateTriggerRequestMnqNatsClientConfig: mnq_region: str """ Region in which the Messaging and Queuing project is activated. - Currently, only the `fr-par` region is available. + Currently, only the `fr-par` and `nl-ams` regions are available. """ @@ -279,11 +274,6 @@ class CreateTriggerRequestMnqSqsClientConfig: Create trigger request. mnq sqs client config. """ - mnq_namespace_id: Optional[str] - """ - :deprecated - """ - queue: str """ Name of the SQS queue the trigger should listen to. @@ -298,7 +288,7 @@ class CreateTriggerRequestMnqSqsClientConfig: mnq_region: str """ Region in which the Messaging and Queuing project is activated. - Currently, only the `fr-par` region is available. + Currently, only the `fr-par` and `nl-ams` regions are available. """ @@ -891,11 +881,6 @@ class TriggerMnqNatsClientConfig: Trigger. mnq nats client config. """ - mnq_namespace_id: Optional[str] - """ - :deprecated - """ - subject: str """ Name of the NATS subject the trigger listens to. @@ -914,7 +899,7 @@ class TriggerMnqNatsClientConfig: mnq_region: str """ Region in which the Messaging and Queuing project is activated. - Currently, only the `fr-par` region is available. + Currently, only the `fr-par` and `nl-ams` regions are available. """ mnq_credential_id: Optional[str] @@ -929,11 +914,6 @@ class TriggerMnqSqsClientConfig: Trigger. mnq sqs client config. """ - mnq_namespace_id: Optional[str] - """ - :deprecated - """ - queue: str """ Name of the SQS queue the trigger listens to. @@ -947,7 +927,7 @@ class TriggerMnqSqsClientConfig: mnq_region: str """ Region in which the Messaging and Queuing project is activated. - Currently, only the `fr-par` region is available. + Currently, only the `fr-par` and `nl-ams` regions are available. """ mnq_credential_id: Optional[str] diff --git a/scaleway/scaleway/container/v1beta1/marshalling.py b/scaleway/scaleway/container/v1beta1/marshalling.py index 213a5920..35c34608 100644 --- a/scaleway/scaleway/container/v1beta1/marshalling.py +++ b/scaleway/scaleway/container/v1beta1/marshalling.py @@ -77,9 +77,6 @@ def unmarshal_TriggerMnqNatsClientConfig(data: Any) -> TriggerMnqNatsClientConfi field = data.get("mnq_credential_id", None) args["mnq_credential_id"] = field - field = data.get("mnq_namespace_id", None) - args["mnq_namespace_id"] = field - field = data.get("mnq_nats_account_id", None) args["mnq_nats_account_id"] = field @@ -106,9 +103,6 @@ def unmarshal_TriggerMnqSqsClientConfig(data: Any) -> TriggerMnqSqsClientConfig: field = data.get("mnq_credential_id", None) args["mnq_credential_id"] = field - field = data.get("mnq_namespace_id", None) - args["mnq_namespace_id"] = field - field = data.get("mnq_project_id", None) args["mnq_project_id"] = field @@ -571,9 +565,6 @@ def marshal_CreateTriggerRequestMnqNatsClientConfig( ) -> Dict[str, Any]: output: Dict[str, Any] = {} - if request.mnq_namespace_id is not None: - output["mnq_namespace_id"] = request.mnq_namespace_id - if request.mnq_nats_account_id is not None: output["mnq_nats_account_id"] = request.mnq_nats_account_id @@ -595,9 +586,6 @@ def marshal_CreateTriggerRequestMnqSqsClientConfig( ) -> Dict[str, Any]: output: Dict[str, Any] = {} - if request.mnq_namespace_id is not None: - output["mnq_namespace_id"] = request.mnq_namespace_id - if request.mnq_project_id is not None: output["mnq_project_id"] = request.mnq_project_id diff --git a/scaleway/scaleway/container/v1beta1/types.py b/scaleway/scaleway/container/v1beta1/types.py index 6662661b..42e0bc30 100644 --- a/scaleway/scaleway/container/v1beta1/types.py +++ b/scaleway/scaleway/container/v1beta1/types.py @@ -327,11 +327,6 @@ class CreateTriggerRequestMnqNatsClientConfig: Create trigger request. mnq nats client config. """ - mnq_namespace_id: Optional[str] - """ - :deprecated - """ - subject: str """ Name of the NATS subject the trigger should listen to. @@ -350,7 +345,7 @@ class CreateTriggerRequestMnqNatsClientConfig: mnq_region: str """ Region in which the Messaging and Queuing project is activated. - Currently, only the `fr-par` region is available. + Currently, only the `fr-par` and `nl-ams` regions are available. """ @@ -360,11 +355,6 @@ class CreateTriggerRequestMnqSqsClientConfig: Create trigger request. mnq sqs client config. """ - mnq_namespace_id: Optional[str] - """ - :deprecated - """ - queue: str """ Name of the SQS queue the trigger should listen to. @@ -379,7 +369,7 @@ class CreateTriggerRequestMnqSqsClientConfig: mnq_region: str """ Region in which the Messaging and Queuing project is activated. - Currently, only the `fr-par` region is available. + Currently, only the `fr-par` and `nl-ams` regions are available. """ @@ -801,11 +791,6 @@ class TriggerMnqNatsClientConfig: Trigger. mnq nats client config. """ - mnq_namespace_id: Optional[str] - """ - :deprecated - """ - subject: str """ Name of the NATS subject the trigger listens to. @@ -824,7 +809,7 @@ class TriggerMnqNatsClientConfig: mnq_region: str """ Region in which the Messaging and Queuing project is activated. - Currently, only the `fr-par` region is available. + Currently, only the `fr-par` and `nl-ams` regions are available. """ mnq_credential_id: Optional[str] @@ -839,11 +824,6 @@ class TriggerMnqSqsClientConfig: Trigger. mnq sqs client config. """ - mnq_namespace_id: Optional[str] - """ - :deprecated - """ - queue: str """ Name of the SQS queue the trigger listens to. @@ -857,7 +837,7 @@ class TriggerMnqSqsClientConfig: mnq_region: str """ Region in which the Messaging and Queuing project is activated. - Currently, only the `fr-par` region is available. + Currently, only the `fr-par` and `nl-ams` regions are available. """ mnq_credential_id: Optional[str] diff --git a/scaleway/scaleway/function/v1beta1/marshalling.py b/scaleway/scaleway/function/v1beta1/marshalling.py index a326d595..e7e83049 100644 --- a/scaleway/scaleway/function/v1beta1/marshalling.py +++ b/scaleway/scaleway/function/v1beta1/marshalling.py @@ -81,9 +81,6 @@ def unmarshal_TriggerMnqNatsClientConfig(data: Any) -> TriggerMnqNatsClientConfi field = data.get("mnq_credential_id", None) args["mnq_credential_id"] = field - field = data.get("mnq_namespace_id", None) - args["mnq_namespace_id"] = field - field = data.get("mnq_nats_account_id", None) args["mnq_nats_account_id"] = field @@ -110,9 +107,6 @@ def unmarshal_TriggerMnqSqsClientConfig(data: Any) -> TriggerMnqSqsClientConfig: field = data.get("mnq_credential_id", None) args["mnq_credential_id"] = field - field = data.get("mnq_namespace_id", None) - args["mnq_namespace_id"] = field - field = data.get("mnq_project_id", None) args["mnq_project_id"] = field @@ -669,9 +663,6 @@ def marshal_CreateTriggerRequestMnqNatsClientConfig( ) -> Dict[str, Any]: output: Dict[str, Any] = {} - if request.mnq_namespace_id is not None: - output["mnq_namespace_id"] = request.mnq_namespace_id - if request.mnq_nats_account_id is not None: output["mnq_nats_account_id"] = request.mnq_nats_account_id @@ -693,9 +684,6 @@ def marshal_CreateTriggerRequestMnqSqsClientConfig( ) -> Dict[str, Any]: output: Dict[str, Any] = {} - if request.mnq_namespace_id is not None: - output["mnq_namespace_id"] = request.mnq_namespace_id - if request.mnq_project_id is not None: output["mnq_project_id"] = request.mnq_project_id diff --git a/scaleway/scaleway/function/v1beta1/types.py b/scaleway/scaleway/function/v1beta1/types.py index 900a7a8e..46d74953 100644 --- a/scaleway/scaleway/function/v1beta1/types.py +++ b/scaleway/scaleway/function/v1beta1/types.py @@ -246,11 +246,6 @@ class CreateTriggerRequestMnqNatsClientConfig: Create trigger request. mnq nats client config. """ - mnq_namespace_id: Optional[str] - """ - :deprecated - """ - subject: str """ Name of the NATS subject the trigger should listen to. @@ -269,7 +264,7 @@ class CreateTriggerRequestMnqNatsClientConfig: mnq_region: str """ Region in which the Messaging and Queuing project is activated. - Currently, only the `fr-par` region is available. + Currently, only the `fr-par` and `nl-ams` regions are available. """ @@ -279,11 +274,6 @@ class CreateTriggerRequestMnqSqsClientConfig: Create trigger request. mnq sqs client config. """ - mnq_namespace_id: Optional[str] - """ - :deprecated - """ - queue: str """ Name of the SQS queue the trigger should listen to. @@ -298,7 +288,7 @@ class CreateTriggerRequestMnqSqsClientConfig: mnq_region: str """ Region in which the Messaging and Queuing project is activated. - Currently, only the `fr-par` region is available. + Currently, only the `fr-par` and `nl-ams` regions are available. """ @@ -891,11 +881,6 @@ class TriggerMnqNatsClientConfig: Trigger. mnq nats client config. """ - mnq_namespace_id: Optional[str] - """ - :deprecated - """ - subject: str """ Name of the NATS subject the trigger listens to. @@ -914,7 +899,7 @@ class TriggerMnqNatsClientConfig: mnq_region: str """ Region in which the Messaging and Queuing project is activated. - Currently, only the `fr-par` region is available. + Currently, only the `fr-par` and `nl-ams` regions are available. """ mnq_credential_id: Optional[str] @@ -929,11 +914,6 @@ class TriggerMnqSqsClientConfig: Trigger. mnq sqs client config. """ - mnq_namespace_id: Optional[str] - """ - :deprecated - """ - queue: str """ Name of the SQS queue the trigger listens to. @@ -947,7 +927,7 @@ class TriggerMnqSqsClientConfig: mnq_region: str """ Region in which the Messaging and Queuing project is activated. - Currently, only the `fr-par` region is available. + Currently, only the `fr-par` and `nl-ams` regions are available. """ mnq_credential_id: Optional[str]