Skip to content

[Storage] [Named Keywords] [Blob] _container_client.py and aio #40692

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
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
10 changes: 10 additions & 0 deletions sdk/storage/azure-storage-blob/azure/storage/blob/_blob_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,7 @@ def upload_blob_from_url(
encryption_scope: Optional[str] = None,
standard_blob_tier: Optional["StandardBlobTier"] = None,
source_authorization: Optional[str] = None,
source_token_intent: Optional[Literal["backup"]] = None,
**kwargs: Any
) -> Dict[str, Any]:
"""
Expand Down Expand Up @@ -616,6 +617,7 @@ def upload_blob_from_url(
encryption_scope=encryption_scope,
standard_blob_tier=standard_blob_tier,
source_authorization=source_authorization,
source_token_intent=source_token_intent,
**kwargs
)
try:
Expand Down Expand Up @@ -2092,6 +2094,7 @@ def start_copy_from_url(
seal_destination_blob: Optional[bool] = None,
requires_sync: Optional[bool] = None,
source_authorization: Optional[str] = None,
source_token_intent: Optional[Literal["backup"]] = None,
encryption_scope: Optional[str] = None,
timeout: Optional[int] = None,
**kwargs: Any
Expand Down Expand Up @@ -2312,6 +2315,7 @@ def start_copy_from_url(
seal_destination_blob=seal_destination_blob,
requires_sync=requires_sync,
source_authorization=source_authorization,
source_token_intent=source_token_intent,
encryption_scope=encryption_scope,
timeout=timeout,
**kwargs
Expand Down Expand Up @@ -2594,6 +2598,7 @@ def stage_block_from_url(
cpk: Optional["CustomerProvidedEncryptionKey"] = None,
encryption_scope: Optional[str] = None,
source_authorization: Optional[str] = None,
source_token_intent: Optional[Literal["backup"]] = None,
timeout: Optional[int] = None,
**kwargs: Any
) -> Dict[str, Any]:
Expand Down Expand Up @@ -2664,6 +2669,7 @@ def stage_block_from_url(
cpk=cpk,
encryption_scope=encryption_scope,
source_authorization=source_authorization,
source_token_intent=source_token_intent,
timeout=timeout,
**kwargs
)
Expand Down Expand Up @@ -3637,6 +3643,7 @@ def upload_pages_from_url(
cpk: Optional["CustomerProvidedEncryptionKey"] = None,
encryption_scope: Optional[str] = None,
source_authorization: Optional[str] = None,
source_token_intent: Optional[Literal["backup"]] = None,
timeout: Optional[int] = None,
**kwargs: Any
) -> Dict[str, Any]:
Expand Down Expand Up @@ -3778,6 +3785,7 @@ def upload_pages_from_url(
cpk=cpk,
encryption_scope=encryption_scope,
source_authorization=source_authorization,
source_token_intent=source_token_intent,
timeout=timeout,
**kwargs
)
Expand Down Expand Up @@ -4037,6 +4045,7 @@ def append_block_from_url(
cpk: Optional["CustomerProvidedEncryptionKey"] = None,
encryption_scope: Optional[str] = None,
source_authorization: Optional[str] = None,
source_token_intent: Optional[Literal["backup"]] = None,
timeout: Optional[int] = None,
**kwargs: Any
) -> Dict[str, Union[str, datetime, int]]:
Expand Down Expand Up @@ -4170,6 +4179,7 @@ def append_block_from_url(
cpk=cpk,
encryption_scope=encryption_scope,
source_authorization=source_authorization,
source_token_intent=source_token_intent,
timeout=timeout,
**kwargs
)
Expand Down
Loading