Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Latest commit

 

History

History
28 lines (20 loc) · 971 Bytes

FileStorageInfo.md

File metadata and controls

28 lines (20 loc) · 971 Bytes

FileStorageInfo

Properties

Name Type Description Notes
destination str File destination. Example: `file:/my/file.sh` [optional]

Example

from databricks_jobs.models.file_storage_info import FileStorageInfo

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

# convert the object into a dict
file_storage_info_dict = file_storage_info_instance.to_dict()
# create an instance of FileStorageInfo from a dict
file_storage_info_form_dict = file_storage_info.from_dict(file_storage_info_dict)

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