bfg-common 1.3.110 → 1.3.111
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/vm/actions/common/customizeHardware/virtualHardware/lib/models/interfaces.ts +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/NewPciDevice.vue +3 -3
- package/components/common/vm/actions/common/lib/models/interfaces.ts +1 -1
- package/components/common/vm/actions/lib/utils.ts +1 -1
- package/lib/models/store/vm/interfaces.ts +1 -1
- package/package.json +1 -1
|
@@ -115,21 +115,21 @@ const sendData = computed<UI_I_SendDataNewPciDevice>(() => {
|
|
|
115
115
|
switch (selectedType.value.value) {
|
|
116
116
|
case 'direct_path_io':
|
|
117
117
|
return {
|
|
118
|
-
|
|
118
|
+
address: directPathIo.value.address,
|
|
119
119
|
vendor_name: directPathIo.value.vendor_name,
|
|
120
120
|
class_name: directPathIo.value.class_name,
|
|
121
121
|
device_name: directPathIo.value.device_name,
|
|
122
122
|
}
|
|
123
123
|
case 'dynamic_direct_path_io':
|
|
124
124
|
return {
|
|
125
|
-
|
|
125
|
+
address: '',
|
|
126
126
|
vendor_name: '',
|
|
127
127
|
class_name: '',
|
|
128
128
|
device_name: '',
|
|
129
129
|
}
|
|
130
130
|
default:
|
|
131
131
|
return {
|
|
132
|
-
|
|
132
|
+
address: '',
|
|
133
133
|
vendor_name: '',
|
|
134
134
|
class_name: '',
|
|
135
135
|
device_name: '',
|
|
@@ -129,7 +129,7 @@ export interface UI_I_CreateVmData {
|
|
|
129
129
|
| UI_I_CreateVmDataCdDvdDevice
|
|
130
130
|
)[]
|
|
131
131
|
network_devices: UI_I_SendDataNewNetwork[]
|
|
132
|
-
|
|
132
|
+
passthrough_pci_devices: UI_I_SendDataNewPciDevice[]
|
|
133
133
|
options: UI_I_SendDataVmoptions
|
|
134
134
|
storage: UI_I_CreateVmDataStorage
|
|
135
135
|
cpu: UI_I_CreateVmDataCpu
|
|
@@ -208,6 +208,6 @@ export interface API_UI_I_VmReadyToComplete {
|
|
|
208
208
|
storage: API_UI_I_VmReadyToCompleteStorage
|
|
209
209
|
usb_controllers: API_UI_I_VmReadyToCompleteUsbController[]
|
|
210
210
|
video_card: API_UI_I_VmReadyToCompleteVideoCard
|
|
211
|
-
|
|
211
|
+
passthrough_pci_devices: API_UI_I_VmReadyToCompletePciDevice[]
|
|
212
212
|
}
|
|
213
213
|
}
|