Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1021 Bytes

File metadata and controls

31 lines (22 loc) · 1021 Bytes

RunnerAccessControl

a Runner access control item

Properties

Name Type Description Notes
id str the identity id
role str a role

Example

from cosmotech_api.models.runner_access_control import RunnerAccessControl

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

# convert the object into a dict
runner_access_control_dict = runner_access_control_instance.to_dict()
# create an instance of RunnerAccessControl from a dict
runner_access_control_from_dict = RunnerAccessControl.from_dict(runner_access_control_dict)

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