Skip to content
Closed
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 @@
d4da229ba7a242ed561223c67f68683be824c126
876a48fb56473c7c844baa697906d461c0675f47
15 changes: 6 additions & 9 deletions services/redis/src/stackit/redis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,17 @@
# flake8: noqa

"""
STACKIT Redis API
STACKIT Redis API

The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
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)
The version of the OpenAPI document: 2.1.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Do not edit the class manually.
""" # noqa: E501


__version__ = "1.0.0"

# Define package exports
Expand Down Expand Up @@ -41,7 +42,6 @@
"InstanceLastOperation",
"InstanceParameters",
"InstanceSchema",
"ListBackupsResponse",
"ListCredentialsResponse",
"ListInstancesResponse",
"ListOfferingsResponse",
Expand Down Expand Up @@ -104,9 +104,6 @@
InstanceParameters as InstanceParameters,
)
from stackit.redis.models.instance_schema import InstanceSchema as InstanceSchema
from stackit.redis.models.list_backups_response import (
ListBackupsResponse as ListBackupsResponse,
)
from stackit.redis.models.list_credentials_response import (
ListCredentialsResponse as ListCredentialsResponse,
)
Expand Down
22 changes: 11 additions & 11 deletions services/redis/src/stackit/redis/api/default_api.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# coding: utf-8

"""
STACKIT Redis API
STACKIT Redis API

The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
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)
The version of the OpenAPI document: 2.1.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Do not edit the class manually.
""" # noqa: E501

from typing import Any, Dict, List, Optional, Tuple, Union
Expand All @@ -25,14 +25,14 @@

from stackit.redis.api_client import ApiClient, RequestSerialized
from stackit.redis.api_response import ApiResponse
from stackit.redis.models.backup import Backup
from stackit.redis.models.create_backup_response_item import CreateBackupResponseItem
from stackit.redis.models.create_credentials_payload import CreateCredentialsPayload
from stackit.redis.models.create_instance_payload import CreateInstancePayload
from stackit.redis.models.create_instance_response import CreateInstanceResponse
from stackit.redis.models.credentials_response import CredentialsResponse
from stackit.redis.models.get_metrics_response import GetMetricsResponse
from stackit.redis.models.instance import Instance
from stackit.redis.models.list_backups_response import ListBackupsResponse
from stackit.redis.models.list_credentials_response import ListCredentialsResponse
from stackit.redis.models.list_instances_response import ListInstancesResponse
from stackit.redis.models.list_offerings_response import ListOfferingsResponse
Expand Down Expand Up @@ -2550,7 +2550,7 @@ def list_backups(
_content_type: Optional[StrictStr] = None,
_headers: Optional[Dict[StrictStr, Any]] = None,
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
) -> ListBackupsResponse:
) -> List[Backup]:
"""get latest backup information for provided instanceId


Expand Down Expand Up @@ -2593,7 +2593,7 @@ def list_backups(
)

_response_types_map: Dict[str, Optional[str]] = {
"200": "ListBackupsResponse",
"200": "List[Backup]",
"400": "Error",
"401": "Error",
"404": "Error",
Expand All @@ -2620,7 +2620,7 @@ def list_backups_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[ListBackupsResponse]:
) -> ApiResponse[List[Backup]]:
"""get latest backup information for provided instanceId


Expand Down Expand Up @@ -2663,7 +2663,7 @@ def list_backups_with_http_info(
)

_response_types_map: Dict[str, Optional[str]] = {
"200": "ListBackupsResponse",
"200": "List[Backup]",
"400": "Error",
"401": "Error",
"404": "Error",
Expand Down Expand Up @@ -2733,7 +2733,7 @@ def list_backups_without_preload_content(
)

_response_types_map: Dict[str, Optional[str]] = {
"200": "ListBackupsResponse",
"200": "List[Backup]",
"400": "Error",
"401": "Error",
"404": "Error",
Expand Down
11 changes: 6 additions & 5 deletions services/redis/src/stackit/redis/api_client.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# coding: utf-8

"""
STACKIT Redis API
STACKIT Redis API

The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
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)
The version of the OpenAPI document: 2.1.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Do not edit the class manually.
""" # noqa: E501

import datetime
Expand Down Expand Up @@ -36,6 +36,7 @@
ApiException,
)


RequestSerialized = Tuple[str, str, Dict[str, str], Optional[str], List[str]]


Expand Down
1 change: 1 addition & 0 deletions services/redis/src/stackit/redis/api_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

from pydantic import BaseModel, Field, StrictBytes, StrictInt


T = TypeVar("T")


Expand Down
11 changes: 6 additions & 5 deletions services/redis/src/stackit/redis/configuration.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# coding: utf-8

"""
STACKIT Redis API
STACKIT Redis API

The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
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)
The version of the OpenAPI document: 2.1.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Do not edit the class manually.
""" # noqa: E501

import sys
Expand All @@ -18,6 +18,7 @@

import os


ServerVariablesT = Dict[str, str]


Expand Down
10 changes: 5 additions & 5 deletions services/redis/src/stackit/redis/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# coding: utf-8

"""
STACKIT Redis API
STACKIT Redis API

The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
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)
The version of the OpenAPI document: 2.1.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Do not edit the class manually.
""" # noqa: E501

from typing import Any, Optional
Expand Down
11 changes: 5 additions & 6 deletions services/redis/src/stackit/redis/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

# flake8: noqa
"""
STACKIT Redis API
STACKIT Redis API

The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
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)
The version of the OpenAPI document: 2.1.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Do not edit the class manually.
""" # noqa: E501

# import models into model package
Expand All @@ -27,7 +27,6 @@
from stackit.redis.models.instance_last_operation import InstanceLastOperation
from stackit.redis.models.instance_parameters import InstanceParameters
from stackit.redis.models.instance_schema import InstanceSchema
from stackit.redis.models.list_backups_response import ListBackupsResponse
from stackit.redis.models.list_credentials_response import ListCredentialsResponse
from stackit.redis.models.list_instances_response import ListInstancesResponse
from stackit.redis.models.list_offerings_response import ListOfferingsResponse
Expand Down
10 changes: 5 additions & 5 deletions services/redis/src/stackit/redis/models/backup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# coding: utf-8

"""
STACKIT Redis API
STACKIT Redis API

The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
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)
The version of the OpenAPI document: 2.1.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Do not edit the class manually.
""" # noqa: E501

from __future__ import annotations
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# coding: utf-8

"""
STACKIT Redis API
STACKIT Redis API

The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
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)
The version of the OpenAPI document: 2.1.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Do not edit the class manually.
""" # noqa: E501

from __future__ import annotations
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# coding: utf-8

"""
STACKIT Redis API
STACKIT Redis API

The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
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)
The version of the OpenAPI document: 2.1.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Do not edit the class manually.
""" # noqa: E501

from __future__ import annotations
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# coding: utf-8

"""
STACKIT Redis API
STACKIT Redis API

The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
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)
The version of the OpenAPI document: 2.1.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Do not edit the class manually.
""" # noqa: E501

from __future__ import annotations
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# coding: utf-8

"""
STACKIT Redis API
STACKIT Redis API

The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
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)
The version of the OpenAPI document: 2.1.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Do not edit the class manually.
""" # noqa: E501

from __future__ import annotations
Expand Down
10 changes: 5 additions & 5 deletions services/redis/src/stackit/redis/models/credentials.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# coding: utf-8

"""
STACKIT Redis API
STACKIT Redis API

The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
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)
The version of the OpenAPI document: 2.1.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Do not edit the class manually.
""" # noqa: E501

from __future__ import annotations
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# coding: utf-8

"""
STACKIT Redis API
STACKIT Redis API

The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
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)
The version of the OpenAPI document: 2.1.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Do not edit the class manually.
""" # noqa: E501

from __future__ import annotations
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# coding: utf-8

"""
STACKIT Redis API
STACKIT Redis API

The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
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)
The version of the OpenAPI document: 2.1.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Do not edit the class manually.
""" # noqa: E501

from __future__ import annotations
Expand Down
Loading
Loading