Skip to content

Commit ea0c139

Browse files
Generate kms
1 parent 1410ac9 commit ea0c139

39 files changed

+10989
-0
lines changed

services/kms/README.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# stackit.kms
2+
This API provides endpoints for managing keys and key rings.
3+
4+
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-kms
14+
```
15+
16+
Then import the package:
17+
```python
18+
import stackit.kms
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/kms/poetry.lock

+1,820
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/kms/pyproject.toml

+99
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
[project]
2+
name = "stackit-kms"
3+
4+
[tool.poetry]
5+
name = "stackit-kms"
6+
version = "v0.0.1a"
7+
authors = [
8+
"STACKIT Developer Tools <[email protected]>",
9+
]
10+
description = "STACKIT Key Management Service API"
11+
readme = "README.md"
12+
#license = "NoLicense"
13+
classifiers = [
14+
"Programming Language :: Python :: 3",
15+
"License :: OSI Approved :: Apache Software License",
16+
"Operating System :: OS Independent",
17+
]
18+
packages = [
19+
{ include = "stackit", from="src" }
20+
]
21+
22+
[tool.poetry.dependencies]
23+
python = ">=3.8,<4.0"
24+
stackit-core = ">=0.0.1a"
25+
requests = ">=2.32.3"
26+
pydantic = ">=2.9.2"
27+
python-dateutil = ">=2.9.0.post0"
28+
29+
[tool.poetry.group.dev.dependencies]
30+
black = ">=24.8.0"
31+
pytest = ">=8.3.3"
32+
flake8 = [
33+
{ version= ">=5.0.3", python="<3.12"},
34+
{ version= ">=6.0.1", python=">=3.12"}
35+
]
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+
[project.urls]
47+
Homepage = "https://github.com/stackitcloud/stackit-sdk-python"
48+
Issues = "https://github.com/stackitcloud/stackit-sdk-python/issues"
49+
50+
[build-system]
51+
requires = ["setuptools", "poetry-core"]
52+
build-backend = "poetry.core.masonry.api"
53+
54+
[tool.pytest.ini_options]
55+
pythonpath = [
56+
"src"
57+
]
58+
testpaths = [
59+
"tests"
60+
]
61+
62+
[tool.black]
63+
line-length = 120
64+
exclude = """
65+
/(
66+
.eggs
67+
| .git
68+
| .hg
69+
| .mypy_cache
70+
| .nox
71+
| .pants.d
72+
| .tox
73+
| .venv
74+
| _build
75+
| buck-out
76+
| build
77+
| dist
78+
| node_modules
79+
| venv
80+
)/
81+
"""
82+
83+
[tool.isort]
84+
profile = 'black'
85+
86+
[tool.flake8]
87+
exclude= [".eggs", ".git", ".hg", ".mypy_cache", ".tox", ".venv", ".devcontainer", "venv", "_build", "buck-out", "build", "dist"]
88+
statistics = true
89+
show-source = false
90+
max-line-length = 120
91+
# E203,W503 and E704 are incompatible with the formatter black
92+
# W291 needs to be disabled because some doc-strings get generated with trailing whitespace but black won't re-format comments
93+
ignore = ["E203", "W503", "E704", "W291"]
94+
inline-quotes = '"'
95+
docstring-quotes = '"""'
96+
multiline-quotes = '"""'
97+
ban-relative-imports = true
98+
# Exclude generated code
99+
extend-exclude = [ "src/stackit/*/models/*", "src/stackit/*/api/*", "src/stackit/*/*.py" ]
+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# coding: utf-8
2+
3+
# flake8: noqa
4+
5+
"""
6+
STACKIT Key Management Service API
7+
8+
This API provides endpoints for managing keys and key rings.
9+
10+
The version of the OpenAPI document: 1beta.0.0
11+
Generated by OpenAPI Generator (https://openapi-generator.tech)
12+
13+
Do not edit the class manually.
14+
""" # noqa: E501 docstring might be too long
15+
16+
17+
__version__ = "1.0.0"
18+
19+
# import apis into sdk package
20+
from stackit.kms.api.default_api import DefaultApi
21+
from stackit.kms.api_client import ApiClient
22+
23+
# import ApiClient
24+
from stackit.kms.api_response import ApiResponse
25+
from stackit.kms.configuration import HostConfiguration
26+
from stackit.kms.exceptions import (
27+
ApiAttributeError,
28+
ApiException,
29+
ApiKeyError,
30+
ApiTypeError,
31+
ApiValueError,
32+
OpenApiException,
33+
)
34+
35+
# import models into sdk package
36+
from stackit.kms.models.algorithm import Algorithm
37+
from stackit.kms.models.backend import Backend
38+
from stackit.kms.models.create_key_payload import CreateKeyPayload
39+
from stackit.kms.models.create_key_ring_payload import CreateKeyRingPayload
40+
from stackit.kms.models.create_wrapping_key_payload import CreateWrappingKeyPayload
41+
from stackit.kms.models.decrypt_payload import DecryptPayload
42+
from stackit.kms.models.decrypted_data import DecryptedData
43+
from stackit.kms.models.encrypt_payload import EncryptPayload
44+
from stackit.kms.models.encrypted_data import EncryptedData
45+
from stackit.kms.models.http_error import HttpError
46+
from stackit.kms.models.import_key_payload import ImportKeyPayload
47+
from stackit.kms.models.key import Key
48+
from stackit.kms.models.key_list import KeyList
49+
from stackit.kms.models.key_ring import KeyRing
50+
from stackit.kms.models.key_ring_list import KeyRingList
51+
from stackit.kms.models.purpose import Purpose
52+
from stackit.kms.models.sign_payload import SignPayload
53+
from stackit.kms.models.signed_data import SignedData
54+
from stackit.kms.models.verified_data import VerifiedData
55+
from stackit.kms.models.verify_payload import VerifyPayload
56+
from stackit.kms.models.version import Version
57+
from stackit.kms.models.version_list import VersionList
58+
from stackit.kms.models.wrapping_algorithm import WrappingAlgorithm
59+
from stackit.kms.models.wrapping_key import WrappingKey
60+
from stackit.kms.models.wrapping_key_list import WrappingKeyList
61+
from stackit.kms.models.wrapping_purpose import WrappingPurpose
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.kms.api.default_api import DefaultApi

0 commit comments

Comments
 (0)