Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.13 KB

HookActionSpec.md

File metadata and controls

29 lines (20 loc) · 1.13 KB

HookActionSpec

Properties

Name Type Description Notes
timeout str The maximum duration allowed for the action to complete. The duration should be specified as a positive integer followed by a time unit. Supported time units are: - 's' for seconds - 'm' for minutes - 'h' for hours - 'd' for days [optional]

Example

from flightctl.models.hook_action_spec import HookActionSpec

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

# convert the object into a dict
hook_action_spec_dict = hook_action_spec_instance.to_dict()
# create an instance of HookActionSpec from a dict
hook_action_spec_from_dict = HookActionSpec.from_dict(hook_action_spec_dict)

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