Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Latest commit

 

History

History
29 lines (21 loc) · 919 Bytes

Healthcheck.md

File metadata and controls

29 lines (21 loc) · 919 Bytes

Healthcheck

Properties

Name Type Description Notes
readiness_probe Probe [optional]
liveness_probe Probe [optional]

Example

from qovery.models.healthcheck import Healthcheck

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

# convert the object into a dict
healthcheck_dict = healthcheck_instance.to_dict()
# create an instance of Healthcheck from a dict
healthcheck_form_dict = healthcheck.from_dict(healthcheck_dict)

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