flywheel-sdk 18.1.0__py2.py3-none-any.whl → 18.1.1__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 +1 -1
- flywheel/flywheel.py +1 -1
- flywheel/models/signed_url_upload_output.py +28 -1
- {flywheel_sdk-18.1.0.dist-info → flywheel_sdk-18.1.1.dist-info}/METADATA +1 -1
- {flywheel_sdk-18.1.0.dist-info → flywheel_sdk-18.1.1.dist-info}/RECORD +9 -9
- {flywheel_sdk-18.1.0.dist-info → flywheel_sdk-18.1.1.dist-info}/LICENSE.txt +0 -0
- {flywheel_sdk-18.1.0.dist-info → flywheel_sdk-18.1.1.dist-info}/WHEEL +0 -0
- {flywheel_sdk-18.1.0.dist-info → flywheel_sdk-18.1.1.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.1.
|
|
84
|
+
self.user_agent = 'Swagger-Codegen/18.1.1/python'
|
|
85
85
|
self.last_response = None
|
|
86
86
|
self._version_check_fn = None
|
|
87
87
|
self._context = context
|
flywheel/configuration.py
CHANGED
|
@@ -253,5 +253,5 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
|
|
|
253
253
|
"OS: {env}\n"\
|
|
254
254
|
"Python Version: {pyversion}\n"\
|
|
255
255
|
"Version of the API: 0.0.1\n"\
|
|
256
|
-
"SDK Package Version: 18.1.
|
|
256
|
+
"SDK Package Version: 18.1.1".\
|
|
257
257
|
format(env=sys.platform, pyversion=sys.version)
|
flywheel/flywheel.py
CHANGED
|
@@ -25,6 +25,7 @@ class SignedUrlUploadOutput(object):
|
|
|
25
25
|
'uuid': 'str',
|
|
26
26
|
'upload_urls': 'list[str]',
|
|
27
27
|
'upload_headers': 'dict(str, str)',
|
|
28
|
+
'block_ids': 'list[str]',
|
|
28
29
|
's3_multipart_upload_id': 'str',
|
|
29
30
|
'az_multipart_upload_id': 'str',
|
|
30
31
|
'note': 'str'
|
|
@@ -35,6 +36,7 @@ class SignedUrlUploadOutput(object):
|
|
|
35
36
|
'uuid': 'uuid',
|
|
36
37
|
'upload_urls': 'upload_urls',
|
|
37
38
|
'upload_headers': 'upload_headers',
|
|
39
|
+
'block_ids': 'block_ids',
|
|
38
40
|
's3_multipart_upload_id': 's3_multipart_upload_id',
|
|
39
41
|
'az_multipart_upload_id': 'az_multipart_upload_id',
|
|
40
42
|
'note': 'note'
|
|
@@ -45,12 +47,13 @@ class SignedUrlUploadOutput(object):
|
|
|
45
47
|
'uuid': 'uuid',
|
|
46
48
|
'upload_urls': 'upload_urls',
|
|
47
49
|
'upload_headers': 'upload_headers',
|
|
50
|
+
'block_ids': 'block_ids',
|
|
48
51
|
's3_multipart_upload_id': 's3_multipart_upload_id',
|
|
49
52
|
'az_multipart_upload_id': 'az_multipart_upload_id',
|
|
50
53
|
'note': 'note'
|
|
51
54
|
}
|
|
52
55
|
|
|
53
|
-
def __init__(self, provider_id=None, uuid=None, upload_urls=None, upload_headers=None, s3_multipart_upload_id=None, az_multipart_upload_id=None, note=None): # noqa: E501
|
|
56
|
+
def __init__(self, provider_id=None, uuid=None, upload_urls=None, upload_headers=None, block_ids=None, s3_multipart_upload_id=None, az_multipart_upload_id=None, note=None): # noqa: E501
|
|
54
57
|
"""SignedUrlUploadOutput - a model defined in Swagger"""
|
|
55
58
|
super(SignedUrlUploadOutput, self).__init__()
|
|
56
59
|
|
|
@@ -58,6 +61,7 @@ class SignedUrlUploadOutput(object):
|
|
|
58
61
|
self._uuid = None
|
|
59
62
|
self._upload_urls = None
|
|
60
63
|
self._upload_headers = None
|
|
64
|
+
self._block_ids = None
|
|
61
65
|
self._s3_multipart_upload_id = None
|
|
62
66
|
self._az_multipart_upload_id = None
|
|
63
67
|
self._note = None
|
|
@@ -68,6 +72,8 @@ class SignedUrlUploadOutput(object):
|
|
|
68
72
|
self.uuid = uuid
|
|
69
73
|
self.upload_urls = upload_urls
|
|
70
74
|
self.upload_headers = upload_headers
|
|
75
|
+
if block_ids is not None:
|
|
76
|
+
self.block_ids = block_ids
|
|
71
77
|
if s3_multipart_upload_id is not None:
|
|
72
78
|
self.s3_multipart_upload_id = s3_multipart_upload_id
|
|
73
79
|
if az_multipart_upload_id is not None:
|
|
@@ -159,6 +165,27 @@ class SignedUrlUploadOutput(object):
|
|
|
159
165
|
|
|
160
166
|
self._upload_headers = upload_headers
|
|
161
167
|
|
|
168
|
+
@property
|
|
169
|
+
def block_ids(self):
|
|
170
|
+
"""Gets the block_ids of this SignedUrlUploadOutput.
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
:return: The block_ids of this SignedUrlUploadOutput.
|
|
174
|
+
:rtype: list[str]
|
|
175
|
+
"""
|
|
176
|
+
return self._block_ids
|
|
177
|
+
|
|
178
|
+
@block_ids.setter
|
|
179
|
+
def block_ids(self, block_ids):
|
|
180
|
+
"""Sets the block_ids of this SignedUrlUploadOutput.
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
:param block_ids: The block_ids of this SignedUrlUploadOutput. # noqa: E501
|
|
184
|
+
:type: list[str]
|
|
185
|
+
"""
|
|
186
|
+
|
|
187
|
+
self._block_ids = block_ids
|
|
188
|
+
|
|
162
189
|
@property
|
|
163
190
|
def s3_multipart_upload_id(self):
|
|
164
191
|
"""Gets the s3_multipart_upload_id of this SignedUrlUploadOutput.
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
flywheel/__init__.py,sha256=5LblP56oAJjDYGR5Pii8-8b-433jIC99ArzFC4ZHWaY,44736
|
|
2
|
-
flywheel/api_client.py,sha256=
|
|
2
|
+
flywheel/api_client.py,sha256=6JL9_hB8EPUYgc4-JOyt4LUHtTPVQkWRWzAYYFXWQ5A,28073
|
|
3
3
|
flywheel/client.py,sha256=8dmeiik2zjfrM3ZDN6PDsmtC4WUy-STWkkD75NBIRo0,10472
|
|
4
|
-
flywheel/configuration.py,sha256=
|
|
4
|
+
flywheel/configuration.py,sha256=wGNlsj7QfkiSyMPQ3mLfYHpZSAJvuksdkyaM3XbTgfE,8638
|
|
5
5
|
flywheel/drone_login.py,sha256=8nELIBYBJMuPHQ0zdrGjWB20C3OTZbxpFVyxWmQ0kr0,2229
|
|
6
6
|
flywheel/file_spec.py,sha256=5vWBzK8h_YCbwZhcsWRpD7ByO1iw-Zcw-_7B3E5OTEg,1375
|
|
7
7
|
flywheel/finder.py,sha256=ueECCweO48TTAJXudzh3xBbqyhV-Vbzt1NnPUSqEU9U,6739
|
|
8
|
-
flywheel/flywheel.py,sha256=
|
|
8
|
+
flywheel/flywheel.py,sha256=vyPTmlh37CikZICWtx5r8scFx9lIka888KTVfMADAJ8,391552
|
|
9
9
|
flywheel/gear_context.py,sha256=oVLQ3jk9OVq5Ew7jxIrkt_dNBRiLt7eZbFBAy61m37o,13290
|
|
10
10
|
flywheel/partial_reader.py,sha256=SkMgwaGZeeVaN7f9dzmVitBFnQv8ARLJgEaQP36l92s,1222
|
|
11
11
|
flywheel/rest.py,sha256=hRPcmGLghBkiZ06jyFEE39iEdP0-6o4pDWj2Ocl7mSc,13119
|
|
@@ -626,7 +626,7 @@ flywheel/models/sharing_filter_options.py,sha256=RgY6qVu0CYw5jzyqMRpPJnA7rf_Hytn
|
|
|
626
626
|
flywheel/models/signed_fs_upload_output.py,sha256=o4nTuKsnG9MuxPALXmaB4vdop3pOJ3eYXiTCy-KiESo,5226
|
|
627
627
|
flywheel/models/signed_url_cleanup_input.py,sha256=dOMMcQB29HYAoeaW0jhXUWLgrEVyjO6VA8f3LsxhOLA,5238
|
|
628
628
|
flywheel/models/signed_url_upload_input.py,sha256=2DJhrafe-QKA3FtE3rkE33Vdec-o6EPogmgdOu1y-i8,5259
|
|
629
|
-
flywheel/models/signed_url_upload_output.py,sha256=
|
|
629
|
+
flywheel/models/signed_url_upload_output.py,sha256=8VfJ6XQ3Ii5iqzOoZAry0jp7CIyYtmFRjX0PcpTWC7Y,10154
|
|
630
630
|
flywheel/models/site.py,sha256=e-y4u7IHbGftt9HCZqow6oPNbGWkiE5ZZU7XNTpA3fo,15183
|
|
631
631
|
flywheel/models/site_report.py,sha256=LgVUgGehg4RyF-g0CDwWxDTMeii5F_J9Dn1dtrWTPB0,5335
|
|
632
632
|
flywheel/models/site_settings.py,sha256=2eujVpx_tqGc9su7BZcGAkqhBxp2kzgmuHshirowN8Y,9646
|
|
@@ -704,8 +704,8 @@ flywheel/models/workspace_response.py,sha256=5CB8xn1v62CzGVAf1OEJ0197yYY3h1GQFho
|
|
|
704
704
|
flywheel/models/workspace_update.py,sha256=wvVkuJMWfbpriF6Pz7K985vl58o5uG88qE4LzcLvkfs,526
|
|
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.1.
|
|
708
|
-
flywheel_sdk-18.1.
|
|
709
|
-
flywheel_sdk-18.1.
|
|
710
|
-
flywheel_sdk-18.1.
|
|
711
|
-
flywheel_sdk-18.1.
|
|
707
|
+
flywheel_sdk-18.1.1.dist-info/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
|
|
708
|
+
flywheel_sdk-18.1.1.dist-info/METADATA,sha256=0zGfjPlsiaGrGI47Q50oVfnJ0p5ZijKqiWm43b-HZgY,928
|
|
709
|
+
flywheel_sdk-18.1.1.dist-info/WHEEL,sha256=Z-nyYpwrcSqxfdux5Mbn_DQ525iP7J2DG3JgGvOYyTQ,110
|
|
710
|
+
flywheel_sdk-18.1.1.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
|
|
711
|
+
flywheel_sdk-18.1.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|