flywheel-sdk 19.2.0rc0__py2.py3-none-any.whl → 19.3.0rc0__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/api/acquisitions_api.py +162 -52
- flywheel/api/analyses_api.py +164 -60
- flywheel/api/collections_api.py +146 -38
- flywheel/api/containers_api.py +58 -52
- flywheel/api/files_api.py +104 -0
- flywheel/api/groups_api.py +114 -10
- flywheel/api/projects_api.py +170 -60
- flywheel/api/sessions_api.py +162 -52
- flywheel/api/subjects_api.py +162 -52
- flywheel/api_client.py +26 -12
- flywheel/configuration.py +2 -2
- flywheel/flywheel.py +316 -195
- flywheel/gear_context.py +12 -1
- flywheel/models/__init__.py +1 -1
- flywheel/models/action.py +2 -0
- flywheel/models/azure_creds.py +2 -1
- flywheel/models/features.py +28 -28
- flywheel/models/project_copy_filter.py +4 -31
- {flywheel_sdk-19.2.0rc0.dist-info → flywheel_sdk-19.3.0rc0.dist-info}/METADATA +1 -1
- {flywheel_sdk-19.2.0rc0.dist-info → flywheel_sdk-19.3.0rc0.dist-info}/RECORD +23 -23
- {flywheel_sdk-19.2.0rc0.dist-info → flywheel_sdk-19.3.0rc0.dist-info}/WHEEL +1 -1
- {flywheel_sdk-19.2.0rc0.dist-info → flywheel_sdk-19.3.0rc0.dist-info}/LICENSE.txt +0 -0
- {flywheel_sdk-19.2.0rc0.dist-info → flywheel_sdk-19.3.0rc0.dist-info}/top_level.txt +0 -0
flywheel/api/sessions_api.py
CHANGED
|
@@ -263,8 +263,9 @@ class SessionsApi(object):
|
|
|
263
263
|
collection_formats=collection_formats)
|
|
264
264
|
|
|
265
265
|
def add_session_analysis_note(self, container_id, analysis_id, body, **kwargs): # noqa: E501
|
|
266
|
-
"""Add a note to session analysis.
|
|
266
|
+
"""Add a note to a(n) session analysis.
|
|
267
267
|
|
|
268
|
+
Add a note to a(n) session analysis.
|
|
268
269
|
This method makes a synchronous HTTP request by default.
|
|
269
270
|
|
|
270
271
|
:param str container_id: 24-char hex id (required)
|
|
@@ -290,8 +291,9 @@ class SessionsApi(object):
|
|
|
290
291
|
|
|
291
292
|
|
|
292
293
|
def add_session_analysis_note_with_http_info(self, container_id, analysis_id, body, **kwargs): # noqa: E501
|
|
293
|
-
"""Add a note to session analysis.
|
|
294
|
+
"""Add a note to a(n) session analysis.
|
|
294
295
|
|
|
296
|
+
Add a note to a(n) session analysis.
|
|
295
297
|
This method makes a synchronous HTTP request by default.
|
|
296
298
|
|
|
297
299
|
:param str container_id: 24-char hex id (required)
|
|
@@ -384,8 +386,9 @@ class SessionsApi(object):
|
|
|
384
386
|
collection_formats=collection_formats)
|
|
385
387
|
|
|
386
388
|
def add_session_note(self, container_id, body, **kwargs): # noqa: E501
|
|
387
|
-
"""Add a note to session.
|
|
389
|
+
"""Add a note to a(n) session.
|
|
388
390
|
|
|
391
|
+
Add a note to a(n) session.
|
|
389
392
|
This method makes a synchronous HTTP request by default.
|
|
390
393
|
|
|
391
394
|
:param str container_id: (required)
|
|
@@ -410,8 +413,9 @@ class SessionsApi(object):
|
|
|
410
413
|
|
|
411
414
|
|
|
412
415
|
def add_session_note_with_http_info(self, container_id, body, **kwargs): # noqa: E501
|
|
413
|
-
"""Add a note to session.
|
|
416
|
+
"""Add a note to a(n) session.
|
|
414
417
|
|
|
418
|
+
Add a note to a(n) session.
|
|
415
419
|
This method makes a synchronous HTTP request by default.
|
|
416
420
|
|
|
417
421
|
:param str container_id: (required)
|
|
@@ -497,7 +501,7 @@ class SessionsApi(object):
|
|
|
497
501
|
collection_formats=collection_formats)
|
|
498
502
|
|
|
499
503
|
def add_session_tag(self, cid, body, **kwargs): # noqa: E501
|
|
500
|
-
"""Add a tag to session.
|
|
504
|
+
"""Add a tag to a(n) session.
|
|
501
505
|
|
|
502
506
|
Propagates changes to projects, sessions and acquisitions
|
|
503
507
|
This method makes a synchronous HTTP request by default.
|
|
@@ -524,7 +528,7 @@ class SessionsApi(object):
|
|
|
524
528
|
|
|
525
529
|
|
|
526
530
|
def add_session_tag_with_http_info(self, cid, body, **kwargs): # noqa: E501
|
|
527
|
-
"""Add a tag to session.
|
|
531
|
+
"""Add a tag to a(n) session.
|
|
528
532
|
|
|
529
533
|
Propagates changes to projects, sessions and acquisitions
|
|
530
534
|
This method makes a synchronous HTTP request by default.
|
|
@@ -612,9 +616,9 @@ class SessionsApi(object):
|
|
|
612
616
|
collection_formats=collection_formats)
|
|
613
617
|
|
|
614
618
|
def add_session_tags(self, cid, body, **kwargs): # noqa: E501
|
|
615
|
-
"""Add multiple tags to session
|
|
619
|
+
"""Add multiple tags to a(n) session
|
|
616
620
|
|
|
617
|
-
Add multiple tags to session
|
|
621
|
+
Add multiple tags to a(n) session
|
|
618
622
|
This method makes a synchronous HTTP request by default.
|
|
619
623
|
|
|
620
624
|
:param str cid: (required)
|
|
@@ -639,9 +643,9 @@ class SessionsApi(object):
|
|
|
639
643
|
|
|
640
644
|
|
|
641
645
|
def add_session_tags_with_http_info(self, cid, body, **kwargs): # noqa: E501
|
|
642
|
-
"""Add multiple tags to session
|
|
646
|
+
"""Add multiple tags to a(n) session
|
|
643
647
|
|
|
644
|
-
Add multiple tags to session
|
|
648
|
+
Add multiple tags to a(n) session
|
|
645
649
|
This method makes a synchronous HTTP request by default.
|
|
646
650
|
|
|
647
651
|
:param str cid: (required)
|
|
@@ -820,7 +824,7 @@ class SessionsApi(object):
|
|
|
820
824
|
collection_formats=collection_formats)
|
|
821
825
|
|
|
822
826
|
def delete_session_analysis(self, cid, analysis_id, **kwargs): # noqa: E501
|
|
823
|
-
"""Delete an
|
|
827
|
+
"""Delete an analysis
|
|
824
828
|
|
|
825
829
|
Delete an analysis for a container.
|
|
826
830
|
This method makes a synchronous HTTP request by default.
|
|
@@ -848,7 +852,7 @@ class SessionsApi(object):
|
|
|
848
852
|
|
|
849
853
|
|
|
850
854
|
def delete_session_analysis_with_http_info(self, cid, analysis_id, **kwargs): # noqa: E501
|
|
851
|
-
"""Delete an
|
|
855
|
+
"""Delete an analysis
|
|
852
856
|
|
|
853
857
|
Delete an analysis for a container.
|
|
854
858
|
This method makes a synchronous HTTP request by default.
|
|
@@ -928,9 +932,9 @@ class SessionsApi(object):
|
|
|
928
932
|
collection_formats=collection_formats)
|
|
929
933
|
|
|
930
934
|
def delete_session_analysis_note(self, cid, analysis_id, note_id, **kwargs): # noqa: E501
|
|
931
|
-
"""Remove a note from session analysis.
|
|
935
|
+
"""Remove a note from a(n) session analysis.
|
|
932
936
|
|
|
933
|
-
Remove a note from session analysis.
|
|
937
|
+
Remove a note from a(n) session analysis.
|
|
934
938
|
This method makes a synchronous HTTP request by default.
|
|
935
939
|
|
|
936
940
|
:param str cid: 24-char hex id (required)
|
|
@@ -956,9 +960,9 @@ class SessionsApi(object):
|
|
|
956
960
|
|
|
957
961
|
|
|
958
962
|
def delete_session_analysis_note_with_http_info(self, cid, analysis_id, note_id, **kwargs): # noqa: E501
|
|
959
|
-
"""Remove a note from session analysis.
|
|
963
|
+
"""Remove a note from a(n) session analysis.
|
|
960
964
|
|
|
961
|
-
Remove a note from session analysis.
|
|
965
|
+
Remove a note from a(n) session analysis.
|
|
962
966
|
This method makes a synchronous HTTP request by default.
|
|
963
967
|
|
|
964
968
|
:param str cid: 24-char hex id (required)
|
|
@@ -1152,9 +1156,9 @@ class SessionsApi(object):
|
|
|
1152
1156
|
collection_formats=collection_formats)
|
|
1153
1157
|
|
|
1154
1158
|
def delete_session_note(self, cid, note_id, **kwargs): # noqa: E501
|
|
1155
|
-
"""Remove a note from session
|
|
1159
|
+
"""Remove a note from a(n) session
|
|
1156
1160
|
|
|
1157
|
-
Remove a note from session
|
|
1161
|
+
Remove a note from a(n) session
|
|
1158
1162
|
This method makes a synchronous HTTP request by default.
|
|
1159
1163
|
|
|
1160
1164
|
:param str cid: (required)
|
|
@@ -1179,9 +1183,9 @@ class SessionsApi(object):
|
|
|
1179
1183
|
|
|
1180
1184
|
|
|
1181
1185
|
def delete_session_note_with_http_info(self, cid, note_id, **kwargs): # noqa: E501
|
|
1182
|
-
"""Remove a note from session
|
|
1186
|
+
"""Remove a note from a(n) session
|
|
1183
1187
|
|
|
1184
|
-
Remove a note from session
|
|
1188
|
+
Remove a note from a(n) session
|
|
1185
1189
|
This method makes a synchronous HTTP request by default.
|
|
1186
1190
|
|
|
1187
1191
|
:param str cid: (required)
|
|
@@ -1360,9 +1364,9 @@ class SessionsApi(object):
|
|
|
1360
1364
|
collection_formats=collection_formats)
|
|
1361
1365
|
|
|
1362
1366
|
def delete_session_tags(self, cid, body, **kwargs): # noqa: E501
|
|
1363
|
-
"""Delete multiple tags from session
|
|
1367
|
+
"""Delete multiple tags from a(n) session
|
|
1364
1368
|
|
|
1365
|
-
Delete multiple tags from session
|
|
1369
|
+
Delete multiple tags from a(n) session
|
|
1366
1370
|
This method makes a synchronous HTTP request by default.
|
|
1367
1371
|
|
|
1368
1372
|
:param str cid: (required)
|
|
@@ -1387,9 +1391,9 @@ class SessionsApi(object):
|
|
|
1387
1391
|
|
|
1388
1392
|
|
|
1389
1393
|
def delete_session_tags_with_http_info(self, cid, body, **kwargs): # noqa: E501
|
|
1390
|
-
"""Delete multiple tags from session
|
|
1394
|
+
"""Delete multiple tags from a(n) session
|
|
1391
1395
|
|
|
1392
|
-
Delete multiple tags from session
|
|
1396
|
+
Delete multiple tags from a(n) session
|
|
1393
1397
|
This method makes a synchronous HTTP request by default.
|
|
1394
1398
|
|
|
1395
1399
|
:param str cid: (required)
|
|
@@ -1467,13 +1471,117 @@ class SessionsApi(object):
|
|
|
1467
1471
|
_request_out=params.get('_request_out'),
|
|
1468
1472
|
collection_formats=collection_formats)
|
|
1469
1473
|
|
|
1474
|
+
def delete_sessions_by_ids(self, body, **kwargs): # noqa: E501
|
|
1475
|
+
"""Delete multiple sessions by ID list
|
|
1476
|
+
|
|
1477
|
+
Delete multiple sessions by ID list
|
|
1478
|
+
This method makes a synchronous HTTP request by default.
|
|
1479
|
+
|
|
1480
|
+
:param list[str] body: List of IDs to delete (required)
|
|
1481
|
+
:param ContainerDeleteReason delete_reason:
|
|
1482
|
+
:param bool async_: Perform the request asynchronously
|
|
1483
|
+
:return: DeletedResult
|
|
1484
|
+
"""
|
|
1485
|
+
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
1486
|
+
kwargs['_return_http_data_only'] = True
|
|
1487
|
+
|
|
1488
|
+
if kwargs.get('async_'):
|
|
1489
|
+
return self.delete_sessions_by_ids_with_http_info(body, **kwargs) # noqa: E501
|
|
1490
|
+
else:
|
|
1491
|
+
(data) = self.delete_sessions_by_ids_with_http_info(body, **kwargs) # noqa: E501
|
|
1492
|
+
if (
|
|
1493
|
+
data
|
|
1494
|
+
and hasattr(data, 'return_value')
|
|
1495
|
+
and not ignore_simplified_return_value
|
|
1496
|
+
):
|
|
1497
|
+
return data.return_value()
|
|
1498
|
+
return data
|
|
1499
|
+
|
|
1500
|
+
|
|
1501
|
+
def delete_sessions_by_ids_with_http_info(self, body, **kwargs): # noqa: E501
|
|
1502
|
+
"""Delete multiple sessions by ID list
|
|
1503
|
+
|
|
1504
|
+
Delete multiple sessions by ID list
|
|
1505
|
+
This method makes a synchronous HTTP request by default.
|
|
1506
|
+
|
|
1507
|
+
:param list[str] body: List of IDs to delete (required)
|
|
1508
|
+
:param ContainerDeleteReason delete_reason:
|
|
1509
|
+
:param bool async_: Perform the request asynchronously
|
|
1510
|
+
:return: DeletedResult
|
|
1511
|
+
"""
|
|
1512
|
+
|
|
1513
|
+
all_params = ['body','delete_reason',] # noqa: E501
|
|
1514
|
+
all_params.append('async_')
|
|
1515
|
+
all_params.append('_return_http_data_only')
|
|
1516
|
+
all_params.append('_preload_content')
|
|
1517
|
+
all_params.append('_request_timeout')
|
|
1518
|
+
all_params.append('_request_out')
|
|
1519
|
+
|
|
1520
|
+
params = locals()
|
|
1521
|
+
for key, val in six.iteritems(params['kwargs']):
|
|
1522
|
+
if key not in all_params:
|
|
1523
|
+
raise TypeError(
|
|
1524
|
+
"Got an unexpected keyword argument '%s'"
|
|
1525
|
+
" to method delete_sessions_by_ids" % key
|
|
1526
|
+
)
|
|
1527
|
+
params[key] = val
|
|
1528
|
+
del params['kwargs']
|
|
1529
|
+
# verify the required parameter 'body' is set
|
|
1530
|
+
if ('body' not in params or
|
|
1531
|
+
params['body'] is None):
|
|
1532
|
+
raise ValueError("Missing the required parameter `body` when calling `delete_sessions_by_ids`") # noqa: E501
|
|
1533
|
+
|
|
1534
|
+
collection_formats = {}
|
|
1535
|
+
|
|
1536
|
+
path_params = {}
|
|
1537
|
+
|
|
1538
|
+
query_params = []
|
|
1539
|
+
if 'delete_reason' in params:
|
|
1540
|
+
query_params.append(('delete_reason', params['delete_reason'])) # noqa: E501
|
|
1541
|
+
|
|
1542
|
+
header_params = {}
|
|
1543
|
+
|
|
1544
|
+
form_params = []
|
|
1545
|
+
local_var_files = {}
|
|
1546
|
+
|
|
1547
|
+
body_params = None
|
|
1548
|
+
if 'body' in params:
|
|
1549
|
+
body_params = params['body']
|
|
1550
|
+
# HTTP header `Accept`
|
|
1551
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
1552
|
+
['application/json']) # noqa: E501
|
|
1553
|
+
|
|
1554
|
+
# HTTP header `Content-Type`
|
|
1555
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
1556
|
+
['application/json']) # noqa: E501
|
|
1557
|
+
|
|
1558
|
+
# Authentication setting
|
|
1559
|
+
auth_settings = ['ApiKey'] # noqa: E501
|
|
1560
|
+
|
|
1561
|
+
return self.api_client.call_api(
|
|
1562
|
+
'/sessions', 'DELETE',
|
|
1563
|
+
path_params,
|
|
1564
|
+
query_params,
|
|
1565
|
+
header_params,
|
|
1566
|
+
body=body_params,
|
|
1567
|
+
post_params=form_params,
|
|
1568
|
+
files=local_var_files,
|
|
1569
|
+
response_type='DeletedResult', # noqa: E501
|
|
1570
|
+
auth_settings=auth_settings,
|
|
1571
|
+
async_=params.get('async_'),
|
|
1572
|
+
_return_http_data_only=params.get('_return_http_data_only'),
|
|
1573
|
+
_preload_content=params.get('_preload_content', True),
|
|
1574
|
+
_request_timeout=params.get('_request_timeout'),
|
|
1575
|
+
_request_out=params.get('_request_out'),
|
|
1576
|
+
collection_formats=collection_formats)
|
|
1577
|
+
|
|
1470
1578
|
def download_file_from_session(self, session_id, file_name, dest_file, **kwargs): # noqa: E501
|
|
1471
1579
|
"""Download a file.
|
|
1472
1580
|
|
|
1473
1581
|
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.
|
|
1474
1582
|
This method makes a synchronous HTTP request by default.
|
|
1475
1583
|
|
|
1476
|
-
:param str session_id: 24-
|
|
1584
|
+
:param str session_id: 24-character hex ID (required)
|
|
1477
1585
|
:param str file_name: output file name (required)
|
|
1478
1586
|
:param bool info: If the file is a zipfile, return a json response of zipfile member information
|
|
1479
1587
|
:param str member: The filename of a zipfile member to download rather than the entire file
|
|
@@ -1507,7 +1615,7 @@ class SessionsApi(object):
|
|
|
1507
1615
|
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.
|
|
1508
1616
|
This method makes a synchronous HTTP request by default.
|
|
1509
1617
|
|
|
1510
|
-
:param str session_id: 24-
|
|
1618
|
+
:param str session_id: 24-character hex ID (required)
|
|
1511
1619
|
:param str file_name: output file name (required)
|
|
1512
1620
|
:param bool info: If the file is a zipfile, return a json response of zipfile member information
|
|
1513
1621
|
:param str member: The filename of a zipfile member to download rather than the entire file
|
|
@@ -1606,7 +1714,7 @@ class SessionsApi(object):
|
|
|
1606
1714
|
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.
|
|
1607
1715
|
This method makes a synchronous HTTP request by default.
|
|
1608
1716
|
|
|
1609
|
-
:param str session_id: 24-
|
|
1717
|
+
:param str session_id: 24-character hex ID (required)
|
|
1610
1718
|
:param str file_name: output file name (required)
|
|
1611
1719
|
:param str ticket: The generated ticket id for the download, or present but empty to generate a ticket id
|
|
1612
1720
|
:param bool info: If the file is a zipfile, return a json response of zipfile member information
|
|
@@ -1641,7 +1749,7 @@ class SessionsApi(object):
|
|
|
1641
1749
|
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.
|
|
1642
1750
|
This method makes a synchronous HTTP request by default.
|
|
1643
1751
|
|
|
1644
|
-
:param str session_id: 24-
|
|
1752
|
+
:param str session_id: 24-character hex ID (required)
|
|
1645
1753
|
:param str file_name: output file name (required)
|
|
1646
1754
|
:param str ticket: The generated ticket id for the download, or present but empty to generate a ticket id
|
|
1647
1755
|
:param bool info: If the file is a zipfile, return a json response of zipfile member information
|
|
@@ -1745,7 +1853,7 @@ class SessionsApi(object):
|
|
|
1745
1853
|
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.
|
|
1746
1854
|
This method makes a synchronous HTTP request by default.
|
|
1747
1855
|
|
|
1748
|
-
:param str session_id: 24-
|
|
1856
|
+
:param str session_id: 24-character hex ID (required)
|
|
1749
1857
|
:param str file_name: output file name (required)
|
|
1750
1858
|
:param str ticket: The generated ticket id for the download, or present but empty to generate a ticket id
|
|
1751
1859
|
:param bool info: If the file is a zipfile, return a json response of zipfile member information
|
|
@@ -1780,7 +1888,7 @@ class SessionsApi(object):
|
|
|
1780
1888
|
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.
|
|
1781
1889
|
This method makes a synchronous HTTP request by default.
|
|
1782
1890
|
|
|
1783
|
-
:param str session_id: 24-
|
|
1891
|
+
:param str session_id: 24-character hex ID (required)
|
|
1784
1892
|
:param str file_name: output file name (required)
|
|
1785
1893
|
:param str ticket: The generated ticket id for the download, or present but empty to generate a ticket id
|
|
1786
1894
|
:param bool info: If the file is a zipfile, return a json response of zipfile member information
|
|
@@ -3074,7 +3182,7 @@ class SessionsApi(object):
|
|
|
3074
3182
|
collection_formats=collection_formats)
|
|
3075
3183
|
|
|
3076
3184
|
def get_session_analyses(self, cid, **kwargs): # noqa: E501
|
|
3077
|
-
"""Get analyses for session.
|
|
3185
|
+
"""Get analyses for a(n) session.
|
|
3078
3186
|
|
|
3079
3187
|
Returns analyses that directly belong to this resource.
|
|
3080
3188
|
This method makes a synchronous HTTP request by default.
|
|
@@ -3110,7 +3218,7 @@ class SessionsApi(object):
|
|
|
3110
3218
|
|
|
3111
3219
|
|
|
3112
3220
|
def get_session_analyses_with_http_info(self, cid, **kwargs): # noqa: E501
|
|
3113
|
-
"""Get analyses for session.
|
|
3221
|
+
"""Get analyses for a(n) session.
|
|
3114
3222
|
|
|
3115
3223
|
Returns analyses that directly belong to this resource.
|
|
3116
3224
|
This method makes a synchronous HTTP request by default.
|
|
@@ -3332,7 +3440,7 @@ class SessionsApi(object):
|
|
|
3332
3440
|
Get info for a particular file.
|
|
3333
3441
|
This method makes a synchronous HTTP request by default.
|
|
3334
3442
|
|
|
3335
|
-
:param str cid: (required)
|
|
3443
|
+
:param str cid: Container Id (required)
|
|
3336
3444
|
:param str filename: (required)
|
|
3337
3445
|
:param bool async_: Perform the request asynchronously
|
|
3338
3446
|
:return: FileOutput
|
|
@@ -3359,7 +3467,7 @@ class SessionsApi(object):
|
|
|
3359
3467
|
Get info for a particular file.
|
|
3360
3468
|
This method makes a synchronous HTTP request by default.
|
|
3361
3469
|
|
|
3362
|
-
:param str cid: (required)
|
|
3470
|
+
:param str cid: Container Id (required)
|
|
3363
3471
|
:param str filename: (required)
|
|
3364
3472
|
:param bool async_: Perform the request asynchronously
|
|
3365
3473
|
:return: FileOutput
|
|
@@ -3566,9 +3674,9 @@ class SessionsApi(object):
|
|
|
3566
3674
|
collection_formats=collection_formats)
|
|
3567
3675
|
|
|
3568
3676
|
def get_session_note(self, cid, note_id, **kwargs): # noqa: E501
|
|
3569
|
-
"""Get a note
|
|
3677
|
+
"""Get a note of a(n) session.
|
|
3570
3678
|
|
|
3571
|
-
Get a note
|
|
3679
|
+
Get a note of a(n) session
|
|
3572
3680
|
This method makes a synchronous HTTP request by default.
|
|
3573
3681
|
|
|
3574
3682
|
:param str cid: (required)
|
|
@@ -3593,9 +3701,9 @@ class SessionsApi(object):
|
|
|
3593
3701
|
|
|
3594
3702
|
|
|
3595
3703
|
def get_session_note_with_http_info(self, cid, note_id, **kwargs): # noqa: E501
|
|
3596
|
-
"""Get a note
|
|
3704
|
+
"""Get a note of a(n) session.
|
|
3597
3705
|
|
|
3598
|
-
Get a note
|
|
3706
|
+
Get a note of a(n) session
|
|
3599
3707
|
This method makes a synchronous HTTP request by default.
|
|
3600
3708
|
|
|
3601
3709
|
:param str cid: (required)
|
|
@@ -4381,9 +4489,9 @@ class SessionsApi(object):
|
|
|
4381
4489
|
collection_formats=collection_formats)
|
|
4382
4490
|
|
|
4383
4491
|
def modify_session_info(self, cid, body, **kwargs): # noqa: E501
|
|
4384
|
-
"""Update or replace info for a session.
|
|
4492
|
+
"""Update or replace info for a(n) session.
|
|
4385
4493
|
|
|
4386
|
-
Update or replace info for a session.
|
|
4494
|
+
Update or replace info for a(n) session.
|
|
4387
4495
|
This method makes a synchronous HTTP request by default.
|
|
4388
4496
|
|
|
4389
4497
|
:param str cid: (required)
|
|
@@ -4408,9 +4516,9 @@ class SessionsApi(object):
|
|
|
4408
4516
|
|
|
4409
4517
|
|
|
4410
4518
|
def modify_session_info_with_http_info(self, cid, body, **kwargs): # noqa: E501
|
|
4411
|
-
"""Update or replace info for a session.
|
|
4519
|
+
"""Update or replace info for a(n) session.
|
|
4412
4520
|
|
|
4413
|
-
Update or replace info for a session.
|
|
4521
|
+
Update or replace info for a(n) session.
|
|
4414
4522
|
This method makes a synchronous HTTP request by default.
|
|
4415
4523
|
|
|
4416
4524
|
:param str cid: (required)
|
|
@@ -4496,9 +4604,9 @@ class SessionsApi(object):
|
|
|
4496
4604
|
collection_formats=collection_formats)
|
|
4497
4605
|
|
|
4498
4606
|
def modify_session_note(self, cid, note_id, body, **kwargs): # noqa: E501
|
|
4499
|
-
"""Update a note
|
|
4607
|
+
"""Update a note of a(n) session.
|
|
4500
4608
|
|
|
4501
|
-
Update a note
|
|
4609
|
+
Update a note of a(n) session
|
|
4502
4610
|
This method makes a synchronous HTTP request by default.
|
|
4503
4611
|
|
|
4504
4612
|
:param str cid: (required)
|
|
@@ -4524,9 +4632,9 @@ class SessionsApi(object):
|
|
|
4524
4632
|
|
|
4525
4633
|
|
|
4526
4634
|
def modify_session_note_with_http_info(self, cid, note_id, body, **kwargs): # noqa: E501
|
|
4527
|
-
"""Update a note
|
|
4635
|
+
"""Update a note of a(n) session.
|
|
4528
4636
|
|
|
4529
|
-
Update a note
|
|
4637
|
+
Update a note of a(n) session
|
|
4530
4638
|
This method makes a synchronous HTTP request by default.
|
|
4531
4639
|
|
|
4532
4640
|
:param str cid: (required)
|
|
@@ -4742,8 +4850,9 @@ class SessionsApi(object):
|
|
|
4742
4850
|
collection_formats=collection_formats)
|
|
4743
4851
|
|
|
4744
4852
|
def upload_file_to_session(self, container_id, file, **kwargs): # noqa: E501
|
|
4745
|
-
"""Upload a file to session.
|
|
4853
|
+
"""Upload a file to a(n) session.
|
|
4746
4854
|
|
|
4855
|
+
Upload a file to a(n) session.
|
|
4747
4856
|
This method makes a synchronous HTTP request by default.
|
|
4748
4857
|
|
|
4749
4858
|
:param str container_id: (required)
|
|
@@ -4776,8 +4885,9 @@ class SessionsApi(object):
|
|
|
4776
4885
|
|
|
4777
4886
|
|
|
4778
4887
|
def upload_file_to_session_with_http_info(self, container_id, file, **kwargs): # noqa: E501
|
|
4779
|
-
"""Upload a file to session.
|
|
4888
|
+
"""Upload a file to a(n) session.
|
|
4780
4889
|
|
|
4890
|
+
Upload a file to a(n) session.
|
|
4781
4891
|
This method makes a synchronous HTTP request by default.
|
|
4782
4892
|
|
|
4783
4893
|
:param str container_id: (required)
|
|
@@ -4881,9 +4991,9 @@ class SessionsApi(object):
|
|
|
4881
4991
|
collection_formats=collection_formats)
|
|
4882
4992
|
|
|
4883
4993
|
def upload_output_to_session_analysis(self, cid, analysis_id, file, **kwargs): # noqa: E501
|
|
4884
|
-
"""Upload an output file to analysis.
|
|
4994
|
+
"""Upload an output file to an analysis.
|
|
4885
4995
|
|
|
4886
|
-
Upload an output file to analysis
|
|
4996
|
+
Upload an output file to an analysis
|
|
4887
4997
|
This method makes a synchronous HTTP request by default.
|
|
4888
4998
|
|
|
4889
4999
|
:param str cid: (required)
|
|
@@ -4914,9 +5024,9 @@ class SessionsApi(object):
|
|
|
4914
5024
|
|
|
4915
5025
|
|
|
4916
5026
|
def upload_output_to_session_analysis_with_http_info(self, cid, analysis_id, file, **kwargs): # noqa: E501
|
|
4917
|
-
"""Upload an output file to analysis.
|
|
5027
|
+
"""Upload an output file to an analysis.
|
|
4918
5028
|
|
|
4919
|
-
Upload an output file to analysis
|
|
5029
|
+
Upload an output file to an analysis
|
|
4920
5030
|
This method makes a synchronous HTTP request by default.
|
|
4921
5031
|
|
|
4922
5032
|
:param str cid: (required)
|