flywheel-sdk 20.1.0rc0__py2.py3-none-any.whl → 20.1.4rc0__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/__init__.py +0 -6
- flywheel/api_client.py +1 -1
- flywheel/configuration.py +2 -2
- flywheel/flywheel.py +7 -1
- flywheel/models/__init__.py +1 -7
- flywheel/models/action.py +0 -3
- flywheel/models/container_type.py +0 -1
- flywheel/models/current_user_output.py +4 -32
- flywheel/models/modify_user_input.py +4 -32
- flywheel/models/project_settings_workspaces.py +4 -31
- flywheel/models/project_settings_workspaces_input.py +4 -32
- {flywheel_sdk-20.1.0rc0.dist-info → flywheel_sdk-20.1.4rc0.dist-info}/METADATA +3 -2
- {flywheel_sdk-20.1.0rc0.dist-info → flywheel_sdk-20.1.4rc0.dist-info}/RECORD +16 -22
- {flywheel_sdk-20.1.0rc0.dist-info → flywheel_sdk-20.1.4rc0.dist-info}/WHEEL +1 -1
- flywheel/models/azure_ml_account.py +0 -188
- flywheel/models/azure_ml_initialization.py +0 -244
- flywheel/models/azure_ml_integration.py +0 -218
- flywheel/models/azure_ml_resource_init_status.py +0 -31
- flywheel/models/azure_ml_workspace.py +0 -347
- flywheel/models/azure_ml_workspace_input.py +0 -189
- {flywheel_sdk-20.1.0rc0.dist-info → flywheel_sdk-20.1.4rc0.dist-info/licenses}/LICENSE.txt +0 -0
- {flywheel_sdk-20.1.0rc0.dist-info → flywheel_sdk-20.1.4rc0.dist-info}/top_level.txt +0 -0
flywheel/__init__.py
CHANGED
|
@@ -111,12 +111,6 @@ from flywheel.models.avatars import Avatars
|
|
|
111
111
|
from flywheel.models.aws_creds import AwsCreds
|
|
112
112
|
from flywheel.models.aws_storage import AwsStorage
|
|
113
113
|
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
114
|
from flywheel.models.base_aet import BaseAET
|
|
121
115
|
from flywheel.models.base_compute import BaseCompute
|
|
122
116
|
from flywheel.models.batch import Batch
|
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/20.1.
|
|
87
|
+
self.user_agent = 'Swagger-Codegen/20.1.4-rc0/python'
|
|
88
88
|
self.last_response = None
|
|
89
89
|
self._version_check_fn = None
|
|
90
90
|
self._context = context
|
flywheel/configuration.py
CHANGED
|
@@ -252,6 +252,6 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
|
|
|
252
252
|
return "Python SDK Debug Report:\n"\
|
|
253
253
|
"OS: {env}\n"\
|
|
254
254
|
"Python Version: {pyversion}\n"\
|
|
255
|
-
"Version of the API: 20.1.
|
|
256
|
-
"SDK Package Version: 20.1.
|
|
255
|
+
"Version of the API: 20.1.4-rc0\n"\
|
|
256
|
+
"SDK Package Version: 20.1.4-rc0".\
|
|
257
257
|
format(env=sys.platform, pyversion=sys.version)
|
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 = "20.1.
|
|
43
|
+
SDK_VERSION = "20.1.4-rc0"
|
|
44
44
|
|
|
45
45
|
def config_from_api_key(api_key):
|
|
46
46
|
parts = api_key.split(':')
|
|
@@ -9132,6 +9132,7 @@ class Flywheel:
|
|
|
9132
9132
|
|
|
9133
9133
|
def _upload_to_signed_url(self, urls, fdata, fsize, headers):
|
|
9134
9134
|
is_s3_upload = ".s3." in urls[0] or ".amazonaws." in urls[0]
|
|
9135
|
+
is_gc_upload = ".googleapis." in urls[0]
|
|
9135
9136
|
e_tags = list()
|
|
9136
9137
|
upload_id = None
|
|
9137
9138
|
|
|
@@ -9141,6 +9142,11 @@ class Flywheel:
|
|
|
9141
9142
|
remaining = fsize - part_size * part_num
|
|
9142
9143
|
content_length = remaining if remaining < part_size else part_size
|
|
9143
9144
|
reader = PartialReader(fdata, content_length)
|
|
9145
|
+
if is_gc_upload:
|
|
9146
|
+
headers['Content-Length'] = str(content_length)
|
|
9147
|
+
start = part_num * part_size
|
|
9148
|
+
end = start + content_length - 1
|
|
9149
|
+
headers['Content-Range'] = f"bytes {start}-{end}/{fsize}"
|
|
9144
9150
|
upload_response = self.api_client.rest_client.session.put(
|
|
9145
9151
|
url, data=reader, headers=headers
|
|
9146
9152
|
)
|
flywheel/models/__init__.py
CHANGED
|
@@ -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: 20.1.
|
|
9
|
+
OpenAPI spec version: 20.1.4-rc0
|
|
10
10
|
|
|
11
11
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
12
12
|
"""
|
|
@@ -59,12 +59,6 @@ from flywheel.models.avatars import Avatars
|
|
|
59
59
|
from flywheel.models.aws_creds import AwsCreds
|
|
60
60
|
from flywheel.models.aws_storage import AwsStorage
|
|
61
61
|
from flywheel.models.azure_creds import AzureCreds
|
|
62
|
-
from flywheel.models.azure_ml_account import AzureMLAccount
|
|
63
|
-
from flywheel.models.azure_ml_initialization import AzureMLInitialization
|
|
64
|
-
from flywheel.models.azure_ml_integration import AzureMLIntegration
|
|
65
|
-
from flywheel.models.azure_ml_resource_init_status import AzureMLResourceInitStatus
|
|
66
|
-
from flywheel.models.azure_ml_workspace import AzureMLWorkspace
|
|
67
|
-
from flywheel.models.azure_ml_workspace_input import AzureMLWorkspaceInput
|
|
68
62
|
from flywheel.models.base_aet import BaseAET
|
|
69
63
|
from flywheel.models.base_compute import BaseCompute
|
|
70
64
|
from flywheel.models.batch import Batch
|
flywheel/models/action.py
CHANGED
|
@@ -76,9 +76,6 @@ class Action(str, enum.Enum):
|
|
|
76
76
|
JUPYTERLAB_SERVERS_CREATE = "jupyterlab_servers_create"
|
|
77
77
|
JUPYTERLAB_SERVERS_MODIFY = "jupyterlab_servers_modify"
|
|
78
78
|
JUPYTERLAB_SERVERS_DELETE = "jupyterlab_servers_delete"
|
|
79
|
-
AZUREML_READ = "azureml_read"
|
|
80
|
-
AZUREML_MODIFY = "azureml_modify"
|
|
81
|
-
AZUREML_ACCESS = "azureml_access"
|
|
82
79
|
AUDIT_TRAIL_REPORTS_MANAGE = "audit_trail_reports_manage"
|
|
83
80
|
AUDIT_TRAIL_REPORTS_VIEW = "audit_trail_reports_view"
|
|
84
81
|
TASKS_VIEW = "tasks_view"
|
|
@@ -19,7 +19,6 @@ import re # noqa: F401
|
|
|
19
19
|
import six
|
|
20
20
|
|
|
21
21
|
from flywheel.models.api_key_output import ApiKeyOutput # noqa: F401,E501
|
|
22
|
-
from flywheel.models.azure_ml_account import AzureMLAccount # noqa: F401,E501
|
|
23
22
|
from flywheel.models.legacy_api_key_output import LegacyApiKeyOutput # noqa: F401,E501
|
|
24
23
|
from flywheel.models.user_preferences import UserPreferences # noqa: F401,E501
|
|
25
24
|
|
|
@@ -45,8 +44,7 @@ class CurrentUserOutput(object):
|
|
|
45
44
|
'info': 'object',
|
|
46
45
|
'firstlogin': 'str',
|
|
47
46
|
'lastlogin': 'str',
|
|
48
|
-
'visited_projects': 'list[str]'
|
|
49
|
-
'azureml_account': 'AzureMLAccount'
|
|
47
|
+
'visited_projects': 'list[str]'
|
|
50
48
|
}
|
|
51
49
|
|
|
52
50
|
attribute_map = {
|
|
@@ -69,8 +67,7 @@ class CurrentUserOutput(object):
|
|
|
69
67
|
'info': 'info',
|
|
70
68
|
'firstlogin': 'firstlogin',
|
|
71
69
|
'lastlogin': 'lastlogin',
|
|
72
|
-
'visited_projects': 'visited_projects'
|
|
73
|
-
'azureml_account': 'azureml_account'
|
|
70
|
+
'visited_projects': 'visited_projects'
|
|
74
71
|
}
|
|
75
72
|
|
|
76
73
|
rattribute_map = {
|
|
@@ -93,11 +90,10 @@ class CurrentUserOutput(object):
|
|
|
93
90
|
'info': 'info',
|
|
94
91
|
'firstlogin': 'firstlogin',
|
|
95
92
|
'lastlogin': 'lastlogin',
|
|
96
|
-
'visited_projects': 'visited_projects'
|
|
97
|
-
'azureml_account': 'azureml_account'
|
|
93
|
+
'visited_projects': 'visited_projects'
|
|
98
94
|
}
|
|
99
95
|
|
|
100
|
-
def __init__(self, id=None, user_id=None, firstname=None, lastname=None, email=None, auth0sub=None, roles=None, root=False, api_key=None, api_keys=None, avatar=None, avatars=None, disabled=None, preferences=None, created=None, modified=None, info=None, firstlogin=None, lastlogin=None, visited_projects=None
|
|
96
|
+
def __init__(self, id=None, user_id=None, firstname=None, lastname=None, email=None, auth0sub=None, roles=None, root=False, api_key=None, api_keys=None, avatar=None, avatars=None, disabled=None, preferences=None, created=None, modified=None, info=None, firstlogin=None, lastlogin=None, visited_projects=None): # noqa: E501
|
|
101
97
|
"""CurrentUserOutput - a model defined in Swagger"""
|
|
102
98
|
super(CurrentUserOutput, self).__init__()
|
|
103
99
|
|
|
@@ -121,7 +117,6 @@ class CurrentUserOutput(object):
|
|
|
121
117
|
self._firstlogin = None
|
|
122
118
|
self._lastlogin = None
|
|
123
119
|
self._visited_projects = None
|
|
124
|
-
self._azureml_account = None
|
|
125
120
|
self.discriminator = None
|
|
126
121
|
self.alt_discriminator = None
|
|
127
122
|
|
|
@@ -157,8 +152,6 @@ class CurrentUserOutput(object):
|
|
|
157
152
|
self.lastlogin = lastlogin
|
|
158
153
|
if visited_projects is not None:
|
|
159
154
|
self.visited_projects = visited_projects
|
|
160
|
-
if azureml_account is not None:
|
|
161
|
-
self.azureml_account = azureml_account
|
|
162
155
|
|
|
163
156
|
@property
|
|
164
157
|
def id(self):
|
|
@@ -580,27 +573,6 @@ class CurrentUserOutput(object):
|
|
|
580
573
|
|
|
581
574
|
self._visited_projects = visited_projects
|
|
582
575
|
|
|
583
|
-
@property
|
|
584
|
-
def azureml_account(self):
|
|
585
|
-
"""Gets the azureml_account of this CurrentUserOutput.
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
:return: The azureml_account of this CurrentUserOutput.
|
|
589
|
-
:rtype: AzureMLAccount
|
|
590
|
-
"""
|
|
591
|
-
return self._azureml_account
|
|
592
|
-
|
|
593
|
-
@azureml_account.setter
|
|
594
|
-
def azureml_account(self, azureml_account):
|
|
595
|
-
"""Sets the azureml_account of this CurrentUserOutput.
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
:param azureml_account: The azureml_account of this CurrentUserOutput. # noqa: E501
|
|
599
|
-
:type: AzureMLAccount
|
|
600
|
-
"""
|
|
601
|
-
|
|
602
|
-
self._azureml_account = azureml_account
|
|
603
|
-
|
|
604
576
|
|
|
605
577
|
@staticmethod
|
|
606
578
|
def positional_to_model(value):
|
|
@@ -19,7 +19,6 @@ import re # noqa: F401
|
|
|
19
19
|
import six
|
|
20
20
|
|
|
21
21
|
from flywheel.models.avatars import Avatars # noqa: F401,E501
|
|
22
|
-
from flywheel.models.azure_ml_account import AzureMLAccount # noqa: F401,E501
|
|
23
22
|
from flywheel.models.role_type import RoleType # noqa: F401,E501
|
|
24
23
|
from flywheel.models.user_preferences import UserPreferences # noqa: F401,E501
|
|
25
24
|
|
|
@@ -36,8 +35,7 @@ class ModifyUserInput(object):
|
|
|
36
35
|
'preferences': 'UserPreferences',
|
|
37
36
|
'root': 'bool',
|
|
38
37
|
'password': 'str',
|
|
39
|
-
'central_revision': 'int'
|
|
40
|
-
'azureml_account': 'AzureMLAccount'
|
|
38
|
+
'central_revision': 'int'
|
|
41
39
|
}
|
|
42
40
|
|
|
43
41
|
attribute_map = {
|
|
@@ -51,8 +49,7 @@ class ModifyUserInput(object):
|
|
|
51
49
|
'preferences': 'preferences',
|
|
52
50
|
'root': 'root',
|
|
53
51
|
'password': 'password',
|
|
54
|
-
'central_revision': 'central_revision'
|
|
55
|
-
'azureml_account': 'azureml_account'
|
|
52
|
+
'central_revision': 'central_revision'
|
|
56
53
|
}
|
|
57
54
|
|
|
58
55
|
rattribute_map = {
|
|
@@ -66,11 +63,10 @@ class ModifyUserInput(object):
|
|
|
66
63
|
'preferences': 'preferences',
|
|
67
64
|
'root': 'root',
|
|
68
65
|
'password': 'password',
|
|
69
|
-
'central_revision': 'central_revision'
|
|
70
|
-
'azureml_account': 'azureml_account'
|
|
66
|
+
'central_revision': 'central_revision'
|
|
71
67
|
}
|
|
72
68
|
|
|
73
|
-
def __init__(self, firstname=None, lastname=None, email=None, avatars=None, avatar=None, roles=None, disabled=None, preferences=None, root=None, password=None, central_revision=None
|
|
69
|
+
def __init__(self, firstname=None, lastname=None, email=None, avatars=None, avatar=None, roles=None, disabled=None, preferences=None, root=None, password=None, central_revision=None): # noqa: E501
|
|
74
70
|
"""ModifyUserInput - a model defined in Swagger"""
|
|
75
71
|
super(ModifyUserInput, self).__init__()
|
|
76
72
|
|
|
@@ -85,7 +81,6 @@ class ModifyUserInput(object):
|
|
|
85
81
|
self._root = None
|
|
86
82
|
self._password = None
|
|
87
83
|
self._central_revision = None
|
|
88
|
-
self._azureml_account = None
|
|
89
84
|
self.discriminator = None
|
|
90
85
|
self.alt_discriminator = None
|
|
91
86
|
|
|
@@ -111,8 +106,6 @@ class ModifyUserInput(object):
|
|
|
111
106
|
self.password = password
|
|
112
107
|
if central_revision is not None:
|
|
113
108
|
self.central_revision = central_revision
|
|
114
|
-
if azureml_account is not None:
|
|
115
|
-
self.azureml_account = azureml_account
|
|
116
109
|
|
|
117
110
|
@property
|
|
118
111
|
def firstname(self):
|
|
@@ -345,27 +338,6 @@ class ModifyUserInput(object):
|
|
|
345
338
|
|
|
346
339
|
self._central_revision = central_revision
|
|
347
340
|
|
|
348
|
-
@property
|
|
349
|
-
def azureml_account(self):
|
|
350
|
-
"""Gets the azureml_account of this ModifyUserInput.
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
:return: The azureml_account of this ModifyUserInput.
|
|
354
|
-
:rtype: AzureMLAccount
|
|
355
|
-
"""
|
|
356
|
-
return self._azureml_account
|
|
357
|
-
|
|
358
|
-
@azureml_account.setter
|
|
359
|
-
def azureml_account(self, azureml_account):
|
|
360
|
-
"""Sets the azureml_account of this ModifyUserInput.
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
:param azureml_account: The azureml_account of this ModifyUserInput. # noqa: E501
|
|
364
|
-
:type: AzureMLAccount
|
|
365
|
-
"""
|
|
366
|
-
|
|
367
|
-
self._azureml_account = azureml_account
|
|
368
|
-
|
|
369
341
|
|
|
370
342
|
@staticmethod
|
|
371
343
|
def positional_to_model(value):
|
|
@@ -21,33 +21,27 @@ import six
|
|
|
21
21
|
class ProjectSettingsWorkspaces(object):
|
|
22
22
|
|
|
23
23
|
swagger_types = {
|
|
24
|
-
'jupyterhub': 'JupyterhubWorkspace'
|
|
25
|
-
'azureml': 'AzureMLIntegration'
|
|
24
|
+
'jupyterhub': 'JupyterhubWorkspace'
|
|
26
25
|
}
|
|
27
26
|
|
|
28
27
|
attribute_map = {
|
|
29
|
-
'jupyterhub': 'jupyterhub'
|
|
30
|
-
'azureml': 'azureml'
|
|
28
|
+
'jupyterhub': 'jupyterhub'
|
|
31
29
|
}
|
|
32
30
|
|
|
33
31
|
rattribute_map = {
|
|
34
|
-
'jupyterhub': 'jupyterhub'
|
|
35
|
-
'azureml': 'azureml'
|
|
32
|
+
'jupyterhub': 'jupyterhub'
|
|
36
33
|
}
|
|
37
34
|
|
|
38
|
-
def __init__(self, jupyterhub=None
|
|
35
|
+
def __init__(self, jupyterhub=None): # noqa: E501
|
|
39
36
|
"""ProjectSettingsWorkspaces - a model defined in Swagger"""
|
|
40
37
|
super(ProjectSettingsWorkspaces, self).__init__()
|
|
41
38
|
|
|
42
39
|
self._jupyterhub = None
|
|
43
|
-
self._azureml = None
|
|
44
40
|
self.discriminator = None
|
|
45
41
|
self.alt_discriminator = None
|
|
46
42
|
|
|
47
43
|
if jupyterhub is not None:
|
|
48
44
|
self.jupyterhub = jupyterhub
|
|
49
|
-
if azureml is not None:
|
|
50
|
-
self.azureml = azureml
|
|
51
45
|
|
|
52
46
|
@property
|
|
53
47
|
def jupyterhub(self):
|
|
@@ -70,27 +64,6 @@ class ProjectSettingsWorkspaces(object):
|
|
|
70
64
|
|
|
71
65
|
self._jupyterhub = jupyterhub
|
|
72
66
|
|
|
73
|
-
@property
|
|
74
|
-
def azureml(self):
|
|
75
|
-
"""Gets the azureml of this ProjectSettingsWorkspaces.
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
:return: The azureml of this ProjectSettingsWorkspaces.
|
|
79
|
-
:rtype: AzureMLIntegration
|
|
80
|
-
"""
|
|
81
|
-
return self._azureml
|
|
82
|
-
|
|
83
|
-
@azureml.setter
|
|
84
|
-
def azureml(self, azureml):
|
|
85
|
-
"""Sets the azureml of this ProjectSettingsWorkspaces.
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
:param azureml: The azureml of this ProjectSettingsWorkspaces. # noqa: E501
|
|
89
|
-
:type: AzureMLIntegration
|
|
90
|
-
"""
|
|
91
|
-
|
|
92
|
-
self._azureml = azureml
|
|
93
|
-
|
|
94
67
|
|
|
95
68
|
@staticmethod
|
|
96
69
|
def positional_to_model(value):
|
|
@@ -18,39 +18,32 @@ import pprint
|
|
|
18
18
|
import re # noqa: F401
|
|
19
19
|
import six
|
|
20
20
|
|
|
21
|
-
from flywheel.models.azure_ml_integration import AzureMLIntegration # noqa: F401,E501
|
|
22
21
|
from flywheel.models.jupyterhub_workspace import JupyterhubWorkspace # noqa: F401,E501
|
|
23
22
|
|
|
24
23
|
class ProjectSettingsWorkspacesInput(object):
|
|
25
24
|
|
|
26
25
|
swagger_types = {
|
|
27
|
-
'jupyterhub': 'JupyterhubWorkspace'
|
|
28
|
-
'azureml': 'AzureMLIntegration'
|
|
26
|
+
'jupyterhub': 'JupyterhubWorkspace'
|
|
29
27
|
}
|
|
30
28
|
|
|
31
29
|
attribute_map = {
|
|
32
|
-
'jupyterhub': 'jupyterhub'
|
|
33
|
-
'azureml': 'azureml'
|
|
30
|
+
'jupyterhub': 'jupyterhub'
|
|
34
31
|
}
|
|
35
32
|
|
|
36
33
|
rattribute_map = {
|
|
37
|
-
'jupyterhub': 'jupyterhub'
|
|
38
|
-
'azureml': 'azureml'
|
|
34
|
+
'jupyterhub': 'jupyterhub'
|
|
39
35
|
}
|
|
40
36
|
|
|
41
|
-
def __init__(self, jupyterhub=None
|
|
37
|
+
def __init__(self, jupyterhub=None): # noqa: E501
|
|
42
38
|
"""ProjectSettingsWorkspacesInput - a model defined in Swagger"""
|
|
43
39
|
super(ProjectSettingsWorkspacesInput, self).__init__()
|
|
44
40
|
|
|
45
41
|
self._jupyterhub = None
|
|
46
|
-
self._azureml = None
|
|
47
42
|
self.discriminator = None
|
|
48
43
|
self.alt_discriminator = None
|
|
49
44
|
|
|
50
45
|
if jupyterhub is not None:
|
|
51
46
|
self.jupyterhub = jupyterhub
|
|
52
|
-
if azureml is not None:
|
|
53
|
-
self.azureml = azureml
|
|
54
47
|
|
|
55
48
|
@property
|
|
56
49
|
def jupyterhub(self):
|
|
@@ -73,27 +66,6 @@ class ProjectSettingsWorkspacesInput(object):
|
|
|
73
66
|
|
|
74
67
|
self._jupyterhub = jupyterhub
|
|
75
68
|
|
|
76
|
-
@property
|
|
77
|
-
def azureml(self):
|
|
78
|
-
"""Gets the azureml of this ProjectSettingsWorkspacesInput.
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
:return: The azureml of this ProjectSettingsWorkspacesInput.
|
|
82
|
-
:rtype: AzureMLIntegration
|
|
83
|
-
"""
|
|
84
|
-
return self._azureml
|
|
85
|
-
|
|
86
|
-
@azureml.setter
|
|
87
|
-
def azureml(self, azureml):
|
|
88
|
-
"""Sets the azureml of this ProjectSettingsWorkspacesInput.
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
:param azureml: The azureml of this ProjectSettingsWorkspacesInput. # noqa: E501
|
|
92
|
-
:type: AzureMLIntegration
|
|
93
|
-
"""
|
|
94
|
-
|
|
95
|
-
self._azureml = azureml
|
|
96
|
-
|
|
97
69
|
|
|
98
70
|
@staticmethod
|
|
99
71
|
def positional_to_model(value):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: flywheel-sdk
|
|
3
|
-
Version: 20.1.
|
|
3
|
+
Version: 20.1.4rc0
|
|
4
4
|
Summary: Flywheel SDK
|
|
5
5
|
Home-page:
|
|
6
6
|
Author-email: support@flywheel.io
|
|
@@ -20,6 +20,7 @@ Dynamic: author-email
|
|
|
20
20
|
Dynamic: description
|
|
21
21
|
Dynamic: keywords
|
|
22
22
|
Dynamic: license
|
|
23
|
+
Dynamic: license-file
|
|
23
24
|
Dynamic: project-url
|
|
24
25
|
Dynamic: requires-dist
|
|
25
26
|
Dynamic: summary
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
flywheel/__init__.py,sha256=
|
|
2
|
-
flywheel/api_client.py,sha256=
|
|
1
|
+
flywheel/__init__.py,sha256=DKg8-tTGPbrjFuF_6xfSoADp-id1_CRTzVCUZujJPPQ,44621
|
|
2
|
+
flywheel/api_client.py,sha256=21nd_qYWYJb6Zb-myMnq4IS6kIV-MNpHi-pt_WGcFuc,29574
|
|
3
3
|
flywheel/client.py,sha256=LMvn2aSdtn-waCpXzux8FKJxEB0469SJg5ZNnB5BqTc,10476
|
|
4
|
-
flywheel/configuration.py,sha256=
|
|
4
|
+
flywheel/configuration.py,sha256=uFQtCo_CSKWb-SAj6IozrQoJ5g2W0Y5wD2_4Xkc1Qeg,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=
|
|
8
|
+
flywheel/flywheel.py,sha256=AZZbgAY7jaEwcQakNKBgrshCk1710ojwrm65PY916nk,397232
|
|
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=Luybe_pjqufXgw3LHSwPrSWFKrrAH6UU3IvTtSeCoAQ,13604
|
|
@@ -46,7 +46,7 @@ flywheel/api/uids_api.py,sha256=mFStWRKbdgymR_FYDHq8EsOiTfDKjz2XEcWT1XQUYtQ,4946
|
|
|
46
46
|
flywheel/api/upload_api.py,sha256=emrzAmurhGb-uBI7Ewckbn5DyP9LBkfn6OI1zxhKnb8,38540
|
|
47
47
|
flywheel/api/users_api.py,sha256=t6CgyTGKdr-ojDi_wW3Zpgw3XhiUE7shDXxKLK3__ZY,85397
|
|
48
48
|
flywheel/api/views_api.py,sha256=ZbPYA_sOQ9qnOjkOUeioV0v08VPbsuuOnMP3EBySEVY,44375
|
|
49
|
-
flywheel/models/__init__.py,sha256=
|
|
49
|
+
flywheel/models/__init__.py,sha256=RFFdqDkYHnqLKFpKE4oH8cYRm6rqjyFwplRNGaZ_7hM,42501
|
|
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
|
|
@@ -64,7 +64,7 @@ flywheel/models/acquisition_parents.py,sha256=G-mcOdBtSJZQPbD6mSgfez3AZ-FYQf_oXg
|
|
|
64
64
|
flywheel/models/acquisition_template_options.py,sha256=bbvtpv0DD24UjtJLA6tuC2NgifwoLAap7Lno6j8Eeuk,7436
|
|
65
65
|
flywheel/models/acquisition_upsert_input.py,sha256=OKyzNC8CvrhKwl4ikcmDR2OTgEt3Kncp_NLhM_B6ct4,9423
|
|
66
66
|
flywheel/models/acquisition_upsert_output.py,sha256=KvOcTqnJq_oct1XzblgdetZJKRviSTTAKa8TmYBL4dY,6498
|
|
67
|
-
flywheel/models/action.py,sha256=
|
|
67
|
+
flywheel/models/action.py,sha256=fS76JIhFWzKS9vzc7stuY4lAojzNTvupDEfJbMIemrc,3436
|
|
68
68
|
flywheel/models/adhoc_analysis_input.py,sha256=aysSK-CiV76WN5tUYvNObBivFDYjIcu-NEXTky3TWzw,6633
|
|
69
69
|
flywheel/models/analysis.py,sha256=o2cG94BT-qsA1ITF89XNHw2usGoRiDjzvNVU4_Zyy7A,516
|
|
70
70
|
flywheel/models/analysis_container_output.py,sha256=Vptxnt3l9_UPQfaJ6EntrPxZL20OxAEem8FoJ_8Lysk,963
|
|
@@ -92,12 +92,6 @@ flywheel/models/avatars.py,sha256=rvnQEtfdlEwt5GPSZ-NwnINO0c58MJxEZdZMj-hPrX8,57
|
|
|
92
92
|
flywheel/models/aws_creds.py,sha256=c7Gk7rQ2Qu6scHPLwFUu_8RHu5GMqXuWdWVPoe09Ti0,5661
|
|
93
93
|
flywheel/models/aws_storage.py,sha256=Z_h1SJzBgJH8AKrol9vQmrfGfG2IYNN3Yl5WD_lwR4E,9249
|
|
94
94
|
flywheel/models/azure_creds.py,sha256=YSe6kfxVZQWgXxA1SitQbbtoibOj6SnFmUguXFhkM0U,5572
|
|
95
|
-
flywheel/models/azure_ml_account.py,sha256=EuiipOG5FH0WMWvupxmpd4XkN618Q9oIQeitMe72dp8,5136
|
|
96
|
-
flywheel/models/azure_ml_initialization.py,sha256=tLi5iDETyY4V2qTI_UILNswUYNMpHFH3AeJcUAfP8zg,7585
|
|
97
|
-
flywheel/models/azure_ml_integration.py,sha256=BqSOhHO0p5VlivYRmtEpx-3jlNAH2UsLblolgPtUgGQ,6531
|
|
98
|
-
flywheel/models/azure_ml_resource_init_status.py,sha256=bq0BczJrtxq-uOGy1xJ3lWFI4K1n1OayRNOGxs5KARs,669
|
|
99
|
-
flywheel/models/azure_ml_workspace.py,sha256=rq8sxsCU3D6OBTr24VI-TDdOzoK-ddzoQ3epQ1Y9pcc,9250
|
|
100
|
-
flywheel/models/azure_ml_workspace_input.py,sha256=yvo28iju0V7gvYYdoXBSjV3SH47LHUSRJ9qMyppcP5E,5300
|
|
101
95
|
flywheel/models/base_aet.py,sha256=2CHubbZHUifaLbB9V_RVJFmTO-HrC4NLxsf66gMwdZw,6181
|
|
102
96
|
flywheel/models/base_compute.py,sha256=xgVuApFltjgYlF9JVvJXzq5sIiVOslZ-iaian6DHHPM,11185
|
|
103
97
|
flywheel/models/batch.py,sha256=rNoUcYjqktWkcY1Z_FKuJbmBtEW_Ek6I1x3PbAtV2Po,8879
|
|
@@ -176,7 +170,7 @@ flywheel/models/container_reference.py,sha256=wcTb2v4lRrLU7oxeIooS0kZyxD-q9rDOBZ
|
|
|
176
170
|
flywheel/models/container_reference_with_label.py,sha256=wb6U1ckU-y0PoO6U0aKh6doVgFbgSsrrFk3IVwYV2KA,5990
|
|
177
171
|
flywheel/models/container_session_parents.py,sha256=gMIcIwUfFRipoIx2u_6eeSzCxnrPR97c1os-4Jke10U,531
|
|
178
172
|
flywheel/models/container_subject_parents.py,sha256=uwrfrwLpL8Gdxc_s2o_iV5kFjrmSlmA9dT7JmvjpXgg,531
|
|
179
|
-
flywheel/models/container_type.py,sha256=
|
|
173
|
+
flywheel/models/container_type.py,sha256=cJHOelgRr7IuaQbCqUPslFJs3j-apqgpsrJBXVAIaKo,821
|
|
180
174
|
flywheel/models/container_uidcheck.py,sha256=Ld7gohp29Pm28SYlUoV07iAj-kM8quUoXBCo8jJ5KVA,7105
|
|
181
175
|
flywheel/models/container_update.py,sha256=JN5C01CeKegQImm7kE9TD3AytKfafL5_rMahbJGYoT0,3916
|
|
182
176
|
flywheel/models/context_input.py,sha256=PyafRR26gT42JPHW-VvlawJrxwHK6eZ-i4hZm_e2wl4,5649
|
|
@@ -186,7 +180,7 @@ flywheel/models/core_models_jobs_api_key_input.py,sha256=yzs7jLOGCFeNuUENM4mxesu
|
|
|
186
180
|
flywheel/models/create_report_input.py,sha256=JpkgTHRQA8TK_K1ViU5utiX_XV0YIO1ZekkPlpxTt70,7323
|
|
187
181
|
flywheel/models/creds.py,sha256=kFhJ7_1zmHzHneoan4XKlJ7iRDIgZKuZFbnjCBQg28o,3876
|
|
188
182
|
flywheel/models/curator.py,sha256=S1yhs6s-gCj-Zqz0NWrXE873xsBq7Ha4Ym82qWeABDs,5726
|
|
189
|
-
flywheel/models/current_user_output.py,sha256=
|
|
183
|
+
flywheel/models/current_user_output.py,sha256=p7Zlfajmtqf3PRbDLBtvGhPKaU6zv2QVRvc5oiYp4GY,17621
|
|
190
184
|
flywheel/models/daily_report_usage.py,sha256=Fyst4zrcXpBPnTdVWm_vmRf8aNJhhZSVyHy4F-MdB9E,18632
|
|
191
185
|
flywheel/models/data_strategy.py,sha256=CSkjkzS6o8TglM0zaTxykMoAIztFdIoNUauzwMyAhTs,572
|
|
192
186
|
flywheel/models/data_view.py,sha256=T-6NU0roubb9wpij4MXS33GZkoyAKT1S2IbJE3tFS8Q,541
|
|
@@ -448,7 +442,7 @@ flywheel/models/modality_modify.py,sha256=M8hfkMZr4QlelTkdn5dNclboT0PZgX8xfWtnRA
|
|
|
448
442
|
flywheel/models/modality_output.py,sha256=1FR4OqLFCoA4XY4JNA7UxQvDf5bym58QtDq5reLxYBM,7348
|
|
449
443
|
flywheel/models/modified_result.py,sha256=MYqVs34hSB2_JdgWDaThgkVmbx3MKhAEFKnhleJpeXU,5300
|
|
450
444
|
flywheel/models/modify_report_input.py,sha256=bYbiFCrJHAfIs9--slG5I6v8VvhW5oPGvuLYI_9nBkA,4714
|
|
451
|
-
flywheel/models/modify_user_input.py,sha256=
|
|
445
|
+
flywheel/models/modify_user_input.py,sha256=32SwhuJ3xZBzYZuk5yriCuaQYGdkYbG4qBWGxQqqOiQ,11593
|
|
452
446
|
flywheel/models/move_conflict.py,sha256=UvjPbnV7zqcMLALpyiS61H6uT2DVns-LT9S2WJxFmrE,8168
|
|
453
447
|
flywheel/models/note.py,sha256=9wVVvRZU_6KmDnN8CNqHD12FFQFmWR0avNXiqflUfk8,9714
|
|
454
448
|
flywheel/models/note_input.py,sha256=PME-p3R2i9SSmsMT_xn3i5TUT5jwVsriKKWoh6KSiYc,4515
|
|
@@ -504,8 +498,8 @@ flywheel/models/project_settings_input.py,sha256=a1CpJ4vHxOK2Pzyrmpn1L0RD7QDfTwq
|
|
|
504
498
|
flywheel/models/project_settings_output.py,sha256=Q3G764ESOiUFZAX_IBJim62XrPhFKIiJWyo5_3fd-08,8967
|
|
505
499
|
flywheel/models/project_settings_sharing.py,sha256=xjCScYFS5Xx0AYnqTbgCnp9lMYIAGidUVXHRl-CE3kU,10194
|
|
506
500
|
flywheel/models/project_settings_sharing_input.py,sha256=0pWyRu1XOkjvxFiLrfdgAhoHTWup5BzobsPPwlvCO8Y,10653
|
|
507
|
-
flywheel/models/project_settings_workspaces.py,sha256=
|
|
508
|
-
flywheel/models/project_settings_workspaces_input.py,sha256=
|
|
501
|
+
flywheel/models/project_settings_workspaces.py,sha256=8CkUpTe3aVRvbB8j5US8NyazbVeaGh7VngB8byzG7kc,4760
|
|
502
|
+
flywheel/models/project_settings_workspaces_input.py,sha256=j0f9EKfUxXaAXM9zaYrUObf05wWed7IFDHQCnfYyeUw,4889
|
|
509
503
|
flywheel/models/project_share_level.py,sha256=bLJqate_wODfnwjb2sW5yEeZQqnKR1DgsZ8FEs9DJqY,601
|
|
510
504
|
flywheel/models/project_sharing_settings_project_contact.py,sha256=Qzxdl1BWV6TWO90AdQDSZV8RqhUqkBROZ_izIvfybFA,544
|
|
511
505
|
flywheel/models/project_sharing_settings_project_counters.py,sha256=NjT4K9LGxXHapIy2F370HSmNfiHSjoNDzf7v1HYogTM,935
|
|
@@ -707,8 +701,8 @@ flywheel/models/virus_scan_state.py,sha256=zBmk7x3ZoDhEozIeD-Gw7CEkU7yWYKFMFXklL
|
|
|
707
701
|
flywheel/models/work_in_progress_features.py,sha256=dZ_cJTztcU3wPIUKptwZzb7hdv9mo27wXfWgolkJa1k,3944
|
|
708
702
|
flywheel/models/zipfile_info.py,sha256=8ivqs0rTQaiC8KirTaK_WqSGkLvCndI_58dylOBKwa4,5243
|
|
709
703
|
flywheel/models/zipfile_member_info.py,sha256=zAg9wRUeYXbz6bvXdo4xYFHtvv9eRSCjvyaTrQ3zvN4,6346
|
|
710
|
-
flywheel_sdk-20.1.
|
|
711
|
-
flywheel_sdk-20.1.
|
|
712
|
-
flywheel_sdk-20.1.
|
|
713
|
-
flywheel_sdk-20.1.
|
|
714
|
-
flywheel_sdk-20.1.
|
|
704
|
+
flywheel_sdk-20.1.4rc0.dist-info/licenses/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
|
|
705
|
+
flywheel_sdk-20.1.4rc0.dist-info/METADATA,sha256=ajeM0tAoa5vZbXQwC6iAKIQYJSeEIRJCtl1A26fslOc,1119
|
|
706
|
+
flywheel_sdk-20.1.4rc0.dist-info/WHEEL,sha256=MAQBAzGbXNI3bUmkDsiV_duv8i-gcdnLzw7cfUFwqhU,109
|
|
707
|
+
flywheel_sdk-20.1.4rc0.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
|
|
708
|
+
flywheel_sdk-20.1.4rc0.dist-info/RECORD,,
|