Changeset 75434 in vbox
- Timestamp:
- Nov 13, 2018 11:56:46 PM (6 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.cpp
r75371 r75434 310 310 { 311 311 /* Read Cloud Client parameters for Export VM operation: */ 312 const QString strJSON = comCloudClient.GetExport Parameters();312 const QString strJSON = comCloudClient.GetExportLaunchParameters(); 313 313 /* Show error message if necessary: */ 314 314 if (!comCloudClient.isOk()) -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r75394 r75434 25314 25314 <interface 25315 25315 name="ICloudClient" extends="$unknown" 25316 uuid=" 86b831ff-ffe4-49c2-843f-0c8b03817025"25316 uuid="cb244d7b-3757-4fdd-976b-9b8a269da77c" 25317 25317 wsmap="managed" reservedMethods="4" reservedAttributes="4" 25318 25318 > 25319 25319 25320 <method name="getExport Parameters" const="yes">25321 <desc> 25322 Returns the parameters required to be shown to user for export a VM to a cloudoperation.25320 <method name="getExportLaunchParameters" const="yes"> 25321 <desc> 25322 Returns parameters to be shown to the user for the cloud export and launch operation. 25323 25323 </desc> 25324 25324 <param name="jsonString" type="wstring" dir="return"> … … 25327 25327 </method> 25328 25328 25329 <method name="export VM">25330 <desc> 25331 Exports a VM described in description parameter25329 <method name="exportLaunchVM"> 25330 <desc> 25331 Exports and optionally launch a VM described in description parameter 25332 25332 </desc> 25333 25333 <param name="description" type="IVirtualSystemDescription" dir="in"> -
trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp
r75312 r75434 2376 2376 10); // ULONG ulFirstOperationWeight, 2377 2377 2378 hrc = cloudClient->Export VM(m->virtualSystemDescriptions.front(), pTask->pProgress, VBox);2378 hrc = cloudClient->ExportLaunchVM(m->virtualSystemDescriptions.front(), pTask->pProgress, VBox); 2379 2379 } else { 2380 2380 /// @todo Fail here with user notification. We do export 1 VM only
Note:
See TracChangeset
for help on using the changeset viewer.