perceptic-core-client 0.28.0__py3-none-any.whl → 0.30.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of perceptic-core-client might be problematic. Click here for more details.

@@ -70,6 +70,7 @@ __all__ = [
70
70
  "GetSignedUrlResponse",
71
71
  "GetWorkerEventsResponse",
72
72
  "GetWorkerMetadataResponse",
73
+ "GetWorkerRunResponse",
73
74
  "GetWorkerStatusResponse",
74
75
  "GetWorkersResponse",
75
76
  "IndexerDto",
@@ -117,6 +118,7 @@ __all__ = [
117
118
  "UpdateTagRequest",
118
119
  "UpdateTagResponse",
119
120
  "UploadFileToManagedFileSystemResponse",
121
+ "UserInfoResponse",
120
122
  "WorkerEvent",
121
123
  "WorkerMetadataDto",
122
124
  ]
@@ -178,6 +180,7 @@ from perceptic_core_client.models.get_parent_uri_response import GetParentUriRes
178
180
  from perceptic_core_client.models.get_signed_url_response import GetSignedUrlResponse as GetSignedUrlResponse
179
181
  from perceptic_core_client.models.get_worker_events_response import GetWorkerEventsResponse as GetWorkerEventsResponse
180
182
  from perceptic_core_client.models.get_worker_metadata_response import GetWorkerMetadataResponse as GetWorkerMetadataResponse
183
+ from perceptic_core_client.models.get_worker_run_response import GetWorkerRunResponse as GetWorkerRunResponse
181
184
  from perceptic_core_client.models.get_worker_status_response import GetWorkerStatusResponse as GetWorkerStatusResponse
182
185
  from perceptic_core_client.models.get_workers_response import GetWorkersResponse as GetWorkersResponse
183
186
  from perceptic_core_client.models.indexer_dto import IndexerDto as IndexerDto
@@ -225,5 +228,6 @@ from perceptic_core_client.models.update_indexing_schedule_response import Updat
225
228
  from perceptic_core_client.models.update_tag_request import UpdateTagRequest as UpdateTagRequest
226
229
  from perceptic_core_client.models.update_tag_response import UpdateTagResponse as UpdateTagResponse
227
230
  from perceptic_core_client.models.upload_file_to_managed_file_system_response import UploadFileToManagedFileSystemResponse as UploadFileToManagedFileSystemResponse
231
+ from perceptic_core_client.models.user_info_response import UserInfoResponse as UserInfoResponse
228
232
  from perceptic_core_client.models.worker_event import WorkerEvent as WorkerEvent
229
233
  from perceptic_core_client.models.worker_metadata_dto import WorkerMetadataDto as WorkerMetadataDto
@@ -16,7 +16,10 @@ from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
16
16
  from typing import Any, Dict, List, Optional, Tuple, Union
17
17
  from typing_extensions import Annotated
18
18
 
19
+ from pydantic import Field, StrictStr
20
+ from typing_extensions import Annotated
19
21
  from perceptic_core_client.models.me_response import MeResponse
22
+ from perceptic_core_client.models.user_info_response import UserInfoResponse
20
23
 
21
24
  from perceptic_core_client.api_client import ApiClient, RequestSerialized
22
25
  from perceptic_core_client.api_response import ApiResponse
@@ -276,3 +279,269 @@ class UserResourceApi:
276
279
  )
277
280
 
278
281
 
282
+
283
+
284
+ @validate_call
285
+ def api_v1_users_user_subject_get(
286
+ self,
287
+ subject: Annotated[StrictStr, Field(description="User subject/ID from JWT")],
288
+ _request_timeout: Union[
289
+ None,
290
+ Annotated[StrictFloat, Field(gt=0)],
291
+ Tuple[
292
+ Annotated[StrictFloat, Field(gt=0)],
293
+ Annotated[StrictFloat, Field(gt=0)]
294
+ ]
295
+ ] = None,
296
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
297
+ _content_type: Optional[StrictStr] = None,
298
+ _headers: Optional[Dict[StrictStr, Any]] = None,
299
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
300
+ ) -> UserInfoResponse:
301
+ """Get user by subject
302
+
303
+ Retrieves user information from Keycloak by user subject/ID
304
+
305
+ :param subject: User subject/ID from JWT (required)
306
+ :type subject: str
307
+ :param _request_timeout: timeout setting for this request. If one
308
+ number provided, it will be total request
309
+ timeout. It can also be a pair (tuple) of
310
+ (connection, read) timeouts.
311
+ :type _request_timeout: int, tuple(int, int), optional
312
+ :param _request_auth: set to override the auth_settings for an a single
313
+ request; this effectively ignores the
314
+ authentication in the spec for a single request.
315
+ :type _request_auth: dict, optional
316
+ :param _content_type: force content-type for the request.
317
+ :type _content_type: str, Optional
318
+ :param _headers: set to override the headers for a single
319
+ request; this effectively ignores the headers
320
+ in the spec for a single request.
321
+ :type _headers: dict, optional
322
+ :param _host_index: set to override the host_index for a single
323
+ request; this effectively ignores the host_index
324
+ in the spec for a single request.
325
+ :type _host_index: int, optional
326
+ :return: Returns the result object.
327
+ """ # noqa: E501
328
+
329
+ _param = self._api_v1_users_user_subject_get_serialize(
330
+ subject=subject,
331
+ _request_auth=_request_auth,
332
+ _content_type=_content_type,
333
+ _headers=_headers,
334
+ _host_index=_host_index
335
+ )
336
+
337
+ _response_types_map: Dict[str, Optional[str]] = {
338
+ '200': "UserInfoResponse",
339
+ '400': None,
340
+ '401': None,
341
+ }
342
+ response_data = self.api_client.call_api(
343
+ *_param,
344
+ _request_timeout=_request_timeout
345
+ )
346
+ response_data.read()
347
+ return self.api_client.response_deserialize(
348
+ response_data=response_data,
349
+ response_types_map=_response_types_map,
350
+ ).data
351
+
352
+
353
+ @validate_call
354
+ def api_v1_users_user_subject_get_with_http_info(
355
+ self,
356
+ subject: Annotated[StrictStr, Field(description="User subject/ID from JWT")],
357
+ _request_timeout: Union[
358
+ None,
359
+ Annotated[StrictFloat, Field(gt=0)],
360
+ Tuple[
361
+ Annotated[StrictFloat, Field(gt=0)],
362
+ Annotated[StrictFloat, Field(gt=0)]
363
+ ]
364
+ ] = None,
365
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
366
+ _content_type: Optional[StrictStr] = None,
367
+ _headers: Optional[Dict[StrictStr, Any]] = None,
368
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
369
+ ) -> ApiResponse[UserInfoResponse]:
370
+ """Get user by subject
371
+
372
+ Retrieves user information from Keycloak by user subject/ID
373
+
374
+ :param subject: User subject/ID from JWT (required)
375
+ :type subject: str
376
+ :param _request_timeout: timeout setting for this request. If one
377
+ number provided, it will be total request
378
+ timeout. It can also be a pair (tuple) of
379
+ (connection, read) timeouts.
380
+ :type _request_timeout: int, tuple(int, int), optional
381
+ :param _request_auth: set to override the auth_settings for an a single
382
+ request; this effectively ignores the
383
+ authentication in the spec for a single request.
384
+ :type _request_auth: dict, optional
385
+ :param _content_type: force content-type for the request.
386
+ :type _content_type: str, Optional
387
+ :param _headers: set to override the headers for a single
388
+ request; this effectively ignores the headers
389
+ in the spec for a single request.
390
+ :type _headers: dict, optional
391
+ :param _host_index: set to override the host_index for a single
392
+ request; this effectively ignores the host_index
393
+ in the spec for a single request.
394
+ :type _host_index: int, optional
395
+ :return: Returns the result object.
396
+ """ # noqa: E501
397
+
398
+ _param = self._api_v1_users_user_subject_get_serialize(
399
+ subject=subject,
400
+ _request_auth=_request_auth,
401
+ _content_type=_content_type,
402
+ _headers=_headers,
403
+ _host_index=_host_index
404
+ )
405
+
406
+ _response_types_map: Dict[str, Optional[str]] = {
407
+ '200': "UserInfoResponse",
408
+ '400': None,
409
+ '401': None,
410
+ }
411
+ response_data = self.api_client.call_api(
412
+ *_param,
413
+ _request_timeout=_request_timeout
414
+ )
415
+ response_data.read()
416
+ return self.api_client.response_deserialize(
417
+ response_data=response_data,
418
+ response_types_map=_response_types_map,
419
+ )
420
+
421
+
422
+ @validate_call
423
+ def api_v1_users_user_subject_get_without_preload_content(
424
+ self,
425
+ subject: Annotated[StrictStr, Field(description="User subject/ID from JWT")],
426
+ _request_timeout: Union[
427
+ None,
428
+ Annotated[StrictFloat, Field(gt=0)],
429
+ Tuple[
430
+ Annotated[StrictFloat, Field(gt=0)],
431
+ Annotated[StrictFloat, Field(gt=0)]
432
+ ]
433
+ ] = None,
434
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
435
+ _content_type: Optional[StrictStr] = None,
436
+ _headers: Optional[Dict[StrictStr, Any]] = None,
437
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
438
+ ) -> RESTResponseType:
439
+ """Get user by subject
440
+
441
+ Retrieves user information from Keycloak by user subject/ID
442
+
443
+ :param subject: User subject/ID from JWT (required)
444
+ :type subject: str
445
+ :param _request_timeout: timeout setting for this request. If one
446
+ number provided, it will be total request
447
+ timeout. It can also be a pair (tuple) of
448
+ (connection, read) timeouts.
449
+ :type _request_timeout: int, tuple(int, int), optional
450
+ :param _request_auth: set to override the auth_settings for an a single
451
+ request; this effectively ignores the
452
+ authentication in the spec for a single request.
453
+ :type _request_auth: dict, optional
454
+ :param _content_type: force content-type for the request.
455
+ :type _content_type: str, Optional
456
+ :param _headers: set to override the headers for a single
457
+ request; this effectively ignores the headers
458
+ in the spec for a single request.
459
+ :type _headers: dict, optional
460
+ :param _host_index: set to override the host_index for a single
461
+ request; this effectively ignores the host_index
462
+ in the spec for a single request.
463
+ :type _host_index: int, optional
464
+ :return: Returns the result object.
465
+ """ # noqa: E501
466
+
467
+ _param = self._api_v1_users_user_subject_get_serialize(
468
+ subject=subject,
469
+ _request_auth=_request_auth,
470
+ _content_type=_content_type,
471
+ _headers=_headers,
472
+ _host_index=_host_index
473
+ )
474
+
475
+ _response_types_map: Dict[str, Optional[str]] = {
476
+ '200': "UserInfoResponse",
477
+ '400': None,
478
+ '401': None,
479
+ }
480
+ response_data = self.api_client.call_api(
481
+ *_param,
482
+ _request_timeout=_request_timeout
483
+ )
484
+ return response_data.response
485
+
486
+
487
+ def _api_v1_users_user_subject_get_serialize(
488
+ self,
489
+ subject,
490
+ _request_auth,
491
+ _content_type,
492
+ _headers,
493
+ _host_index,
494
+ ) -> RequestSerialized:
495
+
496
+ _host = None
497
+
498
+ _collection_formats: Dict[str, str] = {
499
+ }
500
+
501
+ _path_params: Dict[str, str] = {}
502
+ _query_params: List[Tuple[str, str]] = []
503
+ _header_params: Dict[str, Optional[str]] = _headers or {}
504
+ _form_params: List[Tuple[str, str]] = []
505
+ _files: Dict[
506
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
507
+ ] = {}
508
+ _body_params: Optional[bytes] = None
509
+
510
+ # process the path parameters
511
+ if subject is not None:
512
+ _path_params['subject'] = subject
513
+ # process the query parameters
514
+ # process the header parameters
515
+ # process the form parameters
516
+ # process the body parameter
517
+
518
+
519
+ # set the HTTP header `Accept`
520
+ if 'Accept' not in _header_params:
521
+ _header_params['Accept'] = self.api_client.select_header_accept(
522
+ [
523
+ 'application/json'
524
+ ]
525
+ )
526
+
527
+
528
+ # authentication setting
529
+ _auth_settings: List[str] = [
530
+ ]
531
+
532
+ return self.api_client.param_serialize(
533
+ method='GET',
534
+ resource_path='/api/v1/users/user/{subject}',
535
+ path_params=_path_params,
536
+ query_params=_query_params,
537
+ header_params=_header_params,
538
+ body=_body_params,
539
+ post_params=_form_params,
540
+ files=_files,
541
+ auth_settings=_auth_settings,
542
+ collection_formats=_collection_formats,
543
+ _host=_host,
544
+ _request_auth=_request_auth
545
+ )
546
+
547
+
@@ -21,6 +21,7 @@ from typing import Any, Dict, Optional
21
21
  from typing_extensions import Annotated
22
22
  from perceptic_core_client.models.get_worker_events_response import GetWorkerEventsResponse
23
23
  from perceptic_core_client.models.get_worker_metadata_response import GetWorkerMetadataResponse
24
+ from perceptic_core_client.models.get_worker_run_response import GetWorkerRunResponse
24
25
  from perceptic_core_client.models.get_worker_status_response import GetWorkerStatusResponse
25
26
  from perceptic_core_client.models.get_workers_response import GetWorkersResponse
26
27
  from perceptic_core_client.models.post_worker_run_request import PostWorkerRunRequest
@@ -1171,6 +1172,278 @@ class WorkerResourceApi:
1171
1172
 
1172
1173
 
1173
1174
 
1175
+ @validate_call
1176
+ def api_v1_workers_worker_id_runs_run_rid_get(
1177
+ self,
1178
+ run_rid: StrictStr,
1179
+ worker_id: StrictStr,
1180
+ _request_timeout: Union[
1181
+ None,
1182
+ Annotated[StrictFloat, Field(gt=0)],
1183
+ Tuple[
1184
+ Annotated[StrictFloat, Field(gt=0)],
1185
+ Annotated[StrictFloat, Field(gt=0)]
1186
+ ]
1187
+ ] = None,
1188
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
1189
+ _content_type: Optional[StrictStr] = None,
1190
+ _headers: Optional[Dict[StrictStr, Any]] = None,
1191
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1192
+ ) -> GetWorkerRunResponse:
1193
+ """Get Worker Run
1194
+
1195
+
1196
+ :param run_rid: (required)
1197
+ :type run_rid: str
1198
+ :param worker_id: (required)
1199
+ :type worker_id: str
1200
+ :param _request_timeout: timeout setting for this request. If one
1201
+ number provided, it will be total request
1202
+ timeout. It can also be a pair (tuple) of
1203
+ (connection, read) timeouts.
1204
+ :type _request_timeout: int, tuple(int, int), optional
1205
+ :param _request_auth: set to override the auth_settings for an a single
1206
+ request; this effectively ignores the
1207
+ authentication in the spec for a single request.
1208
+ :type _request_auth: dict, optional
1209
+ :param _content_type: force content-type for the request.
1210
+ :type _content_type: str, Optional
1211
+ :param _headers: set to override the headers for a single
1212
+ request; this effectively ignores the headers
1213
+ in the spec for a single request.
1214
+ :type _headers: dict, optional
1215
+ :param _host_index: set to override the host_index for a single
1216
+ request; this effectively ignores the host_index
1217
+ in the spec for a single request.
1218
+ :type _host_index: int, optional
1219
+ :return: Returns the result object.
1220
+ """ # noqa: E501
1221
+
1222
+ _param = self._api_v1_workers_worker_id_runs_run_rid_get_serialize(
1223
+ run_rid=run_rid,
1224
+ worker_id=worker_id,
1225
+ _request_auth=_request_auth,
1226
+ _content_type=_content_type,
1227
+ _headers=_headers,
1228
+ _host_index=_host_index
1229
+ )
1230
+
1231
+ _response_types_map: Dict[str, Optional[str]] = {
1232
+ '200': "GetWorkerRunResponse",
1233
+ }
1234
+ response_data = self.api_client.call_api(
1235
+ *_param,
1236
+ _request_timeout=_request_timeout
1237
+ )
1238
+ response_data.read()
1239
+ return self.api_client.response_deserialize(
1240
+ response_data=response_data,
1241
+ response_types_map=_response_types_map,
1242
+ ).data
1243
+
1244
+
1245
+ @validate_call
1246
+ def api_v1_workers_worker_id_runs_run_rid_get_with_http_info(
1247
+ self,
1248
+ run_rid: StrictStr,
1249
+ worker_id: StrictStr,
1250
+ _request_timeout: Union[
1251
+ None,
1252
+ Annotated[StrictFloat, Field(gt=0)],
1253
+ Tuple[
1254
+ Annotated[StrictFloat, Field(gt=0)],
1255
+ Annotated[StrictFloat, Field(gt=0)]
1256
+ ]
1257
+ ] = None,
1258
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
1259
+ _content_type: Optional[StrictStr] = None,
1260
+ _headers: Optional[Dict[StrictStr, Any]] = None,
1261
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1262
+ ) -> ApiResponse[GetWorkerRunResponse]:
1263
+ """Get Worker Run
1264
+
1265
+
1266
+ :param run_rid: (required)
1267
+ :type run_rid: str
1268
+ :param worker_id: (required)
1269
+ :type worker_id: str
1270
+ :param _request_timeout: timeout setting for this request. If one
1271
+ number provided, it will be total request
1272
+ timeout. It can also be a pair (tuple) of
1273
+ (connection, read) timeouts.
1274
+ :type _request_timeout: int, tuple(int, int), optional
1275
+ :param _request_auth: set to override the auth_settings for an a single
1276
+ request; this effectively ignores the
1277
+ authentication in the spec for a single request.
1278
+ :type _request_auth: dict, optional
1279
+ :param _content_type: force content-type for the request.
1280
+ :type _content_type: str, Optional
1281
+ :param _headers: set to override the headers for a single
1282
+ request; this effectively ignores the headers
1283
+ in the spec for a single request.
1284
+ :type _headers: dict, optional
1285
+ :param _host_index: set to override the host_index for a single
1286
+ request; this effectively ignores the host_index
1287
+ in the spec for a single request.
1288
+ :type _host_index: int, optional
1289
+ :return: Returns the result object.
1290
+ """ # noqa: E501
1291
+
1292
+ _param = self._api_v1_workers_worker_id_runs_run_rid_get_serialize(
1293
+ run_rid=run_rid,
1294
+ worker_id=worker_id,
1295
+ _request_auth=_request_auth,
1296
+ _content_type=_content_type,
1297
+ _headers=_headers,
1298
+ _host_index=_host_index
1299
+ )
1300
+
1301
+ _response_types_map: Dict[str, Optional[str]] = {
1302
+ '200': "GetWorkerRunResponse",
1303
+ }
1304
+ response_data = self.api_client.call_api(
1305
+ *_param,
1306
+ _request_timeout=_request_timeout
1307
+ )
1308
+ response_data.read()
1309
+ return self.api_client.response_deserialize(
1310
+ response_data=response_data,
1311
+ response_types_map=_response_types_map,
1312
+ )
1313
+
1314
+
1315
+ @validate_call
1316
+ def api_v1_workers_worker_id_runs_run_rid_get_without_preload_content(
1317
+ self,
1318
+ run_rid: StrictStr,
1319
+ worker_id: StrictStr,
1320
+ _request_timeout: Union[
1321
+ None,
1322
+ Annotated[StrictFloat, Field(gt=0)],
1323
+ Tuple[
1324
+ Annotated[StrictFloat, Field(gt=0)],
1325
+ Annotated[StrictFloat, Field(gt=0)]
1326
+ ]
1327
+ ] = None,
1328
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
1329
+ _content_type: Optional[StrictStr] = None,
1330
+ _headers: Optional[Dict[StrictStr, Any]] = None,
1331
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1332
+ ) -> RESTResponseType:
1333
+ """Get Worker Run
1334
+
1335
+
1336
+ :param run_rid: (required)
1337
+ :type run_rid: str
1338
+ :param worker_id: (required)
1339
+ :type worker_id: str
1340
+ :param _request_timeout: timeout setting for this request. If one
1341
+ number provided, it will be total request
1342
+ timeout. It can also be a pair (tuple) of
1343
+ (connection, read) timeouts.
1344
+ :type _request_timeout: int, tuple(int, int), optional
1345
+ :param _request_auth: set to override the auth_settings for an a single
1346
+ request; this effectively ignores the
1347
+ authentication in the spec for a single request.
1348
+ :type _request_auth: dict, optional
1349
+ :param _content_type: force content-type for the request.
1350
+ :type _content_type: str, Optional
1351
+ :param _headers: set to override the headers for a single
1352
+ request; this effectively ignores the headers
1353
+ in the spec for a single request.
1354
+ :type _headers: dict, optional
1355
+ :param _host_index: set to override the host_index for a single
1356
+ request; this effectively ignores the host_index
1357
+ in the spec for a single request.
1358
+ :type _host_index: int, optional
1359
+ :return: Returns the result object.
1360
+ """ # noqa: E501
1361
+
1362
+ _param = self._api_v1_workers_worker_id_runs_run_rid_get_serialize(
1363
+ run_rid=run_rid,
1364
+ worker_id=worker_id,
1365
+ _request_auth=_request_auth,
1366
+ _content_type=_content_type,
1367
+ _headers=_headers,
1368
+ _host_index=_host_index
1369
+ )
1370
+
1371
+ _response_types_map: Dict[str, Optional[str]] = {
1372
+ '200': "GetWorkerRunResponse",
1373
+ }
1374
+ response_data = self.api_client.call_api(
1375
+ *_param,
1376
+ _request_timeout=_request_timeout
1377
+ )
1378
+ return response_data.response
1379
+
1380
+
1381
+ def _api_v1_workers_worker_id_runs_run_rid_get_serialize(
1382
+ self,
1383
+ run_rid,
1384
+ worker_id,
1385
+ _request_auth,
1386
+ _content_type,
1387
+ _headers,
1388
+ _host_index,
1389
+ ) -> RequestSerialized:
1390
+
1391
+ _host = None
1392
+
1393
+ _collection_formats: Dict[str, str] = {
1394
+ }
1395
+
1396
+ _path_params: Dict[str, str] = {}
1397
+ _query_params: List[Tuple[str, str]] = []
1398
+ _header_params: Dict[str, Optional[str]] = _headers or {}
1399
+ _form_params: List[Tuple[str, str]] = []
1400
+ _files: Dict[
1401
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1402
+ ] = {}
1403
+ _body_params: Optional[bytes] = None
1404
+
1405
+ # process the path parameters
1406
+ if run_rid is not None:
1407
+ _path_params['runRid'] = run_rid
1408
+ if worker_id is not None:
1409
+ _path_params['workerId'] = worker_id
1410
+ # process the query parameters
1411
+ # process the header parameters
1412
+ # process the form parameters
1413
+ # process the body parameter
1414
+
1415
+
1416
+ # set the HTTP header `Accept`
1417
+ if 'Accept' not in _header_params:
1418
+ _header_params['Accept'] = self.api_client.select_header_accept(
1419
+ [
1420
+ 'application/json'
1421
+ ]
1422
+ )
1423
+
1424
+
1425
+ # authentication setting
1426
+ _auth_settings: List[str] = [
1427
+ ]
1428
+
1429
+ return self.api_client.param_serialize(
1430
+ method='GET',
1431
+ resource_path='/api/v1/workers/{workerId}/runs/{runRid}',
1432
+ path_params=_path_params,
1433
+ query_params=_query_params,
1434
+ header_params=_header_params,
1435
+ body=_body_params,
1436
+ post_params=_form_params,
1437
+ files=_files,
1438
+ auth_settings=_auth_settings,
1439
+ collection_formats=_collection_formats,
1440
+ _host=_host,
1441
+ _request_auth=_request_auth
1442
+ )
1443
+
1444
+
1445
+
1446
+
1174
1447
  @validate_call
1175
1448
  def api_v1_workers_worker_id_runs_run_rid_resume_post(
1176
1449
  self,
@@ -47,6 +47,7 @@ from perceptic_core_client.models.get_parent_uri_response import GetParentUriRes
47
47
  from perceptic_core_client.models.get_signed_url_response import GetSignedUrlResponse
48
48
  from perceptic_core_client.models.get_worker_events_response import GetWorkerEventsResponse
49
49
  from perceptic_core_client.models.get_worker_metadata_response import GetWorkerMetadataResponse
50
+ from perceptic_core_client.models.get_worker_run_response import GetWorkerRunResponse
50
51
  from perceptic_core_client.models.get_worker_status_response import GetWorkerStatusResponse
51
52
  from perceptic_core_client.models.get_workers_response import GetWorkersResponse
52
53
  from perceptic_core_client.models.indexer_dto import IndexerDto
@@ -94,5 +95,6 @@ from perceptic_core_client.models.update_indexing_schedule_response import Updat
94
95
  from perceptic_core_client.models.update_tag_request import UpdateTagRequest
95
96
  from perceptic_core_client.models.update_tag_response import UpdateTagResponse
96
97
  from perceptic_core_client.models.upload_file_to_managed_file_system_response import UploadFileToManagedFileSystemResponse
98
+ from perceptic_core_client.models.user_info_response import UserInfoResponse
97
99
  from perceptic_core_client.models.worker_event import WorkerEvent
98
100
  from perceptic_core_client.models.worker_metadata_dto import WorkerMetadataDto
@@ -0,0 +1,97 @@
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 datetime import datetime
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
+ from typing import Any, ClassVar, Dict, List, Optional
23
+ from perceptic_core_client.models.run_status_dto import RunStatusDto
24
+ from typing import Optional, Set
25
+ from typing_extensions import Self
26
+
27
+ class GetWorkerRunResponse(BaseModel):
28
+ """
29
+ GetWorkerRunResponse
30
+ """ # noqa: E501
31
+ run_rid: Optional[StrictStr] = Field(default=None, alias="runRid")
32
+ status: Optional[RunStatusDto] = None
33
+ started_by_user_id: Optional[StrictStr] = Field(default=None, alias="startedByUserId")
34
+ created_at: Optional[datetime] = Field(default=None, alias="createdAt")
35
+ inputs: Optional[Dict[str, Any]] = None
36
+ __properties: ClassVar[List[str]] = ["runRid", "status", "startedByUserId", "createdAt", "inputs"]
37
+
38
+ model_config = ConfigDict(
39
+ populate_by_name=True,
40
+ validate_assignment=True,
41
+ protected_namespaces=(),
42
+ )
43
+
44
+
45
+ def to_str(self) -> str:
46
+ """Returns the string representation of the model using alias"""
47
+ return pprint.pformat(self.model_dump(by_alias=True))
48
+
49
+ def to_json(self) -> str:
50
+ """Returns the JSON representation of the model using alias"""
51
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
52
+ return json.dumps(self.to_dict())
53
+
54
+ @classmethod
55
+ def from_json(cls, json_str: str) -> Optional[Self]:
56
+ """Create an instance of GetWorkerRunResponse from a JSON string"""
57
+ return cls.from_dict(json.loads(json_str))
58
+
59
+ def to_dict(self) -> Dict[str, Any]:
60
+ """Return the dictionary representation of the model using alias.
61
+
62
+ This has the following differences from calling pydantic's
63
+ `self.model_dump(by_alias=True)`:
64
+
65
+ * `None` is only added to the output dict for nullable fields that
66
+ were set at model initialization. Other fields with value `None`
67
+ are ignored.
68
+ """
69
+ excluded_fields: Set[str] = set([
70
+ ])
71
+
72
+ _dict = self.model_dump(
73
+ by_alias=True,
74
+ exclude=excluded_fields,
75
+ exclude_none=True,
76
+ )
77
+ return _dict
78
+
79
+ @classmethod
80
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
81
+ """Create an instance of GetWorkerRunResponse from a dict"""
82
+ if obj is None:
83
+ return None
84
+
85
+ if not isinstance(obj, dict):
86
+ return cls.model_validate(obj)
87
+
88
+ _obj = cls.model_validate({
89
+ "runRid": obj.get("runRid"),
90
+ "status": obj.get("status"),
91
+ "startedByUserId": obj.get("startedByUserId"),
92
+ "createdAt": obj.get("createdAt"),
93
+ "inputs": obj.get("inputs")
94
+ })
95
+ return _obj
96
+
97
+
@@ -17,6 +17,7 @@ import pprint
17
17
  import re # noqa: F401
18
18
  import json
19
19
 
20
+ from datetime import datetime
20
21
  from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
21
22
  from typing import Any, ClassVar, Dict, List, Optional
22
23
  from typing import Optional, Set
@@ -28,8 +29,9 @@ class InfoEvent(BaseModel):
28
29
  """ # noqa: E501
29
30
  sequence: Optional[StrictInt] = None
30
31
  type_of: Optional[StrictStr] = Field(default=None, alias="typeOf")
32
+ created_at: Optional[datetime] = Field(default=None, alias="createdAt")
31
33
  type: Optional[StrictStr] = None
32
- __properties: ClassVar[List[str]] = ["sequence", "typeOf", "type"]
34
+ __properties: ClassVar[List[str]] = ["sequence", "typeOf", "createdAt", "type"]
33
35
 
34
36
  model_config = ConfigDict(
35
37
  populate_by_name=True,
@@ -84,6 +86,7 @@ class InfoEvent(BaseModel):
84
86
  _obj = cls.model_validate({
85
87
  "sequence": obj.get("sequence"),
86
88
  "typeOf": obj.get("typeOf"),
89
+ "createdAt": obj.get("createdAt"),
87
90
  "type": obj.get("type")
88
91
  })
89
92
  return _obj
@@ -17,7 +17,8 @@ import pprint
17
17
  import re # noqa: F401
18
18
  import json
19
19
 
20
- from pydantic import BaseModel, ConfigDict, StrictInt, StrictStr
20
+ from datetime import datetime
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
21
22
  from typing import Any, ClassVar, Dict, List, Optional
22
23
  from typing import Optional, Set
23
24
  from typing_extensions import Self
@@ -28,8 +29,9 @@ class ProgressEvent(BaseModel):
28
29
  """ # noqa: E501
29
30
  sequence: Optional[StrictInt] = None
30
31
  payload: Optional[Dict[str, Any]] = None
32
+ created_at: Optional[datetime] = Field(default=None, alias="createdAt")
31
33
  type: Optional[StrictStr] = None
32
- __properties: ClassVar[List[str]] = ["sequence", "payload", "type"]
34
+ __properties: ClassVar[List[str]] = ["sequence", "payload", "createdAt", "type"]
33
35
 
34
36
  model_config = ConfigDict(
35
37
  populate_by_name=True,
@@ -84,6 +86,7 @@ class ProgressEvent(BaseModel):
84
86
  _obj = cls.model_validate({
85
87
  "sequence": obj.get("sequence"),
86
88
  "payload": obj.get("payload"),
89
+ "createdAt": obj.get("createdAt"),
87
90
  "type": obj.get("type")
88
91
  })
89
92
  return _obj
@@ -17,6 +17,7 @@ import pprint
17
17
  import re # noqa: F401
18
18
  import json
19
19
 
20
+ from datetime import datetime
20
21
  from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
21
22
  from typing import Any, ClassVar, Dict, List, Optional
22
23
  from typing import Optional, Set
@@ -29,8 +30,9 @@ class RequestForInputEvent(BaseModel):
29
30
  sequence: Optional[StrictInt] = None
30
31
  requested_data: Optional[Dict[str, Any]] = Field(default=None, alias="requestedData")
31
32
  provided_data: Optional[Dict[str, Any]] = Field(default=None, alias="providedData")
33
+ created_at: Optional[datetime] = Field(default=None, alias="createdAt")
32
34
  type: Optional[StrictStr] = None
33
- __properties: ClassVar[List[str]] = ["sequence", "requestedData", "providedData", "type"]
35
+ __properties: ClassVar[List[str]] = ["sequence", "requestedData", "providedData", "createdAt", "type"]
34
36
 
35
37
  model_config = ConfigDict(
36
38
  populate_by_name=True,
@@ -91,6 +93,7 @@ class RequestForInputEvent(BaseModel):
91
93
  "sequence": obj.get("sequence"),
92
94
  "requestedData": obj.get("requestedData"),
93
95
  "providedData": obj.get("providedData"),
96
+ "createdAt": obj.get("createdAt"),
94
97
  "type": obj.get("type")
95
98
  })
96
99
  return _obj
@@ -0,0 +1,115 @@
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 UserInfoResponse(BaseModel):
26
+ """
27
+ User information response
28
+ """ # noqa: E501
29
+ user_id: StrictStr = Field(description="User ID/subject from JWT", alias="userId")
30
+ username: Optional[StrictStr] = Field(default=None, description="Username")
31
+ email: Optional[StrictStr] = Field(default=None, description="Email address")
32
+ first_name: Optional[StrictStr] = Field(default=None, description="First name", alias="firstName")
33
+ last_name: Optional[StrictStr] = Field(default=None, description="Last name", alias="lastName")
34
+ __properties: ClassVar[List[str]] = ["userId", "username", "email", "firstName", "lastName"]
35
+
36
+ model_config = ConfigDict(
37
+ populate_by_name=True,
38
+ validate_assignment=True,
39
+ protected_namespaces=(),
40
+ )
41
+
42
+
43
+ def to_str(self) -> str:
44
+ """Returns the string representation of the model using alias"""
45
+ return pprint.pformat(self.model_dump(by_alias=True))
46
+
47
+ def to_json(self) -> str:
48
+ """Returns the JSON representation of the model using alias"""
49
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
50
+ return json.dumps(self.to_dict())
51
+
52
+ @classmethod
53
+ def from_json(cls, json_str: str) -> Optional[Self]:
54
+ """Create an instance of UserInfoResponse from a JSON string"""
55
+ return cls.from_dict(json.loads(json_str))
56
+
57
+ def to_dict(self) -> Dict[str, Any]:
58
+ """Return the dictionary representation of the model using alias.
59
+
60
+ This has the following differences from calling pydantic's
61
+ `self.model_dump(by_alias=True)`:
62
+
63
+ * `None` is only added to the output dict for nullable fields that
64
+ were set at model initialization. Other fields with value `None`
65
+ are ignored.
66
+ """
67
+ excluded_fields: Set[str] = set([
68
+ ])
69
+
70
+ _dict = self.model_dump(
71
+ by_alias=True,
72
+ exclude=excluded_fields,
73
+ exclude_none=True,
74
+ )
75
+ # set to None if username (nullable) is None
76
+ # and model_fields_set contains the field
77
+ if self.username is None and "username" in self.model_fields_set:
78
+ _dict['username'] = None
79
+
80
+ # set to None if email (nullable) is None
81
+ # and model_fields_set contains the field
82
+ if self.email is None and "email" in self.model_fields_set:
83
+ _dict['email'] = None
84
+
85
+ # set to None if first_name (nullable) is None
86
+ # and model_fields_set contains the field
87
+ if self.first_name is None and "first_name" in self.model_fields_set:
88
+ _dict['firstName'] = None
89
+
90
+ # set to None if last_name (nullable) is None
91
+ # and model_fields_set contains the field
92
+ if self.last_name is None and "last_name" in self.model_fields_set:
93
+ _dict['lastName'] = None
94
+
95
+ return _dict
96
+
97
+ @classmethod
98
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
99
+ """Create an instance of UserInfoResponse from a dict"""
100
+ if obj is None:
101
+ return None
102
+
103
+ if not isinstance(obj, dict):
104
+ return cls.model_validate(obj)
105
+
106
+ _obj = cls.model_validate({
107
+ "userId": obj.get("userId"),
108
+ "username": obj.get("username"),
109
+ "email": obj.get("email"),
110
+ "firstName": obj.get("firstName"),
111
+ "lastName": obj.get("lastName")
112
+ })
113
+ return _obj
114
+
115
+
@@ -0,0 +1,55 @@
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.get_worker_run_response import GetWorkerRunResponse
18
+
19
+ class TestGetWorkerRunResponse(unittest.TestCase):
20
+ """GetWorkerRunResponse 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) -> GetWorkerRunResponse:
29
+ """Test GetWorkerRunResponse
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 `GetWorkerRunResponse`
34
+ """
35
+ model = GetWorkerRunResponse()
36
+ if include_optional:
37
+ return GetWorkerRunResponse(
38
+ run_rid = '',
39
+ status = 'QUEUED',
40
+ started_by_user_id = '',
41
+ created_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
42
+ inputs = None
43
+ )
44
+ else:
45
+ return GetWorkerRunResponse(
46
+ )
47
+ """
48
+
49
+ def testGetWorkerRunResponse(self):
50
+ """Test GetWorkerRunResponse"""
51
+ # inst_req_only = self.make_instance(include_optional=False)
52
+ # inst_req_and_optional = self.make_instance(include_optional=True)
53
+
54
+ if __name__ == '__main__':
55
+ unittest.main()
@@ -37,6 +37,7 @@ class TestInfoEvent(unittest.TestCase):
37
37
  return InfoEvent(
38
38
  sequence = 56,
39
39
  type_of = '',
40
+ created_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
40
41
  type = ''
41
42
  )
42
43
  else:
@@ -37,6 +37,7 @@ class TestProgressEvent(unittest.TestCase):
37
37
  return ProgressEvent(
38
38
  sequence = 56,
39
39
  payload = None,
40
+ created_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
40
41
  type = ''
41
42
  )
42
43
  else:
@@ -38,6 +38,7 @@ class TestRequestForInputEvent(unittest.TestCase):
38
38
  sequence = 56,
39
39
  requested_data = None,
40
40
  provided_data = None,
41
+ created_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
41
42
  type = ''
42
43
  )
43
44
  else:
@@ -0,0 +1,56 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ perceptic-core-server API
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: 0.0.1-SNAPSHOT
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ import unittest
16
+
17
+ from perceptic_core_client.models.user_info_response import UserInfoResponse
18
+
19
+ class TestUserInfoResponse(unittest.TestCase):
20
+ """UserInfoResponse 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) -> UserInfoResponse:
29
+ """Test UserInfoResponse
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 `UserInfoResponse`
34
+ """
35
+ model = UserInfoResponse()
36
+ if include_optional:
37
+ return UserInfoResponse(
38
+ user_id = '',
39
+ username = '',
40
+ email = '',
41
+ first_name = '',
42
+ last_name = ''
43
+ )
44
+ else:
45
+ return UserInfoResponse(
46
+ user_id = '',
47
+ )
48
+ """
49
+
50
+ def testUserInfoResponse(self):
51
+ """Test UserInfoResponse"""
52
+ # inst_req_only = self.make_instance(include_optional=False)
53
+ # inst_req_and_optional = self.make_instance(include_optional=True)
54
+
55
+ if __name__ == '__main__':
56
+ unittest.main()
@@ -33,6 +33,13 @@ class TestUserResourceApi(unittest.TestCase):
33
33
  """
34
34
  pass
35
35
 
36
+ def test_api_v1_users_user_subject_get(self) -> None:
37
+ """Test case for api_v1_users_user_subject_get
38
+
39
+ Get user by subject
40
+ """
41
+ pass
42
+
36
43
 
37
44
  if __name__ == '__main__':
38
45
  unittest.main()
@@ -38,6 +38,7 @@ class TestWorkerEvent(unittest.TestCase):
38
38
  type = '',
39
39
  sequence = 56,
40
40
  type_of = '',
41
+ created_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
41
42
  payload = perceptic_core_client.models.payload.payload(),
42
43
  requested_data = perceptic_core_client.models.requested_data.requestedData(),
43
44
  provided_data = perceptic_core_client.models.provided_data.providedData()
@@ -54,6 +54,13 @@ class TestWorkerResourceApi(unittest.TestCase):
54
54
  """
55
55
  pass
56
56
 
57
+ def test_api_v1_workers_worker_id_runs_run_rid_get(self) -> None:
58
+ """Test case for api_v1_workers_worker_id_runs_run_rid_get
59
+
60
+ Get Worker Run
61
+ """
62
+ pass
63
+
57
64
  def test_api_v1_workers_worker_id_runs_run_rid_resume_post(self) -> None:
58
65
  """Test case for api_v1_workers_worker_id_runs_run_rid_resume_post
59
66
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: perceptic-core-client
3
- Version: 0.28.0
3
+ Version: 0.30.0
4
4
  Summary: Python client for Perceptic Core
5
5
  Author-email: Your Name <you@example.com>
6
6
  License: Proprietary
@@ -1,4 +1,4 @@
1
- perceptic_core_client/__init__.py,sha256=O7lU75t6bYENHVPZt3HzMKBJDwkHp1mV_OsxQwTLx-Y,14127
1
+ perceptic_core_client/__init__.py,sha256=WlDRyPk6yIT1DM9_6gkKJ0CwSGSvMHguCGaT_I1dNo4,14386
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
@@ -13,9 +13,9 @@ perceptic_core_client/api/indexing_schedule_resource_api.py,sha256=FJOZsv_mQ2yeI
13
13
  perceptic_core_client/api/indexing_task_resource_api.py,sha256=nHDH5bEdTUzw8qsS8FvmCEErF6JTH4vGI4JC6mmylD8,44317
14
14
  perceptic_core_client/api/tag_resource_api.py,sha256=q9BmZSkNzE6qW56bytte_aQ0VP2hG3d5_sApnTestr4,78302
15
15
  perceptic_core_client/api/uri_resource_api.py,sha256=37kkpiZQyxd-184Zql6s5J714FJSIrT0o4Wr9rDMxe8,114212
16
- perceptic_core_client/api/user_resource_api.py,sha256=LrqvNebOhBI_EoLTZpCC7OHYPomDoctWKJkv173W2p8,10222
17
- perceptic_core_client/api/worker_resource_api.py,sha256=qyzp9_qMZICVpKtEyy70Gs5ps36Cmgl9lZLllOXkNOI,66424
18
- perceptic_core_client/models/__init__.py,sha256=PrK0JAOcYuE9hhRefuapEO615vizh1Ob_WZzjeiCyLw,7475
16
+ perceptic_core_client/api/user_resource_api.py,sha256=HDkfUz8gHi1sSwhSKD2yrsbXiE3Q9ZuEB_dlVhEc07o,20686
17
+ perceptic_core_client/api/worker_resource_api.py,sha256=6K4Uaucbv8FpDe9hyOzZF-qLA25hmEtbU5AqxQdc6QA,76805
18
+ perceptic_core_client/models/__init__.py,sha256=8qo21WVO7zYb29W6a54furkWItWLsEfV8BF-bf9HYJg,7638
19
19
  perceptic_core_client/models/action_type.py,sha256=N_ESOrMP83pxJKGJvrBH_T0xDjSmHoISZ01SB81Oomc,786
20
20
  perceptic_core_client/models/add_tag_to_file_request.py,sha256=-4lKwOdDAuxjjWc7Sqgy9cvdif05AGIrrgUi-dl4NBk,2593
21
21
  perceptic_core_client/models/azure_blob_connection_settings_api_dto.py,sha256=3tIHzJKXkvypEgQZRnM_FoVYNI3cwbbLhggl09f3o54,4297
@@ -49,6 +49,7 @@ perceptic_core_client/models/get_parent_uri_response.py,sha256=CHdAJRDZBjaJRXc3G
49
49
  perceptic_core_client/models/get_signed_url_response.py,sha256=N2Ou4qIy4GMbU0fjBhhp2EINPDh5Xl3cuIzFbdNoimU,2825
50
50
  perceptic_core_client/models/get_worker_events_response.py,sha256=NNgACf4aKOrXAJVBquBHe9Aha9IU17czsptehF9JnE0,3038
51
51
  perceptic_core_client/models/get_worker_metadata_response.py,sha256=J-mYsSbMQOD4WiMs03LbKkiwbQKo8CVRFyliatJ6GSE,3005
52
+ perceptic_core_client/models/get_worker_run_response.py,sha256=dra1kE1dgq3Sb0Lazp9ma_QWUIvVdmC4ATV-F9Sj2r8,3189
52
53
  perceptic_core_client/models/get_worker_status_response.py,sha256=Nqnk8jojhtiCk9fYTHTCx43M5Ep0toSvL_8YLoJkxsQ,2685
53
54
  perceptic_core_client/models/get_workers_response.py,sha256=DZ80TAIg6gk67hFzF7JQuN4LgjrsM6yRA87M4DyHNRw,2661
54
55
  perceptic_core_client/models/indexer_dto.py,sha256=gATmR19wmiiofWTmZHdvKxorRbTKKQRQQeq4qUwCGIk,3077
@@ -57,7 +58,7 @@ perceptic_core_client/models/indexing_action_status.py,sha256=bFbXdXE4haR-d0c6_1
57
58
  perceptic_core_client/models/indexing_schedule_dto.py,sha256=Dw3vWVGtbDqtH7Obr7ndXiDwNVr4_Th6-WuOBkKgE_4,4716
58
59
  perceptic_core_client/models/indexing_task_dto.py,sha256=yppEm19qsmfcdU9c1gQcSywhfllZ-FyMBeyPUHymkcU,3846
59
60
  perceptic_core_client/models/indexing_task_status.py,sha256=QgFt3FMt__c0G784fTCBOj1rMGb_Q90KHu0hKShwsVA,2542
60
- perceptic_core_client/models/info_event.py,sha256=db9651B1JpokCTsG_GFht77lbcL3gsr_6t2OYtMIlqY,2744
61
+ perceptic_core_client/models/info_event.py,sha256=tVyCsjh0JCd5i6EI04VsFHSjsfmHSo8cQiGQv4HMPWw,2910
61
62
  perceptic_core_client/models/interval_trigger.py,sha256=ln-iUgKe9EQddt49-CRdSsZFNvtc0pxNe0FNWVpE1GE,2784
62
63
  perceptic_core_client/models/json_node.py,sha256=RSRg1_3scVGIJuYs74PQg48ZeEebrUBzNfHV5qM5exw,4978
63
64
  perceptic_core_client/models/json_node_type.py,sha256=2K1l2OqsS9vuYpYN3HsrL0l5-LbJv0AZ_k5mRf4eczs,924
@@ -75,10 +76,10 @@ perceptic_core_client/models/on_upload_trigger.py,sha256=BUc5nKPZ-ZoAbKKtO4Hwdtt
75
76
  perceptic_core_client/models/paged_list_file_system_response.py,sha256=RqY3rfmucbx4Ya89DDVTU2hC4DAJHZTdi7ronC7fmnI,3440
76
77
  perceptic_core_client/models/post_worker_run_request.py,sha256=6bfgf2Yrwpc46X6c_NL2Mlf9YyKUBzk_kl9o26COtW8,2525
77
78
  perceptic_core_client/models/post_worker_run_response.py,sha256=zOpSem6C2F8of_AM4LZCY2C4fpa8aB3g5iy2bCrfRjU,2601
78
- perceptic_core_client/models/progress_event.py,sha256=cGiJgu4FUBkG6WtUbMU-IQ6UaS648KhBTD_L0mr1_2Q,2730
79
+ perceptic_core_client/models/progress_event.py,sha256=5iAGv-0wpu39PDBG1062TEXMQkjf7PIxo6El9hUnPOo,2903
79
80
  perceptic_core_client/models/remote_file_system_api_dto.py,sha256=P770rxN2fZZqPDEPEeMFpcKcDiWQHmxVr_9TzBgroz4,3463
80
81
  perceptic_core_client/models/remove_tag_from_file_request.py,sha256=u_liteh8V2JVMOeBYuTW6rpxaasZhFUESn7L_ZBcCMQ,2613
81
- perceptic_core_client/models/request_for_input_event.py,sha256=S2lCszkJLYxZKMXczhPLW8nMVQaUFvROt51YJKnSn3s,3219
82
+ perceptic_core_client/models/request_for_input_event.py,sha256=vyOlVROPfcBRBXnKLRY5M-c7ZVqLhOyn-qdheBpY9_Y,3385
82
83
  perceptic_core_client/models/resource_entry_dto.py,sha256=dbRIgLIzUVNls7D62ANS5e79w_hctiOagLXnWVpTIRs,3033
83
84
  perceptic_core_client/models/resource_identifier.py,sha256=ODJVfR3FSO8nnICHCUwpVGynjv57jRy9cRaWjepndxo,3474
84
85
  perceptic_core_client/models/resource_metadata_dto.py,sha256=u81AjXtYtpOQ0ku4Bb8vl_zVK6J-1i9F82LPaqqS1W4,4444
@@ -96,6 +97,7 @@ perceptic_core_client/models/update_indexing_schedule_response.py,sha256=3TVX_PI
96
97
  perceptic_core_client/models/update_tag_request.py,sha256=1vGfkaNqq7Qq9xpOJtujAG_q3xbx8Ct-9MJtjPrb02g,3204
97
98
  perceptic_core_client/models/update_tag_response.py,sha256=AC8amL5bmPNVDuW8NyqcjslTnzCjsgWTFn9C_de09AA,2892
98
99
  perceptic_core_client/models/upload_file_to_managed_file_system_response.py,sha256=JvwpcS4IZTpkgcYmSNQX67Ex8O0OfPLygsaGIUTFy9g,2691
100
+ perceptic_core_client/models/user_info_response.py,sha256=S9NNuv4RWsInlg8edk4nsl6srv6Sur3eZvpni5Tvo2g,4051
99
101
  perceptic_core_client/models/worker_event.py,sha256=QztjNPMatUO4PLpSbOguRA9Ce4YzybIplB2m4p4kEZw,7543
100
102
  perceptic_core_client/models/worker_metadata_dto.py,sha256=S9jsLoj3df5H_40EV7KGh7KoEamWUAZbIaDgCm27QAA,2986
101
103
  perceptic_core_client/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -135,6 +137,7 @@ perceptic_core_client/test/test_get_parent_uri_response.py,sha256=3yjM69ht8leTvL
135
137
  perceptic_core_client/test/test_get_signed_url_response.py,sha256=BpwbWZA8xdrJbfXg_E-7pQWjBu-7VgYTYIQoeTRLmes,1494
136
138
  perceptic_core_client/test/test_get_worker_events_response.py,sha256=P2xL5C6cP4xy5S6s7t4o-JytNYo9J-dbghOJQg2DHlM,1624
137
139
  perceptic_core_client/test/test_get_worker_metadata_response.py,sha256=Yl4A7wiJc9JhXqyoGIjU7lBb5pNKddPFCkdEktJ8MZc,1895
140
+ perceptic_core_client/test/test_get_worker_run_response.py,sha256=eQAWowqYL4Bdh87FV1l5Y6dPZ5qz2ZQf0kSrMK24Q8A,1706
138
141
  perceptic_core_client/test/test_get_worker_status_response.py,sha256=vn-sTDmcC07YzlqkqBhgFRceNybgMvMCunjCrL9uXtM,1537
139
142
  perceptic_core_client/test/test_get_workers_response.py,sha256=_5F2qJyemvwSH-0bapn3eNQxXzJpFeLun5v_7BvRn84,1582
140
143
  perceptic_core_client/test/test_indexer_dto.py,sha256=mjhqidl61JrXVM6UbfXE1tzsLsEGmPk5MytkEiFdk3A,1471
@@ -146,7 +149,7 @@ perceptic_core_client/test/test_indexing_schedule_resource_api.py,sha256=6nK0TA8
146
149
  perceptic_core_client/test/test_indexing_task_dto.py,sha256=4LSPu_AoLgeAKoJnRW3dDB7z9xijuqCKhatGHOb4uGc,1897
147
150
  perceptic_core_client/test/test_indexing_task_resource_api.py,sha256=3pjEoxSJl7SCxFsUORUHdhDDZTdVvNXEaqiQK_7T3Lg,1310
148
151
  perceptic_core_client/test/test_indexing_task_status.py,sha256=mM7GA47e4_PrWMjYPuph2Cne00AwM7K7a_gEH5rPIwQ,1464
149
- perceptic_core_client/test/test_info_event.py,sha256=g7tdVz5LgKv_73J5ARvTbXjy7KpRHz4Yo2_wpJLMLWM,1416
152
+ perceptic_core_client/test/test_info_event.py,sha256=_RQLTqr5Dwdgzrx9-dpz69_vqeRbmtzLKb3VM5EXJAI,1523
150
153
  perceptic_core_client/test/test_interval_trigger.py,sha256=4LtBbdG_GzjV0gT8mUvPbV1DdnzKzhuHItLvyd7E1dA,1596
151
154
  perceptic_core_client/test/test_json_node.py,sha256=PSqWJ-4Ho-C5lVLLSiSpN8DROm0r-I0s0-R8cwGV9mU,2049
152
155
  perceptic_core_client/test/test_json_node_type.py,sha256=8rP20yxdJKWDcYGdyGGBvaHqDOX6ymT6Ug4mVoCLcA0,732
@@ -164,10 +167,10 @@ perceptic_core_client/test/test_on_upload_trigger.py,sha256=ZcWuPWj_qhFgW7zHry74
164
167
  perceptic_core_client/test/test_paged_list_file_system_response.py,sha256=iL09EP0VO_9B5RmCtObqmj4xvLQMLKaTGs7gGFJj15c,2449
165
168
  perceptic_core_client/test/test_post_worker_run_request.py,sha256=FxIpvUHxCJXPKbjUL361J8k0J4fB3kIF3Q9vpFiNWD4,1524
166
169
  perceptic_core_client/test/test_post_worker_run_response.py,sha256=rG0x1tul3NFPpjhKQi-p379nHo_H6jF69cVKM5WHpH0,1504
167
- perceptic_core_client/test/test_progress_event.py,sha256=wS4vJ8bjat5LlJqZ5bgH4yF6-vGKBYbZlA7N16Ru0Vc,1466
170
+ perceptic_core_client/test/test_progress_event.py,sha256=f3iVzbhJCR7qhgNpmAYfUl-jNz3fWoAsq9trduuDY44,1573
168
171
  perceptic_core_client/test/test_remote_file_system_api_dto.py,sha256=z99dSsSJu-rZg1CaO49PxoJIsvA9HD8fOajXD45prRM,1760
169
172
  perceptic_core_client/test/test_remove_tag_from_file_request.py,sha256=axXB7hXXAgVbJJaaWSdZnjlIo6abQ6U2Y3vfDdNWBhI,1541
170
- perceptic_core_client/test/test_request_for_input_event.py,sha256=Sr75_y9HuXYA24DZVbe7af6jASe1s2LBAIeEMPlCxwQ,1597
173
+ perceptic_core_client/test/test_request_for_input_event.py,sha256=b9utJZaYEoGDaDEAzJ6i81_EwzAE_zRuxy2htWdQNNg,1704
171
174
  perceptic_core_client/test/test_resource_entry_dto.py,sha256=YhUIrTim9PD-cezsLsJrU4MZfU6A0R4F8PyucrS5Zuc,2071
172
175
  perceptic_core_client/test/test_resource_identifier.py,sha256=Sxk9OBxw0C2fhRKsHJKI1fPFDEO0KLX6OEYGFWi79NE,1702
173
176
  perceptic_core_client/test/test_resource_metadata_dto.py,sha256=92GnTbx8hWsec8RHzfnuasY38ZFvM8HmSQIQXN6tSoo,1909
@@ -187,11 +190,12 @@ perceptic_core_client/test/test_update_tag_request.py,sha256=quiRdlic1vOuoYEuXzK
187
190
  perceptic_core_client/test/test_update_tag_response.py,sha256=JUyWJN6lPeDhYU_UQqBNYI2iJj0kdIkTKi7CPGgnK3w,1641
188
191
  perceptic_core_client/test/test_upload_file_to_managed_file_system_response.py,sha256=Mpmwqqz0m3p6b9Ofa3nC9ar9tG8FwHYBf9QkhLA54Ho,1705
189
192
  perceptic_core_client/test/test_uri_resource_api.py,sha256=DkUIfx6Fp59t_rDZRDm3LP3qAl_RHnnJWlq1l-ILHh8,2182
190
- perceptic_core_client/test/test_user_resource_api.py,sha256=yCzM6n1J0xjbLBWW1hcE6m6epT8u8Atck7fnGoOdwBw,817
191
- perceptic_core_client/test/test_worker_event.py,sha256=f8zBXEkGhya6Tu0quq9p3Mpm1exxMr9z21q72JvYNLg,1699
193
+ perceptic_core_client/test/test_user_info_response.py,sha256=UpY4zDbL1STHqrssuuELMkMnRCC5lx4d-OoJXblcM7M,1597
194
+ perceptic_core_client/test/test_user_resource_api.py,sha256=Avy-2ageU3Ovr2grQc3qvWH7hMJLARDq-ctyfycYVX4,985
195
+ perceptic_core_client/test/test_worker_event.py,sha256=DE2k0eDS-MUQqAEeOSk-5Dd-wNAa2Jbqo-ClekLsEGQ,1806
192
196
  perceptic_core_client/test/test_worker_metadata_dto.py,sha256=lbvKWvnwcKEfHHh9diRevdceGEJwgv3INVphqaxiAlw,1674
193
- perceptic_core_client/test/test_worker_resource_api.py,sha256=1kCAFp5_mHmrQrUKgp6hKcriNlwvtq5J8dCvAFTMKQM,1794
194
- perceptic_core_client-0.28.0.dist-info/METADATA,sha256=9FLpcFXWtyWNJaRW1yB9KpCv-vAes1RAulzenoM_ygM,3605
195
- perceptic_core_client-0.28.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
196
- perceptic_core_client-0.28.0.dist-info/top_level.txt,sha256=wWF5_isd4ZU0SRPPhKKAxW4kJ9hYIBgLbcWn_y-c1tg,22
197
- perceptic_core_client-0.28.0.dist-info/RECORD,,
197
+ perceptic_core_client/test/test_worker_resource_api.py,sha256=qRsv72RCDrc--gqIDNs0sRDBc8p1BKGNmGuPdkCGwXs,1981
198
+ perceptic_core_client-0.30.0.dist-info/METADATA,sha256=87i41bVMVZ8i6VaMbmU50NZ2BCPn-Mb8zZtL_BzZTTY,3605
199
+ perceptic_core_client-0.30.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
200
+ perceptic_core_client-0.30.0.dist-info/top_level.txt,sha256=wWF5_isd4ZU0SRPPhKKAxW4kJ9hYIBgLbcWn_y-c1tg,22
201
+ perceptic_core_client-0.30.0.dist-info/RECORD,,