From 1a53d342756981d52570117a2f8f6430724a74c5 Mon Sep 17 00:00:00 2001 From: SDK Generator Bot Date: Tue, 22 Apr 2025 14:34:34 +0000 Subject: [PATCH] Generate lbapplication --- .../src/stackit/lbapplication/__init__.py | 2 +- .../stackit/lbapplication/api/default_api.py | 146 +++++++++++++----- .../src/stackit/lbapplication/api_client.py | 2 +- .../stackit/lbapplication/configuration.py | 2 +- .../src/stackit/lbapplication/exceptions.py | 2 +- .../stackit/lbapplication/models/__init__.py | 2 +- .../models/active_health_check.py | 2 +- .../models/certificate_config.py | 2 +- .../models/cookie_persistence.py | 2 +- .../models/create_credentials_payload.py | 2 +- .../models/create_credentials_response.py | 2 +- .../models/create_load_balancer_payload.py | 2 +- .../models/credentials_response.py | 2 +- .../models/get_credentials_response.py | 2 +- .../models/get_quota_response.py | 2 +- .../models/get_service_status_response.py | 2 +- .../models/google_protobuf_any.py | 2 +- .../stackit/lbapplication/models/header.py | 2 +- .../lbapplication/models/http_config.py | 2 +- .../models/http_health_checks.py | 2 +- .../models/list_credentials_response.py | 2 +- .../models/list_load_balancers_response.py | 2 +- .../models/list_plans_response.py | 2 +- .../stackit/lbapplication/models/listener.py | 2 +- .../lbapplication/models/load_balancer.py | 2 +- .../models/load_balancer_error.py | 2 +- .../models/load_balancer_options.py | 2 +- .../loadbalancer_option_access_control.py | 2 +- .../models/loadbalancer_option_logs.py | 2 +- .../models/loadbalancer_option_metrics.py | 2 +- .../loadbalancer_option_observability.py | 2 +- .../stackit/lbapplication/models/matcher.py | 2 +- .../stackit/lbapplication/models/network.py | 2 +- .../lbapplication/models/plan_details.py | 2 +- .../models/protocol_options_https.py | 2 +- .../lbapplication/models/query_parameters.py | 2 +- .../src/stackit/lbapplication/models/rule.py | 2 +- .../stackit/lbapplication/models/status.py | 2 +- .../stackit/lbapplication/models/target.py | 2 +- .../lbapplication/models/target_pool.py | 2 +- .../models/update_credentials_payload.py | 2 +- .../models/update_credentials_response.py | 2 +- .../models/update_load_balancer_payload.py | 2 +- .../models/update_target_pool_payload.py | 2 +- .../src/stackit/lbapplication/rest.py | 2 +- 45 files changed, 150 insertions(+), 84 deletions(-) diff --git a/services/lbapplication/src/stackit/lbapplication/__init__.py b/services/lbapplication/src/stackit/lbapplication/__init__.py index 07fc2d3a4..03e600407 100644 --- a/services/lbapplication/src/stackit/lbapplication/__init__.py +++ b/services/lbapplication/src/stackit/lbapplication/__init__.py @@ -5,7 +5,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/api/default_api.py b/services/lbapplication/src/stackit/lbapplication/api/default_api.py index 2e623551e..bc6c9c382 100644 --- a/services/lbapplication/src/stackit/lbapplication/api/default_api.py +++ b/services/lbapplication/src/stackit/lbapplication/api/default_api.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -87,7 +87,7 @@ def create_credentials( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> CreateCredentialsResponse: - """Create credentials for observability of the application load balancer + """(Deprecated) Create credentials for observability of the application load balancer Creates and stores credentials for use with Application Load Balancer Observability. For example, when using ARGUS, credentials must first be created via the ARGUS API and then stored with this endpoint to be used by the Application Load Balancer. @@ -118,6 +118,7 @@ def create_credentials( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("POST /v1beta/projects/{projectId}/credentials is deprecated.", DeprecationWarning) _param = self._create_credentials_serialize( project_id=project_id, @@ -159,7 +160,7 @@ def create_credentials_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[CreateCredentialsResponse]: - """Create credentials for observability of the application load balancer + """(Deprecated) Create credentials for observability of the application load balancer Creates and stores credentials for use with Application Load Balancer Observability. For example, when using ARGUS, credentials must first be created via the ARGUS API and then stored with this endpoint to be used by the Application Load Balancer. @@ -190,6 +191,7 @@ def create_credentials_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("POST /v1beta/projects/{projectId}/credentials is deprecated.", DeprecationWarning) _param = self._create_credentials_serialize( project_id=project_id, @@ -231,7 +233,7 @@ def create_credentials_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """Create credentials for observability of the application load balancer + """(Deprecated) Create credentials for observability of the application load balancer Creates and stores credentials for use with Application Load Balancer Observability. For example, when using ARGUS, credentials must first be created via the ARGUS API and then stored with this endpoint to be used by the Application Load Balancer. @@ -262,6 +264,7 @@ def create_credentials_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("POST /v1beta/projects/{projectId}/credentials is deprecated.", DeprecationWarning) _param = self._create_credentials_serialize( project_id=project_id, @@ -363,7 +366,7 @@ def create_load_balancer( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> LoadBalancer: - """Create an application load balancer in a project + """(Deprecated) Create an application load balancer in a project Creates an Application Load Balancer. The default load balancing algorithm is Maglev, and selecting a different algorithm is currently not supported. @@ -394,6 +397,7 @@ def create_load_balancer( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("POST /v1beta/projects/{projectId}/load-balancers is deprecated.", DeprecationWarning) _param = self._create_load_balancer_serialize( project_id=project_id, @@ -436,7 +440,7 @@ def create_load_balancer_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[LoadBalancer]: - """Create an application load balancer in a project + """(Deprecated) Create an application load balancer in a project Creates an Application Load Balancer. The default load balancing algorithm is Maglev, and selecting a different algorithm is currently not supported. @@ -467,6 +471,7 @@ def create_load_balancer_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("POST /v1beta/projects/{projectId}/load-balancers is deprecated.", DeprecationWarning) _param = self._create_load_balancer_serialize( project_id=project_id, @@ -509,7 +514,7 @@ def create_load_balancer_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """Create an application load balancer in a project + """(Deprecated) Create an application load balancer in a project Creates an Application Load Balancer. The default load balancing algorithm is Maglev, and selecting a different algorithm is currently not supported. @@ -540,6 +545,7 @@ def create_load_balancer_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("POST /v1beta/projects/{projectId}/load-balancers is deprecated.", DeprecationWarning) _param = self._create_load_balancer_serialize( project_id=project_id, @@ -641,7 +647,7 @@ def delete_credentials( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> object: - """Delete a single credential in a project. + """(Deprecated) Delete a single credential in a project. Deletes the stored Observability credentials. @@ -670,6 +676,9 @@ def delete_credentials( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn( + "DELETE /v1beta/projects/{projectId}/credentials/{credentialsRef} is deprecated.", DeprecationWarning + ) _param = self._delete_credentials_serialize( project_id=project_id, @@ -709,7 +718,7 @@ def delete_credentials_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[object]: - """Delete a single credential in a project. + """(Deprecated) Delete a single credential in a project. Deletes the stored Observability credentials. @@ -738,6 +747,9 @@ def delete_credentials_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn( + "DELETE /v1beta/projects/{projectId}/credentials/{credentialsRef} is deprecated.", DeprecationWarning + ) _param = self._delete_credentials_serialize( project_id=project_id, @@ -777,7 +789,7 @@ def delete_credentials_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """Delete a single credential in a project. + """(Deprecated) Delete a single credential in a project. Deletes the stored Observability credentials. @@ -806,6 +818,9 @@ def delete_credentials_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn( + "DELETE /v1beta/projects/{projectId}/credentials/{credentialsRef} is deprecated.", DeprecationWarning + ) _param = self._delete_credentials_serialize( project_id=project_id, @@ -894,7 +909,7 @@ def delete_load_balancer( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> object: - """Delete a given load balancer in a project. + """(Deprecated) Delete a given load balancer in a project. Deletes the specified Application Load Balancer. @@ -923,6 +938,7 @@ def delete_load_balancer( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("DELETE /v1beta/projects/{projectId}/load-balancers/{name} is deprecated.", DeprecationWarning) _param = self._delete_load_balancer_serialize( project_id=project_id, @@ -962,7 +978,7 @@ def delete_load_balancer_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[object]: - """Delete a given load balancer in a project. + """(Deprecated) Delete a given load balancer in a project. Deletes the specified Application Load Balancer. @@ -991,6 +1007,7 @@ def delete_load_balancer_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("DELETE /v1beta/projects/{projectId}/load-balancers/{name} is deprecated.", DeprecationWarning) _param = self._delete_load_balancer_serialize( project_id=project_id, @@ -1030,7 +1047,7 @@ def delete_load_balancer_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """Delete a given load balancer in a project. + """(Deprecated) Delete a given load balancer in a project. Deletes the specified Application Load Balancer. @@ -1059,6 +1076,7 @@ def delete_load_balancer_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("DELETE /v1beta/projects/{projectId}/load-balancers/{name} is deprecated.", DeprecationWarning) _param = self._delete_load_balancer_serialize( project_id=project_id, @@ -1644,7 +1662,7 @@ def get_credentials( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> GetCredentialsResponse: - """Get a single credential reference in a project. + """(Deprecated) Get a single credential reference in a project. Gets the stored Observability credentials. @@ -1673,6 +1691,9 @@ def get_credentials( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn( + "GET /v1beta/projects/{projectId}/credentials/{credentialsRef} is deprecated.", DeprecationWarning + ) _param = self._get_credentials_serialize( project_id=project_id, @@ -1713,7 +1734,7 @@ def get_credentials_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[GetCredentialsResponse]: - """Get a single credential reference in a project. + """(Deprecated) Get a single credential reference in a project. Gets the stored Observability credentials. @@ -1742,6 +1763,9 @@ def get_credentials_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn( + "GET /v1beta/projects/{projectId}/credentials/{credentialsRef} is deprecated.", DeprecationWarning + ) _param = self._get_credentials_serialize( project_id=project_id, @@ -1782,7 +1806,7 @@ def get_credentials_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """Get a single credential reference in a project. + """(Deprecated) Get a single credential reference in a project. Gets the stored Observability credentials. @@ -1811,6 +1835,9 @@ def get_credentials_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn( + "GET /v1beta/projects/{projectId}/credentials/{credentialsRef} is deprecated.", DeprecationWarning + ) _param = self._get_credentials_serialize( project_id=project_id, @@ -1900,7 +1927,7 @@ def get_load_balancer( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> LoadBalancer: - """Get a single application load balancer in a project. + """(Deprecated) Get a single application load balancer in a project. Retrieves details of a specific Application Load Balancer in a project. Includes creation and update information, current status, and any error descriptions. @@ -1929,6 +1956,7 @@ def get_load_balancer( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("GET /v1beta/projects/{projectId}/load-balancers/{name} is deprecated.", DeprecationWarning) _param = self._get_load_balancer_serialize( project_id=project_id, @@ -1969,7 +1997,7 @@ def get_load_balancer_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[LoadBalancer]: - """Get a single application load balancer in a project. + """(Deprecated) Get a single application load balancer in a project. Retrieves details of a specific Application Load Balancer in a project. Includes creation and update information, current status, and any error descriptions. @@ -1998,6 +2026,7 @@ def get_load_balancer_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("GET /v1beta/projects/{projectId}/load-balancers/{name} is deprecated.", DeprecationWarning) _param = self._get_load_balancer_serialize( project_id=project_id, @@ -2038,7 +2067,7 @@ def get_load_balancer_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """Get a single application load balancer in a project. + """(Deprecated) Get a single application load balancer in a project. Retrieves details of a specific Application Load Balancer in a project. Includes creation and update information, current status, and any error descriptions. @@ -2067,6 +2096,7 @@ def get_load_balancer_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("GET /v1beta/projects/{projectId}/load-balancers/{name} is deprecated.", DeprecationWarning) _param = self._get_load_balancer_serialize( project_id=project_id, @@ -2155,7 +2185,7 @@ def get_quota( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> GetQuotaResponse: - """Get the quota of application load balancers and target pools in a project. + """(Deprecated) Get the quota of application load balancers and target pools in a project. Retrieves the configured Application Load Balancer quota for the project. The default quota is 3. @@ -2182,6 +2212,7 @@ def get_quota( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("GET /v1beta/projects/{projectId}/quota is deprecated.", DeprecationWarning) _param = self._get_quota_serialize( project_id=project_id, @@ -2219,7 +2250,7 @@ def get_quota_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[GetQuotaResponse]: - """Get the quota of application load balancers and target pools in a project. + """(Deprecated) Get the quota of application load balancers and target pools in a project. Retrieves the configured Application Load Balancer quota for the project. The default quota is 3. @@ -2246,6 +2277,7 @@ def get_quota_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("GET /v1beta/projects/{projectId}/quota is deprecated.", DeprecationWarning) _param = self._get_quota_serialize( project_id=project_id, @@ -2283,7 +2315,7 @@ def get_quota_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """Get the quota of application load balancers and target pools in a project. + """(Deprecated) Get the quota of application load balancers and target pools in a project. Retrieves the configured Application Load Balancer quota for the project. The default quota is 3. @@ -2310,6 +2342,7 @@ def get_quota_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("GET /v1beta/projects/{projectId}/quota is deprecated.", DeprecationWarning) _param = self._get_quota_serialize( project_id=project_id, @@ -2634,7 +2667,7 @@ def list_credentials( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ListCredentialsResponse: - """List all credentials in a project. + """(Deprecated) List all credentials in a project. Lists the stored Observability credentials. @@ -2661,6 +2694,7 @@ def list_credentials( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("GET /v1beta/projects/{projectId}/credentials is deprecated.", DeprecationWarning) _param = self._list_credentials_serialize( project_id=project_id, @@ -2698,7 +2732,7 @@ def list_credentials_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[ListCredentialsResponse]: - """List all credentials in a project. + """(Deprecated) List all credentials in a project. Lists the stored Observability credentials. @@ -2725,6 +2759,7 @@ def list_credentials_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("GET /v1beta/projects/{projectId}/credentials is deprecated.", DeprecationWarning) _param = self._list_credentials_serialize( project_id=project_id, @@ -2762,7 +2797,7 @@ def list_credentials_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """List all credentials in a project. + """(Deprecated) List all credentials in a project. Lists the stored Observability credentials. @@ -2789,6 +2824,7 @@ def list_credentials_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("GET /v1beta/projects/{projectId}/credentials is deprecated.", DeprecationWarning) _param = self._list_credentials_serialize( project_id=project_id, @@ -2884,7 +2920,7 @@ def list_load_balancers( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ListLoadBalancersResponse: - """List load balancers in a project. + """(Deprecated) List load balancers in a project. Lists all Application Load Balancers in a project. Includes details from creation or updates, along with their status and any error descriptions. @@ -2915,6 +2951,7 @@ def list_load_balancers( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("GET /v1beta/projects/{projectId}/load-balancers is deprecated.", DeprecationWarning) _param = self._list_load_balancers_serialize( project_id=project_id, @@ -2966,7 +3003,7 @@ def list_load_balancers_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[ListLoadBalancersResponse]: - """List load balancers in a project. + """(Deprecated) List load balancers in a project. Lists all Application Load Balancers in a project. Includes details from creation or updates, along with their status and any error descriptions. @@ -2997,6 +3034,7 @@ def list_load_balancers_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("GET /v1beta/projects/{projectId}/load-balancers is deprecated.", DeprecationWarning) _param = self._list_load_balancers_serialize( project_id=project_id, @@ -3048,7 +3086,7 @@ def list_load_balancers_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """List load balancers in a project. + """(Deprecated) List load balancers in a project. Lists all Application Load Balancers in a project. Includes details from creation or updates, along with their status and any error descriptions. @@ -3079,6 +3117,7 @@ def list_load_balancers_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("GET /v1beta/projects/{projectId}/load-balancers is deprecated.", DeprecationWarning) _param = self._list_load_balancers_serialize( project_id=project_id, @@ -3173,7 +3212,7 @@ def list_plans( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ListPlansResponse: - """List available service plans. + """(Deprecated) List available service plans. Lists the configured service plans for a project. @@ -3198,6 +3237,7 @@ def list_plans( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("GET /v1beta/plans is deprecated.", DeprecationWarning) _param = self._list_plans_serialize( _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index @@ -3230,7 +3270,7 @@ def list_plans_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[ListPlansResponse]: - """List available service plans. + """(Deprecated) List available service plans. Lists the configured service plans for a project. @@ -3255,6 +3295,7 @@ def list_plans_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("GET /v1beta/plans is deprecated.", DeprecationWarning) _param = self._list_plans_serialize( _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index @@ -3287,7 +3328,7 @@ def list_plans_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """List available service plans. + """(Deprecated) List available service plans. Lists the configured service plans for a project. @@ -3312,6 +3353,7 @@ def list_plans_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("GET /v1beta/plans is deprecated.", DeprecationWarning) _param = self._list_plans_serialize( _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index @@ -3390,7 +3432,7 @@ def update_credentials( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> UpdateCredentialsResponse: - """Update credentials for observability in a project. + """(Deprecated) Update credentials for observability in a project. Updates the stored Observability credentials. @@ -3421,6 +3463,9 @@ def update_credentials( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn( + "PUT /v1beta/projects/{projectId}/credentials/{credentialsRef} is deprecated.", DeprecationWarning + ) _param = self._update_credentials_serialize( project_id=project_id, @@ -3463,7 +3508,7 @@ def update_credentials_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[UpdateCredentialsResponse]: - """Update credentials for observability in a project. + """(Deprecated) Update credentials for observability in a project. Updates the stored Observability credentials. @@ -3494,6 +3539,9 @@ def update_credentials_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn( + "PUT /v1beta/projects/{projectId}/credentials/{credentialsRef} is deprecated.", DeprecationWarning + ) _param = self._update_credentials_serialize( project_id=project_id, @@ -3536,7 +3584,7 @@ def update_credentials_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """Update credentials for observability in a project. + """(Deprecated) Update credentials for observability in a project. Updates the stored Observability credentials. @@ -3567,6 +3615,9 @@ def update_credentials_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn( + "PUT /v1beta/projects/{projectId}/credentials/{credentialsRef} is deprecated.", DeprecationWarning + ) _param = self._update_credentials_serialize( project_id=project_id, @@ -3669,7 +3720,7 @@ def update_load_balancer( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> LoadBalancer: - """Update a load balancer in a project. + """(Deprecated) Update a load balancer in a project. Updates an existing Application Load Balancer by modifying its listeners and target pools. Ensure the resource version is current to maintain concurrency safety. The default load balancing algorithm is Maglev, and selecting a different algorithm is currently not supported. @@ -3700,6 +3751,7 @@ def update_load_balancer( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("PUT /v1beta/projects/{projectId}/load-balancers/{name} is deprecated.", DeprecationWarning) _param = self._update_load_balancer_serialize( project_id=project_id, @@ -3742,7 +3794,7 @@ def update_load_balancer_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[LoadBalancer]: - """Update a load balancer in a project. + """(Deprecated) Update a load balancer in a project. Updates an existing Application Load Balancer by modifying its listeners and target pools. Ensure the resource version is current to maintain concurrency safety. The default load balancing algorithm is Maglev, and selecting a different algorithm is currently not supported. @@ -3773,6 +3825,7 @@ def update_load_balancer_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("PUT /v1beta/projects/{projectId}/load-balancers/{name} is deprecated.", DeprecationWarning) _param = self._update_load_balancer_serialize( project_id=project_id, @@ -3815,7 +3868,7 @@ def update_load_balancer_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """Update a load balancer in a project. + """(Deprecated) Update a load balancer in a project. Updates an existing Application Load Balancer by modifying its listeners and target pools. Ensure the resource version is current to maintain concurrency safety. The default load balancing algorithm is Maglev, and selecting a different algorithm is currently not supported. @@ -3846,6 +3899,7 @@ def update_load_balancer_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn("PUT /v1beta/projects/{projectId}/load-balancers/{name} is deprecated.", DeprecationWarning) _param = self._update_load_balancer_serialize( project_id=project_id, @@ -3949,7 +4003,7 @@ def update_target_pool( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> TargetPool: - """Update a single target pool of a load balancer in a project. + """(Deprecated) Update a single target pool of a load balancer in a project. Replaces the content of a specific target pool in the Application Load Balancer (useful for adding or removing target servers). Only updates the specified target pool, leaving others unchanged. Cannot be used to create or rename target pools. @@ -3982,6 +4036,10 @@ def update_target_pool( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn( + "PUT /v1beta/projects/{projectId}/load-balancers/{name}/target-pools/{targetPoolName} is deprecated.", + DeprecationWarning, + ) _param = self._update_target_pool_serialize( project_id=project_id, @@ -4025,7 +4083,7 @@ def update_target_pool_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[TargetPool]: - """Update a single target pool of a load balancer in a project. + """(Deprecated) Update a single target pool of a load balancer in a project. Replaces the content of a specific target pool in the Application Load Balancer (useful for adding or removing target servers). Only updates the specified target pool, leaving others unchanged. Cannot be used to create or rename target pools. @@ -4058,6 +4116,10 @@ def update_target_pool_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn( + "PUT /v1beta/projects/{projectId}/load-balancers/{name}/target-pools/{targetPoolName} is deprecated.", + DeprecationWarning, + ) _param = self._update_target_pool_serialize( project_id=project_id, @@ -4101,7 +4163,7 @@ def update_target_pool_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """Update a single target pool of a load balancer in a project. + """(Deprecated) Update a single target pool of a load balancer in a project. Replaces the content of a specific target pool in the Application Load Balancer (useful for adding or removing target servers). Only updates the specified target pool, leaving others unchanged. Cannot be used to create or rename target pools. @@ -4134,6 +4196,10 @@ def update_target_pool_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 docstring might be too long + warnings.warn( + "PUT /v1beta/projects/{projectId}/load-balancers/{name}/target-pools/{targetPoolName} is deprecated.", + DeprecationWarning, + ) _param = self._update_target_pool_serialize( project_id=project_id, diff --git a/services/lbapplication/src/stackit/lbapplication/api_client.py b/services/lbapplication/src/stackit/lbapplication/api_client.py index 9f2de1fc0..3ee16baac 100644 --- a/services/lbapplication/src/stackit/lbapplication/api_client.py +++ b/services/lbapplication/src/stackit/lbapplication/api_client.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/configuration.py b/services/lbapplication/src/stackit/lbapplication/configuration.py index c9499db02..9cfd672d3 100644 --- a/services/lbapplication/src/stackit/lbapplication/configuration.py +++ b/services/lbapplication/src/stackit/lbapplication/configuration.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/exceptions.py b/services/lbapplication/src/stackit/lbapplication/exceptions.py index 92f7acf28..ab9b0c9e2 100644 --- a/services/lbapplication/src/stackit/lbapplication/exceptions.py +++ b/services/lbapplication/src/stackit/lbapplication/exceptions.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/__init__.py b/services/lbapplication/src/stackit/lbapplication/models/__init__.py index 4df2fda5a..4c2ebd577 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/__init__.py +++ b/services/lbapplication/src/stackit/lbapplication/models/__init__.py @@ -4,7 +4,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/active_health_check.py b/services/lbapplication/src/stackit/lbapplication/models/active_health_check.py index 6b0931b4a..e4509c3e7 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/active_health_check.py +++ b/services/lbapplication/src/stackit/lbapplication/models/active_health_check.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/certificate_config.py b/services/lbapplication/src/stackit/lbapplication/models/certificate_config.py index b110f881c..d5ea6fd61 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/certificate_config.py +++ b/services/lbapplication/src/stackit/lbapplication/models/certificate_config.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/cookie_persistence.py b/services/lbapplication/src/stackit/lbapplication/models/cookie_persistence.py index c25c41bf2..525ffb2dc 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/cookie_persistence.py +++ b/services/lbapplication/src/stackit/lbapplication/models/cookie_persistence.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/create_credentials_payload.py b/services/lbapplication/src/stackit/lbapplication/models/create_credentials_payload.py index fa4fbc77c..340d7a8cc 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/create_credentials_payload.py +++ b/services/lbapplication/src/stackit/lbapplication/models/create_credentials_payload.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/create_credentials_response.py b/services/lbapplication/src/stackit/lbapplication/models/create_credentials_response.py index 7c2162ba6..c8be899ee 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/create_credentials_response.py +++ b/services/lbapplication/src/stackit/lbapplication/models/create_credentials_response.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/create_load_balancer_payload.py b/services/lbapplication/src/stackit/lbapplication/models/create_load_balancer_payload.py index 06b5e79f4..4db8b1293 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/create_load_balancer_payload.py +++ b/services/lbapplication/src/stackit/lbapplication/models/create_load_balancer_payload.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/credentials_response.py b/services/lbapplication/src/stackit/lbapplication/models/credentials_response.py index caa1c0a42..2cc2b981e 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/credentials_response.py +++ b/services/lbapplication/src/stackit/lbapplication/models/credentials_response.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/get_credentials_response.py b/services/lbapplication/src/stackit/lbapplication/models/get_credentials_response.py index 5ac95a117..0d08ce69b 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/get_credentials_response.py +++ b/services/lbapplication/src/stackit/lbapplication/models/get_credentials_response.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/get_quota_response.py b/services/lbapplication/src/stackit/lbapplication/models/get_quota_response.py index 091e3f9c6..81c7cd62f 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/get_quota_response.py +++ b/services/lbapplication/src/stackit/lbapplication/models/get_quota_response.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/get_service_status_response.py b/services/lbapplication/src/stackit/lbapplication/models/get_service_status_response.py index 263ea1bec..d76c9d7b5 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/get_service_status_response.py +++ b/services/lbapplication/src/stackit/lbapplication/models/get_service_status_response.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/google_protobuf_any.py b/services/lbapplication/src/stackit/lbapplication/models/google_protobuf_any.py index d79e20a8b..8217b93eb 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/google_protobuf_any.py +++ b/services/lbapplication/src/stackit/lbapplication/models/google_protobuf_any.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/header.py b/services/lbapplication/src/stackit/lbapplication/models/header.py index 66c963d74..ee7d44331 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/header.py +++ b/services/lbapplication/src/stackit/lbapplication/models/header.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/http_config.py b/services/lbapplication/src/stackit/lbapplication/models/http_config.py index 8640a72fd..7fb6c93bf 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/http_config.py +++ b/services/lbapplication/src/stackit/lbapplication/models/http_config.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/http_health_checks.py b/services/lbapplication/src/stackit/lbapplication/models/http_health_checks.py index 70b8b5b62..0cba04be6 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/http_health_checks.py +++ b/services/lbapplication/src/stackit/lbapplication/models/http_health_checks.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/list_credentials_response.py b/services/lbapplication/src/stackit/lbapplication/models/list_credentials_response.py index 744b1c355..6f5e0ea56 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/list_credentials_response.py +++ b/services/lbapplication/src/stackit/lbapplication/models/list_credentials_response.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/list_load_balancers_response.py b/services/lbapplication/src/stackit/lbapplication/models/list_load_balancers_response.py index 0bfd7d59d..e23a3df97 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/list_load_balancers_response.py +++ b/services/lbapplication/src/stackit/lbapplication/models/list_load_balancers_response.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/list_plans_response.py b/services/lbapplication/src/stackit/lbapplication/models/list_plans_response.py index 2ba7f9076..04043adf0 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/list_plans_response.py +++ b/services/lbapplication/src/stackit/lbapplication/models/list_plans_response.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/listener.py b/services/lbapplication/src/stackit/lbapplication/models/listener.py index 71595b9d6..36f7b9dbc 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/listener.py +++ b/services/lbapplication/src/stackit/lbapplication/models/listener.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/load_balancer.py b/services/lbapplication/src/stackit/lbapplication/models/load_balancer.py index 117f5b8bc..2325fb1cd 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/load_balancer.py +++ b/services/lbapplication/src/stackit/lbapplication/models/load_balancer.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/load_balancer_error.py b/services/lbapplication/src/stackit/lbapplication/models/load_balancer_error.py index 9f48abbce..8f86ce4fb 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/load_balancer_error.py +++ b/services/lbapplication/src/stackit/lbapplication/models/load_balancer_error.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/load_balancer_options.py b/services/lbapplication/src/stackit/lbapplication/models/load_balancer_options.py index 718cc8804..9c1a2a697 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/load_balancer_options.py +++ b/services/lbapplication/src/stackit/lbapplication/models/load_balancer_options.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/loadbalancer_option_access_control.py b/services/lbapplication/src/stackit/lbapplication/models/loadbalancer_option_access_control.py index 45c12ac48..24871f991 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/loadbalancer_option_access_control.py +++ b/services/lbapplication/src/stackit/lbapplication/models/loadbalancer_option_access_control.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/loadbalancer_option_logs.py b/services/lbapplication/src/stackit/lbapplication/models/loadbalancer_option_logs.py index d598037a3..793264009 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/loadbalancer_option_logs.py +++ b/services/lbapplication/src/stackit/lbapplication/models/loadbalancer_option_logs.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/loadbalancer_option_metrics.py b/services/lbapplication/src/stackit/lbapplication/models/loadbalancer_option_metrics.py index 11d738b74..0a1b5cb1a 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/loadbalancer_option_metrics.py +++ b/services/lbapplication/src/stackit/lbapplication/models/loadbalancer_option_metrics.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/loadbalancer_option_observability.py b/services/lbapplication/src/stackit/lbapplication/models/loadbalancer_option_observability.py index c7f5c10ec..41a19f8da 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/loadbalancer_option_observability.py +++ b/services/lbapplication/src/stackit/lbapplication/models/loadbalancer_option_observability.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/matcher.py b/services/lbapplication/src/stackit/lbapplication/models/matcher.py index 29c5425a9..ea6721b6f 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/matcher.py +++ b/services/lbapplication/src/stackit/lbapplication/models/matcher.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/network.py b/services/lbapplication/src/stackit/lbapplication/models/network.py index 75329dfd1..86b46ec98 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/network.py +++ b/services/lbapplication/src/stackit/lbapplication/models/network.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/plan_details.py b/services/lbapplication/src/stackit/lbapplication/models/plan_details.py index ab77d7e1b..9dac976ea 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/plan_details.py +++ b/services/lbapplication/src/stackit/lbapplication/models/plan_details.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/protocol_options_https.py b/services/lbapplication/src/stackit/lbapplication/models/protocol_options_https.py index ebe4ec362..1414cb3da 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/protocol_options_https.py +++ b/services/lbapplication/src/stackit/lbapplication/models/protocol_options_https.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/query_parameters.py b/services/lbapplication/src/stackit/lbapplication/models/query_parameters.py index c0f994636..c82a798fa 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/query_parameters.py +++ b/services/lbapplication/src/stackit/lbapplication/models/query_parameters.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/rule.py b/services/lbapplication/src/stackit/lbapplication/models/rule.py index a867c5ac3..190951e6c 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/rule.py +++ b/services/lbapplication/src/stackit/lbapplication/models/rule.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/status.py b/services/lbapplication/src/stackit/lbapplication/models/status.py index 467c78114..c6e51e87b 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/status.py +++ b/services/lbapplication/src/stackit/lbapplication/models/status.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/target.py b/services/lbapplication/src/stackit/lbapplication/models/target.py index d7666943d..5bad1a1d0 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/target.py +++ b/services/lbapplication/src/stackit/lbapplication/models/target.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/target_pool.py b/services/lbapplication/src/stackit/lbapplication/models/target_pool.py index f616706f8..c96fe2fcb 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/target_pool.py +++ b/services/lbapplication/src/stackit/lbapplication/models/target_pool.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/update_credentials_payload.py b/services/lbapplication/src/stackit/lbapplication/models/update_credentials_payload.py index 5319de391..8ee98b322 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/update_credentials_payload.py +++ b/services/lbapplication/src/stackit/lbapplication/models/update_credentials_payload.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/update_credentials_response.py b/services/lbapplication/src/stackit/lbapplication/models/update_credentials_response.py index 44f3abdc4..5b362e6dd 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/update_credentials_response.py +++ b/services/lbapplication/src/stackit/lbapplication/models/update_credentials_response.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/update_load_balancer_payload.py b/services/lbapplication/src/stackit/lbapplication/models/update_load_balancer_payload.py index 032b28d21..07babec3e 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/update_load_balancer_payload.py +++ b/services/lbapplication/src/stackit/lbapplication/models/update_load_balancer_payload.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/models/update_target_pool_payload.py b/services/lbapplication/src/stackit/lbapplication/models/update_target_pool_payload.py index a742b9176..a0dab5af8 100644 --- a/services/lbapplication/src/stackit/lbapplication/models/update_target_pool_payload.py +++ b/services/lbapplication/src/stackit/lbapplication/models/update_target_pool_payload.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/lbapplication/src/stackit/lbapplication/rest.py b/services/lbapplication/src/stackit/lbapplication/rest.py index 163c71529..14a6ccde3 100644 --- a/services/lbapplication/src/stackit/lbapplication/rest.py +++ b/services/lbapplication/src/stackit/lbapplication/rest.py @@ -3,7 +3,7 @@ """ Application Load Balancer API - This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. + ### DEPRECATED! Use v2beta2 instead. This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. The version of the OpenAPI document: 1beta.0.0 Generated by OpenAPI Generator (https://openapi-generator.tech)