Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.33 KB

FileSystem.md

File metadata and controls

35 lines (27 loc) · 1.33 KB

FileSystem

Information about a shared file system

Properties

Name Type Description Notes
id str Unique identifier (ID) of a file system
name str Name of a file system
created str A date and time, formatted as an ISO 8601 time stamp
created_by User
mount_point str Absolute path indicating where on instances the file system will be mounted
region Region
is_in_use bool Whether the file system is currently in use by an instance. File systems that are in use cannot be deleted.

Example

from lambda_cloud_client.models.file_system import FileSystem

# TODO update the JSON string below
json = "{}"
# create an instance of FileSystem from a JSON string
file_system_instance = FileSystem.from_json(json)
# print the JSON string representation of the object
print FileSystem.to_json()

# convert the object into a dict
file_system_dict = file_system_instance.to_dict()
# create an instance of FileSystem from a dict
file_system_form_dict = file_system.from_dict(file_system_dict)

[Back to Model list] [Back to API list] [Back to README]