flywheel-sdk 19.3.0rc2__py2.py3-none-any.whl → 19.4.0__py2.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.
- flywheel/__init__.py +1 -0
- flywheel/api/acquisitions_api.py +134 -28
- flywheel/api/analyses_api.py +125 -21
- flywheel/api/collections_api.py +122 -12
- flywheel/api/containers_api.py +25 -27
- flywheel/api/files_api.py +212 -4
- flywheel/api/groups_api.py +109 -1
- flywheel/api/jobs_api.py +5 -1
- flywheel/api/projects_api.py +149 -31
- flywheel/api/sessions_api.py +144 -30
- flywheel/api/subjects_api.py +139 -29
- flywheel/api/tree_api.py +5 -1
- flywheel/api/users_api.py +15 -3
- flywheel/api_client.py +1 -1
- flywheel/configuration.py +2 -2
- flywheel/flywheel.py +207 -187
- flywheel/models/__init__.py +2 -1
- flywheel/models/daily_report_usage.py +62 -4
- flywheel/models/features.py +16 -16
- flywheel/models/filter.py +217 -0
- flywheel/models/mixins.py +33 -2
- flywheel/models/report_usage.py +88 -1
- {flywheel_sdk-19.3.0rc2.dist-info → flywheel_sdk-19.4.0.dist-info}/METADATA +6 -6
- {flywheel_sdk-19.3.0rc2.dist-info → flywheel_sdk-19.4.0.dist-info}/RECORD +27 -26
- {flywheel_sdk-19.3.0rc2.dist-info → flywheel_sdk-19.4.0.dist-info}/WHEEL +1 -1
- {flywheel_sdk-19.3.0rc2.dist-info → flywheel_sdk-19.4.0.dist-info}/LICENSE.txt +0 -0
- {flywheel_sdk-19.3.0rc2.dist-info → flywheel_sdk-19.4.0.dist-info}/top_level.txt +0 -0
flywheel/api/collections_api.py
CHANGED
|
@@ -1322,6 +1322,110 @@ class CollectionsApi(object):
|
|
|
1322
1322
|
_request_out=params.get('_request_out'),
|
|
1323
1323
|
collection_formats=collection_formats)
|
|
1324
1324
|
|
|
1325
|
+
def delete_collections_by_query(self, body, **kwargs): # noqa: E501
|
|
1326
|
+
"""Delete multiple collections by query
|
|
1327
|
+
|
|
1328
|
+
Delete multiple collections by query
|
|
1329
|
+
This method makes a synchronous HTTP request by default.
|
|
1330
|
+
|
|
1331
|
+
:param list[Filter] body: Query for containers to delete (required)
|
|
1332
|
+
:param ContainerDeleteReason delete_reason:
|
|
1333
|
+
:param bool async_: Perform the request asynchronously
|
|
1334
|
+
:return: DeletedResult
|
|
1335
|
+
"""
|
|
1336
|
+
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
1337
|
+
kwargs['_return_http_data_only'] = True
|
|
1338
|
+
|
|
1339
|
+
if kwargs.get('async_'):
|
|
1340
|
+
return self.delete_collections_by_query_with_http_info(body, **kwargs) # noqa: E501
|
|
1341
|
+
else:
|
|
1342
|
+
(data) = self.delete_collections_by_query_with_http_info(body, **kwargs) # noqa: E501
|
|
1343
|
+
if (
|
|
1344
|
+
data
|
|
1345
|
+
and hasattr(data, 'return_value')
|
|
1346
|
+
and not ignore_simplified_return_value
|
|
1347
|
+
):
|
|
1348
|
+
return data.return_value()
|
|
1349
|
+
return data
|
|
1350
|
+
|
|
1351
|
+
|
|
1352
|
+
def delete_collections_by_query_with_http_info(self, body, **kwargs): # noqa: E501
|
|
1353
|
+
"""Delete multiple collections by query
|
|
1354
|
+
|
|
1355
|
+
Delete multiple collections by query
|
|
1356
|
+
This method makes a synchronous HTTP request by default.
|
|
1357
|
+
|
|
1358
|
+
:param list[Filter] body: Query for containers to delete (required)
|
|
1359
|
+
:param ContainerDeleteReason delete_reason:
|
|
1360
|
+
:param bool async_: Perform the request asynchronously
|
|
1361
|
+
:return: DeletedResult
|
|
1362
|
+
"""
|
|
1363
|
+
|
|
1364
|
+
all_params = ['body','delete_reason',] # noqa: E501
|
|
1365
|
+
all_params.append('async_')
|
|
1366
|
+
all_params.append('_return_http_data_only')
|
|
1367
|
+
all_params.append('_preload_content')
|
|
1368
|
+
all_params.append('_request_timeout')
|
|
1369
|
+
all_params.append('_request_out')
|
|
1370
|
+
|
|
1371
|
+
params = locals()
|
|
1372
|
+
for key, val in six.iteritems(params['kwargs']):
|
|
1373
|
+
if key not in all_params:
|
|
1374
|
+
raise TypeError(
|
|
1375
|
+
"Got an unexpected keyword argument '%s'"
|
|
1376
|
+
" to method delete_collections_by_query" % key
|
|
1377
|
+
)
|
|
1378
|
+
params[key] = val
|
|
1379
|
+
del params['kwargs']
|
|
1380
|
+
# verify the required parameter 'body' is set
|
|
1381
|
+
if ('body' not in params or
|
|
1382
|
+
params['body'] is None):
|
|
1383
|
+
raise ValueError("Missing the required parameter `body` when calling `delete_collections_by_query`") # noqa: E501
|
|
1384
|
+
|
|
1385
|
+
collection_formats = {}
|
|
1386
|
+
|
|
1387
|
+
path_params = {}
|
|
1388
|
+
|
|
1389
|
+
query_params = []
|
|
1390
|
+
if 'delete_reason' in params:
|
|
1391
|
+
query_params.append(('delete_reason', params['delete_reason'])) # noqa: E501
|
|
1392
|
+
|
|
1393
|
+
header_params = {}
|
|
1394
|
+
|
|
1395
|
+
form_params = []
|
|
1396
|
+
local_var_files = {}
|
|
1397
|
+
|
|
1398
|
+
body_params = None
|
|
1399
|
+
if 'body' in params:
|
|
1400
|
+
body_params = params['body']
|
|
1401
|
+
# HTTP header `Accept`
|
|
1402
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
1403
|
+
['application/json']) # noqa: E501
|
|
1404
|
+
|
|
1405
|
+
# HTTP header `Content-Type`
|
|
1406
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
1407
|
+
['application/json']) # noqa: E501
|
|
1408
|
+
|
|
1409
|
+
# Authentication setting
|
|
1410
|
+
auth_settings = ['ApiKey'] # noqa: E501
|
|
1411
|
+
|
|
1412
|
+
return self.api_client.call_api(
|
|
1413
|
+
'/collections/delete_by_query', 'DELETE',
|
|
1414
|
+
path_params,
|
|
1415
|
+
query_params,
|
|
1416
|
+
header_params,
|
|
1417
|
+
body=body_params,
|
|
1418
|
+
post_params=form_params,
|
|
1419
|
+
files=local_var_files,
|
|
1420
|
+
response_type='DeletedResult', # noqa: E501
|
|
1421
|
+
auth_settings=auth_settings,
|
|
1422
|
+
async_=params.get('async_'),
|
|
1423
|
+
_return_http_data_only=params.get('_return_http_data_only'),
|
|
1424
|
+
_preload_content=params.get('_preload_content', True),
|
|
1425
|
+
_request_timeout=params.get('_request_timeout'),
|
|
1426
|
+
_request_out=params.get('_request_out'),
|
|
1427
|
+
collection_formats=collection_formats)
|
|
1428
|
+
|
|
1325
1429
|
def download_file_from_collection(self, collection_id, file_name, dest_file, **kwargs): # noqa: E501
|
|
1326
1430
|
"""Download a file.
|
|
1327
1431
|
|
|
@@ -1456,9 +1560,9 @@ class CollectionsApi(object):
|
|
|
1456
1560
|
collection_formats=collection_formats)
|
|
1457
1561
|
|
|
1458
1562
|
def get_collection_file_zip_info(self, collection_id, file_name, **kwargs): # noqa: E501
|
|
1459
|
-
"""
|
|
1563
|
+
"""Retrieve the zip info of a child file by name.
|
|
1460
1564
|
|
|
1461
|
-
|
|
1565
|
+
Does not work on files whose names contain a forward slash.
|
|
1462
1566
|
This method makes a synchronous HTTP request by default.
|
|
1463
1567
|
|
|
1464
1568
|
:param str collection_id: 24-character hex ID (required)
|
|
@@ -1491,9 +1595,9 @@ class CollectionsApi(object):
|
|
|
1491
1595
|
|
|
1492
1596
|
|
|
1493
1597
|
def get_collection_file_zip_info_with_http_info(self, collection_id, file_name, **kwargs): # noqa: E501
|
|
1494
|
-
"""
|
|
1598
|
+
"""Retrieve the zip info of a child file by name.
|
|
1495
1599
|
|
|
1496
|
-
|
|
1600
|
+
Does not work on files whose names contain a forward slash.
|
|
1497
1601
|
This method makes a synchronous HTTP request by default.
|
|
1498
1602
|
|
|
1499
1603
|
:param str collection_id: 24-character hex ID (required)
|
|
@@ -1595,9 +1699,8 @@ class CollectionsApi(object):
|
|
|
1595
1699
|
collection_formats=collection_formats)
|
|
1596
1700
|
|
|
1597
1701
|
def get_collection_download_ticket(self, collection_id, file_name, **kwargs): # noqa: E501
|
|
1598
|
-
"""
|
|
1702
|
+
"""Get a signed URL to download a named child file.
|
|
1599
1703
|
|
|
1600
|
-
Files can be downloaded directly from this endpoint with a valid \"Authorization\" header or via a ticket id. To generate a ticket: - Make a request with an empty \"ticket\" parameter and a valid \"Authorization\" header. The server will respond with a generated ticket id. - Make another request with the received ticket id in the \"ticket\" parameter. A valid \"Authorization\" header is no longer required. When \"view\" is true, [RFC7233](https://tools.ietf.org/html/rfc7233) range request headers are supported. When virus_scan feature is enabled the quarantined files only can be downloaded using signed urls otherwise it will return with a HTTP 400 response.
|
|
1601
1704
|
This method makes a synchronous HTTP request by default.
|
|
1602
1705
|
|
|
1603
1706
|
:param str collection_id: 24-character hex ID (required)
|
|
@@ -1630,9 +1733,8 @@ class CollectionsApi(object):
|
|
|
1630
1733
|
|
|
1631
1734
|
|
|
1632
1735
|
def get_collection_download_ticket_with_http_info(self, collection_id, file_name, **kwargs): # noqa: E501
|
|
1633
|
-
"""
|
|
1736
|
+
"""Get a signed URL to download a named child file.
|
|
1634
1737
|
|
|
1635
|
-
Files can be downloaded directly from this endpoint with a valid \"Authorization\" header or via a ticket id. To generate a ticket: - Make a request with an empty \"ticket\" parameter and a valid \"Authorization\" header. The server will respond with a generated ticket id. - Make another request with the received ticket id in the \"ticket\" parameter. A valid \"Authorization\" header is no longer required. When \"view\" is true, [RFC7233](https://tools.ietf.org/html/rfc7233) range request headers are supported. When virus_scan feature is enabled the quarantined files only can be downloaded using signed urls otherwise it will return with a HTTP 400 response.
|
|
1636
1738
|
This method makes a synchronous HTTP request by default.
|
|
1637
1739
|
|
|
1638
1740
|
:param str collection_id: 24-character hex ID (required)
|
|
@@ -1742,6 +1844,7 @@ class CollectionsApi(object):
|
|
|
1742
1844
|
:param bool join_files:
|
|
1743
1845
|
:param JoinType join:
|
|
1744
1846
|
:param bool stats:
|
|
1847
|
+
:param bool include_all_info: Include all info in returned objects
|
|
1745
1848
|
:param str user_id:
|
|
1746
1849
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
1747
1850
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
@@ -1780,6 +1883,7 @@ class CollectionsApi(object):
|
|
|
1780
1883
|
:param bool join_files:
|
|
1781
1884
|
:param JoinType join:
|
|
1782
1885
|
:param bool stats:
|
|
1886
|
+
:param bool include_all_info: Include all info in returned objects
|
|
1783
1887
|
:param str user_id:
|
|
1784
1888
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
1785
1889
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
@@ -1792,7 +1896,7 @@ class CollectionsApi(object):
|
|
|
1792
1896
|
:return: union[Page,list[CollectionWithStats],list[CollectionOutput]]
|
|
1793
1897
|
"""
|
|
1794
1898
|
|
|
1795
|
-
all_params = ['exhaustive','join_avatars','join_files','join','stats','user_id','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
1899
|
+
all_params = ['exhaustive','join_avatars','join_files','join','stats','include_all_info','user_id','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
1796
1900
|
all_params.append('async_')
|
|
1797
1901
|
all_params.append('_return_http_data_only')
|
|
1798
1902
|
all_params.append('_preload_content')
|
|
@@ -1824,6 +1928,8 @@ class CollectionsApi(object):
|
|
|
1824
1928
|
query_params.append(('join', params['join'])) # noqa: E501
|
|
1825
1929
|
if 'stats' in params:
|
|
1826
1930
|
query_params.append(('stats', params['stats'])) # noqa: E501
|
|
1931
|
+
if 'include_all_info' in params:
|
|
1932
|
+
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
1827
1933
|
if 'user_id' in params:
|
|
1828
1934
|
query_params.append(('user_id', params['user_id'])) # noqa: E501
|
|
1829
1935
|
if 'filter' in params:
|
|
@@ -2437,6 +2543,7 @@ class CollectionsApi(object):
|
|
|
2437
2543
|
This method makes a synchronous HTTP request by default.
|
|
2438
2544
|
|
|
2439
2545
|
:param str collection_id: (required)
|
|
2546
|
+
:param bool include_all_info: Include all info in returned objects
|
|
2440
2547
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
2441
2548
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
2442
2549
|
:param int limit: The maximum number of entries to return.
|
|
@@ -2470,6 +2577,7 @@ class CollectionsApi(object):
|
|
|
2470
2577
|
This method makes a synchronous HTTP request by default.
|
|
2471
2578
|
|
|
2472
2579
|
:param str collection_id: (required)
|
|
2580
|
+
:param bool include_all_info: Include all info in returned objects
|
|
2473
2581
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
2474
2582
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
2475
2583
|
:param int limit: The maximum number of entries to return.
|
|
@@ -2481,7 +2589,7 @@ class CollectionsApi(object):
|
|
|
2481
2589
|
:return: union[list[SessionListOutput],Page]
|
|
2482
2590
|
"""
|
|
2483
2591
|
|
|
2484
|
-
all_params = ['collection_id','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
2592
|
+
all_params = ['collection_id','include_all_info','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
2485
2593
|
all_params.append('async_')
|
|
2486
2594
|
all_params.append('_return_http_data_only')
|
|
2487
2595
|
all_params.append('_preload_content')
|
|
@@ -2509,6 +2617,8 @@ class CollectionsApi(object):
|
|
|
2509
2617
|
path_params['collection_id'] = params['collection_id'] # noqa: E501
|
|
2510
2618
|
|
|
2511
2619
|
query_params = []
|
|
2620
|
+
if 'include_all_info' in params:
|
|
2621
|
+
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
2512
2622
|
if 'filter' in params:
|
|
2513
2623
|
query_params.append(('filter', params['filter'])) # noqa: E501
|
|
2514
2624
|
if 'sort' in params:
|
|
@@ -3250,7 +3360,7 @@ class CollectionsApi(object):
|
|
|
3250
3360
|
def modify_collection_info(self, cid, body, **kwargs): # noqa: E501
|
|
3251
3361
|
"""Update or replace info for a(n) collection.
|
|
3252
3362
|
|
|
3253
|
-
Update or replace info for a(n) collection.
|
|
3363
|
+
Update or replace info for a(n) collection. Keys that contain '$' or '.' will be sanitized in the process of being updated on the container.
|
|
3254
3364
|
This method makes a synchronous HTTP request by default.
|
|
3255
3365
|
|
|
3256
3366
|
:param str cid: (required)
|
|
@@ -3277,7 +3387,7 @@ class CollectionsApi(object):
|
|
|
3277
3387
|
def modify_collection_info_with_http_info(self, cid, body, **kwargs): # noqa: E501
|
|
3278
3388
|
"""Update or replace info for a(n) collection.
|
|
3279
3389
|
|
|
3280
|
-
Update or replace info for a(n) collection.
|
|
3390
|
+
Update or replace info for a(n) collection. Keys that contain '$' or '.' will be sanitized in the process of being updated on the container.
|
|
3281
3391
|
This method makes a synchronous HTTP request by default.
|
|
3282
3392
|
|
|
3283
3393
|
:param str cid: (required)
|
flywheel/api/containers_api.py
CHANGED
|
@@ -1613,9 +1613,9 @@ class ContainersApi(object):
|
|
|
1613
1613
|
collection_formats=collection_formats)
|
|
1614
1614
|
|
|
1615
1615
|
def get_container_file_zip_info(self, container_id, file_name, **kwargs): # noqa: E501
|
|
1616
|
-
"""
|
|
1616
|
+
"""Retrieve the zip info of a child file by name.
|
|
1617
1617
|
|
|
1618
|
-
|
|
1618
|
+
Does not work on files whose names contain a forward slash.
|
|
1619
1619
|
This method makes a synchronous HTTP request by default.
|
|
1620
1620
|
|
|
1621
1621
|
:param str container_id: 24-character hex ID (required)
|
|
@@ -1648,9 +1648,9 @@ class ContainersApi(object):
|
|
|
1648
1648
|
|
|
1649
1649
|
|
|
1650
1650
|
def get_container_file_zip_info_with_http_info(self, container_id, file_name, **kwargs): # noqa: E501
|
|
1651
|
-
"""
|
|
1651
|
+
"""Retrieve the zip info of a child file by name.
|
|
1652
1652
|
|
|
1653
|
-
|
|
1653
|
+
Does not work on files whose names contain a forward slash.
|
|
1654
1654
|
This method makes a synchronous HTTP request by default.
|
|
1655
1655
|
|
|
1656
1656
|
:param str container_id: 24-character hex ID (required)
|
|
@@ -1752,9 +1752,8 @@ class ContainersApi(object):
|
|
|
1752
1752
|
collection_formats=collection_formats)
|
|
1753
1753
|
|
|
1754
1754
|
def get_container_download_ticket(self, container_id, file_name, **kwargs): # noqa: E501
|
|
1755
|
-
"""
|
|
1755
|
+
"""Get a signed URL to download a named child file.
|
|
1756
1756
|
|
|
1757
|
-
Files can be downloaded directly from this endpoint with a valid \"Authorization\" header or via a ticket id. To generate a ticket: - Make a request with an empty \"ticket\" parameter and a valid \"Authorization\" header. The server will respond with a generated ticket id. - Make another request with the received ticket id in the \"ticket\" parameter. A valid \"Authorization\" header is no longer required. When \"view\" is true, [RFC7233](https://tools.ietf.org/html/rfc7233) range request headers are supported. When virus_scan feature is enabled the quarantined files only can be downloaded using signed urls otherwise it will return with a HTTP 400 response.
|
|
1758
1757
|
This method makes a synchronous HTTP request by default.
|
|
1759
1758
|
|
|
1760
1759
|
:param str container_id: 24-character hex ID (required)
|
|
@@ -1787,9 +1786,8 @@ class ContainersApi(object):
|
|
|
1787
1786
|
|
|
1788
1787
|
|
|
1789
1788
|
def get_container_download_ticket_with_http_info(self, container_id, file_name, **kwargs): # noqa: E501
|
|
1790
|
-
"""
|
|
1789
|
+
"""Get a signed URL to download a named child file.
|
|
1791
1790
|
|
|
1792
|
-
Files can be downloaded directly from this endpoint with a valid \"Authorization\" header or via a ticket id. To generate a ticket: - Make a request with an empty \"ticket\" parameter and a valid \"Authorization\" header. The server will respond with a generated ticket id. - Make another request with the received ticket id in the \"ticket\" parameter. A valid \"Authorization\" header is no longer required. When \"view\" is true, [RFC7233](https://tools.ietf.org/html/rfc7233) range request headers are supported. When virus_scan feature is enabled the quarantined files only can be downloaded using signed urls otherwise it will return with a HTTP 400 response.
|
|
1793
1791
|
This method makes a synchronous HTTP request by default.
|
|
1794
1792
|
|
|
1795
1793
|
:param str container_id: 24-character hex ID (required)
|
|
@@ -2022,9 +2020,9 @@ class ContainersApi(object):
|
|
|
2022
2020
|
collection_formats=collection_formats)
|
|
2023
2021
|
|
|
2024
2022
|
def get_container_analysis_input_zip_info(self, container_id, analysis_id, filename, **kwargs): # noqa: E501
|
|
2025
|
-
"""
|
|
2023
|
+
"""Retrieve the zip info of a child file by name.
|
|
2026
2024
|
|
|
2027
|
-
|
|
2025
|
+
Does not work on files whose names contain a forward slash.
|
|
2028
2026
|
This method makes a synchronous HTTP request by default.
|
|
2029
2027
|
|
|
2030
2028
|
:param str container_id: 24-character hex ID (required)
|
|
@@ -2056,9 +2054,9 @@ class ContainersApi(object):
|
|
|
2056
2054
|
|
|
2057
2055
|
|
|
2058
2056
|
def get_container_analysis_input_zip_info_with_http_info(self, container_id, analysis_id, filename, **kwargs): # noqa: E501
|
|
2059
|
-
"""
|
|
2057
|
+
"""Retrieve the zip info of a child file by name.
|
|
2060
2058
|
|
|
2061
|
-
|
|
2059
|
+
Does not work on files whose names contain a forward slash.
|
|
2062
2060
|
This method makes a synchronous HTTP request by default.
|
|
2063
2061
|
|
|
2064
2062
|
:param str container_id: 24-character hex ID (required)
|
|
@@ -2161,9 +2159,8 @@ class ContainersApi(object):
|
|
|
2161
2159
|
collection_formats=collection_formats)
|
|
2162
2160
|
|
|
2163
2161
|
def get_container_analysis_input_download_ticket(self, container_id, analysis_id, filename, **kwargs): # noqa: E501
|
|
2164
|
-
"""
|
|
2162
|
+
"""Get a signed URL to download a named child file.
|
|
2165
2163
|
|
|
2166
|
-
If \"ticket\" query param is included and not empty, download inputs. If \"ticket\" query param is included and empty, create a ticket for matching inputs in the analysis. If no \"ticket\" query param is included, inputs will be downloaded directly.
|
|
2167
2164
|
This method makes a synchronous HTTP request by default.
|
|
2168
2165
|
|
|
2169
2166
|
:param str container_id: 24-character hex ID (required)
|
|
@@ -2195,9 +2192,8 @@ class ContainersApi(object):
|
|
|
2195
2192
|
|
|
2196
2193
|
|
|
2197
2194
|
def get_container_analysis_input_download_ticket_with_http_info(self, container_id, analysis_id, filename, **kwargs): # noqa: E501
|
|
2198
|
-
"""
|
|
2195
|
+
"""Get a signed URL to download a named child file.
|
|
2199
2196
|
|
|
2200
|
-
If \"ticket\" query param is included and not empty, download inputs. If \"ticket\" query param is included and empty, create a ticket for matching inputs in the analysis. If no \"ticket\" query param is included, inputs will be downloaded directly.
|
|
2201
2197
|
This method makes a synchronous HTTP request by default.
|
|
2202
2198
|
|
|
2203
2199
|
:param str container_id: 24-character hex ID (required)
|
|
@@ -2431,9 +2427,9 @@ class ContainersApi(object):
|
|
|
2431
2427
|
collection_formats=collection_formats)
|
|
2432
2428
|
|
|
2433
2429
|
def get_container_analysis_output_zip_info(self, container_id, analysis_id, filename, **kwargs): # noqa: E501
|
|
2434
|
-
"""
|
|
2430
|
+
"""Retrieve the zip info of a child file by name.
|
|
2435
2431
|
|
|
2436
|
-
|
|
2432
|
+
Does not work on files whose names contain a forward slash.
|
|
2437
2433
|
This method makes a synchronous HTTP request by default.
|
|
2438
2434
|
|
|
2439
2435
|
:param str container_id: 24-character hex ID (required)
|
|
@@ -2465,9 +2461,9 @@ class ContainersApi(object):
|
|
|
2465
2461
|
|
|
2466
2462
|
|
|
2467
2463
|
def get_container_analysis_output_zip_info_with_http_info(self, container_id, analysis_id, filename, **kwargs): # noqa: E501
|
|
2468
|
-
"""
|
|
2464
|
+
"""Retrieve the zip info of a child file by name.
|
|
2469
2465
|
|
|
2470
|
-
|
|
2466
|
+
Does not work on files whose names contain a forward slash.
|
|
2471
2467
|
This method makes a synchronous HTTP request by default.
|
|
2472
2468
|
|
|
2473
2469
|
:param str container_id: 24-character hex ID (required)
|
|
@@ -2570,9 +2566,8 @@ class ContainersApi(object):
|
|
|
2570
2566
|
collection_formats=collection_formats)
|
|
2571
2567
|
|
|
2572
2568
|
def get_container_analysis_output_download_ticket(self, container_id, analysis_id, filename, **kwargs): # noqa: E501
|
|
2573
|
-
"""
|
|
2569
|
+
"""Get a signed URL to download a named child file.
|
|
2574
2570
|
|
|
2575
|
-
If \"ticket\" query param is included and not empty, download outputs. If \"ticket\" query param is included and empty, create a ticket for matching outputs in the analysis. If no \"ticket\" query param is included, outputs will be downloaded directly.
|
|
2576
2571
|
This method makes a synchronous HTTP request by default.
|
|
2577
2572
|
|
|
2578
2573
|
:param str container_id: 24-character hex ID (required)
|
|
@@ -2604,9 +2599,8 @@ class ContainersApi(object):
|
|
|
2604
2599
|
|
|
2605
2600
|
|
|
2606
2601
|
def get_container_analysis_output_download_ticket_with_http_info(self, container_id, analysis_id, filename, **kwargs): # noqa: E501
|
|
2607
|
-
"""
|
|
2602
|
+
"""Get a signed URL to download a named child file.
|
|
2608
2603
|
|
|
2609
|
-
If \"ticket\" query param is included and not empty, download outputs. If \"ticket\" query param is included and empty, create a ticket for matching outputs in the analysis. If no \"ticket\" query param is included, outputs will be downloaded directly.
|
|
2610
2604
|
This method makes a synchronous HTTP request by default.
|
|
2611
2605
|
|
|
2612
2606
|
:param str container_id: 24-character hex ID (required)
|
|
@@ -2826,6 +2820,7 @@ class ContainersApi(object):
|
|
|
2826
2820
|
:param bool inflate_job:
|
|
2827
2821
|
:param bool join_avatars:
|
|
2828
2822
|
:param JoinType join:
|
|
2823
|
+
:param bool include_all_info: Include all info in returned objects
|
|
2829
2824
|
:param list[str] x_accept_feature:
|
|
2830
2825
|
:param bool async_: Perform the request asynchronously
|
|
2831
2826
|
:return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
@@ -2862,12 +2857,13 @@ class ContainersApi(object):
|
|
|
2862
2857
|
:param bool inflate_job:
|
|
2863
2858
|
:param bool join_avatars:
|
|
2864
2859
|
:param JoinType join:
|
|
2860
|
+
:param bool include_all_info: Include all info in returned objects
|
|
2865
2861
|
:param list[str] x_accept_feature:
|
|
2866
2862
|
:param bool async_: Perform the request asynchronously
|
|
2867
2863
|
:return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
2868
2864
|
"""
|
|
2869
2865
|
|
|
2870
|
-
all_params = ['cid','filter','sort','limit','skip','page','after_id','inflate_job','join_avatars','join','x_accept_feature',] # noqa: E501
|
|
2866
|
+
all_params = ['cid','filter','sort','limit','skip','page','after_id','inflate_job','join_avatars','join','include_all_info','x_accept_feature',] # noqa: E501
|
|
2871
2867
|
all_params.append('async_')
|
|
2872
2868
|
all_params.append('_return_http_data_only')
|
|
2873
2869
|
all_params.append('_preload_content')
|
|
@@ -2913,6 +2909,8 @@ class ContainersApi(object):
|
|
|
2913
2909
|
query_params.append(('join_avatars', params['join_avatars'])) # noqa: E501
|
|
2914
2910
|
if 'join' in params:
|
|
2915
2911
|
query_params.append(('join', params['join'])) # noqa: E501
|
|
2912
|
+
if 'include_all_info' in params:
|
|
2913
|
+
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
2916
2914
|
|
|
2917
2915
|
header_params = {}
|
|
2918
2916
|
if 'x_accept_feature' in params:
|
|
@@ -4105,7 +4103,7 @@ class ContainersApi(object):
|
|
|
4105
4103
|
def modify_container_info(self, cid, body, **kwargs): # noqa: E501
|
|
4106
4104
|
"""Update or replace info for a(n) container.
|
|
4107
4105
|
|
|
4108
|
-
Update or replace info for a(n) container.
|
|
4106
|
+
Update or replace info for a(n) container. Keys that contain '$' or '.' will be sanitized in the process of being updated on the container.
|
|
4109
4107
|
This method makes a synchronous HTTP request by default.
|
|
4110
4108
|
|
|
4111
4109
|
:param str cid: (required)
|
|
@@ -4132,7 +4130,7 @@ class ContainersApi(object):
|
|
|
4132
4130
|
def modify_container_info_with_http_info(self, cid, body, **kwargs): # noqa: E501
|
|
4133
4131
|
"""Update or replace info for a(n) container.
|
|
4134
4132
|
|
|
4135
|
-
Update or replace info for a(n) container.
|
|
4133
|
+
Update or replace info for a(n) container. Keys that contain '$' or '.' will be sanitized in the process of being updated on the container.
|
|
4136
4134
|
This method makes a synchronous HTTP request by default.
|
|
4137
4135
|
|
|
4138
4136
|
:param str cid: (required)
|