stackit-kms 0.10.0__tar.gz → 0.11.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/PKG-INFO +3 -4
  2. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/pyproject.toml +7 -7
  3. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/__init__.py +5 -6
  4. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/api/default_api.py +5 -5
  5. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/api_client.py +5 -6
  6. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/api_response.py +0 -1
  7. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/configuration.py +5 -6
  8. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/exceptions.py +5 -5
  9. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/__init__.py +5 -5
  10. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/access_scope.py +5 -5
  11. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/algorithm.py +5 -5
  12. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/create_key_payload.py +5 -5
  13. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/create_key_ring_payload.py +5 -5
  14. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/create_wrapping_key_payload.py +5 -5
  15. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/decrypt_payload.py +5 -5
  16. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/decrypted_data.py +5 -5
  17. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/encrypt_payload.py +5 -5
  18. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/encrypted_data.py +5 -5
  19. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/http_error.py +5 -5
  20. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/import_key_payload.py +5 -5
  21. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/key.py +5 -5
  22. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/key_list.py +5 -5
  23. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/key_ring.py +5 -5
  24. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/key_ring_list.py +5 -5
  25. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/protection.py +5 -5
  26. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/purpose.py +5 -5
  27. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/sign_payload.py +5 -5
  28. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/signed_data.py +5 -5
  29. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/verified_data.py +5 -5
  30. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/verify_payload.py +5 -5
  31. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/version.py +5 -5
  32. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/version_list.py +5 -5
  33. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/wrapping_algorithm.py +5 -5
  34. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/wrapping_key.py +5 -5
  35. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/wrapping_key_list.py +5 -5
  36. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/models/wrapping_purpose.py +5 -5
  37. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/rest.py +5 -6
  38. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/.gitignore +0 -0
  39. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/LICENSE.md +0 -0
  40. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/NOTICE.txt +0 -0
  41. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/README.md +0 -0
  42. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/api/__init__.py +0 -0
  43. {stackit_kms-0.10.0 → stackit_kms-0.11.0}/src/stackit/kms/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: stackit-kms
3
- Version: 0.10.0
3
+ Version: 0.11.0
4
4
  Summary: STACKIT Key Management Service API
5
5
  Project-URL: Homepage, https://github.com/stackitcloud/stackit-sdk-python
6
6
  Project-URL: Issues, https://github.com/stackitcloud/stackit-sdk-python/issues
@@ -10,16 +10,15 @@ License-File: NOTICE.txt
10
10
  Classifier: License :: OSI Approved :: Apache Software License
11
11
  Classifier: Operating System :: OS Independent
12
12
  Classifier: Programming Language :: Python :: 3
13
- Classifier: Programming Language :: Python :: 3.9
14
13
  Classifier: Programming Language :: Python :: 3.10
15
14
  Classifier: Programming Language :: Python :: 3.11
16
15
  Classifier: Programming Language :: Python :: 3.12
17
16
  Classifier: Programming Language :: Python :: 3.13
18
17
  Classifier: Programming Language :: Python :: 3.14
19
- Requires-Python: <4.0,>=3.9
18
+ Requires-Python: <4.0,>=3.10
20
19
  Requires-Dist: pydantic>=2.9.2
21
20
  Requires-Dist: python-dateutil>=2.9.0.post0
22
- Requires-Dist: requests>=2.32.3
21
+ Requires-Dist: requests>=2.33.0
23
22
  Requires-Dist: stackit-core>=0.0.1a
24
23
  Description-Content-Type: text/markdown
25
24
 
@@ -1,15 +1,14 @@
1
1
  [project]
2
2
  name = "stackit-kms"
3
- version = "v0.10.0"
3
+ version = "v0.11.0"
4
4
  description = "STACKIT Key Management Service API"
5
5
  authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }]
6
- requires-python = ">=3.9,<4.0"
6
+ requires-python = ">=3.10,<4.0"
7
7
  readme = "README.md"
8
8
  classifiers = [
9
9
  "Programming Language :: Python :: 3",
10
10
  "License :: OSI Approved :: Apache Software License",
11
11
  "Operating System :: OS Independent",
12
- "Programming Language :: Python :: 3.9",
13
12
  "Programming Language :: Python :: 3.10",
14
13
  "Programming Language :: Python :: 3.11",
15
14
  "Programming Language :: Python :: 3.12",
@@ -18,7 +17,7 @@ classifiers = [
18
17
  ]
19
18
  dependencies = [
20
19
  "stackit-core>=0.0.1a",
21
- "requests>=2.32.3",
20
+ "requests>=2.33.0",
22
21
  "pydantic>=2.9.2",
23
22
  "python-dateutil>=2.9.0.post0",
24
23
  ]
@@ -29,8 +28,8 @@ Issues = "https://github.com/stackitcloud/stackit-sdk-python/issues"
29
28
 
30
29
  [dependency-groups]
31
30
  dev = [
32
- "black>=24.8.0",
33
- "pytest>=8.3.3",
31
+ "black>=26.3.1",
32
+ "pytest>=9.1.1",
34
33
  "flake8>=5.0.3 ; python_full_version < '3.12'",
35
34
  "flake8>=6.0.1 ; python_full_version >= '3.12'",
36
35
  "flake8-black>=0.3.6",
@@ -102,7 +101,8 @@ show-source = false
102
101
  max-line-length = 120
103
102
  # E203,W503 and E704 are incompatible with the formatter black
104
103
  # 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"]
104
+ # fixing B042 in upstream exceptions.mustache would be a breaking change
105
+ ignore = ["E203", "W503", "E704", "W291", "B042"]
106
106
  inline-quotes = '"'
107
107
  docstring-quotes = '"""'
108
108
  multiline-quotes = '"""'
@@ -3,17 +3,16 @@
3
3
  # flake8: noqa
4
4
 
5
5
  """
6
- STACKIT Key Management Service API
6
+ STACKIT Key Management Service API
7
7
 
8
- This API provides endpoints for managing keys and key rings.
8
+ This API provides endpoints for managing keys and key rings.
9
9
 
10
- The version of the OpenAPI document: 1.0.0
11
- Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+ The version of the OpenAPI document: 1.0.0
11
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
12
12
 
13
- Do not edit the class manually.
13
+ Do not edit the class manually.
14
14
  """ # noqa: E501
15
15
 
16
-
17
16
  __version__ = "1.0.0"
18
17
 
19
18
  # Define package exports
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from typing import Any, Dict, List, Optional, Tuple, Union
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  import datetime
@@ -36,7 +36,6 @@ from stackit.kms.exceptions import (
36
36
  ApiException,
37
37
  )
38
38
 
39
-
40
39
  RequestSerialized = Tuple[str, str, Dict[str, str], Optional[str], List[str]]
41
40
 
42
41
 
@@ -6,7 +6,6 @@ from typing import Generic, Mapping, Optional, TypeVar
6
6
 
7
7
  from pydantic import BaseModel, Field, StrictBytes, StrictInt
8
8
 
9
-
10
9
  T = TypeVar("T")
11
10
 
12
11
 
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  import sys
@@ -18,7 +18,6 @@ from typing_extensions import NotRequired
18
18
 
19
19
  import os
20
20
 
21
-
22
21
  ServerVariablesT = Dict[str, str]
23
22
 
24
23
 
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from typing import Any, Optional
@@ -2,14 +2,14 @@
2
2
 
3
3
  # flake8: noqa
4
4
  """
5
- STACKIT Key Management Service API
5
+ STACKIT Key Management Service API
6
6
 
7
- This API provides endpoints for managing keys and key rings.
7
+ This API provides endpoints for managing keys and key rings.
8
8
 
9
- The version of the OpenAPI document: 1.0.0
10
- Generated by OpenAPI Generator (https://openapi-generator.tech)
9
+ The version of the OpenAPI document: 1.0.0
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
12
- Do not edit the class manually.
12
+ Do not edit the class manually.
13
13
  """ # noqa: E501
14
14
 
15
15
  # import models into model package
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  from __future__ import annotations
@@ -1,14 +1,14 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- STACKIT Key Management Service API
4
+ STACKIT Key Management Service API
5
5
 
6
- This API provides endpoints for managing keys and key rings.
6
+ This API provides endpoints for managing keys and key rings.
7
7
 
8
- The version of the OpenAPI document: 1.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
- Do not edit the class manually.
11
+ Do not edit the class manually.
12
12
  """ # noqa: E501
13
13
 
14
14
  import io
@@ -21,7 +21,6 @@ from stackit.core.configuration import Configuration
21
21
 
22
22
  from stackit.kms.exceptions import ApiException, ApiValueError
23
23
 
24
-
25
24
  RESTResponseType = requests.Response
26
25
 
27
26
 
File without changes
File without changes
File without changes
File without changes