Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.24 KB

File metadata and controls

34 lines (25 loc) · 1.24 KB

ApplicationProbe

Define a Kubernetes probe See also the official documentation

Properties

Name Type Description Notes
path str
period_seconds float [optional]
failure_threshold float [optional]
initial_delay_seconds float [optional]
port float [optional]

Example

from cloudharness_model.models.application_probe import ApplicationProbe

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

# convert the object into a dict
application_probe_dict = application_probe_instance.to_dict()
# create an instance of ApplicationProbe from a dict
application_probe_from_dict = ApplicationProbe.from_dict(application_probe_dict)

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