prism.py.client 1.0.0__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.
- openapi_client/__init__.py +96 -0
- openapi_client/api/__init__.py +9 -0
- openapi_client/api/dashboard_api.py +1340 -0
- openapi_client/api/project_api.py +1620 -0
- openapi_client/api/test_build_api.py +2706 -0
- openapi_client/api/test_job_api.py +1620 -0
- openapi_client/api/test_result_api.py +3559 -0
- openapi_client/api_client.py +804 -0
- openapi_client/api_response.py +21 -0
- openapi_client/configuration.py +596 -0
- openapi_client/exceptions.py +218 -0
- openapi_client/models/__init__.py +38 -0
- openapi_client/models/device_under_test.py +110 -0
- openapi_client/models/func_string_task_boolean.py +92 -0
- openapi_client/models/product.py +130 -0
- openapi_client/models/project.py +112 -0
- openapi_client/models/release.py +100 -0
- openapi_client/models/result_type.py +121 -0
- openapi_client/models/script.py +114 -0
- openapi_client/models/script_repository.py +104 -0
- openapi_client/models/test_build.py +145 -0
- openapi_client/models/test_case.py +116 -0
- openapi_client/models/test_environment.py +81 -0
- openapi_client/models/test_job.py +152 -0
- openapi_client/models/test_job_parameter.py +104 -0
- openapi_client/models/test_job_report_template.py +118 -0
- openapi_client/models/test_machine.py +112 -0
- openapi_client/models/test_metadata.py +81 -0
- openapi_client/models/test_parameter.py +81 -0
- openapi_client/models/test_plan.py +112 -0
- openapi_client/models/test_plan_recipe.py +116 -0
- openapi_client/models/test_report.py +110 -0
- openapi_client/models/test_result.py +105 -0
- openapi_client/models/test_suite.py +102 -0
- openapi_client/models/user_credential.py +122 -0
- openapi_client/py.typed +0 -0
- openapi_client/rest.py +263 -0
- prism_py_client-1.0.0.dist-info/METADATA +222 -0
- prism_py_client-1.0.0.dist-info/RECORD +41 -0
- prism_py_client-1.0.0.dist-info/WHEEL +5 -0
- prism_py_client-1.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
prism.web.service
|
|
7
|
+
|
|
8
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: v1
|
|
11
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
12
|
+
|
|
13
|
+
Do not edit the class manually.
|
|
14
|
+
""" # noqa: E501
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
__version__ = "1.0.0"
|
|
18
|
+
|
|
19
|
+
# Define package exports
|
|
20
|
+
__all__ = [
|
|
21
|
+
"DashboardApi",
|
|
22
|
+
"ProjectApi",
|
|
23
|
+
"TestBuildApi",
|
|
24
|
+
"TestJobApi",
|
|
25
|
+
"TestResultApi",
|
|
26
|
+
"ApiResponse",
|
|
27
|
+
"ApiClient",
|
|
28
|
+
"Configuration",
|
|
29
|
+
"OpenApiException",
|
|
30
|
+
"ApiTypeError",
|
|
31
|
+
"ApiValueError",
|
|
32
|
+
"ApiKeyError",
|
|
33
|
+
"ApiAttributeError",
|
|
34
|
+
"ApiException",
|
|
35
|
+
"DeviceUnderTest",
|
|
36
|
+
"FuncStringTaskBoolean",
|
|
37
|
+
"Product",
|
|
38
|
+
"Project",
|
|
39
|
+
"Release",
|
|
40
|
+
"ResultType",
|
|
41
|
+
"Script",
|
|
42
|
+
"ScriptRepository",
|
|
43
|
+
"TestBuild",
|
|
44
|
+
"TestCase",
|
|
45
|
+
"TestJob",
|
|
46
|
+
"TestJobParameter",
|
|
47
|
+
"TestJobReportTemplate",
|
|
48
|
+
"TestMachine",
|
|
49
|
+
"TestPlan",
|
|
50
|
+
"TestPlanRecipe",
|
|
51
|
+
"TestReport",
|
|
52
|
+
"TestResult",
|
|
53
|
+
"TestSuite",
|
|
54
|
+
"UserCredential",
|
|
55
|
+
]
|
|
56
|
+
|
|
57
|
+
# import apis into sdk package
|
|
58
|
+
from openapi_client.api.dashboard_api import DashboardApi as DashboardApi
|
|
59
|
+
from openapi_client.api.project_api import ProjectApi as ProjectApi
|
|
60
|
+
from openapi_client.api.test_build_api import TestBuildApi as TestBuildApi
|
|
61
|
+
from openapi_client.api.test_job_api import TestJobApi as TestJobApi
|
|
62
|
+
from openapi_client.api.test_result_api import TestResultApi as TestResultApi
|
|
63
|
+
|
|
64
|
+
# import ApiClient
|
|
65
|
+
from openapi_client.api_response import ApiResponse as ApiResponse
|
|
66
|
+
from openapi_client.api_client import ApiClient as ApiClient
|
|
67
|
+
from openapi_client.configuration import Configuration as Configuration
|
|
68
|
+
from openapi_client.exceptions import OpenApiException as OpenApiException
|
|
69
|
+
from openapi_client.exceptions import ApiTypeError as ApiTypeError
|
|
70
|
+
from openapi_client.exceptions import ApiValueError as ApiValueError
|
|
71
|
+
from openapi_client.exceptions import ApiKeyError as ApiKeyError
|
|
72
|
+
from openapi_client.exceptions import ApiAttributeError as ApiAttributeError
|
|
73
|
+
from openapi_client.exceptions import ApiException as ApiException
|
|
74
|
+
|
|
75
|
+
# import models into sdk package
|
|
76
|
+
from openapi_client.models.device_under_test import DeviceUnderTest as DeviceUnderTest
|
|
77
|
+
from openapi_client.models.func_string_task_boolean import FuncStringTaskBoolean as FuncStringTaskBoolean
|
|
78
|
+
from openapi_client.models.product import Product as Product
|
|
79
|
+
from openapi_client.models.project import Project as Project
|
|
80
|
+
from openapi_client.models.release import Release as Release
|
|
81
|
+
from openapi_client.models.result_type import ResultType as ResultType
|
|
82
|
+
from openapi_client.models.script import Script as Script
|
|
83
|
+
from openapi_client.models.script_repository import ScriptRepository as ScriptRepository
|
|
84
|
+
from openapi_client.models.test_build import TestBuild as TestBuild
|
|
85
|
+
from openapi_client.models.test_case import TestCase as TestCase
|
|
86
|
+
from openapi_client.models.test_job import TestJob as TestJob
|
|
87
|
+
from openapi_client.models.test_job_parameter import TestJobParameter as TestJobParameter
|
|
88
|
+
from openapi_client.models.test_job_report_template import TestJobReportTemplate as TestJobReportTemplate
|
|
89
|
+
from openapi_client.models.test_machine import TestMachine as TestMachine
|
|
90
|
+
from openapi_client.models.test_plan import TestPlan as TestPlan
|
|
91
|
+
from openapi_client.models.test_plan_recipe import TestPlanRecipe as TestPlanRecipe
|
|
92
|
+
from openapi_client.models.test_report import TestReport as TestReport
|
|
93
|
+
from openapi_client.models.test_result import TestResult as TestResult
|
|
94
|
+
from openapi_client.models.test_suite import TestSuite as TestSuite
|
|
95
|
+
from openapi_client.models.user_credential import UserCredential as UserCredential
|
|
96
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# flake8: noqa
|
|
2
|
+
|
|
3
|
+
# import apis into api package
|
|
4
|
+
from openapi_client.api.dashboard_api import DashboardApi
|
|
5
|
+
from openapi_client.api.project_api import ProjectApi
|
|
6
|
+
from openapi_client.api.test_build_api import TestBuildApi
|
|
7
|
+
from openapi_client.api.test_job_api import TestJobApi
|
|
8
|
+
from openapi_client.api.test_result_api import TestResultApi
|
|
9
|
+
|