Name |
Type |
Description |
Notes |
destination |
str |
abfss destination. Example: `abfss://<container-name>@<storage-account-name>.dfs.core.windows.net/<directory-name>` |
[optional] |
from databricks_jobs.models.adlsgen2_info import Adlsgen2Info
# TODO update the JSON string below
json = "{}"
# create an instance of Adlsgen2Info from a JSON string
adlsgen2_info_instance = Adlsgen2Info.from_json(json)
# print the JSON string representation of the object
print Adlsgen2Info.to_json()
# convert the object into a dict
adlsgen2_info_dict = adlsgen2_info_instance.to_dict()
# create an instance of Adlsgen2Info from a dict
adlsgen2_info_form_dict = adlsgen2_info.from_dict(adlsgen2_info_dict)
[Back to Model list] [Back to API list] [Back to README]