Index: /trunk/src/VBox/Main/include/ApplianceImplPrivate.h
===================================================================
--- /trunk/src/VBox/Main/include/ApplianceImplPrivate.h	(revision 75311)
+++ /trunk/src/VBox/Main/include/ApplianceImplPrivate.h	(revision 75312)
@@ -239,5 +239,5 @@
         Utf8Str strBootDiskSize;
         Utf8Str strBucketId;
-        Utf8Str strVCN;
+        Utf8Str strSubnet;
         bool    fPublicIP;
         Utf8Str strUserId;
Index: /trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp
===================================================================
--- /trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp	(revision 75311)
+++ /trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp	(revision 75312)
@@ -961,12 +961,12 @@
             LogRel(("OCI bucket name: %s\n", m->m_OciExportData.strBucketId.c_str()));
 
-            std::list<VirtualSystemDescriptionEntry*> vcn =
-                vsdescThis->i_findByType(VirtualSystemDescriptionType_CloudOCIVCN);
-            if (vcn.empty())
+            std::list<VirtualSystemDescriptionEntry*> subnet =
+                vsdescThis->i_findByType(VirtualSystemDescriptionType_CloudOCISubnet);
+            if (subnet.empty())
                 throw rc = setError(VBOX_E_OBJECT_NOT_FOUND,
-                                    tr("OCI: VCN wasn't found"));
-
-            m->m_OciExportData.strVCN = vcn.front()->strVBoxCurrent;
-            LogRel(("OCI VCN name: %s\n", m->m_OciExportData.strVCN.c_str()));
+                                    tr("OCI: Subnet wasn't found"));
+
+            m->m_OciExportData.strSubnet = subnet.front()->strVBoxCurrent;
+            LogRel(("OCI Subnet name: %s\n", m->m_OciExportData.strSubnet.c_str()));
 
             std::list<VirtualSystemDescriptionEntry*> publicIP =
