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) · 1.01 KB

AccessControlList.md

File metadata and controls

28 lines (20 loc) · 1.01 KB

AccessControlList

Properties

Name Type Description Notes
access_control_list List[AccessControlRequest] List of permissions to set on the job. [optional]

Example

from databricks_jobs.models.access_control_list import AccessControlList

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

# convert the object into a dict
access_control_list_dict = access_control_list_instance.to_dict()
# create an instance of AccessControlList from a dict
access_control_list_form_dict = access_control_list.from_dict(access_control_list_dict)

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