Changeset 81093 in vbox for trunk/doc/manual
- Timestamp:
- Oct 1, 2019 9:59:14 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 133700
- Location:
- trunk/doc/manual/en_US
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/en_US/SDKRef.xml
r81008 r81093 2616 2616 <para> 2617 2617 See the <link linkend="ICloudClient__launchVM">ICloudClient::launchVM</link>. 2618 The function launches a new instance in OCI with a previously created custom image as a bootable image in OCI. 2618 The function launches a new instance in OCI with a bootable volume previously created from a custom image in OCI or 2619 as the source may be used an existing bootable volume which shouldn't be attached to any instance. 2620 For launching instance from a custom image use the parameter VirtualSystemDescriptionType::CloudImageId. 2621 For launching instance from a bootable volume use the parameter VirtualSystemDescriptionType::CloudBootVolumeId. 2622 Only one of them must be presented otherwise the error will occur. 2619 2623 The final result of this operation is a running instance. The id of created instance is returned 2620 2624 in the parameter "description" (which is <link linkend="IVirtualSystemDescription">IVirtualSystemDescription</link>) … … 2629 2633 </listitem> 2630 2634 <listitem> 2631 <para>VirtualSystemDescriptionType::CloudImageId - OCID of custom image used as a bootable image for the instance.</para> 2632 </listitem> 2633 <listitem> 2634 <para> VirtualSystemDescriptionType::CloudBootDiskSize - The size of instance bootable image in GB.</para> 2635 <para> 2636 Use VirtualSystemDescriptionType::CloudImageId - OCID of custom image used as a bootable image for the instance 2637 or 2638 VirtualSystemDescriptionType::CloudBootVolumeId - OCID of existing and non-attached bootable volume used as a bootable volume for the instance. 2639 </para> 2640 </listitem> 2641 <listitem> 2642 <para>Add VirtualSystemDescriptionType::CloudBootDiskSize - The size of instance bootable volume in GB, 2643 If you use VirtualSystemDescriptionType::CloudImageId.</para> 2635 2644 </listitem> 2636 2645 <listitem> -
trunk/doc/manual/en_US/man_VBoxManage-cloudinstance.xml
r80954 r81093 39 39 <arg choice="plain" rep="norepeat">create</arg> 40 40 <arg choice="req" rep="norepeat">--domain-name=<replaceable>name</replaceable></arg> 41 <arg choice="req" rep="norepeat">--image-id=<replaceable>unique id</replaceable></arg> 41 <group choice="req"> 42 <arg choice="req" rep="norepeat">--image-id=<replaceable>id</replaceable></arg> 43 <arg choice="req" rep="norepeat">--boot-volume-id=<replaceable>id</replaceable></arg> 44 </group> 42 45 <arg choice="req" rep="norepeat">--display-name=<replaceable>name</replaceable></arg> 43 46 <arg choice="req" rep="norepeat">--shape=<replaceable>type</replaceable></arg> 44 <arg choice="req" rep="norepeat">--subnet=<replaceable> uniqueid</replaceable></arg>45 <arg choice="req"rep="norepeat">--boot-disk-size=<replaceable>size in GB</replaceable></arg>47 <arg choice="req" rep="norepeat">--subnet=<replaceable>id</replaceable></arg> 48 <arg rep="norepeat">--boot-disk-size=<replaceable>size in GB</replaceable></arg> 46 49 <arg rep="norepeat">--publicip=<replaceable>true/false</replaceable></arg> 47 50 <arg rep="norepeat">--privateip=<replaceable>IP address</replaceable></arg> … … 109 112 There are two standard ways to create an instance in the Cloud: 110 113 1. Create an instance from an existing custom image. 111 2. Create an instance from an existing bootable volume. 114 2. Create an instance from an existing bootable volume. This bootable volume shouldn't be attached to any instance. 112 115 For the 1st approach next parameters are required: image-id and boot-disk-size. 113 116 For the 2nd approach next parameters are required: boot-volume-id; … … 123 126 </varlistentry> 124 127 <varlistentry> 128 <term><option>--boot-volume-id</option></term><listitem><para>Unique identifier which fully identifies a boot volume in the Cloud.</para></listitem> 129 </varlistentry> 130 <varlistentry> 125 131 <term><option>--display-name</option></term><listitem><para>Name for new instance in the Cloud.</para></listitem> 126 132 </varlistentry>
Note:
See TracChangeset
for help on using the changeset viewer.