Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Development
-----------

- Update the Streams-related type annotations to accept UUIDs. (:pr:`NUMBER`)
8 changes: 4 additions & 4 deletions src/globus_sdk/services/transfer/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -2746,7 +2746,7 @@ def create_tunnel(

def update_tunnel(
self,
tunnel_id: str,
tunnel_id: str | uuid.UUID,
update_doc: dict[str, t.Any],
) -> response.GlobusHTTPResponse:
r"""
Expand Down Expand Up @@ -2778,7 +2778,7 @@ def update_tunnel(

def get_tunnel(
self,
tunnel_id: str,
tunnel_id: str | uuid.UUID,
*,
query_params: dict[str, t.Any] | None = None,
) -> response.GlobusHTTPResponse:
Expand Down Expand Up @@ -2807,7 +2807,7 @@ def get_tunnel(

def delete_tunnel(
self,
tunnel_id: str,
tunnel_id: str | uuid.UUID,
) -> response.GlobusHTTPResponse:
"""
:param tunnel_id: The ID of the Tunnel to be deleted.
Expand Down Expand Up @@ -2862,7 +2862,7 @@ def list_tunnels(

def get_stream_access_point(
self,
stream_ap_id: str,
stream_ap_id: str | uuid.UUID,
*,
query_params: dict[str, t.Any] | None = None,
) -> response.GlobusHTTPResponse:
Expand Down