openstack.network.v2.health_monitor¶
The HealthMonitor Class¶
The HealthMonitor
class inherits from
Resource
.
-
class
openstack.network.v2.health_monitor.
HealthMonitor
(_synchronized=False, connection=None, **attrs)¶ The base resource
- Parameters
_synchronized (bool) – This is not intended to be used directly. See
new()
andexisting()
.connection (openstack.connection.Connection) – Reference to the Connection being used. Defaults to None to allow Resource objects to be used without an active Connection, such as in unit tests. Use of
self._connection
in Resource code should protect itself with a check for None.
-
delay
¶ The time, in seconds, between sending probes to members.
-
expected_codes
¶ Expected HTTP codes for a passing HTTP(S) monitor.
-
http_method
¶ The HTTP method that the monitor uses for requests.
-
is_admin_state_up
¶ The administrative state of the health monitor, which is up
True
or downFalse
. Type: bool
-
max_retries
¶ Maximum consecutive health probe tries.
-
name
¶ Name of the health monitor.
-
pool_ids
¶ List of pools associated with this health monitor Type: list of dicts which contain the pool IDs
-
pool_id
¶ The ID of the pool associated with this health monitor
-
project_id
¶ The ID of the project this health monitor is associated with.
-
timeout
¶ The maximum number of seconds for a monitor to wait for a connection to be established before it times out. This value must be less than the delay value.
-
type
¶ The type of probe sent by the load balancer to verify the member state, which is PING, TCP, HTTP, or HTTPS.
-
url_path
¶ Path portion of URI that will be probed if type is HTTP(S).