public interface VipUpdateBuilder extends Buildable.Builder<VipUpdateBuilder,VipUpdate>
Modifier and Type | Method and Description |
---|---|
VipUpdateBuilder |
adminStateUp(boolean adminStateUp)
Optional
|
VipUpdateBuilder |
connectionLimit(Integer connectionLimit)
Optional
|
VipUpdateBuilder |
description(String description)
Optional
|
VipUpdateBuilder |
name(String name)
Optional
|
VipUpdateBuilder |
poolId(String poolId)
Optional
|
VipUpdateBuilder |
sessionPersistence(SessionPersistence sessionPersistence)
Optional
|
build, from
VipUpdateBuilder name(String name)
name
- Human-readable name for the VIP. Does not have to be unique.VipUpdateBuilder description(String description)
description
- Human-readable description for the VIP.VipUpdateBuilder poolId(String poolId)
poolId
- The ID of the pool with which the VIP is associated.VipUpdateBuilder sessionPersistence(SessionPersistence sessionPersistence)
sessionPersistence
- Session persistence parameters for the VIP. Omit the
session_persistence parameter to prevent session persistence.
When no session persistence is used, the session_persistence
parameter does not appear in the API response. To clear
session persistence for the VIP, set the session_persistence
parameter to null in a VIP update request.VipUpdateBuilder connectionLimit(Integer connectionLimit)
connectionLimit
- . The maximum number of connections allowed for the VIP. Value
is -1 if the limit is not set.VipUpdateBuilder adminStateUp(boolean adminStateUp)
adminStateUp
- The administrative state of the VIP. A valid value is true
(UP) or false (DOWN).Copyright © 2017. All rights reserved.