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

Adlsgen2Info.md

File metadata and controls

28 lines (20 loc) · 1013 Bytes

Adlsgen2Info

Properties

Name Type Description Notes
destination str abfss destination. Example: `abfss://<container-name>@<storage-account-name>.dfs.core.windows.net/<directory-name>` [optional]

Example

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]