public interface HealthMonitorUpdateBuilder extends Buildable.Builder<HealthMonitorUpdateBuilder,HealthMonitorUpdate>
Modifier and Type | Method and Description |
---|---|
HealthMonitorUpdateBuilder |
adminStateUp(boolean adminStateUp) |
HealthMonitorUpdateBuilder |
delay(Integer delay) |
HealthMonitorUpdateBuilder |
expectedCodes(String expectedCodes) |
HealthMonitorUpdateBuilder |
httpMethod(String httpMethod) |
HealthMonitorUpdateBuilder |
maxRetries(Integer maxRetries) |
HealthMonitorUpdateBuilder |
timeout(Integer timeout) |
HealthMonitorUpdateBuilder |
urlPath(String urlPath) |
build, from
HealthMonitorUpdateBuilder delay(Integer delay)
dealy
- The time, in seconds, between sending probes to members.HealthMonitorUpdateBuilder urlPath(String urlPath)
urlPath
- Path portion of URI that will be probed if type is HTTP(S).HealthMonitorUpdateBuilder expectedCodes(String expectedCodes)
expectedCodes
- Expected HTTP codes for a passing HTTP(S) monitor.HealthMonitorUpdateBuilder httpMethod(String httpMethod)
httpMethod
- GET/PUT/POSTHealthMonitorUpdateBuilder maxRetries(Integer maxRetries)
maxRetries
- Maximum consecutive health probe tries.HealthMonitorUpdateBuilder adminStateUp(boolean adminStateUp)
adminStateUp
- The administrative state of the VIP. A valid value is true
(UP) or false (DOWN).HealthMonitorUpdateBuilder timeout(Integer timeout)
timeout
- Time in seconds to timeout each probe.Copyright © 2017. All rights reserved.