Changeset 81421 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Oct 21, 2019 5:47:42 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134138
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/Frontends/VBoxManage/VBoxManageCloud.cpp ¶
r81398 r81421 735 735 }; 736 736 737 size_t vsdHReadableArraySize = 9;//the number of items in the vsdHReadableArray 738 vsdHReadable vsdHReadableArray[9] = { 739 {VirtualSystemDescriptionType_CloudDomain, "Availability domain = '%ls'\n", "Availability domain wasn't found\n"}, 740 {VirtualSystemDescriptionType_Name, "Instance displayed name = '%ls'\n", "Instance displayed name wasn't found\n"}, 741 {VirtualSystemDescriptionType_CloudInstanceState, "Instance state = '%ls'\n", "Instance state wasn't found\n"}, 742 {VirtualSystemDescriptionType_CloudInstanceId, "Instance Id = '%ls'\n", "Instance Id wasn't found\n"}, 743 {VirtualSystemDescriptionType_CloudImageId, "Bootable image Id = '%ls'\n", 737 const size_t vsdHReadableArraySize = 12;//the number of items in the vsdHReadableArray 738 vsdHReadable vsdHReadableArray[vsdHReadableArraySize] = { 739 {VirtualSystemDescriptionType_CloudDomain, "Availability domain = %ls\n", "Availability domain wasn't found\n"}, 740 {VirtualSystemDescriptionType_Name, "Instance displayed name = %ls\n", "Instance displayed name wasn't found\n"}, 741 {VirtualSystemDescriptionType_CloudInstanceState, "Instance state = %ls\n", "Instance state wasn't found\n"}, 742 {VirtualSystemDescriptionType_CloudInstanceId, "Instance Id = %ls\n", "Instance Id wasn't found\n"}, 743 {VirtualSystemDescriptionType_CloudInstanceDisplayName, "Instance name = %ls\n", "Instance name wasn't found\n"}, 744 {VirtualSystemDescriptionType_CloudImageId, "Bootable image Id = %ls\n", 744 745 "Image Id whom the instance is booted up wasn't found\n"}, 745 {VirtualSystemDescriptionType_CloudInstanceShape, "Shape of the instance = '%ls'\n",746 {VirtualSystemDescriptionType_CloudInstanceShape, "Shape of the instance = %ls\n", 746 747 "The shape of the instance wasn't found\n"}, 747 {VirtualSystemDescriptionType_OS, "Type of guest OS = '%ls'\n", "Type of guest OS wasn't found.\n"}, 748 {VirtualSystemDescriptionType_Memory, "RAM = '%ls MB'\n", "Value for RAM wasn't found\n"}, 749 {VirtualSystemDescriptionType_CPU, "CPUs = '%ls'\n", "Numbers of CPUs weren't found\n"} 748 {VirtualSystemDescriptionType_OS, "Type of guest OS = %ls\n", "Type of guest OS wasn't found\n"}, 749 {VirtualSystemDescriptionType_Memory, "RAM = %ls MB\n", "Value for RAM wasn't found\n"}, 750 {VirtualSystemDescriptionType_CPU, "CPUs = %ls\n", "Numbers of CPUs weren't found\n"}, 751 {VirtualSystemDescriptionType_CloudPublicIP, "Instance public IP = %ls\n", "Public IP wasn't found\n"}, 752 {VirtualSystemDescriptionType_Miscellaneous, "%ls\n", "Free-form tags or metadata weren't found\n"} 750 753 }; 751 754 … … 767 770 LogRel((vsdHReadableArray[i].strNotFound.c_str())); 768 771 else 769 RTPrintf(vsdHReadableArray[i].strFound.c_str(), aVBoxValues[0]); 772 { 773 LogRel(("Size is %d", aVBoxValues.size())); 774 for (size_t j = 0; j<aVBoxValues.size(); ++j) 775 { 776 RTPrintf(vsdHReadableArray[i].strFound.c_str(), aVBoxValues[j]); 777 } 778 } 770 779 771 780 retTypes.setNull();
Note:
See TracChangeset
for help on using the changeset viewer.