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

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ async def get_user_delegation_key(self, key_start_time, # type: datetime
A DateTime value. Indicates when the key becomes valid.
:param ~datetime.datetime key_expiry_time:
A DateTime value. Indicates when the key stops being valid.
:param int timeout:
:keyword int timeout:
The timeout parameter is expressed in seconds.
:return: The user delegation key.
:rtype: ~azure.storage.blob.UserDelegationKey
Expand Down Expand Up @@ -187,7 +187,7 @@ async def get_service_stats(self, **kwargs): # type: ignore
access is available from the secondary location, if read-access geo-redundant
replication is enabled for your storage account.

:param int timeout:
:keyword int timeout:
The timeout parameter is expressed in seconds.
:return: The blob service stats.
:rtype: ~azure.storage.blob._generated.models.StorageServiceStats
Expand All @@ -214,7 +214,7 @@ async def get_service_properties(self, **kwargs):
"""Gets the properties of a storage account's Blob service, including
Azure Storage Analytics.

:param int timeout:
:keyword int timeout:
The timeout parameter is expressed in seconds.
:rtype: ~azure.storage.blob._generated.models.StorageServiceProperties

Expand Down Expand Up @@ -278,7 +278,7 @@ async def set_service_properties(
Specifies whether the static website feature is enabled,
and if yes, indicates the index document and 404 error document to use.
:type static_website: ~azure.storage.blob.StaticWebsite
:param int timeout:
:keyword int timeout:
The timeout parameter is expressed in seconds.
:rtype: None

Expand Down Expand Up @@ -327,7 +327,7 @@ def list_containers(
:param int results_per_page:
The maximum number of container names to retrieve per API
call. If the request does not specify the server will return up to 5,000 items.
:param int timeout:
:keyword int timeout:
The timeout parameter is expressed in seconds.
:returns: An iterable (auto-paging) of ContainerProperties.
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.storage.blob.ContainerProperties]
Expand Down Expand Up @@ -379,7 +379,7 @@ async def create_container(
:param public_access:
Possible values include: container, blob.
:type public_access: str or ~azure.storage.blob.PublicAccess
:param int timeout:
:keyword int timeout:
The timeout parameter is expressed in seconds.
:rtype: ~azure.storage.blob.aio.ContainerClient

Expand Down Expand Up @@ -419,28 +419,28 @@ async def delete_container(
If specified, delete_container only succeeds if the
container's lease is active and matches this ID.
Required if the container has an active lease.
:param ~datetime.datetime if_modified_since:
:keyword ~datetime.datetime if_modified_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 been modified since the specified time.
:param ~datetime.datetime if_unmodified_since:
: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.
:param str if_match:
:keyword str if_match:
An ETag value, or the wildcard character (*). Specify this header to perform
the operation only if the resource's ETag matches the value specified.
:param str if_none_match:
:keyword str if_none_match:
An ETag value, or the wildcard character (*). Specify this header
to perform the operation only if the resource's ETag does not match
the value specified. Specify the wildcard character (*) to perform
the operation only if the resource does not exist, and fail the
operation if it does exist.
:param int timeout:
:keyword int timeout:
The timeout parameter is expressed in seconds.
:rtype: None

Expand Down
Loading