Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix some docstring
  • Loading branch information
lmazuel committed Oct 4, 2019
commit 4217ab09d861999268503604b7fe7432069cf8ad
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ def get_container_client(self, container):

:param container:
The container that the blob is in.
:type container: Union[ContainerProperties, str]
:type container: str or ~azure.storage.blob.ContainerProperties
:returns: A ContainerClient.
:rtype: ~azure.core.blob.aio.container_client_async.ContainerClient

Expand Down Expand Up @@ -502,10 +502,10 @@ def get_blob_client(

:param container:
The container that the blob is in.
:type container: Union[ContainerProperties, str]
:type container: str or ~azure.storage.blob.ContainerProperties
:param blob:
The blob with which to interact.
:type blob: Union[BlobProperties, str]
:type blob: str or ~azure.storage.blob.BlobProperties
:param snapshot:
The optional blob snapshot on which to operate. This can either be the ID of the snapshot,
or a dictionary output returned by
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, ContainerClientBase):
account, in which case the blob container must also be specified.
:param container_name:
The name of the container for the blob.
:type container_name: str or ~azure.storage.blob.models.ContainerProperties
:type container_name: str or ~azure.storage.blob.ContainerProperties
:param credential:
The credentials with which to authenticate. This is optional if the
account URL already has a SAS token. The value can be a SAS token string, and account
Expand Down Expand Up @@ -786,7 +786,7 @@ def get_blob_client(

:param blob:
The blob with which to interact.
:type blob: Union[BlobProperties, str]
:type blob: str or ~azure.storage.blob.BlobProperties
:param str snapshot:
The optional blob snapshot on which to operate.
:returns: A BlobClient.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -616,10 +616,10 @@ def get_blob_client(

:param container:
The container that the blob is in.
:type container: Union[ContainerProperties, str]
:type container: str or ~azure.storage.blob.ContainerProperties
:param blob:
The blob with which to interact.
:type blob: Union[BlobProperties, str]
:type blob: str or ~azure.storage.blob.BlobProperties
:param snapshot:
The optional blob snapshot on which to operate. This can either be the ID of the snapshot,
or a dictionary output returned by :func:`~azure.storage.blob.blob_client.BlobClient.create_snapshot()`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,7 @@ def get_blob_client(

:param blob:
The blob with which to interact.
:type blob: Union[str, BlobProperties]
:type blob: str or ~azure.storage.blob.BlobProperties
:param str snapshot:
The optional blob snapshot on which to operate.
:returns: A BlobClient.
Expand Down