FileSystemProperties Class

File System properties class.

Returned FileSystemProperties instances expose these values through a dictionary interface, for example: file_system_props["last_modified"]. Additionally, the file system name is available as file_system_props["name"].

Inheritance
azure.storage.filedatalake._shared.models.DictMixin
FileSystemProperties

Constructor

FileSystemProperties(**kwargs)

Variables

Name Description
name
str

Name of the filesystem.

last_modified

A datetime object representing the last time the file system was modified.

etag
str

The ETag contains a value that you can use to perform operations conditionally.

lease

Stores all the lease information for the file system.

public_access
str

Specifies whether data in the file system may be accessed publicly and the level of access.

has_immutability_policy

Represents whether the file system has an immutability policy.

has_legal_hold

Represents whether the file system has a legal hold.

metadata

A dict with name-value pairs to associate with the file system as metadata.

encryption_scope

The default encryption scope configuration for the file system.

deleted

Whether this file system was deleted.

deleted_version
str

The version of a deleted file system.

Methods

get
has_key
items
keys
update
values

get

get(key, default=None)

Parameters

Name Description
key
Required
default
Default value: None

has_key

has_key(k)

Parameters

Name Description
k
Required

items

items()

keys

keys()

update

update(*args, **kwargs)

values

values()