Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

RunnerSecurity

the Runner security information

Properties

Name Type Description Notes
default str the role by default
access_control_list List[RunnerAccessControl] the list which can access this Runner with detailed access control information

Example

from cosmotech_api.models.runner_security import RunnerSecurity

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

# convert the object into a dict
runner_security_dict = runner_security_instance.to_dict()
# create an instance of RunnerSecurity from a dict
runner_security_from_dict = RunnerSecurity.from_dict(runner_security_dict)

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