perceptic-core-client 0.7.6__py3-none-any.whl → 0.8.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.

@@ -47,7 +47,7 @@ class UriResourceApi:
47
47
 
48
48
 
49
49
  @validate_call
50
- def create_folder(
50
+ def create_uri_folder(
51
51
  self,
52
52
  create_folder_request: CreateFolderRequest,
53
53
  uri: Optional[StrictStr] = None,
@@ -93,7 +93,7 @@ class UriResourceApi:
93
93
  :return: Returns the result object.
94
94
  """ # noqa: E501
95
95
 
96
- _param = self._create_folder_serialize(
96
+ _param = self._create_uri_folder_serialize(
97
97
  create_folder_request=create_folder_request,
98
98
  uri=uri,
99
99
  _request_auth=_request_auth,
@@ -118,7 +118,7 @@ class UriResourceApi:
118
118
 
119
119
 
120
120
  @validate_call
121
- def create_folder_with_http_info(
121
+ def create_uri_folder_with_http_info(
122
122
  self,
123
123
  create_folder_request: CreateFolderRequest,
124
124
  uri: Optional[StrictStr] = None,
@@ -164,7 +164,7 @@ class UriResourceApi:
164
164
  :return: Returns the result object.
165
165
  """ # noqa: E501
166
166
 
167
- _param = self._create_folder_serialize(
167
+ _param = self._create_uri_folder_serialize(
168
168
  create_folder_request=create_folder_request,
169
169
  uri=uri,
170
170
  _request_auth=_request_auth,
@@ -189,7 +189,7 @@ class UriResourceApi:
189
189
 
190
190
 
191
191
  @validate_call
192
- def create_folder_without_preload_content(
192
+ def create_uri_folder_without_preload_content(
193
193
  self,
194
194
  create_folder_request: CreateFolderRequest,
195
195
  uri: Optional[StrictStr] = None,
@@ -235,7 +235,7 @@ class UriResourceApi:
235
235
  :return: Returns the result object.
236
236
  """ # noqa: E501
237
237
 
238
- _param = self._create_folder_serialize(
238
+ _param = self._create_uri_folder_serialize(
239
239
  create_folder_request=create_folder_request,
240
240
  uri=uri,
241
241
  _request_auth=_request_auth,
@@ -255,7 +255,7 @@ class UriResourceApi:
255
255
  return response_data.response
256
256
 
257
257
 
258
- def _create_folder_serialize(
258
+ def _create_uri_folder_serialize(
259
259
  self,
260
260
  create_folder_request,
261
261
  uri,
@@ -28,6 +28,8 @@ from perceptic_core_client.models.create_indexing_task_request import CreateInde
28
28
  from perceptic_core_client.models.create_indexing_task_response import CreateIndexingTaskResponse
29
29
  from perceptic_core_client.models.create_managed_file_system_request import CreateManagedFileSystemRequest
30
30
  from perceptic_core_client.models.create_remote_file_system_request import CreateRemoteFileSystemRequest
31
+ from perceptic_core_client.models.create_tag_request import CreateTagRequest
32
+ from perceptic_core_client.models.create_tag_response import CreateTagResponse
31
33
  from perceptic_core_client.models.file_system_api_dto import FileSystemApiDto
32
34
  from perceptic_core_client.models.file_system_root_metadata_api_dto import FileSystemRootMetadataApiDto
33
35
  from perceptic_core_client.models.get_connection_response import GetConnectionResponse
@@ -63,7 +65,6 @@ from perceptic_core_client.models.progress_event import ProgressEvent
63
65
  from perceptic_core_client.models.remote_file_system_api_dto import RemoteFileSystemApiDto
64
66
  from perceptic_core_client.models.request_for_input_event import RequestForInputEvent
65
67
  from perceptic_core_client.models.resource_entry_dto import ResourceEntryDto
66
- from perceptic_core_client.models.resource_id import ResourceId
67
68
  from perceptic_core_client.models.resource_identifier import ResourceIdentifier
68
69
  from perceptic_core_client.models.resource_metadata_dto import ResourceMetadataDto
69
70
  from perceptic_core_client.models.resource_type_dto import ResourceTypeDto
@@ -22,12 +22,13 @@ from typing import Any, ClassVar, Dict, List, Optional
22
22
  from typing import Optional, Set
23
23
  from typing_extensions import Self
24
24
 
25
- class ResourceId(BaseModel):
25
+ class CreateTagRequest(BaseModel):
26
26
  """
27
- ResourceId
27
+ CreateTagRequest
28
28
  """ # noqa: E501
29
- id: Optional[StrictStr] = None
30
- __properties: ClassVar[List[str]] = ["id"]
29
+ name: Optional[StrictStr] = None
30
+ description: Optional[StrictStr] = None
31
+ __properties: ClassVar[List[str]] = ["name", "description"]
31
32
 
32
33
  model_config = ConfigDict(
33
34
  populate_by_name=True,
@@ -47,7 +48,7 @@ class ResourceId(BaseModel):
47
48
 
48
49
  @classmethod
49
50
  def from_json(cls, json_str: str) -> Optional[Self]:
50
- """Create an instance of ResourceId from a JSON string"""
51
+ """Create an instance of CreateTagRequest from a JSON string"""
51
52
  return cls.from_dict(json.loads(json_str))
52
53
 
53
54
  def to_dict(self) -> Dict[str, Any]:
@@ -72,7 +73,7 @@ class ResourceId(BaseModel):
72
73
 
73
74
  @classmethod
74
75
  def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
75
- """Create an instance of ResourceId from a dict"""
76
+ """Create an instance of CreateTagRequest from a dict"""
76
77
  if obj is None:
77
78
  return None
78
79
 
@@ -80,7 +81,8 @@ class ResourceId(BaseModel):
80
81
  return cls.model_validate(obj)
81
82
 
82
83
  _obj = cls.model_validate({
83
- "id": obj.get("id")
84
+ "name": obj.get("name"),
85
+ "description": obj.get("description")
84
86
  })
85
87
  return _obj
86
88
 
@@ -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 CreateTagResponse(BaseModel):
26
+ """
27
+ CreateTagResponse
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 CreateTagResponse 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 CreateTagResponse 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
+
@@ -17,9 +17,8 @@ import pprint
17
17
  import re # noqa: F401
18
18
  import json
19
19
 
20
- from pydantic import BaseModel, ConfigDict
20
+ from pydantic import BaseModel, ConfigDict, StrictStr
21
21
  from typing import Any, ClassVar, Dict, List, Optional
22
- from perceptic_core_client.models.resource_id import ResourceId
23
22
  from typing import Optional, Set
24
23
  from typing_extensions import Self
25
24
 
@@ -27,7 +26,7 @@ class GetParentResponse(BaseModel):
27
26
  """
28
27
  GetParentResponse
29
28
  """ # noqa: E501
30
- parent: Optional[ResourceId] = None
29
+ parent: Optional[StrictStr] = None
31
30
  __properties: ClassVar[List[str]] = ["parent"]
32
31
 
33
32
  model_config = ConfigDict(
@@ -69,14 +68,6 @@ class GetParentResponse(BaseModel):
69
68
  exclude=excluded_fields,
70
69
  exclude_none=True,
71
70
  )
72
- # override the default output from pydantic by calling `to_dict()` of parent
73
- if self.parent:
74
- _dict['parent'] = self.parent.to_dict()
75
- # set to None if parent (nullable) is None
76
- # and model_fields_set contains the field
77
- if self.parent is None and "parent" in self.model_fields_set:
78
- _dict['parent'] = None
79
-
80
71
  return _dict
81
72
 
82
73
  @classmethod
@@ -89,7 +80,7 @@ class GetParentResponse(BaseModel):
89
80
  return cls.model_validate(obj)
90
81
 
91
82
  _obj = cls.model_validate({
92
- "parent": ResourceId.from_dict(obj["parent"]) if obj.get("parent") is not None else None
83
+ "parent": obj.get("parent")
93
84
  })
94
85
  return _obj
95
86
 
@@ -0,0 +1,52 @@
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.create_tag_request import CreateTagRequest
18
+
19
+ class TestCreateTagRequest(unittest.TestCase):
20
+ """CreateTagRequest 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) -> CreateTagRequest:
29
+ """Test CreateTagRequest
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 `CreateTagRequest`
34
+ """
35
+ model = CreateTagRequest()
36
+ if include_optional:
37
+ return CreateTagRequest(
38
+ name = '',
39
+ description = ''
40
+ )
41
+ else:
42
+ return CreateTagRequest(
43
+ )
44
+ """
45
+
46
+ def testCreateTagRequest(self):
47
+ """Test CreateTagRequest"""
48
+ # inst_req_only = self.make_instance(include_optional=False)
49
+ # inst_req_and_optional = self.make_instance(include_optional=True)
50
+
51
+ if __name__ == '__main__':
52
+ unittest.main()
@@ -14,10 +14,10 @@
14
14
 
15
15
  import unittest
16
16
 
17
- from perceptic_core_client.models.resource_id import ResourceId
17
+ from perceptic_core_client.models.create_tag_response import CreateTagResponse
18
18
 
19
- class TestResourceId(unittest.TestCase):
20
- """ResourceId unit test stubs"""
19
+ class TestCreateTagResponse(unittest.TestCase):
20
+ """CreateTagResponse unit test stubs"""
21
21
 
22
22
  def setUp(self):
23
23
  pass
@@ -25,25 +25,25 @@ class TestResourceId(unittest.TestCase):
25
25
  def tearDown(self):
26
26
  pass
27
27
 
28
- def make_instance(self, include_optional) -> ResourceId:
29
- """Test ResourceId
28
+ def make_instance(self, include_optional) -> CreateTagResponse:
29
+ """Test CreateTagResponse
30
30
  include_optional is a boolean, when False only required
31
31
  params are included, when True both required and
32
32
  optional params are included """
33
- # uncomment below to create an instance of `ResourceId`
33
+ # uncomment below to create an instance of `CreateTagResponse`
34
34
  """
35
- model = ResourceId()
35
+ model = CreateTagResponse()
36
36
  if include_optional:
37
- return ResourceId(
38
- id = ''
37
+ return CreateTagResponse(
38
+ tag_rid = ''
39
39
  )
40
40
  else:
41
- return ResourceId(
41
+ return CreateTagResponse(
42
42
  )
43
43
  """
44
44
 
45
- def testResourceId(self):
46
- """Test ResourceId"""
45
+ def testCreateTagResponse(self):
46
+ """Test CreateTagResponse"""
47
47
  # inst_req_only = self.make_instance(include_optional=False)
48
48
  # inst_req_and_optional = self.make_instance(include_optional=True)
49
49
 
@@ -35,8 +35,7 @@ class TestGetParentResponse(unittest.TestCase):
35
35
  model = GetParentResponse()
36
36
  if include_optional:
37
37
  return GetParentResponse(
38
- parent = perceptic_core_client.models.resource_id.ResourceId(
39
- id = '', )
38
+ parent = ''
40
39
  )
41
40
  else:
42
41
  return GetParentResponse(
@@ -0,0 +1,59 @@
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.api.tag_resource_api import TagResourceApi
18
+
19
+
20
+ class TestTagResourceApi(unittest.TestCase):
21
+ """TagResourceApi unit test stubs"""
22
+
23
+ def setUp(self) -> None:
24
+ self.api = TagResourceApi()
25
+
26
+ def tearDown(self) -> None:
27
+ pass
28
+
29
+ def test_create_tag(self) -> None:
30
+ """Test case for create_tag
31
+
32
+ Create Tag
33
+ """
34
+ pass
35
+
36
+ def test_list_tags(self) -> None:
37
+ """Test case for list_tags
38
+
39
+ List Tags
40
+ """
41
+ pass
42
+
43
+ def test_remove_tag(self) -> None:
44
+ """Test case for remove_tag
45
+
46
+ Remove Tag
47
+ """
48
+ pass
49
+
50
+ def test_update_tag(self) -> None:
51
+ """Test case for update_tag
52
+
53
+ Update Tag
54
+ """
55
+ pass
56
+
57
+
58
+ if __name__ == '__main__':
59
+ unittest.main()
@@ -26,8 +26,8 @@ class TestUriResourceApi(unittest.TestCase):
26
26
  def tearDown(self) -> None:
27
27
  pass
28
28
 
29
- def test_create_folder(self) -> None:
30
- """Test case for create_folder
29
+ def test_create_uri_folder(self) -> None:
30
+ """Test case for create_uri_folder
31
31
 
32
32
  Create Folder
33
33
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: perceptic-core-client
3
- Version: 0.7.6
3
+ Version: 0.8.1
4
4
  Summary: Python client for Perceptic Core
5
5
  Author-email: Your Name <you@example.com>
6
6
  License: Proprietary
@@ -1,19 +1,20 @@
1
- perceptic_core_client/__init__.py,sha256=oIED6511Yv3zu2OWN4d3Hh5YIvS1ARmiT63Q4rekRiY,6899
1
+ perceptic_core_client/__init__.py,sha256=6QmtKKZPT5-4Z7AKd6J2K3ifd5o469V-TdOefsQGnlo,7061
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=9dAahFuMC5173VZ-y6QPS7cvEII3M6D7vJisprMa9PY,704
7
+ perceptic_core_client/api/__init__.py,sha256=Ma1rH82lfJyxV5St-JJER4_Uo5cClW-V1MCjkzllzL0,774
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
12
  perceptic_core_client/api/indexing_task_resource_api.py,sha256=nHDH5bEdTUzw8qsS8FvmCEErF6JTH4vGI4JC6mmylD8,44317
13
- perceptic_core_client/api/uri_resource_api.py,sha256=LJmR1cJ04nUGUaWsFEqgV9wWRPT7y5YO2E2f6AJzFUk,92598
13
+ perceptic_core_client/api/tag_resource_api.py,sha256=QddYPHLmQgjOXEiqRh2ESAorKlgyMXdzApnbAMyv4dw,37868
14
+ perceptic_core_client/api/uri_resource_api.py,sha256=EYN6xSgDWJoUjt3DVp6Q9OhKYZoUI6PZTTThKumnFvQ,92626
14
15
  perceptic_core_client/api/user_resource_api.py,sha256=LrqvNebOhBI_EoLTZpCC7OHYPomDoctWKJkv173W2p8,10222
15
16
  perceptic_core_client/api/worker_resource_api.py,sha256=qyzp9_qMZICVpKtEyy70Gs5ps36Cmgl9lZLllOXkNOI,66424
16
- perceptic_core_client/models/__init__.py,sha256=tJ_PQCIyNwFS_it8hEA85NKCDDEhO3aAVV45GwsiFFw,5636
17
+ perceptic_core_client/models/__init__.py,sha256=69gmX2ovEolPX2TuDC4qFOIl_0-THdXs5iDi0bHWA2U,5728
17
18
  perceptic_core_client/models/action_type.py,sha256=N_ESOrMP83pxJKGJvrBH_T0xDjSmHoISZ01SB81Oomc,786
18
19
  perceptic_core_client/models/azure_blob_connection_settings_api_dto.py,sha256=3tIHzJKXkvypEgQZRnM_FoVYNI3cwbbLhggl09f3o54,4297
19
20
  perceptic_core_client/models/azure_blob_file_system_root_metadata_api_dto.py,sha256=LCrHnns_v-klQ08Pa4EO6mx0Lg0WwJv7KMCtxJwjARE,2782
@@ -28,13 +29,15 @@ perceptic_core_client/models/create_indexing_task_request.py,sha256=7LHNYjKGYNZA
28
29
  perceptic_core_client/models/create_indexing_task_response.py,sha256=tYqelsYuOMjl2kdzjIDeHoqfT3Zf9Jaz2qrZGWpAiqU,3113
29
30
  perceptic_core_client/models/create_managed_file_system_request.py,sha256=5b8zp0-Z5lDMaHeNi1k2HG8JbZzYrAeDV1RUnSASPN8,2700
30
31
  perceptic_core_client/models/create_remote_file_system_request.py,sha256=oNFfhOo2VCteERUfvfiAlkYC8vUiqEA2X1g1SXWk8ZU,3331
32
+ perceptic_core_client/models/create_tag_request.py,sha256=hEqBYkuu6wBE86fOgEK-cDFgAlgunSLt6dmtaOVRbQs,2644
33
+ perceptic_core_client/models/create_tag_response.py,sha256=ksuuXOjnN4K0bwurqaKkF2-GGj_BVP0Ir2FRGwF32YQ,2585
31
34
  perceptic_core_client/models/file_system_api_dto.py,sha256=j21xSms1nVxnER_RZ_2EjrZKVQRWiASmrUAirLOqxYk,6835
32
35
  perceptic_core_client/models/file_system_root_metadata_api_dto.py,sha256=OwMBChDo62Wi3yN_9WfWT4jIgLdwhkh44jDNJG86nCo,7397
33
36
  perceptic_core_client/models/get_connection_response.py,sha256=8BoDWakNraL2I01YqIMvuF6y8hE586g76LnhBWSdyiU,2899
34
37
  perceptic_core_client/models/get_indexer_response.py,sha256=_tnkUDC4ZGBvly6n4zDyQfivf31pSW4x3LSZeA0SI_s,2835
35
38
  perceptic_core_client/models/get_indexing_task_response.py,sha256=nm0vOzonXB9CGtSmfAtTsb_QpCRjvICh0WY_2VDAHE4,2849
36
39
  perceptic_core_client/models/get_metadata_response.py,sha256=9rH4_dKneEYIuvgXYxri4mOYHCLxx1AyHUgXEilng0c,2885
37
- perceptic_core_client/models/get_parent_response.py,sha256=o7eeBgJ0CPao5Z1BeBTDzF152ehl3tTXS1GFVXipdoQ,3029
40
+ perceptic_core_client/models/get_parent_response.py,sha256=piDcT-pwFEgcoZB-pYGzC6-7xHscXh6xsOheV3IjRJ4,2546
38
41
  perceptic_core_client/models/get_parent_uri_response.py,sha256=CHdAJRDZBjaJRXc3GJWoQJe-W-UddsyEnQN0IyHhOM8,2765
39
42
  perceptic_core_client/models/get_signed_url_response.py,sha256=N2Ou4qIy4GMbU0fjBhhp2EINPDh5Xl3cuIzFbdNoimU,2825
40
43
  perceptic_core_client/models/get_worker_events_response.py,sha256=NNgACf4aKOrXAJVBquBHe9Aha9IU17czsptehF9JnE0,3038
@@ -63,7 +66,6 @@ perceptic_core_client/models/progress_event.py,sha256=cGiJgu4FUBkG6WtUbMU-IQ6UaS
63
66
  perceptic_core_client/models/remote_file_system_api_dto.py,sha256=P770rxN2fZZqPDEPEeMFpcKcDiWQHmxVr_9TzBgroz4,3463
64
67
  perceptic_core_client/models/request_for_input_event.py,sha256=S2lCszkJLYxZKMXczhPLW8nMVQaUFvROt51YJKnSn3s,3219
65
68
  perceptic_core_client/models/resource_entry_dto.py,sha256=dbRIgLIzUVNls7D62ANS5e79w_hctiOagLXnWVpTIRs,3033
66
- perceptic_core_client/models/resource_id.py,sha256=_GmFoB-wOjAPPRZxnPnyg5Dy5zlh8YHvJovVyg2e3-g,2502
67
69
  perceptic_core_client/models/resource_identifier.py,sha256=ODJVfR3FSO8nnICHCUwpVGynjv57jRy9cRaWjepndxo,3474
68
70
  perceptic_core_client/models/resource_metadata_dto.py,sha256=95nzFH0qp1dkUCm4j08OCdialp9NhzhL2AytDFEIG6A,4356
69
71
  perceptic_core_client/models/resource_type_dto.py,sha256=EZDcHHHbMS4p5uR6HXlFbpSXe35IwqBAq9XwMvYM29M,781
@@ -91,6 +93,8 @@ perceptic_core_client/test/test_create_indexing_task_request.py,sha256=w_xadH52N
91
93
  perceptic_core_client/test/test_create_indexing_task_response.py,sha256=KS4chfWNKFmGCiyQLlP_KhKrIq8qAa7hd4bOfSLA5cM,2234
92
94
  perceptic_core_client/test/test_create_managed_file_system_request.py,sha256=xOqVlAaInFiwWQiFRnKGlcv2NE5PiUmDEqyv1UOWVj0,1644
93
95
  perceptic_core_client/test/test_create_remote_file_system_request.py,sha256=mfyL3YgNmXCLid5QFzdxPFH9GdxD1pZs_MuQrnNr2Xc,1791
96
+ perceptic_core_client/test/test_create_tag_request.py,sha256=0g3PH3vW49OxinF5aeO2Bwg0iGCKmQ4evn1k-Uq19Tw,1474
97
+ perceptic_core_client/test/test_create_tag_response.py,sha256=szECno-xh_X3Pb9RsMKq5kTzyE016AQ-qRvk_JzLnNk,1455
94
98
  perceptic_core_client/test/test_file_system_api_dto.py,sha256=_c9QeVvfXgguaylNvSgTUwB_PPZiW_5lraKcG_5hch0,1687
95
99
  perceptic_core_client/test/test_file_system_contents_resource_api.py,sha256=d6QvcBOqyH7TxQNWdiV5FgRQNIeOXdzEmM72fLwDPEY,1818
96
100
  perceptic_core_client/test/test_file_system_resource_api.py,sha256=44shHGsmfMwAuxBFAEjmD8Trys0ZgestGR4zajPAoK8,1342
@@ -99,7 +103,7 @@ perceptic_core_client/test/test_get_connection_response.py,sha256=tuaHMt5AkwSykj
99
103
  perceptic_core_client/test/test_get_indexer_response.py,sha256=AhkzglY8FwgMU9gZgC46eC43jFOXYV_vf0c3WS06YIE,1664
100
104
  perceptic_core_client/test/test_get_indexing_task_response.py,sha256=2RhsjRfcu5x5aLekdjOK0G6ooGruq1k4uEGUlqliiVY,2135
101
105
  perceptic_core_client/test/test_get_metadata_response.py,sha256=f29pWMt_KNAPYlJnZ1ugEf_JRBosJW8Z150HOdk4QtY,1989
102
- perceptic_core_client/test/test_get_parent_response.py,sha256=K0lnFzqO5CcixbF5bqW9z_6WvGuAuS9AUSHPsEG8Yx8,1535
106
+ perceptic_core_client/test/test_get_parent_response.py,sha256=uPwSbtoQ18IlNEpnWTE7gMS07qoYEwHL1T9tMdsOIL4,1454
103
107
  perceptic_core_client/test/test_get_parent_uri_response.py,sha256=3yjM69ht8leTvLRPZXmdpLVM1-annUPhGPtJJitcAko,1491
104
108
  perceptic_core_client/test/test_get_signed_url_response.py,sha256=BpwbWZA8xdrJbfXg_E-7pQWjBu-7VgYTYIQoeTRLmes,1494
105
109
  perceptic_core_client/test/test_get_worker_events_response.py,sha256=P2xL5C6cP4xy5S6s7t4o-JytNYo9J-dbghOJQg2DHlM,1624
@@ -130,7 +134,6 @@ perceptic_core_client/test/test_progress_event.py,sha256=wS4vJ8bjat5LlJqZ5bgH4yF
130
134
  perceptic_core_client/test/test_remote_file_system_api_dto.py,sha256=z99dSsSJu-rZg1CaO49PxoJIsvA9HD8fOajXD45prRM,1760
131
135
  perceptic_core_client/test/test_request_for_input_event.py,sha256=Sr75_y9HuXYA24DZVbe7af6jASe1s2LBAIeEMPlCxwQ,1597
132
136
  perceptic_core_client/test/test_resource_entry_dto.py,sha256=xMIBXe1Go8o2s2pUJWEjgbKS--a0ZTLZcwLLqyWIYBU,1987
133
- perceptic_core_client/test/test_resource_id.py,sha256=fPA_9db06VhxT5krYKnECgthF6mFt1fiQR1-MBHIOvs,1365
134
137
  perceptic_core_client/test/test_resource_identifier.py,sha256=Sxk9OBxw0C2fhRKsHJKI1fPFDEO0KLX6OEYGFWi79NE,1702
135
138
  perceptic_core_client/test/test_resource_metadata_dto.py,sha256=F0CoA1GBKlkf0IYnv_2QUYG15U9-yrcmszOJLfPXH0E,1838
136
139
  perceptic_core_client/test/test_resource_type_dto.py,sha256=R6svWWdg9-Cgw1t5bHMMN7y3Vz7LzsV55z3Exi4Kjmk,753
@@ -139,13 +142,14 @@ perceptic_core_client/test/test_s3_connection_settings_api_dto.py,sha256=oBLhakZ
139
142
  perceptic_core_client/test/test_s3_file_system_root_metadata_api_dto.py,sha256=KqD_sboaXHtW5epiRw6xhtyUs2L3UF3YtaY8HgXbM4A,1646
140
143
  perceptic_core_client/test/test_schema_location.py,sha256=lEe3E-VJLQ8UtvpImmQIq1DnsaeCQq3RTNCM1QdqbfI,1514
141
144
  perceptic_core_client/test/test_start_execution_response.py,sha256=1dpZ3bQIXpMyG8HgCMqePY_hkHZqc_IIc4m2-z4Bg-E,2122
145
+ perceptic_core_client/test/test_tag_resource_api.py,sha256=31SI2zsb26Vrill_w0vZNaq-tqCev4Dsnf2chgiXjOo,1162
142
146
  perceptic_core_client/test/test_upload_file_to_managed_file_system_response.py,sha256=Mpmwqqz0m3p6b9Ofa3nC9ar9tG8FwHYBf9QkhLA54Ho,1705
143
- perceptic_core_client/test/test_uri_resource_api.py,sha256=vpMfVsVGBypdIQfMlSDtytZlqphDeLDsJju1P5mrDLs,1887
147
+ perceptic_core_client/test/test_uri_resource_api.py,sha256=ZJuDvaRmse1i6l02TdGPtaOo_XcehBrwmSSYZlGNFZo,1895
144
148
  perceptic_core_client/test/test_user_resource_api.py,sha256=yCzM6n1J0xjbLBWW1hcE6m6epT8u8Atck7fnGoOdwBw,817
145
149
  perceptic_core_client/test/test_worker_event.py,sha256=f8zBXEkGhya6Tu0quq9p3Mpm1exxMr9z21q72JvYNLg,1699
146
150
  perceptic_core_client/test/test_worker_metadata_dto.py,sha256=lbvKWvnwcKEfHHh9diRevdceGEJwgv3INVphqaxiAlw,1674
147
151
  perceptic_core_client/test/test_worker_resource_api.py,sha256=1kCAFp5_mHmrQrUKgp6hKcriNlwvtq5J8dCvAFTMKQM,1794
148
- perceptic_core_client-0.7.6.dist-info/METADATA,sha256=jZXg_f6-YgflFz2zeKxOIP2iQruR8FzRCfYINzNS7SA,3604
149
- perceptic_core_client-0.7.6.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
150
- perceptic_core_client-0.7.6.dist-info/top_level.txt,sha256=wWF5_isd4ZU0SRPPhKKAxW4kJ9hYIBgLbcWn_y-c1tg,22
151
- perceptic_core_client-0.7.6.dist-info/RECORD,,
152
+ perceptic_core_client-0.8.1.dist-info/METADATA,sha256=_gkj-Z_4-YC8nIAXn2M182VAbcsTmMJSsGxLQbPbCMo,3604
153
+ perceptic_core_client-0.8.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
154
+ perceptic_core_client-0.8.1.dist-info/top_level.txt,sha256=wWF5_isd4ZU0SRPPhKKAxW4kJ9hYIBgLbcWn_y-c1tg,22
155
+ perceptic_core_client-0.8.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.8.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5