diff --git a/services/redis/oas_commit b/services/redis/oas_commit index 69bfa80b3..ec6f0b9d6 100644 --- a/services/redis/oas_commit +++ b/services/redis/oas_commit @@ -1 +1 @@ -864bdad12a54f612df8fcdb6e41dd2933e94c3af +b7d1b614138d667d378a5fd45e2a91539a7fb02e diff --git a/services/redis/src/stackit/redis/__init__.py b/services/redis/src/stackit/redis/__init__.py index 5695913a8..a8e5263af 100644 --- a/services/redis/src/stackit/redis/__init__.py +++ b/services/redis/src/stackit/redis/__init__.py @@ -3,9 +3,9 @@ # flake8: noqa """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/api/default_api.py b/services/redis/src/stackit/redis/api/default_api.py index bcdbc1cee..72d0fad43 100644 --- a/services/redis/src/stackit/redis/api/default_api.py +++ b/services/redis/src/stackit/redis/api/default_api.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -11,6 +11,7 @@ Do not edit the class manually. """ # noqa: E501 +import warnings from typing import Any, Dict, List, Optional, Tuple, Union from pydantic import ( @@ -78,8 +79,8 @@ def create_backup( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, - ) -> List[CreateBackupResponseItem]: - """create a backup + ) -> CreateBackupResponseItem: + """(Deprecated) create a backup :param project_id: Project id on which user has permissions (required) @@ -109,6 +110,10 @@ def create_backup( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "POST /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/backups is deprecated.", + DeprecationWarning, + ) _param = self._create_backup_serialize( project_id=project_id, @@ -121,7 +126,7 @@ def create_backup( ) _response_types_map: Dict[str, Optional[str]] = { - "201": "List[CreateBackupResponseItem]", + "200": "CreateBackupResponseItem", "400": "Error", "401": "Error", "404": "Error", @@ -149,8 +154,8 @@ def create_backup_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, - ) -> ApiResponse[List[CreateBackupResponseItem]]: - """create a backup + ) -> ApiResponse[CreateBackupResponseItem]: + """(Deprecated) create a backup :param project_id: Project id on which user has permissions (required) @@ -180,6 +185,10 @@ def create_backup_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "POST /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/backups is deprecated.", + DeprecationWarning, + ) _param = self._create_backup_serialize( project_id=project_id, @@ -192,7 +201,7 @@ def create_backup_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - "201": "List[CreateBackupResponseItem]", + "200": "CreateBackupResponseItem", "400": "Error", "401": "Error", "404": "Error", @@ -221,7 +230,7 @@ def create_backup_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """create a backup + """(Deprecated) create a backup :param project_id: Project id on which user has permissions (required) @@ -251,6 +260,10 @@ def create_backup_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "POST /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/backups is deprecated.", + DeprecationWarning, + ) _param = self._create_backup_serialize( project_id=project_id, @@ -263,7 +276,7 @@ def create_backup_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - "201": "List[CreateBackupResponseItem]", + "200": "CreateBackupResponseItem", "400": "Error", "401": "Error", "404": "Error", @@ -347,7 +360,7 @@ def create_credentials( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> CredentialsResponse: - """create new credentials + """(Deprecated) create new credentials Create new service credentials @@ -380,6 +393,10 @@ def create_credentials( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "POST /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/credentials is deprecated.", + DeprecationWarning, + ) _param = self._create_credentials_serialize( project_id=project_id, @@ -423,7 +440,7 @@ def create_credentials_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[CredentialsResponse]: - """create new credentials + """(Deprecated) create new credentials Create new service credentials @@ -456,6 +473,10 @@ def create_credentials_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "POST /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/credentials is deprecated.", + DeprecationWarning, + ) _param = self._create_credentials_serialize( project_id=project_id, @@ -499,7 +520,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 new credentials + """(Deprecated) create new credentials Create new service credentials @@ -532,6 +553,10 @@ def create_credentials_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "POST /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/credentials is deprecated.", + DeprecationWarning, + ) _param = self._create_credentials_serialize( project_id=project_id, @@ -637,7 +662,7 @@ def create_instance( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> CreateInstanceResponse: - """provision + """(Deprecated) provision Provision a service instance. @@ -668,6 +693,7 @@ def create_instance( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn("POST /v2/projects/{projectId}/regions/{regionId}/instances is deprecated.", DeprecationWarning) _param = self._create_instance_serialize( project_id=project_id, @@ -710,7 +736,7 @@ def create_instance_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[CreateInstanceResponse]: - """provision + """(Deprecated) provision Provision a service instance. @@ -741,6 +767,7 @@ def create_instance_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn("POST /v2/projects/{projectId}/regions/{regionId}/instances is deprecated.", DeprecationWarning) _param = self._create_instance_serialize( project_id=project_id, @@ -783,7 +810,7 @@ def create_instance_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """provision + """(Deprecated) provision Provision a service instance. @@ -814,6 +841,7 @@ def create_instance_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn("POST /v2/projects/{projectId}/regions/{regionId}/instances is deprecated.", DeprecationWarning) _param = self._create_instance_serialize( project_id=project_id, @@ -915,7 +943,7 @@ def delete_credentials( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> None: - """delete credentials by id + """(Deprecated) delete credentials by id Delete a service credentials. @@ -948,6 +976,10 @@ def delete_credentials( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "DELETE /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/credentials/{credentialsId} is deprecated.", + DeprecationWarning, + ) _param = self._delete_credentials_serialize( project_id=project_id, @@ -990,7 +1022,7 @@ def delete_credentials_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[None]: - """delete credentials by id + """(Deprecated) delete credentials by id Delete a service credentials. @@ -1023,6 +1055,10 @@ def delete_credentials_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "DELETE /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/credentials/{credentialsId} is deprecated.", + DeprecationWarning, + ) _param = self._delete_credentials_serialize( project_id=project_id, @@ -1065,7 +1101,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 credentials by id + """(Deprecated) delete credentials by id Delete a service credentials. @@ -1098,6 +1134,10 @@ def delete_credentials_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "DELETE /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/credentials/{credentialsId} is deprecated.", + DeprecationWarning, + ) _param = self._delete_credentials_serialize( project_id=project_id, @@ -1194,7 +1234,7 @@ def delete_instance( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> None: - """delete service instance + """(Deprecated) delete service instance Deprovision a service instance. @@ -1225,6 +1265,10 @@ def delete_instance( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "DELETE /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId} is deprecated.", + DeprecationWarning, + ) _param = self._delete_instance_serialize( project_id=project_id, @@ -1265,7 +1309,7 @@ def delete_instance_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[None]: - """delete service instance + """(Deprecated) delete service instance Deprovision a service instance. @@ -1296,6 +1340,10 @@ def delete_instance_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "DELETE /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId} is deprecated.", + DeprecationWarning, + ) _param = self._delete_instance_serialize( project_id=project_id, @@ -1336,7 +1384,7 @@ def delete_instance_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """delete service instance + """(Deprecated) delete service instance Deprovision a service instance. @@ -1367,6 +1415,10 @@ def delete_instance_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "DELETE /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId} is deprecated.", + DeprecationWarning, + ) _param = self._delete_instance_serialize( project_id=project_id, @@ -1460,7 +1512,7 @@ def download_backup( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> bytes: - """download backup + """(Deprecated) download backup :param project_id: Project id on which user has permissions (required) @@ -1492,6 +1544,10 @@ def download_backup( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/backups/{backupId}/download is deprecated.", + DeprecationWarning, + ) _param = self._download_backup_serialize( project_id=project_id, @@ -1535,7 +1591,7 @@ def download_backup_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[bytes]: - """download backup + """(Deprecated) download backup :param project_id: Project id on which user has permissions (required) @@ -1567,6 +1623,10 @@ def download_backup_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/backups/{backupId}/download is deprecated.", + DeprecationWarning, + ) _param = self._download_backup_serialize( project_id=project_id, @@ -1610,7 +1670,7 @@ def download_backup_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """download backup + """(Deprecated) download backup :param project_id: Project id on which user has permissions (required) @@ -1642,6 +1702,10 @@ def download_backup_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/backups/{backupId}/download is deprecated.", + DeprecationWarning, + ) _param = self._download_backup_serialize( project_id=project_id, @@ -1742,7 +1806,7 @@ def get_credentials( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> CredentialsResponse: - """get credentials by id + """(Deprecated) get credentials by id get a service credentials by credentials id @@ -1775,6 +1839,10 @@ def get_credentials( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/credentials/{credentialsId} is deprecated.", + DeprecationWarning, + ) _param = self._get_credentials_serialize( project_id=project_id, @@ -1817,7 +1885,7 @@ def get_credentials_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[CredentialsResponse]: - """get credentials by id + """(Deprecated) get credentials by id get a service credentials by credentials id @@ -1850,6 +1918,10 @@ def get_credentials_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/credentials/{credentialsId} is deprecated.", + DeprecationWarning, + ) _param = self._get_credentials_serialize( project_id=project_id, @@ -1892,7 +1964,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 credentials by id + """(Deprecated) get credentials by id get a service credentials by credentials id @@ -1925,6 +1997,10 @@ def get_credentials_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/credentials/{credentialsId} is deprecated.", + DeprecationWarning, + ) _param = self._get_credentials_serialize( project_id=project_id, @@ -2021,7 +2097,7 @@ def get_instance( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> Instance: - """get a service instance + """(Deprecated) get a service instance get a service instance @@ -2052,6 +2128,9 @@ def get_instance( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId} is deprecated.", DeprecationWarning + ) _param = self._get_instance_serialize( project_id=project_id, @@ -2093,7 +2172,7 @@ def get_instance_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[Instance]: - """get a service instance + """(Deprecated) get a service instance get a service instance @@ -2124,6 +2203,9 @@ def get_instance_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId} is deprecated.", DeprecationWarning + ) _param = self._get_instance_serialize( project_id=project_id, @@ -2165,7 +2247,7 @@ def get_instance_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """get a service instance + """(Deprecated) get a service instance get a service instance @@ -2196,6 +2278,9 @@ def get_instance_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId} is deprecated.", DeprecationWarning + ) _param = self._get_instance_serialize( project_id=project_id, @@ -2289,7 +2374,7 @@ def get_metrics( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> GetMetricsResponse: - """get latest metrics for cpu load, memory and disk usage + """(Deprecated) get latest metrics for cpu load, memory and disk usage :param project_id: Project id on which user has permissions (required) @@ -2319,6 +2404,10 @@ def get_metrics( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/metrics is deprecated.", + DeprecationWarning, + ) _param = self._get_metrics_serialize( project_id=project_id, @@ -2359,7 +2448,7 @@ def get_metrics_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[GetMetricsResponse]: - """get latest metrics for cpu load, memory and disk usage + """(Deprecated) get latest metrics for cpu load, memory and disk usage :param project_id: Project id on which user has permissions (required) @@ -2389,6 +2478,10 @@ def get_metrics_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/metrics is deprecated.", + DeprecationWarning, + ) _param = self._get_metrics_serialize( project_id=project_id, @@ -2429,7 +2522,7 @@ def get_metrics_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """get latest metrics for cpu load, memory and disk usage + """(Deprecated) get latest metrics for cpu load, memory and disk usage :param project_id: Project id on which user has permissions (required) @@ -2459,6 +2552,10 @@ def get_metrics_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/metrics is deprecated.", + DeprecationWarning, + ) _param = self._get_metrics_serialize( project_id=project_id, @@ -2551,7 +2648,7 @@ def list_backups( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> List[Backup]: - """get latest backup information for provided instanceId + """(Deprecated) get latest backup information for provided instanceId :param project_id: Project id on which user has permissions (required) @@ -2581,6 +2678,10 @@ def list_backups( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/backups is deprecated.", + DeprecationWarning, + ) _param = self._list_backups_serialize( project_id=project_id, @@ -2621,7 +2722,7 @@ def list_backups_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[List[Backup]]: - """get latest backup information for provided instanceId + """(Deprecated) get latest backup information for provided instanceId :param project_id: Project id on which user has permissions (required) @@ -2651,6 +2752,10 @@ def list_backups_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/backups is deprecated.", + DeprecationWarning, + ) _param = self._list_backups_serialize( project_id=project_id, @@ -2691,7 +2796,7 @@ def list_backups_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """get latest backup information for provided instanceId + """(Deprecated) get latest backup information for provided instanceId :param project_id: Project id on which user has permissions (required) @@ -2721,6 +2826,10 @@ def list_backups_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/backups is deprecated.", + DeprecationWarning, + ) _param = self._list_backups_serialize( project_id=project_id, @@ -2813,7 +2922,7 @@ def list_credentials( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ListCredentialsResponse: - """get list of credentials ids + """(Deprecated) get list of credentials ids get list all credentials ids for instance @@ -2844,6 +2953,10 @@ def list_credentials( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/credentials is deprecated.", + DeprecationWarning, + ) _param = self._list_credentials_serialize( project_id=project_id, @@ -2884,7 +2997,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]: - """get list of credentials ids + """(Deprecated) get list of credentials ids get list all credentials ids for instance @@ -2915,6 +3028,10 @@ def list_credentials_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/credentials is deprecated.", + DeprecationWarning, + ) _param = self._list_credentials_serialize( project_id=project_id, @@ -2955,7 +3072,7 @@ def list_credentials_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """get list of credentials ids + """(Deprecated) get list of credentials ids get list all credentials ids for instance @@ -2986,6 +3103,10 @@ def list_credentials_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/credentials is deprecated.", + DeprecationWarning, + ) _param = self._list_credentials_serialize( project_id=project_id, @@ -3077,7 +3198,7 @@ def list_instances( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ListInstancesResponse: - """get service instances list + """(Deprecated) get service instances list Get a list of available instances @@ -3106,6 +3227,7 @@ def list_instances( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn("GET /v2/projects/{projectId}/regions/{regionId}/instances is deprecated.", DeprecationWarning) _param = self._list_instances_serialize( project_id=project_id, @@ -3144,7 +3266,7 @@ def list_instances_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[ListInstancesResponse]: - """get service instances list + """(Deprecated) get service instances list Get a list of available instances @@ -3173,6 +3295,7 @@ def list_instances_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn("GET /v2/projects/{projectId}/regions/{regionId}/instances is deprecated.", DeprecationWarning) _param = self._list_instances_serialize( project_id=project_id, @@ -3211,7 +3334,7 @@ def list_instances_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """get service instances list + """(Deprecated) get service instances list Get a list of available instances @@ -3240,6 +3363,7 @@ def list_instances_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn("GET /v2/projects/{projectId}/regions/{regionId}/instances is deprecated.", DeprecationWarning) _param = self._list_instances_serialize( project_id=project_id, @@ -3327,7 +3451,7 @@ def list_offerings( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ListOfferingsResponse: - """get the service offerings + """(Deprecated) get the service offerings Get the service offerings that the service broker offers. @@ -3356,6 +3480,7 @@ def list_offerings( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn("GET /v2/projects/{projectId}/regions/{regionId}/offerings is deprecated.", DeprecationWarning) _param = self._list_offerings_serialize( project_id=project_id, @@ -3394,7 +3519,7 @@ def list_offerings_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[ListOfferingsResponse]: - """get the service offerings + """(Deprecated) get the service offerings Get the service offerings that the service broker offers. @@ -3423,6 +3548,7 @@ def list_offerings_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn("GET /v2/projects/{projectId}/regions/{regionId}/offerings is deprecated.", DeprecationWarning) _param = self._list_offerings_serialize( project_id=project_id, @@ -3461,7 +3587,7 @@ def list_offerings_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """get the service offerings + """(Deprecated) get the service offerings Get the service offerings that the service broker offers. @@ -3490,6 +3616,7 @@ def list_offerings_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn("GET /v2/projects/{projectId}/regions/{regionId}/offerings is deprecated.", DeprecationWarning) _param = self._list_offerings_serialize( project_id=project_id, @@ -3578,7 +3705,7 @@ def list_restores( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ListRestoresResponse: - """get latest restore information for provided instanceId + """(Deprecated) get latest restore information for provided instanceId :param project_id: Project id on which user has permissions (required) @@ -3608,6 +3735,10 @@ def list_restores( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/restores is deprecated.", + DeprecationWarning, + ) _param = self._list_restores_serialize( project_id=project_id, @@ -3648,7 +3779,7 @@ def list_restores_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[ListRestoresResponse]: - """get latest restore information for provided instanceId + """(Deprecated) get latest restore information for provided instanceId :param project_id: Project id on which user has permissions (required) @@ -3678,6 +3809,10 @@ def list_restores_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/restores is deprecated.", + DeprecationWarning, + ) _param = self._list_restores_serialize( project_id=project_id, @@ -3718,7 +3853,7 @@ def list_restores_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """get latest restore information for provided instanceId + """(Deprecated) get latest restore information for provided instanceId :param project_id: Project id on which user has permissions (required) @@ -3748,6 +3883,10 @@ def list_restores_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "GET /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/restores is deprecated.", + DeprecationWarning, + ) _param = self._list_restores_serialize( project_id=project_id, @@ -3846,7 +3985,7 @@ def partial_update_instance( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> None: - """update a service instance + """(Deprecated) update a service instance Update a service instance. This could be a sgw acl update or a plan upgrade. @@ -3879,6 +4018,10 @@ def partial_update_instance( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "PATCH /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId} is deprecated.", + DeprecationWarning, + ) _param = self._partial_update_instance_serialize( project_id=project_id, @@ -3926,7 +4069,7 @@ def partial_update_instance_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[None]: - """update a service instance + """(Deprecated) update a service instance Update a service instance. This could be a sgw acl update or a plan upgrade. @@ -3959,6 +4102,10 @@ def partial_update_instance_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "PATCH /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId} is deprecated.", + DeprecationWarning, + ) _param = self._partial_update_instance_serialize( project_id=project_id, @@ -4006,7 +4153,7 @@ def partial_update_instance_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """update a service instance + """(Deprecated) update a service instance Update a service instance. This could be a sgw acl update or a plan upgrade. @@ -4039,6 +4186,10 @@ def partial_update_instance_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "PATCH /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId} is deprecated.", + DeprecationWarning, + ) _param = self._partial_update_instance_serialize( project_id=project_id, @@ -4143,7 +4294,7 @@ def trigger_recreate( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> CreateInstanceResponse: - """trigger a recreate + """(Deprecated) trigger a recreate :param project_id: Project id on which user has permissions (required) @@ -4173,6 +4324,10 @@ def trigger_recreate( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "PATCH /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/recreate is deprecated.", + DeprecationWarning, + ) _param = self._trigger_recreate_serialize( project_id=project_id, @@ -4214,7 +4369,7 @@ def trigger_recreate_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[CreateInstanceResponse]: - """trigger a recreate + """(Deprecated) trigger a recreate :param project_id: Project id on which user has permissions (required) @@ -4244,6 +4399,10 @@ def trigger_recreate_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "PATCH /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/recreate is deprecated.", + DeprecationWarning, + ) _param = self._trigger_recreate_serialize( project_id=project_id, @@ -4285,7 +4444,7 @@ def trigger_recreate_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """trigger a recreate + """(Deprecated) trigger a recreate :param project_id: Project id on which user has permissions (required) @@ -4315,6 +4474,10 @@ def trigger_recreate_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "PATCH /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/recreate is deprecated.", + DeprecationWarning, + ) _param = self._trigger_recreate_serialize( project_id=project_id, @@ -4408,7 +4571,7 @@ def trigger_restart( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> CreateInstanceResponse: - """trigger a restart + """(Deprecated) trigger a restart :param project_id: Project id on which user has permissions (required) @@ -4438,6 +4601,10 @@ def trigger_restart( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "PATCH /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/restart is deprecated.", + DeprecationWarning, + ) _param = self._trigger_restart_serialize( project_id=project_id, @@ -4479,7 +4646,7 @@ def trigger_restart_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[CreateInstanceResponse]: - """trigger a restart + """(Deprecated) trigger a restart :param project_id: Project id on which user has permissions (required) @@ -4509,6 +4676,10 @@ def trigger_restart_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "PATCH /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/restart is deprecated.", + DeprecationWarning, + ) _param = self._trigger_restart_serialize( project_id=project_id, @@ -4550,7 +4721,7 @@ def trigger_restart_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """trigger a restart + """(Deprecated) trigger a restart :param project_id: Project id on which user has permissions (required) @@ -4580,6 +4751,10 @@ def trigger_restart_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "PATCH /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/restart is deprecated.", + DeprecationWarning, + ) _param = self._trigger_restart_serialize( project_id=project_id, @@ -4674,7 +4849,7 @@ def trigger_restore( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> TriggerRestoreResponse: - """trigger a restore + """(Deprecated) trigger a restore :param project_id: Project id on which user has permissions (required) @@ -4706,6 +4881,10 @@ def trigger_restore( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "POST /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/backups/{backupId}/restore is deprecated.", + DeprecationWarning, + ) _param = self._trigger_restore_serialize( project_id=project_id, @@ -4749,7 +4928,7 @@ def trigger_restore_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[TriggerRestoreResponse]: - """trigger a restore + """(Deprecated) trigger a restore :param project_id: Project id on which user has permissions (required) @@ -4781,6 +4960,10 @@ def trigger_restore_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "POST /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/backups/{backupId}/restore is deprecated.", + DeprecationWarning, + ) _param = self._trigger_restore_serialize( project_id=project_id, @@ -4824,7 +5007,7 @@ def trigger_restore_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """trigger a restore + """(Deprecated) trigger a restore :param project_id: Project id on which user has permissions (required) @@ -4856,6 +5039,10 @@ def trigger_restore_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "POST /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/backups/{backupId}/restore is deprecated.", + DeprecationWarning, + ) _param = self._trigger_restore_serialize( project_id=project_id, @@ -4956,7 +5143,7 @@ def update_backups_config( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> UpdateBackupsConfigResponse: - """backups configuration update + """(Deprecated) backups configuration update Update the configuration for backups for your instance. @@ -4989,6 +5176,10 @@ def update_backups_config( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "PATCH /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/backups-config is deprecated.", + DeprecationWarning, + ) _param = self._update_backups_config_serialize( project_id=project_id, @@ -5034,7 +5225,7 @@ def update_backups_config_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[UpdateBackupsConfigResponse]: - """backups configuration update + """(Deprecated) backups configuration update Update the configuration for backups for your instance. @@ -5067,6 +5258,10 @@ def update_backups_config_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "PATCH /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/backups-config is deprecated.", + DeprecationWarning, + ) _param = self._update_backups_config_serialize( project_id=project_id, @@ -5112,7 +5307,7 @@ def update_backups_config_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """backups configuration update + """(Deprecated) backups configuration update Update the configuration for backups for your instance. @@ -5145,6 +5340,10 @@ def update_backups_config_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn( + "PATCH /v2/projects/{projectId}/regions/{regionId}/instances/{instanceId}/backups-config is deprecated.", + DeprecationWarning, + ) _param = self._update_backups_config_serialize( project_id=project_id, diff --git a/services/redis/src/stackit/redis/api_client.py b/services/redis/src/stackit/redis/api_client.py index 1c5d5f5a4..a379aaf0f 100644 --- a/services/redis/src/stackit/redis/api_client.py +++ b/services/redis/src/stackit/redis/api_client.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/configuration.py b/services/redis/src/stackit/redis/configuration.py index e0f38f9c0..b80206aff 100644 --- a/services/redis/src/stackit/redis/configuration.py +++ b/services/redis/src/stackit/redis/configuration.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/exceptions.py b/services/redis/src/stackit/redis/exceptions.py index b5c5cf3da..d27c75628 100644 --- a/services/redis/src/stackit/redis/exceptions.py +++ b/services/redis/src/stackit/redis/exceptions.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/__init__.py b/services/redis/src/stackit/redis/models/__init__.py index 1b48b5c8c..1dcd1961c 100644 --- a/services/redis/src/stackit/redis/models/__init__.py +++ b/services/redis/src/stackit/redis/models/__init__.py @@ -2,9 +2,9 @@ # flake8: noqa """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/backup.py b/services/redis/src/stackit/redis/models/backup.py index 7cced5ab2..fd7ad4c8b 100644 --- a/services/redis/src/stackit/redis/models/backup.py +++ b/services/redis/src/stackit/redis/models/backup.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/create_backup_response_item.py b/services/redis/src/stackit/redis/models/create_backup_response_item.py index c3b76be9c..e0b585f68 100644 --- a/services/redis/src/stackit/redis/models/create_backup_response_item.py +++ b/services/redis/src/stackit/redis/models/create_backup_response_item.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/create_credentials_payload.py b/services/redis/src/stackit/redis/models/create_credentials_payload.py index 65343beda..7097491ca 100644 --- a/services/redis/src/stackit/redis/models/create_credentials_payload.py +++ b/services/redis/src/stackit/redis/models/create_credentials_payload.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/create_instance_payload.py b/services/redis/src/stackit/redis/models/create_instance_payload.py index 523cbf607..41e84805a 100644 --- a/services/redis/src/stackit/redis/models/create_instance_payload.py +++ b/services/redis/src/stackit/redis/models/create_instance_payload.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/create_instance_response.py b/services/redis/src/stackit/redis/models/create_instance_response.py index 5275e5800..2a4458370 100644 --- a/services/redis/src/stackit/redis/models/create_instance_response.py +++ b/services/redis/src/stackit/redis/models/create_instance_response.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/credentials.py b/services/redis/src/stackit/redis/models/credentials.py index 509197c47..9edd1b573 100644 --- a/services/redis/src/stackit/redis/models/credentials.py +++ b/services/redis/src/stackit/redis/models/credentials.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/credentials_list_item.py b/services/redis/src/stackit/redis/models/credentials_list_item.py index 33fc9da44..86d2554f1 100644 --- a/services/redis/src/stackit/redis/models/credentials_list_item.py +++ b/services/redis/src/stackit/redis/models/credentials_list_item.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/credentials_response.py b/services/redis/src/stackit/redis/models/credentials_response.py index 2b751477e..15029a512 100644 --- a/services/redis/src/stackit/redis/models/credentials_response.py +++ b/services/redis/src/stackit/redis/models/credentials_response.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/error.py b/services/redis/src/stackit/redis/models/error.py index db5c20729..1bb12a1e2 100644 --- a/services/redis/src/stackit/redis/models/error.py +++ b/services/redis/src/stackit/redis/models/error.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/get_metrics_response.py b/services/redis/src/stackit/redis/models/get_metrics_response.py index 2b4ef12a7..b33cd1d40 100644 --- a/services/redis/src/stackit/redis/models/get_metrics_response.py +++ b/services/redis/src/stackit/redis/models/get_metrics_response.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/instance.py b/services/redis/src/stackit/redis/models/instance.py index 46bcfaeac..643211126 100644 --- a/services/redis/src/stackit/redis/models/instance.py +++ b/services/redis/src/stackit/redis/models/instance.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/instance_last_operation.py b/services/redis/src/stackit/redis/models/instance_last_operation.py index 2da373a03..15e6446e6 100644 --- a/services/redis/src/stackit/redis/models/instance_last_operation.py +++ b/services/redis/src/stackit/redis/models/instance_last_operation.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/instance_parameters.py b/services/redis/src/stackit/redis/models/instance_parameters.py index 9d6710f2b..9bf95eb5d 100644 --- a/services/redis/src/stackit/redis/models/instance_parameters.py +++ b/services/redis/src/stackit/redis/models/instance_parameters.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/instance_schema.py b/services/redis/src/stackit/redis/models/instance_schema.py index 0542bbead..f96af62c7 100644 --- a/services/redis/src/stackit/redis/models/instance_schema.py +++ b/services/redis/src/stackit/redis/models/instance_schema.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/list_credentials_response.py b/services/redis/src/stackit/redis/models/list_credentials_response.py index 3b650c9cf..6c3766f53 100644 --- a/services/redis/src/stackit/redis/models/list_credentials_response.py +++ b/services/redis/src/stackit/redis/models/list_credentials_response.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/list_instances_response.py b/services/redis/src/stackit/redis/models/list_instances_response.py index 0073377bc..d117d9c5f 100644 --- a/services/redis/src/stackit/redis/models/list_instances_response.py +++ b/services/redis/src/stackit/redis/models/list_instances_response.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/list_offerings_response.py b/services/redis/src/stackit/redis/models/list_offerings_response.py index 5e7d85f8e..fe3e5b480 100644 --- a/services/redis/src/stackit/redis/models/list_offerings_response.py +++ b/services/redis/src/stackit/redis/models/list_offerings_response.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/list_restores_response.py b/services/redis/src/stackit/redis/models/list_restores_response.py index c3b8d144b..343d7db1c 100644 --- a/services/redis/src/stackit/redis/models/list_restores_response.py +++ b/services/redis/src/stackit/redis/models/list_restores_response.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/model_schema.py b/services/redis/src/stackit/redis/models/model_schema.py index 490518458..7cd406e5d 100644 --- a/services/redis/src/stackit/redis/models/model_schema.py +++ b/services/redis/src/stackit/redis/models/model_schema.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/offering.py b/services/redis/src/stackit/redis/models/offering.py index 3671599c8..00b1f8130 100644 --- a/services/redis/src/stackit/redis/models/offering.py +++ b/services/redis/src/stackit/redis/models/offering.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/partial_update_instance_payload.py b/services/redis/src/stackit/redis/models/partial_update_instance_payload.py index cbfa98548..87a9ef180 100644 --- a/services/redis/src/stackit/redis/models/partial_update_instance_payload.py +++ b/services/redis/src/stackit/redis/models/partial_update_instance_payload.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/plan.py b/services/redis/src/stackit/redis/models/plan.py index 794e7c7e5..b617f995c 100644 --- a/services/redis/src/stackit/redis/models/plan.py +++ b/services/redis/src/stackit/redis/models/plan.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/raw_credentials.py b/services/redis/src/stackit/redis/models/raw_credentials.py index 2ba7f28d8..4537aa347 100644 --- a/services/redis/src/stackit/redis/models/raw_credentials.py +++ b/services/redis/src/stackit/redis/models/raw_credentials.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/restore.py b/services/redis/src/stackit/redis/models/restore.py index db5674117..793eff7ca 100644 --- a/services/redis/src/stackit/redis/models/restore.py +++ b/services/redis/src/stackit/redis/models/restore.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/trigger_restore_response.py b/services/redis/src/stackit/redis/models/trigger_restore_response.py index 03c127a47..70e0c23b1 100644 --- a/services/redis/src/stackit/redis/models/trigger_restore_response.py +++ b/services/redis/src/stackit/redis/models/trigger_restore_response.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/update_backups_config_payload.py b/services/redis/src/stackit/redis/models/update_backups_config_payload.py index f63e963ed..4fce4b4bd 100644 --- a/services/redis/src/stackit/redis/models/update_backups_config_payload.py +++ b/services/redis/src/stackit/redis/models/update_backups_config_payload.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/models/update_backups_config_response.py b/services/redis/src/stackit/redis/models/update_backups_config_response.py index 22b571fa7..193cc304c 100644 --- a/services/redis/src/stackit/redis/models/update_backups_config_response.py +++ b/services/redis/src/stackit/redis/models/update_backups_config_response.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/redis/src/stackit/redis/rest.py b/services/redis/src/stackit/redis/rest.py index 72dbe6626..3b4f3dc6d 100644 --- a/services/redis/src/stackit/redis/rest.py +++ b/services/redis/src/stackit/redis/rest.py @@ -1,9 +1,9 @@ # coding: utf-8 """ -STACKIT Redis API +[DEPRECATED] STACKIT Redis API -The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. +⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. The version of the OpenAPI document: 2.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech)