flywheel-sdk 18.5.0__py2.py3-none-any.whl → 18.5.0rc0__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/api_client.py +1 -1
- flywheel/configuration.py +2 -2
- flywheel/flywheel.py +1 -1
- flywheel/models/__init__.py +1 -1
- flywheel/models/structured_query_value_suggestion.py +4 -58
- {flywheel_sdk-18.5.0.dist-info → flywheel_sdk-18.5.0rc0.dist-info}/METADATA +1 -1
- {flywheel_sdk-18.5.0.dist-info → flywheel_sdk-18.5.0rc0.dist-info}/RECORD +10 -10
- {flywheel_sdk-18.5.0.dist-info → flywheel_sdk-18.5.0rc0.dist-info}/WHEEL +1 -1
- {flywheel_sdk-18.5.0.dist-info → flywheel_sdk-18.5.0rc0.dist-info}/LICENSE.txt +0 -0
- {flywheel_sdk-18.5.0.dist-info → flywheel_sdk-18.5.0rc0.dist-info}/top_level.txt +0 -0
flywheel/api_client.py
CHANGED
|
@@ -81,7 +81,7 @@ class ApiClient(object):
|
|
|
81
81
|
self.default_query_params = []
|
|
82
82
|
self.cookie = cookie
|
|
83
83
|
# Set default User-Agent.
|
|
84
|
-
self.user_agent = 'Swagger-Codegen/18.5.0/python'
|
|
84
|
+
self.user_agent = 'Swagger-Codegen/18.5.0-rc0/python'
|
|
85
85
|
self.last_response = None
|
|
86
86
|
self._version_check_fn = None
|
|
87
87
|
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: 18.5.0\n"\
|
|
256
|
-
"SDK Package Version: 18.5.0".\
|
|
255
|
+
"Version of the API: 18.5.0-rc0\n"\
|
|
256
|
+
"SDK Package Version: 18.5.0-rc0".\
|
|
257
257
|
format(env=sys.platform, pyversion=sys.version)
|
flywheel/flywheel.py
CHANGED
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: 18.5.0
|
|
9
|
+
OpenAPI spec version: 18.5.0-rc0
|
|
10
10
|
|
|
11
11
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
12
12
|
"""
|
|
@@ -22,42 +22,30 @@ class StructuredQueryValueSuggestion(object):
|
|
|
22
22
|
|
|
23
23
|
swagger_types = {
|
|
24
24
|
'display': 'str',
|
|
25
|
-
'value': 'str'
|
|
26
|
-
'type': 'str',
|
|
27
|
-
'facet': 'bool'
|
|
25
|
+
'value': 'str'
|
|
28
26
|
}
|
|
29
27
|
|
|
30
28
|
attribute_map = {
|
|
31
29
|
'display': 'display',
|
|
32
|
-
'value': 'value'
|
|
33
|
-
'type': 'type',
|
|
34
|
-
'facet': 'facet'
|
|
30
|
+
'value': 'value'
|
|
35
31
|
}
|
|
36
32
|
|
|
37
33
|
rattribute_map = {
|
|
38
34
|
'display': 'display',
|
|
39
|
-
'value': 'value'
|
|
40
|
-
'type': 'type',
|
|
41
|
-
'facet': 'facet'
|
|
35
|
+
'value': 'value'
|
|
42
36
|
}
|
|
43
37
|
|
|
44
|
-
def __init__(self, display=None, value=None
|
|
38
|
+
def __init__(self, display=None, value=None): # noqa: E501
|
|
45
39
|
"""StructuredQueryValueSuggestion - a model defined in Swagger"""
|
|
46
40
|
super(StructuredQueryValueSuggestion, self).__init__()
|
|
47
41
|
|
|
48
42
|
self._display = None
|
|
49
43
|
self._value = None
|
|
50
|
-
self._type = None
|
|
51
|
-
self._facet = None
|
|
52
44
|
self.discriminator = None
|
|
53
45
|
self.alt_discriminator = None
|
|
54
46
|
|
|
55
47
|
self.display = display
|
|
56
48
|
self.value = value
|
|
57
|
-
if type is not None:
|
|
58
|
-
self.type = type
|
|
59
|
-
if facet is not None:
|
|
60
|
-
self.facet = facet
|
|
61
49
|
|
|
62
50
|
@property
|
|
63
51
|
def display(self):
|
|
@@ -105,48 +93,6 @@ class StructuredQueryValueSuggestion(object):
|
|
|
105
93
|
|
|
106
94
|
self._value = value
|
|
107
95
|
|
|
108
|
-
@property
|
|
109
|
-
def type(self):
|
|
110
|
-
"""Gets the type of this StructuredQueryValueSuggestion.
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
:return: The type of this StructuredQueryValueSuggestion.
|
|
114
|
-
:rtype: str
|
|
115
|
-
"""
|
|
116
|
-
return self._type
|
|
117
|
-
|
|
118
|
-
@type.setter
|
|
119
|
-
def type(self, type):
|
|
120
|
-
"""Sets the type of this StructuredQueryValueSuggestion.
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
:param type: The type of this StructuredQueryValueSuggestion. # noqa: E501
|
|
124
|
-
:type: str
|
|
125
|
-
"""
|
|
126
|
-
|
|
127
|
-
self._type = type
|
|
128
|
-
|
|
129
|
-
@property
|
|
130
|
-
def facet(self):
|
|
131
|
-
"""Gets the facet of this StructuredQueryValueSuggestion.
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
:return: The facet of this StructuredQueryValueSuggestion.
|
|
135
|
-
:rtype: bool
|
|
136
|
-
"""
|
|
137
|
-
return self._facet
|
|
138
|
-
|
|
139
|
-
@facet.setter
|
|
140
|
-
def facet(self, facet):
|
|
141
|
-
"""Sets the facet of this StructuredQueryValueSuggestion.
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
:param facet: The facet of this StructuredQueryValueSuggestion. # noqa: E501
|
|
145
|
-
:type: bool
|
|
146
|
-
"""
|
|
147
|
-
|
|
148
|
-
self._facet = facet
|
|
149
|
-
|
|
150
96
|
|
|
151
97
|
@staticmethod
|
|
152
98
|
def positional_to_model(value):
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
flywheel/__init__.py,sha256=XcDpBJ6GE2vlOWTwdUfm_XpUbNutZMCPAo42G0Lb2Wc,44859
|
|
2
|
-
flywheel/api_client.py,sha256=
|
|
2
|
+
flywheel/api_client.py,sha256=Q8pfbNjbCul92AuXVm1NFhLlI2Y_dyHgUl9wPi780gY,28940
|
|
3
3
|
flywheel/client.py,sha256=LMvn2aSdtn-waCpXzux8FKJxEB0469SJg5ZNnB5BqTc,10476
|
|
4
|
-
flywheel/configuration.py,sha256=
|
|
4
|
+
flywheel/configuration.py,sha256=ODNnm29EBqUBzflWslqwIDip1qt_kE7Y7BExXfwKcr4,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=H3tpBE5xtHJCuQIT7M4A1-ajcBpXwZQTtNmGMe-M4nA,392703
|
|
9
9
|
flywheel/gear_context.py,sha256=xOjNzpReJPAKhdpfpQ-gDwsDoIdxAcS5CG-b1pJ69-o,13338
|
|
10
10
|
flywheel/partial_reader.py,sha256=SkMgwaGZeeVaN7f9dzmVitBFnQv8ARLJgEaQP36l92s,1222
|
|
11
11
|
flywheel/rest.py,sha256=hRPcmGLghBkiZ06jyFEE39iEdP0-6o4pDWj2Ocl7mSc,13119
|
|
@@ -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=ThTGkL_oE-ixB9akEZEm2pogkYBa_m9qAM52W5ClRC0,82850
|
|
48
48
|
flywheel/api/views_api.py,sha256=Xshmzxd9XEwWavyMCzKwDXp_4Hep4-6MFOEBM_lBato,44403
|
|
49
|
-
flywheel/models/__init__.py,sha256=
|
|
49
|
+
flywheel/models/__init__.py,sha256=QkMtOiMiiX1vNXetSBd_tSm1QxOSTxNglud1aAJ8LqU,42739
|
|
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
|
|
@@ -645,7 +645,7 @@ flywheel/models/storage_strategy.py,sha256=kEotrStRqN4DfylrVQQzpYBA7k9MzkUPnl-V6
|
|
|
645
645
|
flywheel/models/storage_strategy_config.py,sha256=542hXYtvqb5BbD3Pq4QL7gVcOhozuJrFWat-bIDvrL8,5545
|
|
646
646
|
flywheel/models/structured_query.py,sha256=gqY-80w38_nzdHEGOSkx2XC50DLOxAhc842s7i7CX4E,4823
|
|
647
647
|
flywheel/models/structured_query_suggestions.py,sha256=KtbO45OLlQ0dm31RJlhzj0tqQ-MkgULAcGZ3Yko71jY,5743
|
|
648
|
-
flywheel/models/structured_query_value_suggestion.py,sha256=
|
|
648
|
+
flywheel/models/structured_query_value_suggestion.py,sha256=agmPO_3_V9xEAUqqWqekGJTpyoYmJ5x5tZnMIOoJKcM,5453
|
|
649
649
|
flywheel/models/subject.py,sha256=gOctKSjA1VaQSPM36LyEj1ViUk7Qg1SLTM8c7u4ByCM,512
|
|
650
650
|
flywheel/models/subject_container_output.py,sha256=HBBSU9efCfxzuDTOpypDlXa82LafqyEjSfKOyf6pbCo,1095
|
|
651
651
|
flywheel/models/subject_input.py,sha256=iFTye5hY0EgmvrmIyFH8Hjo3FUE9GwH1sK6ToY5_r4I,15390
|
|
@@ -704,8 +704,8 @@ flywheel/models/virus_scan_state.py,sha256=zBmk7x3ZoDhEozIeD-Gw7CEkU7yWYKFMFXklL
|
|
|
704
704
|
flywheel/models/work_in_progress_features.py,sha256=dZ_cJTztcU3wPIUKptwZzb7hdv9mo27wXfWgolkJa1k,3944
|
|
705
705
|
flywheel/models/zipfile_info.py,sha256=8ivqs0rTQaiC8KirTaK_WqSGkLvCndI_58dylOBKwa4,5243
|
|
706
706
|
flywheel/models/zipfile_member_info.py,sha256=zAg9wRUeYXbz6bvXdo4xYFHtvv9eRSCjvyaTrQ3zvN4,6346
|
|
707
|
-
flywheel_sdk-18.5.
|
|
708
|
-
flywheel_sdk-18.5.
|
|
709
|
-
flywheel_sdk-18.5.
|
|
710
|
-
flywheel_sdk-18.5.
|
|
711
|
-
flywheel_sdk-18.5.
|
|
707
|
+
flywheel_sdk-18.5.0rc0.dist-info/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
|
|
708
|
+
flywheel_sdk-18.5.0rc0.dist-info/METADATA,sha256=d5ThiR9ljZzTG8j_O-6ZdjAEb9-hMA4wxDw28XE_WyI,949
|
|
709
|
+
flywheel_sdk-18.5.0rc0.dist-info/WHEEL,sha256=pOwdCRdxkCaq8tWTvnGIC-q_meWYHwmqvvQPkeaM2I4,109
|
|
710
|
+
flywheel_sdk-18.5.0rc0.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
|
|
711
|
+
flywheel_sdk-18.5.0rc0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|