@kumori/aurora-interfaces 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4,6 +4,8 @@ export enum ProviderName {
|
|
|
4
4
|
AZURE = "azure",
|
|
5
5
|
KUMORI = "kumori",
|
|
6
6
|
OASIX = "oasix",
|
|
7
|
+
OPENNEBULA = "opennebula",
|
|
8
|
+
CLOUDOS = "cloudos"
|
|
7
9
|
}
|
|
8
10
|
export function getProviderImage (provider: ProviderName): string {
|
|
9
11
|
switch (provider) {
|
|
@@ -17,6 +19,10 @@ export function getProviderImage (provider: ProviderName): string {
|
|
|
17
19
|
return "kumori.png";
|
|
18
20
|
case ProviderName.OASIX:
|
|
19
21
|
return "oasix.png";
|
|
22
|
+
case ProviderName.OPENNEBULA:
|
|
23
|
+
return "open_nebula.png"
|
|
24
|
+
case ProviderName.CLOUDOS:
|
|
25
|
+
return "cloudos.svg"
|
|
20
26
|
default:
|
|
21
27
|
return "AXEBOW-sello-color.svg";
|
|
22
28
|
}
|