bug 12162: publicIpId is required in createLoadBalancerRule command

status 12162: resolved fixed
This commit is contained in:
Alena Prokharchyk 2011-11-28 11:59:18 -08:00
parent ecd7004f15
commit afe92b0733
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ public class CreateLoadBalancerRuleCmd extends BaseAsyncCreateCmd /*implements
private Integer privatePort;
@IdentityMapper(entityTableName="user_ip_address")
@Parameter(name=ApiConstants.PUBLIC_IP_ID, type=CommandType.LONG, required=false, description="public ip address id from where the network traffic will be load balanced from")
@Parameter(name=ApiConstants.PUBLIC_IP_ID, type=CommandType.LONG, required=true, description="public ip address id from where the network traffic will be load balanced from")
private Long publicIpId;
@IdentityMapper(entityTableName="data_center")