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/flywheel.py CHANGED
@@ -40,7 +40,7 @@ from flywheel.view_builder import ViewBuilder
40
40
  from flywheel.finder import Finder
41
41
  import flywheel.api
42
42
 
43
- SDK_VERSION = "19.4.0-rc4"
43
+ SDK_VERSION = "19.5.0-rc3"
44
44
 
45
45
  def config_from_api_key(api_key):
46
46
  parts = api_key.split(':')
@@ -607,16 +607,16 @@ class Flywheel:
607
607
  Returns analyses that directly belong to this resource.
608
608
 
609
609
  :param str cid: (required)
610
+ :param bool inflate_job:
611
+ :param bool join_avatars:
612
+ :param JoinType join:
613
+ :param bool include_all_info: Include all info in returned objects
610
614
  :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
611
615
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
612
616
  :param int limit: The maximum number of entries to return.
613
617
  :param int skip: The number of entries to skip.
614
618
  :param int page: The page number (i.e. skip limit*page entries)
615
619
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
616
- :param bool inflate_job:
617
- :param bool join_avatars:
618
- :param JoinType join:
619
- :param bool include_all_info: Include all info in returned objects
620
620
  :param list[str] x_accept_feature:
621
621
  :param bool async_: Perform the request asynchronously
622
622
  :return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
@@ -2366,16 +2366,16 @@ class Flywheel:
2366
2366
  Returns analyses that directly belong to this resource.
2367
2367
 
2368
2368
  :param str cid: (required)
2369
+ :param bool inflate_job:
2370
+ :param bool join_avatars:
2371
+ :param JoinType join:
2372
+ :param bool include_all_info: Include all info in returned objects
2369
2373
  :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
2370
2374
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
2371
2375
  :param int limit: The maximum number of entries to return.
2372
2376
  :param int skip: The number of entries to skip.
2373
2377
  :param int page: The page number (i.e. skip limit*page entries)
2374
2378
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
2375
- :param bool inflate_job:
2376
- :param bool join_avatars:
2377
- :param JoinType join:
2378
- :param bool include_all_info: Include all info in returned objects
2379
2379
  :param list[str] x_accept_feature:
2380
2380
  :param bool async_: Perform the request asynchronously
2381
2381
  :return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
@@ -2690,13 +2690,13 @@ class Flywheel:
2690
2690
  def get_all_saved_searches(self, **kwargs): # noqa: E501
2691
2691
  """Get Queries
2692
2692
 
2693
+ :param bool exhaustive: Return all queries, Admin only
2693
2694
  :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
2694
- :param str sort: The sort fields and order.(e.g. label:asc,created:desc)
2695
- :param int limit: The maximum number of entries to return
2696
- :param int skip: The number of entries to skip
2695
+ :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
2696
+ :param int limit: The maximum number of entries to return.
2697
+ :param int skip: The number of entries to skip.
2697
2698
  :param int page: The page number (i.e. skip limit*page entries)
2698
2699
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
2699
- :param bool exhaustive: Return all queries, Admin only
2700
2700
  :param list[str] x_accept_feature:
2701
2701
  :param bool async_: Perform the request asynchronously
2702
2702
  :return: union[list[SaveSearchOutput],SaveSearchPage]
@@ -2822,13 +2822,13 @@ class Flywheel:
2822
2822
 
2823
2823
  Requires login.
2824
2824
 
2825
+ :param bool join_keys: Return device key. Admins only
2825
2826
  :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
2826
- :param str sort: The sort fields and order.(e.g. label:asc,created:desc)
2827
- :param int limit: The maximum number of entries to return
2828
- :param int skip: The number of entries to skip
2827
+ :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
2828
+ :param int limit: The maximum number of entries to return.
2829
+ :param int skip: The number of entries to skip.
2829
2830
  :param int page: The page number (i.e. skip limit*page entries)
2830
2831
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
2831
- :param bool join_keys: Return device key. Admins only
2832
2832
  :param list[str] x_accept_feature:
2833
2833
  :param bool async_: Perform the request asynchronously
2834
2834
  :return: union[list[EgressDevice],EgressDevicePage]
@@ -3103,12 +3103,12 @@ class Flywheel:
3103
3103
 
3104
3104
  Get metadata of all current user files
3105
3105
 
3106
- :param str filter:
3107
- :param str sort:
3108
- :param int limit:
3109
- :param int skip:
3110
- :param int page:
3111
- :param str after_id:
3106
+ :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
3107
+ :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
3108
+ :param int limit: The maximum number of entries to return.
3109
+ :param int skip: The number of entries to skip.
3110
+ :param int page: The page number (i.e. skip limit*page entries)
3111
+ :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
3112
3112
  :param bool async_: Perform the request asynchronously
3113
3113
  :return: PageGenericFileOutput
3114
3114
  """
@@ -3290,8 +3290,8 @@ class Flywheel:
3290
3290
  :param int limit: The maximum number of entries to return.
3291
3291
  :param int skip: The number of entries to skip.
3292
3292
  :param int page: The page number (i.e. skip limit*page entries)
3293
- :param bool exhaustive: Set to return a complete list regardless of permissions
3294
3293
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
3294
+ :param bool exhaustive: Set to return a complete list regardless of permissions
3295
3295
  :param list[union[HeaderFeature,str]] x_accept_feature:
3296
3296
  :param bool async_: Perform the request asynchronously
3297
3297
  :return: union[list[GearDocument],Page]
@@ -3863,14 +3863,14 @@ class Flywheel:
3863
3863
  def get_all_jobs(self, **kwargs): # noqa: E501
3864
3864
  """Return all jobs
3865
3865
 
3866
+ :param bool include_parent_info: Include the parent info for the jobs
3867
+ :param bool include_all_info: Include all info in returned objects
3866
3868
  :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
3867
- :param str sort: The sort fields and order.(e.g. label:asc,created:desc)
3868
- :param int limit: The maximum number of entries to return
3869
- :param int skip: The number of entries to skip
3869
+ :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
3870
+ :param int limit: The maximum number of entries to return.
3871
+ :param int skip: The number of entries to skip.
3870
3872
  :param int page: The page number (i.e. skip limit*page entries)
3871
3873
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
3872
- :param bool include_parent_info: Include the parent info for the jobs
3873
- :param bool include_all_info: Include all info in returned objects
3874
3874
  :param list[str] x_accept_feature:
3875
3875
  :param bool async_: Perform the request asynchronously
3876
3876
  :return: union[list[JobListOutput],Page]
@@ -4061,10 +4061,10 @@ class Flywheel:
4061
4061
 
4062
4062
  Requires login.
4063
4063
 
4064
- :param str filter: The filter to apply. (e.g. description=my-desc,active:true)
4065
- :param str sort: The sort fields and order.(e.g. description:asc,active:desc)
4066
- :param int limit: The maximum number of entries to return
4067
- :param int skip: The number of entries to skip
4064
+ :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
4065
+ :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
4066
+ :param int limit: The maximum number of entries to return.
4067
+ :param int skip: The number of entries to skip.
4068
4068
  :param int page: The page number (i.e. skip limit*page entries)
4069
4069
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
4070
4070
  :param list[str] x_accept_feature:
@@ -4215,9 +4215,9 @@ class Flywheel:
4215
4215
 
4216
4216
  :param str search_string: Include only results containing the search string
4217
4217
  :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
4218
- :param str sort: The sort fields and order.(e.g. label:asc,created:desc)
4219
- :param int limit: The maximum number of entries to return
4220
- :param int skip: The number of entries to skip
4218
+ :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
4219
+ :param int limit: The maximum number of entries to return.
4220
+ :param int skip: The number of entries to skip.
4221
4221
  :param int page: The page number (i.e. skip limit*page entries)
4222
4222
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
4223
4223
  :param list[union[HeaderFeature,str]] x_accept_feature:
@@ -4568,18 +4568,18 @@ class Flywheel:
4568
4568
  def get_all_projects(self, **kwargs): # noqa: E501
4569
4569
  """Get a list of projects
4570
4570
 
4571
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
4572
- :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
4573
- :param int limit: The maximum number of entries to return.
4574
- :param int skip: The number of entries to skip.
4575
- :param int page: The page number (i.e. skip limit*page entries)
4576
- :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
4577
4571
  :param bool counts: Append the count of subjects in each project
4578
4572
  :param bool stats: Return the status of subjects and sessions in each project
4579
4573
  :param bool join_avatars: Return the joined avatars of the permissions
4580
4574
  :param JoinType join:
4581
4575
  :param bool exhaustive: Set to return a complete list regardless of permissions
4582
4576
  :param bool include_all_info: Include all info in returned objects
4577
+ :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
4578
+ :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
4579
+ :param int limit: The maximum number of entries to return.
4580
+ :param int skip: The number of entries to skip.
4581
+ :param int page: The page number (i.e. skip limit*page entries)
4582
+ :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
4583
4583
  :param list[union[HeaderFeature,str]] x_accept_feature:
4584
4584
  :param bool async_: Perform the request asynchronously
4585
4585
  :return: union[list[ProjectListOutput],Page]
@@ -4590,13 +4590,13 @@ class Flywheel:
4590
4590
  def get_all_projects_groups(self, **kwargs): # noqa: E501
4591
4591
  """List all groups which have a project in them
4592
4592
 
4593
+ :param bool exhaustive: returns exhaustive list if correct permissions
4593
4594
  :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
4594
- :param str sort: The sort fields and order.(e.g. label:asc,created:desc)
4595
- :param int limit: The maximum number of entries to return
4596
- :param int skip: The number of entries to skip
4595
+ :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
4596
+ :param int limit: The maximum number of entries to return.
4597
+ :param int skip: The number of entries to skip.
4597
4598
  :param int page: The page number (i.e. skip limit*page entries)
4598
4599
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
4599
- :param bool exhaustive: returns exhaustive list if correct permissions
4600
4600
  :param list[str] x_accept_feature:
4601
4601
  :param bool async_: Perform the request asynchronously
4602
4602
  :return: list[GroupOutput]
@@ -4630,16 +4630,16 @@ class Flywheel:
4630
4630
  """List all acquisitions for the given project.
4631
4631
 
4632
4632
  :param str project_id: (required)
4633
+ :param str collection_id:
4634
+ :param bool exhaustive:
4635
+ :param JoinType join:
4636
+ :param bool include_all_info: Include all info in returned objects
4633
4637
  :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
4634
4638
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
4635
4639
  :param int limit: The maximum number of entries to return.
4636
4640
  :param int skip: The number of entries to skip.
4637
4641
  :param int page: The page number (i.e. skip limit*page entries)
4638
4642
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
4639
- :param str collection_id:
4640
- :param bool exhaustive:
4641
- :param JoinType join:
4642
- :param bool include_all_info: Include all info in returned objects
4643
4643
  :param list[str] x_accept_feature:
4644
4644
  :param bool async_: Perform the request asynchronously
4645
4645
  :return: union[list[AcquisitionListOutput],Page]
@@ -4653,16 +4653,16 @@ class Flywheel:
4653
4653
  Returns analyses that directly belong to this resource.
4654
4654
 
4655
4655
  :param str cid: (required)
4656
+ :param bool inflate_job:
4657
+ :param bool join_avatars:
4658
+ :param JoinType join:
4659
+ :param bool include_all_info: Include all info in returned objects
4656
4660
  :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
4657
4661
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
4658
4662
  :param int limit: The maximum number of entries to return.
4659
4663
  :param int skip: The number of entries to skip.
4660
4664
  :param int page: The page number (i.e. skip limit*page entries)
4661
4665
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
4662
- :param bool inflate_job:
4663
- :param bool join_avatars:
4664
- :param JoinType join:
4665
- :param bool include_all_info: Include all info in returned objects
4666
4666
  :param list[str] x_accept_feature:
4667
4667
  :param bool async_: Perform the request asynchronously
4668
4668
  :return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
@@ -4774,14 +4774,14 @@ class Flywheel:
4774
4774
  List all subjects for the given project.
4775
4775
 
4776
4776
  :param str project_id: (required)
4777
+ :param JoinType join:
4778
+ :param bool include_all_info: Include all info in returned objects
4777
4779
  :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
4778
4780
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
4779
4781
  :param int limit: The maximum number of entries to return.
4780
4782
  :param int skip: The number of entries to skip.
4781
4783
  :param int page: The page number (i.e. skip limit*page entries)
4782
4784
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
4783
- :param JoinType join:
4784
- :param bool include_all_info: Include all info in returned objects
4785
4785
  :param list[str] x_accept_feature:
4786
4786
  :param bool async_: Perform the request asynchronously
4787
4787
  :return: union[Page,list[SubjectOutputForList]]
@@ -5297,9 +5297,9 @@ class Flywheel:
5297
5297
  """Get list of all roles
5298
5298
 
5299
5299
  :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
5300
- :param str sort: The sort fields and order.(e.g. label:asc,created:desc)
5301
- :param int limit: The maximum number of entries to return
5302
- :param int skip: The number of entries to skip
5300
+ :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
5301
+ :param int limit: The maximum number of entries to return.
5302
+ :param int skip: The number of entries to skip.
5303
5303
  :param int page: The page number (i.e. skip limit*page entries)
5304
5304
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
5305
5305
  :param list[str] x_accept_feature:
@@ -5791,16 +5791,16 @@ class Flywheel:
5791
5791
  Returns analyses that directly belong to this resource.
5792
5792
 
5793
5793
  :param str cid: (required)
5794
+ :param bool inflate_job:
5795
+ :param bool join_avatars:
5796
+ :param JoinType join:
5797
+ :param bool include_all_info: Include all info in returned objects
5794
5798
  :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
5795
5799
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
5796
5800
  :param int limit: The maximum number of entries to return.
5797
5801
  :param int skip: The number of entries to skip.
5798
5802
  :param int page: The page number (i.e. skip limit*page entries)
5799
5803
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
5800
- :param bool inflate_job:
5801
- :param bool join_avatars:
5802
- :param JoinType join:
5803
- :param bool include_all_info: Include all info in returned objects
5804
5804
  :param list[str] x_accept_feature:
5805
5805
  :param bool async_: Perform the request asynchronously
5806
5806
  :return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
@@ -6115,13 +6115,13 @@ class Flywheel:
6115
6115
 
6116
6116
  Return a list of all providers on the site
6117
6117
 
6118
+ :param ProviderClass _class: Limit the response to the given provider class
6118
6119
  :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
6119
- :param str sort: The sort fields and order.(e.g. label:asc,created:desc)
6120
- :param int limit: The maximum number of entries to return
6121
- :param int skip: The number of entries to skip
6120
+ :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
6121
+ :param int limit: The maximum number of entries to return.
6122
+ :param int skip: The number of entries to skip.
6122
6123
  :param int page: The page number (i.e. skip limit*page entries)
6123
6124
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
6124
- :param ProviderClass _class: Limit the response to the given provider class
6125
6125
  :param bool async_: Perform the request asynchronously
6126
6126
  :return: list[EgressProvider]
6127
6127
  """
@@ -6663,16 +6663,16 @@ class Flywheel:
6663
6663
  Returns analyses that directly belong to this resource.
6664
6664
 
6665
6665
  :param str cid: (required)
6666
+ :param bool inflate_job:
6667
+ :param bool join_avatars:
6668
+ :param JoinType join:
6669
+ :param bool include_all_info: Include all info in returned objects
6666
6670
  :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
6667
6671
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
6668
6672
  :param int limit: The maximum number of entries to return.
6669
6673
  :param int skip: The number of entries to skip.
6670
6674
  :param int page: The page number (i.e. skip limit*page entries)
6671
6675
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
6672
- :param bool inflate_job:
6673
- :param bool join_avatars:
6674
- :param JoinType join:
6675
- :param bool include_all_info: Include all info in returned objects
6676
6676
  :param list[str] x_accept_feature:
6677
6677
  :param bool async_: Perform the request asynchronously
6678
6678
  :return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
@@ -7129,9 +7129,9 @@ class Flywheel:
7129
7129
  Gets all users with pagination Args:
7130
7130
 
7131
7131
  :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
7132
- :param str sort: The sort fields and order.(e.g. label:asc,created:desc)
7133
- :param int limit: The maximum number of entries to return
7134
- :param int skip: The number of entries to skip
7132
+ :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
7133
+ :param int limit: The maximum number of entries to return.
7134
+ :param int skip: The number of entries to skip.
7135
7135
  :param int page: The page number (i.e. skip limit*page entries)
7136
7136
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
7137
7137
  :param list[str] x_accept_feature:
@@ -7182,13 +7182,13 @@ class Flywheel:
7182
7182
  Gets jobs assigned to user with optional gear name regex Args: gear_name (str): name of gear to filter by auth_session (AuthSession): session from incoming request Returns: list: List of jobs linked to the user
7183
7183
 
7184
7184
  :param str gear: Gear name. Get only the jobs which are related to a specific gear.
7185
+ :param bool exhaustive:
7185
7186
  :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
7186
7187
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
7187
7188
  :param int limit: The maximum number of entries to return.
7188
7189
  :param int skip: The number of entries to skip.
7189
7190
  :param int page: The page number (i.e. skip limit*page entries)
7190
7191
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
7191
- :param bool exhaustive:
7192
7192
  :param list[str] x_accept_feature:
7193
7193
  :param bool async_: Perform the request asynchronously
7194
7194
  :return: UserJobs
@@ -7215,14 +7215,14 @@ class Flywheel:
7215
7215
  Get all acquisitions that belong to the given user.
7216
7216
 
7217
7217
  :param str uid: (required)
7218
+ :param bool exhaustive: Set to return a complete list regardless of permissions
7219
+ :param bool include_all_info: Include all info in returned objects
7218
7220
  :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
7219
7221
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
7220
7222
  :param int limit: The maximum number of entries to return.
7221
7223
  :param int skip: The number of entries to skip.
7222
7224
  :param int page: The page number (i.e. skip limit*page entries)
7223
- :param bool exhaustive: Set to return a complete list regardless of permissions
7224
7225
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
7225
- :param bool include_all_info: Include all info in returned objects
7226
7226
  :param bool async_: Perform the request asynchronously
7227
7227
  :return: list[AcquisitionListOutput]
7228
7228
  """
@@ -7246,12 +7246,12 @@ class Flywheel:
7246
7246
  """Get all collections that belong to the given user.
7247
7247
 
7248
7248
  :param str user_id: (required)
7249
- :param str filter:
7250
- :param str sort:
7251
- :param int limit:
7252
- :param int skip:
7253
- :param int page:
7254
- :param str after_id:
7249
+ :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
7250
+ :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
7251
+ :param int limit: The maximum number of entries to return.
7252
+ :param int skip: The number of entries to skip.
7253
+ :param int page: The page number (i.e. skip limit*page entries)
7254
+ :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
7255
7255
  :param list[str] x_accept_feature:
7256
7256
  :param bool async_: Perform the request asynchronously
7257
7257
  :return: union[list[CollectionWithStats],list[CollectionOutput],Page]
@@ -7283,14 +7283,14 @@ class Flywheel:
7283
7283
  Get all projects that belong to the given user.
7284
7284
 
7285
7285
  :param str uid: (required)
7286
+ :param bool exhaustive: Set to return a complete list regardless of permissions
7287
+ :param bool include_all_info: Include all info in returned objects
7286
7288
  :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
7287
7289
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
7288
7290
  :param int limit: The maximum number of entries to return.
7289
7291
  :param int skip: The number of entries to skip.
7290
7292
  :param int page: The page number (i.e. skip limit*page entries)
7291
7293
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
7292
- :param bool exhaustive: Set to return a complete list regardless of permissions
7293
- :param bool include_all_info: Include all info in returned objects
7294
7294
  :param bool async_: Perform the request asynchronously
7295
7295
  :return: list[ProjectListOutput]
7296
7296
  """
@@ -7303,14 +7303,14 @@ class Flywheel:
7303
7303
  Get all sessions that belong to the given user.
7304
7304
 
7305
7305
  :param str uid: (required)
7306
- :param str filter:
7307
- :param str sort:
7308
- :param int limit:
7309
- :param int skip:
7310
- :param int page:
7311
- :param str after_id:
7312
7306
  :param bool exhaustive:
7313
7307
  :param bool include_all_info: Include all info in returned objects
7308
+ :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
7309
+ :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
7310
+ :param int limit: The maximum number of entries to return.
7311
+ :param int skip: The number of entries to skip.
7312
+ :param int page: The page number (i.e. skip limit*page entries)
7313
+ :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
7314
7314
  :param bool async_: Perform the request asynchronously
7315
7315
  :return: list[SessionListOutput]
7316
7316
  """
@@ -6,7 +6,7 @@
6
6
 
7
7
  Flywheel: API for data import, automated curation, image processing, machine learning workflows, and secure collaboration. # noqa: E501
8
8
 
9
- OpenAPI spec version: 19.4.0-rc4
9
+ OpenAPI spec version: 19.5.0-rc3
10
10
 
11
11
  Generated by: https://github.com/swagger-api/swagger-codegen.git
12
12
  """
@@ -21,20 +21,49 @@ import six
21
21
  class WorkInProgressFeatures(object):
22
22
 
23
23
  swagger_types = {
24
+ 'smart_copy_exc_empty': 'bool'
24
25
  }
25
26
 
26
27
  attribute_map = {
28
+ 'smart_copy_exc_empty': 'smart_copy_exc_empty'
27
29
  }
28
30
 
29
31
  rattribute_map = {
32
+ 'smart_copy_exc_empty': 'smart_copy_exc_empty'
30
33
  }
31
34
 
32
- def __init__(self): # noqa: E501
35
+ def __init__(self, smart_copy_exc_empty=False): # noqa: E501
33
36
  """WorkInProgressFeatures - a model defined in Swagger"""
34
37
  super(WorkInProgressFeatures, self).__init__()
38
+
39
+ self._smart_copy_exc_empty = None
35
40
  self.discriminator = None
36
41
  self.alt_discriminator = None
37
42
 
43
+ if smart_copy_exc_empty is not None:
44
+ self.smart_copy_exc_empty = smart_copy_exc_empty
45
+
46
+ @property
47
+ def smart_copy_exc_empty(self):
48
+ """Gets the smart_copy_exc_empty of this WorkInProgressFeatures.
49
+
50
+
51
+ :return: The smart_copy_exc_empty of this WorkInProgressFeatures.
52
+ :rtype: bool
53
+ """
54
+ return self._smart_copy_exc_empty
55
+
56
+ @smart_copy_exc_empty.setter
57
+ def smart_copy_exc_empty(self, smart_copy_exc_empty):
58
+ """Sets the smart_copy_exc_empty of this WorkInProgressFeatures.
59
+
60
+
61
+ :param smart_copy_exc_empty: The smart_copy_exc_empty of this WorkInProgressFeatures. # noqa: E501
62
+ :type: bool
63
+ """
64
+
65
+ self._smart_copy_exc_empty = smart_copy_exc_empty
66
+
38
67
 
39
68
  @staticmethod
40
69
  def positional_to_model(value):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: flywheel-sdk
3
- Version: 19.4.0rc4
3
+ Version: 19.5.0rc3
4
4
  Summary: Flywheel SDK
5
5
  Home-page:
6
6
  Author-email: support@flywheel.io
@@ -1,18 +1,18 @@
1
1
  flywheel/__init__.py,sha256=LE9B1Aey0HGrusRPQc8yTl105-kI9h5yEqxUL6CrQzE,44975
2
- flywheel/api_client.py,sha256=9nGSIk2uzO8ZY6e9f2J7JkHlsvB2ps9wc-yl4f33ZbM,29574
2
+ flywheel/api_client.py,sha256=cvLdUTq6wzMBehCDpocnIHWImBrxRDgsYLJPg1m_txY,29574
3
3
  flywheel/client.py,sha256=LMvn2aSdtn-waCpXzux8FKJxEB0469SJg5ZNnB5BqTc,10476
4
- flywheel/configuration.py,sha256=SdZd_qgDwfyQTd4-VREnA4Jbj0cVEXA1TzYOMr7FDDw,8647
4
+ flywheel/configuration.py,sha256=8FOCQkEpN289AC8AAQu39gq5xiuT4r_PFP-kfC1xeXU,8647
5
5
  flywheel/drone_login.py,sha256=8nELIBYBJMuPHQ0zdrGjWB20C3OTZbxpFVyxWmQ0kr0,2229
6
6
  flywheel/file_spec.py,sha256=0BnFgyH0qsDxuupJG5_g9LX2cLq7JxRiSODN3HdI-ak,2220
7
7
  flywheel/finder.py,sha256=ueECCweO48TTAJXudzh3xBbqyhV-Vbzt1NnPUSqEU9U,6739
8
- flywheel/flywheel.py,sha256=OSHXfav1sXgrRD6fn6KiJYI6HDJj5rUnyEbogHptnBU,394141
8
+ flywheel/flywheel.py,sha256=uK1rG3IurRv1us_0NPFiRNppM949M33-pnVDCOV7Elw,395089
9
9
  flywheel/gear_context.py,sha256=cFJs8cC_on6v184HVUTXSSVS9y5ee73QN0lCkPTQ5jk,13701
10
10
  flywheel/partial_reader.py,sha256=SkMgwaGZeeVaN7f9dzmVitBFnQv8ARLJgEaQP36l92s,1222
11
11
  flywheel/rest.py,sha256=hRPcmGLghBkiZ06jyFEE39iEdP0-6o4pDWj2Ocl7mSc,13119
12
12
  flywheel/util.py,sha256=_97fv5qRvxvSFi1eHsli4VszoOBhYMhtC26hz_ukrEA,2198
13
13
  flywheel/view_builder.py,sha256=0hGDvjiljUuyuHezawx-TSO5Nv885No6rGf3lb3qvxo,17758
14
14
  flywheel/api/__init__.py,sha256=S0erMpSONSRh8RUbADUNnAczZwUhe-Lt9s8E4TMGH5M,1760
15
- flywheel/api/acquisitions_api.py,sha256=GeT0jYnOTfKgxYQZzMWDccnh7nNN7wLjLl5N0i6mVPw,213201
15
+ flywheel/api/acquisitions_api.py,sha256=Kjc5jdEQlXUyn3aH6-I2bqoDVlxfXANzcoVysVQMZ6Y,213201
16
16
  flywheel/api/analyses_api.py,sha256=0MqBGFQukb-Mm542MOS-Fc764XnkeyNsnin9OcXEFcU,117699
17
17
  flywheel/api/audit_trail_api.py,sha256=dFinVdTCqO1TsCoRndTT1qqV61J2FWMyYS2FqQwqP54,21492
18
18
  flywheel/api/auth_api.py,sha256=w6wscqpCv-Rc9n9Q1KogyeaByM9YhiDNl4upvErV674,3703
@@ -21,32 +21,32 @@ flywheel/api/bulk_api.py,sha256=kSIQUYBHS37yDKdM1TMNYNLhXTrIkfTYznRhtVuEUS0,4776
21
21
  flywheel/api/change_log_api.py,sha256=Nln-mDIsCRLcsDCBDo8e9sYv1jTCf6ql_JX9SfP5-ds,10003
22
22
  flywheel/api/collections_api.py,sha256=pufAm_gzR6doPFhrMqLYOl_v3m3yPt3klgpa69IPInc,165385
23
23
  flywheel/api/config_api.py,sha256=rBURhYVyT22BpOjDIQ_2iJ3UOnfspgjowQnz2cKND_s,9584
24
- flywheel/api/containers_api.py,sha256=0Qk4DKa7m_xXBjTP5iCoSCfSnXkUd3v-SAgXNvruwvs,202808
24
+ flywheel/api/containers_api.py,sha256=2Dzb0Xmc_SUbHf2HUFGTnhLen_p-yqhPnkqtsvj4h0M,202808
25
25
  flywheel/api/data_view_executions_api.py,sha256=vdQ3vRbebC2InZp0s7WUMGxJjRiq_aaXLrYIHi2lk4s,21544
26
- flywheel/api/dataexplorer_api.py,sha256=nxNB0E_1VcOceyms6GdiS5o-UT0OlShSwuxOCL7hnAM,37588
27
- flywheel/api/devices_api.py,sha256=jAQ9IRm0fqJWHuJwhTKmOIDAVNNjfdVCSIX2XvRl2hk,39374
26
+ flywheel/api/dataexplorer_api.py,sha256=Qqu916GYB1oMYLshp6zagQtaszkAFGrbT6RnmNyRhLU,37594
27
+ flywheel/api/devices_api.py,sha256=BXJt_dJdVQ94We1EYdmrCziAb6OerBGg7IkUlJVQDHk,39380
28
28
  flywheel/api/dimse_api.py,sha256=rTPcy5CTFFnpx1YWSuhsWMNjW4c9nTV85Q8EY1QcGN8,29974
29
29
  flywheel/api/download_api.py,sha256=fFOA8DgRq1yknYQ6YZC26fcaZDhGIDnGuWMjvYD_Ans,10590
30
- flywheel/api/files_api.py,sha256=SMg9KJ0OvvTERQATxp9SMs2cy_15aC7f2S3S0f6Iasw,57308
31
- flywheel/api/gears_api.py,sha256=7vlmbJtmaVBnPoI3BRPc3EoQ28raVZh0x-5TobeTqcI,73128
30
+ flywheel/api/files_api.py,sha256=fE8KWWhCsp79I5c8FqVoei6dh5YMnvbtjhZxo8aaK-I,57924
31
+ flywheel/api/gears_api.py,sha256=Pu1bWBrlDgXHDsgsyIOJxPl2_6oxQvtm2JVaVOJ667c,73128
32
32
  flywheel/api/groups_api.py,sha256=XplP1S_fo9zVDrLTZpv0dXzzbnMnNumxfJpk-Tfoy9I,113596
33
- flywheel/api/jobs_api.py,sha256=mTmT5f-okDhkRREK0pf72w-s39t5Qrbw8MTGkeCeD7c,73957
33
+ flywheel/api/jobs_api.py,sha256=VMu1r6k1gng9Sg1b0IlDaIfC1A7rvdqn3gHVXXd39-k,73963
34
34
  flywheel/api/jupyterlab_servers_api.py,sha256=FiwtzKL6SClFXiBnzbf5dtjHCjonMQ3jB7FHlrFNGQM,9180
35
- flywheel/api/modalities_api.py,sha256=upQC0IB11zP08V2j0zXrd0b9A0xwr-u9pQNrOCO9N-U,20862
35
+ flywheel/api/modalities_api.py,sha256=GyqCWO1_iQ7RUgvKD6KeAOrPx6O7Q3XxxGsqksBBJEM,20862
36
36
  flywheel/api/packfiles_api.py,sha256=3IQHwnmjCYBw7L4gJIxnZwpGdIT6LqEZPb-eIHG3t8o,3847
37
- flywheel/api/projects_api.py,sha256=amilMHMUk4Xu-gn4cF5a-sQfzHy3aSj0HLxVnUCLHK8,330402
37
+ flywheel/api/projects_api.py,sha256=sTEl6wNlMUJokkik_PwYcTQ4Cy4AtjrtzjRRH9312A0,330414
38
38
  flywheel/api/reports_api.py,sha256=6WW5CroopwNrw6GBE0_R34stBWbyqUXgRoyiHkAAZE4,36251
39
39
  flywheel/api/resolve_api.py,sha256=6yuXytZnhpFBPz0x5TN1B57jtRn9kuSqth6WtXWSYaw,11603
40
- flywheel/api/roles_api.py,sha256=ncA8ys7TC6Z_ciwzRR-uZZ_hsUAAl5oVDVjZIqfg7HA,20692
41
- flywheel/api/sessions_api.py,sha256=z-fEXycHuwP5jWZAw2BZUvCb-5OSjKEgG-oNv2j0Mj4,223474
42
- flywheel/api/site_api.py,sha256=IrcUYtt57L446ggUu_tx-sYqm92JWFGGjNY1uWiFIS0,57373
43
- flywheel/api/subjects_api.py,sha256=B1mE8d5A60NlAJ4vJ7zHoTs3CYr0WgEARuPUtISmH_A,227081
40
+ flywheel/api/roles_api.py,sha256=2FQCdRZgg-bZDVP8Nv4JOb4UYMbGcX0Cstc3x6Cff1Y,20698
41
+ flywheel/api/sessions_api.py,sha256=zABPloe1ISaKyGVC8SqzUyrw-YHm4zaeJ-6j2W08_y0,223474
42
+ flywheel/api/site_api.py,sha256=6skw2iKO5JAO9AVaTJZCuusBaECbuFDMiiPKE8tIHHY,57379
43
+ flywheel/api/subjects_api.py,sha256=oRhSwCZFr8bXeCw3JNkpHVlI_1JrGWIMA09KwNX4Ae8,227081
44
44
  flywheel/api/tree_api.py,sha256=NZ_1QbOIhPodTqx82nmgPvLfxCB7NwmTf7oPgzxgEbI,12337
45
45
  flywheel/api/uids_api.py,sha256=mFStWRKbdgymR_FYDHq8EsOiTfDKjz2XEcWT1XQUYtQ,4946
46
46
  flywheel/api/upload_api.py,sha256=emrzAmurhGb-uBI7Ewckbn5DyP9LBkfn6OI1zxhKnb8,38540
47
- flywheel/api/users_api.py,sha256=N55F-pGzIYHYpL3S-qEze1irvOn2SQvlea54RnlJKIg,84158
47
+ flywheel/api/users_api.py,sha256=-eAz4T9PEhvG0OEOOos3BXLGxs7C8tcI8IjKXknNGEA,85396
48
48
  flywheel/api/views_api.py,sha256=ZbPYA_sOQ9qnOjkOUeioV0v08VPbsuuOnMP3EBySEVY,44375
49
- flywheel/models/__init__.py,sha256=_ZTIlNnd_ci8YBxocXCM1OZxKXFj0tsPOOepfEeDu78,42855
49
+ flywheel/models/__init__.py,sha256=HJ5TYbWkv6zYpc-ItYE0zf_f0LTZ9aun5Q2qqvY7MeY,42855
50
50
  flywheel/models/access_level.py,sha256=zSgO2gWTTSo-p1v49ilz3Q5ZizZ7DESA5P6Ur67fgX0,575
51
51
  flywheel/models/access_permission.py,sha256=-IYmy-yb8zecmGZx7iE0bhZW7PvuWpm3zAHr2FwCyLI,5336
52
52
  flywheel/models/access_permission_output.py,sha256=faCnvyMYozmSVSlLFYMdJw84hQc3ugxx7LH2JzBfnoE,5202
@@ -703,11 +703,11 @@ flywheel/models/viewer_app_input.py,sha256=J20oeUcH8dkS1zo012sSA0aQazg4rP_RmEqyq
703
703
  flywheel/models/viewer_app_type.py,sha256=J7J_3DXnQz19w1D7AmCEWs8VFK0jTLBa2nCPG5Gzn2E,569
704
704
  flywheel/models/virus_scan.py,sha256=ZZJEwnQ7nkubX4qmQq-qkUPgJp-AvdYqAukxnDRrTp4,4553
705
705
  flywheel/models/virus_scan_state.py,sha256=zBmk7x3ZoDhEozIeD-Gw7CEkU7yWYKFMFXklLdTeu3s,602
706
- flywheel/models/work_in_progress_features.py,sha256=dZ_cJTztcU3wPIUKptwZzb7hdv9mo27wXfWgolkJa1k,3944
706
+ flywheel/models/work_in_progress_features.py,sha256=SwsL3txqMpIBJKrv52ljFshaPkxURMaRE9UCzfjfCDc,4912
707
707
  flywheel/models/zipfile_info.py,sha256=8ivqs0rTQaiC8KirTaK_WqSGkLvCndI_58dylOBKwa4,5243
708
708
  flywheel/models/zipfile_member_info.py,sha256=zAg9wRUeYXbz6bvXdo4xYFHtvv9eRSCjvyaTrQ3zvN4,6346
709
- flywheel_sdk-19.4.0rc4.dist-info/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
710
- flywheel_sdk-19.4.0rc4.dist-info/METADATA,sha256=N2JMObZrFu7hadM-_qwnkrJBlUXncHMe_Lxp0hYA_AA,958
711
- flywheel_sdk-19.4.0rc4.dist-info/WHEEL,sha256=pxeNX5JdtCe58PUSYP9upmc7jdRPgvT0Gm9kb1SHlVw,109
712
- flywheel_sdk-19.4.0rc4.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
713
- flywheel_sdk-19.4.0rc4.dist-info/RECORD,,
709
+ flywheel_sdk-19.5.0rc3.dist-info/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
710
+ flywheel_sdk-19.5.0rc3.dist-info/METADATA,sha256=BnLuhUwNEM1WJWtlxeBPGPs1GFl_X22eiGZYI2ZE8kc,958
711
+ flywheel_sdk-19.5.0rc3.dist-info/WHEEL,sha256=pxeNX5JdtCe58PUSYP9upmc7jdRPgvT0Gm9kb1SHlVw,109
712
+ flywheel_sdk-19.5.0rc3.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
713
+ flywheel_sdk-19.5.0rc3.dist-info/RECORD,,