VirtualBox

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

Last change on this file since 89989 was 89917, checked in by vboxsync, 4 years ago

docbook2latex.xsl: Fix incorrect formatting (had too much line spacing and also was justified) of the last line of a refentry icommand synopsis. Use standard font (not monospace) for the square brackets, alternatives and so on. Use ellipses and tweak line breaking to happen at a defined places with alternatives. More compact and easier to read. Made the XSLT a little simpler with args and groups handling, and resolved a couple of quirks with missing or extra spaces when nesting them.

For several man_VBoxManage-*.xml files: Eliminate redundant attributes (choice="opt" is default) to make the files easier to read. Unified DOCTYPE and applied some small cleanups here and there.

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