stackit-certificates 0.0.1a0__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.
@@ -0,0 +1,47 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ Load Balancer Certificates API
7
+
8
+ This API offers the ability to store TLS certificates, which can be used by load balancing servers in STACKIT. They can be between consumer and load balancing server and/or between load balancing server and endpoint server.
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.certificates.api.default_api import DefaultApi
21
+ from stackit.certificates.api_client import ApiClient
22
+
23
+ # import ApiClient
24
+ from stackit.certificates.api_response import ApiResponse
25
+ from stackit.certificates.configuration import HostConfiguration
26
+ from stackit.certificates.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.certificates.models.create_certificate_payload import (
37
+ CreateCertificatePayload,
38
+ )
39
+ from stackit.certificates.models.create_certificate_response import (
40
+ CreateCertificateResponse,
41
+ )
42
+ from stackit.certificates.models.get_certificate_response import GetCertificateResponse
43
+ from stackit.certificates.models.google_protobuf_any import GoogleProtobufAny
44
+ from stackit.certificates.models.list_certificates_response import (
45
+ ListCertificatesResponse,
46
+ )
47
+ from stackit.certificates.models.status import Status
@@ -0,0 +1,4 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from stackit.certificates.api.default_api import DefaultApi