We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07efdb6 commit a3faff9Copy full SHA for a3faff9
1 file changed
api/src/com/cloud/api/response/Site2SiteVpnGatewayResponse.java
@@ -32,7 +32,7 @@ public class Site2SiteVpnGatewayResponse extends BaseResponse implements Control
32
private String ip;
33
34
@SerializedName(ApiConstants.VPC_ID) @Param(description="the vpc id of this gateway")
35
- private Long vpcId;
+ private IdentityProxy vpcId = new IdentityProxy("vpc");
36
37
@SerializedName(ApiConstants.ACCOUNT) @Param(description="the owner")
38
private String accountName;
@@ -61,7 +61,7 @@ public void setIp(String ip) {
61
}
62
63
public void setVpcId(Long vpcId) {
64
- this.vpcId = vpcId;
+ this.vpcId.setValue(vpcId);
65
66
67
public void setRemoved(Date removed) {
0 commit comments