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
FiberChannel(true, true, EncryptionSupport.Unsupported); // Fiber Channel Pool for KVM hypervisors is used to find the volume by WWN value (/dev/disk/by-id/wwn-<wwnvalue>)
186
+
180
187
privatefinalbooleanshared;
181
188
privatefinalbooleanoverProvisioning;
182
-
privatefinalbooleanencryption;
189
+
privatefinalEncryptionSupportencryption;
183
190
184
-
/**
185
-
* New StoragePoolType, set the name to check with it in Dao (Note: Do not register it into the map of pool types).
186
-
* @param name name of the StoragePoolType.
187
-
*/
188
-
publicStoragePoolType(Stringname) {
189
-
this.name = name;
190
-
this.shared = false;
191
-
this.overProvisioning = false;
192
-
this.encryption = false;
193
-
}
194
-
195
-
/**
196
-
* Define a new StoragePoolType, and register it into the map of pool types known to the management server.
197
-
* @param name Simple unique name of the StoragePoolType.
198
-
* @param shared Storage pool is shared/accessible to multiple hypervisors
199
-
* @param overProvisioning Storage pool supports overProvisioning
200
-
* @param encryption Storage pool supports encrypted volumes
"a boolean or a numeric value: if it results in a boolean value, the tariff value will be applied according to the result; if it results in a numeric value, the " +
1211
1211
"numeric value will be applied; if the result is neither a boolean nor a numeric value, the tariff will not be applied. If the rule is not informed, the tariff " +
1212
1212
"value will be applied.";
1213
+
1213
1214
publicstaticfinalStringPARAMETER_DESCRIPTION_START_DATE_POSSIBLE_FORMATS = "The recommended format is \"yyyy-MM-dd'T'HH:mm:ssZ\" (e.g.: \"2023-01-01T12:00:00+0100\"); " +
1214
1215
"however, the following formats are also accepted: \"yyyy-MM-dd HH:mm:ss\" (e.g.: \"2023-01-01 12:00:00\") and \"yyyy-MM-dd\" (e.g.: \"2023-01-01\" - if the time is not " +
1215
1216
"added, it will be interpreted as \"00:00:00\"). If the recommended format is not used, the date will be considered in the server timezone.";
@@ -1218,6 +1219,8 @@ public class ApiConstants {
1218
1219
"however, the following formats are also accepted: \"yyyy-MM-dd HH:mm:ss\" (e.g.: \"2023-01-01 12:00:00\") and \"yyyy-MM-dd\" (e.g.: \"2023-01-01\" - if the time is not " +
1219
1220
"added, it will be interpreted as \"23:59:59\"). If the recommended format is not used, the date will be considered in the server timezone.";
1220
1221
1222
+
publicstaticfinalStringVMWARE_DC = "vmwaredc";
1223
+
1221
1224
/**
1222
1225
* This enum specifies IO Drivers, each option controls specific policies on I/O.
1223
1226
* Qemu guests support "threads" and "native" options Since 0.8.8 ; "io_uring" is supported Since 6.3.0 (QEMU 5.0).
0 commit comments