forked from globus/globus-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.py
More file actions
444 lines (330 loc) · 13.5 KB
/
client.py
File metadata and controls
444 lines (330 loc) · 13.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
from __future__ import annotations
import logging
import typing as t
import uuid
from globus_sdk import client, paging, response
from globus_sdk.response import IterableJSONAPIResponse
from globus_sdk.scopes import TransferScopes
from globus_sdk.services.transfer.errors import TransferAPIError
from globus_sdk.transport import RetryConfig
from .data import (
BookmarkCreateDocument,
BookmarkUpdateDocument,
TunnelCreateDocument,
TunnelUpdateDocument,
)
from .transport import TRANSFER_V2_DEFAULT_RETRY_CHECKS
log = logging.getLogger(__name__)
class TransferClientV2(client.BaseClient):
r"""
Client for the `/v2/ routes of the Globus Transfer API
<https://docs.globus.org/api/transfer/#v2>`_.
.. sdk-sphinx-copy-params:: BaseClient
This class provides helper methods for /v2/ functionality in the Transfer
API as it is developed.
**Paginated Calls**
Methods which support pagination can be called as paginated or unpaginated methods.
If the method name is ``TransferClientV2.foo``, the paginated version is
``TransferClientV2.paginated.foo``.
Using ``TransferClientV2.list_stream_access_points`` as an example::
from globus_sdk.experimental import TransferClientV2
tc = TransferClientV2(...)
# this is the unpaginated version
for stream_access_point in tc.list_stream_access_points():
print(stream_access_point["attributes"]["display_name"])
# this is the paginated version
for page in tc.paginated.list_stream_access_points():
for stream_access_point in page:
print(stream_access_point["attributes"]["display_name"])
.. automethodlist:: globus_sdk.experimental.TransferClientV2
"""
service_name = "transfer"
error_class = TransferAPIError
scopes = TransferScopes
default_scope_requirements = [TransferScopes.all]
def _register_standard_retry_checks(self, retry_config: RetryConfig) -> None:
"""Override the default retry checks."""
retry_config.checks.register_many_checks(TRANSFER_V2_DEFAULT_RETRY_CHECKS)
# Tunnel methods
def create_tunnel(
self,
data: dict[str, t.Any] | TunnelCreateDocument,
) -> response.GlobusHTTPResponse:
"""
:param data: Parameters for the tunnel creation
.. tab-set::
.. tab-item:: Example Usage
.. code-block:: python
tc = globus_sdk.experimental.TransferClientV2(...)
data = globus_sdk.experimental.TunnelCreateDocument(...)
result = tc.create_tunnel(data)
print(result["data"]["id"])
.. tab-item:: API Info
``POST /v2/tunnels``
"""
log.debug(f"{self.__class__.__name__}.create_tunnel(...)")
r = self.post("/v2/tunnels", data=data)
return r
def update_tunnel(
self,
tunnel_id: str | uuid.UUID,
update_doc: dict[str, t.Any] | TunnelUpdateDocument,
) -> response.GlobusHTTPResponse:
r"""
:param tunnel_id: The ID of the Tunnel.
:param update_doc: The document that will be sent to the patch API.
.. tab-set::
.. tab-item:: Example Usage
.. code-block:: python
tc = globus_sdk.experimental.TransferClientV2(...)
data = globus_sdk.experimental.TunnelUpdateDocument(...)
result = tc.update_tunnel(tunnel_id, data)
print(result["data"])
.. tab-item:: API Info
``PATCH /v2/tunnels/<tunnel_id>``
"""
log.debug(f"{self.__class__.__name__}.update_tunnel({tunnel_id}, {update_doc})")
r = self.patch(f"/v2/tunnels/{tunnel_id}", data=update_doc)
return r
def get_tunnel(
self,
tunnel_id: str | uuid.UUID,
*,
query_params: dict[str, t.Any] | None = None,
) -> response.GlobusHTTPResponse:
"""
:param tunnel_id: The ID of the Tunnel which we are fetching details about.
:param query_params: Any additional parameters will be passed through
as query params.
.. tab-set::
.. tab-item:: Example Usage
.. code-block:: python
tc = globus_sdk.experimental.TransferClientV2(...)
result = tc.get_tunnel(tunnel_id)
print(result["data"])
.. tab-item:: API Info
``GET /v2/tunnels/<tunnel_id>``
"""
log.debug(f"{self.__class__.__name__}.get_tunnel({tunnel_id}, {query_params})")
r = self.get(f"/v2/tunnels/{tunnel_id}", query_params=query_params)
return r
def delete_tunnel(
self,
tunnel_id: str | uuid.UUID,
) -> response.GlobusHTTPResponse:
"""
:param tunnel_id: The ID of the Tunnel to be deleted.
This will clean up all data associated with a Tunnel.
Note that Tunnels must be stopped before they can be deleted.
.. tab-set::
.. tab-item:: Example Usage
.. code-block:: python
tc = globus_sdk.experimental.TransferClientV2(...)
tc.delete_tunnel(tunnel_id)
.. tab-item:: API Info
``DELETE /v2/tunnels/<tunnel_id>``
"""
log.debug(f"{self.__class__.__name__}.delete_tunnel({tunnel_id})")
r = self.delete(f"/v2/tunnels/{tunnel_id}")
return r
def list_tunnels(
self,
*,
query_params: dict[str, t.Any] | None = None,
) -> IterableJSONAPIResponse:
"""
:param query_params: Any additional parameters will be passed through
as query params.
This will list all the Tunnels created by the authorized user.
.. tab-set::
.. tab-item:: Example Usage
.. code-block:: python
tc = globus_sdk.experimental.TransferClientV2(...)
tc.list_tunnels(tunnel_id)
.. tab-item:: API Info
``GET /v2/tunnels/``
"""
log.debug(f"{self.__class__.__name__}.list_tunnels({query_params})")
r = self.get("/v2/tunnels", query_params=query_params)
return IterableJSONAPIResponse(r)
def get_tunnel_events(
self,
tunnel_id: str | uuid.UUID,
*,
query_params: dict[str, t.Any] | None = None,
) -> IterableJSONAPIResponse:
"""
:param tunnel_id: The ID of the Tunnel which we are fetching events about.
:param query_params: Any additional parameters will be passed through
as query params.
.. tab-set::
.. tab-item:: Example Usage
.. code-block:: python
tc = globus_sdk.experimental.TransferClientV2(...)
result = tc.get_tunnel_events(tunnel_id)
print(result["data"])
.. tab-item:: API Info
``GET /v2/tunnels/<tunnel_id>/events``
"""
log.debug(
f"{self.__class__.__name__}.get_tunnel_events({tunnel_id}, {query_params})"
)
r = self.get(f"/v2/tunnels/{tunnel_id}/events", query_params=query_params)
return IterableJSONAPIResponse(r)
# Stream access point methods
def get_stream_access_point(
self,
stream_ap_id: str | uuid.UUID,
*,
query_params: dict[str, t.Any] | None = None,
) -> response.GlobusHTTPResponse:
"""
:param stream_ap_id: The ID of the steaming access point to lookup.
:param query_params: Any additional parameters will be passed through
as query params.
Get a stream access point by id.
.. tab-set::
.. tab-item:: Example Usage
.. code-block:: python
tc = globus_sdk.experimental.TransferClientV2(...)
tc.get_stream_access_point(stream_ap_id)
.. tab-item:: API Info
``GET /v2/stream_access_points/<stream_ap_id>``
"""
log.debug(
f"{self.__class__.__name__}."
f"get_stream_access_point({stream_ap_id}, {query_params})"
)
r = self.get(
f"/v2/stream_access_points/{stream_ap_id}", query_params=query_params
)
return r
@paging.has_paginator(paging.JSONAPIPaginator)
def list_stream_access_points(
self,
*,
query_params: dict[str, t.Any] | None = None,
) -> IterableJSONAPIResponse:
"""
:param query_params: Any additional parameters will be passed through
as query params.
List stream access points.
.. tab-set::
.. tab-item:: Example Usage
.. code-block:: python
tc = globus_sdk.experimental.TransferClientV2(...)
tc.list_stream_access_points()
.. tab-item:: API Info
``GET /v2/stream_access_points``
"""
log.debug(
f"{self.__class__.__name__}.list_stream_access_points({query_params})"
)
r = self.get("/v2/stream_access_points", query_params=query_params)
return IterableJSONAPIResponse(r)
def create_bookmark(
self, data: dict[str, t.Any] | BookmarkCreateDocument
) -> response.GlobusHTTPResponse:
"""
:param data: Parameters for bookmark creation
.. tab-set::
.. tab-item:: Example Usage
.. code-block:: python
tc = globus_sdk.experimental.TransferClientV2(...)
data = globus_sdk.experimental.BookmarkCreateDocument(...)
result = tc.create_bookmark(data)
print(result["data"]["id"])
.. tab-item:: API Info
``POST /v2/bookmarks``
"""
log.debug(f"{self.__class__.__name__}.create_bookmark(...)")
r = self.post("/v2/bookmarks", data=data)
return r
def update_bookmark(
self,
bookmark_id: uuid.UUID | str,
update_document: dict[str, t.Any] | BookmarkUpdateDocument,
) -> response.GlobusHTTPResponse:
r"""
:param bookmark_id: The ID of the Bookmark.
:param update_document: The document that will be sent to the patch API.
.. tab-set::
.. tab-item:: Example Usage
.. code-block:: python
tc = globus_sdk.experimental.TransferClientV2(...)
data = globus_sdk.experimental.BookmarkUpdateDocument(...)
result = tc.update_bookmark(bookmark_id, data)
print(result["data"])
.. tab-item:: API Info
``PATCH /v2/bookmarks/<bookmark_id>``
"""
log.debug(
f"{self.__class__.__name__}."
f"update_bookmark({bookmark_id}, {update_document})"
)
r = self.patch(f"/v2/bookmarks/{bookmark_id}", data=update_document)
return r
def get_bookmark(
self,
bookmark_id: uuid.UUID | str,
*,
query_params: dict[str, t.Any] | None = None,
) -> response.GlobusHTTPResponse:
"""
:param bookmark_id: The ID of the Bookmark for which we are fetching details.
:param query_params: Any additional parameters will be passed through
as request parameters on the URL.
.. tab-set::
.. tab-item:: Example Usage
.. code-block:: python
tc = globus_sdk.experimental.TransferClientV2(...)
query_params = {"include": "collection"}
result = tc.get_bookmark(bookmark_id, query_params)
print(result["data"])
.. tab-item:: API Info
``GET /v2/bookmarks/<bookmark_id>``
"""
log.debug(
f"{self.__class__.__name__}.get_bookmark({bookmark_id}, {query_params})"
)
r = self.get(f"/v2/bookmarks/{bookmark_id}", query_params=query_params)
return r
def delete_bookmark(
self,
bookmark_id: uuid.UUID | str,
) -> response.GlobusHTTPResponse:
"""
:param bookmark_id: The ID of the Bookmark to be deleted.
.. tab-set::
.. tab-item:: Example Usage
.. code-block:: python
tc = globus_sdk.experimental.TransferClientV2(...)
tc.delete_bookmark(bookmark_id)
.. tab-item:: API Info
``DELETE /v2/bookmarks/<bookmark_id>``
"""
log.debug(f"{self.__class__.__name__}.delete_bookmark({bookmark_id})")
r = self.delete(f"/v2/bookmarks/{bookmark_id}")
return r
def list_bookmarks(
self,
*,
query_params: dict[str, t.Any] | None = None,
) -> IterableJSONAPIResponse:
"""
:param query_params: Any additional parameters will be passed through
as request parameters on the URL.
This will list all Bookmarks created by the authenticated user's primary
and linked identities.
.. tab-set::
.. tab-item:: Example Usage
.. code-block:: python
tc = globus_sdk.experimental.TransferClientV2(...)
query_params = {"include": "collection"}
tc.list_bookmarks(query_params)
.. tab-item:: API Info
``GET /v2/bookmarks``
"""
log.debug(f"{self.__class__.__name__}.list_bookmarks({query_params})")
r = self.get("/v2/bookmarks", query_params=query_params)
return IterableJSONAPIResponse(r)