Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

SelfHostedRunnerConfig

Configuration for self-hosted workflow runner.

Properties

Name Type Description Notes
url str
webhook_secret str

Example

from ksapi.models.self_hosted_runner_config import SelfHostedRunnerConfig

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

# convert the object into a dict
self_hosted_runner_config_dict = self_hosted_runner_config_instance.to_dict()
# create an instance of SelfHostedRunnerConfig from a dict
self_hosted_runner_config_from_dict = SelfHostedRunnerConfig.from_dict(self_hosted_runner_config_dict)

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