flywheel-sdk 21.2.0rc0__py3-none-any.whl → 21.3.0__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.
Files changed (46) hide show
  1. flywheel/__init__.py +1 -0
  2. flywheel/api/acquisitions_api.py +4 -4
  3. flywheel/api/analyses_api.py +2 -2
  4. flywheel/api/audit_trail_api.py +2 -2
  5. flywheel/api/collections_api.py +8 -8
  6. flywheel/api/containers_api.py +4 -4
  7. flywheel/api/custom_filters_api.py +2 -2
  8. flywheel/api/data_view_executions_api.py +2 -2
  9. flywheel/api/dataexplorer_api.py +2 -2
  10. flywheel/api/devices_api.py +5 -5
  11. flywheel/api/files_api.py +2 -2
  12. flywheel/api/form_responses_api.py +2 -2
  13. flywheel/api/gears_api.py +2 -2
  14. flywheel/api/groups_api.py +4 -4
  15. flywheel/api/jobs_api.py +2 -2
  16. flywheel/api/modalities_api.py +2 -2
  17. flywheel/api/projects_api.py +14 -14
  18. flywheel/api/protocols_api.py +2 -2
  19. flywheel/api/reports_api.py +2 -2
  20. flywheel/api/roles_api.py +2 -2
  21. flywheel/api/sessions_api.py +8 -8
  22. flywheel/api/site_api.py +2 -2
  23. flywheel/api/staffing_pools_api.py +2 -2
  24. flywheel/api/subjects_api.py +6 -6
  25. flywheel/api/tasks_api.py +6 -10
  26. flywheel/api/tree_api.py +2 -2
  27. flywheel/api/users_api.py +14 -14
  28. flywheel/api_client.py +1 -1
  29. flywheel/configuration.py +2 -2
  30. flywheel/flywheel.py +53 -53
  31. flywheel/models/__init__.py +1 -0
  32. flywheel/models/container_type.py +2 -0
  33. flywheel/models/core_workflows_form_responses_models_form_parents.py +139 -4
  34. flywheel/models/custom_field.py +4 -4
  35. flywheel/models/features.py +124 -97
  36. flywheel/models/project_container_output.py +1 -0
  37. flywheel/models/project_group_info.py +190 -0
  38. flywheel/models/project_list_output.py +31 -1
  39. flywheel/models/project_node.py +1 -0
  40. flywheel/models/project_output.py +31 -1
  41. flywheel/models/protocol.py +32 -4
  42. flywheel/models/search_parent_project.py +1 -0
  43. {flywheel_sdk-21.2.0rc0.dist-info → flywheel_sdk-21.3.0.dist-info}/METADATA +3 -2
  44. {flywheel_sdk-21.2.0rc0.dist-info → flywheel_sdk-21.3.0.dist-info}/RECORD +46 -45
  45. {flywheel_sdk-21.2.0rc0.dist-info → flywheel_sdk-21.3.0.dist-info}/WHEEL +1 -1
  46. {flywheel_sdk-21.2.0rc0.dist-info → flywheel_sdk-21.3.0.dist-info}/licenses/LICENSE.txt +0 -0
@@ -2831,7 +2831,7 @@ class SessionsApi(object):
2831
2831
  :param JoinType join: join file origins
2832
2832
  :param bool include_all_info: Include all info in returned objects
2833
2833
  :param str user_id:
2834
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
2834
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
2835
2835
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
2836
2836
  :param int limit: The maximum number of entries to return.
2837
2837
  :param int skip: The number of entries to skip.
@@ -2868,7 +2868,7 @@ class SessionsApi(object):
2868
2868
  :param JoinType join: join file origins
2869
2869
  :param bool include_all_info: Include all info in returned objects
2870
2870
  :param str user_id:
2871
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
2871
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
2872
2872
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
2873
2873
  :param int limit: The maximum number of entries to return.
2874
2874
  :param int skip: The number of entries to skip.
@@ -3079,7 +3079,7 @@ class SessionsApi(object):
3079
3079
  :param bool exhaustive:
3080
3080
  :param JoinType join:
3081
3081
  :param bool include_all_info: Include all info in returned objects
3082
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
3082
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
3083
3083
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
3084
3084
  :param int limit: The maximum number of entries to return.
3085
3085
  :param int skip: The number of entries to skip.
@@ -3116,7 +3116,7 @@ class SessionsApi(object):
3116
3116
  :param bool exhaustive:
3117
3117
  :param JoinType join:
3118
3118
  :param bool include_all_info: Include all info in returned objects
3119
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
3119
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
3120
3120
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
3121
3121
  :param int limit: The maximum number of entries to return.
3122
3122
  :param int skip: The number of entries to skip.
@@ -3221,7 +3221,7 @@ class SessionsApi(object):
3221
3221
  :param bool join_avatars:
3222
3222
  :param JoinType join:
3223
3223
  :param bool include_all_info: Include all info in returned objects
3224
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
3224
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
3225
3225
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
3226
3226
  :param int limit: The maximum number of entries to return.
3227
3227
  :param int skip: The number of entries to skip.
@@ -3258,7 +3258,7 @@ class SessionsApi(object):
3258
3258
  :param bool join_avatars:
3259
3259
  :param JoinType join:
3260
3260
  :param bool include_all_info: Include all info in returned objects
3261
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
3261
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
3262
3262
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
3263
3263
  :param int limit: The maximum number of entries to return.
3264
3264
  :param int skip: The number of entries to skip.
@@ -3584,7 +3584,7 @@ class SessionsApi(object):
3584
3584
  :param list[str] states: filter results by job state
3585
3585
  :param list[str] tags: filter results by job tags
3586
3586
  :param bool include_all_info: Include all info in returned objects
3587
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
3587
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
3588
3588
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
3589
3589
  :param int limit: The maximum number of entries to return.
3590
3590
  :param int skip: The number of entries to skip.
@@ -3620,7 +3620,7 @@ class SessionsApi(object):
3620
3620
  :param list[str] states: filter results by job state
3621
3621
  :param list[str] tags: filter results by job tags
3622
3622
  :param bool include_all_info: Include all info in returned objects
3623
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
3623
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
3624
3624
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
3625
3625
  :param int limit: The maximum number of entries to return.
3626
3626
  :param int skip: The number of entries to skip.
flywheel/api/site_api.py CHANGED
@@ -628,7 +628,7 @@ class SiteApi(object):
628
628
  This method makes a synchronous HTTP request by default.
629
629
 
630
630
  :param ProviderClass _class: Limit the response to the given provider class
631
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
631
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
632
632
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
633
633
  :param int limit: The maximum number of entries to return.
634
634
  :param int skip: The number of entries to skip.
@@ -660,7 +660,7 @@ class SiteApi(object):
660
660
  This method makes a synchronous HTTP request by default.
661
661
 
662
662
  :param ProviderClass _class: Limit the response to the given provider class
663
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
663
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
664
664
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
665
665
  :param int limit: The maximum number of entries to return.
666
666
  :param int skip: The number of entries to skip.
@@ -241,7 +241,7 @@ class StaffingPoolsApi(object):
241
241
 
242
242
  This method makes a synchronous HTTP request by default.
243
243
 
244
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
244
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
245
245
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
246
246
  :param int limit: The maximum number of entries to return.
247
247
  :param int skip: The number of entries to skip.
@@ -271,7 +271,7 @@ class StaffingPoolsApi(object):
271
271
 
272
272
  This method makes a synchronous HTTP request by default.
273
273
 
274
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
274
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
275
275
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
276
276
  :param int limit: The maximum number of entries to return.
277
277
  :param int skip: The number of entries to skip.
@@ -2938,7 +2938,7 @@ class SubjectsApi(object):
2938
2938
  :param JoinType join: join file origins
2939
2939
  :param bool join_avatars: add name and avatar to notes
2940
2940
  :param bool include_all_info: Include all info in returned objects
2941
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
2941
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
2942
2942
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
2943
2943
  :param int limit: The maximum number of entries to return.
2944
2944
  :param int skip: The number of entries to skip.
@@ -2974,7 +2974,7 @@ class SubjectsApi(object):
2974
2974
  :param JoinType join: join file origins
2975
2975
  :param bool join_avatars: add name and avatar to notes
2976
2976
  :param bool include_all_info: Include all info in returned objects
2977
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
2977
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
2978
2978
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
2979
2979
  :param int limit: The maximum number of entries to return.
2980
2980
  :param int skip: The number of entries to skip.
@@ -3183,7 +3183,7 @@ class SubjectsApi(object):
3183
3183
  :param bool join_avatars:
3184
3184
  :param JoinType join:
3185
3185
  :param bool include_all_info: Include all info in returned objects
3186
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
3186
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
3187
3187
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
3188
3188
  :param int limit: The maximum number of entries to return.
3189
3189
  :param int skip: The number of entries to skip.
@@ -3220,7 +3220,7 @@ class SubjectsApi(object):
3220
3220
  :param bool join_avatars:
3221
3221
  :param JoinType join:
3222
3222
  :param bool include_all_info: Include all info in returned objects
3223
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
3223
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
3224
3224
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
3225
3225
  :param int limit: The maximum number of entries to return.
3226
3226
  :param int skip: The number of entries to skip.
@@ -3650,7 +3650,7 @@ class SubjectsApi(object):
3650
3650
  :param str subject_id: 24-char hex subject id (required)
3651
3651
  :param JoinType join: join file origins
3652
3652
  :param bool include_all_info: Include all info in returned objects
3653
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
3653
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
3654
3654
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
3655
3655
  :param int limit: The maximum number of entries to return.
3656
3656
  :param int skip: The number of entries to skip.
@@ -3685,7 +3685,7 @@ class SubjectsApi(object):
3685
3685
  :param str subject_id: 24-char hex subject id (required)
3686
3686
  :param JoinType join: join file origins
3687
3687
  :param bool include_all_info: Include all info in returned objects
3688
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
3688
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
3689
3689
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
3690
3690
  :param int limit: The maximum number of entries to return.
3691
3691
  :param int skip: The number of entries to skip.
flywheel/api/tasks_api.py CHANGED
@@ -255,14 +255,14 @@ class TasksApi(object):
255
255
  _request_out=params.get('_request_out'),
256
256
  collection_formats=collection_formats)
257
257
 
258
- def complete_reader_task(self, task_id, body, **kwargs): # noqa: E501
258
+ def complete_reader_task(self, task_id, **kwargs): # noqa: E501
259
259
  """Complete
260
260
 
261
261
  Complete a reader task.
262
262
  This method makes a synchronous HTTP request by default.
263
263
 
264
264
  :param str task_id: (required)
265
- :param TaskSubmission body: (required)
265
+ :param TaskSubmission body:
266
266
  :param bool async_: Perform the request asynchronously
267
267
  :return: ReaderTask
268
268
  """
@@ -270,9 +270,9 @@ class TasksApi(object):
270
270
  kwargs['_return_http_data_only'] = True
271
271
 
272
272
  if kwargs.get('async_'):
273
- return self.complete_reader_task_with_http_info(task_id, body, **kwargs) # noqa: E501
273
+ return self.complete_reader_task_with_http_info(task_id, **kwargs) # noqa: E501
274
274
  else:
275
- (data) = self.complete_reader_task_with_http_info(task_id, body, **kwargs) # noqa: E501
275
+ (data) = self.complete_reader_task_with_http_info(task_id, **kwargs) # noqa: E501
276
276
  if (
277
277
  data
278
278
  and hasattr(data, 'return_value')
@@ -282,14 +282,14 @@ class TasksApi(object):
282
282
  return data
283
283
 
284
284
 
285
- def complete_reader_task_with_http_info(self, task_id, body, **kwargs): # noqa: E501
285
+ def complete_reader_task_with_http_info(self, task_id, **kwargs): # noqa: E501
286
286
  """Complete
287
287
 
288
288
  Complete a reader task.
289
289
  This method makes a synchronous HTTP request by default.
290
290
 
291
291
  :param str task_id: (required)
292
- :param TaskSubmission body: (required)
292
+ :param TaskSubmission body:
293
293
  :param bool async_: Perform the request asynchronously
294
294
  :return: ReaderTask
295
295
  """
@@ -314,10 +314,6 @@ class TasksApi(object):
314
314
  if ('task_id' not in params or
315
315
  params['task_id'] is None):
316
316
  raise ValueError("Missing the required parameter `task_id` when calling `complete_reader_task`") # noqa: E501
317
- # verify the required parameter 'body' is set
318
- if ('body' not in params or
319
- params['body'] is None):
320
- raise ValueError("Missing the required parameter `body` when calling `complete_reader_task`") # noqa: E501
321
317
  check_filename_params(params)
322
318
 
323
319
  collection_formats = {}
flywheel/api/tree_api.py CHANGED
@@ -40,7 +40,7 @@ class TreeApi(object):
40
40
  :param GraphFilter body: (required)
41
41
  :param bool exhaustive:
42
42
  :param bool include_all_info: Include all info in returned objects
43
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
43
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
44
44
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
45
45
  :param int limit: The maximum number of entries to return.
46
46
  :param int skip: The number of entries to skip.
@@ -75,7 +75,7 @@ class TreeApi(object):
75
75
  :param GraphFilter body: (required)
76
76
  :param bool exhaustive:
77
77
  :param bool include_all_info: Include all info in returned objects
78
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
78
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
79
79
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
80
80
  :param int limit: The maximum number of entries to return.
81
81
  :param int skip: The number of entries to skip.
flywheel/api/users_api.py CHANGED
@@ -445,7 +445,7 @@ class UsersApi(object):
445
445
  Gets all users with pagination Args:
446
446
  This method makes a synchronous HTTP request by default.
447
447
 
448
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
448
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
449
449
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
450
450
  :param int limit: The maximum number of entries to return.
451
451
  :param int skip: The number of entries to skip.
@@ -477,7 +477,7 @@ class UsersApi(object):
477
477
  Gets all users with pagination Args:
478
478
  This method makes a synchronous HTTP request by default.
479
479
 
480
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
480
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
481
481
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
482
482
  :param int limit: The maximum number of entries to return.
483
483
  :param int skip: The number of entries to skip.
@@ -840,7 +840,7 @@ class UsersApi(object):
840
840
 
841
841
  :param str gear: Gear name. Get only the jobs which are related to a specific gear.
842
842
  :param bool exhaustive:
843
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
843
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
844
844
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
845
845
  :param int limit: The maximum number of entries to return.
846
846
  :param int skip: The number of entries to skip.
@@ -874,7 +874,7 @@ class UsersApi(object):
874
874
 
875
875
  :param str gear: Gear name. Get only the jobs which are related to a specific gear.
876
876
  :param bool exhaustive:
877
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
877
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
878
878
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
879
879
  :param int limit: The maximum number of entries to return.
880
880
  :param int skip: The number of entries to skip.
@@ -1068,7 +1068,7 @@ class UsersApi(object):
1068
1068
  :param str uid: (required)
1069
1069
  :param bool exhaustive: Set to return a complete list regardless of permissions
1070
1070
  :param bool include_all_info: Include all info in returned objects
1071
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
1071
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
1072
1072
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
1073
1073
  :param int limit: The maximum number of entries to return.
1074
1074
  :param int skip: The number of entries to skip.
@@ -1102,7 +1102,7 @@ class UsersApi(object):
1102
1102
  :param str uid: (required)
1103
1103
  :param bool exhaustive: Set to return a complete list regardless of permissions
1104
1104
  :param bool include_all_info: Include all info in returned objects
1105
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
1105
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
1106
1106
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
1107
1107
  :param int limit: The maximum number of entries to return.
1108
1108
  :param int skip: The number of entries to skip.
@@ -1295,7 +1295,7 @@ class UsersApi(object):
1295
1295
  This method makes a synchronous HTTP request by default.
1296
1296
 
1297
1297
  :param str user_id: (required)
1298
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
1298
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
1299
1299
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
1300
1300
  :param int limit: The maximum number of entries to return.
1301
1301
  :param int skip: The number of entries to skip.
@@ -1327,7 +1327,7 @@ class UsersApi(object):
1327
1327
  This method makes a synchronous HTTP request by default.
1328
1328
 
1329
1329
  :param str user_id: (required)
1330
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
1330
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
1331
1331
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
1332
1332
  :param int limit: The maximum number of entries to return.
1333
1333
  :param int skip: The number of entries to skip.
@@ -1420,7 +1420,7 @@ class UsersApi(object):
1420
1420
 
1421
1421
  :param str uid: (required)
1422
1422
  :param bool exhaustive: Set to return a complete list regardless of permissions
1423
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
1423
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
1424
1424
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
1425
1425
  :param int limit: The maximum number of entries to return.
1426
1426
  :param int skip: The number of entries to skip.
@@ -1453,7 +1453,7 @@ class UsersApi(object):
1453
1453
 
1454
1454
  :param str uid: (required)
1455
1455
  :param bool exhaustive: Set to return a complete list regardless of permissions
1456
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
1456
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
1457
1457
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
1458
1458
  :param int limit: The maximum number of entries to return.
1459
1459
  :param int skip: The number of entries to skip.
@@ -1550,7 +1550,7 @@ class UsersApi(object):
1550
1550
  :param str uid: (required)
1551
1551
  :param bool exhaustive: Set to return a complete list regardless of permissions
1552
1552
  :param bool include_all_info: Include all info in returned objects
1553
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
1553
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
1554
1554
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
1555
1555
  :param int limit: The maximum number of entries to return.
1556
1556
  :param int skip: The number of entries to skip.
@@ -1584,7 +1584,7 @@ class UsersApi(object):
1584
1584
  :param str uid: (required)
1585
1585
  :param bool exhaustive: Set to return a complete list regardless of permissions
1586
1586
  :param bool include_all_info: Include all info in returned objects
1587
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
1587
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
1588
1588
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
1589
1589
  :param int limit: The maximum number of entries to return.
1590
1590
  :param int skip: The number of entries to skip.
@@ -1679,7 +1679,7 @@ class UsersApi(object):
1679
1679
  :param str uid: (required)
1680
1680
  :param bool exhaustive:
1681
1681
  :param bool include_all_info: Include all info in returned objects
1682
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
1682
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
1683
1683
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
1684
1684
  :param int limit: The maximum number of entries to return.
1685
1685
  :param int skip: The number of entries to skip.
@@ -1713,7 +1713,7 @@ class UsersApi(object):
1713
1713
  :param str uid: (required)
1714
1714
  :param bool exhaustive:
1715
1715
  :param bool include_all_info: Include all info in returned objects
1716
- :param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
1716
+ :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
1717
1717
  :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
1718
1718
  :param int limit: The maximum number of entries to return.
1719
1719
  :param int skip: The number of entries to skip.
flywheel/api_client.py CHANGED
@@ -84,7 +84,7 @@ class ApiClient(object):
84
84
  self.default_query_params = []
85
85
  self.cookie = cookie
86
86
  # Set default User-Agent.
87
- self.user_agent = 'Swagger-Codegen/21.2.0-rc0/python'
87
+ self.user_agent = 'Swagger-Codegen/21.3.0/python'
88
88
  self.last_response = None
89
89
  self._version_check_fn = None
90
90
  self._context = context
flywheel/configuration.py CHANGED
@@ -253,8 +253,8 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
253
253
  return "Python SDK Debug Report:\n"\
254
254
  "OS: {env}\n"\
255
255
  "Python Version: {pyversion}\n"\
256
- "Version of the API: 21.2.0-rc0\n"\
257
- "SDK Package Version: 21.2.0-rc0".\
256
+ "Version of the API: 21.3.0\n"\
257
+ "SDK Package Version: 21.3.0".\
258
258
  format(env=sys.platform, pyversion=sys.version)
259
259
 
260
260
  def enable_message_cutoff(self, message_cutoff):