bfg-common 1.2.141 → 1.2.142
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.
- package/components/common/wizards/vm/migrate/select/storage/table/disk/config/config.ts +4 -10
- package/components/common/wizards/vm/migrate/select/storage/table/disk/config/tableKeys.ts +0 -1
- package/components/common/wizards/vm/migrate/select/storage/table/disk/models/interfaces.ts +17 -14
- package/components/common/wizards/vm/migrate/select/storage/table/disk/models/types.ts +0 -1
- package/package.json +1 -1
|
@@ -19,11 +19,10 @@ const getItems = (
|
|
|
19
19
|
[localization.file, true, '180px', vmMigrateDiskTableItemKeys[2]],
|
|
20
20
|
[localization.storage, true, '120px', vmMigrateDiskTableItemKeys[3]],
|
|
21
21
|
[localization.diskFormat, true, '180px', vmMigrateDiskTableItemKeys[4]],
|
|
22
|
-
[localization.
|
|
23
|
-
[localization.
|
|
24
|
-
[localization.
|
|
25
|
-
[localization.
|
|
26
|
-
[localization.diskMode, true, '180px', vmMigrateDiskTableItemKeys[9]],
|
|
22
|
+
[localization.sharing, true, '120px', vmMigrateDiskTableItemKeys[5]],
|
|
23
|
+
[localization.target, true, '120px', vmMigrateDiskTableItemKeys[6]],
|
|
24
|
+
[localization.cache, true, '120px', vmMigrateDiskTableItemKeys[7]],
|
|
25
|
+
[localization.diskMode, true, '180px', vmMigrateDiskTableItemKeys[8]],
|
|
27
26
|
]
|
|
28
27
|
}
|
|
29
28
|
|
|
@@ -100,11 +99,6 @@ export const bodyItems = (
|
|
|
100
99
|
text: storage[vmMigrateDiskTableItemKeys[8]],
|
|
101
100
|
id: key,
|
|
102
101
|
},
|
|
103
|
-
{
|
|
104
|
-
key: 'col9',
|
|
105
|
-
text: storage[vmMigrateDiskTableItemKeys[9]],
|
|
106
|
-
id: key,
|
|
107
|
-
},
|
|
108
102
|
])
|
|
109
103
|
})
|
|
110
104
|
return bodyItems
|
|
@@ -1,20 +1,23 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
target: string
|
|
4
|
-
disk_group: string
|
|
5
|
-
disk_source: string
|
|
6
|
-
disk_size: string
|
|
7
|
-
file: string
|
|
8
|
-
datastore: string
|
|
1
|
+
interface API_UI_I_ExtraValuePerDiskItem {
|
|
2
|
+
cache: string
|
|
9
3
|
datastore_id: string
|
|
10
|
-
|
|
11
|
-
read_only: string
|
|
4
|
+
discard: string
|
|
12
5
|
disk_mode: string
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
cache: string
|
|
6
|
+
disk_size: number
|
|
7
|
+
disk_source: string
|
|
16
8
|
io_control: string
|
|
17
|
-
|
|
9
|
+
read_only: string
|
|
10
|
+
sharing: string
|
|
11
|
+
target: string
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export interface API_UI_I_StorageConfigurePerDiskItem {
|
|
15
|
+
disk_format: 0 | 1 | 2 | 3
|
|
16
|
+
disk_group: string
|
|
17
|
+
file: string
|
|
18
|
+
storage: string
|
|
19
|
+
virtual_machine: string
|
|
20
|
+
extra: API_UI_I_ExtraValuePerDiskItem
|
|
18
21
|
}
|
|
19
22
|
|
|
20
23
|
export interface UI_I_StorageConfigurePerDiskItem
|