stackit-kms 0.0.1__py3-none-any.whl
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.
- stackit/kms/__init__.py +61 -0
- stackit/kms/api/__init__.py +4 -0
- stackit/kms/api/default_api.py +7038 -0
- stackit/kms/api_client.py +626 -0
- stackit/kms/api_response.py +23 -0
- stackit/kms/configuration.py +138 -0
- stackit/kms/exceptions.py +198 -0
- stackit/kms/models/__init__.py +42 -0
- stackit/kms/models/algorithm.py +45 -0
- stackit/kms/models/backend.py +35 -0
- stackit/kms/models/create_key_payload.py +105 -0
- stackit/kms/models/create_key_ring_payload.py +86 -0
- stackit/kms/models/create_wrapping_key_payload.py +101 -0
- stackit/kms/models/decrypt_payload.py +81 -0
- stackit/kms/models/decrypted_data.py +81 -0
- stackit/kms/models/encrypt_payload.py +81 -0
- stackit/kms/models/encrypted_data.py +81 -0
- stackit/kms/models/http_error.py +81 -0
- stackit/kms/models/import_key_payload.py +86 -0
- stackit/kms/models/key.py +150 -0
- stackit/kms/models/key_list.py +92 -0
- stackit/kms/models/key_ring.py +107 -0
- stackit/kms/models/key_ring_list.py +96 -0
- stackit/kms/models/purpose.py +38 -0
- stackit/kms/models/sign_payload.py +81 -0
- stackit/kms/models/signed_data.py +82 -0
- stackit/kms/models/verified_data.py +81 -0
- stackit/kms/models/verify_payload.py +82 -0
- stackit/kms/models/version.py +138 -0
- stackit/kms/models/version_list.py +96 -0
- stackit/kms/models/wrapping_algorithm.py +42 -0
- stackit/kms/models/wrapping_key.py +139 -0
- stackit/kms/models/wrapping_key_list.py +98 -0
- stackit/kms/models/wrapping_purpose.py +36 -0
- stackit/kms/py.typed +0 -0
- stackit/kms/rest.py +148 -0
- stackit_kms-0.0.1.dist-info/LICENSE.md +201 -0
- stackit_kms-0.0.1.dist-info/METADATA +45 -0
- stackit_kms-0.0.1.dist-info/RECORD +40 -0
- stackit_kms-0.0.1.dist-info/WHEEL +4 -0
stackit/kms/__init__.py
ADDED
|
@@ -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
|