Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions services/kms/src/stackit/kms/api/default_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -4441,7 +4441,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.
Expand Down Expand Up @@ -4491,7 +4491,7 @@ def import_key(
)

_response_types_map: Dict[str, Optional[str]] = {
"200": "Key",
"200": "Version",
"400": "HttpError",
"401": "HttpError",
"404": "HttpError",
Expand Down Expand Up @@ -4522,7 +4522,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.
Expand Down Expand Up @@ -4572,7 +4572,7 @@ def import_key_with_http_info(
)

_response_types_map: Dict[str, Optional[str]] = {
"200": "Key",
"200": "Version",
"400": "HttpError",
"401": "HttpError",
"404": "HttpError",
Expand Down Expand Up @@ -4653,7 +4653,7 @@ def import_key_without_preload_content(
)

_response_types_map: Dict[str, Optional[str]] = {
"200": "Key",
"200": "Version",
"400": "HttpError",
"401": "HttpError",
"404": "HttpError",
Expand Down Expand Up @@ -6399,7 +6399,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.
Expand Down Expand Up @@ -6446,7 +6446,7 @@ def rotate_key(
)

_response_types_map: Dict[str, Optional[str]] = {
"200": "Key",
"200": "Version",
"400": "HttpError",
"401": "HttpError",
"403": "HttpError",
Expand Down Expand Up @@ -6477,7 +6477,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.
Expand Down Expand Up @@ -6524,7 +6524,7 @@ def rotate_key_with_http_info(
)

_response_types_map: Dict[str, Optional[str]] = {
"200": "Key",
"200": "Version",
"400": "HttpError",
"401": "HttpError",
"403": "HttpError",
Expand Down Expand Up @@ -6602,7 +6602,7 @@ def rotate_key_without_preload_content(
)

_response_types_map: Dict[str, Optional[str]] = {
"200": "Key",
"200": "Version",
"400": "HttpError",
"401": "HttpError",
"403": "HttpError",
Expand Down
Loading