perceptic-core-client 0.40.0__py3-none-any.whl → 0.40.999__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.
Potentially problematic release.
This version of perceptic-core-client might be problematic. Click here for more details.
- perceptic_core_client/__init__.py +10 -0
- perceptic_core_client/api/worker_resource_api.py +579 -1
- perceptic_core_client/models/__init__.py +5 -0
- perceptic_core_client/models/get_run_event_rating_response.py +91 -0
- perceptic_core_client/models/post_rating_request.py +89 -0
- perceptic_core_client/models/post_run_event_rating_response.py +91 -0
- perceptic_core_client/models/rating_dto_worker_run_event_rating_secondary_id.py +108 -0
- perceptic_core_client/models/worker_run_event_rating_secondary_id.py +89 -0
- perceptic_core_client/test/test_get_run_event_rating_response.py +57 -0
- perceptic_core_client/test/test_post_rating_request.py +52 -0
- perceptic_core_client/test/test_post_run_event_rating_response.py +57 -0
- perceptic_core_client/test/test_rating_dto_worker_run_event_rating_secondary_id.py +56 -0
- perceptic_core_client/test/test_worker_resource_api.py +14 -0
- perceptic_core_client/test/test_worker_run_event_rating_secondary_id.py +53 -0
- {perceptic_core_client-0.40.0.dist-info → perceptic_core_client-0.40.999.dist-info}/METADATA +1 -1
- {perceptic_core_client-0.40.0.dist-info → perceptic_core_client-0.40.999.dist-info}/RECORD +18 -8
- {perceptic_core_client-0.40.0.dist-info → perceptic_core_client-0.40.999.dist-info}/WHEEL +0 -0
- {perceptic_core_client-0.40.0.dist-info → perceptic_core_client-0.40.999.dist-info}/top_level.txt +0 -0
|
@@ -33,6 +33,20 @@ class TestWorkerResourceApi(unittest.TestCase):
|
|
|
33
33
|
"""
|
|
34
34
|
pass
|
|
35
35
|
|
|
36
|
+
def test_api_v1_workers_runs_run_rid_events_sequence_rating_get(self) -> None:
|
|
37
|
+
"""Test case for api_v1_workers_runs_run_rid_events_sequence_rating_get
|
|
38
|
+
|
|
39
|
+
Get Rating
|
|
40
|
+
"""
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
def test_api_v1_workers_runs_run_rid_events_sequence_rating_post(self) -> None:
|
|
44
|
+
"""Test case for api_v1_workers_runs_run_rid_events_sequence_rating_post
|
|
45
|
+
|
|
46
|
+
Post Rating
|
|
47
|
+
"""
|
|
48
|
+
pass
|
|
49
|
+
|
|
36
50
|
def test_api_v1_workers_worker_id_get(self) -> None:
|
|
37
51
|
"""Test case for api_v1_workers_worker_id_get
|
|
38
52
|
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
perceptic-core-server API
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 0.0.1-SNAPSHOT
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
import unittest
|
|
16
|
+
|
|
17
|
+
from perceptic_core_client.models.worker_run_event_rating_secondary_id import WorkerRunEventRatingSecondaryId
|
|
18
|
+
|
|
19
|
+
class TestWorkerRunEventRatingSecondaryId(unittest.TestCase):
|
|
20
|
+
"""WorkerRunEventRatingSecondaryId unit test stubs"""
|
|
21
|
+
|
|
22
|
+
def setUp(self):
|
|
23
|
+
pass
|
|
24
|
+
|
|
25
|
+
def tearDown(self):
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
def make_instance(self, include_optional) -> WorkerRunEventRatingSecondaryId:
|
|
29
|
+
"""Test WorkerRunEventRatingSecondaryId
|
|
30
|
+
include_optional is a boolean, when False only required
|
|
31
|
+
params are included, when True both required and
|
|
32
|
+
optional params are included """
|
|
33
|
+
# uncomment below to create an instance of `WorkerRunEventRatingSecondaryId`
|
|
34
|
+
"""
|
|
35
|
+
model = WorkerRunEventRatingSecondaryId()
|
|
36
|
+
if include_optional:
|
|
37
|
+
return WorkerRunEventRatingSecondaryId(
|
|
38
|
+
run_rid = '',
|
|
39
|
+
sequence = 56
|
|
40
|
+
)
|
|
41
|
+
else:
|
|
42
|
+
return WorkerRunEventRatingSecondaryId(
|
|
43
|
+
run_rid = '',
|
|
44
|
+
)
|
|
45
|
+
"""
|
|
46
|
+
|
|
47
|
+
def testWorkerRunEventRatingSecondaryId(self):
|
|
48
|
+
"""Test WorkerRunEventRatingSecondaryId"""
|
|
49
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
50
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
51
|
+
|
|
52
|
+
if __name__ == '__main__':
|
|
53
|
+
unittest.main()
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
perceptic_core_client/__init__.py,sha256=
|
|
1
|
+
perceptic_core_client/__init__.py,sha256=zvdwhree5bLOQykTCSOIz13yXX3gMPLpikO1U_GI3pc,17017
|
|
2
2
|
perceptic_core_client/api_client.py,sha256=nOfdGgBUjN8FflVMszUWlmGsfOJL2pnz_zTjT9WQsB8,27777
|
|
3
3
|
perceptic_core_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
4
|
perceptic_core_client/configuration.py,sha256=SQSH2SmsosPzZWLBDCL__iXOYakIfsIi23fdu-TUu74,17975
|
|
@@ -15,8 +15,8 @@ perceptic_core_client/api/indexing_task_resource_api.py,sha256=nHDH5bEdTUzw8qsS8
|
|
|
15
15
|
perceptic_core_client/api/tag_resource_api.py,sha256=q9BmZSkNzE6qW56bytte_aQ0VP2hG3d5_sApnTestr4,78302
|
|
16
16
|
perceptic_core_client/api/uri_resource_api.py,sha256=37kkpiZQyxd-184Zql6s5J714FJSIrT0o4Wr9rDMxe8,114212
|
|
17
17
|
perceptic_core_client/api/user_resource_api.py,sha256=HDkfUz8gHi1sSwhSKD2yrsbXiE3Q9ZuEB_dlVhEc07o,20686
|
|
18
|
-
perceptic_core_client/api/worker_resource_api.py,sha256=
|
|
19
|
-
perceptic_core_client/models/__init__.py,sha256=
|
|
18
|
+
perceptic_core_client/api/worker_resource_api.py,sha256=gNDyOuMO8vk8fesDckH9OruHq59d1J9bc9gm3cvDLVw,99177
|
|
19
|
+
perceptic_core_client/models/__init__.py,sha256=NxyF03C5ihzpPHQRvISb88J2c7I4g5EhAdCjSUAkNn4,9149
|
|
20
20
|
perceptic_core_client/models/action_type.py,sha256=N_ESOrMP83pxJKGJvrBH_T0xDjSmHoISZ01SB81Oomc,786
|
|
21
21
|
perceptic_core_client/models/add_tag_to_file_request.py,sha256=-4lKwOdDAuxjjWc7Sqgy9cvdif05AGIrrgUi-dl4NBk,2593
|
|
22
22
|
perceptic_core_client/models/azure_blob_connection_settings_api_dto.py,sha256=3tIHzJKXkvypEgQZRnM_FoVYNI3cwbbLhggl09f3o54,4297
|
|
@@ -54,6 +54,7 @@ perceptic_core_client/models/get_indexing_task_response.py,sha256=nm0vOzonXB9CGt
|
|
|
54
54
|
perceptic_core_client/models/get_metadata_response.py,sha256=9rH4_dKneEYIuvgXYxri4mOYHCLxx1AyHUgXEilng0c,2885
|
|
55
55
|
perceptic_core_client/models/get_parent_response.py,sha256=piDcT-pwFEgcoZB-pYGzC6-7xHscXh6xsOheV3IjRJ4,2546
|
|
56
56
|
perceptic_core_client/models/get_parent_uri_response.py,sha256=CHdAJRDZBjaJRXc3GJWoQJe-W-UddsyEnQN0IyHhOM8,2765
|
|
57
|
+
perceptic_core_client/models/get_run_event_rating_response.py,sha256=kV4QLxDNoWajzI77ij8kgkQ-5nrMI8Ey4x_0gos_UaY,2980
|
|
57
58
|
perceptic_core_client/models/get_signed_url_response.py,sha256=N2Ou4qIy4GMbU0fjBhhp2EINPDh5Xl3cuIzFbdNoimU,2825
|
|
58
59
|
perceptic_core_client/models/get_worker_events_response.py,sha256=NNgACf4aKOrXAJVBquBHe9Aha9IU17czsptehF9JnE0,3038
|
|
59
60
|
perceptic_core_client/models/get_worker_metadata_response.py,sha256=J-mYsSbMQOD4WiMs03LbKkiwbQKo8CVRFyliatJ6GSE,3005
|
|
@@ -84,9 +85,12 @@ perceptic_core_client/models/me_response.py,sha256=k_rzVuYqTbNNZqxUcKkfQ6lt2Lobk
|
|
|
84
85
|
perceptic_core_client/models/model_schema.py,sha256=Cl1Q8pTVD_fEc9eGNOXEf5H_xsYorcnxel0bJa8eQPo,4246
|
|
85
86
|
perceptic_core_client/models/on_upload_trigger.py,sha256=BUc5nKPZ-ZoAbKKtO4HwdttQ1pjT0KycTT4-on8WBXQ,2530
|
|
86
87
|
perceptic_core_client/models/paged_list_file_system_response.py,sha256=RqY3rfmucbx4Ya89DDVTU2hC4DAJHZTdi7ronC7fmnI,3440
|
|
88
|
+
perceptic_core_client/models/post_rating_request.py,sha256=KNQdYWGMZOQPOiCiflZMPCHaFVy7MJSwQf-NIIzVAjQ,2767
|
|
89
|
+
perceptic_core_client/models/post_run_event_rating_response.py,sha256=fBjdkM5t9lBeywbXuK5XpoIbZbxeNDgahhv55m26qxw,2984
|
|
87
90
|
perceptic_core_client/models/post_worker_run_request.py,sha256=6bfgf2Yrwpc46X6c_NL2Mlf9YyKUBzk_kl9o26COtW8,2525
|
|
88
91
|
perceptic_core_client/models/post_worker_run_response.py,sha256=zOpSem6C2F8of_AM4LZCY2C4fpa8aB3g5iy2bCrfRjU,2601
|
|
89
92
|
perceptic_core_client/models/progress_event.py,sha256=5iAGv-0wpu39PDBG1062TEXMQkjf7PIxo6El9hUnPOo,2903
|
|
93
|
+
perceptic_core_client/models/rating_dto_worker_run_event_rating_secondary_id.py,sha256=O_dzPCAXTXiEmOQyxWl07jphQ6bAB8xfrDDdvtfR-tU,4025
|
|
90
94
|
perceptic_core_client/models/remote_file_system_api_dto.py,sha256=P770rxN2fZZqPDEPEeMFpcKcDiWQHmxVr_9TzBgroz4,3463
|
|
91
95
|
perceptic_core_client/models/remove_tag_from_file_request.py,sha256=u_liteh8V2JVMOeBYuTW6rpxaasZhFUESn7L_ZBcCMQ,2613
|
|
92
96
|
perceptic_core_client/models/request_for_input_event.py,sha256=-jJjXA_17GqUWupDb_kaOag7ZXyQBsl-BsCH9XhJifY,3722
|
|
@@ -111,6 +115,7 @@ perceptic_core_client/models/user_info_response.py,sha256=S9NNuv4RWsInlg8edk4nsl
|
|
|
111
115
|
perceptic_core_client/models/web_page_citation_metadata_api_dto.py,sha256=9gWNtO9E8V7by35I4VLfFAEW7ACFRaP5HyD4nxTzIkU,2692
|
|
112
116
|
perceptic_core_client/models/worker_event.py,sha256=QztjNPMatUO4PLpSbOguRA9Ce4YzybIplB2m4p4kEZw,7543
|
|
113
117
|
perceptic_core_client/models/worker_metadata_dto.py,sha256=S9jsLoj3df5H_40EV7KGh7KoEamWUAZbIaDgCm27QAA,2986
|
|
118
|
+
perceptic_core_client/models/worker_run_event_rating_secondary_id.py,sha256=Uk2ZlYK58dReYP-KR1T1BGyS4E4gt-H4cgkWKkktjp4,2726
|
|
114
119
|
perceptic_core_client/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
120
|
perceptic_core_client/test/test_action_type.py,sha256=n21J9CQEH1tHjztKC7K081mvKNbffxmcztRNfxPF4po,717
|
|
116
121
|
perceptic_core_client/test/test_add_tag_to_file_request.py,sha256=RLAiCPjmdk176Lj6SFZorGhtJdCt8jf1wiPCMH9OPWA,1481
|
|
@@ -153,6 +158,7 @@ perceptic_core_client/test/test_get_indexing_task_response.py,sha256=2RhsjRfcu5x
|
|
|
153
158
|
perceptic_core_client/test/test_get_metadata_response.py,sha256=oPDM4yv_LNZFZCx-1hxDKk5HRpTiFnog_1t6FURUFgc,2073
|
|
154
159
|
perceptic_core_client/test/test_get_parent_response.py,sha256=uPwSbtoQ18IlNEpnWTE7gMS07qoYEwHL1T9tMdsOIL4,1454
|
|
155
160
|
perceptic_core_client/test/test_get_parent_uri_response.py,sha256=3yjM69ht8leTvLRPZXmdpLVM1-annUPhGPtJJitcAko,1491
|
|
161
|
+
perceptic_core_client/test/test_get_run_event_rating_response.py,sha256=AIIuVlpBv1gTseT-L-e_sbVe2jHCE7lEW9TVotL9Nq0,2031
|
|
156
162
|
perceptic_core_client/test/test_get_signed_url_response.py,sha256=BpwbWZA8xdrJbfXg_E-7pQWjBu-7VgYTYIQoeTRLmes,1494
|
|
157
163
|
perceptic_core_client/test/test_get_worker_events_response.py,sha256=P2xL5C6cP4xy5S6s7t4o-JytNYo9J-dbghOJQg2DHlM,1624
|
|
158
164
|
perceptic_core_client/test/test_get_worker_metadata_response.py,sha256=Yl4A7wiJc9JhXqyoGIjU7lBb5pNKddPFCkdEktJ8MZc,1895
|
|
@@ -186,9 +192,12 @@ perceptic_core_client/test/test_me_response.py,sha256=NhLaiooL6lhhcyxgxezMBl9EJZ
|
|
|
186
192
|
perceptic_core_client/test/test_model_schema.py,sha256=TAZLQ79pitZP5U6jOmYBT_2-bmUfnCv4zSaNyhsuz2k,1950
|
|
187
193
|
perceptic_core_client/test/test_on_upload_trigger.py,sha256=ZcWuPWj_qhFgW7zHry74zSBo8W-cbyfIggJbVeeyYOA,1428
|
|
188
194
|
perceptic_core_client/test/test_paged_list_file_system_response.py,sha256=iL09EP0VO_9B5RmCtObqmj4xvLQMLKaTGs7gGFJj15c,2449
|
|
195
|
+
perceptic_core_client/test/test_post_rating_request.py,sha256=NjcfN9RMXUzmlLe3NF6uuCKh1b1d-5121D1ArSdSXR8,1495
|
|
196
|
+
perceptic_core_client/test/test_post_run_event_rating_response.py,sha256=SXXfZjYiY76RZnlRvV5ZxDRpqCNpi2foe13DeNDeDao,2043
|
|
189
197
|
perceptic_core_client/test/test_post_worker_run_request.py,sha256=FxIpvUHxCJXPKbjUL361J8k0J4fB3kIF3Q9vpFiNWD4,1524
|
|
190
198
|
perceptic_core_client/test/test_post_worker_run_response.py,sha256=rG0x1tul3NFPpjhKQi-p379nHo_H6jF69cVKM5WHpH0,1504
|
|
191
199
|
perceptic_core_client/test/test_progress_event.py,sha256=f3iVzbhJCR7qhgNpmAYfUl-jNz3fWoAsq9trduuDY44,1573
|
|
200
|
+
perceptic_core_client/test/test_rating_dto_worker_run_event_rating_secondary_id.py,sha256=wbL__Wav_wj283VMh9V3O7GZtMaV8u-WgyVUt2LnaOk,2040
|
|
192
201
|
perceptic_core_client/test/test_remote_file_system_api_dto.py,sha256=z99dSsSJu-rZg1CaO49PxoJIsvA9HD8fOajXD45prRM,1760
|
|
193
202
|
perceptic_core_client/test/test_remove_tag_from_file_request.py,sha256=axXB7hXXAgVbJJaaWSdZnjlIo6abQ6U2Y3vfDdNWBhI,1541
|
|
194
203
|
perceptic_core_client/test/test_request_for_input_event.py,sha256=PeBHUnJBAg7rDiy9O441Fu2LVqcIoMYIfZPtjgz0RQM,1738
|
|
@@ -216,8 +225,9 @@ perceptic_core_client/test/test_user_resource_api.py,sha256=Avy-2ageU3Ovr2grQc3q
|
|
|
216
225
|
perceptic_core_client/test/test_web_page_citation_metadata_api_dto.py,sha256=JLJZagxObwPPVsGajoUu_ADHI0o6Kq6hNywEB83hyy0,1632
|
|
217
226
|
perceptic_core_client/test/test_worker_event.py,sha256=Kj9yWYB3r_a2GKlvhnqAmlZYz0frnYpsoDgwWpcNgak,1840
|
|
218
227
|
perceptic_core_client/test/test_worker_metadata_dto.py,sha256=lbvKWvnwcKEfHHh9diRevdceGEJwgv3INVphqaxiAlw,1674
|
|
219
|
-
perceptic_core_client/test/test_worker_resource_api.py,sha256=
|
|
220
|
-
perceptic_core_client
|
|
221
|
-
perceptic_core_client-0.40.
|
|
222
|
-
perceptic_core_client-0.40.
|
|
223
|
-
perceptic_core_client-0.40.
|
|
228
|
+
perceptic_core_client/test/test_worker_resource_api.py,sha256=8mfcVQrYQ3ziSyhRuC2IPA9UvkvcOMgrqdGjcuOAkf0,2402
|
|
229
|
+
perceptic_core_client/test/test_worker_run_event_rating_secondary_id.py,sha256=yBAKncG29Z-cwfS9lCgS1Uu0N7-cVo5zpMDQUUlt-iU,1687
|
|
230
|
+
perceptic_core_client-0.40.999.dist-info/METADATA,sha256=_Pt2jpn8VSn7v9tTVdIdaOTTEvQ1nWErQ3_-_3a-b28,3607
|
|
231
|
+
perceptic_core_client-0.40.999.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
232
|
+
perceptic_core_client-0.40.999.dist-info/top_level.txt,sha256=wWF5_isd4ZU0SRPPhKKAxW4kJ9hYIBgLbcWn_y-c1tg,22
|
|
233
|
+
perceptic_core_client-0.40.999.dist-info/RECORD,,
|
|
File without changes
|
{perceptic_core_client-0.40.0.dist-info → perceptic_core_client-0.40.999.dist-info}/top_level.txt
RENAMED
|
File without changes
|