Skip to content

Commit

Permalink
add vip_port_id builder
Browse files Browse the repository at this point in the history
  • Loading branch information
wei committed Dec 8, 2017
1 parent cf6d376 commit 81b651a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@ public interface LoadBalancerV2Builder extends Buildable.Builder<LoadBalancerV2B
*/
LoadBalancerV2Builder subnetId(String vipSubnetId);

/**
* Optional
*
* @param vipPortId
* The vip port.
* @return LoadBalancerV2Builder
*/
LoadBalancerV2Builder portId(String vipPortId);

/**
* Optional
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,15 @@ public LoadBalancerV2Builder subnetId(String vipSubnetId){
return this;
}

/**
* {@inheritDoc}
*/
@Override
public LoadBalancerV2Builder portId(String vipPortId){
m.vipPortId = vipPortId;
return this;
}

/**
* {@inheritDoc}
*/
Expand Down

0 comments on commit 81b651a

Please sign in to comment.