Skip to content
Open
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
Expand Up @@ -2,5 +2,5 @@
../../core/azure-core
../../identity/azure-identity
../azure-storage-blob
aiohttp==3.13.3
aiohttp>=3.13.5
cryptography==44.0.3 # TODO: Pinned due to cryptography compatibility issue in CI. Revisit once resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -395,11 +395,6 @@ def delete_container(self, **kwargs: Any) -> None:
If a date is passed in without timezone info, it is assumed to be UTC.
Specify this header to perform the operation only if
the resource has not been modified since the specified date/time.
:keyword str etag:
An ETag value, or the wildcard character (*). Used to check if the resource has changed,
and act according to the condition specified by the `match_condition` parameter.
:keyword ~azure.core.MatchConditions match_condition:
The match condition to use upon the etag.
:keyword int timeout:
Sets the server-side timeout for the operation in seconds. For more details see
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
Expand Down Expand Up @@ -462,11 +457,6 @@ def acquire_lease(
If a date is passed in without timezone info, it is assumed to be UTC.
Specify this header to perform the operation only if
the resource has not been modified since the specified date/time.
:keyword str etag:
An ETag value, or the wildcard character (*). Used to check if the resource has changed,
and act according to the condition specified by the `match_condition` parameter.
:keyword ~azure.core.MatchConditions match_condition:
The match condition to use upon the etag.
:keyword int timeout:
Sets the server-side timeout for the operation in seconds. For more details see
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
Expand Down Expand Up @@ -594,15 +584,6 @@ def set_container_metadata(
If a date is passed in without timezone info, it is assumed to be UTC.
Specify this header to perform the operation only
if the resource has been modified since the specified time.
:keyword ~datetime.datetime if_unmodified_since:
A DateTime value. Azure expects the date value passed in to be UTC.
If timezone is included, any non-UTC datetimes will be converted to UTC.
If a date is passed in without timezone info, it is assumed to be UTC.
Specify this header to perform the operation only if
the resource has not been modified since the specified date/time.
:keyword str etag:
An ETag value, or the wildcard character (*). Used to check if the resource has changed,
and act according to the condition specified by the `match_condition` parameter.
:keyword int timeout:
Sets the server-side timeout for the operation in seconds. For more details see
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,6 @@ class ContainerClient(StorageAccountHostsMixin, StorageEncryptionMixin):
lease: Optional[Union[BlobLeaseClient, str]] = None,
if_modified_since: Optional[datetime] = None,
if_unmodified_since: Optional[datetime] = None,
etag: Optional[str] = None,
match_condition: Optional[MatchConditions] = None,
timeout: Optional[int] = None,
**kwargs: Any,
) -> None: ...
Expand All @@ -157,8 +155,6 @@ class ContainerClient(StorageAccountHostsMixin, StorageEncryptionMixin):
*,
if_modified_since: Optional[datetime] = None,
if_unmodified_since: Optional[datetime] = None,
etag: Optional[str] = None,
match_condition: Optional[MatchConditions] = None,
timeout: Optional[int] = None,
**kwargs: Any,
) -> BlobLeaseClient: ...
Expand All @@ -177,9 +173,6 @@ class ContainerClient(StorageAccountHostsMixin, StorageEncryptionMixin):
*,
lease: Optional[Union[BlobLeaseClient, str]] = None,
if_modified_since: Optional[datetime] = None,
if_unmodified_since: Optional[datetime] = None,
etag: Optional[str] = None,
match_condition: Optional[MatchConditions] = None,
timeout: Optional[int] = None,
**kwargs: Any,
) -> Dict[str, Union[str, datetime]]: ...
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -392,11 +392,6 @@ async def delete_container(self, **kwargs: Any) -> None:
If a date is passed in without timezone info, it is assumed to be UTC.
Specify this header to perform the operation only if
the resource has not been modified since the specified date/time.
:keyword str etag:
An ETag value, or the wildcard character (*). Used to check if the resource has changed,
and act according to the condition specified by the `match_condition` parameter.
:keyword ~azure.core.MatchConditions match_condition:
The match condition to use upon the etag.
:keyword int timeout:
Sets the server-side timeout for the operation in seconds. For more details see
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
Expand Down Expand Up @@ -459,11 +454,6 @@ async def acquire_lease(
If a date is passed in without timezone info, it is assumed to be UTC.
Specify this header to perform the operation only if
the resource has not been modified since the specified date/time.
:keyword str etag:
An ETag value, or the wildcard character (*). Used to check if the resource has changed,
and act according to the condition specified by the `match_condition` parameter.
:keyword ~azure.core.MatchConditions match_condition:
The match condition to use upon the etag.
:keyword int timeout:
Sets the server-side timeout for the operation in seconds. For more details see
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,6 @@ class ContainerClient( # type: ignore[misc]
lease: Optional[Union[BlobLeaseClient, str]] = None,
if_modified_since: Optional[datetime] = None,
if_unmodified_since: Optional[datetime] = None,
etag: Optional[str] = None,
match_condition: Optional[MatchConditions] = None,
timeout: Optional[int] = None,
**kwargs: Any
) -> None: ...
Expand All @@ -165,8 +163,6 @@ class ContainerClient( # type: ignore[misc]
*,
if_modified_since: Optional[datetime] = None,
if_unmodified_since: Optional[datetime] = None,
etag: Optional[str] = None,
match_condition: Optional[MatchConditions] = None,
timeout: Optional[int] = None,
**kwargs: Any
) -> BlobLeaseClient: ...
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-blob/dev_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
../../core/azure-core
../../identity/azure-identity
azure-mgmt-storage==20.1.0
aiohttp==3.13.3
aiohttp>=3.13.5
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
../../core/azure-core
../../identity/azure-identity
../azure-storage-blob
aiohttp==3.13.3
aiohttp>=3.13.5
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
../../core/azure-core
../../identity/azure-identity
../azure-storage-blob
aiohttp==3.13.3
aiohttp>=3.13.5
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-queue/dev_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
../../core/azure-core
../../identity/azure-identity
azure-mgmt-storage==20.1.0
aiohttp==3.13.3
aiohttp>=3.13.5