DaanHoogland commented on code in PR #10551:
URL: https://github.com/apache/cloudstack/pull/10551#discussion_r2740566993
##########
api/src/main/java/org/apache/cloudstack/api/command/admin/storage/UpdateObjectStoragePoolCmd.java:
##########
@@ -63,6 +75,24 @@ public String getUrl() {
return url;
}
+ public String getProviderName() {
+ return providerName;
+ }
+
+ public Map<String, String> getDetails() {
+ Map<String, String> detailsMap = null;
+ if (details != null && !details.isEmpty()) {
+ detailsMap = new HashMap<>();
+ for (Object prop : details.values()) {
+ HashMap<String, String> detail = (HashMap<String, String>)
prop;
+ String key = detail.get(ApiConstants.KEY);
+ String value = detail.get(ApiConstants.VALUE);
+ detailsMap.put(key, value);
+ }
+ }
+ return detailsMap;
+ }
+
Review Comment:
```suggestion
```
--
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]