flywheel-sdk 17.8.0__py2.py3-none-any.whl → 18.0.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.
Files changed (53) hide show
  1. flywheel/__init__.py +1 -0
  2. flywheel/api/acquisitions_api.py +39 -39
  3. flywheel/api/analyses_api.py +22 -22
  4. flywheel/api/audit_trail_api.py +5 -5
  5. flywheel/api/auth_api.py +1 -1
  6. flywheel/api/batch_api.py +6 -6
  7. flywheel/api/bulk_api.py +1 -1
  8. flywheel/api/change_log_api.py +2 -2
  9. flywheel/api/collections_api.py +32 -32
  10. flywheel/api/config_api.py +3 -3
  11. flywheel/api/containers_api.py +39 -39
  12. flywheel/api/data_view_executions_api.py +5 -5
  13. flywheel/api/dataexplorer_api.py +9 -9
  14. flywheel/api/devices_api.py +10 -10
  15. flywheel/api/dimse_api.py +8 -8
  16. flywheel/api/download_api.py +2 -2
  17. flywheel/api/files_api.py +11 -11
  18. flywheel/api/gears_api.py +17 -17
  19. flywheel/api/groups_api.py +24 -24
  20. flywheel/api/jobs_api.py +19 -19
  21. flywheel/api/modalities_api.py +5 -5
  22. flywheel/api/packfiles_api.py +1 -1
  23. flywheel/api/projects_api.py +65 -65
  24. flywheel/api/reports_api.py +14 -10
  25. flywheel/api/resolve_api.py +2 -2
  26. flywheel/api/roles_api.py +5 -5
  27. flywheel/api/sessions_api.py +41 -41
  28. flywheel/api/site_api.py +14 -14
  29. flywheel/api/subjects_api.py +42 -42
  30. flywheel/api/tree_api.py +2 -2
  31. flywheel/api/uids_api.py +1 -1
  32. flywheel/api/upload_api.py +6 -6
  33. flywheel/api/users_api.py +19 -19
  34. flywheel/api/views_api.py +9 -9
  35. flywheel/api/workspaces_api.py +2 -2
  36. flywheel/api_client.py +1 -1
  37. flywheel/configuration.py +1 -1
  38. flywheel/flywheel.py +2 -1
  39. flywheel/models/__init__.py +1 -0
  40. flywheel/models/container_type.py +1 -0
  41. flywheel/models/features.py +58 -4
  42. flywheel/models/ingress_site_settings.py +4 -4
  43. flywheel/models/job_list_output.py +2 -1
  44. flywheel/models/job_output_config.py +31 -4
  45. flywheel/models/project_settings_input.py +4 -4
  46. flywheel/models/search_subject_response.py +62 -4
  47. flywheel/models/viewer_app.py +27 -1
  48. flywheel/models/viewer_app_input.py +380 -0
  49. {flywheel_sdk-17.8.0.dist-info → flywheel_sdk-18.0.0.dist-info}/METADATA +1 -1
  50. {flywheel_sdk-17.8.0.dist-info → flywheel_sdk-18.0.0.dist-info}/RECORD +53 -52
  51. {flywheel_sdk-17.8.0.dist-info → flywheel_sdk-18.0.0.dist-info}/LICENSE.txt +0 -0
  52. {flywheel_sdk-17.8.0.dist-info → flywheel_sdk-18.0.0.dist-info}/WHEEL +0 -0
  53. {flywheel_sdk-17.8.0.dist-info → flywheel_sdk-18.0.0.dist-info}/top_level.txt +0 -0
flywheel/__init__.py CHANGED
@@ -706,6 +706,7 @@ from flywheel.models.version_output import VersionOutput
706
706
  from flywheel.models.view_id_output import ViewIdOutput
707
707
  from flywheel.models.view_output import ViewOutput
708
708
  from flywheel.models.viewer_app import ViewerApp
709
+ from flywheel.models.viewer_app_input import ViewerAppInput
709
710
  from flywheel.models.viewer_app_type import ViewerAppType
710
711
  from flywheel.models.virus_scan import VirusScan
711
712
  from flywheel.models.virus_scan_state import VirusScanState
@@ -63,7 +63,7 @@ class AcquisitionsApi(object):
63
63
  This method makes a synchronous HTTP request by default.
64
64
 
65
65
  :param AcquisitionInput body: (required)
66
- :param bool async: Perform the request asynchronously
66
+ :param bool async_: Perform the request asynchronously
67
67
  :return: InsertedId
68
68
  """
69
69
 
@@ -174,7 +174,7 @@ class AcquisitionsApi(object):
174
174
  :param str cid: (required)
175
175
  :param union[AdhocAnalysisInput,JobAnalysisInput] body: (required)
176
176
  :param bool job: returns job_id instead of analysis.id
177
- :param bool async: Perform the request asynchronously
177
+ :param bool async_: Perform the request asynchronously
178
178
  :return: InsertedId
179
179
  """
180
180
 
@@ -293,7 +293,7 @@ class AcquisitionsApi(object):
293
293
  :param str container_id: 24-char hex id (required)
294
294
  :param str analysis_id: 24-char hex analysis id (required)
295
295
  :param NoteInput body: note content (required)
296
- :param bool async: Perform the request asynchronously
296
+ :param bool async_: Perform the request asynchronously
297
297
  :return: Note
298
298
  """
299
299
 
@@ -412,7 +412,7 @@ class AcquisitionsApi(object):
412
412
 
413
413
  :param str container_id: (required)
414
414
  :param NoteInput body: (required)
415
- :param bool async: Perform the request asynchronously
415
+ :param bool async_: Perform the request asynchronously
416
416
  :return: Note
417
417
  """
418
418
 
@@ -527,7 +527,7 @@ class AcquisitionsApi(object):
527
527
 
528
528
  :param str cid: (required)
529
529
  :param Tag body: (required)
530
- :param bool async: Perform the request asynchronously
530
+ :param bool async_: Perform the request asynchronously
531
531
  :return: ModifiedResult
532
532
  """
533
533
 
@@ -642,7 +642,7 @@ class AcquisitionsApi(object):
642
642
 
643
643
  :param str cid: (required)
644
644
  :param list[str] body: (required)
645
- :param bool async: Perform the request asynchronously
645
+ :param bool async_: Perform the request asynchronously
646
646
  :return: None
647
647
  """
648
648
 
@@ -750,7 +750,7 @@ class AcquisitionsApi(object):
750
750
 
751
751
  :param str acquisition_id: (required)
752
752
  :param ContainerDeleteReason delete_reason: Provide a reason for the deletion
753
- :param bool async: Perform the request asynchronously
753
+ :param bool async_: Perform the request asynchronously
754
754
  :return: DeletedResult
755
755
  """
756
756
 
@@ -852,7 +852,7 @@ class AcquisitionsApi(object):
852
852
  :param str cid: (required)
853
853
  :param str analysis_id: (required)
854
854
  :param ContainerDeleteReason delete_reason: Provide a reason for the deletion
855
- :param bool async: Perform the request asynchronously
855
+ :param bool async_: Perform the request asynchronously
856
856
  :return: DeletedResult
857
857
  """
858
858
 
@@ -960,7 +960,7 @@ class AcquisitionsApi(object):
960
960
  :param str cid: 24-char hex id (required)
961
961
  :param str analysis_id: 24-char hex analysis id (required)
962
962
  :param str note_id: 24-char hex note id (required)
963
- :param bool async: Perform the request asynchronously
963
+ :param bool async_: Perform the request asynchronously
964
964
  :return: DeletedResult
965
965
  """
966
966
 
@@ -1074,7 +1074,7 @@ class AcquisitionsApi(object):
1074
1074
  :param str filename: (required)
1075
1075
  :param ContainerDeleteReason delete_reason: A reason for deletion when audit-trail is enabled
1076
1076
  :param bool force: Force deletion of the file even if some checks fail
1077
- :param bool async: Perform the request asynchronously
1077
+ :param bool async_: Perform the request asynchronously
1078
1078
  :return: DeletedResult
1079
1079
  """
1080
1080
 
@@ -1182,7 +1182,7 @@ class AcquisitionsApi(object):
1182
1182
 
1183
1183
  :param str cid: (required)
1184
1184
  :param str note_id: (required)
1185
- :param bool async: Perform the request asynchronously
1185
+ :param bool async_: Perform the request asynchronously
1186
1186
  :return: DeletedResult
1187
1187
  """
1188
1188
 
@@ -1286,7 +1286,7 @@ class AcquisitionsApi(object):
1286
1286
 
1287
1287
  :param str cid: (required)
1288
1288
  :param str value: The tag to interact with (required)
1289
- :param bool async: Perform the request asynchronously
1289
+ :param bool async_: Perform the request asynchronously
1290
1290
  :return: DeletedResult
1291
1291
  """
1292
1292
 
@@ -1390,7 +1390,7 @@ class AcquisitionsApi(object):
1390
1390
 
1391
1391
  :param str cid: (required)
1392
1392
  :param list[str] body: (required)
1393
- :param bool async: Perform the request asynchronously
1393
+ :param bool async_: Perform the request asynchronously
1394
1394
  :return: None
1395
1395
  """
1396
1396
 
@@ -1512,7 +1512,7 @@ class AcquisitionsApi(object):
1512
1512
  :param str hash: file hash for comparison
1513
1513
  :param str range: byte ranges to return
1514
1514
  :param list[str] x_accept_feature: redirect header
1515
- :param bool async: Perform the request asynchronously
1515
+ :param bool async_: Perform the request asynchronously
1516
1516
  :return: union[DownloadTicketStub,ZipfileInfo]
1517
1517
  """
1518
1518
 
@@ -1647,7 +1647,7 @@ class AcquisitionsApi(object):
1647
1647
  :param str hash: file hash for comparison
1648
1648
  :param str range: byte ranges to return
1649
1649
  :param list[str] x_accept_feature: redirect header
1650
- :param bool async: Perform the request asynchronously
1650
+ :param bool async_: Perform the request asynchronously
1651
1651
  :return: FileZipInfo
1652
1652
  """
1653
1653
 
@@ -1786,7 +1786,7 @@ class AcquisitionsApi(object):
1786
1786
  :param str hash: file hash for comparison
1787
1787
  :param str range: byte ranges to return
1788
1788
  :param list[str] x_accept_feature: redirect header
1789
- :param bool async: Perform the request asynchronously
1789
+ :param bool async_: Perform the request asynchronously
1790
1790
  :return: union[DownloadTicketStub,ZipfileInfo]
1791
1791
  """
1792
1792
 
@@ -1919,7 +1919,7 @@ class AcquisitionsApi(object):
1919
1919
  :param bool view: feature flag for view/download
1920
1920
  :param str range: byte ranges to return
1921
1921
  :param list[str] x_accept_feature: redirect header
1922
- :param bool async: Perform the request asynchronously
1922
+ :param bool async_: Perform the request asynchronously
1923
1923
  :return: union[DownloadTicketStub,ZipfileInfo]
1924
1924
  """
1925
1925
 
@@ -2054,7 +2054,7 @@ class AcquisitionsApi(object):
2054
2054
  :param bool view: feature flag for view/download
2055
2055
  :param str range: byte ranges to return
2056
2056
  :param list[str] x_accept_feature: redirect header
2057
- :param bool async: Perform the request asynchronously
2057
+ :param bool async_: Perform the request asynchronously
2058
2058
  :return: FileZipInfo
2059
2059
  """
2060
2060
 
@@ -2193,7 +2193,7 @@ class AcquisitionsApi(object):
2193
2193
  :param bool view: feature flag for view/download
2194
2194
  :param str range: byte ranges to return
2195
2195
  :param list[str] x_accept_feature: redirect header
2196
- :param bool async: Perform the request asynchronously
2196
+ :param bool async_: Perform the request asynchronously
2197
2197
  :return: union[DownloadTicketStub,ZipfileInfo]
2198
2198
  """
2199
2199
 
@@ -2328,7 +2328,7 @@ class AcquisitionsApi(object):
2328
2328
  :param bool view: feature flag for view/download
2329
2329
  :param str range: byte ranges to return
2330
2330
  :param list[str] x_accept_feature: redirect header
2331
- :param bool async: Perform the request asynchronously
2331
+ :param bool async_: Perform the request asynchronously
2332
2332
  :return: union[DownloadTicketStub,ZipfileInfo]
2333
2333
  """
2334
2334
 
@@ -2463,7 +2463,7 @@ class AcquisitionsApi(object):
2463
2463
  :param bool view: feature flag for view/download
2464
2464
  :param str range: byte ranges to return
2465
2465
  :param list[str] x_accept_feature: redirect header
2466
- :param bool async: Perform the request asynchronously
2466
+ :param bool async_: Perform the request asynchronously
2467
2467
  :return: FileZipInfo
2468
2468
  """
2469
2469
 
@@ -2602,7 +2602,7 @@ class AcquisitionsApi(object):
2602
2602
  :param bool view: feature flag for view/download
2603
2603
  :param str range: byte ranges to return
2604
2604
  :param list[str] x_accept_feature: redirect header
2605
- :param bool async: Perform the request asynchronously
2605
+ :param bool async_: Perform the request asynchronously
2606
2606
  :return: union[DownloadTicketStub,ZipfileInfo]
2607
2607
  """
2608
2608
 
@@ -2729,7 +2729,7 @@ class AcquisitionsApi(object):
2729
2729
  :param JoinType join:
2730
2730
  :param bool join_avatars: add name and avatar to notes
2731
2731
  :param list[union[HeaderFeature,string]] x_accept_feature:
2732
- :param bool async: Perform the request asynchronously
2732
+ :param bool async_: Perform the request asynchronously
2733
2733
  :return: AcquisitionOutput
2734
2734
  """
2735
2735
 
@@ -2852,7 +2852,7 @@ class AcquisitionsApi(object):
2852
2852
  :param bool join_avatars:
2853
2853
  :param JoinType join:
2854
2854
  :param list[str] x_accept_feature:
2855
- :param bool async: Perform the request asynchronously
2855
+ :param bool async_: Perform the request asynchronously
2856
2856
  :return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
2857
2857
  """
2858
2858
 
@@ -2977,7 +2977,7 @@ class AcquisitionsApi(object):
2977
2977
  :param bool inflate_job: Return job as an object instead of an id
2978
2978
  :param bool join_avatars:
2979
2979
  :param JoinType join:
2980
- :param bool async: Perform the request asynchronously
2980
+ :param bool async_: Perform the request asynchronously
2981
2981
  :return: union[AnalysisOutputInflatedJob,AnalysisOutput]
2982
2982
  """
2983
2983
 
@@ -3087,7 +3087,7 @@ class AcquisitionsApi(object):
3087
3087
 
3088
3088
  :param str cid: (required)
3089
3089
  :param str filename: (required)
3090
- :param bool async: Perform the request asynchronously
3090
+ :param bool async_: Perform the request asynchronously
3091
3091
  :return: FileOutput
3092
3092
  """
3093
3093
 
@@ -3191,7 +3191,7 @@ class AcquisitionsApi(object):
3191
3191
 
3192
3192
  :param str cid: (required)
3193
3193
  :param str note_id: (required)
3194
- :param bool async: Perform the request asynchronously
3194
+ :param bool async_: Perform the request asynchronously
3195
3195
  :return: Note
3196
3196
  """
3197
3197
 
@@ -3295,7 +3295,7 @@ class AcquisitionsApi(object):
3295
3295
 
3296
3296
  :param str cid: (required)
3297
3297
  :param str value: The tag to interact with (required)
3298
- :param bool async: Perform the request asynchronously
3298
+ :param bool async_: Perform the request asynchronously
3299
3299
  :return: str
3300
3300
  """
3301
3301
 
@@ -3417,7 +3417,7 @@ class AcquisitionsApi(object):
3417
3417
  :param int page: The page number (i.e. skip limit*page entries)
3418
3418
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
3419
3419
  :param list[union[HeaderFeature,string]] x_accept_feature:
3420
- :param bool async: Perform the request asynchronously
3420
+ :param bool async_: Perform the request asynchronously
3421
3421
  :return: union[list[AcquisitionListOutput],Page]
3422
3422
  """
3423
3423
 
@@ -3532,7 +3532,7 @@ class AcquisitionsApi(object):
3532
3532
 
3533
3533
  :param str acquisition_id: (required)
3534
3534
  :param AcquisitionModifyInput body: (required)
3535
- :param bool async: Perform the request asynchronously
3535
+ :param bool async_: Perform the request asynchronously
3536
3536
  :return: ModifiedResult
3537
3537
  """
3538
3538
 
@@ -3649,7 +3649,7 @@ class AcquisitionsApi(object):
3649
3649
  :param str cid: (required)
3650
3650
  :param str analysis_id: (required)
3651
3651
  :param AnalysisModifyInput body: (required)
3652
- :param bool async: Perform the request asynchronously
3652
+ :param bool async_: Perform the request asynchronously
3653
3653
  :return: ModifiedResult
3654
3654
  """
3655
3655
 
@@ -3772,7 +3772,7 @@ class AcquisitionsApi(object):
3772
3772
  :param str cid: (required)
3773
3773
  :param str filename: (required)
3774
3774
  :param FileModifyInput body: (required)
3775
- :param bool async: Perform the request asynchronously
3775
+ :param bool async_: Perform the request asynchronously
3776
3776
  :return: ModifiedResult
3777
3777
  """
3778
3778
 
@@ -3895,7 +3895,7 @@ class AcquisitionsApi(object):
3895
3895
  :param str cid: (required)
3896
3896
  :param str filename: (required)
3897
3897
  :param FileClassificationDelta body: (required)
3898
- :param bool async: Perform the request asynchronously
3898
+ :param bool async_: Perform the request asynchronously
3899
3899
  :return: ModifiedResult
3900
3900
  """
3901
3901
 
@@ -4018,7 +4018,7 @@ class AcquisitionsApi(object):
4018
4018
  :param str cid: (required)
4019
4019
  :param str filename: (required)
4020
4020
  :param Info body: (required)
4021
- :param bool async: Perform the request asynchronously
4021
+ :param bool async_: Perform the request asynchronously
4022
4022
  :return: ModifiedResult
4023
4023
  """
4024
4024
 
@@ -4139,7 +4139,7 @@ class AcquisitionsApi(object):
4139
4139
 
4140
4140
  :param str cid: (required)
4141
4141
  :param Info body: (required)
4142
- :param bool async: Perform the request asynchronously
4142
+ :param bool async_: Perform the request asynchronously
4143
4143
  :return: ModifiedResult
4144
4144
  """
4145
4145
 
@@ -4256,7 +4256,7 @@ class AcquisitionsApi(object):
4256
4256
  :param str cid: (required)
4257
4257
  :param str note_id: (required)
4258
4258
  :param NoteInput body: (required)
4259
- :param bool async: Perform the request asynchronously
4259
+ :param bool async_: Perform the request asynchronously
4260
4260
  :return: int
4261
4261
  """
4262
4262
 
@@ -4379,7 +4379,7 @@ class AcquisitionsApi(object):
4379
4379
  :param str cid: (required)
4380
4380
  :param str value: The tag to interact with (required)
4381
4381
  :param Tag body: (required)
4382
- :param bool async: Perform the request asynchronously
4382
+ :param bool async_: Perform the request asynchronously
4383
4383
  :return: str
4384
4384
  """
4385
4385
 
@@ -4512,7 +4512,7 @@ class AcquisitionsApi(object):
4512
4512
  :param str metadata: Metadata object as a JSON-encoded string
4513
4513
  :param list[str] x_accept_feature: redirect header
4514
4514
  :param str content_type:
4515
- :param bool async: Perform the request asynchronously
4515
+ :param bool async_: Perform the request asynchronously
4516
4516
  :return: union[list[FileOutput],UploadTicketOutput]
4517
4517
  """
4518
4518
 
@@ -4647,7 +4647,7 @@ class AcquisitionsApi(object):
4647
4647
  :param str id:
4648
4648
  :param str job:
4649
4649
  :param str content_type:
4650
- :param bool async: Perform the request asynchronously
4650
+ :param bool async_: Perform the request asynchronously
4651
4651
  :return: list[FileOutput]
4652
4652
  """
4653
4653
 
@@ -65,7 +65,7 @@ class AnalysesApi(object):
65
65
 
66
66
  :param str container_id: Container id (required)
67
67
  :param NoteInput body: note content (required)
68
- :param bool async: Perform the request asynchronously
68
+ :param bool async_: Perform the request asynchronously
69
69
  :return: Note
70
70
  """
71
71
 
@@ -180,7 +180,7 @@ class AnalysesApi(object):
180
180
 
181
181
  :param str container_id: (required)
182
182
  :param Tag body: (required)
183
- :param bool async: Perform the request asynchronously
183
+ :param bool async_: Perform the request asynchronously
184
184
  :return: ModifiedResult
185
185
  """
186
186
 
@@ -295,7 +295,7 @@ class AnalysesApi(object):
295
295
 
296
296
  :param str analysis_id: 24-char hex analysis id (required)
297
297
  :param ContainerDeleteReason delete_reason:
298
- :param bool async: Perform the request asynchronously
298
+ :param bool async_: Perform the request asynchronously
299
299
  :return: DeletedResult
300
300
  """
301
301
 
@@ -395,7 +395,7 @@ class AnalysesApi(object):
395
395
 
396
396
  :param str container_id: Container id (required)
397
397
  :param str note_id: 24-char hex note id (required)
398
- :param bool async: Perform the request asynchronously
398
+ :param bool async_: Perform the request asynchronously
399
399
  :return: None
400
400
  """
401
401
 
@@ -499,7 +499,7 @@ class AnalysesApi(object):
499
499
 
500
500
  :param str container_id: (required)
501
501
  :param str value: The tag to interact with (required)
502
- :param bool async: Perform the request asynchronously
502
+ :param bool async_: Perform the request asynchronously
503
503
  :return: None
504
504
  """
505
505
 
@@ -613,7 +613,7 @@ class AnalysesApi(object):
613
613
  :param bool view: feature flag for view/download
614
614
  :param str range: byte ranges to return
615
615
  :param list[str] x_accept_feature: redirect header
616
- :param bool async: Perform the request asynchronously
616
+ :param bool async_: Perform the request asynchronously
617
617
  :return: union[DownloadTicketStub,ZipfileInfo]
618
618
  """
619
619
 
@@ -740,7 +740,7 @@ class AnalysesApi(object):
740
740
  :param bool view: feature flag for view/download
741
741
  :param str range: byte ranges to return
742
742
  :param list[str] x_accept_feature: redirect header
743
- :param bool async: Perform the request asynchronously
743
+ :param bool async_: Perform the request asynchronously
744
744
  :return: FileZipInfo
745
745
  """
746
746
 
@@ -871,7 +871,7 @@ class AnalysesApi(object):
871
871
  :param bool view: feature flag for view/download
872
872
  :param str range: byte ranges to return
873
873
  :param list[str] x_accept_feature: redirect header
874
- :param bool async: Perform the request asynchronously
874
+ :param bool async_: Perform the request asynchronously
875
875
  :return: union[DownloadTicketStub,ZipfileInfo]
876
876
  """
877
877
 
@@ -998,7 +998,7 @@ class AnalysesApi(object):
998
998
  :param bool view: feature flag for view/download
999
999
  :param str range: byte ranges to return
1000
1000
  :param list[str] x_accept_feature: redirect header
1001
- :param bool async: Perform the request asynchronously
1001
+ :param bool async_: Perform the request asynchronously
1002
1002
  :return: union[DownloadTicketStub,ZipfileInfo]
1003
1003
  """
1004
1004
 
@@ -1125,7 +1125,7 @@ class AnalysesApi(object):
1125
1125
  :param bool view: feature flag for view/download
1126
1126
  :param str range: byte ranges to return
1127
1127
  :param list[str] x_accept_feature: redirect header
1128
- :param bool async: Perform the request asynchronously
1128
+ :param bool async_: Perform the request asynchronously
1129
1129
  :return: FileZipInfo
1130
1130
  """
1131
1131
 
@@ -1256,7 +1256,7 @@ class AnalysesApi(object):
1256
1256
  :param bool view: feature flag for view/download
1257
1257
  :param str range: byte ranges to return
1258
1258
  :param list[str] x_accept_feature: redirect header
1259
- :param bool async: Perform the request asynchronously
1259
+ :param bool async_: Perform the request asynchronously
1260
1260
  :return: union[DownloadTicketStub,ZipfileInfo]
1261
1261
  """
1262
1262
 
@@ -1385,7 +1385,7 @@ class AnalysesApi(object):
1385
1385
  :param int page: The page number (i.e. skip limit*page entries)
1386
1386
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
1387
1387
  :param list[str] x_accept_feature:
1388
- :param bool async: Perform the request asynchronously
1388
+ :param bool async_: Perform the request asynchronously
1389
1389
  :return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
1390
1390
  """
1391
1391
 
@@ -1496,7 +1496,7 @@ class AnalysesApi(object):
1496
1496
  :param str container_name: The parent container type (required)
1497
1497
  :param str container_id: The parent container id (required)
1498
1498
  :param str subcontainer_name: The sub container type (required)
1499
- :param bool async: Perform the request asynchronously
1499
+ :param bool async_: Perform the request asynchronously
1500
1500
  :return: list[AnalysisListOutput]
1501
1501
  """
1502
1502
 
@@ -1610,7 +1610,7 @@ class AnalysesApi(object):
1610
1610
  :param bool inflate_job: expand job info
1611
1611
  :param bool join_avatars: add name and avatar to notes
1612
1612
  :param JoinType join:
1613
- :param bool async: Perform the request asynchronously
1613
+ :param bool async_: Perform the request asynchronously
1614
1614
  :return: union[AnalysisOutput,AnalysisOutputInflatedJob]
1615
1615
  """
1616
1616
 
@@ -1716,7 +1716,7 @@ class AnalysesApi(object):
1716
1716
 
1717
1717
  :param str container_id: Container id (required)
1718
1718
  :param str filename: The name of the file (required)
1719
- :param bool async: Perform the request asynchronously
1719
+ :param bool async_: Perform the request asynchronously
1720
1720
  :return: FileOutput
1721
1721
  """
1722
1722
 
@@ -1820,7 +1820,7 @@ class AnalysesApi(object):
1820
1820
 
1821
1821
  :param str container_id: Container id (required)
1822
1822
  :param str note_id: 24-char hex note id (required)
1823
- :param bool async: Perform the request asynchronously
1823
+ :param bool async_: Perform the request asynchronously
1824
1824
  :return: Note
1825
1825
  """
1826
1826
 
@@ -1924,7 +1924,7 @@ class AnalysesApi(object):
1924
1924
 
1925
1925
  :param str container_id: (required)
1926
1926
  :param str value: The tag to interact with (required)
1927
- :param bool async: Perform the request asynchronously
1927
+ :param bool async_: Perform the request asynchronously
1928
1928
  :return: str
1929
1929
  """
1930
1930
 
@@ -2028,7 +2028,7 @@ class AnalysesApi(object):
2028
2028
 
2029
2029
  :param str analysis_id: 24-char hex analysis id (required)
2030
2030
  :param AnalysisModifyInput body: new analysis fields (required)
2031
- :param bool async: Perform the request asynchronously
2031
+ :param bool async_: Perform the request asynchronously
2032
2032
  :return: ModifiedResult
2033
2033
  """
2034
2034
 
@@ -2143,7 +2143,7 @@ class AnalysesApi(object):
2143
2143
 
2144
2144
  :param str container_id: (required)
2145
2145
  :param Info body: (required)
2146
- :param bool async: Perform the request asynchronously
2146
+ :param bool async_: Perform the request asynchronously
2147
2147
  :return: ModifiedResult
2148
2148
  """
2149
2149
 
@@ -2260,7 +2260,7 @@ class AnalysesApi(object):
2260
2260
  :param str container_id: Container id (required)
2261
2261
  :param str note_id: 24-char hex note id (required)
2262
2262
  :param NoteInput body: note content (required)
2263
- :param bool async: Perform the request asynchronously
2263
+ :param bool async_: Perform the request asynchronously
2264
2264
  :return: int
2265
2265
  """
2266
2266
 
@@ -2383,7 +2383,7 @@ class AnalysesApi(object):
2383
2383
  :param str container_id: (required)
2384
2384
  :param str value: The tag to interact with (required)
2385
2385
  :param Tag body: (required)
2386
- :param bool async: Perform the request asynchronously
2386
+ :param bool async_: Perform the request asynchronously
2387
2387
  :return: str
2388
2388
  """
2389
2389
 
@@ -2516,7 +2516,7 @@ class AnalysesApi(object):
2516
2516
  :param str job:
2517
2517
  :param list[str] x_accept_feature: redirect header
2518
2518
  :param str content_type:
2519
- :param bool async: Perform the request asynchronously
2519
+ :param bool async_: Perform the request asynchronously
2520
2520
  :return: None
2521
2521
  """
2522
2522
 
@@ -63,7 +63,7 @@ class AuditTrailApi(object):
63
63
  This method makes a synchronous HTTP request by default.
64
64
 
65
65
  :param CreateReportInput body: (required)
66
- :param bool async: Perform the request asynchronously
66
+ :param bool async_: Perform the request asynchronously
67
67
  :return: AuditTrailReport
68
68
  """
69
69
 
@@ -170,7 +170,7 @@ class AuditTrailApi(object):
170
170
  This method makes a synchronous HTTP request by default.
171
171
 
172
172
  :param str report_id: (required)
173
- :param bool async: Perform the request asynchronously
173
+ :param bool async_: Perform the request asynchronously
174
174
  :return: DeletedResult
175
175
  """
176
176
 
@@ -266,7 +266,7 @@ class AuditTrailApi(object):
266
266
  This method makes a synchronous HTTP request by default.
267
267
 
268
268
  :param str report_id: (required)
269
- :param bool async: Perform the request asynchronously
269
+ :param bool async_: Perform the request asynchronously
270
270
  :return: None
271
271
  """
272
272
 
@@ -374,7 +374,7 @@ class AuditTrailApi(object):
374
374
  :param int page: The page number (i.e. skip limit*page entries)
375
375
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
376
376
  :param list[union[HeaderFeature,string]] x_accept_feature:
377
- :param bool async: Perform the request asynchronously
377
+ :param bool async_: Perform the request asynchronously
378
378
  :return: union[Page,list[AuditTrailReport]]
379
379
  """
380
380
 
@@ -481,7 +481,7 @@ class AuditTrailApi(object):
481
481
 
482
482
  :param str report_id: (required)
483
483
  :param ModifyReportInput body: (required)
484
- :param bool async: Perform the request asynchronously
484
+ :param bool async_: Perform the request asynchronously
485
485
  :return: AuditTrailReport
486
486
  """
487
487
 
flywheel/api/auth_api.py CHANGED
@@ -61,7 +61,7 @@ class AuthApi(object):
61
61
  Get the current login status of the requestor
62
62
  This method makes a synchronous HTTP request by default.
63
63
 
64
- :param bool async: Perform the request asynchronously
64
+ :param bool async_: Perform the request asynchronously
65
65
  :return: AuthSessionOutput
66
66
  """
67
67
 
flywheel/api/batch_api.py CHANGED
@@ -63,7 +63,7 @@ class BatchApi(object):
63
63
  This method makes a synchronous HTTP request by default.
64
64
 
65
65
  :param str batch_id: (required)
66
- :param bool async: Perform the request asynchronously
66
+ :param bool async_: Perform the request asynchronously
67
67
  :return: CancelledBatchOutput
68
68
  """
69
69
 
@@ -159,7 +159,7 @@ class BatchApi(object):
159
159
  This method makes a synchronous HTTP request by default.
160
160
 
161
161
  :param PremadeJobsBatchProposalInput body: (required)
162
- :param bool async: Perform the request asynchronously
162
+ :param bool async_: Perform the request asynchronously
163
163
  :return: PremadeJobsBatchProposal
164
164
  """
165
165
 
@@ -264,7 +264,7 @@ class BatchApi(object):
264
264
  Requires login.
265
265
  This method makes a synchronous HTTP request by default.
266
266
 
267
- :param bool async: Perform the request asynchronously
267
+ :param bool async_: Perform the request asynchronously
268
268
  :return: list[Batch]
269
269
  """
270
270
 
@@ -354,7 +354,7 @@ class BatchApi(object):
354
354
 
355
355
  :param str batch_id: (required)
356
356
  :param bool jobs: If true, return job objects instead of job ids
357
- :param bool async: Perform the request asynchronously
357
+ :param bool async_: Perform the request asynchronously
358
358
  :return: union[ClassicBatchJobOutput,ClassicBatchJobOutputInflatedJobs,PremadeJobsBatchJobOutput,PremadeJobsBatchJobOutputInflatedJobs]
359
359
  """
360
360
 
@@ -452,7 +452,7 @@ class BatchApi(object):
452
452
  This method makes a synchronous HTTP request by default.
453
453
 
454
454
  :param ClassicBatchProposalInput body: The batch proposal (required)
455
- :param bool async: Perform the request asynchronously
455
+ :param bool async_: Perform the request asynchronously
456
456
  :return: ClassicBatchProposalOutput
457
457
  """
458
458
 
@@ -559,7 +559,7 @@ class BatchApi(object):
559
559
  This method makes a synchronous HTTP request by default.
560
560
 
561
561
  :param str batch_id: (required)
562
- :param bool async: Perform the request asynchronously
562
+ :param bool async_: Perform the request asynchronously
563
563
  :return: list[JobOutput]
564
564
  """
565
565
 
flywheel/api/bulk_api.py CHANGED
@@ -61,7 +61,7 @@ class BulkApi(object):
61
61
  This method makes a synchronous HTTP request by default.
62
62
 
63
63
  :param BulkMoveInput body: (required)
64
- :param bool async: Perform the request asynchronously
64
+ :param bool async_: Perform the request asynchronously
65
65
  :return: None
66
66
  """
67
67
 
@@ -65,7 +65,7 @@ class ChangeLogApi(object):
65
65
  :param ChangeLogContainerType container_type: (required)
66
66
  :param str container_id: (required)
67
67
  :param int version: Optional version if retrieving logs for file
68
- :param bool async: Perform the request asynchronously
68
+ :param bool async_: Perform the request asynchronously
69
69
  :return: ChangeLogDocument
70
70
  """
71
71
 
@@ -173,7 +173,7 @@ class ChangeLogApi(object):
173
173
  :param str container_id: (required)
174
174
  :param str field: (required)
175
175
  :param int version: Optional version if retrieving logs for file
176
- :param bool async: Perform the request asynchronously
176
+ :param bool async_: Perform the request asynchronously
177
177
  :return: FieldChangeLogDocument
178
178
  """
179
179