VirtualBox

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

Last change on this file since 92359 was 91099, checked in by vboxsync, 3 years ago

manual/VBoxManage: docbook-xsl picks up section title from
refmeta/refmiscinfo[@class="manual"]. bugref:9186.

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