Skip to content

Commit f24da44

Browse files
authored
[Datalake][Blob]Fix class type and doc (Azure#20805)
Azure#20772
1 parent 0c016cf commit f24da44

File tree

2 files changed

+5
-1
lines changed
  • sdk/storage
    • azure-storage-blob/azure/storage/blob
    • azure-storage-file-datalake/azure/storage/filedatalake

2 files changed

+5
-1
lines changed

sdk/storage/azure-storage-blob/azure/storage/blob/_models.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,8 @@ class ContainerProperties(DictMixin):
319319
dictionary interface, for example: ``container_props["last_modified"]``.
320320
Additionally, the container name is available as ``container_props["name"]``.
321321
322+
:ivar str name:
323+
Name of the container.
322324
:ivar ~datetime.datetime last_modified:
323325
A datetime object representing the last time the container was modified.
324326
:ivar str etag:

sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/_models.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,11 @@
2323
from ._shared.models import DictMixin
2424

2525

26-
class FileSystemProperties(object):
26+
class FileSystemProperties(DictMixin):
2727
"""File System properties class.
2828
29+
:ivar str name:
30+
Name of the filesystem.
2931
:ivar ~datetime.datetime last_modified:
3032
A datetime object representing the last time the file system was modified.
3133
:ivar str etag:

0 commit comments

Comments
 (0)