VirtualBox

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

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

bugref:9555. Added user documentation for the command '\VBoxManage cloud instance create\'.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.4 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-09-23 08:55:33 +0000 (Mon, 23 Sep 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 <arg choice="req" rep="norepeat">--image-id=<replaceable>unique id</replaceable></arg>
42 <arg choice="req" rep="norepeat">--display-name=<replaceable>name</replaceable></arg>
43 <arg choice="req" rep="norepeat">--shape=<replaceable>type</replaceable></arg>
44 <arg choice="req" rep="norepeat">--subnet=<replaceable>unique id</replaceable></arg>
45 <arg choice="req" rep="norepeat">--boot-disk-size=<replaceable>size in GB</replaceable></arg>
46 <arg choice="req" rep="norepeat">--publicip=<replaceable>true/false</replaceable></arg>
47 <arg choice="req" rep="norepeat">--privateip=<replaceable>IP address</replaceable></arg>
48 <arg choice="req" rep="norepeat">--launch-mode=<replaceable>NATIVE/EMULATED/PARAVIRTUALIZED</replaceable></arg>
49 </cmdsynopsis>
50 <cmdsynopsis id="synopsis-vboxmanage-cloudinstance-info" sepchar=" ">
51 <command moreinfo="none">VBoxManage cloud</command>
52 <arg choice="req" rep="norepeat">--provider=<replaceable>name</replaceable></arg>
53 <arg choice="req" rep="norepeat">--profile=<replaceable>name</replaceable></arg>
54 <arg choice="plain" rep="norepeat">instance</arg>
55 <arg choice="plain" rep="norepeat">info</arg>
56 <arg choice="req" rep="norepeat">--id=<replaceable>unique id</replaceable></arg>
57 </cmdsynopsis>
58 <cmdsynopsis id="synopsis-vboxmanage-cloudinstance-terminate" sepchar=" ">
59 <command moreinfo="none">VBoxManage cloud</command>
60 <arg choice="req" rep="norepeat">--provider=<replaceable>name</replaceable></arg>
61 <arg choice="req" rep="norepeat">--profile=<replaceable>name</replaceable></arg>
62 <arg choice="plain" rep="norepeat">instance</arg>
63 <arg choice="plain" rep="norepeat">terminate</arg>
64 <arg choice="req" rep="norepeat">--id=<replaceable>unique id</replaceable></arg>
65 </cmdsynopsis>
66 <cmdsynopsis id="synopsis-vboxmanage-cloudinstance-start" sepchar=" ">
67 <command moreinfo="none">VBoxManage cloud</command>
68 <arg choice="req" rep="norepeat">--provider=<replaceable>name</replaceable></arg>
69 <arg choice="req" rep="norepeat">--profile=<replaceable>name</replaceable></arg>
70 <arg choice="plain" rep="norepeat">instance</arg>
71 <arg choice="plain" rep="norepeat">start</arg>
72 <arg choice="req" rep="norepeat">--id=<replaceable>unique id</replaceable></arg>
73 </cmdsynopsis>
74 <cmdsynopsis id="synopsis-vboxmanage-cloudinstance-pause" sepchar=" ">
75 <command moreinfo="none">VBoxManage cloud</command>
76 <arg choice="req" rep="norepeat">--provider=<replaceable>name</replaceable></arg>
77 <arg choice="req" rep="norepeat">--profile=<replaceable>name</replaceable></arg>
78 <arg choice="plain" rep="norepeat">instance</arg>
79 <arg choice="plain" rep="norepeat">pause</arg>
80 <arg choice="req" rep="norepeat">--id=<replaceable>unique id</replaceable></arg>
81 </cmdsynopsis>
82 </refsynopsisdiv>
83
84 <refsect1>
85 <title>Description</title>
86
87 <refsect2 id="vboxmanage-cloudinstance-common-options">
88 <title>Common options</title>
89 <remark role="help-scope" condition="GLOBAL"/>
90 <para>The subcommands of <command>cloudinstance</command> implement the standard operations for a cloud instance
91 like start/pause/show/terminate. The next common options must be placed between the "cloud" and the following sub-commands:</para>
92 <variablelist>
93 <varlistentry>
94 <term>--provider=<replaceable>name</replaceable></term>
95 <listitem><para>Short cloud provider name.</para></listitem>
96 </varlistentry>
97 <varlistentry>
98 <term>--profile=<replaceable>name</replaceable></term>
99 <listitem><para>Cloud profile name. </para></listitem>
100 </varlistentry>
101 </variablelist>
102 </refsect2>
103
104 <refsect2 id="vboxmanage-cloudinstance-create">
105 <title>cloud instance create</title>
106 <remark role="help-copy-synopsis"/>
107 <para>
108 Creates new instance in the Cloud.
109 There are two standard ways to create an instance in the Cloud:
110 1. Create an instance from an existing custom image.
111 2. Create an instance from an existing bootable volume.
112 For the 1st approach next parameters are required: image-id and boot-disk-size.
113 For the 2nd approach next parameters are required: boot-volume-id;
114 The rest parameters are common for both cases:
115 display-name, launch-mode, subnet-id, publicIP, privateIP, shape, domain.
116 </para>
117 <variablelist>
118 <varlistentry>
119 <term><option>--domain-name</option></term><listitem><para>Cloud domain where new instance is created.</para></listitem>
120 </varlistentry>
121 <varlistentry>
122 <term><option>--image-id</option></term><listitem><para>Unique identifier which fully identifies a custom image in the Cloud.</para></listitem>
123 </varlistentry>
124 <varlistentry>
125 <term><option>--display-name</option></term><listitem><para>Name for new instance in the Cloud.</para></listitem>
126 </varlistentry>
127 <varlistentry>
128 <term><option>--shape</option></term><listitem><para> The shape of instance, defines the number of CPUs and RAM memory.</para></listitem>
129 </varlistentry>
130 <varlistentry>
131 <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>
132 </varlistentry>
133 <varlistentry>
134 <term><option>--boot-disk-size</option></term><listitem><para> The size of bootable image in GB. Default is 50GB.</para></listitem>
135 </varlistentry>
136 <varlistentry>
137 <term><option>--publicip</option></term><listitem><para>Whether the instance will have a public IP or not.</para></listitem>
138 </varlistentry>
139 <varlistentry>
140 <term><option>--privateip</option></term><listitem><para>Private IP address for the created instance.</para></listitem>
141 </varlistentry>
142 <varlistentry>
143 <term><option>--launch-mode</option></term><listitem><para>The most known values here may be EMULATED, NATIVE, PARAVIRTUALIZED. </para></listitem>
144 </varlistentry>
145 </variablelist>
146 </refsect2>
147
148 <refsect2 id="vboxmanage-cloudinstance-info">
149 <title>cloud instance info</title>
150 <para>
151 Display information about a cloud instance with a specified id.
152 </para>
153 <variablelist>
154 <varlistentry>
155 <term><option>--id</option></term><listitem><para>Unique identifier which fully identify the instance in the Cloud.</para></listitem>
156 </varlistentry>
157 </variablelist>
158 </refsect2>
159
160 <refsect2 id="vboxmanage-cloudinstance-terminate">
161 <title>cloud instance termination</title>
162 <para>
163 Delete a cloud instance with a specified id.
164 </para>
165 <variablelist>
166 <varlistentry>
167 <term><option>--id</option></term><listitem><para>Unique identifier which fully identify the instance in the Cloud.</para></listitem>
168 </varlistentry>
169 </variablelist>
170 </refsect2>
171
172 <refsect2 id="vboxmanage-cloudinstance-start">
173 <title>cloud instance start</title>
174 <para>
175 Start a cloud instance with a specified id.
176 </para>
177 <variablelist>
178 <varlistentry>
179 <term><option>--id</option></term><listitem><para>Unique identifier which fully identify the instance in the Cloud.</para></listitem>
180 </varlistentry>
181 </variablelist>
182 </refsect2>
183
184 <refsect2 id="vboxmanage-cloudinstance-pause">
185 <title>cloud instance pause</title>
186 <para>
187 Pause a cloud instance with a specified id.
188 </para>
189 <variablelist>
190 <varlistentry>
191 <term><option>--id</option></term><listitem><para>Unique identifier which fully identify the instance in the Cloud.</para></listitem>
192 </varlistentry>
193 </variablelist>
194 </refsect2>
195 </refsect1>
196</refentry>
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