diff --git a/services/kms/src/stackit/kms/api/default_api.py b/services/kms/src/stackit/kms/api/default_api.py index 997101452..05ff4f051 100644 --- a/services/kms/src/stackit/kms/api/default_api.py +++ b/services/kms/src/stackit/kms/api/default_api.py @@ -1307,6 +1307,7 @@ def delete_key( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -1383,6 +1384,7 @@ def delete_key_with_http_info( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -1459,6 +1461,7 @@ def delete_key_without_preload_content( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -1586,6 +1589,7 @@ def delete_key_ring( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -1658,6 +1662,7 @@ def delete_key_ring_with_http_info( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -1730,6 +1735,7 @@ def delete_key_ring_without_preload_content( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -1858,6 +1864,7 @@ def delete_wrapping_key( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -1934,6 +1941,7 @@ def delete_wrapping_key_with_http_info( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -2010,6 +2018,7 @@ def delete_wrapping_key_without_preload_content( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -2145,6 +2154,7 @@ def destroy_version( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -2225,6 +2235,7 @@ def destroy_version_with_http_info( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -2305,6 +2316,7 @@ def destroy_version_without_preload_content( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -2443,6 +2455,7 @@ def disable_version( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -2523,6 +2536,7 @@ def disable_version_with_http_info( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -2603,6 +2617,7 @@ def disable_version_without_preload_content( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -2741,6 +2756,7 @@ def enable_version( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -2821,6 +2837,7 @@ def enable_version_with_http_info( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -2901,6 +2918,7 @@ def enable_version_without_preload_content( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -4441,7 +4459,7 @@ def import_key( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, - ) -> Key: + ) -> Version: """Import key Imports a new version to the given key. @@ -4491,7 +4509,7 @@ def import_key( ) _response_types_map: Dict[str, Optional[str]] = { - "200": "Key", + "200": "Version", "400": "HttpError", "401": "HttpError", "404": "HttpError", @@ -4522,7 +4540,7 @@ def import_key_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[Key]: + ) -> ApiResponse[Version]: """Import key Imports a new version to the given key. @@ -4572,7 +4590,7 @@ def import_key_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - "200": "Key", + "200": "Version", "400": "HttpError", "401": "HttpError", "404": "HttpError", @@ -4653,7 +4671,7 @@ def import_key_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - "200": "Key", + "200": "Version", "400": "HttpError", "401": "HttpError", "404": "HttpError", @@ -5869,6 +5887,7 @@ def restore_key( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -5945,6 +5964,7 @@ def restore_key_with_http_info( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -6021,6 +6041,7 @@ def restore_key_without_preload_content( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -6156,6 +6177,7 @@ def restore_version( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -6236,6 +6258,7 @@ def restore_version_with_http_info( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -6316,6 +6339,7 @@ def restore_version_without_preload_content( "400": "HttpError", "401": "HttpError", "404": "HttpError", + "409": "HttpError", "500": "HttpError", } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -6399,7 +6423,7 @@ def rotate_key( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, - ) -> Key: + ) -> Version: """Rotate key Rotates the given key. @@ -6446,7 +6470,7 @@ def rotate_key( ) _response_types_map: Dict[str, Optional[str]] = { - "200": "Key", + "200": "Version", "400": "HttpError", "401": "HttpError", "403": "HttpError", @@ -6477,7 +6501,7 @@ def rotate_key_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[Key]: + ) -> ApiResponse[Version]: """Rotate key Rotates the given key. @@ -6524,7 +6548,7 @@ def rotate_key_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - "200": "Key", + "200": "Version", "400": "HttpError", "401": "HttpError", "403": "HttpError", @@ -6602,7 +6626,7 @@ def rotate_key_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - "200": "Key", + "200": "Version", "400": "HttpError", "401": "HttpError", "403": "HttpError",