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
Expand Up @@ -75,6 +75,10 @@
class BlobClient(StorageAccountHostsMixin): # pylint: disable=too-many-public-methods
"""A client to interact with a specific blob, although that blob may not yet exist.

For more optional configuration, please click
`here <https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/storage/azure-storage-blob
#optional-configuration>`_.

:param str account_url:
The URI to the storage account. In order to create a client given the full URI to the blob,
use the :func:`from_blob_url` classmethod.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ class BlobServiceClient(StorageAccountHostsMixin):
For operations relating to a specific container or blob, clients for those entities
can also be retrieved using the `get_client` functions.

For more optional configuration, please click
`here <https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/storage/azure-storage-blob
#optional-configuration>`_.

:param str account_url:
The URL to the blob storage account. Any other entities included
in the URL path (e.g. container or blob) will be discarded. This URL can be optionally
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ class ContainerClient(StorageAccountHostsMixin):
For operations relating to a specific blob within this container, a blob client can be
retrieved using the :func:`~get_blob_client` function.

For more optional configuration, please click
`here <https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/storage/azure-storage-blob
#optional-configuration>`_.

:param str account_url:
The URI to the storage account. In order to create a client given the full URI to the container,
use the :func:`from_container_url` classmethod.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ class ShareDirectoryClient(StorageAccountHostsMixin):
For operations relating to a specific subdirectory or file in this share, the clients for those
entities can also be retrieved using the :func:`get_subdirectory_client` and :func:`get_file_client` functions.

For more optional configuration, please click
`here <https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/storage/azure-storage-file-share
#optional-configuration>`_.

:param str account_url:
The URI to the storage account. In order to create a client given the full URI to the directory,
use the :func:`from_directory_url` classmethod.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ def _upload_file_helper(
class ShareFileClient(StorageAccountHostsMixin):
"""A client to interact with a specific file, although that file may not yet exist.

For more optional configuration, please click
`here <https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/storage/azure-storage-file-share
#optional-configuration>`_.

:param str account_url:
The URI to the storage account. In order to create a client given the full URI to the
file, use the :func:`from_file_url` classmethod.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ class ShareClient(StorageAccountHostsMixin):
For operations relating to a specific directory or file in this share, the clients for
those entities can also be retrieved using the :func:`get_directory_client` and :func:`get_file_client` functions.

For more optional configuration, please click
`here <https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/storage/azure-storage-file-share
#optional-configuration>`_.

:param str account_url:
The URI to the storage account. In order to create a client given the full URI to the share,
use the :func:`from_share_url` classmethod.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ class ShareServiceClient(StorageAccountHostsMixin):
For operations relating to a specific share, a client for that entity
can also be retrieved using the :func:`get_share_client` function.

For more optional configuration, please click
`here <https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/storage/azure-storage-file-share
#optional-configuration>`_.

:param str account_url:
The URL to the file share storage account. Any other entities included
in the URL path (e.g. share or file) will be discarded. This URL can be optionally
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@
class QueueClient(StorageAccountHostsMixin):
"""A client to interact with a specific Queue.

For more optional configuration, please click
`here <https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/storage/azure-storage-queue
#optional-configuration>`_.

:param str account_url:
The URL to the storage account. In order to create a client given the full URI to the queue,
use the :func:`from_queue_url` classmethod.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ class QueueServiceClient(StorageAccountHostsMixin):
For operations relating to a specific queue, a client for this entity
can be retrieved using the :func:`~get_queue_client` function.

For more optional configuration, please click
`here <https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/storage/azure-storage-queue
#optional-configuration>`_.

:param str account_url:
The URL to the queue service endpoint. Any other entities included
in the URL path (e.g. queue) will be discarded. This URL can be optionally
Expand Down