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

Files changed (225) hide show
  1. perceptic_core_client/__init__.py +0 -0
  2. perceptic_core_client/perceptic_core_client/__init__.py +101 -0
  3. perceptic_core_client/perceptic_core_client/api/__init__.py +12 -0
  4. perceptic_core_client/perceptic_core_client/api/connection_resource_api.py +569 -0
  5. perceptic_core_client/perceptic_core_client/api/file_system_contents_resource_api.py +2361 -0
  6. perceptic_core_client/perceptic_core_client/api/file_system_resource_api.py +1086 -0
  7. perceptic_core_client/perceptic_core_client/api/indexer_resource_api.py +537 -0
  8. perceptic_core_client/perceptic_core_client/api/indexing_task_resource_api.py +1173 -0
  9. perceptic_core_client/perceptic_core_client/api/uri_resource_api.py +1630 -0
  10. perceptic_core_client/perceptic_core_client/api/user_resource_api.py +278 -0
  11. perceptic_core_client/perceptic_core_client/api/worker_resource_api.py +1746 -0
  12. perceptic_core_client/perceptic_core_client/api_client.py +797 -0
  13. perceptic_core_client/perceptic_core_client/api_response.py +21 -0
  14. perceptic_core_client/perceptic_core_client/configuration.py +573 -0
  15. perceptic_core_client/perceptic_core_client/docs/ActionType.md +14 -0
  16. perceptic_core_client/perceptic_core_client/docs/AzureBlobConnectionSettingsApiDto.md +33 -0
  17. perceptic_core_client/perceptic_core_client/docs/AzureBlobFileSystemRootMetadataApiDto.md +30 -0
  18. perceptic_core_client/perceptic_core_client/docs/ConnectionApiDto.md +33 -0
  19. perceptic_core_client/perceptic_core_client/docs/ConnectionResourceApi.md +144 -0
  20. perceptic_core_client/perceptic_core_client/docs/ConnectionSettingsApiDto.md +36 -0
  21. perceptic_core_client/perceptic_core_client/docs/CreateConnectionRequest.md +31 -0
  22. perceptic_core_client/perceptic_core_client/docs/CreateConnectionResponse.md +29 -0
  23. perceptic_core_client/perceptic_core_client/docs/CreateFileSystemResponse.md +29 -0
  24. perceptic_core_client/perceptic_core_client/docs/CreateFolderRequest.md +29 -0
  25. perceptic_core_client/perceptic_core_client/docs/CreateFolderResponse.md +29 -0
  26. perceptic_core_client/perceptic_core_client/docs/CreateIndexingTaskRequest.md +33 -0
  27. perceptic_core_client/perceptic_core_client/docs/CreateIndexingTaskResponse.md +31 -0
  28. perceptic_core_client/perceptic_core_client/docs/CreateManagedFileSystemRequest.md +30 -0
  29. perceptic_core_client/perceptic_core_client/docs/CreateRemoteFileSystemRequest.md +32 -0
  30. perceptic_core_client/perceptic_core_client/docs/FileSystemApiDto.md +34 -0
  31. perceptic_core_client/perceptic_core_client/docs/FileSystemContentsResourceApi.md +573 -0
  32. perceptic_core_client/perceptic_core_client/docs/FileSystemResourceApi.md +276 -0
  33. perceptic_core_client/perceptic_core_client/docs/FileSystemRootMetadataApiDto.md +31 -0
  34. perceptic_core_client/perceptic_core_client/docs/GetConnectionResponse.md +29 -0
  35. perceptic_core_client/perceptic_core_client/docs/GetIndexerResponse.md +29 -0
  36. perceptic_core_client/perceptic_core_client/docs/GetIndexingTaskResponse.md +29 -0
  37. perceptic_core_client/perceptic_core_client/docs/GetMetadataResponse.md +29 -0
  38. perceptic_core_client/perceptic_core_client/docs/GetParentResponse.md +29 -0
  39. perceptic_core_client/perceptic_core_client/docs/GetParentUriResponse.md +29 -0
  40. perceptic_core_client/perceptic_core_client/docs/GetSignedUrlResponse.md +29 -0
  41. perceptic_core_client/perceptic_core_client/docs/GetWorkerEventsResponse.md +29 -0
  42. perceptic_core_client/perceptic_core_client/docs/GetWorkerMetadataResponse.md +29 -0
  43. perceptic_core_client/perceptic_core_client/docs/GetWorkerStatusResponse.md +29 -0
  44. perceptic_core_client/perceptic_core_client/docs/GetWorkersResponse.md +29 -0
  45. perceptic_core_client/perceptic_core_client/docs/IndexerDto.md +32 -0
  46. perceptic_core_client/perceptic_core_client/docs/IndexerResourceApi.md +138 -0
  47. perceptic_core_client/perceptic_core_client/docs/IndexingActionDto.md +35 -0
  48. perceptic_core_client/perceptic_core_client/docs/IndexingActionStatus.md +16 -0
  49. perceptic_core_client/perceptic_core_client/docs/IndexingTaskDto.md +36 -0
  50. perceptic_core_client/perceptic_core_client/docs/IndexingTaskResourceApi.md +289 -0
  51. perceptic_core_client/perceptic_core_client/docs/IndexingTaskStatus.md +29 -0
  52. perceptic_core_client/perceptic_core_client/docs/InfoEvent.md +31 -0
  53. perceptic_core_client/perceptic_core_client/docs/JsonNode.md +50 -0
  54. perceptic_core_client/perceptic_core_client/docs/JsonNodeType.md +26 -0
  55. perceptic_core_client/perceptic_core_client/docs/ListAllFileSystemsResponse.md +29 -0
  56. perceptic_core_client/perceptic_core_client/docs/ListFileSystemResponse.md +29 -0
  57. perceptic_core_client/perceptic_core_client/docs/ListIndexersResponse.md +29 -0
  58. perceptic_core_client/perceptic_core_client/docs/ListIndexingActionsResponse.md +37 -0
  59. perceptic_core_client/perceptic_core_client/docs/ManagedFileSystemApiDto.md +32 -0
  60. perceptic_core_client/perceptic_core_client/docs/MeResponse.md +33 -0
  61. perceptic_core_client/perceptic_core_client/docs/ModelSchema.md +38 -0
  62. perceptic_core_client/perceptic_core_client/docs/PagedListFileSystemResponse.md +30 -0
  63. perceptic_core_client/perceptic_core_client/docs/PostWorkerRunRequest.md +29 -0
  64. perceptic_core_client/perceptic_core_client/docs/PostWorkerRunResponse.md +29 -0
  65. perceptic_core_client/perceptic_core_client/docs/ProgressEvent.md +31 -0
  66. perceptic_core_client/perceptic_core_client/docs/RemoteFileSystemApiDto.md +34 -0
  67. perceptic_core_client/perceptic_core_client/docs/RequestForInputEvent.md +32 -0
  68. perceptic_core_client/perceptic_core_client/docs/ResourceEntryDto.md +30 -0
  69. perceptic_core_client/perceptic_core_client/docs/ResourceId.md +29 -0
  70. perceptic_core_client/perceptic_core_client/docs/ResourceIdentifier.md +36 -0
  71. perceptic_core_client/perceptic_core_client/docs/ResourceMetadataDto.md +38 -0
  72. perceptic_core_client/perceptic_core_client/docs/ResourceTypeDto.md +12 -0
  73. perceptic_core_client/perceptic_core_client/docs/RunStatusDto.md +26 -0
  74. perceptic_core_client/perceptic_core_client/docs/S3ConnectionSettingsApiDto.md +33 -0
  75. perceptic_core_client/perceptic_core_client/docs/S3FileSystemRootMetadataApiDto.md +30 -0
  76. perceptic_core_client/perceptic_core_client/docs/SchemaLocation.md +30 -0
  77. perceptic_core_client/perceptic_core_client/docs/StartExecutionResponse.md +29 -0
  78. perceptic_core_client/perceptic_core_client/docs/UploadFileToManagedFileSystemResponse.md +29 -0
  79. perceptic_core_client/perceptic_core_client/docs/UriResourceApi.md +413 -0
  80. perceptic_core_client/perceptic_core_client/docs/UserResourceApi.md +71 -0
  81. perceptic_core_client/perceptic_core_client/docs/WorkerEvent.md +34 -0
  82. perceptic_core_client/perceptic_core_client/docs/WorkerMetadataDto.md +32 -0
  83. perceptic_core_client/perceptic_core_client/docs/WorkerResourceApi.md +427 -0
  84. perceptic_core_client/perceptic_core_client/exceptions.py +216 -0
  85. perceptic_core_client/perceptic_core_client/models/__init__.py +77 -0
  86. perceptic_core_client/perceptic_core_client/models/action_type.py +38 -0
  87. perceptic_core_client/perceptic_core_client/models/azure_blob_connection_settings_api_dto.py +124 -0
  88. perceptic_core_client/perceptic_core_client/models/azure_blob_file_system_root_metadata_api_dto.py +89 -0
  89. perceptic_core_client/perceptic_core_client/models/connection_api_dto.py +99 -0
  90. perceptic_core_client/perceptic_core_client/models/connection_settings_api_dto.py +165 -0
  91. perceptic_core_client/perceptic_core_client/models/create_connection_request.py +95 -0
  92. perceptic_core_client/perceptic_core_client/models/create_connection_response.py +87 -0
  93. perceptic_core_client/perceptic_core_client/models/create_file_system_response.py +87 -0
  94. perceptic_core_client/perceptic_core_client/models/create_folder_request.py +87 -0
  95. perceptic_core_client/perceptic_core_client/models/create_folder_response.py +87 -0
  96. perceptic_core_client/perceptic_core_client/models/create_indexing_task_request.py +95 -0
  97. perceptic_core_client/perceptic_core_client/models/create_indexing_task_response.py +95 -0
  98. perceptic_core_client/perceptic_core_client/models/create_managed_file_system_request.py +89 -0
  99. perceptic_core_client/perceptic_core_client/models/create_remote_file_system_request.py +97 -0
  100. perceptic_core_client/perceptic_core_client/models/file_system_api_dto.py +165 -0
  101. perceptic_core_client/perceptic_core_client/models/file_system_root_metadata_api_dto.py +165 -0
  102. perceptic_core_client/perceptic_core_client/models/get_connection_response.py +91 -0
  103. perceptic_core_client/perceptic_core_client/models/get_indexer_response.py +91 -0
  104. perceptic_core_client/perceptic_core_client/models/get_indexing_task_response.py +91 -0
  105. perceptic_core_client/perceptic_core_client/models/get_metadata_response.py +91 -0
  106. perceptic_core_client/perceptic_core_client/models/get_parent_response.py +96 -0
  107. perceptic_core_client/perceptic_core_client/models/get_parent_uri_response.py +92 -0
  108. perceptic_core_client/perceptic_core_client/models/get_signed_url_response.py +92 -0
  109. perceptic_core_client/perceptic_core_client/models/get_worker_events_response.py +95 -0
  110. perceptic_core_client/perceptic_core_client/models/get_worker_metadata_response.py +91 -0
  111. perceptic_core_client/perceptic_core_client/models/get_worker_status_response.py +88 -0
  112. perceptic_core_client/perceptic_core_client/models/get_workers_response.py +87 -0
  113. perceptic_core_client/perceptic_core_client/models/indexer_dto.py +91 -0
  114. perceptic_core_client/perceptic_core_client/models/indexing_action_dto.py +107 -0
  115. perceptic_core_client/perceptic_core_client/models/indexing_action_status.py +39 -0
  116. perceptic_core_client/perceptic_core_client/models/indexing_task_dto.py +106 -0
  117. perceptic_core_client/perceptic_core_client/models/indexing_task_status.py +87 -0
  118. perceptic_core_client/perceptic_core_client/models/info_event.py +91 -0
  119. perceptic_core_client/perceptic_core_client/models/json_node.py +130 -0
  120. perceptic_core_client/perceptic_core_client/models/json_node_type.py +44 -0
  121. perceptic_core_client/perceptic_core_client/models/list_all_file_systems_response.py +100 -0
  122. perceptic_core_client/perceptic_core_client/models/list_file_system_response.py +100 -0
  123. perceptic_core_client/perceptic_core_client/models/list_indexers_response.py +100 -0
  124. perceptic_core_client/perceptic_core_client/models/list_indexing_actions_response.py +116 -0
  125. perceptic_core_client/perceptic_core_client/models/managed_file_system_api_dto.py +93 -0
  126. perceptic_core_client/perceptic_core_client/models/me_response.py +95 -0
  127. perceptic_core_client/perceptic_core_client/models/model_schema.py +114 -0
  128. perceptic_core_client/perceptic_core_client/models/paged_list_file_system_response.py +102 -0
  129. perceptic_core_client/perceptic_core_client/models/post_worker_run_request.py +87 -0
  130. perceptic_core_client/perceptic_core_client/models/post_worker_run_response.py +87 -0
  131. perceptic_core_client/perceptic_core_client/models/progress_event.py +91 -0
  132. perceptic_core_client/perceptic_core_client/models/remote_file_system_api_dto.py +101 -0
  133. perceptic_core_client/perceptic_core_client/models/request_for_input_event.py +98 -0
  134. perceptic_core_client/perceptic_core_client/models/resource_entry_dto.py +93 -0
  135. perceptic_core_client/perceptic_core_client/models/resource_id.py +87 -0
  136. perceptic_core_client/perceptic_core_client/models/resource_identifier.py +101 -0
  137. perceptic_core_client/perceptic_core_client/models/resource_metadata_dto.py +122 -0
  138. perceptic_core_client/perceptic_core_client/models/resource_type_dto.py +37 -0
  139. perceptic_core_client/perceptic_core_client/models/run_status_dto.py +44 -0
  140. perceptic_core_client/perceptic_core_client/models/s3_connection_settings_api_dto.py +124 -0
  141. perceptic_core_client/perceptic_core_client/models/s3_file_system_root_metadata_api_dto.py +89 -0
  142. perceptic_core_client/perceptic_core_client/models/schema_location.py +89 -0
  143. perceptic_core_client/perceptic_core_client/models/start_execution_response.py +91 -0
  144. perceptic_core_client/perceptic_core_client/models/upload_file_to_managed_file_system_response.py +87 -0
  145. perceptic_core_client/perceptic_core_client/models/worker_event.py +189 -0
  146. perceptic_core_client/perceptic_core_client/models/worker_metadata_dto.py +93 -0
  147. perceptic_core_client/perceptic_core_client/rest.py +258 -0
  148. perceptic_core_client/perceptic_core_client/test/__init__.py +0 -0
  149. perceptic_core_client/perceptic_core_client/test/test_action_type.py +33 -0
  150. perceptic_core_client/perceptic_core_client/test/test_azure_blob_connection_settings_api_dto.py +59 -0
  151. perceptic_core_client/perceptic_core_client/test/test_azure_blob_file_system_root_metadata_api_dto.py +52 -0
  152. perceptic_core_client/perceptic_core_client/test/test_connection_api_dto.py +55 -0
  153. perceptic_core_client/perceptic_core_client/test/test_connection_resource_api.py +45 -0
  154. perceptic_core_client/perceptic_core_client/test/test_connection_settings_api_dto.py +65 -0
  155. perceptic_core_client/perceptic_core_client/test/test_create_connection_request.py +53 -0
  156. perceptic_core_client/perceptic_core_client/test/test_create_connection_response.py +51 -0
  157. perceptic_core_client/perceptic_core_client/test/test_create_file_system_response.py +51 -0
  158. perceptic_core_client/perceptic_core_client/test/test_create_folder_request.py +51 -0
  159. perceptic_core_client/perceptic_core_client/test/test_create_folder_response.py +51 -0
  160. perceptic_core_client/perceptic_core_client/test/test_create_indexing_task_request.py +57 -0
  161. perceptic_core_client/perceptic_core_client/test/test_create_indexing_task_response.py +64 -0
  162. perceptic_core_client/perceptic_core_client/test/test_create_managed_file_system_request.py +52 -0
  163. perceptic_core_client/perceptic_core_client/test/test_create_remote_file_system_request.py +54 -0
  164. perceptic_core_client/perceptic_core_client/test/test_file_system_api_dto.py +56 -0
  165. perceptic_core_client/perceptic_core_client/test/test_file_system_contents_resource_api.py +87 -0
  166. perceptic_core_client/perceptic_core_client/test/test_file_system_resource_api.py +59 -0
  167. perceptic_core_client/perceptic_core_client/test/test_file_system_root_metadata_api_dto.py +53 -0
  168. perceptic_core_client/perceptic_core_client/test/test_get_connection_response.py +56 -0
  169. perceptic_core_client/perceptic_core_client/test/test_get_indexer_response.py +54 -0
  170. perceptic_core_client/perceptic_core_client/test/test_get_indexing_task_response.py +62 -0
  171. perceptic_core_client/perceptic_core_client/test/test_get_metadata_response.py +61 -0
  172. perceptic_core_client/perceptic_core_client/test/test_get_parent_response.py +52 -0
  173. perceptic_core_client/perceptic_core_client/test/test_get_parent_uri_response.py +51 -0
  174. perceptic_core_client/perceptic_core_client/test/test_get_signed_url_response.py +51 -0
  175. perceptic_core_client/perceptic_core_client/test/test_get_worker_events_response.py +53 -0
  176. perceptic_core_client/perceptic_core_client/test/test_get_worker_metadata_response.py +55 -0
  177. perceptic_core_client/perceptic_core_client/test/test_get_worker_status_response.py +51 -0
  178. perceptic_core_client/perceptic_core_client/test/test_get_workers_response.py +55 -0
  179. perceptic_core_client/perceptic_core_client/test/test_indexer_dto.py +53 -0
  180. perceptic_core_client/perceptic_core_client/test/test_indexer_resource_api.py +45 -0
  181. perceptic_core_client/perceptic_core_client/test/test_indexing_action_dto.py +57 -0
  182. perceptic_core_client/perceptic_core_client/test/test_indexing_action_status.py +33 -0
  183. perceptic_core_client/perceptic_core_client/test/test_indexing_task_dto.py +61 -0
  184. perceptic_core_client/perceptic_core_client/test/test_indexing_task_resource_api.py +59 -0
  185. perceptic_core_client/perceptic_core_client/test/test_indexing_task_status.py +51 -0
  186. perceptic_core_client/perceptic_core_client/test/test_info_event.py +53 -0
  187. perceptic_core_client/perceptic_core_client/test/test_json_node.py +72 -0
  188. perceptic_core_client/perceptic_core_client/test/test_json_node_type.py +33 -0
  189. perceptic_core_client/perceptic_core_client/test/test_list_all_file_systems_response.py +53 -0
  190. perceptic_core_client/perceptic_core_client/test/test_list_file_system_response.py +63 -0
  191. perceptic_core_client/perceptic_core_client/test/test_list_indexers_response.py +56 -0
  192. perceptic_core_client/perceptic_core_client/test/test_list_indexing_actions_response.py +68 -0
  193. perceptic_core_client/perceptic_core_client/test/test_managed_file_system_api_dto.py +54 -0
  194. perceptic_core_client/perceptic_core_client/test/test_me_response.py +55 -0
  195. perceptic_core_client/perceptic_core_client/test/test_model_schema.py +66 -0
  196. perceptic_core_client/perceptic_core_client/test/test_paged_list_file_system_response.py +65 -0
  197. perceptic_core_client/perceptic_core_client/test/test_post_worker_run_request.py +52 -0
  198. perceptic_core_client/perceptic_core_client/test/test_post_worker_run_response.py +51 -0
  199. perceptic_core_client/perceptic_core_client/test/test_progress_event.py +53 -0
  200. perceptic_core_client/perceptic_core_client/test/test_remote_file_system_api_dto.py +56 -0
  201. perceptic_core_client/perceptic_core_client/test/test_request_for_input_event.py +54 -0
  202. perceptic_core_client/perceptic_core_client/test/test_resource_entry_dto.py +62 -0
  203. perceptic_core_client/perceptic_core_client/test/test_resource_id.py +51 -0
  204. perceptic_core_client/perceptic_core_client/test/test_resource_identifier.py +58 -0
  205. perceptic_core_client/perceptic_core_client/test/test_resource_metadata_dto.py +60 -0
  206. perceptic_core_client/perceptic_core_client/test/test_resource_type_dto.py +33 -0
  207. perceptic_core_client/perceptic_core_client/test/test_run_status_dto.py +33 -0
  208. perceptic_core_client/perceptic_core_client/test/test_s3_connection_settings_api_dto.py +59 -0
  209. perceptic_core_client/perceptic_core_client/test/test_s3_file_system_root_metadata_api_dto.py +52 -0
  210. perceptic_core_client/perceptic_core_client/test/test_schema_location.py +54 -0
  211. perceptic_core_client/perceptic_core_client/test/test_start_execution_response.py +62 -0
  212. perceptic_core_client/perceptic_core_client/test/test_upload_file_to_managed_file_system_response.py +51 -0
  213. perceptic_core_client/perceptic_core_client/test/test_uri_resource_api.py +73 -0
  214. perceptic_core_client/perceptic_core_client/test/test_user_resource_api.py +38 -0
  215. perceptic_core_client/perceptic_core_client/test/test_worker_event.py +56 -0
  216. perceptic_core_client/perceptic_core_client/test/test_worker_metadata_dto.py +54 -0
  217. perceptic_core_client/perceptic_core_client/test/test_worker_resource_api.py +73 -0
  218. perceptic_core_client/perceptic_core_client_README.md +181 -0
  219. perceptic_core_client-0.6.1.dist-info/METADATA +179 -0
  220. perceptic_core_client-0.6.1.dist-info/RECORD +222 -0
  221. perceptic_core_client-0.6.1.dist-info/top_level.txt +1 -0
  222. perceptic_core_client-0.5.12.dist-info/METADATA +0 -38
  223. perceptic_core_client-0.5.12.dist-info/RECORD +0 -4
  224. perceptic_core_client-0.5.12.dist-info/top_level.txt +0 -1
  225. {perceptic_core_client-0.5.12.dist-info → perceptic_core_client-0.6.1.dist-info}/WHEEL +0 -0
@@ -0,0 +1,29 @@
1
+ # ListFileSystemResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **resources** | [**Dict[str, ResourceMetadataDto]**](ResourceMetadataDto.md) | | [optional]
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from perceptic_core_client.models.list_file_system_response import ListFileSystemResponse
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of ListFileSystemResponse from a JSON string
18
+ list_file_system_response_instance = ListFileSystemResponse.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(ListFileSystemResponse.to_json())
21
+
22
+ # convert the object into a dict
23
+ list_file_system_response_dict = list_file_system_response_instance.to_dict()
24
+ # create an instance of ListFileSystemResponse from a dict
25
+ list_file_system_response_from_dict = ListFileSystemResponse.from_dict(list_file_system_response_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,29 @@
1
+ # ListIndexersResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **indexers** | [**Dict[str, IndexerDto]**](IndexerDto.md) | | [optional]
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from perceptic_core_client.models.list_indexers_response import ListIndexersResponse
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of ListIndexersResponse from a JSON string
18
+ list_indexers_response_instance = ListIndexersResponse.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(ListIndexersResponse.to_json())
21
+
22
+ # convert the object into a dict
23
+ list_indexers_response_dict = list_indexers_response_instance.to_dict()
24
+ # create an instance of ListIndexersResponse from a dict
25
+ list_indexers_response_from_dict = ListIndexersResponse.from_dict(list_indexers_response_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,37 @@
1
+ # ListIndexingActionsResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **actions** | [**List[IndexingActionDto]**](IndexingActionDto.md) | | [optional]
9
+ **total_actions** | **int** | | [optional]
10
+ **next_offset** | **int** | | [optional]
11
+ **pending_count** | **int** | | [optional]
12
+ **executing_count** | **int** | | [optional]
13
+ **succeeded_count** | **int** | | [optional]
14
+ **failed_count** | **int** | | [optional]
15
+ **index_count** | **int** | | [optional]
16
+ **delete_count** | **int** | | [optional]
17
+
18
+ ## Example
19
+
20
+ ```python
21
+ from perceptic_core_client.models.list_indexing_actions_response import ListIndexingActionsResponse
22
+
23
+ # TODO update the JSON string below
24
+ json = "{}"
25
+ # create an instance of ListIndexingActionsResponse from a JSON string
26
+ list_indexing_actions_response_instance = ListIndexingActionsResponse.from_json(json)
27
+ # print the JSON string representation of the object
28
+ print(ListIndexingActionsResponse.to_json())
29
+
30
+ # convert the object into a dict
31
+ list_indexing_actions_response_dict = list_indexing_actions_response_instance.to_dict()
32
+ # create an instance of ListIndexingActionsResponse from a dict
33
+ list_indexing_actions_response_from_dict = ListIndexingActionsResponse.from_dict(list_indexing_actions_response_dict)
34
+ ```
35
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
36
+
37
+
@@ -0,0 +1,32 @@
1
+ # ManagedFileSystemApiDto
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **rid** | **str** | | [optional]
9
+ **name** | **str** | | [optional]
10
+ **description** | **str** | | [optional]
11
+ **type** | **str** | | [optional]
12
+
13
+ ## Example
14
+
15
+ ```python
16
+ from perceptic_core_client.models.managed_file_system_api_dto import ManagedFileSystemApiDto
17
+
18
+ # TODO update the JSON string below
19
+ json = "{}"
20
+ # create an instance of ManagedFileSystemApiDto from a JSON string
21
+ managed_file_system_api_dto_instance = ManagedFileSystemApiDto.from_json(json)
22
+ # print the JSON string representation of the object
23
+ print(ManagedFileSystemApiDto.to_json())
24
+
25
+ # convert the object into a dict
26
+ managed_file_system_api_dto_dict = managed_file_system_api_dto_instance.to_dict()
27
+ # create an instance of ManagedFileSystemApiDto from a dict
28
+ managed_file_system_api_dto_from_dict = ManagedFileSystemApiDto.from_dict(managed_file_system_api_dto_dict)
29
+ ```
30
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
31
+
32
+
@@ -0,0 +1,33 @@
1
+ # MeResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **user_id** | **str** | | [optional]
9
+ **username** | **str** | | [optional]
10
+ **email** | **str** | | [optional]
11
+ **first_name** | **str** | | [optional]
12
+ **last_name** | **str** | | [optional]
13
+
14
+ ## Example
15
+
16
+ ```python
17
+ from perceptic_core_client.models.me_response import MeResponse
18
+
19
+ # TODO update the JSON string below
20
+ json = "{}"
21
+ # create an instance of MeResponse from a JSON string
22
+ me_response_instance = MeResponse.from_json(json)
23
+ # print the JSON string representation of the object
24
+ print(MeResponse.to_json())
25
+
26
+ # convert the object into a dict
27
+ me_response_dict = me_response_instance.to_dict()
28
+ # create an instance of MeResponse from a dict
29
+ me_response_from_dict = MeResponse.from_dict(me_response_dict)
30
+ ```
31
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
32
+
33
+
@@ -0,0 +1,38 @@
1
+ # ModelSchema
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **title** | **str** | | [optional]
9
+ **description** | **str** | | [optional]
10
+ **id** | **str** | | [optional]
11
+ **schema_location** | **str** | | [optional]
12
+ **location** | [**SchemaLocation**](SchemaLocation.md) | | [optional]
13
+ **default_value** | **object** | | [optional]
14
+ **nullable** | **bool** | | [optional]
15
+ **read_only** | **bool** | | [optional]
16
+ **write_only** | **bool** | | [optional]
17
+ **unprocessed_properties** | **Dict[str, object]** | | [optional]
18
+
19
+ ## Example
20
+
21
+ ```python
22
+ from perceptic_core_client.models.model_schema import ModelSchema
23
+
24
+ # TODO update the JSON string below
25
+ json = "{}"
26
+ # create an instance of ModelSchema from a JSON string
27
+ model_schema_instance = ModelSchema.from_json(json)
28
+ # print the JSON string representation of the object
29
+ print(ModelSchema.to_json())
30
+
31
+ # convert the object into a dict
32
+ model_schema_dict = model_schema_instance.to_dict()
33
+ # create an instance of ModelSchema from a dict
34
+ model_schema_from_dict = ModelSchema.from_dict(model_schema_dict)
35
+ ```
36
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
37
+
38
+
@@ -0,0 +1,30 @@
1
+ # PagedListFileSystemResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **items** | [**List[ResourceEntryDto]**](ResourceEntryDto.md) | | [optional]
9
+ **next_token** | **str** | | [optional]
10
+
11
+ ## Example
12
+
13
+ ```python
14
+ from perceptic_core_client.models.paged_list_file_system_response import PagedListFileSystemResponse
15
+
16
+ # TODO update the JSON string below
17
+ json = "{}"
18
+ # create an instance of PagedListFileSystemResponse from a JSON string
19
+ paged_list_file_system_response_instance = PagedListFileSystemResponse.from_json(json)
20
+ # print the JSON string representation of the object
21
+ print(PagedListFileSystemResponse.to_json())
22
+
23
+ # convert the object into a dict
24
+ paged_list_file_system_response_dict = paged_list_file_system_response_instance.to_dict()
25
+ # create an instance of PagedListFileSystemResponse from a dict
26
+ paged_list_file_system_response_from_dict = PagedListFileSystemResponse.from_dict(paged_list_file_system_response_dict)
27
+ ```
28
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
29
+
30
+
@@ -0,0 +1,29 @@
1
+ # PostWorkerRunRequest
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **inputs** | **object** | |
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from perceptic_core_client.models.post_worker_run_request import PostWorkerRunRequest
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of PostWorkerRunRequest from a JSON string
18
+ post_worker_run_request_instance = PostWorkerRunRequest.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(PostWorkerRunRequest.to_json())
21
+
22
+ # convert the object into a dict
23
+ post_worker_run_request_dict = post_worker_run_request_instance.to_dict()
24
+ # create an instance of PostWorkerRunRequest from a dict
25
+ post_worker_run_request_from_dict = PostWorkerRunRequest.from_dict(post_worker_run_request_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,29 @@
1
+ # PostWorkerRunResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **run_rid** | **str** | | [optional]
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from perceptic_core_client.models.post_worker_run_response import PostWorkerRunResponse
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of PostWorkerRunResponse from a JSON string
18
+ post_worker_run_response_instance = PostWorkerRunResponse.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(PostWorkerRunResponse.to_json())
21
+
22
+ # convert the object into a dict
23
+ post_worker_run_response_dict = post_worker_run_response_instance.to_dict()
24
+ # create an instance of PostWorkerRunResponse from a dict
25
+ post_worker_run_response_from_dict = PostWorkerRunResponse.from_dict(post_worker_run_response_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,31 @@
1
+ # ProgressEvent
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **sequence** | **int** | | [optional]
9
+ **payload** | **object** | | [optional]
10
+ **type** | **str** | | [optional]
11
+
12
+ ## Example
13
+
14
+ ```python
15
+ from perceptic_core_client.models.progress_event import ProgressEvent
16
+
17
+ # TODO update the JSON string below
18
+ json = "{}"
19
+ # create an instance of ProgressEvent from a JSON string
20
+ progress_event_instance = ProgressEvent.from_json(json)
21
+ # print the JSON string representation of the object
22
+ print(ProgressEvent.to_json())
23
+
24
+ # convert the object into a dict
25
+ progress_event_dict = progress_event_instance.to_dict()
26
+ # create an instance of ProgressEvent from a dict
27
+ progress_event_from_dict = ProgressEvent.from_dict(progress_event_dict)
28
+ ```
29
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
30
+
31
+
@@ -0,0 +1,34 @@
1
+ # RemoteFileSystemApiDto
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **rid** | **str** | | [optional]
9
+ **name** | **str** | | [optional]
10
+ **description** | **str** | | [optional]
11
+ **metadata** | [**FileSystemRootMetadataApiDto**](FileSystemRootMetadataApiDto.md) | | [optional]
12
+ **connection_rid** | **str** | | [optional]
13
+ **type** | **str** | | [optional]
14
+
15
+ ## Example
16
+
17
+ ```python
18
+ from perceptic_core_client.models.remote_file_system_api_dto import RemoteFileSystemApiDto
19
+
20
+ # TODO update the JSON string below
21
+ json = "{}"
22
+ # create an instance of RemoteFileSystemApiDto from a JSON string
23
+ remote_file_system_api_dto_instance = RemoteFileSystemApiDto.from_json(json)
24
+ # print the JSON string representation of the object
25
+ print(RemoteFileSystemApiDto.to_json())
26
+
27
+ # convert the object into a dict
28
+ remote_file_system_api_dto_dict = remote_file_system_api_dto_instance.to_dict()
29
+ # create an instance of RemoteFileSystemApiDto from a dict
30
+ remote_file_system_api_dto_from_dict = RemoteFileSystemApiDto.from_dict(remote_file_system_api_dto_dict)
31
+ ```
32
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
33
+
34
+
@@ -0,0 +1,32 @@
1
+ # RequestForInputEvent
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **sequence** | **int** | | [optional]
9
+ **requested_data** | **object** | | [optional]
10
+ **provided_data** | **object** | | [optional]
11
+ **type** | **str** | | [optional]
12
+
13
+ ## Example
14
+
15
+ ```python
16
+ from perceptic_core_client.models.request_for_input_event import RequestForInputEvent
17
+
18
+ # TODO update the JSON string below
19
+ json = "{}"
20
+ # create an instance of RequestForInputEvent from a JSON string
21
+ request_for_input_event_instance = RequestForInputEvent.from_json(json)
22
+ # print the JSON string representation of the object
23
+ print(RequestForInputEvent.to_json())
24
+
25
+ # convert the object into a dict
26
+ request_for_input_event_dict = request_for_input_event_instance.to_dict()
27
+ # create an instance of RequestForInputEvent from a dict
28
+ request_for_input_event_from_dict = RequestForInputEvent.from_dict(request_for_input_event_dict)
29
+ ```
30
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
31
+
32
+
@@ -0,0 +1,30 @@
1
+ # ResourceEntryDto
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **resource_id** | **str** | | [optional]
9
+ **metadata** | [**ResourceMetadataDto**](ResourceMetadataDto.md) | | [optional]
10
+
11
+ ## Example
12
+
13
+ ```python
14
+ from perceptic_core_client.models.resource_entry_dto import ResourceEntryDto
15
+
16
+ # TODO update the JSON string below
17
+ json = "{}"
18
+ # create an instance of ResourceEntryDto from a JSON string
19
+ resource_entry_dto_instance = ResourceEntryDto.from_json(json)
20
+ # print the JSON string representation of the object
21
+ print(ResourceEntryDto.to_json())
22
+
23
+ # convert the object into a dict
24
+ resource_entry_dto_dict = resource_entry_dto_instance.to_dict()
25
+ # create an instance of ResourceEntryDto from a dict
26
+ resource_entry_dto_from_dict = ResourceEntryDto.from_dict(resource_entry_dto_dict)
27
+ ```
28
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
29
+
30
+
@@ -0,0 +1,29 @@
1
+ # ResourceId
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **str** | | [optional]
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from perceptic_core_client.models.resource_id import ResourceId
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of ResourceId from a JSON string
18
+ resource_id_instance = ResourceId.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(ResourceId.to_json())
21
+
22
+ # convert the object into a dict
23
+ resource_id_dict = resource_id_instance.to_dict()
24
+ # create an instance of ResourceId from a dict
25
+ resource_id_from_dict = ResourceId.from_dict(resource_id_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,36 @@
1
+ # ResourceIdentifier
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **resource_identifier** | **str** | | [optional]
9
+ **service_index** | **int** | | [optional]
10
+ **instance_index** | **int** | | [optional]
11
+ **type_index** | **int** | | [optional]
12
+ **service** | **str** | | [optional]
13
+ **instance** | **str** | | [optional]
14
+ **type** | **str** | | [optional]
15
+ **locator** | **str** | | [optional]
16
+
17
+ ## Example
18
+
19
+ ```python
20
+ from perceptic_core_client.models.resource_identifier import ResourceIdentifier
21
+
22
+ # TODO update the JSON string below
23
+ json = "{}"
24
+ # create an instance of ResourceIdentifier from a JSON string
25
+ resource_identifier_instance = ResourceIdentifier.from_json(json)
26
+ # print the JSON string representation of the object
27
+ print(ResourceIdentifier.to_json())
28
+
29
+ # convert the object into a dict
30
+ resource_identifier_dict = resource_identifier_instance.to_dict()
31
+ # create an instance of ResourceIdentifier from a dict
32
+ resource_identifier_from_dict = ResourceIdentifier.from_dict(resource_identifier_dict)
33
+ ```
34
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
35
+
36
+
@@ -0,0 +1,38 @@
1
+ # ResourceMetadataDto
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **files_system_rid** | **str** | | [optional]
9
+ **resource_id** | **str** | | [optional]
10
+ **uri** | **str** | | [optional]
11
+ **name** | **str** | | [optional]
12
+ **type** | [**ResourceTypeDto**](ResourceTypeDto.md) | | [optional]
13
+ **path** | **str** | | [optional]
14
+ **extension** | **str** | | [optional]
15
+ **size_in_bytes** | **int** | | [optional]
16
+ **last_modified** | **datetime** | | [optional]
17
+ **etag** | **str** | | [optional]
18
+
19
+ ## Example
20
+
21
+ ```python
22
+ from perceptic_core_client.models.resource_metadata_dto import ResourceMetadataDto
23
+
24
+ # TODO update the JSON string below
25
+ json = "{}"
26
+ # create an instance of ResourceMetadataDto from a JSON string
27
+ resource_metadata_dto_instance = ResourceMetadataDto.from_json(json)
28
+ # print the JSON string representation of the object
29
+ print(ResourceMetadataDto.to_json())
30
+
31
+ # convert the object into a dict
32
+ resource_metadata_dto_dict = resource_metadata_dto_instance.to_dict()
33
+ # create an instance of ResourceMetadataDto from a dict
34
+ resource_metadata_dto_from_dict = ResourceMetadataDto.from_dict(resource_metadata_dto_dict)
35
+ ```
36
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
37
+
38
+
@@ -0,0 +1,12 @@
1
+ # ResourceTypeDto
2
+
3
+
4
+ ## Enum
5
+
6
+ * `FILE` (value: `'FILE'`)
7
+
8
+ * `FOLDER` (value: `'FOLDER'`)
9
+
10
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
11
+
12
+
@@ -0,0 +1,26 @@
1
+ # RunStatusDto
2
+
3
+
4
+ ## Enum
5
+
6
+ * `QUEUED` (value: `'QUEUED'`)
7
+
8
+ * `QUEUED_FOR_RESUME` (value: `'QUEUED_FOR_RESUME'`)
9
+
10
+ * `RUNNING` (value: `'RUNNING'`)
11
+
12
+ * `PAUSED_FOR_INPUT` (value: `'PAUSED_FOR_INPUT'`)
13
+
14
+ * `COMPLETED` (value: `'COMPLETED'`)
15
+
16
+ * `ERROR_REJECTED` (value: `'ERROR_REJECTED'`)
17
+
18
+ * `ERROR_TIMEOUT` (value: `'ERROR_TIMEOUT'`)
19
+
20
+ * `ERROR_CLIENT` (value: `'ERROR_CLIENT'`)
21
+
22
+ * `ERROR_SERVER` (value: `'ERROR_SERVER'`)
23
+
24
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
25
+
26
+
@@ -0,0 +1,33 @@
1
+ # S3ConnectionSettingsApiDto
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **region** | **str** | |
9
+ **access_key** | **str** | |
10
+ **secret_key** | **str** | |
11
+ **url** | **str** | |
12
+ **type** | **str** | | [optional]
13
+
14
+ ## Example
15
+
16
+ ```python
17
+ from perceptic_core_client.models.s3_connection_settings_api_dto import S3ConnectionSettingsApiDto
18
+
19
+ # TODO update the JSON string below
20
+ json = "{}"
21
+ # create an instance of S3ConnectionSettingsApiDto from a JSON string
22
+ s3_connection_settings_api_dto_instance = S3ConnectionSettingsApiDto.from_json(json)
23
+ # print the JSON string representation of the object
24
+ print(S3ConnectionSettingsApiDto.to_json())
25
+
26
+ # convert the object into a dict
27
+ s3_connection_settings_api_dto_dict = s3_connection_settings_api_dto_instance.to_dict()
28
+ # create an instance of S3ConnectionSettingsApiDto from a dict
29
+ s3_connection_settings_api_dto_from_dict = S3ConnectionSettingsApiDto.from_dict(s3_connection_settings_api_dto_dict)
30
+ ```
31
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
32
+
33
+
@@ -0,0 +1,30 @@
1
+ # S3FileSystemRootMetadataApiDto
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **bucket_name** | **str** | | [optional]
9
+ **type** | **str** | | [optional]
10
+
11
+ ## Example
12
+
13
+ ```python
14
+ from perceptic_core_client.models.s3_file_system_root_metadata_api_dto import S3FileSystemRootMetadataApiDto
15
+
16
+ # TODO update the JSON string below
17
+ json = "{}"
18
+ # create an instance of S3FileSystemRootMetadataApiDto from a JSON string
19
+ s3_file_system_root_metadata_api_dto_instance = S3FileSystemRootMetadataApiDto.from_json(json)
20
+ # print the JSON string representation of the object
21
+ print(S3FileSystemRootMetadataApiDto.to_json())
22
+
23
+ # convert the object into a dict
24
+ s3_file_system_root_metadata_api_dto_dict = s3_file_system_root_metadata_api_dto_instance.to_dict()
25
+ # create an instance of S3FileSystemRootMetadataApiDto from a dict
26
+ s3_file_system_root_metadata_api_dto_from_dict = S3FileSystemRootMetadataApiDto.from_dict(s3_file_system_root_metadata_api_dto_dict)
27
+ ```
28
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
29
+
30
+
@@ -0,0 +1,30 @@
1
+ # SchemaLocation
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **root_document_uri** | **str** | | [optional]
9
+ **pointer_to_location** | **List[str]** | | [optional]
10
+
11
+ ## Example
12
+
13
+ ```python
14
+ from perceptic_core_client.models.schema_location import SchemaLocation
15
+
16
+ # TODO update the JSON string below
17
+ json = "{}"
18
+ # create an instance of SchemaLocation from a JSON string
19
+ schema_location_instance = SchemaLocation.from_json(json)
20
+ # print the JSON string representation of the object
21
+ print(SchemaLocation.to_json())
22
+
23
+ # convert the object into a dict
24
+ schema_location_dict = schema_location_instance.to_dict()
25
+ # create an instance of SchemaLocation from a dict
26
+ schema_location_from_dict = SchemaLocation.from_dict(schema_location_dict)
27
+ ```
28
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
29
+
30
+