You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: server/src/main/java/com/cloud/server/ManagementServerImpl.java
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -909,6 +909,9 @@ public class ManagementServerImpl extends ManagerBase implements ManagementServe
909
909
"License check interval (days)", true);
910
910
staticfinalConfigKey<Boolean> humanReadableSizes = newConfigKey<>("Advanced", Boolean.class, "display.human.readable.sizes", "true", "Enables outputting human readable byte sizes to logs and usage records.", false, ConfigKey.Scope.Global);
911
911
publicstaticfinalConfigKey<String> customCsIdentifier = newConfigKey<>("Advanced", String.class, "custom.cs.identifier", UUID.randomUUID().toString().split("-")[0].substring(4), "Custom identifier for the cloudstack installation", true, ConfigKey.Scope.Global);
912
+
publicstaticfinalConfigKey<Boolean> exposeCloudStackVersionInApiXmlResponse = newConfigKey<Boolean>("Advanced", Boolean.class, "expose.cloudstack.version.api.xml.response", "true", "Indicates whether ACS version should appear in the root element of an API XML response.", true, ConfigKey.Scope.Global);
913
+
publicstaticfinalConfigKey<Boolean> exposeCloudStackVersionInApiListCapabilities = newConfigKey<Boolean>("Advanced", Boolean.class, "expose.cloudstack.version.api.list.capabilities", "true", "Indicates whether ACS version should show in the listCapabilities API.", true, ConfigKey.Scope.Global);
0 commit comments