VirtualBox

source: vbox/trunk/doc/manual/en_US/man_VBoxManage-cloud.xml@ 88756

Last change on this file since 88756 was 87279, checked in by vboxsync, 4 years ago

bugref:9907. Added the cloud-init parameter into VBoxManage help and documentation.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 29.8 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 manpage, user manual, usage: VBoxManage cloud
4
5 Copyright (C) 2018-2020 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<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
16<refentry id="vboxmanage-cloud" lang="en">
17
18 <refentryinfo>
19 <pubdate>$Date: 2021-01-15 15:02:00 +0000 (Fri, 15 Jan 2021) $</pubdate>
20 <title>VBoxManage cloud</title>
21 </refentryinfo>
22
23 <refmeta>
24 <refentrytitle>VBoxManage-cloud</refentrytitle>
25 <manvolnum>1</manvolnum>
26 </refmeta>
27
28 <refnamediv>
29 <refname>VBoxManage-cloud</refname>
30 <refpurpose>Manage the cloud entities</refpurpose>
31 <refclass>Oracle VM VirtualBox</refclass>
32 </refnamediv>
33
34 <refsynopsisdiv>
35 <!-- Cloud list commands -->
36 <cmdsynopsis id="synopsis-vboxmanage-cloudlist-instances"> <!-- The 'id' is mandatory and must start with 'synopsis-'. -->
37 <command>VBoxManage cloud</command>
38 <arg choice="req">--provider=<replaceable>name</replaceable></arg>
39 <arg choice="req">--profile=<replaceable>name</replaceable></arg>
40 <arg choice="plain">list</arg>
41 <arg choice="plain">instances</arg>
42 <arg>--state=<replaceable>string</replaceable></arg>
43 <arg>--compartment-id=<replaceable>string</replaceable></arg>
44 </cmdsynopsis>
45 <cmdsynopsis id="synopsis-vboxmanage-cloudlist-images">
46 <command>VBoxManage cloud</command>
47 <arg choice="req">--provider=<replaceable>name</replaceable></arg>
48 <arg choice="req">--profile=<replaceable>name</replaceable></arg>
49 <arg choice="plain">list</arg>
50 <arg choice="plain">images</arg>
51 <arg choice="req">--compartment-id=<replaceable>string</replaceable></arg>
52 <arg>--state=<replaceable>string</replaceable></arg>
53 </cmdsynopsis>
54
55 <!-- Cloud instance commands -->
56 <cmdsynopsis id="synopsis-vboxmanage-cloudinstance-create" sepchar=" ">
57 <command moreinfo="none">VBoxManage cloud</command>
58 <arg choice="req" rep="norepeat">--provider=<replaceable>name</replaceable></arg>
59 <arg choice="req" rep="norepeat">--profile=<replaceable>name</replaceable></arg>
60 <arg choice="plain" rep="norepeat">instance</arg>
61 <arg choice="plain" rep="norepeat">create</arg>
62 <arg choice="req" rep="norepeat">--domain-name=<replaceable>name</replaceable></arg>
63 <group choice="req">
64 <arg choice="req" rep="norepeat">--image-id=<replaceable>id</replaceable></arg>
65 <arg choice="req" rep="norepeat">--boot-volume-id=<replaceable>id</replaceable></arg>
66 </group>
67 <arg choice="req" rep="norepeat">--display-name=<replaceable>name</replaceable></arg>
68 <arg choice="req" rep="norepeat">--shape=<replaceable>type</replaceable></arg>
69 <arg choice="req" rep="norepeat">--subnet=<replaceable>id</replaceable></arg>
70 <arg rep="norepeat">--boot-disk-size=<replaceable>size in GB</replaceable></arg>
71 <arg rep="norepeat">--publicip=<replaceable>true/false</replaceable></arg>
72 <arg rep="norepeat">--privateip=<replaceable>IP address</replaceable></arg>
73 <arg rep="repeat">--public-ssh-key=<replaceable>key string</replaceable></arg>
74 <arg rep="norepeat">--launch-mode=<replaceable>NATIVE/EMULATED/PARAVIRTUALIZED</replaceable></arg>
75 <arg rep="norepeat">--cloud-init-script-path=<replaceable>path to a script</replaceable></arg>
76 </cmdsynopsis>
77 <cmdsynopsis id="synopsis-vboxmanage-cloudinstance-info" 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">info</arg>
83 <arg choice="req" rep="norepeat">--id=<replaceable>unique id</replaceable></arg>
84 </cmdsynopsis>
85 <cmdsynopsis id="synopsis-vboxmanage-cloudinstance-terminate" sepchar=" ">
86 <command moreinfo="none">VBoxManage cloud</command>
87 <arg choice="req" rep="norepeat">--provider=<replaceable>name</replaceable></arg>
88 <arg choice="req" rep="norepeat">--profile=<replaceable>name</replaceable></arg>
89 <arg choice="plain" rep="norepeat">instance</arg>
90 <arg choice="plain" rep="norepeat">terminate</arg>
91 <arg choice="req" rep="norepeat">--id=<replaceable>unique id</replaceable></arg>
92 </cmdsynopsis>
93 <cmdsynopsis id="synopsis-vboxmanage-cloudinstance-start" sepchar=" ">
94 <command moreinfo="none">VBoxManage cloud</command>
95 <arg choice="req" rep="norepeat">--provider=<replaceable>name</replaceable></arg>
96 <arg choice="req" rep="norepeat">--profile=<replaceable>name</replaceable></arg>
97 <arg choice="plain" rep="norepeat">instance</arg>
98 <arg choice="plain" rep="norepeat">start</arg>
99 <arg choice="req" rep="norepeat">--id=<replaceable>unique id</replaceable></arg>
100 </cmdsynopsis>
101 <cmdsynopsis id="synopsis-vboxmanage-cloudinstance-pause" sepchar=" ">
102 <command moreinfo="none">VBoxManage cloud</command>
103 <arg choice="req" rep="norepeat">--provider=<replaceable>name</replaceable></arg>
104 <arg choice="req" rep="norepeat">--profile=<replaceable>name</replaceable></arg>
105 <arg choice="plain" rep="norepeat">instance</arg>
106 <arg choice="plain" rep="norepeat">pause</arg>
107 <arg choice="req" rep="norepeat">--id=<replaceable>unique id</replaceable></arg>
108 </cmdsynopsis>
109
110 <!-- Cloud image commands -->
111 <cmdsynopsis id="synopsis-vboxmanage-cloudimage-create" sepchar=" "> <!-- The 'id' is mandatory and must start with 'synopsis-'. -->
112 <command>VBoxManage cloud</command>
113 <arg choice="req" rep="norepeat">--provider=<replaceable>name</replaceable></arg>
114 <arg choice="req" rep="norepeat">--profile=<replaceable>name</replaceable></arg>
115 <arg choice="plain" rep="norepeat">image</arg>
116 <arg choice="plain" rep="norepeat">create</arg>
117 <arg choice="req" rep="norepeat">--display-name=<replaceable>name</replaceable></arg>
118 <arg rep="norepeat">--bucket-name=<replaceable>name</replaceable></arg>
119 <arg rep="norepeat">--object-name=<replaceable>name</replaceable></arg>
120 <arg rep="norepeat">--instance-id=<replaceable>unique id</replaceable></arg>
121 </cmdsynopsis>
122 <cmdsynopsis id="synopsis-vboxmanage-cloudimage-info" sepchar=" ">
123 <command>VBoxManage cloud</command>
124 <arg choice="req" rep="norepeat">--provider=<replaceable>name</replaceable></arg>
125 <arg choice="req" rep="norepeat">--profile=<replaceable>name</replaceable></arg>
126 <arg choice="plain" rep="norepeat">image</arg>
127 <arg choice="plain" rep="norepeat">info</arg>
128 <arg choice="req" rep="norepeat">--id=<replaceable>unique id</replaceable></arg>
129 </cmdsynopsis>
130 <cmdsynopsis id="synopsis-vboxmanage-cloudimage-delete" sepchar=" ">
131 <command>VBoxManage cloud</command>
132 <arg choice="req" rep="norepeat">--provider=<replaceable>name</replaceable></arg>
133 <arg choice="req" rep="norepeat">--profile=<replaceable>name</replaceable></arg>
134 <arg choice="plain" rep="norepeat">image</arg>
135 <arg choice="plain" rep="norepeat">delete</arg>
136 <arg choice="req" rep="norepeat">--id=<replaceable>unique id</replaceable></arg>
137 </cmdsynopsis>
138 <cmdsynopsis id="synopsis-vboxmanage-cloudimage-import" sepchar=" ">
139 <command>VBoxManage cloud</command>
140 <arg choice="req" rep="norepeat">--provider=<replaceable>name</replaceable></arg>
141 <arg choice="req" rep="norepeat">--profile=<replaceable>name</replaceable></arg>
142 <arg choice="plain" rep="norepeat">image</arg>
143 <arg choice="plain" rep="norepeat">import</arg>
144 <arg choice="req" rep="norepeat">--id=<replaceable>unique id</replaceable></arg>
145 <arg rep="norepeat">--bucket-name=<replaceable>name</replaceable></arg>
146 <arg rep="norepeat">--object-name=<replaceable>name</replaceable></arg>
147 </cmdsynopsis>
148 <cmdsynopsis id="synopsis-vboxmanage-cloudimage-export" sepchar=" ">
149 <command>VBoxManage cloud</command>
150 <arg choice="req" rep="norepeat">--provider=<replaceable>name</replaceable></arg>
151 <arg choice="req" rep="norepeat">--profile=<replaceable>name</replaceable></arg>
152 <arg choice="plain" rep="norepeat">image</arg>
153 <arg choice="plain" rep="norepeat">export</arg>
154 <arg choice="req" rep="norepeat">--id=<replaceable>unique id</replaceable></arg>
155 <arg choice="req" rep="norepeat">--display-name=<replaceable>name</replaceable></arg>
156 <arg rep="norepeat">--bucket-name=<replaceable>name</replaceable></arg>
157 <arg rep="norepeat">--object-name=<replaceable>name</replaceable></arg>
158 </cmdsynopsis>
159
160 <!-- Cloud network commands -->
161 <cmdsynopsis id="synopsis-vboxmanage-cloud-network-setup"> <!-- The 'id' is mandatory and must start with 'synopsis-'. -->
162 <command>VBoxManage cloud</command>
163 <arg choice="req">--provider=<replaceable>name</replaceable></arg>
164 <arg choice="req">--profile=<replaceable>name</replaceable></arg>
165 <arg choice="plain">network setup</arg>
166 <arg choice="req">--local-gateway-iso=<replaceable>path</replaceable></arg>
167 <arg>--gateway-os-name=<replaceable>string</replaceable></arg>
168 <arg>--gateway-os-version=<replaceable>string</replaceable></arg>
169 <arg>--gateway-shape=<replaceable>string</replaceable></arg>
170 <arg>--tunnel-network-name=<replaceable>string</replaceable></arg>
171 <arg>--tunnel-network-range=<replaceable>string</replaceable></arg>
172 <arg>--guest-additions-iso=<replaceable>path</replaceable></arg>
173 <arg>--proxy=<replaceable>string</replaceable></arg>
174 <arg>--compartment-id=<replaceable>string</replaceable></arg>
175 </cmdsynopsis>
176 <cmdsynopsis id="synopsis-vboxmanage-cloud-network-create">
177 <command>VBoxManage cloud</command>
178 <arg choice="req">--provider=<replaceable>name</replaceable></arg>
179 <arg choice="req">--profile=<replaceable>name</replaceable></arg>
180 <arg choice="plain">network create</arg>
181 <arg choice="req">--name=<replaceable>string</replaceable></arg>
182 <arg choice="req">--network-id=<replaceable>string</replaceable></arg>
183 <group>
184 <arg choice="plain">--enable</arg>
185 <arg choice="plain">--disable</arg>
186 </group>
187 </cmdsynopsis>
188 <cmdsynopsis id="synopsis-vboxmanage-cloud-network-update">
189 <command>VBoxManage cloud network update</command>
190 <arg choice="req">--name=<replaceable>string</replaceable></arg>
191 <arg>--network-id=<replaceable>string</replaceable></arg>
192 <group>
193 <arg choice="plain">--enable</arg>
194 <arg choice="plain">--disable</arg>
195 </group>
196 </cmdsynopsis>
197 <cmdsynopsis id="synopsis-vboxmanage-cloud-network-delete">
198 <command>VBoxManage cloud</command>
199 <arg choice="plain">network delete</arg>
200 <arg choice="req">--name=<replaceable>string</replaceable></arg>
201 </cmdsynopsis>
202 <cmdsynopsis id="synopsis-vboxmanage-cloud-network-info">
203 <command>VBoxManage cloud</command>
204 <arg choice="plain">network info</arg>
205 <arg choice="req">--name=<replaceable>string</replaceable></arg>
206 </cmdsynopsis>
207 </refsynopsisdiv>
208
209 <refsect1>
210 <title>Description</title>
211
212 <!-- Cloud commands common options -->
213 <refsect2 id="vboxmanage-cloud-common-options">
214 <title>Common options</title>
215 <remark role="help-scope" condition="GLOBAL"/>
216 <para>The word "cloud" is an umbrella for all commands related to the interconnection with the Cloud.
217 The next common options must be placed between the "cloud" and the following sub-commands:</para>
218 <variablelist>
219 <varlistentry>
220 <term>--provider=<replaceable>name</replaceable></term>
221 <listitem><para>Short cloud provider name.</para></listitem>
222 </varlistentry>
223 <varlistentry>
224 <term>--profile=<replaceable>name</replaceable></term>
225 <listitem><para>Cloud profile name. </para></listitem>
226 </varlistentry>
227 </variablelist>
228 </refsect2>
229
230 <!-- Cloud list commands -->
231 <refsect2 id="vboxmanage-cloudlist-instances">
232 <title>cloud list instances</title>
233 <remark role="help-copy-synopsis"/>
234 <para>
235 Displays the list of the instances for a specified compartment.
236 </para>
237 <variablelist>
238 <varlistentry>
239 <term>--state<replaceable>"running/paused/terminated"</replaceable></term>
240 <listitem>
241 <para>The state of cloud instance. The possible states are "running/paused/terminated" at moment.
242 If the state isn't provided the list of instances with all possible states is returned.
243 </para>
244 </listitem>
245 </varlistentry>
246 <varlistentry>
247 <term><option>--compartment-id</option></term>
248 <listitem>
249 <para>A compartment is the logical container used to organize and isolate cloud resources.
250 The different cloud providers can have the different names for this entity.
251 </para>
252 </listitem>
253 </varlistentry>
254 </variablelist>
255 </refsect2>
256
257 <refsect2 id="vboxmanage-cloudlist-images">
258 <title>cloud list images</title>
259 <remark role="help-copy-synopsis"/>
260 <para>
261 Displays the list of the images for a specified compartment.
262 </para>
263 <variablelist>
264 <varlistentry>
265 <term>--state<replaceable>"available/disabled/deleted"</replaceable></term>
266 <listitem>
267 <para>The state of cloud image. The possible states are "available/disabled/deleted" at moment.
268 If the state isn't provided the list of images with all possible states is returned.
269 </para>
270 </listitem>
271 </varlistentry>
272 <varlistentry>
273 <term><option>--compartment-id</option></term>
274 <listitem>
275 <para>A compartment is the logical container used to organize and isolate cloud resources.
276 The different cloud providers can have the different names for this entity.
277 </para>
278 </listitem>
279 </varlistentry>
280 </variablelist>
281 </refsect2>
282
283 <!-- Cloud instance commands -->
284 <refsect2 id="vboxmanage-cloudinstance-create">
285 <title>cloud instance create</title>
286 <remark role="help-copy-synopsis"/>
287 <para>
288 Creates new instance in the Cloud.
289 There are two standard ways to create an instance in the Cloud:
290 1. Create an instance from an existing custom image.
291 2. Create an instance from an existing bootable volume. This bootable volume shouldn't be attached to any instance.
292 For the 1st approach next parameters are required: image-id, boot-disk-size.
293 For the 2nd approach next parameters are required: boot-volume-id.
294 The rest parameters are common for both cases:
295 display-name, launch-mode, subnet-id, publicIP, privateIP, shape, domain.
296 </para>
297 <variablelist>
298 <varlistentry>
299 <term><option>--domain-name</option></term><listitem><para>Cloud domain where new instance is created.</para></listitem>
300 </varlistentry>
301 <varlistentry>
302 <term><option>--image-id</option></term><listitem><para>Unique identifier which fully identifies a custom image in the Cloud.</para></listitem>
303 </varlistentry>
304 <varlistentry>
305 <term><option>--boot-volume-id</option></term><listitem><para>Unique identifier which fully identifies a boot volume in the Cloud.</para></listitem>
306 </varlistentry>
307 <varlistentry>
308 <term><option>--display-name</option></term><listitem><para>Name for new instance in the Cloud.</para></listitem>
309 </varlistentry>
310 <varlistentry>
311 <term><option>--shape</option></term><listitem><para> The shape of instance, defines the number of CPUs and RAM memory.</para></listitem>
312 </varlistentry>
313 <varlistentry>
314 <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>
315 </varlistentry>
316 <varlistentry>
317 <term><option>--boot-disk-size</option></term><listitem><para> The size of bootable image in GB. Default is 50GB.</para></listitem>
318 </varlistentry>
319 <varlistentry>
320 <term><option>--publicip</option></term><listitem><para>Whether the instance will have a public IP or not.</para></listitem>
321 </varlistentry>
322 <varlistentry>
323 <term><option>--privateip</option></term><listitem><para>Private IP address for the created instance.</para></listitem>
324 </varlistentry>
325 <varlistentry>
326 <term><option>--public-ssh-key</option></term>
327 <listitem>
328 <para>Public SSH key used to connect to the instance via SSH.
329 This parameter may be repeated if you plan to use more than one key as:
330 "--public-ssh-key=firstSSHKey --public-ssh-key=secondSSHKey".
331 </para>
332 </listitem>
333 </varlistentry>
334 <varlistentry>
335 <term><option>--launch-mode</option></term><listitem><para>The most known values here may be EMULATED, NATIVE, PARAVIRTUALIZED. </para></listitem>
336 </varlistentry>
337 <varlistentry>
338 <term><option>--cloud-init-script-path</option></term><listitem><para>Absolute path to the user cloud-init script.</para></listitem>
339 </varlistentry>
340 </variablelist>
341 </refsect2>
342
343 <refsect2 id="vboxmanage-cloudinstance-info">
344 <title>cloud instance info</title>
345 <para>
346 Display information about a cloud instance with a specified id.
347 </para>
348 <variablelist>
349 <varlistentry>
350 <term><option>--id</option></term><listitem><para>Unique identifier which fully identify the instance in the Cloud.</para></listitem>
351 </varlistentry>
352 </variablelist>
353 </refsect2>
354
355 <refsect2 id="vboxmanage-cloudinstance-terminate">
356 <title>cloud instance termination</title>
357 <para>
358 Delete a cloud instance with a specified id.
359 </para>
360 <variablelist>
361 <varlistentry>
362 <term><option>--id</option></term><listitem><para>Unique identifier which fully identify the instance in the Cloud.</para></listitem>
363 </varlistentry>
364 </variablelist>
365 </refsect2>
366
367 <refsect2 id="vboxmanage-cloudinstance-start">
368 <title>cloud instance start</title>
369 <para>
370 Start a cloud instance with a specified id.
371 </para>
372 <variablelist>
373 <varlistentry>
374 <term><option>--id</option></term><listitem><para>Unique identifier which fully identify the instance in the Cloud.</para></listitem>
375 </varlistentry>
376 </variablelist>
377 </refsect2>
378
379 <refsect2 id="vboxmanage-cloudinstance-pause">
380 <title>cloud instance pause</title>
381 <para>
382 Pause a cloud instance with a specified id.
383 </para>
384 <variablelist>
385 <varlistentry>
386 <term><option>--id</option></term><listitem><para>Unique identifier which fully identify the instance in the Cloud.</para></listitem>
387 </varlistentry>
388 </variablelist>
389 </refsect2>
390
391
392 <!-- Cloud image commands -->
393 <refsect2 id="vboxmanage-cloudimage-create">
394 <title>cloud image create</title>
395 <remark role="help-copy-synopsis"/>
396 <para>
397 Creates new image in the Cloud.
398 There are two standard ways to create an image in the Cloud:
399 1. Create an image from an object in the Cloud Storage;
400 2. Create an image from an existing cloud instance.
401 For the 1st approach next parameters are required:
402 bucket-name - cloud bucket name where an object is located;
403 object-name - name of object in the bucket;
404 display-name - name for new image in the Cloud.
405 For the 2d approach next parameters are required:
406 instance-id - Id of instance in the Cloud;
407 display-name - name for new image in the Cloud.
408 </para>
409 <variablelist>
410 <varlistentry>
411 <term><option>--display-name</option></term><listitem><para>Name for new image in the Cloud.</para></listitem>
412 </varlistentry>
413 <varlistentry>
414 <term><option>--bucket-name</option></term><listitem><para>Cloud bucket name where an object is located.</para></listitem>
415 </varlistentry>
416 <varlistentry>
417 <term><option>--object-name</option></term><listitem><para>Name of object in the bucket.</para></listitem>
418 </varlistentry>
419 <varlistentry>
420 <term><option>--instance-id</option></term><listitem><para>Unique identifier which fully identifies the instance in the Cloud.</para></listitem>
421 </varlistentry>
422 </variablelist>
423 </refsect2>
424
425 <refsect2 id="vboxmanage-cloudimage-info">
426 <title>cloud image info</title>
427 <remark role="help-copy-synopsis"/>
428 <para>
429 Display information about a cloud image with a specified id.
430 </para>
431 <variablelist>
432 <varlistentry>
433 <term><option>--id</option></term><listitem><para>Unique identifier which fully identifies the image in the Cloud.</para></listitem>
434 </varlistentry>
435 </variablelist>
436 </refsect2>
437
438 <refsect2 id="vboxmanage-cloudimage-delete">
439 <title>cloud image delete</title>
440 <remark role="help-copy-synopsis"/>
441 <para>
442 Delete an image with a specified id from the Cloud.
443 </para>
444 <variablelist>
445 <varlistentry>
446 <term><option>--id</option></term><listitem><para>Unique identifier which fully identifies the image in the Cloud.</para></listitem>
447 </varlistentry>
448 </variablelist>
449 </refsect2>
450
451 <refsect2 id="vboxmanage-cloudimage-import">
452 <title>cloud image import</title>
453 <remark role="help-copy-synopsis"/>
454 <para>
455 Import an image with a specified id from the Cloud to a local host.
456 The result is an object in the local "temp" folder on the local host.
457 Possible approach may have two general steps:
458 1. Create an object from an image in the Cloud Storage;
459 2. Download the object to the local host.
460 So the next parameters may be required:
461 bucket-name - cloud bucket name where the object will be created;
462 object-name - name of object in the bucket. if parameter "object-name" is absent a displayed image name is used.
463 If the first step isn't needed only the parameter "id" is required.
464 </para>
465 <variablelist>
466 <varlistentry>
467 <term><option>--id</option></term><listitem><para>Unique identifier which fully identifies the image in the Cloud.</para></listitem>
468 </varlistentry>
469 <varlistentry>
470 <term><option>--bucket-name</option></term><listitem><para>Cloud bucket name where an object will be created.</para></listitem>
471 </varlistentry>
472 <varlistentry>
473 <term><option>--object-name</option></term>
474 <listitem>
475 <para>
476 Name of created object in the bucket. The downloaded object will have this name.
477 </para>
478 </listitem>
479 </varlistentry>
480 </variablelist>
481 </refsect2>
482
483 <refsect2 id="vboxmanage-cloudimage-export">
484 <title>cloud image export</title>
485 <remark role="help-copy-synopsis"/>
486 <para>
487 Export an existing VBox image with a specified uuid from a local host to the Cloud.
488 The result is new image in the Cloud.
489 Possible approach may have two general steps:
490 1. Upload VBox image to the Cloud Storage;
491 2. Create an image from the uploaded object.
492 So the next parameters may be required:
493 bucket-name -cloud bucket name where the object will be uploaded;
494 object-name - name of object in the bucket. If parameter "object-name" is absent the image id is used;
495 display-name - name for new image in the Cloud.
496 If the first step isn't needed the parameters "id" and "display-name" are required only.
497 </para>
498 <variablelist>
499 <varlistentry>
500 <term><option>--id</option></term><listitem><para>Unique identifier of the image in the VirtualBox.</para></listitem>
501 </varlistentry>
502 <varlistentry>
503 <term><option>--display-name</option></term><listitem><para>Name for new image in the Cloud.</para></listitem>
504 </varlistentry>
505 <varlistentry>
506 <term><option>--bucket-name</option></term><listitem><para>Cloud bucket name where the image (object) will be uploaded.</para></listitem>
507 </varlistentry>
508 <varlistentry>
509 <term><option>--object-name</option></term><listitem><para>Name of object in the bucket.</para></listitem>
510 </varlistentry>
511 </variablelist>
512 </refsect2>
513
514
515 <!-- Cloud network commands -->
516 <refsect2 id="vboxmanage-cloud-network-setup">
517 <title>cloud network setup</title>
518 <remark role="help-copy-synopsis"/>
519 <para>
520 Set up a cloud network environment for the specified cloud profile.
521 </para>
522 <variablelist>
523 <varlistentry>
524 <term><option>--local-gateway-iso</option></term><listitem><para>The local path to an installation media for a local gateway.</para></listitem>
525 </varlistentry>
526 <varlistentry>
527 <term><option>--gateway-os-name</option></term><listitem><para>The name of OS to use for a cloud gateway.</para></listitem>
528 </varlistentry>
529 <varlistentry>
530 <term><option>--gateway-os-version</option></term><listitem><para>The version of OS to use for a cloud gateway.</para></listitem>
531 </varlistentry>
532 <varlistentry>
533 <term><option>--gateway-shape</option></term><listitem><para>The instance shape to use for a cloud gateway. </para></listitem>
534 </varlistentry>
535 <varlistentry>
536 <term><option>--tunnel-network-name</option></term><listitem><para>The name of VCN/subnet to use for tunneling.</para></listitem>
537 </varlistentry>
538 <varlistentry>
539 <term><option>--tunnel-network-range</option></term><listitem><para>The IP address range to use for tunneling. </para></listitem>
540 </varlistentry>
541 <varlistentry>
542 <term><option>--guest-additions-iso</option></term><listitem><para>The local path to an installation media for VirtualBox guest additions.</para></listitem>
543 </varlistentry>
544 <varlistentry>
545 <term><option>--proxy</option></term><listitem><para>The proxy URL to be used in local gateway installation.</para></listitem>
546 </varlistentry>
547 <varlistentry>
548 <term><option>--compartment-id</option></term><listitem><para>The compartment to create the tunnel network in.</para></listitem>
549 </varlistentry>
550 </variablelist>
551 </refsect2>
552
553 <refsect2 id="vboxmanage-cloud-network-create">
554 <title>cloud network create</title>
555 <remark role="help-copy-synopsis"/>
556 <para>
557 Create a new cloud network descriptor associated with an existing cloud subnet.
558 </para>
559 <variablelist>
560 <varlistentry>
561 <term><option>--name</option></term><listitem><para>The name to assign to the cloud network descriptor.</para></listitem>
562 </varlistentry>
563 <varlistentry>
564 <term><option>--network-id</option></term><listitem><para>The unique identifier of an existing subnet in the cloud.</para></listitem>
565 </varlistentry>
566 <varlistentry>
567 <term><option>--enable</option>, --disable</term>
568 <listitem><para>Whether to enable the network descriptor or disable it. If not specified,
569 the network will be enabled.</para></listitem>
570 </varlistentry>
571 </variablelist>
572 </refsect2>
573
574 <refsect2 id="vboxmanage-cloud-network-update">
575 <title>cloud network update</title>
576 <remark role="help-copy-synopsis"/>
577 <para>
578 Modify an existing cloud network descriptor.
579 </para>
580 <variablelist>
581 <varlistentry>
582 <term><option>--name</option></term><listitem><para>The name of an existing cloud network descriptor.</para></listitem>
583 </varlistentry>
584 <varlistentry>
585 <term><option>--network-id</option></term><listitem><para>The unique identifier of an existing subnet in the cloud.</para></listitem>
586 </varlistentry>
587 <varlistentry>
588 <term><option>--enable</option>, --disable</term>
589 <listitem><para>Whether to enable the network descriptor or disable it.</para></listitem>
590 </varlistentry>
591 </variablelist>
592 </refsect2>
593
594 <refsect2 id="vboxmanage-cloud-network-delete">
595 <title>cloud network delete</title>
596 <remark role="help-copy-synopsis"/>
597 <para>
598 Delete an existing cloud network descriptor.
599 </para>
600 <variablelist>
601 <varlistentry>
602 <term><option>--name</option></term><listitem><para>The name of an existing cloud network descriptor.</para></listitem>
603 </varlistentry>
604 </variablelist>
605 </refsect2>
606
607 <refsect2 id="vboxmanage-cloud-network-info">
608 <title>cloud network info</title>
609 <remark role="help-copy-synopsis"/>
610 <para>
611 Display information about a cloud network descriptor.
612 </para>
613 <variablelist>
614 <varlistentry>
615 <term><option>--name</option></term><listitem><para>The name of an existing cloud network descriptor.</para></listitem>
616 </varlistentry>
617 </variablelist>
618 </refsect2>
619
620 </refsect1>
621
622</refentry>
623
Note: See TracBrowser for help on using the repository browser.

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