Skip to content

Commit cf8ad9e

Browse files
Generate valkey
1 parent d14550d commit cf8ad9e

41 files changed

Lines changed: 10792 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

services/valkey/README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# stackit.valkey
2+
The STACKIT Key Value Store API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
3+
4+
For more information, please visit [https://docs.stackit.cloud/stackit/en/support-area-72063304.html](https://docs.stackit.cloud/stackit/en/support-area-72063304.html)
5+
6+
This package is part of the STACKIT Python SDK. For additional information, please visit the [GitHub repository](https://github.com/stackitcloud/stackit-sdk-python) of the SDK.
7+
8+
9+
## Installation & Usage
10+
### pip install
11+
12+
```sh
13+
pip install stackit-valkey
14+
```
15+
16+
Then import the package:
17+
```python
18+
import stackit.valkey
19+
```
20+
21+
## Getting Started
22+
23+
[Examples](https://github.com/stackitcloud/stackit-sdk-python/tree/main/examples) for the usage of the package can be found in the [GitHub repository](https://github.com/stackitcloud/stackit-sdk-python) of the SDK.

services/valkey/oas_commit

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
afb3e4b61d16e95edef03577a3b5966f364a940b

services/valkey/pyproject.toml

Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
[project]
2+
name = "stackit-valkey"
3+
version = "v0.0.1a"
4+
description = "STACKIT Key Value Store API"
5+
authors = [{name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud"}]
6+
requires-python = ">=3.10,<4.0"
7+
readme = "README.md"
8+
classifiers = [
9+
"Programming Language :: Python :: 3",
10+
"License :: OSI Approved :: Apache Software License",
11+
"Operating System :: OS Independent",
12+
"Programming Language :: Python :: 3.10",
13+
"Programming Language :: Python :: 3.11",
14+
"Programming Language :: Python :: 3.12",
15+
"Programming Language :: Python :: 3.13",
16+
"Programming Language :: Python :: 3.14",
17+
"Programming Language :: Python :: 3.15",
18+
]
19+
dependencies = [
20+
"stackit-core>=0.0.1a",
21+
"requests>=2.33.0",
22+
"pydantic>=2.9.2",
23+
"python-dateutil>=2.9.0.post0",
24+
]
25+
26+
[project.urls]
27+
Homepage = "https://github.com/stackitcloud/stackit-sdk-python"
28+
Issues = "https://github.com/stackitcloud/stackit-sdk-python/issues"
29+
30+
[dependency-groups]
31+
dev = [
32+
"black>=26.3.1",
33+
"pytest>=9.1.1",
34+
"flake8>=5.0.3 ; python_full_version < '3.12'",
35+
"flake8>=6.0.1 ; python_full_version >= '3.12'",
36+
"flake8-black>=0.3.6",
37+
"flake8-pyproject>=1.2.3",
38+
"autoimport>=1.6.1",
39+
"flake8-eol>=0.0.8",
40+
"flake8-eradicate>=1.5.0",
41+
"flake8-bandit>=4.1.1",
42+
"flake8-bugbear>=23.1.14",
43+
"flake8-quotes>=3.4.0",
44+
"isort>=5.13.2",
45+
]
46+
47+
[tool.uv]
48+
default-groups = "all"
49+
50+
[tool.uv.sources]
51+
stackit-core = { path = "../../core" }
52+
53+
[tool.hatch.build.targets.sdist]
54+
include = ["src/stackit"]
55+
56+
[tool.hatch.build.targets.wheel]
57+
include = ["src/stackit"]
58+
59+
[tool.hatch.build.targets.wheel-sources]
60+
"src/stackit" = "stackit"
61+
62+
[build-system]
63+
requires = ["hatchling"]
64+
build-backend = "hatchling.build"
65+
66+
[tool.pytest.ini_options]
67+
pythonpath = [
68+
"src"
69+
]
70+
testpaths = [
71+
"tests"
72+
]
73+
74+
[tool.black]
75+
line-length = 120
76+
exclude = """
77+
/(
78+
.eggs
79+
| .git
80+
| .hg
81+
| .mypy_cache
82+
| .nox
83+
| .pants.d
84+
| .tox
85+
| .venv
86+
| _build
87+
| buck-out
88+
| build
89+
| dist
90+
| node_modules
91+
| venv
92+
)/
93+
"""
94+
95+
[tool.isort]
96+
profile = 'black'
97+
98+
[tool.flake8]
99+
exclude= [".eggs", ".git", ".hg", ".mypy_cache", ".tox", ".venv", ".devcontainer", "venv", "_build", "buck-out", "build", "dist"]
100+
statistics = true
101+
show-source = false
102+
max-line-length = 120
103+
# E203,W503 and E704 are incompatible with the formatter black
104+
# W291 needs to be disabled because some doc-strings get generated with trailing whitespace but black won't re-format comments
105+
ignore = ["E203", "W503", "E704", "W291"]
106+
inline-quotes = '"'
107+
docstring-quotes = '"""'
108+
multiline-quotes = '"""'
109+
ban-relative-imports = true
110+
# Exclude generated code
111+
extend-exclude = [ "src/stackit/*/models/*", "src/stackit/*/api/*", "src/stackit/*/*.py" ]
Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
# coding: utf-8
2+
3+
# flake8: noqa
4+
5+
"""
6+
STACKIT Key Value Store API
7+
8+
The STACKIT Key Value Store API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
9+
10+
The version of the OpenAPI document: 2.0
11+
Generated by OpenAPI Generator (https://openapi-generator.tech)
12+
13+
Do not edit the class manually.
14+
""" # noqa: E501
15+
16+
__version__ = "1.0.0"
17+
18+
# Define package exports
19+
__all__ = [
20+
"DefaultApi",
21+
"ApiResponse",
22+
"ApiClient",
23+
"HostConfiguration",
24+
"OpenApiException",
25+
"ApiTypeError",
26+
"ApiValueError",
27+
"ApiKeyError",
28+
"ApiAttributeError",
29+
"ApiException",
30+
"Backup",
31+
"CreateBackupResponseItem",
32+
"CreateCredentialsPayload",
33+
"CreateInstancePayload",
34+
"CreateInstanceResponse",
35+
"Credentials",
36+
"CredentialsListItem",
37+
"CredentialsResponse",
38+
"Error",
39+
"GetMetricsResponse",
40+
"Instance",
41+
"InstanceLastOperation",
42+
"InstanceParameters",
43+
"InstanceSchema",
44+
"ListCredentialsResponse",
45+
"ListInstancesResponse",
46+
"ListOfferingsResponse",
47+
"ListRestoresResponse",
48+
"ModelSchema",
49+
"Offering",
50+
"PartialUpdateInstancePayload",
51+
"Plan",
52+
"RawCredentials",
53+
"Restore",
54+
"TriggerRestoreResponse",
55+
"UpdateBackupsConfigPayload",
56+
"UpdateBackupsConfigResponse",
57+
]
58+
59+
# import apis into sdk package
60+
from stackit.valkey.api.default_api import DefaultApi as DefaultApi
61+
from stackit.valkey.api_client import ApiClient as ApiClient
62+
63+
# import ApiClient
64+
from stackit.valkey.api_response import ApiResponse as ApiResponse
65+
from stackit.valkey.configuration import HostConfiguration as HostConfiguration
66+
from stackit.valkey.exceptions import ApiAttributeError as ApiAttributeError
67+
from stackit.valkey.exceptions import ApiException as ApiException
68+
from stackit.valkey.exceptions import ApiKeyError as ApiKeyError
69+
from stackit.valkey.exceptions import ApiTypeError as ApiTypeError
70+
from stackit.valkey.exceptions import ApiValueError as ApiValueError
71+
from stackit.valkey.exceptions import OpenApiException as OpenApiException
72+
73+
# import models into sdk package
74+
from stackit.valkey.models.backup import Backup as Backup
75+
from stackit.valkey.models.create_backup_response_item import (
76+
CreateBackupResponseItem as CreateBackupResponseItem,
77+
)
78+
from stackit.valkey.models.create_credentials_payload import (
79+
CreateCredentialsPayload as CreateCredentialsPayload,
80+
)
81+
from stackit.valkey.models.create_instance_payload import (
82+
CreateInstancePayload as CreateInstancePayload,
83+
)
84+
from stackit.valkey.models.create_instance_response import (
85+
CreateInstanceResponse as CreateInstanceResponse,
86+
)
87+
from stackit.valkey.models.credentials import Credentials as Credentials
88+
from stackit.valkey.models.credentials_list_item import (
89+
CredentialsListItem as CredentialsListItem,
90+
)
91+
from stackit.valkey.models.credentials_response import (
92+
CredentialsResponse as CredentialsResponse,
93+
)
94+
from stackit.valkey.models.error import Error as Error
95+
from stackit.valkey.models.get_metrics_response import (
96+
GetMetricsResponse as GetMetricsResponse,
97+
)
98+
from stackit.valkey.models.instance import Instance as Instance
99+
from stackit.valkey.models.instance_last_operation import (
100+
InstanceLastOperation as InstanceLastOperation,
101+
)
102+
from stackit.valkey.models.instance_parameters import (
103+
InstanceParameters as InstanceParameters,
104+
)
105+
from stackit.valkey.models.instance_schema import InstanceSchema as InstanceSchema
106+
from stackit.valkey.models.list_credentials_response import (
107+
ListCredentialsResponse as ListCredentialsResponse,
108+
)
109+
from stackit.valkey.models.list_instances_response import (
110+
ListInstancesResponse as ListInstancesResponse,
111+
)
112+
from stackit.valkey.models.list_offerings_response import (
113+
ListOfferingsResponse as ListOfferingsResponse,
114+
)
115+
from stackit.valkey.models.list_restores_response import (
116+
ListRestoresResponse as ListRestoresResponse,
117+
)
118+
from stackit.valkey.models.model_schema import ModelSchema as ModelSchema
119+
from stackit.valkey.models.offering import Offering as Offering
120+
from stackit.valkey.models.partial_update_instance_payload import (
121+
PartialUpdateInstancePayload as PartialUpdateInstancePayload,
122+
)
123+
from stackit.valkey.models.plan import Plan as Plan
124+
from stackit.valkey.models.raw_credentials import RawCredentials as RawCredentials
125+
from stackit.valkey.models.restore import Restore as Restore
126+
from stackit.valkey.models.trigger_restore_response import (
127+
TriggerRestoreResponse as TriggerRestoreResponse,
128+
)
129+
from stackit.valkey.models.update_backups_config_payload import (
130+
UpdateBackupsConfigPayload as UpdateBackupsConfigPayload,
131+
)
132+
from stackit.valkey.models.update_backups_config_response import (
133+
UpdateBackupsConfigResponse as UpdateBackupsConfigResponse,
134+
)
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# flake8: noqa
2+
3+
# import apis into api package
4+
from stackit.valkey.api.default_api import DefaultApi

0 commit comments

Comments
 (0)