Skip to content

Commit 8a93977

Browse files
committed
Fix missing keys in listZonesMetrics response
1 parent 56c661c commit 8a93977

1 file changed

Lines changed: 24 additions & 8 deletions

File tree

api/src/main/java/org/apache/cloudstack/api/response/ZoneResponse.java

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -312,10 +312,6 @@ public String getNetworkType() {
312312
return networkType;
313313
}
314314

315-
public boolean isSecurityGroupsEnabled() {
316-
return securityGroupsEnabled;
317-
}
318-
319315
public String getAllocationState() {
320316
return allocationState;
321317
}
@@ -332,10 +328,6 @@ public List<CapacityResponse> getCapacitites() {
332328
return capacitites;
333329
}
334330

335-
public boolean isLocalStorageEnabled() {
336-
return localStorageEnabled;
337-
}
338-
339331
public Set<ResourceTagResponse> getTags() {
340332
return tags;
341333
}
@@ -344,6 +336,30 @@ public Map<String, String> getResourceDetails() {
344336
return resourceDetails;
345337
}
346338

339+
public Boolean getSecurityGroupsEnabled() {
340+
return securityGroupsEnabled;
341+
}
342+
343+
public Boolean getLocalStorageEnabled() {
344+
return localStorageEnabled;
345+
}
346+
347+
public Boolean getAllowUserSpecifyVRMtu() {
348+
return allowUserSpecifyVRMtu;
349+
}
350+
351+
public Integer getRouterPrivateInterfaceMaxMtu() {
352+
return routerPrivateInterfaceMaxMtu;
353+
}
354+
355+
public Integer getRouterPublicInterfaceMaxMtu() {
356+
return routerPublicInterfaceMaxMtu;
357+
}
358+
359+
public boolean getNsxEnabled() {
360+
return nsxEnabled;
361+
}
362+
347363
@Override
348364
public void setResourceIconResponse(ResourceIconResponse resourceIconResponse) {
349365
this.resourceIconResponse = resourceIconResponse;

0 commit comments

Comments
 (0)