Skip to content

Commit ef489ca

Browse files
Generate kms
1 parent 0ee70c3 commit ef489ca

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

services/kms/src/stackit/kms/api/default_api.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4441,7 +4441,7 @@ def import_key(
44414441
_content_type: Optional[StrictStr] = None,
44424442
_headers: Optional[Dict[StrictStr, Any]] = None,
44434443
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
4444-
) -> Key:
4444+
) -> Version:
44454445
"""Import key
44464446
44474447
Imports a new version to the given key.
@@ -4491,7 +4491,7 @@ def import_key(
44914491
)
44924492

44934493
_response_types_map: Dict[str, Optional[str]] = {
4494-
"200": "Key",
4494+
"200": "Version",
44954495
"400": "HttpError",
44964496
"401": "HttpError",
44974497
"404": "HttpError",
@@ -4522,7 +4522,7 @@ def import_key_with_http_info(
45224522
_content_type: Optional[StrictStr] = None,
45234523
_headers: Optional[Dict[StrictStr, Any]] = None,
45244524
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
4525-
) -> ApiResponse[Key]:
4525+
) -> ApiResponse[Version]:
45264526
"""Import key
45274527
45284528
Imports a new version to the given key.
@@ -4572,7 +4572,7 @@ def import_key_with_http_info(
45724572
)
45734573

45744574
_response_types_map: Dict[str, Optional[str]] = {
4575-
"200": "Key",
4575+
"200": "Version",
45764576
"400": "HttpError",
45774577
"401": "HttpError",
45784578
"404": "HttpError",
@@ -4653,7 +4653,7 @@ def import_key_without_preload_content(
46534653
)
46544654

46554655
_response_types_map: Dict[str, Optional[str]] = {
4656-
"200": "Key",
4656+
"200": "Version",
46574657
"400": "HttpError",
46584658
"401": "HttpError",
46594659
"404": "HttpError",
@@ -6399,7 +6399,7 @@ def rotate_key(
63996399
_content_type: Optional[StrictStr] = None,
64006400
_headers: Optional[Dict[StrictStr, Any]] = None,
64016401
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
6402-
) -> Key:
6402+
) -> Version:
64036403
"""Rotate key
64046404
64056405
Rotates the given key.
@@ -6446,7 +6446,7 @@ def rotate_key(
64466446
)
64476447

64486448
_response_types_map: Dict[str, Optional[str]] = {
6449-
"200": "Key",
6449+
"200": "Version",
64506450
"400": "HttpError",
64516451
"401": "HttpError",
64526452
"403": "HttpError",
@@ -6477,7 +6477,7 @@ def rotate_key_with_http_info(
64776477
_content_type: Optional[StrictStr] = None,
64786478
_headers: Optional[Dict[StrictStr, Any]] = None,
64796479
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
6480-
) -> ApiResponse[Key]:
6480+
) -> ApiResponse[Version]:
64816481
"""Rotate key
64826482
64836483
Rotates the given key.
@@ -6524,7 +6524,7 @@ def rotate_key_with_http_info(
65246524
)
65256525

65266526
_response_types_map: Dict[str, Optional[str]] = {
6527-
"200": "Key",
6527+
"200": "Version",
65286528
"400": "HttpError",
65296529
"401": "HttpError",
65306530
"403": "HttpError",
@@ -6602,7 +6602,7 @@ def rotate_key_without_preload_content(
66026602
)
66036603

66046604
_response_types_map: Dict[str, Optional[str]] = {
6605-
"200": "Key",
6605+
"200": "Version",
66066606
"400": "HttpError",
66076607
"401": "HttpError",
66086608
"403": "HttpError",

0 commit comments

Comments
 (0)