perceptic-core-client 0.13.0__py3-none-any.whl → 0.15.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.
Potentially problematic release.
This version of perceptic-core-client might be problematic. Click here for more details.
- perceptic_core_client/__init__.py +15 -0
- perceptic_core_client/api/__init__.py +1 -0
- perceptic_core_client/api/indexing_schedule_resource_api.py +2243 -0
- perceptic_core_client/models/__init__.py +14 -0
- perceptic_core_client/models/create_indexing_schedule_request.py +122 -0
- perceptic_core_client/models/create_indexing_schedule_response.py +93 -0
- perceptic_core_client/models/cron_trigger.py +106 -0
- perceptic_core_client/models/execution_trigger_reason.py +37 -0
- perceptic_core_client/models/get_indexing_schedule_response.py +91 -0
- perceptic_core_client/models/indexing_schedule_dto.py +118 -0
- perceptic_core_client/models/interval_trigger.py +92 -0
- perceptic_core_client/models/list_indexing_schedules_response.py +104 -0
- perceptic_core_client/models/list_schedule_executions_response.py +104 -0
- perceptic_core_client/models/on_upload_trigger.py +87 -0
- perceptic_core_client/models/schedule_execution_dto.py +104 -0
- perceptic_core_client/models/schedule_trigger.py +189 -0
- perceptic_core_client/models/update_indexing_schedule_request.py +127 -0
- perceptic_core_client/models/update_indexing_schedule_response.py +91 -0
- perceptic_core_client/test/test_create_indexing_schedule_request.py +66 -0
- perceptic_core_client/test/test_create_indexing_schedule_response.py +68 -0
- perceptic_core_client/test/test_cron_trigger.py +55 -0
- perceptic_core_client/test/test_execution_trigger_reason.py +33 -0
- perceptic_core_client/test/test_get_indexing_schedule_response.py +67 -0
- perceptic_core_client/test/test_indexing_schedule_dto.py +66 -0
- perceptic_core_client/test/test_indexing_schedule_resource_api.py +87 -0
- perceptic_core_client/test/test_interval_trigger.py +54 -0
- perceptic_core_client/test/test_list_indexing_schedules_response.py +71 -0
- perceptic_core_client/test/test_list_schedule_executions_response.py +61 -0
- perceptic_core_client/test/test_on_upload_trigger.py +51 -0
- perceptic_core_client/test/test_schedule_execution_dto.py +56 -0
- perceptic_core_client/test/test_schedule_trigger.py +58 -0
- perceptic_core_client/test/test_update_indexing_schedule_request.py +58 -0
- perceptic_core_client/test/test_update_indexing_schedule_response.py +67 -0
- {perceptic_core_client-0.13.0.dist-info → perceptic_core_client-0.15.0.dist-info}/METADATA +1 -1
- {perceptic_core_client-0.13.0.dist-info → perceptic_core_client-0.15.0.dist-info}/RECORD +37 -7
- {perceptic_core_client-0.13.0.dist-info → perceptic_core_client-0.15.0.dist-info}/WHEEL +0 -0
- {perceptic_core_client-0.13.0.dist-info → perceptic_core_client-0.15.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,54 @@
|
|
|
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.interval_trigger import IntervalTrigger
|
|
18
|
+
|
|
19
|
+
class TestIntervalTrigger(unittest.TestCase):
|
|
20
|
+
"""IntervalTrigger 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) -> IntervalTrigger:
|
|
29
|
+
"""Test IntervalTrigger
|
|
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 `IntervalTrigger`
|
|
34
|
+
"""
|
|
35
|
+
model = IntervalTrigger()
|
|
36
|
+
if include_optional:
|
|
37
|
+
return IntervalTrigger(
|
|
38
|
+
interval = '',
|
|
39
|
+
start_time = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
|
40
|
+
type = ''
|
|
41
|
+
)
|
|
42
|
+
else:
|
|
43
|
+
return IntervalTrigger(
|
|
44
|
+
interval = '',
|
|
45
|
+
)
|
|
46
|
+
"""
|
|
47
|
+
|
|
48
|
+
def testIntervalTrigger(self):
|
|
49
|
+
"""Test IntervalTrigger"""
|
|
50
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
51
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
52
|
+
|
|
53
|
+
if __name__ == '__main__':
|
|
54
|
+
unittest.main()
|
|
@@ -0,0 +1,71 @@
|
|
|
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.list_indexing_schedules_response import ListIndexingSchedulesResponse
|
|
18
|
+
|
|
19
|
+
class TestListIndexingSchedulesResponse(unittest.TestCase):
|
|
20
|
+
"""ListIndexingSchedulesResponse 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) -> ListIndexingSchedulesResponse:
|
|
29
|
+
"""Test ListIndexingSchedulesResponse
|
|
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 `ListIndexingSchedulesResponse`
|
|
34
|
+
"""
|
|
35
|
+
model = ListIndexingSchedulesResponse()
|
|
36
|
+
if include_optional:
|
|
37
|
+
return ListIndexingSchedulesResponse(
|
|
38
|
+
schedules = [
|
|
39
|
+
perceptic_core_client.models.indexing_schedule_dto.IndexingScheduleDto(
|
|
40
|
+
schedule_rid = '',
|
|
41
|
+
name = '',
|
|
42
|
+
description = '',
|
|
43
|
+
indexer_rid = '',
|
|
44
|
+
target_uri = '',
|
|
45
|
+
namespace = '',
|
|
46
|
+
target_minimum_version = 56,
|
|
47
|
+
indexing_settings = {
|
|
48
|
+
'key' : null
|
|
49
|
+
},
|
|
50
|
+
trigger = perceptic_core_client.models.schedule_trigger.ScheduleTrigger(),
|
|
51
|
+
enabled = True,
|
|
52
|
+
created_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
|
53
|
+
updated_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
|
54
|
+
last_executed_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
|
55
|
+
next_execution_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), )
|
|
56
|
+
],
|
|
57
|
+
total_count = 56,
|
|
58
|
+
next_offset = 56
|
|
59
|
+
)
|
|
60
|
+
else:
|
|
61
|
+
return ListIndexingSchedulesResponse(
|
|
62
|
+
)
|
|
63
|
+
"""
|
|
64
|
+
|
|
65
|
+
def testListIndexingSchedulesResponse(self):
|
|
66
|
+
"""Test ListIndexingSchedulesResponse"""
|
|
67
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
68
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
69
|
+
|
|
70
|
+
if __name__ == '__main__':
|
|
71
|
+
unittest.main()
|
|
@@ -0,0 +1,61 @@
|
|
|
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.list_schedule_executions_response import ListScheduleExecutionsResponse
|
|
18
|
+
|
|
19
|
+
class TestListScheduleExecutionsResponse(unittest.TestCase):
|
|
20
|
+
"""ListScheduleExecutionsResponse 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) -> ListScheduleExecutionsResponse:
|
|
29
|
+
"""Test ListScheduleExecutionsResponse
|
|
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 `ListScheduleExecutionsResponse`
|
|
34
|
+
"""
|
|
35
|
+
model = ListScheduleExecutionsResponse()
|
|
36
|
+
if include_optional:
|
|
37
|
+
return ListScheduleExecutionsResponse(
|
|
38
|
+
executions = [
|
|
39
|
+
perceptic_core_client.models.schedule_execution_dto.ScheduleExecutionDto(
|
|
40
|
+
execution_rid = '',
|
|
41
|
+
schedule_rid = '',
|
|
42
|
+
task_rid = '',
|
|
43
|
+
triggered_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
|
44
|
+
reason = 'SCHEDULED',
|
|
45
|
+
trigger_details = '', )
|
|
46
|
+
],
|
|
47
|
+
total_count = 56,
|
|
48
|
+
next_offset = 56
|
|
49
|
+
)
|
|
50
|
+
else:
|
|
51
|
+
return ListScheduleExecutionsResponse(
|
|
52
|
+
)
|
|
53
|
+
"""
|
|
54
|
+
|
|
55
|
+
def testListScheduleExecutionsResponse(self):
|
|
56
|
+
"""Test ListScheduleExecutionsResponse"""
|
|
57
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
58
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
59
|
+
|
|
60
|
+
if __name__ == '__main__':
|
|
61
|
+
unittest.main()
|
|
@@ -0,0 +1,51 @@
|
|
|
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.on_upload_trigger import OnUploadTrigger
|
|
18
|
+
|
|
19
|
+
class TestOnUploadTrigger(unittest.TestCase):
|
|
20
|
+
"""OnUploadTrigger 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) -> OnUploadTrigger:
|
|
29
|
+
"""Test OnUploadTrigger
|
|
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 `OnUploadTrigger`
|
|
34
|
+
"""
|
|
35
|
+
model = OnUploadTrigger()
|
|
36
|
+
if include_optional:
|
|
37
|
+
return OnUploadTrigger(
|
|
38
|
+
type = ''
|
|
39
|
+
)
|
|
40
|
+
else:
|
|
41
|
+
return OnUploadTrigger(
|
|
42
|
+
)
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
def testOnUploadTrigger(self):
|
|
46
|
+
"""Test OnUploadTrigger"""
|
|
47
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
48
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
49
|
+
|
|
50
|
+
if __name__ == '__main__':
|
|
51
|
+
unittest.main()
|
|
@@ -0,0 +1,56 @@
|
|
|
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.schedule_execution_dto import ScheduleExecutionDto
|
|
18
|
+
|
|
19
|
+
class TestScheduleExecutionDto(unittest.TestCase):
|
|
20
|
+
"""ScheduleExecutionDto 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) -> ScheduleExecutionDto:
|
|
29
|
+
"""Test ScheduleExecutionDto
|
|
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 `ScheduleExecutionDto`
|
|
34
|
+
"""
|
|
35
|
+
model = ScheduleExecutionDto()
|
|
36
|
+
if include_optional:
|
|
37
|
+
return ScheduleExecutionDto(
|
|
38
|
+
execution_rid = '',
|
|
39
|
+
schedule_rid = '',
|
|
40
|
+
task_rid = '',
|
|
41
|
+
triggered_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
|
42
|
+
reason = 'SCHEDULED',
|
|
43
|
+
trigger_details = ''
|
|
44
|
+
)
|
|
45
|
+
else:
|
|
46
|
+
return ScheduleExecutionDto(
|
|
47
|
+
)
|
|
48
|
+
"""
|
|
49
|
+
|
|
50
|
+
def testScheduleExecutionDto(self):
|
|
51
|
+
"""Test ScheduleExecutionDto"""
|
|
52
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
53
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
54
|
+
|
|
55
|
+
if __name__ == '__main__':
|
|
56
|
+
unittest.main()
|
|
@@ -0,0 +1,58 @@
|
|
|
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.schedule_trigger import ScheduleTrigger
|
|
18
|
+
|
|
19
|
+
class TestScheduleTrigger(unittest.TestCase):
|
|
20
|
+
"""ScheduleTrigger 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) -> ScheduleTrigger:
|
|
29
|
+
"""Test ScheduleTrigger
|
|
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 `ScheduleTrigger`
|
|
34
|
+
"""
|
|
35
|
+
model = ScheduleTrigger()
|
|
36
|
+
if include_optional:
|
|
37
|
+
return ScheduleTrigger(
|
|
38
|
+
type = '',
|
|
39
|
+
expression = '0 0 * * *',
|
|
40
|
+
timezone = 'America/New_York',
|
|
41
|
+
interval = '',
|
|
42
|
+
start_time = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f')
|
|
43
|
+
)
|
|
44
|
+
else:
|
|
45
|
+
return ScheduleTrigger(
|
|
46
|
+
expression = '0 0 * * *',
|
|
47
|
+
timezone = 'America/New_York',
|
|
48
|
+
interval = '',
|
|
49
|
+
)
|
|
50
|
+
"""
|
|
51
|
+
|
|
52
|
+
def testScheduleTrigger(self):
|
|
53
|
+
"""Test ScheduleTrigger"""
|
|
54
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
55
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
56
|
+
|
|
57
|
+
if __name__ == '__main__':
|
|
58
|
+
unittest.main()
|
|
@@ -0,0 +1,58 @@
|
|
|
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.update_indexing_schedule_request import UpdateIndexingScheduleRequest
|
|
18
|
+
|
|
19
|
+
class TestUpdateIndexingScheduleRequest(unittest.TestCase):
|
|
20
|
+
"""UpdateIndexingScheduleRequest 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) -> UpdateIndexingScheduleRequest:
|
|
29
|
+
"""Test UpdateIndexingScheduleRequest
|
|
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 `UpdateIndexingScheduleRequest`
|
|
34
|
+
"""
|
|
35
|
+
model = UpdateIndexingScheduleRequest()
|
|
36
|
+
if include_optional:
|
|
37
|
+
return UpdateIndexingScheduleRequest(
|
|
38
|
+
name = '',
|
|
39
|
+
description = '',
|
|
40
|
+
target_minimum_version = 56,
|
|
41
|
+
indexing_settings = {
|
|
42
|
+
'key' : null
|
|
43
|
+
},
|
|
44
|
+
trigger = perceptic_core_client.models.schedule_trigger.ScheduleTrigger(),
|
|
45
|
+
enabled = True
|
|
46
|
+
)
|
|
47
|
+
else:
|
|
48
|
+
return UpdateIndexingScheduleRequest(
|
|
49
|
+
)
|
|
50
|
+
"""
|
|
51
|
+
|
|
52
|
+
def testUpdateIndexingScheduleRequest(self):
|
|
53
|
+
"""Test UpdateIndexingScheduleRequest"""
|
|
54
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
55
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
56
|
+
|
|
57
|
+
if __name__ == '__main__':
|
|
58
|
+
unittest.main()
|
|
@@ -0,0 +1,67 @@
|
|
|
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.update_indexing_schedule_response import UpdateIndexingScheduleResponse
|
|
18
|
+
|
|
19
|
+
class TestUpdateIndexingScheduleResponse(unittest.TestCase):
|
|
20
|
+
"""UpdateIndexingScheduleResponse 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) -> UpdateIndexingScheduleResponse:
|
|
29
|
+
"""Test UpdateIndexingScheduleResponse
|
|
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 `UpdateIndexingScheduleResponse`
|
|
34
|
+
"""
|
|
35
|
+
model = UpdateIndexingScheduleResponse()
|
|
36
|
+
if include_optional:
|
|
37
|
+
return UpdateIndexingScheduleResponse(
|
|
38
|
+
schedule = perceptic_core_client.models.indexing_schedule_dto.IndexingScheduleDto(
|
|
39
|
+
schedule_rid = '',
|
|
40
|
+
name = '',
|
|
41
|
+
description = '',
|
|
42
|
+
indexer_rid = '',
|
|
43
|
+
target_uri = '',
|
|
44
|
+
namespace = '',
|
|
45
|
+
target_minimum_version = 56,
|
|
46
|
+
indexing_settings = {
|
|
47
|
+
'key' : null
|
|
48
|
+
},
|
|
49
|
+
trigger = perceptic_core_client.models.schedule_trigger.ScheduleTrigger(),
|
|
50
|
+
enabled = True,
|
|
51
|
+
created_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
|
52
|
+
updated_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
|
53
|
+
last_executed_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
|
54
|
+
next_execution_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), )
|
|
55
|
+
)
|
|
56
|
+
else:
|
|
57
|
+
return UpdateIndexingScheduleResponse(
|
|
58
|
+
)
|
|
59
|
+
"""
|
|
60
|
+
|
|
61
|
+
def testUpdateIndexingScheduleResponse(self):
|
|
62
|
+
"""Test UpdateIndexingScheduleResponse"""
|
|
63
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
64
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
65
|
+
|
|
66
|
+
if __name__ == '__main__':
|
|
67
|
+
unittest.main()
|
|
@@ -1,20 +1,21 @@
|
|
|
1
|
-
perceptic_core_client/__init__.py,sha256=
|
|
1
|
+
perceptic_core_client/__init__.py,sha256=rBCw4bn1qCUnwtniYpxcKGXT_c7fT5Exra-Jx8Bv8_E,8434
|
|
2
2
|
perceptic_core_client/api_client.py,sha256=0YnNMx2c54WynhY6VS8kV3OM2KPs65t3HjxMxz1Q0Lo,27543
|
|
3
3
|
perceptic_core_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
4
|
perceptic_core_client/configuration.py,sha256=SQSH2SmsosPzZWLBDCL__iXOYakIfsIi23fdu-TUu74,17975
|
|
5
5
|
perceptic_core_client/exceptions.py,sha256=mAFFNIdOi4nl0A5oxKKACRbtA1uyMozS7dEBLGHUggs,6498
|
|
6
6
|
perceptic_core_client/rest.py,sha256=VMj2msOtIW-VbmGTbC3oBll9kNsQmI_Q-y_EadfJMio,9502
|
|
7
|
-
perceptic_core_client/api/__init__.py,sha256=
|
|
7
|
+
perceptic_core_client/api/__init__.py,sha256=ERx8GFWs-VbC74Is8TqRr9ejYRtSW4RYN1dAhjgMt7Y,871
|
|
8
8
|
perceptic_core_client/api/connection_resource_api.py,sha256=aQ5eMPTL9_3xEcb9-9B4Pcuzeg707YalDuWmGsopQP0,21745
|
|
9
9
|
perceptic_core_client/api/file_system_contents_resource_api.py,sha256=v-tY95knuCJzdQCUKssX7WIy5htXZ8UCe23vo12fb-Q,88560
|
|
10
10
|
perceptic_core_client/api/file_system_resource_api.py,sha256=7wDk7cs60UQmTaGkWNK9qdFEiGvrBUa6H21FoItf43o,42398
|
|
11
11
|
perceptic_core_client/api/indexer_resource_api.py,sha256=nNeyrB0wMOetwDO92jfkv2PtQLaW5XUrsHUhDwVBhUM,20059
|
|
12
|
+
perceptic_core_client/api/indexing_schedule_resource_api.py,sha256=FJOZsv_mQ2yeIv-vMtQrnvIZceUftjJaLWGtg8r65Gw,86033
|
|
12
13
|
perceptic_core_client/api/indexing_task_resource_api.py,sha256=nHDH5bEdTUzw8qsS8FvmCEErF6JTH4vGI4JC6mmylD8,44317
|
|
13
14
|
perceptic_core_client/api/tag_resource_api.py,sha256=QddYPHLmQgjOXEiqRh2ESAorKlgyMXdzApnbAMyv4dw,37868
|
|
14
15
|
perceptic_core_client/api/uri_resource_api.py,sha256=EYN6xSgDWJoUjt3DVp6Q9OhKYZoUI6PZTTThKumnFvQ,92626
|
|
15
16
|
perceptic_core_client/api/user_resource_api.py,sha256=LrqvNebOhBI_EoLTZpCC7OHYPomDoctWKJkv173W2p8,10222
|
|
16
17
|
perceptic_core_client/api/worker_resource_api.py,sha256=qyzp9_qMZICVpKtEyy70Gs5ps36Cmgl9lZLllOXkNOI,66424
|
|
17
|
-
perceptic_core_client/models/__init__.py,sha256=
|
|
18
|
+
perceptic_core_client/models/__init__.py,sha256=xnml2PfLat7r6WK-BhhYsGwYeeBM_lRdUjlMe2tSpJI,7004
|
|
18
19
|
perceptic_core_client/models/action_type.py,sha256=N_ESOrMP83pxJKGJvrBH_T0xDjSmHoISZ01SB81Oomc,786
|
|
19
20
|
perceptic_core_client/models/azure_blob_connection_settings_api_dto.py,sha256=3tIHzJKXkvypEgQZRnM_FoVYNI3cwbbLhggl09f3o54,4297
|
|
20
21
|
perceptic_core_client/models/azure_blob_file_system_root_metadata_api_dto.py,sha256=LCrHnns_v-klQ08Pa4EO6mx0Lg0WwJv7KMCtxJwjARE,2782
|
|
@@ -25,16 +26,21 @@ perceptic_core_client/models/create_connection_response.py,sha256=a89PYs-gW68WJi
|
|
|
25
26
|
perceptic_core_client/models/create_file_system_response.py,sha256=264-WVVkMeKq1sTwgsVd27z48TuG-2DPW26-tqdWaK0,2649
|
|
26
27
|
perceptic_core_client/models/create_folder_request.py,sha256=M9AoxG24IHCX8IyUJfdIRXQMkBMTSXO2QrKT4x1ncmU,2613
|
|
27
28
|
perceptic_core_client/models/create_folder_response.py,sha256=MZ3DpsR50slSTNHGQ0JhL0EHkDowjAM1mydfFgdlpmA,2617
|
|
29
|
+
perceptic_core_client/models/create_indexing_schedule_request.py,sha256=izKqNL-qJC5Cs-IthDslqXj3g1hLwBVCt-ViYGqk5Ac,5006
|
|
30
|
+
perceptic_core_client/models/create_indexing_schedule_response.py,sha256=UzkZ04TpQKXgYXVPXGW4jtp_F80BCK9M5P32umVYDBA,3094
|
|
28
31
|
perceptic_core_client/models/create_indexing_task_request.py,sha256=7LHNYjKGYNZA07af_4hcp5HUnRASpcu_IItt5589Dl4,3159
|
|
29
32
|
perceptic_core_client/models/create_indexing_task_response.py,sha256=tYqelsYuOMjl2kdzjIDeHoqfT3Zf9Jaz2qrZGWpAiqU,3113
|
|
30
33
|
perceptic_core_client/models/create_managed_file_system_request.py,sha256=5b8zp0-Z5lDMaHeNi1k2HG8JbZzYrAeDV1RUnSASPN8,2700
|
|
31
34
|
perceptic_core_client/models/create_remote_file_system_request.py,sha256=oNFfhOo2VCteERUfvfiAlkYC8vUiqEA2X1g1SXWk8ZU,3331
|
|
32
35
|
perceptic_core_client/models/create_tag_request.py,sha256=hEqBYkuu6wBE86fOgEK-cDFgAlgunSLt6dmtaOVRbQs,2644
|
|
33
36
|
perceptic_core_client/models/create_tag_response.py,sha256=ksuuXOjnN4K0bwurqaKkF2-GGj_BVP0Ir2FRGwF32YQ,2585
|
|
37
|
+
perceptic_core_client/models/cron_trigger.py,sha256=fwK_w7YZwEBQ5DoEO7ewnsOxD5AEuKtLltnuUPPlGuw,3483
|
|
38
|
+
perceptic_core_client/models/execution_trigger_reason.py,sha256=iWU5xJSsmHXH2blLOEdybRQBBvP6PdcKsHQyzLlArMU,822
|
|
34
39
|
perceptic_core_client/models/file_system_api_dto.py,sha256=j21xSms1nVxnER_RZ_2EjrZKVQRWiASmrUAirLOqxYk,6835
|
|
35
40
|
perceptic_core_client/models/file_system_root_metadata_api_dto.py,sha256=OwMBChDo62Wi3yN_9WfWT4jIgLdwhkh44jDNJG86nCo,7397
|
|
36
41
|
perceptic_core_client/models/get_connection_response.py,sha256=8BoDWakNraL2I01YqIMvuF6y8hE586g76LnhBWSdyiU,2899
|
|
37
42
|
perceptic_core_client/models/get_indexer_response.py,sha256=_tnkUDC4ZGBvly6n4zDyQfivf31pSW4x3LSZeA0SI_s,2835
|
|
43
|
+
perceptic_core_client/models/get_indexing_schedule_response.py,sha256=r3wVmQR9Js_GIPr76hXBEvFzJsqi1N3aXHbBuH6y2jo,2917
|
|
38
44
|
perceptic_core_client/models/get_indexing_task_response.py,sha256=nm0vOzonXB9CGtSmfAtTsb_QpCRjvICh0WY_2VDAHE4,2849
|
|
39
45
|
perceptic_core_client/models/get_metadata_response.py,sha256=9rH4_dKneEYIuvgXYxri4mOYHCLxx1AyHUgXEilng0c,2885
|
|
40
46
|
perceptic_core_client/models/get_parent_response.py,sha256=piDcT-pwFEgcoZB-pYGzC6-7xHscXh6xsOheV3IjRJ4,2546
|
|
@@ -47,18 +53,23 @@ perceptic_core_client/models/get_workers_response.py,sha256=DZ80TAIg6gk67hFzF7JQ
|
|
|
47
53
|
perceptic_core_client/models/indexer_dto.py,sha256=gATmR19wmiiofWTmZHdvKxorRbTKKQRQQeq4qUwCGIk,3077
|
|
48
54
|
perceptic_core_client/models/indexing_action_dto.py,sha256=5nkJX_MQ_Gj1Hf53rUgSP6_0ve6FFvIW6cMAXdixJf4,3844
|
|
49
55
|
perceptic_core_client/models/indexing_action_status.py,sha256=bFbXdXE4haR-d0c6_1wg8x0VR34oGqHCx1spXqUA8T8,858
|
|
56
|
+
perceptic_core_client/models/indexing_schedule_dto.py,sha256=Dw3vWVGtbDqtH7Obr7ndXiDwNVr4_Th6-WuOBkKgE_4,4716
|
|
50
57
|
perceptic_core_client/models/indexing_task_dto.py,sha256=yppEm19qsmfcdU9c1gQcSywhfllZ-FyMBeyPUHymkcU,3846
|
|
51
58
|
perceptic_core_client/models/indexing_task_status.py,sha256=QgFt3FMt__c0G784fTCBOj1rMGb_Q90KHu0hKShwsVA,2542
|
|
52
59
|
perceptic_core_client/models/info_event.py,sha256=db9651B1JpokCTsG_GFht77lbcL3gsr_6t2OYtMIlqY,2744
|
|
60
|
+
perceptic_core_client/models/interval_trigger.py,sha256=ln-iUgKe9EQddt49-CRdSsZFNvtc0pxNe0FNWVpE1GE,2784
|
|
53
61
|
perceptic_core_client/models/json_node.py,sha256=RSRg1_3scVGIJuYs74PQg48ZeEebrUBzNfHV5qM5exw,4978
|
|
54
62
|
perceptic_core_client/models/json_node_type.py,sha256=2K1l2OqsS9vuYpYN3HsrL0l5-LbJv0AZ_k5mRf4eczs,924
|
|
55
63
|
perceptic_core_client/models/list_all_file_systems_response.py,sha256=IYy-8IxsCof7mi9LH970LZFU01BCeq0azknyBomLZgQ,3337
|
|
56
64
|
perceptic_core_client/models/list_file_system_response.py,sha256=TYGMnL-FatLzoWWe3hV6WBeTlSG7xIEEzTwc3dl-LLM,3249
|
|
57
65
|
perceptic_core_client/models/list_indexers_response.py,sha256=-Knru12OXvSw2DVZqRKmnVrnzxr4S0A4btGZZ62irDY,3189
|
|
58
66
|
perceptic_core_client/models/list_indexing_actions_response.py,sha256=xLe_lKWoh27UNbKI-LaFYb_vzCAZH18QLenkJHdlQ50,4541
|
|
67
|
+
perceptic_core_client/models/list_indexing_schedules_response.py,sha256=qQtIy3xPNFKJr4I41UHf4o7SoNNgAPs7bo7n5Hp4VRM,3659
|
|
68
|
+
perceptic_core_client/models/list_schedule_executions_response.py,sha256=yC4TgZkB6ksAw0vHex7Rdo1u570QVwcDwV3u_4pjBog,3679
|
|
59
69
|
perceptic_core_client/models/managed_file_system_api_dto.py,sha256=_aVCyjICRFcQaMFBmOohRM3kxZuHv6Buk6f07o-4yjw,2832
|
|
60
70
|
perceptic_core_client/models/me_response.py,sha256=k_rzVuYqTbNNZqxUcKkfQ6lt2LobkqZ0EARQM0YvCsM,3010
|
|
61
71
|
perceptic_core_client/models/model_schema.py,sha256=Cl1Q8pTVD_fEc9eGNOXEf5H_xsYorcnxel0bJa8eQPo,4246
|
|
72
|
+
perceptic_core_client/models/on_upload_trigger.py,sha256=BUc5nKPZ-ZoAbKKtO4HwdttQ1pjT0KycTT4-on8WBXQ,2530
|
|
62
73
|
perceptic_core_client/models/paged_list_file_system_response.py,sha256=RqY3rfmucbx4Ya89DDVTU2hC4DAJHZTdi7ronC7fmnI,3440
|
|
63
74
|
perceptic_core_client/models/post_worker_run_request.py,sha256=6bfgf2Yrwpc46X6c_NL2Mlf9YyKUBzk_kl9o26COtW8,2525
|
|
64
75
|
perceptic_core_client/models/post_worker_run_response.py,sha256=zOpSem6C2F8of_AM4LZCY2C4fpa8aB3g5iy2bCrfRjU,2601
|
|
@@ -72,8 +83,12 @@ perceptic_core_client/models/resource_type_dto.py,sha256=EZDcHHHbMS4p5uR6HXlFbpS
|
|
|
72
83
|
perceptic_core_client/models/run_status_dto.py,sha256=tbQwNIc-MHBtjI_46nwgpt7mcAzb846ilp2X3qLFbus,1034
|
|
73
84
|
perceptic_core_client/models/s3_connection_settings_api_dto.py,sha256=-a13ZHx4WR0lEHC-k-vkBEG2xddKYYlvLMUmdlWt4LA,4188
|
|
74
85
|
perceptic_core_client/models/s3_file_system_root_metadata_api_dto.py,sha256=UXf73tDPxpAKeudvR1sOmd0PBvhtQGemElPT-KpK72c,2739
|
|
86
|
+
perceptic_core_client/models/schedule_execution_dto.py,sha256=jqdmalwpmEJEjQykku0fj9XIfNZl7Hzyhzlxd5H8XxU,3673
|
|
87
|
+
perceptic_core_client/models/schedule_trigger.py,sha256=SCESwU6AAVbGmHj35zyMJNoqN38Eo5awUGVAHi_VH0U,7555
|
|
75
88
|
perceptic_core_client/models/schema_location.py,sha256=ONpXyUVxP7dqw_vlbpZEKLCYEBWLA0rSf9WfydDDPsA,2803
|
|
76
89
|
perceptic_core_client/models/start_execution_response.py,sha256=6_LKEKrF_8wZcrwC5CdZ0_-BFlj1HgTgLqTo1NgcbvI,2845
|
|
90
|
+
perceptic_core_client/models/update_indexing_schedule_request.py,sha256=FGod91sjIhQX0ZH4iQGZTpTc_2I1DPIT6n3_6dEgqFM,5076
|
|
91
|
+
perceptic_core_client/models/update_indexing_schedule_response.py,sha256=3TVX_PISu1J1NpIvjB6CzvNoAevQPnr0YGqMEWE6mXs,2929
|
|
77
92
|
perceptic_core_client/models/upload_file_to_managed_file_system_response.py,sha256=JvwpcS4IZTpkgcYmSNQX67Ex8O0OfPLygsaGIUTFy9g,2691
|
|
78
93
|
perceptic_core_client/models/worker_event.py,sha256=QztjNPMatUO4PLpSbOguRA9Ce4YzybIplB2m4p4kEZw,7543
|
|
79
94
|
perceptic_core_client/models/worker_metadata_dto.py,sha256=S9jsLoj3df5H_40EV7KGh7KoEamWUAZbIaDgCm27QAA,2986
|
|
@@ -89,18 +104,23 @@ perceptic_core_client/test/test_create_connection_response.py,sha256=FLeeBFLE1YS
|
|
|
89
104
|
perceptic_core_client/test/test_create_file_system_response.py,sha256=jWEZe9pxSOqERTzPNJHeBJO9ld0e2k-TiY3LDnqGH4Y,1548
|
|
90
105
|
perceptic_core_client/test/test_create_folder_request.py,sha256=0wVZY_lEvkM0Zy2O_VSnUMl1rd5E9DtvSNJ0DLmthCc,1483
|
|
91
106
|
perceptic_core_client/test/test_create_folder_response.py,sha256=kuN57ZCvE7GmFHgyQzsVmpgP_90FMefrQ5UnN6pEW4Q,1495
|
|
107
|
+
perceptic_core_client/test/test_create_indexing_schedule_request.py,sha256=I18chyFRb4xVSQ1g2LWkAS06bR-XQy_Me69DbZrMTyw,2452
|
|
108
|
+
perceptic_core_client/test/test_create_indexing_schedule_response.py,sha256=DhtbckQ6ahFfC7SCB3ydV3v7PvjzEmIjyo9PnM-60eI,2694
|
|
92
109
|
perceptic_core_client/test/test_create_indexing_task_request.py,sha256=w_xadH52NGh4gsrRyTcTOFqQGqEXBRWuOAu7qJnOQdc,1785
|
|
93
110
|
perceptic_core_client/test/test_create_indexing_task_response.py,sha256=KS4chfWNKFmGCiyQLlP_KhKrIq8qAa7hd4bOfSLA5cM,2234
|
|
94
111
|
perceptic_core_client/test/test_create_managed_file_system_request.py,sha256=xOqVlAaInFiwWQiFRnKGlcv2NE5PiUmDEqyv1UOWVj0,1644
|
|
95
112
|
perceptic_core_client/test/test_create_remote_file_system_request.py,sha256=mfyL3YgNmXCLid5QFzdxPFH9GdxD1pZs_MuQrnNr2Xc,1791
|
|
96
113
|
perceptic_core_client/test/test_create_tag_request.py,sha256=0g3PH3vW49OxinF5aeO2Bwg0iGCKmQ4evn1k-Uq19Tw,1474
|
|
97
114
|
perceptic_core_client/test/test_create_tag_response.py,sha256=szECno-xh_X3Pb9RsMKq5kTzyE016AQ-qRvk_JzLnNk,1455
|
|
115
|
+
perceptic_core_client/test/test_cron_trigger.py,sha256=-Y2n1xcm7fXzS14kxKPcFVHmi4vWF1fegVGoniNG9-I,1557
|
|
116
|
+
perceptic_core_client/test/test_execution_trigger_reason.py,sha256=hls82eipQSSLh2MoiNpoPFb1Ond0lBLL9DOX3zBZraY,802
|
|
98
117
|
perceptic_core_client/test/test_file_system_api_dto.py,sha256=_c9QeVvfXgguaylNvSgTUwB_PPZiW_5lraKcG_5hch0,1687
|
|
99
118
|
perceptic_core_client/test/test_file_system_contents_resource_api.py,sha256=d6QvcBOqyH7TxQNWdiV5FgRQNIeOXdzEmM72fLwDPEY,1818
|
|
100
119
|
perceptic_core_client/test/test_file_system_resource_api.py,sha256=44shHGsmfMwAuxBFAEjmD8Trys0ZgestGR4zajPAoK8,1342
|
|
101
120
|
perceptic_core_client/test/test_file_system_root_metadata_api_dto.py,sha256=A5LCyJL0QC7-F7baiJAayX2ZdaI1kjqYZ_Jnj8czq5o,1658
|
|
102
121
|
perceptic_core_client/test/test_get_connection_response.py,sha256=tuaHMt5AkwSykj_nI6HE-jPLxbinBi-arJZzP_CeeVU,1824
|
|
103
122
|
perceptic_core_client/test/test_get_indexer_response.py,sha256=AhkzglY8FwgMU9gZgC46eC43jFOXYV_vf0c3WS06YIE,1664
|
|
123
|
+
perceptic_core_client/test/test_get_indexing_schedule_response.py,sha256=1F8uOEBwdx-fZuQ6Z5zvUwYY929_j07XRiYpb5_K_iw,2623
|
|
104
124
|
perceptic_core_client/test/test_get_indexing_task_response.py,sha256=2RhsjRfcu5x5aLekdjOK0G6ooGruq1k4uEGUlqliiVY,2135
|
|
105
125
|
perceptic_core_client/test/test_get_metadata_response.py,sha256=f29pWMt_KNAPYlJnZ1ugEf_JRBosJW8Z150HOdk4QtY,1989
|
|
106
126
|
perceptic_core_client/test/test_get_parent_response.py,sha256=uPwSbtoQ18IlNEpnWTE7gMS07qoYEwHL1T9tMdsOIL4,1454
|
|
@@ -114,19 +134,25 @@ perceptic_core_client/test/test_indexer_dto.py,sha256=mjhqidl61JrXVM6UbfXE1tzsLs
|
|
|
114
134
|
perceptic_core_client/test/test_indexer_resource_api.py,sha256=coFEZkP2tcnVg6MO_18o1USjUwBg-fS2zRjQcjbVz-A,955
|
|
115
135
|
perceptic_core_client/test/test_indexing_action_dto.py,sha256=A9jt72PZogCkDk-nG4GOp4FjOzu-hxMsmBFkodFbSv0,1751
|
|
116
136
|
perceptic_core_client/test/test_indexing_action_status.py,sha256=ZQ0bv6oEE5xzbiXR_Oq812XmUrreU1oioRx-OfR2peg,788
|
|
137
|
+
perceptic_core_client/test/test_indexing_schedule_dto.py,sha256=XQS70TEjCWUuZOyX73s19X0vFJRASfcbyp9JyzlKAjQ,2347
|
|
138
|
+
perceptic_core_client/test/test_indexing_schedule_resource_api.py,sha256=6nK0TA8zEuEjLsf7aSDyUe1tyVdHkgNoktqWbGoCVu4,2067
|
|
117
139
|
perceptic_core_client/test/test_indexing_task_dto.py,sha256=4LSPu_AoLgeAKoJnRW3dDB7z9xijuqCKhatGHOb4uGc,1897
|
|
118
140
|
perceptic_core_client/test/test_indexing_task_resource_api.py,sha256=3pjEoxSJl7SCxFsUORUHdhDDZTdVvNXEaqiQK_7T3Lg,1310
|
|
119
141
|
perceptic_core_client/test/test_indexing_task_status.py,sha256=mM7GA47e4_PrWMjYPuph2Cne00AwM7K7a_gEH5rPIwQ,1464
|
|
120
142
|
perceptic_core_client/test/test_info_event.py,sha256=g7tdVz5LgKv_73J5ARvTbXjy7KpRHz4Yo2_wpJLMLWM,1416
|
|
143
|
+
perceptic_core_client/test/test_interval_trigger.py,sha256=4LtBbdG_GzjV0gT8mUvPbV1DdnzKzhuHItLvyd7E1dA,1596
|
|
121
144
|
perceptic_core_client/test/test_json_node.py,sha256=PSqWJ-4Ho-C5lVLLSiSpN8DROm0r-I0s0-R8cwGV9mU,2049
|
|
122
145
|
perceptic_core_client/test/test_json_node_type.py,sha256=8rP20yxdJKWDcYGdyGGBvaHqDOX6ymT6Ug4mVoCLcA0,732
|
|
123
146
|
perceptic_core_client/test/test_list_all_file_systems_response.py,sha256=QphgmQkH-piXZag4aNphRy21oG3K7l7wczJ8PQI9Sz4,1687
|
|
124
147
|
perceptic_core_client/test/test_list_file_system_response.py,sha256=VzQaq3P2grKccE_ny13gM43sNCqdDB3-dJCbSjiCM6U,2119
|
|
125
148
|
perceptic_core_client/test/test_list_indexers_response.py,sha256=DI3mJ8igl3TAvZcivQGWkbGb2cR2vyzzmiXyLEwsY9A,1753
|
|
126
149
|
perceptic_core_client/test/test_list_indexing_actions_response.py,sha256=O1StbmwuTNRC77KRJ2ckNXk1k-LHZQTM02HBepFC_Ok,2361
|
|
150
|
+
perceptic_core_client/test/test_list_indexing_schedules_response.py,sha256=egVcT3K1IoYFNwzh9jKm0V_GyMFsvr5G2qBnr6S-d9g,2824
|
|
151
|
+
perceptic_core_client/test/test_list_schedule_executions_response.py,sha256=k-rbXYjVdlejcJMafhjoJjioBPCmwQUPr4mURE5tW5s,2140
|
|
127
152
|
perceptic_core_client/test/test_managed_file_system_api_dto.py,sha256=_GVm3ymbXzKh3fP3a2FNhSIUHWobPrRkHX1f7zcLZLs,1613
|
|
128
153
|
perceptic_core_client/test/test_me_response.py,sha256=NhLaiooL6lhhcyxgxezMBl9EJZQDOkEtHlka0MCBSzE,1494
|
|
129
154
|
perceptic_core_client/test/test_model_schema.py,sha256=TAZLQ79pitZP5U6jOmYBT_2-bmUfnCv4zSaNyhsuz2k,1950
|
|
155
|
+
perceptic_core_client/test/test_on_upload_trigger.py,sha256=ZcWuPWj_qhFgW7zHry74zSBo8W-cbyfIggJbVeeyYOA,1428
|
|
130
156
|
perceptic_core_client/test/test_paged_list_file_system_response.py,sha256=r7CbRFFG19IdcPqjVwO2yiHfNGc_DFaPBs7VtZZQf14,2341
|
|
131
157
|
perceptic_core_client/test/test_post_worker_run_request.py,sha256=FxIpvUHxCJXPKbjUL361J8k0J4fB3kIF3Q9vpFiNWD4,1524
|
|
132
158
|
perceptic_core_client/test/test_post_worker_run_response.py,sha256=rG0x1tul3NFPpjhKQi-p379nHo_H6jF69cVKM5WHpH0,1504
|
|
@@ -140,16 +166,20 @@ perceptic_core_client/test/test_resource_type_dto.py,sha256=R6svWWdg9-Cgw1t5bHMM
|
|
|
140
166
|
perceptic_core_client/test/test_run_status_dto.py,sha256=KKic8RUI9AmIt3UrXM_t1fBiOi80aQCTQyLae9H8kkM,732
|
|
141
167
|
perceptic_core_client/test/test_s3_connection_settings_api_dto.py,sha256=oBLhakZwdiOlVA0WxUWbL4rxrbm2sKmpXeJlLgGolWU,1812
|
|
142
168
|
perceptic_core_client/test/test_s3_file_system_root_metadata_api_dto.py,sha256=KqD_sboaXHtW5epiRw6xhtyUs2L3UF3YtaY8HgXbM4A,1646
|
|
169
|
+
perceptic_core_client/test/test_schedule_execution_dto.py,sha256=CoJKdOPyCyWPE7WA39fJUlZ_Cc-oUb7WB-ARnU1OT2s,1748
|
|
170
|
+
perceptic_core_client/test/test_schedule_trigger.py,sha256=EZLrcko-4mOkIyo6UZrQsZS4oAGEAAumGXufhPbwofk,1774
|
|
143
171
|
perceptic_core_client/test/test_schema_location.py,sha256=lEe3E-VJLQ8UtvpImmQIq1DnsaeCQq3RTNCM1QdqbfI,1514
|
|
144
172
|
perceptic_core_client/test/test_start_execution_response.py,sha256=1dpZ3bQIXpMyG8HgCMqePY_hkHZqc_IIc4m2-z4Bg-E,2122
|
|
145
173
|
perceptic_core_client/test/test_tag_resource_api.py,sha256=31SI2zsb26Vrill_w0vZNaq-tqCev4Dsnf2chgiXjOo,1162
|
|
174
|
+
perceptic_core_client/test/test_update_indexing_schedule_request.py,sha256=9SLP1UdxJbNtB55N8rAH3Bk5BP2nh49oIhYOv78UM8Y,1893
|
|
175
|
+
perceptic_core_client/test/test_update_indexing_schedule_response.py,sha256=U_9OLaVswJC4tJ6Yehhl8Veib8Io-P81NcQ-2-uv7wA,2659
|
|
146
176
|
perceptic_core_client/test/test_upload_file_to_managed_file_system_response.py,sha256=Mpmwqqz0m3p6b9Ofa3nC9ar9tG8FwHYBf9QkhLA54Ho,1705
|
|
147
177
|
perceptic_core_client/test/test_uri_resource_api.py,sha256=ZJuDvaRmse1i6l02TdGPtaOo_XcehBrwmSSYZlGNFZo,1895
|
|
148
178
|
perceptic_core_client/test/test_user_resource_api.py,sha256=yCzM6n1J0xjbLBWW1hcE6m6epT8u8Atck7fnGoOdwBw,817
|
|
149
179
|
perceptic_core_client/test/test_worker_event.py,sha256=f8zBXEkGhya6Tu0quq9p3Mpm1exxMr9z21q72JvYNLg,1699
|
|
150
180
|
perceptic_core_client/test/test_worker_metadata_dto.py,sha256=lbvKWvnwcKEfHHh9diRevdceGEJwgv3INVphqaxiAlw,1674
|
|
151
181
|
perceptic_core_client/test/test_worker_resource_api.py,sha256=1kCAFp5_mHmrQrUKgp6hKcriNlwvtq5J8dCvAFTMKQM,1794
|
|
152
|
-
perceptic_core_client-0.
|
|
153
|
-
perceptic_core_client-0.
|
|
154
|
-
perceptic_core_client-0.
|
|
155
|
-
perceptic_core_client-0.
|
|
182
|
+
perceptic_core_client-0.15.0.dist-info/METADATA,sha256=GfL3nlcCGUnohQPCNaw9f_ThoAGT-xxnf_u-1xbvCeE,3605
|
|
183
|
+
perceptic_core_client-0.15.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
184
|
+
perceptic_core_client-0.15.0.dist-info/top_level.txt,sha256=wWF5_isd4ZU0SRPPhKKAxW4kJ9hYIBgLbcWn_y-c1tg,22
|
|
185
|
+
perceptic_core_client-0.15.0.dist-info/RECORD,,
|
|
File without changes
|
{perceptic_core_client-0.13.0.dist-info → perceptic_core_client-0.15.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|