VirtualBox

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

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

Changes in the user manual part of VBoxManage related to the Cloud stuff.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.7 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-07-19 09:26:18 +0000 (Fri, 19 Jul 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-info" 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">info</arg>
40 <arg choice="req" rep="norepeat">--id=<replaceable>unique id</replaceable></arg>
41 </cmdsynopsis>
42 <cmdsynopsis id="synopsis-vboxmanage-cloudinstance-terminate" sepchar=" ">
43 <command moreinfo="none">VBoxManage cloud</command>
44 <arg choice="req" rep="norepeat">--provider=<replaceable>name</replaceable></arg>
45 <arg choice="req" rep="norepeat">--profile=<replaceable>name</replaceable></arg>
46 <arg choice="plain" rep="norepeat">instance</arg>
47 <arg choice="plain" rep="norepeat">terminate</arg>
48 <arg choice="req" rep="norepeat">--id=<replaceable>unique id</replaceable></arg>
49 </cmdsynopsis>
50 <cmdsynopsis id="synopsis-vboxmanage-cloudinstance-start" 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">start</arg>
56 <arg choice="req" rep="norepeat">--id=<replaceable>unique id</replaceable></arg>
57 </cmdsynopsis>
58 <cmdsynopsis id="synopsis-vboxmanage-cloudinstance-pause" 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">pause</arg>
64 <arg choice="req" rep="norepeat">--id=<replaceable>unique id</replaceable></arg>
65 </cmdsynopsis>
66 </refsynopsisdiv>
67
68 <refsect1>
69 <title>Description</title>
70
71 <refsect2 id="vboxmanage-cloudinstance-common-options">
72 <title>Common options</title>
73 <remark role="help-scope" condition="GLOBAL"/>
74 <para>The subcommands of <command>cloudinstance</command> implement the standard operations for a cloud instance
75 like start/pause/show/terminate. The next common options must be placed between the "cloud" and the following sub-commands:</para>
76 <variablelist>
77 <varlistentry>
78 <term>--provider=<replaceable>name</replaceable></term>
79 <listitem><para>Short cloud provider name.</para></listitem>
80 </varlistentry>
81 <varlistentry>
82 <term>--profile=<replaceable>name</replaceable></term>
83 <listitem><para>Cloud profile name. </para></listitem>
84 </varlistentry>
85 </variablelist>
86 </refsect2>
87
88 <refsect2 id="vboxmanage-cloudinstance-info">
89 <title>cloud instance info</title>
90 <para>
91 Display information about a cloud instance with a specified id.
92 </para>
93 <variablelist>
94 <varlistentry>
95 <term><option>--id</option></term><listitem><para>Unique identifier which fully identify the instance in the Cloud.</para></listitem>
96 </varlistentry>
97 </variablelist>
98 </refsect2>
99
100 <refsect2 id="vboxmanage-cloudinstance-terminate">
101 <title>cloud instance termination</title>
102 <para>
103 Delete a cloud instance with a specified id.
104 </para>
105 <variablelist>
106 <varlistentry>
107 <term><option>--id</option></term><listitem><para>Unique identifier which fully identify the instance in the Cloud.</para></listitem>
108 </varlistentry>
109 </variablelist>
110 </refsect2>
111
112 <refsect2 id="vboxmanage-cloudinstance-start">
113 <title>cloud instance start</title>
114 <para>
115 Start a cloud instance with a specified id.
116 </para>
117 <variablelist>
118 <varlistentry>
119 <term><option>--id</option></term><listitem><para>Unique identifier which fully identify the instance in the Cloud.</para></listitem>
120 </varlistentry>
121 </variablelist>
122 </refsect2>
123
124 <refsect2 id="vboxmanage-cloudinstance-pause">
125 <title>cloud instance pause</title>
126 <para>
127 Pause a cloud instance with a specified id.
128 </para>
129 <variablelist>
130 <varlistentry>
131 <term><option>--id</option></term><listitem><para>Unique identifier which fully identify the instance in the Cloud.</para></listitem>
132 </varlistentry>
133 </variablelist>
134 </refsect2>
135 </refsect1>
136</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