@@ -617,8 +617,8 @@ def list_blobs(self, name_starts_with=None, include=None, **kwargs):
617
617
:param include:
618
618
Specifies one or more additional datasets to include in the response.
619
619
Options include: 'snapshots', 'metadata', 'uncommittedblobs', 'copy', 'deleted', 'deletedwithversions',
620
- 'tags', 'versions'.
621
- :paramtype include: list[str] or str
620
+ 'tags', 'versions', 'immutabilitypolicy', 'legalhold' .
621
+ :type include: list[str] or str
622
622
:keyword int timeout:
623
623
The timeout parameter is expressed in seconds.
624
624
:returns: An iterable (auto-paging) response of BlobProperties.
@@ -690,7 +690,7 @@ def list_blob_names(self, **kwargs: Any) -> AsyncItemPaged[str]:
690
690
@distributed_trace
691
691
def walk_blobs (
692
692
self , name_starts_with = None , # type: Optional[str]
693
- include = None , # type: Optional[Any ]
693
+ include = None , # type: Optional[Union[List[str], str] ]
694
694
delimiter = "/" , # type: str
695
695
** kwargs # type: Optional[Any]
696
696
):
@@ -703,9 +703,11 @@ def walk_blobs(
703
703
:param str name_starts_with:
704
704
Filters the results to return only blobs whose names
705
705
begin with the specified prefix.
706
- :param list[str] include:
706
+ :param include:
707
707
Specifies one or more additional datasets to include in the response.
708
- Options include: 'snapshots', 'metadata', 'uncommittedblobs', 'copy', 'deleted'.
708
+ Options include: 'snapshots', 'metadata', 'uncommittedblobs', 'copy', 'deleted', 'deletedwithversions',
709
+ 'tags', 'versions', 'immutabilitypolicy', 'legalhold'.
710
+ :type include: list[str] or str
709
711
:param str delimiter:
710
712
When the request includes this parameter, the operation returns a BlobPrefix
711
713
element in the response body that acts as a placeholder for all blobs whose
0 commit comments