flywheel-sdk 19.2.0__py2.py3-none-any.whl → 19.3.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/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_sdk-19.2.0.dist-info → flywheel_sdk-19.3.0.dist-info}/METADATA +1 -1
- {flywheel_sdk-19.2.0.dist-info → flywheel_sdk-19.3.0.dist-info}/RECORD +22 -22
- {flywheel_sdk-19.2.0.dist-info → flywheel_sdk-19.3.0.dist-info}/WHEEL +1 -1
- {flywheel_sdk-19.2.0.dist-info → flywheel_sdk-19.3.0.dist-info}/LICENSE.txt +0 -0
- {flywheel_sdk-19.2.0.dist-info → flywheel_sdk-19.3.0.dist-info}/top_level.txt +0 -0
flywheel/api/projects_api.py
CHANGED
|
@@ -265,8 +265,9 @@ class ProjectsApi(object):
|
|
|
265
265
|
collection_formats=collection_formats)
|
|
266
266
|
|
|
267
267
|
def add_project_analysis_note(self, container_id, analysis_id, body, **kwargs): # noqa: E501
|
|
268
|
-
"""Add a note to project analysis.
|
|
268
|
+
"""Add a note to a(n) project analysis.
|
|
269
269
|
|
|
270
|
+
Add a note to a(n) project analysis.
|
|
270
271
|
This method makes a synchronous HTTP request by default.
|
|
271
272
|
|
|
272
273
|
:param str container_id: 24-char hex id (required)
|
|
@@ -292,8 +293,9 @@ class ProjectsApi(object):
|
|
|
292
293
|
|
|
293
294
|
|
|
294
295
|
def add_project_analysis_note_with_http_info(self, container_id, analysis_id, body, **kwargs): # noqa: E501
|
|
295
|
-
"""Add a note to project analysis.
|
|
296
|
+
"""Add a note to a(n) project analysis.
|
|
296
297
|
|
|
298
|
+
Add a note to a(n) project analysis.
|
|
297
299
|
This method makes a synchronous HTTP request by default.
|
|
298
300
|
|
|
299
301
|
:param str container_id: 24-char hex id (required)
|
|
@@ -386,8 +388,9 @@ class ProjectsApi(object):
|
|
|
386
388
|
collection_formats=collection_formats)
|
|
387
389
|
|
|
388
390
|
def add_project_note(self, container_id, body, **kwargs): # noqa: E501
|
|
389
|
-
"""Add a note to project.
|
|
391
|
+
"""Add a note to a(n) project.
|
|
390
392
|
|
|
393
|
+
Add a note to a(n) project.
|
|
391
394
|
This method makes a synchronous HTTP request by default.
|
|
392
395
|
|
|
393
396
|
:param str container_id: (required)
|
|
@@ -412,8 +415,9 @@ class ProjectsApi(object):
|
|
|
412
415
|
|
|
413
416
|
|
|
414
417
|
def add_project_note_with_http_info(self, container_id, body, **kwargs): # noqa: E501
|
|
415
|
-
"""Add a note to project.
|
|
418
|
+
"""Add a note to a(n) project.
|
|
416
419
|
|
|
420
|
+
Add a note to a(n) project.
|
|
417
421
|
This method makes a synchronous HTTP request by default.
|
|
418
422
|
|
|
419
423
|
:param str container_id: (required)
|
|
@@ -732,7 +736,7 @@ class ProjectsApi(object):
|
|
|
732
736
|
collection_formats=collection_formats)
|
|
733
737
|
|
|
734
738
|
def add_project_tag(self, cid, body, **kwargs): # noqa: E501
|
|
735
|
-
"""Add a tag to project.
|
|
739
|
+
"""Add a tag to a(n) project.
|
|
736
740
|
|
|
737
741
|
Propagates changes to projects, sessions and acquisitions
|
|
738
742
|
This method makes a synchronous HTTP request by default.
|
|
@@ -759,7 +763,7 @@ class ProjectsApi(object):
|
|
|
759
763
|
|
|
760
764
|
|
|
761
765
|
def add_project_tag_with_http_info(self, cid, body, **kwargs): # noqa: E501
|
|
762
|
-
"""Add a tag to project.
|
|
766
|
+
"""Add a tag to a(n) project.
|
|
763
767
|
|
|
764
768
|
Propagates changes to projects, sessions and acquisitions
|
|
765
769
|
This method makes a synchronous HTTP request by default.
|
|
@@ -847,9 +851,9 @@ class ProjectsApi(object):
|
|
|
847
851
|
collection_formats=collection_formats)
|
|
848
852
|
|
|
849
853
|
def add_project_tags(self, cid, body, **kwargs): # noqa: E501
|
|
850
|
-
"""Add multiple tags to project
|
|
854
|
+
"""Add multiple tags to a(n) project
|
|
851
855
|
|
|
852
|
-
Add multiple tags to project
|
|
856
|
+
Add multiple tags to a(n) project
|
|
853
857
|
This method makes a synchronous HTTP request by default.
|
|
854
858
|
|
|
855
859
|
:param str cid: (required)
|
|
@@ -874,9 +878,9 @@ class ProjectsApi(object):
|
|
|
874
878
|
|
|
875
879
|
|
|
876
880
|
def add_project_tags_with_http_info(self, cid, body, **kwargs): # noqa: E501
|
|
877
|
-
"""Add multiple tags to project
|
|
881
|
+
"""Add multiple tags to a(n) project
|
|
878
882
|
|
|
879
|
-
Add multiple tags to project
|
|
883
|
+
Add multiple tags to a(n) project
|
|
880
884
|
This method makes a synchronous HTTP request by default.
|
|
881
885
|
|
|
882
886
|
:param str cid: (required)
|
|
@@ -1174,7 +1178,7 @@ class ProjectsApi(object):
|
|
|
1174
1178
|
collection_formats=collection_formats)
|
|
1175
1179
|
|
|
1176
1180
|
def delete_project_analysis(self, cid, analysis_id, **kwargs): # noqa: E501
|
|
1177
|
-
"""Delete an
|
|
1181
|
+
"""Delete an analysis
|
|
1178
1182
|
|
|
1179
1183
|
Delete an analysis for a container.
|
|
1180
1184
|
This method makes a synchronous HTTP request by default.
|
|
@@ -1202,7 +1206,7 @@ class ProjectsApi(object):
|
|
|
1202
1206
|
|
|
1203
1207
|
|
|
1204
1208
|
def delete_project_analysis_with_http_info(self, cid, analysis_id, **kwargs): # noqa: E501
|
|
1205
|
-
"""Delete an
|
|
1209
|
+
"""Delete an analysis
|
|
1206
1210
|
|
|
1207
1211
|
Delete an analysis for a container.
|
|
1208
1212
|
This method makes a synchronous HTTP request by default.
|
|
@@ -1282,9 +1286,9 @@ class ProjectsApi(object):
|
|
|
1282
1286
|
collection_formats=collection_formats)
|
|
1283
1287
|
|
|
1284
1288
|
def delete_project_analysis_note(self, cid, analysis_id, note_id, **kwargs): # noqa: E501
|
|
1285
|
-
"""Remove a note from project analysis.
|
|
1289
|
+
"""Remove a note from a(n) project analysis.
|
|
1286
1290
|
|
|
1287
|
-
Remove a note from project analysis.
|
|
1291
|
+
Remove a note from a(n) project analysis.
|
|
1288
1292
|
This method makes a synchronous HTTP request by default.
|
|
1289
1293
|
|
|
1290
1294
|
:param str cid: 24-char hex id (required)
|
|
@@ -1310,9 +1314,9 @@ class ProjectsApi(object):
|
|
|
1310
1314
|
|
|
1311
1315
|
|
|
1312
1316
|
def delete_project_analysis_note_with_http_info(self, cid, analysis_id, note_id, **kwargs): # noqa: E501
|
|
1313
|
-
"""Remove a note from project analysis.
|
|
1317
|
+
"""Remove a note from a(n) project analysis.
|
|
1314
1318
|
|
|
1315
|
-
Remove a note from project analysis.
|
|
1319
|
+
Remove a note from a(n) project analysis.
|
|
1316
1320
|
This method makes a synchronous HTTP request by default.
|
|
1317
1321
|
|
|
1318
1322
|
:param str cid: 24-char hex id (required)
|
|
@@ -1506,9 +1510,9 @@ class ProjectsApi(object):
|
|
|
1506
1510
|
collection_formats=collection_formats)
|
|
1507
1511
|
|
|
1508
1512
|
def delete_project_note(self, cid, note_id, **kwargs): # noqa: E501
|
|
1509
|
-
"""Remove a note from project
|
|
1513
|
+
"""Remove a note from a(n) project
|
|
1510
1514
|
|
|
1511
|
-
Remove a note from project
|
|
1515
|
+
Remove a note from a(n) project
|
|
1512
1516
|
This method makes a synchronous HTTP request by default.
|
|
1513
1517
|
|
|
1514
1518
|
:param str cid: (required)
|
|
@@ -1533,9 +1537,9 @@ class ProjectsApi(object):
|
|
|
1533
1537
|
|
|
1534
1538
|
|
|
1535
1539
|
def delete_project_note_with_http_info(self, cid, note_id, **kwargs): # noqa: E501
|
|
1536
|
-
"""Remove a note from project
|
|
1540
|
+
"""Remove a note from a(n) project
|
|
1537
1541
|
|
|
1538
|
-
Remove a note from project
|
|
1542
|
+
Remove a note from a(n) project
|
|
1539
1543
|
This method makes a synchronous HTTP request by default.
|
|
1540
1544
|
|
|
1541
1545
|
:param str cid: (required)
|
|
@@ -1714,9 +1718,9 @@ class ProjectsApi(object):
|
|
|
1714
1718
|
collection_formats=collection_formats)
|
|
1715
1719
|
|
|
1716
1720
|
def delete_project_tags(self, cid, body, **kwargs): # noqa: E501
|
|
1717
|
-
"""Delete multiple tags from project
|
|
1721
|
+
"""Delete multiple tags from a(n) project
|
|
1718
1722
|
|
|
1719
|
-
Delete multiple tags from project
|
|
1723
|
+
Delete multiple tags from a(n) project
|
|
1720
1724
|
This method makes a synchronous HTTP request by default.
|
|
1721
1725
|
|
|
1722
1726
|
:param str cid: (required)
|
|
@@ -1741,9 +1745,9 @@ class ProjectsApi(object):
|
|
|
1741
1745
|
|
|
1742
1746
|
|
|
1743
1747
|
def delete_project_tags_with_http_info(self, cid, body, **kwargs): # noqa: E501
|
|
1744
|
-
"""Delete multiple tags from project
|
|
1748
|
+
"""Delete multiple tags from a(n) project
|
|
1745
1749
|
|
|
1746
|
-
Delete multiple tags from project
|
|
1750
|
+
Delete multiple tags from a(n) project
|
|
1747
1751
|
This method makes a synchronous HTTP request by default.
|
|
1748
1752
|
|
|
1749
1753
|
:param str cid: (required)
|
|
@@ -1928,13 +1932,117 @@ class ProjectsApi(object):
|
|
|
1928
1932
|
_request_out=params.get('_request_out'),
|
|
1929
1933
|
collection_formats=collection_formats)
|
|
1930
1934
|
|
|
1935
|
+
def delete_projects_by_ids(self, body, **kwargs): # noqa: E501
|
|
1936
|
+
"""Delete multiple projects by ID list
|
|
1937
|
+
|
|
1938
|
+
Delete multiple projects by ID list
|
|
1939
|
+
This method makes a synchronous HTTP request by default.
|
|
1940
|
+
|
|
1941
|
+
:param list[str] body: List of IDs to delete (required)
|
|
1942
|
+
:param ContainerDeleteReason delete_reason:
|
|
1943
|
+
:param bool async_: Perform the request asynchronously
|
|
1944
|
+
:return: DeletedResult
|
|
1945
|
+
"""
|
|
1946
|
+
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
1947
|
+
kwargs['_return_http_data_only'] = True
|
|
1948
|
+
|
|
1949
|
+
if kwargs.get('async_'):
|
|
1950
|
+
return self.delete_projects_by_ids_with_http_info(body, **kwargs) # noqa: E501
|
|
1951
|
+
else:
|
|
1952
|
+
(data) = self.delete_projects_by_ids_with_http_info(body, **kwargs) # noqa: E501
|
|
1953
|
+
if (
|
|
1954
|
+
data
|
|
1955
|
+
and hasattr(data, 'return_value')
|
|
1956
|
+
and not ignore_simplified_return_value
|
|
1957
|
+
):
|
|
1958
|
+
return data.return_value()
|
|
1959
|
+
return data
|
|
1960
|
+
|
|
1961
|
+
|
|
1962
|
+
def delete_projects_by_ids_with_http_info(self, body, **kwargs): # noqa: E501
|
|
1963
|
+
"""Delete multiple projects by ID list
|
|
1964
|
+
|
|
1965
|
+
Delete multiple projects by ID list
|
|
1966
|
+
This method makes a synchronous HTTP request by default.
|
|
1967
|
+
|
|
1968
|
+
:param list[str] body: List of IDs to delete (required)
|
|
1969
|
+
:param ContainerDeleteReason delete_reason:
|
|
1970
|
+
:param bool async_: Perform the request asynchronously
|
|
1971
|
+
:return: DeletedResult
|
|
1972
|
+
"""
|
|
1973
|
+
|
|
1974
|
+
all_params = ['body','delete_reason',] # noqa: E501
|
|
1975
|
+
all_params.append('async_')
|
|
1976
|
+
all_params.append('_return_http_data_only')
|
|
1977
|
+
all_params.append('_preload_content')
|
|
1978
|
+
all_params.append('_request_timeout')
|
|
1979
|
+
all_params.append('_request_out')
|
|
1980
|
+
|
|
1981
|
+
params = locals()
|
|
1982
|
+
for key, val in six.iteritems(params['kwargs']):
|
|
1983
|
+
if key not in all_params:
|
|
1984
|
+
raise TypeError(
|
|
1985
|
+
"Got an unexpected keyword argument '%s'"
|
|
1986
|
+
" to method delete_projects_by_ids" % key
|
|
1987
|
+
)
|
|
1988
|
+
params[key] = val
|
|
1989
|
+
del params['kwargs']
|
|
1990
|
+
# verify the required parameter 'body' is set
|
|
1991
|
+
if ('body' not in params or
|
|
1992
|
+
params['body'] is None):
|
|
1993
|
+
raise ValueError("Missing the required parameter `body` when calling `delete_projects_by_ids`") # noqa: E501
|
|
1994
|
+
|
|
1995
|
+
collection_formats = {}
|
|
1996
|
+
|
|
1997
|
+
path_params = {}
|
|
1998
|
+
|
|
1999
|
+
query_params = []
|
|
2000
|
+
if 'delete_reason' in params:
|
|
2001
|
+
query_params.append(('delete_reason', params['delete_reason'])) # noqa: E501
|
|
2002
|
+
|
|
2003
|
+
header_params = {}
|
|
2004
|
+
|
|
2005
|
+
form_params = []
|
|
2006
|
+
local_var_files = {}
|
|
2007
|
+
|
|
2008
|
+
body_params = None
|
|
2009
|
+
if 'body' in params:
|
|
2010
|
+
body_params = params['body']
|
|
2011
|
+
# HTTP header `Accept`
|
|
2012
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
2013
|
+
['application/json']) # noqa: E501
|
|
2014
|
+
|
|
2015
|
+
# HTTP header `Content-Type`
|
|
2016
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
2017
|
+
['application/json']) # noqa: E501
|
|
2018
|
+
|
|
2019
|
+
# Authentication setting
|
|
2020
|
+
auth_settings = ['ApiKey'] # noqa: E501
|
|
2021
|
+
|
|
2022
|
+
return self.api_client.call_api(
|
|
2023
|
+
'/projects', 'DELETE',
|
|
2024
|
+
path_params,
|
|
2025
|
+
query_params,
|
|
2026
|
+
header_params,
|
|
2027
|
+
body=body_params,
|
|
2028
|
+
post_params=form_params,
|
|
2029
|
+
files=local_var_files,
|
|
2030
|
+
response_type='DeletedResult', # noqa: E501
|
|
2031
|
+
auth_settings=auth_settings,
|
|
2032
|
+
async_=params.get('async_'),
|
|
2033
|
+
_return_http_data_only=params.get('_return_http_data_only'),
|
|
2034
|
+
_preload_content=params.get('_preload_content', True),
|
|
2035
|
+
_request_timeout=params.get('_request_timeout'),
|
|
2036
|
+
_request_out=params.get('_request_out'),
|
|
2037
|
+
collection_formats=collection_formats)
|
|
2038
|
+
|
|
1931
2039
|
def download_file_from_project(self, project_id, file_name, dest_file, **kwargs): # noqa: E501
|
|
1932
2040
|
"""Download a file.
|
|
1933
2041
|
|
|
1934
2042
|
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.
|
|
1935
2043
|
This method makes a synchronous HTTP request by default.
|
|
1936
2044
|
|
|
1937
|
-
:param str project_id: 24-
|
|
2045
|
+
:param str project_id: 24-character hex ID (required)
|
|
1938
2046
|
:param str file_name: output file name (required)
|
|
1939
2047
|
:param bool info: If the file is a zipfile, return a json response of zipfile member information
|
|
1940
2048
|
:param str member: The filename of a zipfile member to download rather than the entire file
|
|
@@ -1968,7 +2076,7 @@ class ProjectsApi(object):
|
|
|
1968
2076
|
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.
|
|
1969
2077
|
This method makes a synchronous HTTP request by default.
|
|
1970
2078
|
|
|
1971
|
-
:param str project_id: 24-
|
|
2079
|
+
:param str project_id: 24-character hex ID (required)
|
|
1972
2080
|
:param str file_name: output file name (required)
|
|
1973
2081
|
:param bool info: If the file is a zipfile, return a json response of zipfile member information
|
|
1974
2082
|
:param str member: The filename of a zipfile member to download rather than the entire file
|
|
@@ -2067,7 +2175,7 @@ class ProjectsApi(object):
|
|
|
2067
2175
|
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.
|
|
2068
2176
|
This method makes a synchronous HTTP request by default.
|
|
2069
2177
|
|
|
2070
|
-
:param str project_id: 24-
|
|
2178
|
+
:param str project_id: 24-character hex ID (required)
|
|
2071
2179
|
:param str file_name: output file name (required)
|
|
2072
2180
|
:param str ticket: The generated ticket id for the download, or present but empty to generate a ticket id
|
|
2073
2181
|
:param bool info: If the file is a zipfile, return a json response of zipfile member information
|
|
@@ -2102,7 +2210,7 @@ class ProjectsApi(object):
|
|
|
2102
2210
|
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.
|
|
2103
2211
|
This method makes a synchronous HTTP request by default.
|
|
2104
2212
|
|
|
2105
|
-
:param str project_id: 24-
|
|
2213
|
+
:param str project_id: 24-character hex ID (required)
|
|
2106
2214
|
:param str file_name: output file name (required)
|
|
2107
2215
|
:param str ticket: The generated ticket id for the download, or present but empty to generate a ticket id
|
|
2108
2216
|
:param bool info: If the file is a zipfile, return a json response of zipfile member information
|
|
@@ -2206,7 +2314,7 @@ class ProjectsApi(object):
|
|
|
2206
2314
|
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.
|
|
2207
2315
|
This method makes a synchronous HTTP request by default.
|
|
2208
2316
|
|
|
2209
|
-
:param str project_id: 24-
|
|
2317
|
+
:param str project_id: 24-character hex ID (required)
|
|
2210
2318
|
:param str file_name: output file name (required)
|
|
2211
2319
|
:param str ticket: The generated ticket id for the download, or present but empty to generate a ticket id
|
|
2212
2320
|
:param bool info: If the file is a zipfile, return a json response of zipfile member information
|
|
@@ -2241,7 +2349,7 @@ class ProjectsApi(object):
|
|
|
2241
2349
|
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.
|
|
2242
2350
|
This method makes a synchronous HTTP request by default.
|
|
2243
2351
|
|
|
2244
|
-
:param str project_id: 24-
|
|
2352
|
+
:param str project_id: 24-character hex ID (required)
|
|
2245
2353
|
:param str file_name: output file name (required)
|
|
2246
2354
|
:param str ticket: The generated ticket id for the download, or present but empty to generate a ticket id
|
|
2247
2355
|
:param bool info: If the file is a zipfile, return a json response of zipfile member information
|
|
@@ -3856,7 +3964,7 @@ class ProjectsApi(object):
|
|
|
3856
3964
|
collection_formats=collection_formats)
|
|
3857
3965
|
|
|
3858
3966
|
def get_project_analyses(self, cid, **kwargs): # noqa: E501
|
|
3859
|
-
"""Get analyses for project.
|
|
3967
|
+
"""Get analyses for a(n) project.
|
|
3860
3968
|
|
|
3861
3969
|
Returns analyses that directly belong to this resource.
|
|
3862
3970
|
This method makes a synchronous HTTP request by default.
|
|
@@ -3892,7 +4000,7 @@ class ProjectsApi(object):
|
|
|
3892
4000
|
|
|
3893
4001
|
|
|
3894
4002
|
def get_project_analyses_with_http_info(self, cid, **kwargs): # noqa: E501
|
|
3895
|
-
"""Get analyses for project.
|
|
4003
|
+
"""Get analyses for a(n) project.
|
|
3896
4004
|
|
|
3897
4005
|
Returns analyses that directly belong to this resource.
|
|
3898
4006
|
This method makes a synchronous HTTP request by default.
|
|
@@ -4114,7 +4222,7 @@ class ProjectsApi(object):
|
|
|
4114
4222
|
Get info for a particular file.
|
|
4115
4223
|
This method makes a synchronous HTTP request by default.
|
|
4116
4224
|
|
|
4117
|
-
:param str cid: (required)
|
|
4225
|
+
:param str cid: Container Id (required)
|
|
4118
4226
|
:param str filename: (required)
|
|
4119
4227
|
:param bool async_: Perform the request asynchronously
|
|
4120
4228
|
:return: FileOutput
|
|
@@ -4141,7 +4249,7 @@ class ProjectsApi(object):
|
|
|
4141
4249
|
Get info for a particular file.
|
|
4142
4250
|
This method makes a synchronous HTTP request by default.
|
|
4143
4251
|
|
|
4144
|
-
:param str cid: (required)
|
|
4252
|
+
:param str cid: Container Id (required)
|
|
4145
4253
|
:param str filename: (required)
|
|
4146
4254
|
:param bool async_: Perform the request asynchronously
|
|
4147
4255
|
:return: FileOutput
|
|
@@ -4213,9 +4321,9 @@ class ProjectsApi(object):
|
|
|
4213
4321
|
collection_formats=collection_formats)
|
|
4214
4322
|
|
|
4215
4323
|
def get_project_note(self, cid, note_id, **kwargs): # noqa: E501
|
|
4216
|
-
"""Get a note
|
|
4324
|
+
"""Get a note of a(n) project.
|
|
4217
4325
|
|
|
4218
|
-
Get a note
|
|
4326
|
+
Get a note of a(n) project
|
|
4219
4327
|
This method makes a synchronous HTTP request by default.
|
|
4220
4328
|
|
|
4221
4329
|
:param str cid: (required)
|
|
@@ -4240,9 +4348,9 @@ class ProjectsApi(object):
|
|
|
4240
4348
|
|
|
4241
4349
|
|
|
4242
4350
|
def get_project_note_with_http_info(self, cid, note_id, **kwargs): # noqa: E501
|
|
4243
|
-
"""Get a note
|
|
4351
|
+
"""Get a note of a(n) project.
|
|
4244
4352
|
|
|
4245
|
-
Get a note
|
|
4353
|
+
Get a note of a(n) project
|
|
4246
4354
|
This method makes a synchronous HTTP request by default.
|
|
4247
4355
|
|
|
4248
4356
|
:param str cid: (required)
|
|
@@ -4644,9 +4752,9 @@ class ProjectsApi(object):
|
|
|
4644
4752
|
collection_formats=collection_formats)
|
|
4645
4753
|
|
|
4646
4754
|
def get_project_settings(self, project_id, **kwargs): # noqa: E501
|
|
4647
|
-
"""Get
|
|
4755
|
+
"""Get a(n) project settings
|
|
4648
4756
|
|
|
4649
|
-
|
|
4757
|
+
Route for getting settings from a a(n) project
|
|
4650
4758
|
This method makes a synchronous HTTP request by default.
|
|
4651
4759
|
|
|
4652
4760
|
:param str project_id: (required)
|
|
@@ -4670,9 +4778,9 @@ class ProjectsApi(object):
|
|
|
4670
4778
|
|
|
4671
4779
|
|
|
4672
4780
|
def get_project_settings_with_http_info(self, project_id, **kwargs): # noqa: E501
|
|
4673
|
-
"""Get
|
|
4781
|
+
"""Get a(n) project settings
|
|
4674
4782
|
|
|
4675
|
-
|
|
4783
|
+
Route for getting settings from a a(n) project
|
|
4676
4784
|
This method makes a synchronous HTTP request by default.
|
|
4677
4785
|
|
|
4678
4786
|
:param str project_id: (required)
|
|
@@ -5687,9 +5795,9 @@ class ProjectsApi(object):
|
|
|
5687
5795
|
collection_formats=collection_formats)
|
|
5688
5796
|
|
|
5689
5797
|
def modify_project_info(self, cid, body, **kwargs): # noqa: E501
|
|
5690
|
-
"""Update or replace info for a project.
|
|
5798
|
+
"""Update or replace info for a(n) project.
|
|
5691
5799
|
|
|
5692
|
-
Update or replace info for a project.
|
|
5800
|
+
Update or replace info for a(n) project.
|
|
5693
5801
|
This method makes a synchronous HTTP request by default.
|
|
5694
5802
|
|
|
5695
5803
|
:param str cid: (required)
|
|
@@ -5714,9 +5822,9 @@ class ProjectsApi(object):
|
|
|
5714
5822
|
|
|
5715
5823
|
|
|
5716
5824
|
def modify_project_info_with_http_info(self, cid, body, **kwargs): # noqa: E501
|
|
5717
|
-
"""Update or replace info for a project.
|
|
5825
|
+
"""Update or replace info for a(n) project.
|
|
5718
5826
|
|
|
5719
|
-
Update or replace info for a project.
|
|
5827
|
+
Update or replace info for a(n) project.
|
|
5720
5828
|
This method makes a synchronous HTTP request by default.
|
|
5721
5829
|
|
|
5722
5830
|
:param str cid: (required)
|
|
@@ -5802,9 +5910,9 @@ class ProjectsApi(object):
|
|
|
5802
5910
|
collection_formats=collection_formats)
|
|
5803
5911
|
|
|
5804
5912
|
def modify_project_note(self, cid, note_id, body, **kwargs): # noqa: E501
|
|
5805
|
-
"""Update a note
|
|
5913
|
+
"""Update a note of a(n) project.
|
|
5806
5914
|
|
|
5807
|
-
Update a note
|
|
5915
|
+
Update a note of a(n) project
|
|
5808
5916
|
This method makes a synchronous HTTP request by default.
|
|
5809
5917
|
|
|
5810
5918
|
:param str cid: (required)
|
|
@@ -5830,9 +5938,9 @@ class ProjectsApi(object):
|
|
|
5830
5938
|
|
|
5831
5939
|
|
|
5832
5940
|
def modify_project_note_with_http_info(self, cid, note_id, body, **kwargs): # noqa: E501
|
|
5833
|
-
"""Update a note
|
|
5941
|
+
"""Update a note of a(n) project.
|
|
5834
5942
|
|
|
5835
|
-
Update a note
|
|
5943
|
+
Update a note of a(n) project
|
|
5836
5944
|
This method makes a synchronous HTTP request by default.
|
|
5837
5945
|
|
|
5838
5946
|
:param str cid: (required)
|
|
@@ -6048,9 +6156,9 @@ class ProjectsApi(object):
|
|
|
6048
6156
|
collection_formats=collection_formats)
|
|
6049
6157
|
|
|
6050
6158
|
def modify_project_settings(self, project_id, body, **kwargs): # noqa: E501
|
|
6051
|
-
"""Modify project settings
|
|
6159
|
+
"""Modify a(n) project settings
|
|
6052
6160
|
|
|
6053
|
-
|
|
6161
|
+
Route for modifying settings for a a(n) project
|
|
6054
6162
|
This method makes a synchronous HTTP request by default.
|
|
6055
6163
|
|
|
6056
6164
|
:param str project_id: (required)
|
|
@@ -6076,9 +6184,9 @@ class ProjectsApi(object):
|
|
|
6076
6184
|
|
|
6077
6185
|
|
|
6078
6186
|
def modify_project_settings_with_http_info(self, project_id, body, **kwargs): # noqa: E501
|
|
6079
|
-
"""Modify project settings
|
|
6187
|
+
"""Modify a(n) project settings
|
|
6080
6188
|
|
|
6081
|
-
|
|
6189
|
+
Route for modifying settings for a a(n) project
|
|
6082
6190
|
This method makes a synchronous HTTP request by default.
|
|
6083
6191
|
|
|
6084
6192
|
:param str project_id: (required)
|
|
@@ -7235,8 +7343,9 @@ class ProjectsApi(object):
|
|
|
7235
7343
|
collection_formats=collection_formats)
|
|
7236
7344
|
|
|
7237
7345
|
def upload_file_to_project(self, container_id, file, **kwargs): # noqa: E501
|
|
7238
|
-
"""Upload a file to project.
|
|
7346
|
+
"""Upload a file to a(n) project.
|
|
7239
7347
|
|
|
7348
|
+
Upload a file to a(n) project.
|
|
7240
7349
|
This method makes a synchronous HTTP request by default.
|
|
7241
7350
|
|
|
7242
7351
|
:param str container_id: (required)
|
|
@@ -7269,8 +7378,9 @@ class ProjectsApi(object):
|
|
|
7269
7378
|
|
|
7270
7379
|
|
|
7271
7380
|
def upload_file_to_project_with_http_info(self, container_id, file, **kwargs): # noqa: E501
|
|
7272
|
-
"""Upload a file to project.
|
|
7381
|
+
"""Upload a file to a(n) project.
|
|
7273
7382
|
|
|
7383
|
+
Upload a file to a(n) project.
|
|
7274
7384
|
This method makes a synchronous HTTP request by default.
|
|
7275
7385
|
|
|
7276
7386
|
:param str container_id: (required)
|
|
@@ -7374,9 +7484,9 @@ class ProjectsApi(object):
|
|
|
7374
7484
|
collection_formats=collection_formats)
|
|
7375
7485
|
|
|
7376
7486
|
def upload_output_to_project_analysis(self, cid, analysis_id, file, **kwargs): # noqa: E501
|
|
7377
|
-
"""Upload an output file to analysis.
|
|
7487
|
+
"""Upload an output file to an analysis.
|
|
7378
7488
|
|
|
7379
|
-
Upload an output file to analysis
|
|
7489
|
+
Upload an output file to an analysis
|
|
7380
7490
|
This method makes a synchronous HTTP request by default.
|
|
7381
7491
|
|
|
7382
7492
|
:param str cid: (required)
|
|
@@ -7407,9 +7517,9 @@ class ProjectsApi(object):
|
|
|
7407
7517
|
|
|
7408
7518
|
|
|
7409
7519
|
def upload_output_to_project_analysis_with_http_info(self, cid, analysis_id, file, **kwargs): # noqa: E501
|
|
7410
|
-
"""Upload an output file to analysis.
|
|
7520
|
+
"""Upload an output file to an analysis.
|
|
7411
7521
|
|
|
7412
|
-
Upload an output file to analysis
|
|
7522
|
+
Upload an output file to an analysis
|
|
7413
7523
|
This method makes a synchronous HTTP request by default.
|
|
7414
7524
|
|
|
7415
7525
|
:param str cid: (required)
|