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) · 968 Bytes

DbfsStorageInfo.md

File metadata and controls

28 lines (20 loc) · 968 Bytes

DbfsStorageInfo

Properties

Name Type Description Notes
destination str DBFS destination. Example: `dbfs:/my/path` [optional]

Example

from databricks_jobs.models.dbfs_storage_info import DbfsStorageInfo

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

# convert the object into a dict
dbfs_storage_info_dict = dbfs_storage_info_instance.to_dict()
# create an instance of DbfsStorageInfo from a dict
dbfs_storage_info_form_dict = dbfs_storage_info.from_dict(dbfs_storage_info_dict)

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