net.minidev.ovh.api.veeamcloudconnect.OvhLocation Maven / Gradle / Ivy
package net.minidev.ovh.api.veeamcloudconnect;
/**
* All Location where cloud can be physically located
*/
public enum OvhLocation {
bhs1("bhs1"),
rbx2("rbx2"),
sbg1("sbg1");
final String value;
OvhLocation(String s) {
this.value = s;
}
public String toString() {
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy