the Runner security information
| 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 |
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)