You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/src/com/cloud/api/commands/CreateLoadBalancerRuleCmd.java
+1-16Lines changed: 1 addition & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -72,9 +72,6 @@ public class CreateLoadBalancerRuleCmd extends BaseAsyncCmd /*implements LoadBa
72
72
@Parameter(name=ApiConstants.PUBLIC_PORT, type=CommandType.INTEGER, required=true, description="the public port from where the network traffic will be load balanced from")
73
73
privateIntegerpublicPort;
74
74
75
-
@Parameter(name = ApiConstants.CIDR_LIST, type = CommandType.LIST, collectionType = CommandType.STRING, description = "the cidr list to forward traffic from")
76
-
privateList<String> cidrlist;
77
-
78
75
@Parameter(name = ApiConstants.OPEN_FIREWALL, type = CommandType.BOOLEAN, description = "if true, firewall rule for source/end pubic port is automatically created; if false - firewall rule has to be created explicitely. Has value true by default")
79
76
privateBooleanopenFirewall;
80
77
@@ -120,10 +117,6 @@ public Integer getPublicPort() {
120
117
publicStringgetName() {
121
118
returnloadBalancerRuleName;
122
119
}
123
-
124
-
publicList<String> getSourceCidrList() {
125
-
returncidrlist;
126
-
}
127
120
128
121
publicBooleangetOpenFirewall() {
129
122
if (openFirewall != null) {
@@ -143,15 +136,7 @@ public String getCommandName() {
0 commit comments