VirtualBox

source: vbox/trunk/doc/manual/en_US/man_VBoxManage-cloudinstance.xml@ 81183

Last change on this file since 81183 was 81093, checked in by vboxsync, 5 years ago

bugref:9555. Update SDK reference and user manual.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.8 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3 manpage, user manual, usage: VBoxManage cloud instance
4
5 Copyright (C) 2018 Oracle Corporation
6
7 This file is part of VirtualBox Open Source Edition (OSE), as
8 available from http://www.virtualbox.org. This file is free software;
9 you can redistribute it and/or modify it under the terms of the GNU
10 General Public License (GPL) as published by the Free Software
11 Foundation, in version 2 as it comes in the "COPYING" file of the
12 VirtualBox OSE distribution. VirtualBox OSE is distributed in the
13 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
14 -->
15<refentry id="vboxmanage-cloudinstance" lang="en">
16
17 <refentryinfo>
18 <pubdate>$Date: 2019-10-01 09:59:14 +0000 (Tue, 01 Oct 2019) $</pubdate>
19 <title>VBoxManage cloud instance</title>
20 </refentryinfo>
21
22 <refmeta>
23 <refentrytitle>VBoxManage-cloudinstance</refentrytitle>
24 <manvolnum>1</manvolnum>
25 </refmeta>
26
27 <refnamediv>
28 <refname>VBoxManage-cloudinstance</refname>
29 <refpurpose>Manage the cloud instances</refpurpose>
30 <refclass>Oracle VM VirtualBox</refclass>
31 </refnamediv>
32
33 <refsynopsisdiv>
34 <cmdsynopsis id="synopsis-vboxmanage-cloudinstance-create" sepchar=" ">
35 <command moreinfo="none">VBoxManage cloud</command>
36 <arg choice="req" rep="norepeat">--provider=<replaceable>name</replaceable></arg>
37 <arg choice="req" rep="norepeat">--profile=<replaceable>name</replaceable></arg>
38 <arg choice="plain" rep="norepeat">instance</arg>
39 <arg choice="plain" rep="norepeat">create</arg>
40 <arg choice="req" rep="norepeat">--domain-name=<replaceable>name</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>
45 <arg choice="req" rep="norepeat">--display-name=<replaceable>name</replaceable></arg>
46 <arg choice="req" rep="norepeat">--shape=<replaceable>type</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>
49 <arg rep="norepeat">--publicip=<replaceable>true/false</replaceable></arg>
50 <arg rep="norepeat">--privateip=<replaceable>IP address</replaceable></arg>
51 <arg rep="norepeat">--launch-mode=<replaceable>NATIVE/EMULATED/PARAVIRTUALIZED</replaceable></arg>
52 </cmdsynopsis>
53 <cmdsynopsis id="synopsis-vboxmanage-cloudinstance-info" sepchar=" ">
54 <command moreinfo="none">VBoxManage cloud</command>
55 <arg choice="req" rep="norepeat">--provider=<replaceable>name</replaceable></arg>
56 <arg choice="req" rep="norepeat">--profile=<replaceable>name</replaceable></arg>
57 <arg choice="plain" rep="norepeat">instance</arg>
58 <arg choice="plain" rep="norepeat">info</arg>
59 <arg choice="req" rep="norepeat">--id=<replaceable>unique id</replaceable></arg>
60 </cmdsynopsis>
61 <cmdsynopsis id="synopsis-vboxmanage-cloudinstance-terminate" sepchar=" ">
62 <command moreinfo="none">VBoxManage cloud</command>
63 <arg choice="req" rep="norepeat">--provider=<replaceable>name</replaceable></arg>
64 <arg choice="req" rep="norepeat">--profile=<replaceable>name</replaceable></arg>
65 <arg choice="plain" rep="norepeat">instance</arg>
66 <arg choice="plain" rep="norepeat">terminate</arg>
67 <arg choice="req" rep="norepeat">--id=<replaceable>unique id</replaceable></arg>
68 </cmdsynopsis>
69 <cmdsynopsis id="synopsis-vboxmanage-cloudinstance-start" sepchar=" ">
70 <command moreinfo="none">VBoxManage cloud</command>
71 <arg choice="req" rep="norepeat">--provider=<replaceable>name</replaceable></arg>
72 <arg choice="req" rep="norepeat">--profile=<replaceable>name</replaceable></arg>
73 <arg choice="plain" rep="norepeat">instance</arg>
74 <arg choice="plain" rep="norepeat">start</arg>
75 <arg choice="req" rep="norepeat">--id=<replaceable>unique id</replaceable></arg>
76 </cmdsynopsis>
77 <cmdsynopsis id="synopsis-vboxmanage-cloudinstance-pause" sepchar=" ">
78 <command moreinfo="none">VBoxManage cloud</command>
79 <arg choice="req" rep="norepeat">--provider=<replaceable>name</replaceable></arg>
80 <arg choice="req" rep="norepeat">--profile=<replaceable>name</replaceable></arg>
81 <arg choice="plain" rep="norepeat">instance</arg>
82 <arg choice="plain" rep="norepeat">pause</arg>
83 <arg choice="req" rep="norepeat">--id=<replaceable>unique id</replaceable></arg>
84 </cmdsynopsis>
85 </refsynopsisdiv>
86
87 <refsect1>
88 <title>Description</title>
89
90 <refsect2 id="vboxmanage-cloudinstance-common-options">
91 <title>Common options</title>
92 <remark role="help-scope" condition="GLOBAL"/>
93 <para>The subcommands of <command>cloudinstance</command> implement the standard operations for a cloud instance
94 like start/pause/show/terminate. The next common options must be placed between the "cloud" and the following sub-commands:</para>
95 <variablelist>
96 <varlistentry>
97 <term>--provider=<replaceable>name</replaceable></term>
98 <listitem><para>Short cloud provider name.</para></listitem>
99 </varlistentry>
100 <varlistentry>
101 <term>--profile=<replaceable>name</replaceable></term>
102 <listitem><para>Cloud profile name. </para></listitem>
103 </varlistentry>
104 </variablelist>
105 </refsect2>
106
107 <refsect2 id="vboxmanage-cloudinstance-create">
108 <title>cloud instance create</title>
109 <remark role="help-copy-synopsis"/>
110 <para>
111 Creates new instance in the Cloud.
112 There are two standard ways to create an instance in the Cloud:
113 1. Create an instance from an existing custom image.
114 2. Create an instance from an existing bootable volume. This bootable volume shouldn't be attached to any instance.
115 For the 1st approach next parameters are required: image-id and boot-disk-size.
116 For the 2nd approach next parameters are required: boot-volume-id;
117 The rest parameters are common for both cases:
118 display-name, launch-mode, subnet-id, publicIP, privateIP, shape, domain.
119 </para>
120 <variablelist>
121 <varlistentry>
122 <term><option>--domain-name</option></term><listitem><para>Cloud domain where new instance is created.</para></listitem>
123 </varlistentry>
124 <varlistentry>
125 <term><option>--image-id</option></term><listitem><para>Unique identifier which fully identifies a custom image in the Cloud.</para></listitem>
126 </varlistentry>
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>
131 <term><option>--display-name</option></term><listitem><para>Name for new instance in the Cloud.</para></listitem>
132 </varlistentry>
133 <varlistentry>
134 <term><option>--shape</option></term><listitem><para> The shape of instance, defines the number of CPUs and RAM memory.</para></listitem>
135 </varlistentry>
136 <varlistentry>
137 <term><option>--subnet</option></term><listitem><para> Unique identifier which fully identifies an existing subnet in the Cloud which will be used by the instance.</para></listitem>
138 </varlistentry>
139 <varlistentry>
140 <term><option>--boot-disk-size</option></term><listitem><para> The size of bootable image in GB. Default is 50GB.</para></listitem>
141 </varlistentry>
142 <varlistentry>
143 <term><option>--publicip</option></term><listitem><para>Whether the instance will have a public IP or not.</para></listitem>
144 </varlistentry>
145 <varlistentry>
146 <term><option>--privateip</option></term><listitem><para>Private IP address for the created instance.</para></listitem>
147 </varlistentry>
148 <varlistentry>
149 <term><option>--launch-mode</option></term><listitem><para>The most known values here may be EMULATED, NATIVE, PARAVIRTUALIZED. </para></listitem>
150 </varlistentry>
151 </variablelist>
152 </refsect2>
153
154 <refsect2 id="vboxmanage-cloudinstance-info">
155 <title>cloud instance info</title>
156 <para>
157 Display information about a cloud instance with a specified id.
158 </para>
159 <variablelist>
160 <varlistentry>
161 <term><option>--id</option></term><listitem><para>Unique identifier which fully identify the instance in the Cloud.</para></listitem>
162 </varlistentry>
163 </variablelist>
164 </refsect2>
165
166 <refsect2 id="vboxmanage-cloudinstance-terminate">
167 <title>cloud instance termination</title>
168 <para>
169 Delete a cloud instance with a specified id.
170 </para>
171 <variablelist>
172 <varlistentry>
173 <term><option>--id</option></term><listitem><para>Unique identifier which fully identify the instance in the Cloud.</para></listitem>
174 </varlistentry>
175 </variablelist>
176 </refsect2>
177
178 <refsect2 id="vboxmanage-cloudinstance-start">
179 <title>cloud instance start</title>
180 <para>
181 Start a cloud instance with a specified id.
182 </para>
183 <variablelist>
184 <varlistentry>
185 <term><option>--id</option></term><listitem><para>Unique identifier which fully identify the instance in the Cloud.</para></listitem>
186 </varlistentry>
187 </variablelist>
188 </refsect2>
189
190 <refsect2 id="vboxmanage-cloudinstance-pause">
191 <title>cloud instance pause</title>
192 <para>
193 Pause a cloud instance with a specified id.
194 </para>
195 <variablelist>
196 <varlistentry>
197 <term><option>--id</option></term><listitem><para>Unique identifier which fully identify the instance in the Cloud.</para></listitem>
198 </varlistentry>
199 </variablelist>
200 </refsect2>
201 </refsect1>
202</refentry>
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette