flywheel-sdk 20.1.0rc0__py2.py3-none-any.whl → 20.2.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 (39) hide show
  1. flywheel/__init__.py +3 -6
  2. flywheel/api/__init__.py +1 -0
  3. flywheel/api/analyses_api.py +1446 -346
  4. flywheel/api/container_type_api.py +135 -0
  5. flywheel/api/dataexplorer_api.py +90 -0
  6. flywheel/api/files_api.py +437 -0
  7. flywheel/api/reports_api.py +102 -0
  8. flywheel/api_client.py +1 -1
  9. flywheel/configuration.py +2 -2
  10. flywheel/finder.py +5 -2
  11. flywheel/flywheel.py +335 -7
  12. flywheel/models/__init__.py +3 -7
  13. flywheel/models/action.py +0 -3
  14. flywheel/models/container_type.py +0 -1
  15. flywheel/models/current_user_output.py +4 -32
  16. flywheel/models/features.py +16 -16
  17. flywheel/models/{azure_ml_resource_init_status.py → file_container_type.py} +8 -6
  18. flywheel/models/file_list_output.py +54 -1
  19. flywheel/models/file_node.py +54 -1
  20. flywheel/models/file_output.py +57 -4
  21. flywheel/models/file_upsert_output.py +54 -1
  22. flywheel/models/fixed_input.py +28 -1
  23. flywheel/models/info_container_type.py +34 -0
  24. flywheel/models/mixins.py +14 -2
  25. flywheel/models/modify_user_input.py +4 -32
  26. flywheel/models/origin_type.py +1 -0
  27. flywheel/models/project_copy_input.py +28 -1
  28. flywheel/models/project_settings_workspaces.py +4 -31
  29. flywheel/models/project_settings_workspaces_input.py +4 -32
  30. {flywheel_sdk-20.1.0rc0.dist-info → flywheel_sdk-20.2.0.dist-info}/METADATA +3 -3
  31. {flywheel_sdk-20.1.0rc0.dist-info → flywheel_sdk-20.2.0.dist-info}/RECORD +34 -37
  32. {flywheel_sdk-20.1.0rc0.dist-info → flywheel_sdk-20.2.0.dist-info}/WHEEL +1 -1
  33. flywheel/models/azure_ml_account.py +0 -188
  34. flywheel/models/azure_ml_initialization.py +0 -244
  35. flywheel/models/azure_ml_integration.py +0 -218
  36. flywheel/models/azure_ml_workspace.py +0 -347
  37. flywheel/models/azure_ml_workspace_input.py +0 -189
  38. {flywheel_sdk-20.1.0rc0.dist-info → flywheel_sdk-20.2.0.dist-info/licenses}/LICENSE.txt +0 -0
  39. {flywheel_sdk-20.1.0rc0.dist-info → flywheel_sdk-20.2.0.dist-info}/top_level.txt +0 -0
flywheel/__init__.py CHANGED
@@ -28,6 +28,7 @@ from flywheel.api.bulk_api import BulkApi
28
28
  from flywheel.api.change_log_api import ChangeLogApi
29
29
  from flywheel.api.collections_api import CollectionsApi
30
30
  from flywheel.api.config_api import ConfigApi
31
+ from flywheel.api.container_type_api import ContainerTypeApi
31
32
  from flywheel.api.containers_api import ContainersApi
32
33
  from flywheel.api.data_view_executions_api import DataViewExecutionsApi
33
34
  from flywheel.api.dataexplorer_api import DataexplorerApi
@@ -111,12 +112,6 @@ from flywheel.models.avatars import Avatars
111
112
  from flywheel.models.aws_creds import AwsCreds
112
113
  from flywheel.models.aws_storage import AwsStorage
113
114
  from flywheel.models.azure_creds import AzureCreds
114
- from flywheel.models.azure_ml_account import AzureMLAccount
115
- from flywheel.models.azure_ml_initialization import AzureMLInitialization
116
- from flywheel.models.azure_ml_integration import AzureMLIntegration
117
- from flywheel.models.azure_ml_resource_init_status import AzureMLResourceInitStatus
118
- from flywheel.models.azure_ml_workspace import AzureMLWorkspace
119
- from flywheel.models.azure_ml_workspace_input import AzureMLWorkspaceInput
120
115
  from flywheel.models.base_aet import BaseAET
121
116
  from flywheel.models.base_compute import BaseCompute
122
117
  from flywheel.models.batch import Batch
@@ -265,6 +260,7 @@ from flywheel.models.field_change import FieldChange
265
260
  from flywheel.models.field_change_log_document import FieldChangeLogDocument
266
261
  from flywheel.models.file import File
267
262
  from flywheel.models.file_classification_delta import FileClassificationDelta
263
+ from flywheel.models.file_container_type import FileContainerType
268
264
  from flywheel.models.file_entry import FileEntry
269
265
  from flywheel.models.file_export_templates import FileExportTemplates
270
266
  from flywheel.models.file_format import FileFormat
@@ -357,6 +353,7 @@ from flywheel.models.header_feature import HeaderFeature
357
353
  from flywheel.models.hierarchy_export_templates import HierarchyExportTemplates
358
354
  from flywheel.models.info import Info
359
355
  from flywheel.models.info_add_remove import InfoAddRemove
356
+ from flywheel.models.info_container_type import InfoContainerType
360
357
  from flywheel.models.info_replace import InfoReplace
361
358
  from flywheel.models.info_update_input import InfoUpdateInput
362
359
  from flywheel.models.ingress_provider import IngressProvider
flywheel/api/__init__.py CHANGED
@@ -12,6 +12,7 @@ from flywheel.api.bulk_api import BulkApi
12
12
  from flywheel.api.change_log_api import ChangeLogApi
13
13
  from flywheel.api.collections_api import CollectionsApi
14
14
  from flywheel.api.config_api import ConfigApi
15
+ from flywheel.api.container_type_api import ContainerTypeApi
15
16
  from flywheel.api.containers_api import ContainersApi
16
17
  from flywheel.api.data_view_executions_api import DataViewExecutionsApi
17
18
  from flywheel.api.dataexplorer_api import DataexplorerApi