public interface VipBuilder extends Buildable.Builder<VipBuilder,Vip>
Modifier and Type | Method and Description |
---|---|
VipBuilder |
address(String address)
Optional
|
VipBuilder |
adminStateUp(boolean adminStateUp)
Optional
|
VipBuilder |
connectionLimit(Integer connectionLimit)
Optional
|
VipBuilder |
description(String description)
Optional
|
VipBuilder |
name(String name)
Optional
|
VipBuilder |
poolId(String poolId)
Optional
|
VipBuilder |
protocol(Protocol protocol) |
VipBuilder |
protocolPort(Integer protocolPort) |
VipBuilder |
sessionPersistence(SessionPersistence sessionPersistence)
Optional
|
VipBuilder |
subnetId(String subnetId)
Optional
|
VipBuilder |
tenantId(String tenantId) |
build, from
VipBuilder tenantId(String tenantId)
tenantId
- Owner of the VIP. Only an admin user can specify a tenant ID
other than its own.VipBuilder name(String name)
name
- Human-readable name for the VIP. Does not have to be unique.VipBuilder description(String description)
description
- Human-readable description for the VIP.VipBuilder subnetId(String subnetId)
subnetId
- The ID of the subnet on which to allocate the VIP address.VipBuilder address(String address)
address
- The IP address of the VIP.VipBuilder protocol(Protocol protocol)
protocol
- The protocol of the VIP address. A valid value is TCP, HTTP,
or HTTPS.VipBuilder protocolPort(Integer protocolPort)
protocolPort
- The port on which to listen to client traffic that is
associated with the VIP address. A valid value is from 1 to
65535.VipBuilder poolId(String poolId)
poolId
- The pool identifierVipBuilder 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.VipBuilder connectionLimit(Integer connectionLimit)
connectionLimit
- The maximum number of connections allowed for the VIP. Value
is -1 if the limit is not set.VipBuilder adminStateUp(boolean adminStateUp)
adminStateUp
- The administrative state of the VIP. A valid value is true
(UP) or false (DOWN).Copyright © 2017. All rights reserved.