mirror of https://github.com/apache/cloudstack.git
bug 7342: return ipaddress instead of publicip in listIpForwardingRules/listPortForwardingRules api responses.
status 7342: resolved fixed
This commit is contained in:
parent
1aee756184
commit
5c8619903b
|
|
@ -43,7 +43,7 @@ public class FirewallRuleResponse extends BaseResponse {
|
|||
@SerializedName("virtualmachinedisplayname") @Param(description="the VM display name for the port forwarding rule")
|
||||
private String virtualMachineDisplayName;
|
||||
|
||||
@SerializedName("publicipaddress") @Param(description="the public ip address for the port forwarding rule")
|
||||
@SerializedName("ipaddress") @Param(description="the public ip address for the port forwarding rule")
|
||||
private String publicIpAddress;
|
||||
|
||||
public Long getId() {
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class IpForwardingRuleResponse extends BaseResponse {
|
|||
@SerializedName("virtualmachinedisplayname") @Param(description="the VM display name for the port forwarding rule")
|
||||
private String virtualMachineDisplayName;
|
||||
|
||||
@SerializedName("publicipaddress") @Param(description="the public ip address for the port forwarding rule")
|
||||
@SerializedName("ipaddress") @Param(description="the public ip address for the port forwarding rule")
|
||||
private String publicIpAddress;
|
||||
|
||||
public Long getId() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue