flywheel-sdk 19.4.0rc4__py2.py3-none-any.whl → 19.5.0rc3__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 +17 -17
- flywheel/api/containers_api.py +17 -17
- flywheel/api/dataexplorer_api.py +11 -11
- flywheel/api/devices_api.py +11 -11
- flywheel/api/files_api.py +12 -12
- flywheel/api/gears_api.py +5 -5
- flywheel/api/jobs_api.py +15 -15
- flywheel/api/modalities_api.py +8 -8
- flywheel/api/projects_api.py +85 -85
- flywheel/api/roles_api.py +6 -6
- flywheel/api/sessions_api.py +17 -17
- flywheel/api/site_api.py +11 -11
- flywheel/api/subjects_api.py +17 -17
- flywheel/api/users_api.py +58 -58
- flywheel/api_client.py +1 -1
- flywheel/configuration.py +2 -2
- flywheel/flywheel.py +91 -91
- flywheel/models/__init__.py +1 -1
- flywheel/models/work_in_progress_features.py +30 -1
- {flywheel_sdk-19.4.0rc4.dist-info → flywheel_sdk-19.5.0rc3.dist-info}/METADATA +1 -1
- {flywheel_sdk-19.4.0rc4.dist-info → flywheel_sdk-19.5.0rc3.dist-info}/RECORD +24 -24
- {flywheel_sdk-19.4.0rc4.dist-info → flywheel_sdk-19.5.0rc3.dist-info}/LICENSE.txt +0 -0
- {flywheel_sdk-19.4.0rc4.dist-info → flywheel_sdk-19.5.0rc3.dist-info}/WHEEL +0 -0
- {flywheel_sdk-19.4.0rc4.dist-info → flywheel_sdk-19.5.0rc3.dist-info}/top_level.txt +0 -0
flywheel/api/acquisitions_api.py
CHANGED
|
@@ -3016,16 +3016,16 @@ class AcquisitionsApi(object):
|
|
|
3016
3016
|
This method makes a synchronous HTTP request by default.
|
|
3017
3017
|
|
|
3018
3018
|
:param str cid: (required)
|
|
3019
|
+
:param bool inflate_job:
|
|
3020
|
+
:param bool join_avatars:
|
|
3021
|
+
:param JoinType join:
|
|
3022
|
+
:param bool include_all_info: Include all info in returned objects
|
|
3019
3023
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
3020
3024
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3021
3025
|
:param int limit: The maximum number of entries to return.
|
|
3022
3026
|
:param int skip: The number of entries to skip.
|
|
3023
3027
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
3024
3028
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3025
|
-
:param bool inflate_job:
|
|
3026
|
-
:param bool join_avatars:
|
|
3027
|
-
:param JoinType join:
|
|
3028
|
-
:param bool include_all_info: Include all info in returned objects
|
|
3029
3029
|
:param list[str] x_accept_feature:
|
|
3030
3030
|
:param bool async_: Perform the request asynchronously
|
|
3031
3031
|
:return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
@@ -3053,22 +3053,22 @@ class AcquisitionsApi(object):
|
|
|
3053
3053
|
This method makes a synchronous HTTP request by default.
|
|
3054
3054
|
|
|
3055
3055
|
:param str cid: (required)
|
|
3056
|
+
:param bool inflate_job:
|
|
3057
|
+
:param bool join_avatars:
|
|
3058
|
+
:param JoinType join:
|
|
3059
|
+
:param bool include_all_info: Include all info in returned objects
|
|
3056
3060
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
3057
3061
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3058
3062
|
:param int limit: The maximum number of entries to return.
|
|
3059
3063
|
:param int skip: The number of entries to skip.
|
|
3060
3064
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
3061
3065
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3062
|
-
:param bool inflate_job:
|
|
3063
|
-
:param bool join_avatars:
|
|
3064
|
-
:param JoinType join:
|
|
3065
|
-
:param bool include_all_info: Include all info in returned objects
|
|
3066
3066
|
:param list[str] x_accept_feature:
|
|
3067
3067
|
:param bool async_: Perform the request asynchronously
|
|
3068
3068
|
:return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
3069
3069
|
"""
|
|
3070
3070
|
|
|
3071
|
-
all_params = ['cid','
|
|
3071
|
+
all_params = ['cid','inflate_job','join_avatars','join','include_all_info','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
3072
3072
|
all_params.append('async_')
|
|
3073
3073
|
all_params.append('_return_http_data_only')
|
|
3074
3074
|
all_params.append('_preload_content')
|
|
@@ -3096,6 +3096,14 @@ class AcquisitionsApi(object):
|
|
|
3096
3096
|
path_params['cid'] = params['cid'] # noqa: E501
|
|
3097
3097
|
|
|
3098
3098
|
query_params = []
|
|
3099
|
+
if 'inflate_job' in params:
|
|
3100
|
+
query_params.append(('inflate_job', params['inflate_job'])) # noqa: E501
|
|
3101
|
+
if 'join_avatars' in params:
|
|
3102
|
+
query_params.append(('join_avatars', params['join_avatars'])) # noqa: E501
|
|
3103
|
+
if 'join' in params:
|
|
3104
|
+
query_params.append(('join', params['join'])) # noqa: E501
|
|
3105
|
+
if 'include_all_info' in params:
|
|
3106
|
+
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
3099
3107
|
if 'filter' in params:
|
|
3100
3108
|
query_params.append(('filter', params['filter'])) # noqa: E501
|
|
3101
3109
|
if 'sort' in params:
|
|
@@ -3108,14 +3116,6 @@ class AcquisitionsApi(object):
|
|
|
3108
3116
|
query_params.append(('page', params['page'])) # noqa: E501
|
|
3109
3117
|
if 'after_id' in params:
|
|
3110
3118
|
query_params.append(('after_id', params['after_id'])) # noqa: E501
|
|
3111
|
-
if 'inflate_job' in params:
|
|
3112
|
-
query_params.append(('inflate_job', params['inflate_job'])) # noqa: E501
|
|
3113
|
-
if 'join_avatars' in params:
|
|
3114
|
-
query_params.append(('join_avatars', params['join_avatars'])) # noqa: E501
|
|
3115
|
-
if 'join' in params:
|
|
3116
|
-
query_params.append(('join', params['join'])) # noqa: E501
|
|
3117
|
-
if 'include_all_info' in params:
|
|
3118
|
-
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
3119
3119
|
|
|
3120
3120
|
header_params = {}
|
|
3121
3121
|
if 'x_accept_feature' in params:
|
flywheel/api/containers_api.py
CHANGED
|
@@ -2811,16 +2811,16 @@ class ContainersApi(object):
|
|
|
2811
2811
|
This method makes a synchronous HTTP request by default.
|
|
2812
2812
|
|
|
2813
2813
|
:param str cid: (required)
|
|
2814
|
+
:param bool inflate_job:
|
|
2815
|
+
:param bool join_avatars:
|
|
2816
|
+
:param JoinType join:
|
|
2817
|
+
:param bool include_all_info: Include all info in returned objects
|
|
2814
2818
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
2815
2819
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
2816
2820
|
:param int limit: The maximum number of entries to return.
|
|
2817
2821
|
:param int skip: The number of entries to skip.
|
|
2818
2822
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
2819
2823
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
2820
|
-
:param bool inflate_job:
|
|
2821
|
-
:param bool join_avatars:
|
|
2822
|
-
:param JoinType join:
|
|
2823
|
-
:param bool include_all_info: Include all info in returned objects
|
|
2824
2824
|
:param list[str] x_accept_feature:
|
|
2825
2825
|
:param bool async_: Perform the request asynchronously
|
|
2826
2826
|
:return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
@@ -2848,22 +2848,22 @@ class ContainersApi(object):
|
|
|
2848
2848
|
This method makes a synchronous HTTP request by default.
|
|
2849
2849
|
|
|
2850
2850
|
:param str cid: (required)
|
|
2851
|
+
:param bool inflate_job:
|
|
2852
|
+
:param bool join_avatars:
|
|
2853
|
+
:param JoinType join:
|
|
2854
|
+
:param bool include_all_info: Include all info in returned objects
|
|
2851
2855
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
2852
2856
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
2853
2857
|
:param int limit: The maximum number of entries to return.
|
|
2854
2858
|
:param int skip: The number of entries to skip.
|
|
2855
2859
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
2856
2860
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
2857
|
-
:param bool inflate_job:
|
|
2858
|
-
:param bool join_avatars:
|
|
2859
|
-
:param JoinType join:
|
|
2860
|
-
:param bool include_all_info: Include all info in returned objects
|
|
2861
2861
|
:param list[str] x_accept_feature:
|
|
2862
2862
|
:param bool async_: Perform the request asynchronously
|
|
2863
2863
|
:return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
2864
2864
|
"""
|
|
2865
2865
|
|
|
2866
|
-
all_params = ['cid','
|
|
2866
|
+
all_params = ['cid','inflate_job','join_avatars','join','include_all_info','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
2867
2867
|
all_params.append('async_')
|
|
2868
2868
|
all_params.append('_return_http_data_only')
|
|
2869
2869
|
all_params.append('_preload_content')
|
|
@@ -2891,6 +2891,14 @@ class ContainersApi(object):
|
|
|
2891
2891
|
path_params['cid'] = params['cid'] # noqa: E501
|
|
2892
2892
|
|
|
2893
2893
|
query_params = []
|
|
2894
|
+
if 'inflate_job' in params:
|
|
2895
|
+
query_params.append(('inflate_job', params['inflate_job'])) # noqa: E501
|
|
2896
|
+
if 'join_avatars' in params:
|
|
2897
|
+
query_params.append(('join_avatars', params['join_avatars'])) # noqa: E501
|
|
2898
|
+
if 'join' in params:
|
|
2899
|
+
query_params.append(('join', params['join'])) # noqa: E501
|
|
2900
|
+
if 'include_all_info' in params:
|
|
2901
|
+
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
2894
2902
|
if 'filter' in params:
|
|
2895
2903
|
query_params.append(('filter', params['filter'])) # noqa: E501
|
|
2896
2904
|
if 'sort' in params:
|
|
@@ -2903,14 +2911,6 @@ class ContainersApi(object):
|
|
|
2903
2911
|
query_params.append(('page', params['page'])) # noqa: E501
|
|
2904
2912
|
if 'after_id' in params:
|
|
2905
2913
|
query_params.append(('after_id', params['after_id'])) # noqa: E501
|
|
2906
|
-
if 'inflate_job' in params:
|
|
2907
|
-
query_params.append(('inflate_job', params['inflate_job'])) # noqa: E501
|
|
2908
|
-
if 'join_avatars' in params:
|
|
2909
|
-
query_params.append(('join_avatars', params['join_avatars'])) # noqa: E501
|
|
2910
|
-
if 'join' in params:
|
|
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
|
|
2914
2914
|
|
|
2915
2915
|
header_params = {}
|
|
2916
2916
|
if 'x_accept_feature' in params:
|
flywheel/api/dataexplorer_api.py
CHANGED
|
@@ -129,13 +129,13 @@ class DataexplorerApi(object):
|
|
|
129
129
|
|
|
130
130
|
This method makes a synchronous HTTP request by default.
|
|
131
131
|
|
|
132
|
+
:param bool exhaustive: Return all queries, Admin only
|
|
132
133
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
133
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
134
|
-
:param int limit: The maximum number of entries to return
|
|
135
|
-
:param int skip: The number of entries to skip
|
|
134
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
135
|
+
:param int limit: The maximum number of entries to return.
|
|
136
|
+
:param int skip: The number of entries to skip.
|
|
136
137
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
137
138
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
138
|
-
:param bool exhaustive: Return all queries, Admin only
|
|
139
139
|
:param list[str] x_accept_feature:
|
|
140
140
|
:param bool async_: Perform the request asynchronously
|
|
141
141
|
:return: union[list[SaveSearchOutput],SaveSearchPage]
|
|
@@ -161,19 +161,19 @@ class DataexplorerApi(object):
|
|
|
161
161
|
|
|
162
162
|
This method makes a synchronous HTTP request by default.
|
|
163
163
|
|
|
164
|
+
:param bool exhaustive: Return all queries, Admin only
|
|
164
165
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
165
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
166
|
-
:param int limit: The maximum number of entries to return
|
|
167
|
-
:param int skip: The number of entries to skip
|
|
166
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
167
|
+
:param int limit: The maximum number of entries to return.
|
|
168
|
+
:param int skip: The number of entries to skip.
|
|
168
169
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
169
170
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
170
|
-
:param bool exhaustive: Return all queries, Admin only
|
|
171
171
|
:param list[str] x_accept_feature:
|
|
172
172
|
:param bool async_: Perform the request asynchronously
|
|
173
173
|
:return: union[list[SaveSearchOutput],SaveSearchPage]
|
|
174
174
|
"""
|
|
175
175
|
|
|
176
|
-
all_params = ['filter','sort','limit','skip','page','after_id','
|
|
176
|
+
all_params = ['exhaustive','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
177
177
|
all_params.append('async_')
|
|
178
178
|
all_params.append('_return_http_data_only')
|
|
179
179
|
all_params.append('_preload_content')
|
|
@@ -195,6 +195,8 @@ class DataexplorerApi(object):
|
|
|
195
195
|
path_params = {}
|
|
196
196
|
|
|
197
197
|
query_params = []
|
|
198
|
+
if 'exhaustive' in params:
|
|
199
|
+
query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
|
|
198
200
|
if 'filter' in params:
|
|
199
201
|
query_params.append(('filter', params['filter'])) # noqa: E501
|
|
200
202
|
if 'sort' in params:
|
|
@@ -207,8 +209,6 @@ class DataexplorerApi(object):
|
|
|
207
209
|
query_params.append(('page', params['page'])) # noqa: E501
|
|
208
210
|
if 'after_id' in params:
|
|
209
211
|
query_params.append(('after_id', params['after_id'])) # noqa: E501
|
|
210
|
-
if 'exhaustive' in params:
|
|
211
|
-
query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
|
|
212
212
|
|
|
213
213
|
header_params = {}
|
|
214
214
|
if 'x_accept_feature' in params:
|
flywheel/api/devices_api.py
CHANGED
|
@@ -341,13 +341,13 @@ class DevicesApi(object):
|
|
|
341
341
|
Requires login.
|
|
342
342
|
This method makes a synchronous HTTP request by default.
|
|
343
343
|
|
|
344
|
+
:param bool join_keys: Return device key. Admins only
|
|
344
345
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
345
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
346
|
-
:param int limit: The maximum number of entries to return
|
|
347
|
-
:param int skip: The number of entries to skip
|
|
346
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
347
|
+
:param int limit: The maximum number of entries to return.
|
|
348
|
+
:param int skip: The number of entries to skip.
|
|
348
349
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
349
350
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
350
|
-
:param bool join_keys: Return device key. Admins only
|
|
351
351
|
:param list[str] x_accept_feature:
|
|
352
352
|
:param bool async_: Perform the request asynchronously
|
|
353
353
|
:return: union[list[EgressDevice],EgressDevicePage]
|
|
@@ -374,19 +374,19 @@ class DevicesApi(object):
|
|
|
374
374
|
Requires login.
|
|
375
375
|
This method makes a synchronous HTTP request by default.
|
|
376
376
|
|
|
377
|
+
:param bool join_keys: Return device key. Admins only
|
|
377
378
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
378
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
379
|
-
:param int limit: The maximum number of entries to return
|
|
380
|
-
:param int skip: The number of entries to skip
|
|
379
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
380
|
+
:param int limit: The maximum number of entries to return.
|
|
381
|
+
:param int skip: The number of entries to skip.
|
|
381
382
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
382
383
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
383
|
-
:param bool join_keys: Return device key. Admins only
|
|
384
384
|
:param list[str] x_accept_feature:
|
|
385
385
|
:param bool async_: Perform the request asynchronously
|
|
386
386
|
:return: union[list[EgressDevice],EgressDevicePage]
|
|
387
387
|
"""
|
|
388
388
|
|
|
389
|
-
all_params = ['filter','sort','limit','skip','page','after_id','
|
|
389
|
+
all_params = ['join_keys','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
390
390
|
all_params.append('async_')
|
|
391
391
|
all_params.append('_return_http_data_only')
|
|
392
392
|
all_params.append('_preload_content')
|
|
@@ -408,6 +408,8 @@ class DevicesApi(object):
|
|
|
408
408
|
path_params = {}
|
|
409
409
|
|
|
410
410
|
query_params = []
|
|
411
|
+
if 'join_keys' in params:
|
|
412
|
+
query_params.append(('join_keys', params['join_keys'])) # noqa: E501
|
|
411
413
|
if 'filter' in params:
|
|
412
414
|
query_params.append(('filter', params['filter'])) # noqa: E501
|
|
413
415
|
if 'sort' in params:
|
|
@@ -420,8 +422,6 @@ class DevicesApi(object):
|
|
|
420
422
|
query_params.append(('page', params['page'])) # noqa: E501
|
|
421
423
|
if 'after_id' in params:
|
|
422
424
|
query_params.append(('after_id', params['after_id'])) # noqa: E501
|
|
423
|
-
if 'join_keys' in params:
|
|
424
|
-
query_params.append(('join_keys', params['join_keys'])) # noqa: E501
|
|
425
425
|
|
|
426
426
|
header_params = {}
|
|
427
427
|
if 'x_accept_feature' in params:
|
flywheel/api/files_api.py
CHANGED
|
@@ -564,12 +564,12 @@ class FilesApi(object):
|
|
|
564
564
|
Get metadata of all current user files
|
|
565
565
|
This method makes a synchronous HTTP request by default.
|
|
566
566
|
|
|
567
|
-
:param str filter:
|
|
568
|
-
:param str sort:
|
|
569
|
-
:param int limit:
|
|
570
|
-
:param int skip:
|
|
571
|
-
:param int page:
|
|
572
|
-
:param str after_id:
|
|
567
|
+
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
568
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
569
|
+
:param int limit: The maximum number of entries to return.
|
|
570
|
+
:param int skip: The number of entries to skip.
|
|
571
|
+
:param int page: The page number (i.e. skip limit*page entries)
|
|
572
|
+
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
573
573
|
:param bool async_: Perform the request asynchronously
|
|
574
574
|
:return: PageGenericFileOutput
|
|
575
575
|
"""
|
|
@@ -595,12 +595,12 @@ class FilesApi(object):
|
|
|
595
595
|
Get metadata of all current user files
|
|
596
596
|
This method makes a synchronous HTTP request by default.
|
|
597
597
|
|
|
598
|
-
:param str filter:
|
|
599
|
-
:param str sort:
|
|
600
|
-
:param int limit:
|
|
601
|
-
:param int skip:
|
|
602
|
-
:param int page:
|
|
603
|
-
:param str after_id:
|
|
598
|
+
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
599
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
600
|
+
:param int limit: The maximum number of entries to return.
|
|
601
|
+
:param int skip: The number of entries to skip.
|
|
602
|
+
:param int page: The page number (i.e. skip limit*page entries)
|
|
603
|
+
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
604
604
|
:param bool async_: Perform the request asynchronously
|
|
605
605
|
:return: PageGenericFileOutput
|
|
606
606
|
"""
|
flywheel/api/gears_api.py
CHANGED
|
@@ -578,8 +578,8 @@ class GearsApi(object):
|
|
|
578
578
|
:param int limit: The maximum number of entries to return.
|
|
579
579
|
:param int skip: The number of entries to skip.
|
|
580
580
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
581
|
-
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
582
581
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
582
|
+
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
583
583
|
:param list[union[HeaderFeature,str]] x_accept_feature:
|
|
584
584
|
:param bool async_: Perform the request asynchronously
|
|
585
585
|
:return: union[list[GearDocument],Page]
|
|
@@ -614,14 +614,14 @@ class GearsApi(object):
|
|
|
614
614
|
:param int limit: The maximum number of entries to return.
|
|
615
615
|
:param int skip: The number of entries to skip.
|
|
616
616
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
617
|
-
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
618
617
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
618
|
+
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
619
619
|
:param list[union[HeaderFeature,str]] x_accept_feature:
|
|
620
620
|
:param bool async_: Perform the request asynchronously
|
|
621
621
|
:return: union[list[GearDocument],Page]
|
|
622
622
|
"""
|
|
623
623
|
|
|
624
|
-
all_params = ['project_id','all_versions','include_invalid','filter','sort','limit','skip','page','
|
|
624
|
+
all_params = ['project_id','all_versions','include_invalid','filter','sort','limit','skip','page','after_id','exhaustive','x_accept_feature',] # noqa: E501
|
|
625
625
|
all_params.append('async_')
|
|
626
626
|
all_params.append('_return_http_data_only')
|
|
627
627
|
all_params.append('_preload_content')
|
|
@@ -659,10 +659,10 @@ class GearsApi(object):
|
|
|
659
659
|
query_params.append(('skip', params['skip'])) # noqa: E501
|
|
660
660
|
if 'page' in params:
|
|
661
661
|
query_params.append(('page', params['page'])) # noqa: E501
|
|
662
|
-
if 'exhaustive' in params:
|
|
663
|
-
query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
|
|
664
662
|
if 'after_id' in params:
|
|
665
663
|
query_params.append(('after_id', params['after_id'])) # noqa: E501
|
|
664
|
+
if 'exhaustive' in params:
|
|
665
|
+
query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
|
|
666
666
|
|
|
667
667
|
header_params = {}
|
|
668
668
|
if 'x_accept_feature' in params:
|
flywheel/api/jobs_api.py
CHANGED
|
@@ -692,14 +692,14 @@ class JobsApi(object):
|
|
|
692
692
|
|
|
693
693
|
This method makes a synchronous HTTP request by default.
|
|
694
694
|
|
|
695
|
+
:param bool include_parent_info: Include the parent info for the jobs
|
|
696
|
+
:param bool include_all_info: Include all info in returned objects
|
|
695
697
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
696
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
697
|
-
:param int limit: The maximum number of entries to return
|
|
698
|
-
:param int skip: The number of entries to skip
|
|
698
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
699
|
+
:param int limit: The maximum number of entries to return.
|
|
700
|
+
:param int skip: The number of entries to skip.
|
|
699
701
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
700
702
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
701
|
-
:param bool include_parent_info: Include the parent info for the jobs
|
|
702
|
-
:param bool include_all_info: Include all info in returned objects
|
|
703
703
|
:param list[str] x_accept_feature:
|
|
704
704
|
:param bool async_: Perform the request asynchronously
|
|
705
705
|
:return: union[list[JobListOutput],Page]
|
|
@@ -725,20 +725,20 @@ class JobsApi(object):
|
|
|
725
725
|
|
|
726
726
|
This method makes a synchronous HTTP request by default.
|
|
727
727
|
|
|
728
|
+
:param bool include_parent_info: Include the parent info for the jobs
|
|
729
|
+
:param bool include_all_info: Include all info in returned objects
|
|
728
730
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
729
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
730
|
-
:param int limit: The maximum number of entries to return
|
|
731
|
-
:param int skip: The number of entries to skip
|
|
731
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
732
|
+
:param int limit: The maximum number of entries to return.
|
|
733
|
+
:param int skip: The number of entries to skip.
|
|
732
734
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
733
735
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
734
|
-
:param bool include_parent_info: Include the parent info for the jobs
|
|
735
|
-
:param bool include_all_info: Include all info in returned objects
|
|
736
736
|
:param list[str] x_accept_feature:
|
|
737
737
|
:param bool async_: Perform the request asynchronously
|
|
738
738
|
:return: union[list[JobListOutput],Page]
|
|
739
739
|
"""
|
|
740
740
|
|
|
741
|
-
all_params = ['filter','sort','limit','skip','page','after_id','
|
|
741
|
+
all_params = ['include_parent_info','include_all_info','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
742
742
|
all_params.append('async_')
|
|
743
743
|
all_params.append('_return_http_data_only')
|
|
744
744
|
all_params.append('_preload_content')
|
|
@@ -760,6 +760,10 @@ class JobsApi(object):
|
|
|
760
760
|
path_params = {}
|
|
761
761
|
|
|
762
762
|
query_params = []
|
|
763
|
+
if 'include_parent_info' in params:
|
|
764
|
+
query_params.append(('include_parent_info', params['include_parent_info'])) # noqa: E501
|
|
765
|
+
if 'include_all_info' in params:
|
|
766
|
+
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
763
767
|
if 'filter' in params:
|
|
764
768
|
query_params.append(('filter', params['filter'])) # noqa: E501
|
|
765
769
|
if 'sort' in params:
|
|
@@ -772,10 +776,6 @@ class JobsApi(object):
|
|
|
772
776
|
query_params.append(('page', params['page'])) # noqa: E501
|
|
773
777
|
if 'after_id' in params:
|
|
774
778
|
query_params.append(('after_id', params['after_id'])) # noqa: E501
|
|
775
|
-
if 'include_parent_info' in params:
|
|
776
|
-
query_params.append(('include_parent_info', params['include_parent_info'])) # noqa: E501
|
|
777
|
-
if 'include_all_info' in params:
|
|
778
|
-
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
779
779
|
|
|
780
780
|
header_params = {}
|
|
781
781
|
if 'x_accept_feature' in params:
|
flywheel/api/modalities_api.py
CHANGED
|
@@ -237,10 +237,10 @@ class ModalitiesApi(object):
|
|
|
237
237
|
Requires login.
|
|
238
238
|
This method makes a synchronous HTTP request by default.
|
|
239
239
|
|
|
240
|
-
:param str filter: The filter to apply. (e.g.
|
|
241
|
-
:param str sort: The sort fields and order.(e.g.
|
|
242
|
-
:param int limit: The maximum number of entries to return
|
|
243
|
-
:param int skip: The number of entries to skip
|
|
240
|
+
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
241
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
242
|
+
:param int limit: The maximum number of entries to return.
|
|
243
|
+
:param int skip: The number of entries to skip.
|
|
244
244
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
245
245
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
246
246
|
:param list[str] x_accept_feature:
|
|
@@ -269,10 +269,10 @@ class ModalitiesApi(object):
|
|
|
269
269
|
Requires login.
|
|
270
270
|
This method makes a synchronous HTTP request by default.
|
|
271
271
|
|
|
272
|
-
:param str filter: The filter to apply. (e.g.
|
|
273
|
-
:param str sort: The sort fields and order.(e.g.
|
|
274
|
-
:param int limit: The maximum number of entries to return
|
|
275
|
-
:param int skip: The number of entries to skip
|
|
272
|
+
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
273
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
274
|
+
:param int limit: The maximum number of entries to return.
|
|
275
|
+
:param int skip: The number of entries to skip.
|
|
276
276
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
277
277
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
278
278
|
:param list[str] x_accept_feature:
|