Skip to content

Commit

Permalink
[Datalake][Blob]Fix class type and doc
Browse files Browse the repository at this point in the history
  • Loading branch information
xiafu-msft committed Sep 23, 2021
1 parent cbfacbd commit 56fd538
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions sdk/storage/azure-storage-blob/azure/storage/blob/_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,8 @@ class ContainerProperties(DictMixin):
dictionary interface, for example: ``container_props["last_modified"]``.
Additionally, the container name is available as ``container_props["name"]``.
:ivar str name:
Name of the container.
:ivar ~datetime.datetime last_modified:
A datetime object representing the last time the container was modified.
:ivar str etag:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,11 @@
from ._shared.models import DictMixin


class FileSystemProperties(object):
class FileSystemProperties(DictMixin):
"""File System properties class.
:ivar str name:
Name of the filesystem.
:ivar ~datetime.datetime last_modified:
A datetime object representing the last time the file system was modified.
:ivar str etag:
Expand Down

0 comments on commit 56fd538

Please sign in to comment.