DaanHoogland commented on code in PR #9419:
URL: https://github.com/apache/cloudstack/pull/9419#discussion_r1684237382
##########
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:
as discussed off-line; let's use as many primitive as possible and expose
those with `is..()` calls. Wrappers are useful only on optional output.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]