Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion services/redis/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
864bdad12a54f612df8fcdb6e41dd2933e94c3af
dba2b6e065de87745d57269c1eaba07e3833f709
10 changes: 5 additions & 5 deletions services/redis/src/stackit/redis/api/default_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ 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]:
) -> CreateBackupResponseItem:
"""create a backup


Expand Down Expand Up @@ -121,7 +121,7 @@ def create_backup(
)

_response_types_map: Dict[str, Optional[str]] = {
"201": "List[CreateBackupResponseItem]",
"200": "CreateBackupResponseItem",
"400": "Error",
"401": "Error",
"404": "Error",
Expand Down Expand Up @@ -149,7 +149,7 @@ 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]]:
) -> ApiResponse[CreateBackupResponseItem]:
"""create a backup


Expand Down Expand Up @@ -192,7 +192,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",
Expand Down Expand Up @@ -263,7 +263,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",
Expand Down
Loading