EnclaveSDK 1.5.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.
- EnclaveSDK/__init__.py +52 -0
- EnclaveSDK/api/__init__.py +8 -0
- EnclaveSDK/api/data_api.py +760 -0
- EnclaveSDK/api/escrow_api.py +931 -0
- EnclaveSDK/api/mlflow_api.py +2038 -0
- EnclaveSDK/api/report_api.py +531 -0
- EnclaveSDK/api/run_api.py +276 -0
- EnclaveSDK/api_client.py +688 -0
- EnclaveSDK/api_response.py +20 -0
- EnclaveSDK/configuration.py +455 -0
- EnclaveSDK/exceptions.py +199 -0
- EnclaveSDK/models/__init__.py +31 -0
- EnclaveSDK/models/algorithm_status.py +106 -0
- EnclaveSDK/models/api_v1_data_files_get200_response.py +102 -0
- EnclaveSDK/models/api_v1_report_post200_response.py +84 -0
- EnclaveSDK/models/file.py +103 -0
- EnclaveSDK/models/ping_attestation_status.py +84 -0
- EnclaveSDK/models/ping_enclave_status.py +84 -0
- EnclaveSDK/models/ping_escrow_status.py +84 -0
- EnclaveSDK/models/ping_key_manager_status.py +84 -0
- EnclaveSDK/models/report.py +125 -0
- EnclaveSDK/models/sql_query.py +84 -0
- EnclaveSDK/models/sql_response.py +92 -0
- EnclaveSDK/models/validation_result.py +102 -0
- EnclaveSDK/py.typed +0 -0
- EnclaveSDK/rest.py +240 -0
- EnclaveSDK-1.5.1.dist-info/METADATA +16 -0
- EnclaveSDK-1.5.1.dist-info/RECORD +30 -0
- EnclaveSDK-1.5.1.dist-info/WHEEL +5 -0
- EnclaveSDK-1.5.1.dist-info/top_level.txt +1 -0
EnclaveSDK/__init__.py
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
BeeKeeperAI EscrowAI Enclave API
|
|
7
|
+
|
|
8
|
+
Described below is the EscrowAI Enclave API that provides functionality inside a BeeKeeperAI environment. Included are data engineering endpoints and reporting endpoints.
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 1.5.1
|
|
11
|
+
Contact: engineering@beekeeperai.com
|
|
12
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
13
|
+
|
|
14
|
+
Do not edit the class manually.
|
|
15
|
+
""" # noqa: E501
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
__version__ = "1.5.1"
|
|
19
|
+
|
|
20
|
+
# import apis into sdk package
|
|
21
|
+
from EnclaveSDK.api.data_api import DataApi
|
|
22
|
+
from EnclaveSDK.api.escrow_api import EscrowApi
|
|
23
|
+
from EnclaveSDK.api.mlflow_api import MlflowApi
|
|
24
|
+
from EnclaveSDK.api.report_api import ReportApi
|
|
25
|
+
from EnclaveSDK.api.run_api import RunApi
|
|
26
|
+
|
|
27
|
+
# import ApiClient
|
|
28
|
+
from EnclaveSDK.api_response import ApiResponse
|
|
29
|
+
from EnclaveSDK.api_client import ApiClient
|
|
30
|
+
from EnclaveSDK.configuration import Configuration
|
|
31
|
+
from EnclaveSDK.exceptions import OpenApiException
|
|
32
|
+
from EnclaveSDK.exceptions import ApiTypeError
|
|
33
|
+
from EnclaveSDK.exceptions import ApiValueError
|
|
34
|
+
from EnclaveSDK.exceptions import ApiKeyError
|
|
35
|
+
from EnclaveSDK.exceptions import ApiAttributeError
|
|
36
|
+
from EnclaveSDK.exceptions import ApiException
|
|
37
|
+
|
|
38
|
+
# import models into sdk package
|
|
39
|
+
from EnclaveSDK.models.algorithm_status import AlgorithmStatus
|
|
40
|
+
from EnclaveSDK.models.api_v1_data_files_get200_response import (
|
|
41
|
+
ApiV1DataFilesGet200Response,
|
|
42
|
+
)
|
|
43
|
+
from EnclaveSDK.models.api_v1_report_post200_response import ApiV1ReportPost200Response
|
|
44
|
+
from EnclaveSDK.models.file import File
|
|
45
|
+
from EnclaveSDK.models.ping_attestation_status import PingAttestationStatus
|
|
46
|
+
from EnclaveSDK.models.ping_enclave_status import PingEnclaveStatus
|
|
47
|
+
from EnclaveSDK.models.ping_escrow_status import PingEscrowStatus
|
|
48
|
+
from EnclaveSDK.models.ping_key_manager_status import PingKeyManagerStatus
|
|
49
|
+
from EnclaveSDK.models.report import Report
|
|
50
|
+
from EnclaveSDK.models.sql_query import SQLQuery
|
|
51
|
+
from EnclaveSDK.models.sql_response import SQLResponse
|
|
52
|
+
from EnclaveSDK.models.validation_result import ValidationResult
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# flake8: noqa
|
|
2
|
+
|
|
3
|
+
# import apis into api package
|
|
4
|
+
from EnclaveSDK.api.data_api import DataApi
|
|
5
|
+
from EnclaveSDK.api.escrow_api import EscrowApi
|
|
6
|
+
from EnclaveSDK.api.mlflow_api import MlflowApi
|
|
7
|
+
from EnclaveSDK.api.report_api import ReportApi
|
|
8
|
+
from EnclaveSDK.api.run_api import RunApi
|