ProbeSettings Class

Settings on how to probe an endpoint.

Inheritance
azure.ai.ml.entities._mixins.RestTranslatableMixin
ProbeSettings

Constructor

ProbeSettings(*, failure_threshold: int | None = None, success_threshold: int | None = None, timeout: int | None = None, period: int | None = None, initial_delay: int | None = None)

Parameters

Name Description
failure_threshold
Required
int

Threshold for probe failures, defaults to 30

success_threshold
Required
int

Threshold for probe success, defaults to 1

timeout
Required
int

timeout in seconds, defaults to 2

period
Required
int

How often (in seconds) to perform the probe, defaults to 10

initial_delay
Required
int

How long (in seconds) to wait for the first probe, defaults to 10

Keyword-Only Parameters

Name Description
failure_threshold
Required
success_threshold
Required
timeout
Required
period
Required
initial_delay
Required