@@ -617,8 +617,8 @@ def list_blobs(self, name_starts_with=None, include=None, **kwargs):
617617 :param include:
618618 Specifies one or more additional datasets to include in the response.
619619 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
622622 :keyword int timeout:
623623 The timeout parameter is expressed in seconds.
624624 :returns: An iterable (auto-paging) response of BlobProperties.
@@ -690,7 +690,7 @@ def list_blob_names(self, **kwargs: Any) -> AsyncItemPaged[str]:
690690 @distributed_trace
691691 def walk_blobs (
692692 self , name_starts_with = None , # type: Optional[str]
693- include = None , # type: Optional[Any ]
693+ include = None , # type: Optional[Union[List[str], str] ]
694694 delimiter = "/" , # type: str
695695 ** kwargs # type: Optional[Any]
696696 ):
@@ -703,9 +703,11 @@ def walk_blobs(
703703 :param str name_starts_with:
704704 Filters the results to return only blobs whose names
705705 begin with the specified prefix.
706- :param list[str] include:
706+ :param include:
707707 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
709711 :param str delimiter:
710712 When the request includes this parameter, the operation returns a BlobPrefix
711713 element in the response body that acts as a placeholder for all blobs whose
0 commit comments