vishesh92 commented on code in PR #9419: URL: https://github.com/apache/cloudstack/pull/9419#discussion_r1684137783
########## api/src/main/java/org/apache/cloudstack/api/response/ZoneResponse.java: ########## @@ -344,6 +336,30 @@ public Map<String, String> getResourceDetails() { return resourceDetails; } + public Boolean getSecurityGroupsEnabled() { + return securityGroupsEnabled; + } + + public Boolean getLocalStorageEnabled() { + return localStorageEnabled; + } + + public Boolean getAllowUserSpecifyVRMtu() { + return allowUserSpecifyVRMtu; + } + + public Integer getRouterPrivateInterfaceMaxMtu() { + return routerPrivateInterfaceMaxMtu; + } + + public Integer getRouterPublicInterfaceMaxMtu() { + return routerPublicInterfaceMaxMtu; + } + + public boolean getNsxEnabled() { Review Comment: This happened for `localStorageEnabled` & `securityGroupsEnabled` which are `Boolean`. Not sure about `nsxEnabled` which is a primitive type (`boolean`). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org