flywheel-sdk 19.4.0rc1__py2.py3-none-any.whl → 19.5.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 +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/project_copy_filter.py +31 -4
- {flywheel_sdk-19.4.0rc1.dist-info → flywheel_sdk-19.5.0.dist-info}/METADATA +6 -6
- {flywheel_sdk-19.4.0rc1.dist-info → flywheel_sdk-19.5.0.dist-info}/RECORD +24 -24
- {flywheel_sdk-19.4.0rc1.dist-info → flywheel_sdk-19.5.0.dist-info}/WHEEL +1 -1
- {flywheel_sdk-19.4.0rc1.dist-info → flywheel_sdk-19.5.0.dist-info}/LICENSE.txt +0 -0
- {flywheel_sdk-19.4.0rc1.dist-info → flywheel_sdk-19.5.0.dist-info}/top_level.txt +0 -0
flywheel/api/projects_api.py
CHANGED
|
@@ -965,9 +965,9 @@ class ProjectsApi(object):
|
|
|
965
965
|
|
|
966
966
|
:param str search_string: Include only results containing the search string
|
|
967
967
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
968
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
969
|
-
:param int limit: The maximum number of entries to return
|
|
970
|
-
:param int skip: The number of entries to skip
|
|
968
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
969
|
+
:param int limit: The maximum number of entries to return.
|
|
970
|
+
:param int skip: The number of entries to skip.
|
|
971
971
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
972
972
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
973
973
|
:param list[union[HeaderFeature,str]] x_accept_feature:
|
|
@@ -997,9 +997,9 @@ class ProjectsApi(object):
|
|
|
997
997
|
|
|
998
998
|
:param str search_string: Include only results containing the search string
|
|
999
999
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
1000
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
1001
|
-
:param int limit: The maximum number of entries to return
|
|
1002
|
-
:param int skip: The number of entries to skip
|
|
1000
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
1001
|
+
:param int limit: The maximum number of entries to return.
|
|
1002
|
+
:param int skip: The number of entries to skip.
|
|
1003
1003
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
1004
1004
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
1005
1005
|
:param list[union[HeaderFeature,str]] x_accept_feature:
|
|
@@ -3484,18 +3484,18 @@ class ProjectsApi(object):
|
|
|
3484
3484
|
|
|
3485
3485
|
This method makes a synchronous HTTP request by default.
|
|
3486
3486
|
|
|
3487
|
-
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
3488
|
-
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3489
|
-
:param int limit: The maximum number of entries to return.
|
|
3490
|
-
:param int skip: The number of entries to skip.
|
|
3491
|
-
:param int page: The page number (i.e. skip limit*page entries)
|
|
3492
|
-
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3493
3487
|
:param bool counts: Append the count of subjects in each project
|
|
3494
3488
|
:param bool stats: Return the status of subjects and sessions in each project
|
|
3495
3489
|
:param bool join_avatars: Return the joined avatars of the permissions
|
|
3496
3490
|
:param JoinType join:
|
|
3497
3491
|
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
3498
3492
|
:param bool include_all_info: Include all info in returned objects
|
|
3493
|
+
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
3494
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3495
|
+
:param int limit: The maximum number of entries to return.
|
|
3496
|
+
:param int skip: The number of entries to skip.
|
|
3497
|
+
:param int page: The page number (i.e. skip limit*page entries)
|
|
3498
|
+
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3499
3499
|
:param list[union[HeaderFeature,str]] x_accept_feature:
|
|
3500
3500
|
:param bool async_: Perform the request asynchronously
|
|
3501
3501
|
:return: union[list[ProjectListOutput],Page]
|
|
@@ -3521,24 +3521,24 @@ class ProjectsApi(object):
|
|
|
3521
3521
|
|
|
3522
3522
|
This method makes a synchronous HTTP request by default.
|
|
3523
3523
|
|
|
3524
|
-
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
3525
|
-
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3526
|
-
:param int limit: The maximum number of entries to return.
|
|
3527
|
-
:param int skip: The number of entries to skip.
|
|
3528
|
-
:param int page: The page number (i.e. skip limit*page entries)
|
|
3529
|
-
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3530
3524
|
:param bool counts: Append the count of subjects in each project
|
|
3531
3525
|
:param bool stats: Return the status of subjects and sessions in each project
|
|
3532
3526
|
:param bool join_avatars: Return the joined avatars of the permissions
|
|
3533
3527
|
:param JoinType join:
|
|
3534
3528
|
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
3535
3529
|
:param bool include_all_info: Include all info in returned objects
|
|
3530
|
+
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
3531
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3532
|
+
:param int limit: The maximum number of entries to return.
|
|
3533
|
+
:param int skip: The number of entries to skip.
|
|
3534
|
+
:param int page: The page number (i.e. skip limit*page entries)
|
|
3535
|
+
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3536
3536
|
:param list[union[HeaderFeature,str]] x_accept_feature:
|
|
3537
3537
|
:param bool async_: Perform the request asynchronously
|
|
3538
3538
|
:return: union[list[ProjectListOutput],Page]
|
|
3539
3539
|
"""
|
|
3540
3540
|
|
|
3541
|
-
all_params = ['
|
|
3541
|
+
all_params = ['counts','stats','join_avatars','join','exhaustive','include_all_info','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
3542
3542
|
all_params.append('async_')
|
|
3543
3543
|
all_params.append('_return_http_data_only')
|
|
3544
3544
|
all_params.append('_preload_content')
|
|
@@ -3560,18 +3560,6 @@ class ProjectsApi(object):
|
|
|
3560
3560
|
path_params = {}
|
|
3561
3561
|
|
|
3562
3562
|
query_params = []
|
|
3563
|
-
if 'filter' in params:
|
|
3564
|
-
query_params.append(('filter', params['filter'])) # noqa: E501
|
|
3565
|
-
if 'sort' in params:
|
|
3566
|
-
query_params.append(('sort', params['sort'])) # noqa: E501
|
|
3567
|
-
if 'limit' in params:
|
|
3568
|
-
query_params.append(('limit', params['limit'])) # noqa: E501
|
|
3569
|
-
if 'skip' in params:
|
|
3570
|
-
query_params.append(('skip', params['skip'])) # noqa: E501
|
|
3571
|
-
if 'page' in params:
|
|
3572
|
-
query_params.append(('page', params['page'])) # noqa: E501
|
|
3573
|
-
if 'after_id' in params:
|
|
3574
|
-
query_params.append(('after_id', params['after_id'])) # noqa: E501
|
|
3575
3563
|
if 'counts' in params:
|
|
3576
3564
|
query_params.append(('counts', params['counts'])) # noqa: E501
|
|
3577
3565
|
if 'stats' in params:
|
|
@@ -3584,6 +3572,18 @@ class ProjectsApi(object):
|
|
|
3584
3572
|
query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
|
|
3585
3573
|
if 'include_all_info' in params:
|
|
3586
3574
|
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
3575
|
+
if 'filter' in params:
|
|
3576
|
+
query_params.append(('filter', params['filter'])) # noqa: E501
|
|
3577
|
+
if 'sort' in params:
|
|
3578
|
+
query_params.append(('sort', params['sort'])) # noqa: E501
|
|
3579
|
+
if 'limit' in params:
|
|
3580
|
+
query_params.append(('limit', params['limit'])) # noqa: E501
|
|
3581
|
+
if 'skip' in params:
|
|
3582
|
+
query_params.append(('skip', params['skip'])) # noqa: E501
|
|
3583
|
+
if 'page' in params:
|
|
3584
|
+
query_params.append(('page', params['page'])) # noqa: E501
|
|
3585
|
+
if 'after_id' in params:
|
|
3586
|
+
query_params.append(('after_id', params['after_id'])) # noqa: E501
|
|
3587
3587
|
|
|
3588
3588
|
header_params = {}
|
|
3589
3589
|
if 'x_accept_feature' in params:
|
|
@@ -3623,13 +3623,13 @@ class ProjectsApi(object):
|
|
|
3623
3623
|
|
|
3624
3624
|
This method makes a synchronous HTTP request by default.
|
|
3625
3625
|
|
|
3626
|
+
:param bool exhaustive: returns exhaustive list if correct permissions
|
|
3626
3627
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
3627
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
3628
|
-
:param int limit: The maximum number of entries to return
|
|
3629
|
-
:param int skip: The number of entries to skip
|
|
3628
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3629
|
+
:param int limit: The maximum number of entries to return.
|
|
3630
|
+
:param int skip: The number of entries to skip.
|
|
3630
3631
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
3631
3632
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3632
|
-
:param bool exhaustive: returns exhaustive list if correct permissions
|
|
3633
3633
|
:param list[str] x_accept_feature:
|
|
3634
3634
|
:param bool async_: Perform the request asynchronously
|
|
3635
3635
|
:return: list[GroupOutput]
|
|
@@ -3655,19 +3655,19 @@ class ProjectsApi(object):
|
|
|
3655
3655
|
|
|
3656
3656
|
This method makes a synchronous HTTP request by default.
|
|
3657
3657
|
|
|
3658
|
+
:param bool exhaustive: returns exhaustive list if correct permissions
|
|
3658
3659
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
3659
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
3660
|
-
:param int limit: The maximum number of entries to return
|
|
3661
|
-
:param int skip: The number of entries to skip
|
|
3660
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3661
|
+
:param int limit: The maximum number of entries to return.
|
|
3662
|
+
:param int skip: The number of entries to skip.
|
|
3662
3663
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
3663
3664
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3664
|
-
:param bool exhaustive: returns exhaustive list if correct permissions
|
|
3665
3665
|
:param list[str] x_accept_feature:
|
|
3666
3666
|
:param bool async_: Perform the request asynchronously
|
|
3667
3667
|
:return: list[GroupOutput]
|
|
3668
3668
|
"""
|
|
3669
3669
|
|
|
3670
|
-
all_params = ['filter','sort','limit','skip','page','after_id','
|
|
3670
|
+
all_params = ['exhaustive','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
3671
3671
|
all_params.append('async_')
|
|
3672
3672
|
all_params.append('_return_http_data_only')
|
|
3673
3673
|
all_params.append('_preload_content')
|
|
@@ -3689,6 +3689,8 @@ class ProjectsApi(object):
|
|
|
3689
3689
|
path_params = {}
|
|
3690
3690
|
|
|
3691
3691
|
query_params = []
|
|
3692
|
+
if 'exhaustive' in params:
|
|
3693
|
+
query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
|
|
3692
3694
|
if 'filter' in params:
|
|
3693
3695
|
query_params.append(('filter', params['filter'])) # noqa: E501
|
|
3694
3696
|
if 'sort' in params:
|
|
@@ -3701,8 +3703,6 @@ class ProjectsApi(object):
|
|
|
3701
3703
|
query_params.append(('page', params['page'])) # noqa: E501
|
|
3702
3704
|
if 'after_id' in params:
|
|
3703
3705
|
query_params.append(('after_id', params['after_id'])) # noqa: E501
|
|
3704
|
-
if 'exhaustive' in params:
|
|
3705
|
-
query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
|
|
3706
3706
|
|
|
3707
3707
|
header_params = {}
|
|
3708
3708
|
if 'x_accept_feature' in params:
|
|
@@ -3936,16 +3936,16 @@ class ProjectsApi(object):
|
|
|
3936
3936
|
This method makes a synchronous HTTP request by default.
|
|
3937
3937
|
|
|
3938
3938
|
:param str project_id: (required)
|
|
3939
|
+
:param str collection_id:
|
|
3940
|
+
:param bool exhaustive:
|
|
3941
|
+
:param JoinType join:
|
|
3942
|
+
:param bool include_all_info: Include all info in returned objects
|
|
3939
3943
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
3940
3944
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3941
3945
|
:param int limit: The maximum number of entries to return.
|
|
3942
3946
|
:param int skip: The number of entries to skip.
|
|
3943
3947
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
3944
3948
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3945
|
-
:param str collection_id:
|
|
3946
|
-
:param bool exhaustive:
|
|
3947
|
-
:param JoinType join:
|
|
3948
|
-
:param bool include_all_info: Include all info in returned objects
|
|
3949
3949
|
:param list[str] x_accept_feature:
|
|
3950
3950
|
:param bool async_: Perform the request asynchronously
|
|
3951
3951
|
:return: union[list[AcquisitionListOutput],Page]
|
|
@@ -3972,22 +3972,22 @@ class ProjectsApi(object):
|
|
|
3972
3972
|
This method makes a synchronous HTTP request by default.
|
|
3973
3973
|
|
|
3974
3974
|
:param str project_id: (required)
|
|
3975
|
+
:param str collection_id:
|
|
3976
|
+
:param bool exhaustive:
|
|
3977
|
+
:param JoinType join:
|
|
3978
|
+
:param bool include_all_info: Include all info in returned objects
|
|
3975
3979
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
3976
3980
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3977
3981
|
:param int limit: The maximum number of entries to return.
|
|
3978
3982
|
:param int skip: The number of entries to skip.
|
|
3979
3983
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
3980
3984
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3981
|
-
:param str collection_id:
|
|
3982
|
-
:param bool exhaustive:
|
|
3983
|
-
:param JoinType join:
|
|
3984
|
-
:param bool include_all_info: Include all info in returned objects
|
|
3985
3985
|
:param list[str] x_accept_feature:
|
|
3986
3986
|
:param bool async_: Perform the request asynchronously
|
|
3987
3987
|
:return: union[list[AcquisitionListOutput],Page]
|
|
3988
3988
|
"""
|
|
3989
3989
|
|
|
3990
|
-
all_params = ['project_id','
|
|
3990
|
+
all_params = ['project_id','collection_id','exhaustive','join','include_all_info','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
3991
3991
|
all_params.append('async_')
|
|
3992
3992
|
all_params.append('_return_http_data_only')
|
|
3993
3993
|
all_params.append('_preload_content')
|
|
@@ -4015,6 +4015,14 @@ class ProjectsApi(object):
|
|
|
4015
4015
|
path_params['project_id'] = params['project_id'] # noqa: E501
|
|
4016
4016
|
|
|
4017
4017
|
query_params = []
|
|
4018
|
+
if 'collection_id' in params:
|
|
4019
|
+
query_params.append(('collection_id', params['collection_id'])) # noqa: E501
|
|
4020
|
+
if 'exhaustive' in params:
|
|
4021
|
+
query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
|
|
4022
|
+
if 'join' in params:
|
|
4023
|
+
query_params.append(('join', params['join'])) # noqa: E501
|
|
4024
|
+
if 'include_all_info' in params:
|
|
4025
|
+
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
4018
4026
|
if 'filter' in params:
|
|
4019
4027
|
query_params.append(('filter', params['filter'])) # noqa: E501
|
|
4020
4028
|
if 'sort' in params:
|
|
@@ -4027,14 +4035,6 @@ class ProjectsApi(object):
|
|
|
4027
4035
|
query_params.append(('page', params['page'])) # noqa: E501
|
|
4028
4036
|
if 'after_id' in params:
|
|
4029
4037
|
query_params.append(('after_id', params['after_id'])) # noqa: E501
|
|
4030
|
-
if 'collection_id' in params:
|
|
4031
|
-
query_params.append(('collection_id', params['collection_id'])) # noqa: E501
|
|
4032
|
-
if 'exhaustive' in params:
|
|
4033
|
-
query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
|
|
4034
|
-
if 'join' in params:
|
|
4035
|
-
query_params.append(('join', params['join'])) # noqa: E501
|
|
4036
|
-
if 'include_all_info' in params:
|
|
4037
|
-
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
4038
4038
|
|
|
4039
4039
|
header_params = {}
|
|
4040
4040
|
if 'x_accept_feature' in params:
|
|
@@ -4076,16 +4076,16 @@ class ProjectsApi(object):
|
|
|
4076
4076
|
This method makes a synchronous HTTP request by default.
|
|
4077
4077
|
|
|
4078
4078
|
:param str cid: (required)
|
|
4079
|
+
:param bool inflate_job:
|
|
4080
|
+
:param bool join_avatars:
|
|
4081
|
+
:param JoinType join:
|
|
4082
|
+
:param bool include_all_info: Include all info in returned objects
|
|
4079
4083
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
4080
4084
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
4081
4085
|
:param int limit: The maximum number of entries to return.
|
|
4082
4086
|
:param int skip: The number of entries to skip.
|
|
4083
4087
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
4084
4088
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
4085
|
-
:param bool inflate_job:
|
|
4086
|
-
:param bool join_avatars:
|
|
4087
|
-
:param JoinType join:
|
|
4088
|
-
:param bool include_all_info: Include all info in returned objects
|
|
4089
4089
|
:param list[str] x_accept_feature:
|
|
4090
4090
|
:param bool async_: Perform the request asynchronously
|
|
4091
4091
|
:return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
@@ -4113,22 +4113,22 @@ class ProjectsApi(object):
|
|
|
4113
4113
|
This method makes a synchronous HTTP request by default.
|
|
4114
4114
|
|
|
4115
4115
|
:param str cid: (required)
|
|
4116
|
+
:param bool inflate_job:
|
|
4117
|
+
:param bool join_avatars:
|
|
4118
|
+
:param JoinType join:
|
|
4119
|
+
:param bool include_all_info: Include all info in returned objects
|
|
4116
4120
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
4117
4121
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
4118
4122
|
:param int limit: The maximum number of entries to return.
|
|
4119
4123
|
:param int skip: The number of entries to skip.
|
|
4120
4124
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
4121
4125
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
4122
|
-
:param bool inflate_job:
|
|
4123
|
-
:param bool join_avatars:
|
|
4124
|
-
:param JoinType join:
|
|
4125
|
-
:param bool include_all_info: Include all info in returned objects
|
|
4126
4126
|
:param list[str] x_accept_feature:
|
|
4127
4127
|
:param bool async_: Perform the request asynchronously
|
|
4128
4128
|
:return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
4129
4129
|
"""
|
|
4130
4130
|
|
|
4131
|
-
all_params = ['cid','
|
|
4131
|
+
all_params = ['cid','inflate_job','join_avatars','join','include_all_info','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
4132
4132
|
all_params.append('async_')
|
|
4133
4133
|
all_params.append('_return_http_data_only')
|
|
4134
4134
|
all_params.append('_preload_content')
|
|
@@ -4156,6 +4156,14 @@ class ProjectsApi(object):
|
|
|
4156
4156
|
path_params['cid'] = params['cid'] # noqa: E501
|
|
4157
4157
|
|
|
4158
4158
|
query_params = []
|
|
4159
|
+
if 'inflate_job' in params:
|
|
4160
|
+
query_params.append(('inflate_job', params['inflate_job'])) # noqa: E501
|
|
4161
|
+
if 'join_avatars' in params:
|
|
4162
|
+
query_params.append(('join_avatars', params['join_avatars'])) # noqa: E501
|
|
4163
|
+
if 'join' in params:
|
|
4164
|
+
query_params.append(('join', params['join'])) # noqa: E501
|
|
4165
|
+
if 'include_all_info' in params:
|
|
4166
|
+
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
4159
4167
|
if 'filter' in params:
|
|
4160
4168
|
query_params.append(('filter', params['filter'])) # noqa: E501
|
|
4161
4169
|
if 'sort' in params:
|
|
@@ -4168,14 +4176,6 @@ class ProjectsApi(object):
|
|
|
4168
4176
|
query_params.append(('page', params['page'])) # noqa: E501
|
|
4169
4177
|
if 'after_id' in params:
|
|
4170
4178
|
query_params.append(('after_id', params['after_id'])) # noqa: E501
|
|
4171
|
-
if 'inflate_job' in params:
|
|
4172
|
-
query_params.append(('inflate_job', params['inflate_job'])) # noqa: E501
|
|
4173
|
-
if 'join_avatars' in params:
|
|
4174
|
-
query_params.append(('join_avatars', params['join_avatars'])) # noqa: E501
|
|
4175
|
-
if 'join' in params:
|
|
4176
|
-
query_params.append(('join', params['join'])) # noqa: E501
|
|
4177
|
-
if 'include_all_info' in params:
|
|
4178
|
-
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
4179
4179
|
|
|
4180
4180
|
header_params = {}
|
|
4181
4181
|
if 'x_accept_feature' in params:
|
|
@@ -4968,14 +4968,14 @@ class ProjectsApi(object):
|
|
|
4968
4968
|
This method makes a synchronous HTTP request by default.
|
|
4969
4969
|
|
|
4970
4970
|
:param str project_id: (required)
|
|
4971
|
+
:param JoinType join:
|
|
4972
|
+
:param bool include_all_info: Include all info in returned objects
|
|
4971
4973
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
4972
4974
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
4973
4975
|
:param int limit: The maximum number of entries to return.
|
|
4974
4976
|
:param int skip: The number of entries to skip.
|
|
4975
4977
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
4976
4978
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
4977
|
-
:param JoinType join:
|
|
4978
|
-
:param bool include_all_info: Include all info in returned objects
|
|
4979
4979
|
:param list[str] x_accept_feature:
|
|
4980
4980
|
:param bool async_: Perform the request asynchronously
|
|
4981
4981
|
:return: union[Page,list[SubjectOutputForList]]
|
|
@@ -5003,20 +5003,20 @@ class ProjectsApi(object):
|
|
|
5003
5003
|
This method makes a synchronous HTTP request by default.
|
|
5004
5004
|
|
|
5005
5005
|
:param str project_id: (required)
|
|
5006
|
+
:param JoinType join:
|
|
5007
|
+
:param bool include_all_info: Include all info in returned objects
|
|
5006
5008
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
5007
5009
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
5008
5010
|
:param int limit: The maximum number of entries to return.
|
|
5009
5011
|
:param int skip: The number of entries to skip.
|
|
5010
5012
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
5011
5013
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
5012
|
-
:param JoinType join:
|
|
5013
|
-
:param bool include_all_info: Include all info in returned objects
|
|
5014
5014
|
:param list[str] x_accept_feature:
|
|
5015
5015
|
:param bool async_: Perform the request asynchronously
|
|
5016
5016
|
:return: union[Page,list[SubjectOutputForList]]
|
|
5017
5017
|
"""
|
|
5018
5018
|
|
|
5019
|
-
all_params = ['project_id','filter','sort','limit','skip','page','after_id','
|
|
5019
|
+
all_params = ['project_id','join','include_all_info','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
5020
5020
|
all_params.append('async_')
|
|
5021
5021
|
all_params.append('_return_http_data_only')
|
|
5022
5022
|
all_params.append('_preload_content')
|
|
@@ -5044,6 +5044,10 @@ class ProjectsApi(object):
|
|
|
5044
5044
|
path_params['project_id'] = params['project_id'] # noqa: E501
|
|
5045
5045
|
|
|
5046
5046
|
query_params = []
|
|
5047
|
+
if 'join' in params:
|
|
5048
|
+
query_params.append(('join', params['join'])) # noqa: E501
|
|
5049
|
+
if 'include_all_info' in params:
|
|
5050
|
+
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
5047
5051
|
if 'filter' in params:
|
|
5048
5052
|
query_params.append(('filter', params['filter'])) # noqa: E501
|
|
5049
5053
|
if 'sort' in params:
|
|
@@ -5056,10 +5060,6 @@ class ProjectsApi(object):
|
|
|
5056
5060
|
query_params.append(('page', params['page'])) # noqa: E501
|
|
5057
5061
|
if 'after_id' in params:
|
|
5058
5062
|
query_params.append(('after_id', params['after_id'])) # noqa: E501
|
|
5059
|
-
if 'join' in params:
|
|
5060
|
-
query_params.append(('join', params['join'])) # noqa: E501
|
|
5061
|
-
if 'include_all_info' in params:
|
|
5062
|
-
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
5063
5063
|
|
|
5064
5064
|
header_params = {}
|
|
5065
5065
|
if 'x_accept_feature' in params:
|
flywheel/api/roles_api.py
CHANGED
|
@@ -235,9 +235,9 @@ class RolesApi(object):
|
|
|
235
235
|
This method makes a synchronous HTTP request by default.
|
|
236
236
|
|
|
237
237
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
238
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
239
|
-
:param int limit: The maximum number of entries to return
|
|
240
|
-
:param int skip: The number of entries to skip
|
|
238
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
239
|
+
:param int limit: The maximum number of entries to return.
|
|
240
|
+
:param int skip: The number of entries to skip.
|
|
241
241
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
242
242
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
243
243
|
:param list[str] x_accept_feature:
|
|
@@ -266,9 +266,9 @@ class RolesApi(object):
|
|
|
266
266
|
This method makes a synchronous HTTP request by default.
|
|
267
267
|
|
|
268
268
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
269
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
270
|
-
:param int limit: The maximum number of entries to return
|
|
271
|
-
:param int skip: The number of entries to skip
|
|
269
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
270
|
+
:param int limit: The maximum number of entries to return.
|
|
271
|
+
:param int skip: The number of entries to skip.
|
|
272
272
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
273
273
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
274
274
|
:param list[str] x_accept_feature:
|
flywheel/api/sessions_api.py
CHANGED
|
@@ -3294,16 +3294,16 @@ class SessionsApi(object):
|
|
|
3294
3294
|
This method makes a synchronous HTTP request by default.
|
|
3295
3295
|
|
|
3296
3296
|
:param str cid: (required)
|
|
3297
|
+
:param bool inflate_job:
|
|
3298
|
+
:param bool join_avatars:
|
|
3299
|
+
:param JoinType join:
|
|
3300
|
+
:param bool include_all_info: Include all info in returned objects
|
|
3297
3301
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
3298
3302
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3299
3303
|
:param int limit: The maximum number of entries to return.
|
|
3300
3304
|
:param int skip: The number of entries to skip.
|
|
3301
3305
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
3302
3306
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3303
|
-
:param bool inflate_job:
|
|
3304
|
-
:param bool join_avatars:
|
|
3305
|
-
:param JoinType join:
|
|
3306
|
-
:param bool include_all_info: Include all info in returned objects
|
|
3307
3307
|
:param list[str] x_accept_feature:
|
|
3308
3308
|
:param bool async_: Perform the request asynchronously
|
|
3309
3309
|
:return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
@@ -3331,22 +3331,22 @@ class SessionsApi(object):
|
|
|
3331
3331
|
This method makes a synchronous HTTP request by default.
|
|
3332
3332
|
|
|
3333
3333
|
:param str cid: (required)
|
|
3334
|
+
:param bool inflate_job:
|
|
3335
|
+
:param bool join_avatars:
|
|
3336
|
+
:param JoinType join:
|
|
3337
|
+
:param bool include_all_info: Include all info in returned objects
|
|
3334
3338
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
3335
3339
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3336
3340
|
:param int limit: The maximum number of entries to return.
|
|
3337
3341
|
:param int skip: The number of entries to skip.
|
|
3338
3342
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
3339
3343
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3340
|
-
:param bool inflate_job:
|
|
3341
|
-
:param bool join_avatars:
|
|
3342
|
-
:param JoinType join:
|
|
3343
|
-
:param bool include_all_info: Include all info in returned objects
|
|
3344
3344
|
:param list[str] x_accept_feature:
|
|
3345
3345
|
:param bool async_: Perform the request asynchronously
|
|
3346
3346
|
:return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
3347
3347
|
"""
|
|
3348
3348
|
|
|
3349
|
-
all_params = ['cid','
|
|
3349
|
+
all_params = ['cid','inflate_job','join_avatars','join','include_all_info','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
3350
3350
|
all_params.append('async_')
|
|
3351
3351
|
all_params.append('_return_http_data_only')
|
|
3352
3352
|
all_params.append('_preload_content')
|
|
@@ -3374,6 +3374,14 @@ class SessionsApi(object):
|
|
|
3374
3374
|
path_params['cid'] = params['cid'] # noqa: E501
|
|
3375
3375
|
|
|
3376
3376
|
query_params = []
|
|
3377
|
+
if 'inflate_job' in params:
|
|
3378
|
+
query_params.append(('inflate_job', params['inflate_job'])) # noqa: E501
|
|
3379
|
+
if 'join_avatars' in params:
|
|
3380
|
+
query_params.append(('join_avatars', params['join_avatars'])) # noqa: E501
|
|
3381
|
+
if 'join' in params:
|
|
3382
|
+
query_params.append(('join', params['join'])) # noqa: E501
|
|
3383
|
+
if 'include_all_info' in params:
|
|
3384
|
+
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
3377
3385
|
if 'filter' in params:
|
|
3378
3386
|
query_params.append(('filter', params['filter'])) # noqa: E501
|
|
3379
3387
|
if 'sort' in params:
|
|
@@ -3386,14 +3394,6 @@ class SessionsApi(object):
|
|
|
3386
3394
|
query_params.append(('page', params['page'])) # noqa: E501
|
|
3387
3395
|
if 'after_id' in params:
|
|
3388
3396
|
query_params.append(('after_id', params['after_id'])) # noqa: E501
|
|
3389
|
-
if 'inflate_job' in params:
|
|
3390
|
-
query_params.append(('inflate_job', params['inflate_job'])) # noqa: E501
|
|
3391
|
-
if 'join_avatars' in params:
|
|
3392
|
-
query_params.append(('join_avatars', params['join_avatars'])) # noqa: E501
|
|
3393
|
-
if 'join' in params:
|
|
3394
|
-
query_params.append(('join', params['join'])) # noqa: E501
|
|
3395
|
-
if 'include_all_info' in params:
|
|
3396
|
-
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
3397
3397
|
|
|
3398
3398
|
header_params = {}
|
|
3399
3399
|
if 'x_accept_feature' in params:
|
flywheel/api/site_api.py
CHANGED
|
@@ -620,13 +620,13 @@ class SiteApi(object):
|
|
|
620
620
|
Return a list of all providers on the site
|
|
621
621
|
This method makes a synchronous HTTP request by default.
|
|
622
622
|
|
|
623
|
+
:param ProviderClass _class: Limit the response to the given provider class
|
|
623
624
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
624
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
625
|
-
:param int limit: The maximum number of entries to return
|
|
626
|
-
:param int skip: The number of entries to skip
|
|
625
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
626
|
+
:param int limit: The maximum number of entries to return.
|
|
627
|
+
:param int skip: The number of entries to skip.
|
|
627
628
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
628
629
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
629
|
-
:param ProviderClass _class: Limit the response to the given provider class
|
|
630
630
|
:param bool async_: Perform the request asynchronously
|
|
631
631
|
:return: list[EgressProvider]
|
|
632
632
|
"""
|
|
@@ -652,18 +652,18 @@ class SiteApi(object):
|
|
|
652
652
|
Return a list of all providers on the site
|
|
653
653
|
This method makes a synchronous HTTP request by default.
|
|
654
654
|
|
|
655
|
+
:param ProviderClass _class: Limit the response to the given provider class
|
|
655
656
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
656
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
657
|
-
:param int limit: The maximum number of entries to return
|
|
658
|
-
:param int skip: The number of entries to skip
|
|
657
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
658
|
+
:param int limit: The maximum number of entries to return.
|
|
659
|
+
:param int skip: The number of entries to skip.
|
|
659
660
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
660
661
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
661
|
-
:param ProviderClass _class: Limit the response to the given provider class
|
|
662
662
|
:param bool async_: Perform the request asynchronously
|
|
663
663
|
:return: list[EgressProvider]
|
|
664
664
|
"""
|
|
665
665
|
|
|
666
|
-
all_params = ['filter','sort','limit','skip','page','after_id',
|
|
666
|
+
all_params = ['_class','filter','sort','limit','skip','page','after_id',] # noqa: E501
|
|
667
667
|
all_params.append('async_')
|
|
668
668
|
all_params.append('_return_http_data_only')
|
|
669
669
|
all_params.append('_preload_content')
|
|
@@ -685,6 +685,8 @@ class SiteApi(object):
|
|
|
685
685
|
path_params = {}
|
|
686
686
|
|
|
687
687
|
query_params = []
|
|
688
|
+
if '_class' in params:
|
|
689
|
+
query_params.append(('class', params['_class'])) # noqa: E501
|
|
688
690
|
if 'filter' in params:
|
|
689
691
|
query_params.append(('filter', params['filter'])) # noqa: E501
|
|
690
692
|
if 'sort' in params:
|
|
@@ -697,8 +699,6 @@ class SiteApi(object):
|
|
|
697
699
|
query_params.append(('page', params['page'])) # noqa: E501
|
|
698
700
|
if 'after_id' in params:
|
|
699
701
|
query_params.append(('after_id', params['after_id'])) # noqa: E501
|
|
700
|
-
if '_class' in params:
|
|
701
|
-
query_params.append(('class', params['_class'])) # noqa: E501
|
|
702
702
|
|
|
703
703
|
header_params = {}
|
|
704
704
|
|
flywheel/api/subjects_api.py
CHANGED
|
@@ -3256,16 +3256,16 @@ class SubjectsApi(object):
|
|
|
3256
3256
|
This method makes a synchronous HTTP request by default.
|
|
3257
3257
|
|
|
3258
3258
|
:param str cid: (required)
|
|
3259
|
+
:param bool inflate_job:
|
|
3260
|
+
:param bool join_avatars:
|
|
3261
|
+
:param JoinType join:
|
|
3262
|
+
:param bool include_all_info: Include all info in returned objects
|
|
3259
3263
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
3260
3264
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3261
3265
|
:param int limit: The maximum number of entries to return.
|
|
3262
3266
|
:param int skip: The number of entries to skip.
|
|
3263
3267
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
3264
3268
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3265
|
-
:param bool inflate_job:
|
|
3266
|
-
:param bool join_avatars:
|
|
3267
|
-
:param JoinType join:
|
|
3268
|
-
:param bool include_all_info: Include all info in returned objects
|
|
3269
3269
|
:param list[str] x_accept_feature:
|
|
3270
3270
|
:param bool async_: Perform the request asynchronously
|
|
3271
3271
|
:return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
@@ -3293,22 +3293,22 @@ class SubjectsApi(object):
|
|
|
3293
3293
|
This method makes a synchronous HTTP request by default.
|
|
3294
3294
|
|
|
3295
3295
|
:param str cid: (required)
|
|
3296
|
+
:param bool inflate_job:
|
|
3297
|
+
:param bool join_avatars:
|
|
3298
|
+
:param JoinType join:
|
|
3299
|
+
:param bool include_all_info: Include all info in returned objects
|
|
3296
3300
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
3297
3301
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3298
3302
|
:param int limit: The maximum number of entries to return.
|
|
3299
3303
|
:param int skip: The number of entries to skip.
|
|
3300
3304
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
3301
3305
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3302
|
-
:param bool inflate_job:
|
|
3303
|
-
:param bool join_avatars:
|
|
3304
|
-
:param JoinType join:
|
|
3305
|
-
:param bool include_all_info: Include all info in returned objects
|
|
3306
3306
|
:param list[str] x_accept_feature:
|
|
3307
3307
|
:param bool async_: Perform the request asynchronously
|
|
3308
3308
|
:return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
3309
3309
|
"""
|
|
3310
3310
|
|
|
3311
|
-
all_params = ['cid','
|
|
3311
|
+
all_params = ['cid','inflate_job','join_avatars','join','include_all_info','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
3312
3312
|
all_params.append('async_')
|
|
3313
3313
|
all_params.append('_return_http_data_only')
|
|
3314
3314
|
all_params.append('_preload_content')
|
|
@@ -3336,6 +3336,14 @@ class SubjectsApi(object):
|
|
|
3336
3336
|
path_params['cid'] = params['cid'] # noqa: E501
|
|
3337
3337
|
|
|
3338
3338
|
query_params = []
|
|
3339
|
+
if 'inflate_job' in params:
|
|
3340
|
+
query_params.append(('inflate_job', params['inflate_job'])) # noqa: E501
|
|
3341
|
+
if 'join_avatars' in params:
|
|
3342
|
+
query_params.append(('join_avatars', params['join_avatars'])) # noqa: E501
|
|
3343
|
+
if 'join' in params:
|
|
3344
|
+
query_params.append(('join', params['join'])) # noqa: E501
|
|
3345
|
+
if 'include_all_info' in params:
|
|
3346
|
+
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
3339
3347
|
if 'filter' in params:
|
|
3340
3348
|
query_params.append(('filter', params['filter'])) # noqa: E501
|
|
3341
3349
|
if 'sort' in params:
|
|
@@ -3348,14 +3356,6 @@ class SubjectsApi(object):
|
|
|
3348
3356
|
query_params.append(('page', params['page'])) # noqa: E501
|
|
3349
3357
|
if 'after_id' in params:
|
|
3350
3358
|
query_params.append(('after_id', params['after_id'])) # noqa: E501
|
|
3351
|
-
if 'inflate_job' in params:
|
|
3352
|
-
query_params.append(('inflate_job', params['inflate_job'])) # noqa: E501
|
|
3353
|
-
if 'join_avatars' in params:
|
|
3354
|
-
query_params.append(('join_avatars', params['join_avatars'])) # noqa: E501
|
|
3355
|
-
if 'join' in params:
|
|
3356
|
-
query_params.append(('join', params['join'])) # noqa: E501
|
|
3357
|
-
if 'include_all_info' in params:
|
|
3358
|
-
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
3359
3359
|
|
|
3360
3360
|
header_params = {}
|
|
3361
3361
|
if 'x_accept_feature' in params:
|