perceptic-core-client 0.26.0__py3-none-any.whl → 0.27.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.
Potentially problematic release.
This version of perceptic-core-client might be problematic. Click here for more details.
- perceptic_core_client/__init__.py +4 -0
- perceptic_core_client/api/tag_resource_api.py +493 -0
- perceptic_core_client/api/uri_resource_api.py +568 -0
- perceptic_core_client/models/__init__.py +2 -0
- perceptic_core_client/models/add_tag_to_file_request.py +87 -0
- perceptic_core_client/models/remove_tag_from_file_request.py +87 -0
- perceptic_core_client/models/resource_metadata_dto.py +4 -2
- perceptic_core_client/test/test_add_tag_to_file_request.py +51 -0
- perceptic_core_client/test/test_get_metadata_response.py +4 -1
- perceptic_core_client/test/test_list_file_system_response.py +4 -1
- perceptic_core_client/test/test_paged_list_file_system_response.py +4 -1
- perceptic_core_client/test/test_remove_tag_from_file_request.py +51 -0
- perceptic_core_client/test/test_resource_entry_dto.py +4 -1
- perceptic_core_client/test/test_resource_metadata_dto.py +4 -1
- perceptic_core_client/test/test_tag_resource_api.py +14 -0
- perceptic_core_client/test/test_uri_resource_api.py +14 -0
- {perceptic_core_client-0.26.0.dist-info → perceptic_core_client-0.27.1.dist-info}/METADATA +1 -1
- {perceptic_core_client-0.26.0.dist-info → perceptic_core_client-0.27.1.dist-info}/RECORD +20 -16
- {perceptic_core_client-0.26.0.dist-info → perceptic_core_client-0.27.1.dist-info}/WHEEL +0 -0
- {perceptic_core_client-0.26.0.dist-info → perceptic_core_client-0.27.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,87 @@
|
|
|
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
|
+
from __future__ import annotations
|
|
16
|
+
import pprint
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import json
|
|
19
|
+
|
|
20
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
21
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
22
|
+
from typing import Optional, Set
|
|
23
|
+
from typing_extensions import Self
|
|
24
|
+
|
|
25
|
+
class RemoveTagFromFileRequest(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
RemoveTagFromFileRequest
|
|
28
|
+
""" # noqa: E501
|
|
29
|
+
tag_rid: Optional[StrictStr] = Field(default=None, alias="tagRid")
|
|
30
|
+
__properties: ClassVar[List[str]] = ["tagRid"]
|
|
31
|
+
|
|
32
|
+
model_config = ConfigDict(
|
|
33
|
+
populate_by_name=True,
|
|
34
|
+
validate_assignment=True,
|
|
35
|
+
protected_namespaces=(),
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def to_str(self) -> str:
|
|
40
|
+
"""Returns the string representation of the model using alias"""
|
|
41
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
42
|
+
|
|
43
|
+
def to_json(self) -> str:
|
|
44
|
+
"""Returns the JSON representation of the model using alias"""
|
|
45
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
46
|
+
return json.dumps(self.to_dict())
|
|
47
|
+
|
|
48
|
+
@classmethod
|
|
49
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
50
|
+
"""Create an instance of RemoveTagFromFileRequest from a JSON string"""
|
|
51
|
+
return cls.from_dict(json.loads(json_str))
|
|
52
|
+
|
|
53
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
54
|
+
"""Return the dictionary representation of the model using alias.
|
|
55
|
+
|
|
56
|
+
This has the following differences from calling pydantic's
|
|
57
|
+
`self.model_dump(by_alias=True)`:
|
|
58
|
+
|
|
59
|
+
* `None` is only added to the output dict for nullable fields that
|
|
60
|
+
were set at model initialization. Other fields with value `None`
|
|
61
|
+
are ignored.
|
|
62
|
+
"""
|
|
63
|
+
excluded_fields: Set[str] = set([
|
|
64
|
+
])
|
|
65
|
+
|
|
66
|
+
_dict = self.model_dump(
|
|
67
|
+
by_alias=True,
|
|
68
|
+
exclude=excluded_fields,
|
|
69
|
+
exclude_none=True,
|
|
70
|
+
)
|
|
71
|
+
return _dict
|
|
72
|
+
|
|
73
|
+
@classmethod
|
|
74
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
75
|
+
"""Create an instance of RemoveTagFromFileRequest from a dict"""
|
|
76
|
+
if obj is None:
|
|
77
|
+
return None
|
|
78
|
+
|
|
79
|
+
if not isinstance(obj, dict):
|
|
80
|
+
return cls.model_validate(obj)
|
|
81
|
+
|
|
82
|
+
_obj = cls.model_validate({
|
|
83
|
+
"tagRid": obj.get("tagRid")
|
|
84
|
+
})
|
|
85
|
+
return _obj
|
|
86
|
+
|
|
87
|
+
|
|
@@ -38,7 +38,8 @@ class ResourceMetadataDto(BaseModel):
|
|
|
38
38
|
size_in_bytes: Optional[StrictInt] = Field(default=None, alias="sizeInBytes")
|
|
39
39
|
last_modified: Optional[datetime] = Field(default=None, alias="lastModified")
|
|
40
40
|
etag: Optional[StrictStr] = None
|
|
41
|
-
|
|
41
|
+
tags: Optional[List[StrictStr]] = None
|
|
42
|
+
__properties: ClassVar[List[str]] = ["filesSystemRid", "resourceId", "uri", "name", "type", "path", "extension", "sizeInBytes", "lastModified", "etag", "tags"]
|
|
42
43
|
|
|
43
44
|
model_config = ConfigDict(
|
|
44
45
|
populate_by_name=True,
|
|
@@ -115,7 +116,8 @@ class ResourceMetadataDto(BaseModel):
|
|
|
115
116
|
"extension": obj.get("extension"),
|
|
116
117
|
"sizeInBytes": obj.get("sizeInBytes"),
|
|
117
118
|
"lastModified": obj.get("lastModified"),
|
|
118
|
-
"etag": obj.get("etag")
|
|
119
|
+
"etag": obj.get("etag"),
|
|
120
|
+
"tags": obj.get("tags")
|
|
119
121
|
})
|
|
120
122
|
return _obj
|
|
121
123
|
|
|
@@ -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.add_tag_to_file_request import AddTagToFileRequest
|
|
18
|
+
|
|
19
|
+
class TestAddTagToFileRequest(unittest.TestCase):
|
|
20
|
+
"""AddTagToFileRequest 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) -> AddTagToFileRequest:
|
|
29
|
+
"""Test AddTagToFileRequest
|
|
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 `AddTagToFileRequest`
|
|
34
|
+
"""
|
|
35
|
+
model = AddTagToFileRequest()
|
|
36
|
+
if include_optional:
|
|
37
|
+
return AddTagToFileRequest(
|
|
38
|
+
tag_rid = ''
|
|
39
|
+
)
|
|
40
|
+
else:
|
|
41
|
+
return AddTagToFileRequest(
|
|
42
|
+
)
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
def testAddTagToFileRequest(self):
|
|
46
|
+
"""Test AddTagToFileRequest"""
|
|
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()
|
|
@@ -45,7 +45,10 @@ class TestGetMetadataResponse(unittest.TestCase):
|
|
|
45
45
|
extension = '',
|
|
46
46
|
size_in_bytes = 56,
|
|
47
47
|
last_modified = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
|
48
|
-
etag = '',
|
|
48
|
+
etag = '',
|
|
49
|
+
tags = [
|
|
50
|
+
''
|
|
51
|
+
], )
|
|
49
52
|
)
|
|
50
53
|
else:
|
|
51
54
|
return GetMetadataResponse(
|
|
@@ -46,7 +46,10 @@ class TestListFileSystemResponse(unittest.TestCase):
|
|
|
46
46
|
extension = '',
|
|
47
47
|
size_in_bytes = 56,
|
|
48
48
|
last_modified = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
|
49
|
-
etag = '',
|
|
49
|
+
etag = '',
|
|
50
|
+
tags = [
|
|
51
|
+
''
|
|
52
|
+
], )
|
|
50
53
|
}
|
|
51
54
|
)
|
|
52
55
|
else:
|
|
@@ -47,7 +47,10 @@ class TestPagedListFileSystemResponse(unittest.TestCase):
|
|
|
47
47
|
extension = '',
|
|
48
48
|
size_in_bytes = 56,
|
|
49
49
|
last_modified = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
|
50
|
-
etag = '',
|
|
50
|
+
etag = '',
|
|
51
|
+
tags = [
|
|
52
|
+
''
|
|
53
|
+
], ), )
|
|
51
54
|
],
|
|
52
55
|
next_token = ''
|
|
53
56
|
)
|
|
@@ -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.remove_tag_from_file_request import RemoveTagFromFileRequest
|
|
18
|
+
|
|
19
|
+
class TestRemoveTagFromFileRequest(unittest.TestCase):
|
|
20
|
+
"""RemoveTagFromFileRequest 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) -> RemoveTagFromFileRequest:
|
|
29
|
+
"""Test RemoveTagFromFileRequest
|
|
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 `RemoveTagFromFileRequest`
|
|
34
|
+
"""
|
|
35
|
+
model = RemoveTagFromFileRequest()
|
|
36
|
+
if include_optional:
|
|
37
|
+
return RemoveTagFromFileRequest(
|
|
38
|
+
tag_rid = ''
|
|
39
|
+
)
|
|
40
|
+
else:
|
|
41
|
+
return RemoveTagFromFileRequest(
|
|
42
|
+
)
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
def testRemoveTagFromFileRequest(self):
|
|
46
|
+
"""Test RemoveTagFromFileRequest"""
|
|
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()
|
|
@@ -46,7 +46,10 @@ class TestResourceEntryDto(unittest.TestCase):
|
|
|
46
46
|
extension = '',
|
|
47
47
|
size_in_bytes = 56,
|
|
48
48
|
last_modified = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
|
49
|
-
etag = '',
|
|
49
|
+
etag = '',
|
|
50
|
+
tags = [
|
|
51
|
+
''
|
|
52
|
+
], )
|
|
50
53
|
)
|
|
51
54
|
else:
|
|
52
55
|
return ResourceEntryDto(
|
|
@@ -44,7 +44,10 @@ class TestResourceMetadataDto(unittest.TestCase):
|
|
|
44
44
|
extension = '',
|
|
45
45
|
size_in_bytes = 56,
|
|
46
46
|
last_modified = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
|
|
47
|
-
etag = ''
|
|
47
|
+
etag = '',
|
|
48
|
+
tags = [
|
|
49
|
+
''
|
|
50
|
+
]
|
|
48
51
|
)
|
|
49
52
|
else:
|
|
50
53
|
return ResourceMetadataDto(
|
|
@@ -33,6 +33,20 @@ class TestTagResourceApi(unittest.TestCase):
|
|
|
33
33
|
"""
|
|
34
34
|
pass
|
|
35
35
|
|
|
36
|
+
def test_get_files_for_tag(self) -> None:
|
|
37
|
+
"""Test case for get_files_for_tag
|
|
38
|
+
|
|
39
|
+
Get Files For Tag Empty
|
|
40
|
+
"""
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
def test_get_files_for_tag_0(self) -> None:
|
|
44
|
+
"""Test case for get_files_for_tag_0
|
|
45
|
+
|
|
46
|
+
Get Files For Tag
|
|
47
|
+
"""
|
|
48
|
+
pass
|
|
49
|
+
|
|
36
50
|
def test_list_tags(self) -> None:
|
|
37
51
|
"""Test case for list_tags
|
|
38
52
|
|
|
@@ -26,6 +26,13 @@ class TestUriResourceApi(unittest.TestCase):
|
|
|
26
26
|
def tearDown(self) -> None:
|
|
27
27
|
pass
|
|
28
28
|
|
|
29
|
+
def test_add_tag_to_file(self) -> None:
|
|
30
|
+
"""Test case for add_tag_to_file
|
|
31
|
+
|
|
32
|
+
Add Tag To File
|
|
33
|
+
"""
|
|
34
|
+
pass
|
|
35
|
+
|
|
29
36
|
def test_create_uri_folder(self) -> None:
|
|
30
37
|
"""Test case for create_uri_folder
|
|
31
38
|
|
|
@@ -82,6 +89,13 @@ class TestUriResourceApi(unittest.TestCase):
|
|
|
82
89
|
"""
|
|
83
90
|
pass
|
|
84
91
|
|
|
92
|
+
def test_remove_tag_from_file(self) -> None:
|
|
93
|
+
"""Test case for remove_tag_from_file
|
|
94
|
+
|
|
95
|
+
Remove Tag From File
|
|
96
|
+
"""
|
|
97
|
+
pass
|
|
98
|
+
|
|
85
99
|
def test_upload_resource(self) -> None:
|
|
86
100
|
"""Test case for upload_resource
|
|
87
101
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
perceptic_core_client/__init__.py,sha256=
|
|
1
|
+
perceptic_core_client/__init__.py,sha256=O7lU75t6bYENHVPZt3HzMKBJDwkHp1mV_OsxQwTLx-Y,14127
|
|
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
|
|
@@ -11,12 +11,13 @@ perceptic_core_client/api/file_system_resource_api.py,sha256=9HzzNQPGS0uy5P8kFEv
|
|
|
11
11
|
perceptic_core_client/api/indexer_resource_api.py,sha256=nNeyrB0wMOetwDO92jfkv2PtQLaW5XUrsHUhDwVBhUM,20059
|
|
12
12
|
perceptic_core_client/api/indexing_schedule_resource_api.py,sha256=FJOZsv_mQ2yeIv-vMtQrnvIZceUftjJaLWGtg8r65Gw,86033
|
|
13
13
|
perceptic_core_client/api/indexing_task_resource_api.py,sha256=nHDH5bEdTUzw8qsS8FvmCEErF6JTH4vGI4JC6mmylD8,44317
|
|
14
|
-
perceptic_core_client/api/tag_resource_api.py,sha256=
|
|
15
|
-
perceptic_core_client/api/uri_resource_api.py,sha256=
|
|
14
|
+
perceptic_core_client/api/tag_resource_api.py,sha256=q9BmZSkNzE6qW56bytte_aQ0VP2hG3d5_sApnTestr4,78302
|
|
15
|
+
perceptic_core_client/api/uri_resource_api.py,sha256=37kkpiZQyxd-184Zql6s5J714FJSIrT0o4Wr9rDMxe8,114212
|
|
16
16
|
perceptic_core_client/api/user_resource_api.py,sha256=LrqvNebOhBI_EoLTZpCC7OHYPomDoctWKJkv173W2p8,10222
|
|
17
17
|
perceptic_core_client/api/worker_resource_api.py,sha256=qyzp9_qMZICVpKtEyy70Gs5ps36Cmgl9lZLllOXkNOI,66424
|
|
18
|
-
perceptic_core_client/models/__init__.py,sha256=
|
|
18
|
+
perceptic_core_client/models/__init__.py,sha256=PrK0JAOcYuE9hhRefuapEO615vizh1Ob_WZzjeiCyLw,7475
|
|
19
19
|
perceptic_core_client/models/action_type.py,sha256=N_ESOrMP83pxJKGJvrBH_T0xDjSmHoISZ01SB81Oomc,786
|
|
20
|
+
perceptic_core_client/models/add_tag_to_file_request.py,sha256=-4lKwOdDAuxjjWc7Sqgy9cvdif05AGIrrgUi-dl4NBk,2593
|
|
20
21
|
perceptic_core_client/models/azure_blob_connection_settings_api_dto.py,sha256=3tIHzJKXkvypEgQZRnM_FoVYNI3cwbbLhggl09f3o54,4297
|
|
21
22
|
perceptic_core_client/models/azure_blob_file_system_root_metadata_api_dto.py,sha256=LCrHnns_v-klQ08Pa4EO6mx0Lg0WwJv7KMCtxJwjARE,2782
|
|
22
23
|
perceptic_core_client/models/connection_api_dto.py,sha256=dupy0A6cgpVCNP4-Q572SlvEi7u9lYhVCAc8LmAYB-g,3304
|
|
@@ -76,10 +77,11 @@ perceptic_core_client/models/post_worker_run_request.py,sha256=6bfgf2Yrwpc46X6c_
|
|
|
76
77
|
perceptic_core_client/models/post_worker_run_response.py,sha256=zOpSem6C2F8of_AM4LZCY2C4fpa8aB3g5iy2bCrfRjU,2601
|
|
77
78
|
perceptic_core_client/models/progress_event.py,sha256=cGiJgu4FUBkG6WtUbMU-IQ6UaS648KhBTD_L0mr1_2Q,2730
|
|
78
79
|
perceptic_core_client/models/remote_file_system_api_dto.py,sha256=P770rxN2fZZqPDEPEeMFpcKcDiWQHmxVr_9TzBgroz4,3463
|
|
80
|
+
perceptic_core_client/models/remove_tag_from_file_request.py,sha256=u_liteh8V2JVMOeBYuTW6rpxaasZhFUESn7L_ZBcCMQ,2613
|
|
79
81
|
perceptic_core_client/models/request_for_input_event.py,sha256=S2lCszkJLYxZKMXczhPLW8nMVQaUFvROt51YJKnSn3s,3219
|
|
80
82
|
perceptic_core_client/models/resource_entry_dto.py,sha256=dbRIgLIzUVNls7D62ANS5e79w_hctiOagLXnWVpTIRs,3033
|
|
81
83
|
perceptic_core_client/models/resource_identifier.py,sha256=ODJVfR3FSO8nnICHCUwpVGynjv57jRy9cRaWjepndxo,3474
|
|
82
|
-
perceptic_core_client/models/resource_metadata_dto.py,sha256=
|
|
84
|
+
perceptic_core_client/models/resource_metadata_dto.py,sha256=u81AjXtYtpOQ0ku4Bb8vl_zVK6J-1i9F82LPaqqS1W4,4444
|
|
83
85
|
perceptic_core_client/models/resource_type_dto.py,sha256=EZDcHHHbMS4p5uR6HXlFbpSXe35IwqBAq9XwMvYM29M,781
|
|
84
86
|
perceptic_core_client/models/run_status_dto.py,sha256=tbQwNIc-MHBtjI_46nwgpt7mcAzb846ilp2X3qLFbus,1034
|
|
85
87
|
perceptic_core_client/models/s3_connection_settings_api_dto.py,sha256=-a13ZHx4WR0lEHC-k-vkBEG2xddKYYlvLMUmdlWt4LA,4188
|
|
@@ -98,6 +100,7 @@ perceptic_core_client/models/worker_event.py,sha256=QztjNPMatUO4PLpSbOguRA9Ce4Yz
|
|
|
98
100
|
perceptic_core_client/models/worker_metadata_dto.py,sha256=S9jsLoj3df5H_40EV7KGh7KoEamWUAZbIaDgCm27QAA,2986
|
|
99
101
|
perceptic_core_client/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
100
102
|
perceptic_core_client/test/test_action_type.py,sha256=n21J9CQEH1tHjztKC7K081mvKNbffxmcztRNfxPF4po,717
|
|
103
|
+
perceptic_core_client/test/test_add_tag_to_file_request.py,sha256=RLAiCPjmdk176Lj6SFZorGhtJdCt8jf1wiPCMH9OPWA,1481
|
|
101
104
|
perceptic_core_client/test/test_azure_blob_connection_settings_api_dto.py,sha256=BmE-2cgApvW3VjO_HFB7fTrEdInBJRbSCeACkx2eakQ,1921
|
|
102
105
|
perceptic_core_client/test/test_azure_blob_file_system_root_metadata_api_dto.py,sha256=8cm4pO5ygeA9WaxomWsZyxpZgqSkxvrm6_AFbzXRW2Y,1734
|
|
103
106
|
perceptic_core_client/test/test_connection_api_dto.py,sha256=f2eT1U5zfFszptJrmzJxtXsCrdV4KY8KhXFLyZDT9PI,1642
|
|
@@ -126,7 +129,7 @@ perceptic_core_client/test/test_get_connection_response.py,sha256=tuaHMt5AkwSykj
|
|
|
126
129
|
perceptic_core_client/test/test_get_indexer_response.py,sha256=AhkzglY8FwgMU9gZgC46eC43jFOXYV_vf0c3WS06YIE,1664
|
|
127
130
|
perceptic_core_client/test/test_get_indexing_schedule_response.py,sha256=1F8uOEBwdx-fZuQ6Z5zvUwYY929_j07XRiYpb5_K_iw,2623
|
|
128
131
|
perceptic_core_client/test/test_get_indexing_task_response.py,sha256=2RhsjRfcu5x5aLekdjOK0G6ooGruq1k4uEGUlqliiVY,2135
|
|
129
|
-
perceptic_core_client/test/test_get_metadata_response.py,sha256=
|
|
132
|
+
perceptic_core_client/test/test_get_metadata_response.py,sha256=oPDM4yv_LNZFZCx-1hxDKk5HRpTiFnog_1t6FURUFgc,2073
|
|
130
133
|
perceptic_core_client/test/test_get_parent_response.py,sha256=uPwSbtoQ18IlNEpnWTE7gMS07qoYEwHL1T9tMdsOIL4,1454
|
|
131
134
|
perceptic_core_client/test/test_get_parent_uri_response.py,sha256=3yjM69ht8leTvLRPZXmdpLVM1-annUPhGPtJJitcAko,1491
|
|
132
135
|
perceptic_core_client/test/test_get_signed_url_response.py,sha256=BpwbWZA8xdrJbfXg_E-7pQWjBu-7VgYTYIQoeTRLmes,1494
|
|
@@ -148,7 +151,7 @@ perceptic_core_client/test/test_interval_trigger.py,sha256=4LtBbdG_GzjV0gT8mUvPb
|
|
|
148
151
|
perceptic_core_client/test/test_json_node.py,sha256=PSqWJ-4Ho-C5lVLLSiSpN8DROm0r-I0s0-R8cwGV9mU,2049
|
|
149
152
|
perceptic_core_client/test/test_json_node_type.py,sha256=8rP20yxdJKWDcYGdyGGBvaHqDOX6ymT6Ug4mVoCLcA0,732
|
|
150
153
|
perceptic_core_client/test/test_list_all_file_systems_response.py,sha256=QphgmQkH-piXZag4aNphRy21oG3K7l7wczJ8PQI9Sz4,1687
|
|
151
|
-
perceptic_core_client/test/test_list_file_system_response.py,sha256=
|
|
154
|
+
perceptic_core_client/test/test_list_file_system_response.py,sha256=UikO7oudaR58ZNueH3_8ukYoQ76xFy2s-wFfxcW173w,2215
|
|
152
155
|
perceptic_core_client/test/test_list_indexers_response.py,sha256=DI3mJ8igl3TAvZcivQGWkbGb2cR2vyzzmiXyLEwsY9A,1753
|
|
153
156
|
perceptic_core_client/test/test_list_indexing_actions_response.py,sha256=O1StbmwuTNRC77KRJ2ckNXk1k-LHZQTM02HBepFC_Ok,2361
|
|
154
157
|
perceptic_core_client/test/test_list_indexing_schedules_response.py,sha256=egVcT3K1IoYFNwzh9jKm0V_GyMFsvr5G2qBnr6S-d9g,2824
|
|
@@ -158,15 +161,16 @@ perceptic_core_client/test/test_managed_file_system_api_dto.py,sha256=_GVm3ymbXz
|
|
|
158
161
|
perceptic_core_client/test/test_me_response.py,sha256=NhLaiooL6lhhcyxgxezMBl9EJZQDOkEtHlka0MCBSzE,1494
|
|
159
162
|
perceptic_core_client/test/test_model_schema.py,sha256=TAZLQ79pitZP5U6jOmYBT_2-bmUfnCv4zSaNyhsuz2k,1950
|
|
160
163
|
perceptic_core_client/test/test_on_upload_trigger.py,sha256=ZcWuPWj_qhFgW7zHry74zSBo8W-cbyfIggJbVeeyYOA,1428
|
|
161
|
-
perceptic_core_client/test/test_paged_list_file_system_response.py,sha256=
|
|
164
|
+
perceptic_core_client/test/test_paged_list_file_system_response.py,sha256=iL09EP0VO_9B5RmCtObqmj4xvLQMLKaTGs7gGFJj15c,2449
|
|
162
165
|
perceptic_core_client/test/test_post_worker_run_request.py,sha256=FxIpvUHxCJXPKbjUL361J8k0J4fB3kIF3Q9vpFiNWD4,1524
|
|
163
166
|
perceptic_core_client/test/test_post_worker_run_response.py,sha256=rG0x1tul3NFPpjhKQi-p379nHo_H6jF69cVKM5WHpH0,1504
|
|
164
167
|
perceptic_core_client/test/test_progress_event.py,sha256=wS4vJ8bjat5LlJqZ5bgH4yF6-vGKBYbZlA7N16Ru0Vc,1466
|
|
165
168
|
perceptic_core_client/test/test_remote_file_system_api_dto.py,sha256=z99dSsSJu-rZg1CaO49PxoJIsvA9HD8fOajXD45prRM,1760
|
|
169
|
+
perceptic_core_client/test/test_remove_tag_from_file_request.py,sha256=axXB7hXXAgVbJJaaWSdZnjlIo6abQ6U2Y3vfDdNWBhI,1541
|
|
166
170
|
perceptic_core_client/test/test_request_for_input_event.py,sha256=Sr75_y9HuXYA24DZVbe7af6jASe1s2LBAIeEMPlCxwQ,1597
|
|
167
|
-
perceptic_core_client/test/test_resource_entry_dto.py,sha256=
|
|
171
|
+
perceptic_core_client/test/test_resource_entry_dto.py,sha256=YhUIrTim9PD-cezsLsJrU4MZfU6A0R4F8PyucrS5Zuc,2071
|
|
168
172
|
perceptic_core_client/test/test_resource_identifier.py,sha256=Sxk9OBxw0C2fhRKsHJKI1fPFDEO0KLX6OEYGFWi79NE,1702
|
|
169
|
-
perceptic_core_client/test/test_resource_metadata_dto.py,sha256=
|
|
173
|
+
perceptic_core_client/test/test_resource_metadata_dto.py,sha256=92GnTbx8hWsec8RHzfnuasY38ZFvM8HmSQIQXN6tSoo,1909
|
|
170
174
|
perceptic_core_client/test/test_resource_type_dto.py,sha256=R6svWWdg9-Cgw1t5bHMMN7y3Vz7LzsV55z3Exi4Kjmk,753
|
|
171
175
|
perceptic_core_client/test/test_run_status_dto.py,sha256=KKic8RUI9AmIt3UrXM_t1fBiOi80aQCTQyLae9H8kkM,732
|
|
172
176
|
perceptic_core_client/test/test_s3_connection_settings_api_dto.py,sha256=oBLhakZwdiOlVA0WxUWbL4rxrbm2sKmpXeJlLgGolWU,1812
|
|
@@ -176,18 +180,18 @@ perceptic_core_client/test/test_schedule_trigger.py,sha256=EZLrcko-4mOkIyo6UZrQs
|
|
|
176
180
|
perceptic_core_client/test/test_schema_location.py,sha256=lEe3E-VJLQ8UtvpImmQIq1DnsaeCQq3RTNCM1QdqbfI,1514
|
|
177
181
|
perceptic_core_client/test/test_start_execution_response.py,sha256=1dpZ3bQIXpMyG8HgCMqePY_hkHZqc_IIc4m2-z4Bg-E,2122
|
|
178
182
|
perceptic_core_client/test/test_tag_info.py,sha256=6-lKnytKyfR75QjFRPb7641_ZtNED77P9CCy90m5wf4,1421
|
|
179
|
-
perceptic_core_client/test/test_tag_resource_api.py,sha256=
|
|
183
|
+
perceptic_core_client/test/test_tag_resource_api.py,sha256=Wq93srjnBCsPfFsE7AgZMkwiumtUXlWJnlzq0ZAOPF4,1734
|
|
180
184
|
perceptic_core_client/test/test_update_indexing_schedule_request.py,sha256=9SLP1UdxJbNtB55N8rAH3Bk5BP2nh49oIhYOv78UM8Y,1893
|
|
181
185
|
perceptic_core_client/test/test_update_indexing_schedule_response.py,sha256=U_9OLaVswJC4tJ6Yehhl8Veib8Io-P81NcQ-2-uv7wA,2659
|
|
182
186
|
perceptic_core_client/test/test_update_tag_request.py,sha256=quiRdlic1vOuoYEuXzKXxiilzsSGwTE2FV5RJfpC0mY,1482
|
|
183
187
|
perceptic_core_client/test/test_update_tag_response.py,sha256=JUyWJN6lPeDhYU_UQqBNYI2iJj0kdIkTKi7CPGgnK3w,1641
|
|
184
188
|
perceptic_core_client/test/test_upload_file_to_managed_file_system_response.py,sha256=Mpmwqqz0m3p6b9Ofa3nC9ar9tG8FwHYBf9QkhLA54Ho,1705
|
|
185
|
-
perceptic_core_client/test/test_uri_resource_api.py,sha256=
|
|
189
|
+
perceptic_core_client/test/test_uri_resource_api.py,sha256=DkUIfx6Fp59t_rDZRDm3LP3qAl_RHnnJWlq1l-ILHh8,2182
|
|
186
190
|
perceptic_core_client/test/test_user_resource_api.py,sha256=yCzM6n1J0xjbLBWW1hcE6m6epT8u8Atck7fnGoOdwBw,817
|
|
187
191
|
perceptic_core_client/test/test_worker_event.py,sha256=f8zBXEkGhya6Tu0quq9p3Mpm1exxMr9z21q72JvYNLg,1699
|
|
188
192
|
perceptic_core_client/test/test_worker_metadata_dto.py,sha256=lbvKWvnwcKEfHHh9diRevdceGEJwgv3INVphqaxiAlw,1674
|
|
189
193
|
perceptic_core_client/test/test_worker_resource_api.py,sha256=1kCAFp5_mHmrQrUKgp6hKcriNlwvtq5J8dCvAFTMKQM,1794
|
|
190
|
-
perceptic_core_client-0.
|
|
191
|
-
perceptic_core_client-0.
|
|
192
|
-
perceptic_core_client-0.
|
|
193
|
-
perceptic_core_client-0.
|
|
194
|
+
perceptic_core_client-0.27.1.dist-info/METADATA,sha256=J44tWWIkiUYOFrTSvB10EY4SOzZqhAstK00s-vS8NKE,3605
|
|
195
|
+
perceptic_core_client-0.27.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
196
|
+
perceptic_core_client-0.27.1.dist-info/top_level.txt,sha256=wWF5_isd4ZU0SRPPhKKAxW4kJ9hYIBgLbcWn_y-c1tg,22
|
|
197
|
+
perceptic_core_client-0.27.1.dist-info/RECORD,,
|
|
File without changes
|
{perceptic_core_client-0.26.0.dist-info → perceptic_core_client-0.27.1.dist-info}/top_level.txt
RENAMED
|
File without changes
|