VirtualBox

source: vbox/trunk/doc/manual/ru_RU/man_VBoxManage-cloud.xml@ 93478

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

Doc/manual: bugref:1909: Added Russian translation of VBoxManage manuals

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 34.6 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: 2022-01-28 14:37:31 +0000 (Fri, 28 Jan 2022) $</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>Управление облачными сущностями</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>имя</replaceable></arg>
44 <arg choice="req">--profile=<replaceable>имя</replaceable></arg>
45 <sbr/>
46 <arg choice="plain">list</arg>
47 <arg choice="plain">instances</arg>
48 <arg>--state=<replaceable>строка</replaceable></arg>
49 <arg>--compartment-id=<replaceable>строка</replaceable></arg>
50 </cmdsynopsis>
51 <cmdsynopsis id="synopsis-vboxmanage-cloudlist-images">
52 <command>VBoxManage cloud</command>
53 <arg choice="req">--provider=<replaceable>имя</replaceable></arg>
54 <arg choice="req">--profile=<replaceable>имя</replaceable></arg>
55 <sbr/>
56 <arg choice="plain">list</arg>
57 <arg choice="plain">images</arg>
58 <arg choice="req">--compartment-id=<replaceable>строка</replaceable></arg>
59 <arg>--state=<replaceable>строка</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>имя</replaceable></arg>
66 <arg choice="req">--profile=<replaceable>имя</replaceable></arg>
67 <sbr/>
68 <arg choice="plain">instance</arg>
69 <arg choice="plain">create</arg>
70 <arg choice="req">--domain-name=<replaceable>имя</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>имя</replaceable></arg>
76 <arg choice="req">--shape=<replaceable>тип</replaceable></arg>
77 <arg choice="req">--subnet=<replaceable>id</replaceable></arg>
78 <arg>--boot-disk-size=<replaceable>размер в ГБ</replaceable></arg>
79 <arg>--publicip=<replaceable>true/false</replaceable></arg>
80 <arg>--privateip=<replaceable>IP адрес</replaceable></arg>
81 <arg rep="repeat">--public-ssh-key=<replaceable>ключевая строка</replaceable></arg>
82 <arg>--launch-mode=<replaceable>NATIVE/EMULATED/PARAVIRTUALIZED</replaceable></arg>
83 <arg>--cloud-init-script-path=<replaceable>путь к скрипту</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>имя</replaceable></arg>
88 <arg choice="req">--profile=<replaceable>имя</replaceable></arg>
89 <sbr/>
90 <arg choice="plain">instance</arg>
91 <arg choice="plain">info</arg>
92 <arg choice="req">--id=<replaceable>уникальный 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>имя</replaceable></arg>
97 <arg choice="req">--profile=<replaceable>имя</replaceable></arg>
98 <sbr/>
99 <arg choice="plain">instance</arg>
100 <arg choice="plain">terminate</arg>
101 <arg choice="req">--id=<replaceable>уникальный 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>имя</replaceable></arg>
106 <arg choice="req">--profile=<replaceable>имя</replaceable></arg>
107 <sbr/>
108 <arg choice="plain">instance</arg>
109 <arg choice="plain">start</arg>
110 <arg choice="req">--id=<replaceable>уникальный 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>имя</replaceable></arg>
115 <arg choice="req">--profile=<replaceable>имя</replaceable></arg>
116 <sbr/>
117 <arg choice="plain">instance</arg>
118 <arg choice="plain">pause</arg>
119 <arg choice="req">--id=<replaceable>уникальный 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>имя</replaceable></arg>
126 <arg choice="req">--profile=<replaceable>имя</replaceable></arg>
127 <sbr/>
128 <arg choice="plain">image</arg>
129 <arg choice="plain">create</arg>
130 <arg choice="req">--display-name=<replaceable>имя</replaceable></arg>
131 <arg>--bucket-name=<replaceable>имя</replaceable></arg>
132 <arg>--object-name=<replaceable>имя</replaceable></arg>
133 <arg>--instance-id=<replaceable>уникальный id</replaceable></arg>
134 </cmdsynopsis>
135 <cmdsynopsis id="synopsis-vboxmanage-cloudimage-info" sepchar=" ">
136 <command>VBoxManage cloud</command>
137 <arg choice="req">--provider=<replaceable>имя</replaceable></arg>
138 <arg choice="req">--profile=<replaceable>имя</replaceable></arg>
139 <sbr/>
140 <arg choice="plain">image</arg>
141 <arg choice="plain">info</arg>
142 <arg choice="req">--id=<replaceable>уникальный id</replaceable></arg>
143 </cmdsynopsis>
144 <cmdsynopsis id="synopsis-vboxmanage-cloudimage-delete" sepchar=" ">
145 <command>VBoxManage cloud</command>
146 <arg choice="req">--provider=<replaceable>имя</replaceable></arg>
147 <arg choice="req">--profile=<replaceable>имя</replaceable></arg>
148 <sbr/>
149 <arg choice="plain">image</arg>
150 <arg choice="plain">delete</arg>
151 <arg choice="req">--id=<replaceable>уникальный id</replaceable></arg>
152 </cmdsynopsis>
153 <cmdsynopsis id="synopsis-vboxmanage-cloudimage-import" sepchar=" ">
154 <command>VBoxManage cloud</command>
155 <arg choice="req">--provider=<replaceable>имя</replaceable></arg>
156 <arg choice="req">--profile=<replaceable>имя</replaceable></arg>
157 <sbr/>
158 <arg choice="plain">image</arg>
159 <arg choice="plain">import</arg>
160 <arg choice="req">--id=<replaceable>уникальный id</replaceable></arg>
161 <arg>--bucket-name=<replaceable>имя</replaceable></arg>
162 <arg>--object-name=<replaceable>имя</replaceable></arg>
163 </cmdsynopsis>
164 <cmdsynopsis id="synopsis-vboxmanage-cloudimage-export" sepchar=" ">
165 <command>VBoxManage cloud</command>
166 <arg choice="req">--provider=<replaceable>имя</replaceable></arg>
167 <arg choice="req">--profile=<replaceable>имя</replaceable></arg>
168 <sbr/>
169 <arg choice="plain">image</arg>
170 <arg choice="plain">export</arg>
171 <arg choice="req">--id=<replaceable>уникальный id</replaceable></arg>
172 <arg choice="req">--display-name=<replaceable>имя</replaceable></arg>
173 <arg>--bucket-name=<replaceable>имя</replaceable></arg>
174 <arg>--object-name=<replaceable>имя</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>имя</replaceable></arg>
181 <arg choice="req">--profile=<replaceable>имя</replaceable></arg>
182 <sbr/>
183 <arg choice="plain">network setup</arg>
184 <arg choice="req">--local-gateway-iso=<replaceable>путь</replaceable></arg>
185 <arg>--gateway-os-name=<replaceable>строка</replaceable></arg>
186 <arg>--gateway-os-version=<replaceable>строка</replaceable></arg>
187 <arg>--gateway-shape=<replaceable>строка</replaceable></arg>
188 <arg>--tunnel-network-name=<replaceable>строка</replaceable></arg>
189 <arg>--tunnel-network-range=<replaceable>строка</replaceable></arg>
190 <arg>--guest-additions-iso=<replaceable>путь</replaceable></arg>
191 <arg>--proxy=<replaceable>строка</replaceable></arg>
192 <arg>--compartment-id=<replaceable>строка</replaceable></arg>
193 </cmdsynopsis>
194 <cmdsynopsis id="synopsis-vboxmanage-cloud-network-create">
195 <command>VBoxManage cloud</command>
196 <arg choice="req">--provider=<replaceable>имя</replaceable></arg>
197 <arg choice="req">--profile=<replaceable>имя</replaceable></arg>
198 <sbr/>
199 <arg choice="plain">network create</arg>
200 <arg choice="req">--name=<replaceable>строка</replaceable></arg>
201 <arg choice="req">--network-id=<replaceable>строка</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>строка</replaceable></arg>
210 <arg>--network-id=<replaceable>строка</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>строка</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>строка</replaceable></arg>
225 </cmdsynopsis>
226 </refsynopsisdiv>
227
228 <refsect1>
229 <title>Описание</title>
230
231 <!-- Cloud commands common options -->
232 <refsect2 id="vboxmanage-cloud-common-options">
233 <title>Общие параметры</title>
234 <remark role="help-scope" condition="GLOBAL"/>
235 <para>Слово "cloud" объединяет все команды, относящиеся к взаимодействию с облаком. Следующие
236 общие параметры необходимо разместить между "cloud" и последующими подкомандами:</para>
237 <variablelist>
238 <varlistentry>
239 <term>--provider=<replaceable>имя</replaceable></term>
240 <listitem><para>Короткое имя облачного провайдера.</para></listitem>
241 </varlistentry>
242 <varlistentry>
243 <term>--profile=<replaceable>имя</replaceable></term>
244 <listitem><para>Имя профиля облака. </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 Отображает список экземпляров указанной секции.
255 </para>
256 <variablelist>
257 <varlistentry>
258 <term>--state<replaceable>"running/paused/terminated"</replaceable></term>
259 <listitem>
260 <para>Состояние облачного экземпляра. На данный момент возможны следующие состояния:
261 "running/paused/terminated". Если состояние не указано, возвращается список экземпляров
262 со всеми возможными состояниями.
263 </para>
264 </listitem>
265 </varlistentry>
266 <varlistentry>
267 <term><option>--compartment-id</option></term>
268 <listitem>
269 <para>Секция - это логический контейнер, используемый для организации и изоляции
270 облачных ресурсов. У разных облачных провайдеров эта сущность называется по-разному.
271 </para>
272 </listitem>
273 </varlistentry>
274 </variablelist>
275 </refsect2>
276
277 <refsect2 id="vboxmanage-cloudlist-images">
278 <title>cloud list images</title>
279 <remark role="help-copy-synopsis"/>
280 <para>
281 Отображает список образов для указанной секции.
282 </para>
283 <variablelist>
284 <varlistentry>
285 <term>--state<replaceable>"available/disabled/deleted"</replaceable></term>
286 <listitem>
287 <para>Состояние облачного образа. На данный момент возможны следующие состояния:
288 "available/disabled/deleted". Если состояние не указано, возвращается список
289 образов со всеми возможными состояниями.
290 </para>
291 </listitem>
292 </varlistentry>
293 <varlistentry>
294 <term><option>--compartment-id</option></term>
295 <listitem>
296 <para>Секция - это логический контейнер, используемый для организации и изоляции
297 облачных ресурсов. У разных облачных провайдеров эта сущность называется по-разному.
298 </para>
299 </listitem>
300 </varlistentry>
301 </variablelist>
302 </refsect2>
303
304 <!-- Cloud instance commands -->
305 <refsect2 id="vboxmanage-cloudinstance-create">
306 <title>cloud instance create</title>
307 <remark role="help-copy-synopsis"/>
308 <para>
309 Создает новый экземпляр в облаке.
310 Существует два стандартных способа создать экземпляр в облаке:
311 1. Создать экземпляр из существующего пользовательского образа.
312 2. Создать экземпляр из существующего загрузочного тома. Этот загрузочный том не должен быть подключен
313 к какому-либо экземпляру.
314 Для первого способа требуются параметры: image-id, boot-disk-size.
315 Для второго способа требуются параметры: boot-volume-id.
316 Остальные параметры являются общими для обоих способов:
317 display-name, launch-mode, subnet-id, publicIP, privateIP, shape, domain.
318 </para>
319 <variablelist>
320 <varlistentry>
321 <term><option>--domain-name</option></term><listitem><para>Облачный домен, где создается экземпляр.</para></listitem>
322 </varlistentry>
323 <varlistentry>
324 <term><option>--image-id</option></term><listitem><para>Уникальный идентификатор, полностью идентифицирующий пользовательский образ в облаке.</para></listitem>
325 </varlistentry>
326 <varlistentry>
327 <term><option>--boot-volume-id</option></term><listitem><para>Уникальный идентификатор, полностью идентифицирующий загрузочный том в облаке.</para></listitem>
328 </varlistentry>
329 <varlistentry>
330 <term><option>--display-name</option></term><listitem><para>Имя для нового экземпляра в облаке.</para></listitem>
331 </varlistentry>
332 <varlistentry>
333 <term><option>--shape</option></term><listitem><para>Форма экземпляра, определяющая количество ЦПУ и размер RAM памяти.</para></listitem>
334 </varlistentry>
335 <varlistentry>
336 <term><option>--subnet</option></term><listitem><para>Уникальный идентификатор, полностью идентифицирующий существующую подсеть в облаке для использования экземпляром.</para></listitem>
337 </varlistentry>
338 <varlistentry>
339 <term><option>--boot-disk-size</option></term><listitem><para>Размер загрузочного образа в ГБ. По умолчанию 50 ГБ.</para></listitem>
340 </varlistentry>
341 <varlistentry>
342 <term><option>--publicip</option></term><listitem><para>У экземпляра публичный IP или нет.</para></listitem>
343 </varlistentry>
344 <varlistentry>
345 <term><option>--privateip</option></term><listitem><para>Приватный IP адрес для созданного экземпляра.</para></listitem>
346 </varlistentry>
347 <varlistentry>
348 <term><option>--public-ssh-key</option></term>
349 <listitem>
350 <para>Публичный ключ SSH, используемый для подключения к экземпляру через
351 SSH. Этот параметр может быть указан несколько раз, если нужно указать
352 несколько ключей, например: "--public-ssh-key=firstSSHKey --public-ssh-key=secondSSHKey".
353 </para>
354 </listitem>
355 </varlistentry>
356 <varlistentry>
357 <term><option>--launch-mode</option></term><listitem><para>Наиболее известные значения здесь могут быть EMULATED, NATIVE, PARAVIRTUALIZED.</para></listitem>
358 </varlistentry>
359 <varlistentry>
360 <term><option>--cloud-init-script-path</option></term><listitem><para>Абсолютный путь к пользовательскому скрипту облачной инициализации.</para></listitem>
361 </varlistentry>
362 </variablelist>
363 </refsect2>
364
365 <refsect2 id="vboxmanage-cloudinstance-info">
366 <title>cloud instance info</title>
367 <para>
368 Отображает информацию об облачном экземпляре с указанным id.
369 </para>
370 <variablelist>
371 <varlistentry>
372 <term><option>--id</option></term><listitem><para>Уникальный идентификатор, полностью идентифицирующий экземпляр в облаке.</para></listitem>
373 </varlistentry>
374 </variablelist>
375 </refsect2>
376
377 <refsect2 id="vboxmanage-cloudinstance-terminate">
378 <title>cloud instance termination</title>
379 <para>
380 Удаляет облачный экземпляр с указанным id.
381 </para>
382 <variablelist>
383 <varlistentry>
384 <term><option>--id</option></term><listitem><para>Уникальный идентификатор, полностью идентифицирующий экземпляр в облаке.</para></listitem>
385 </varlistentry>
386 </variablelist>
387 </refsect2>
388
389 <refsect2 id="vboxmanage-cloudinstance-start">
390 <title>cloud instance start</title>
391 <para>
392 Запускает облачный экземпляр с указанным id.
393 </para>
394 <variablelist>
395 <varlistentry>
396 <term><option>--id</option></term><listitem><para>Уникальный идентификатор, полностью идентифицирующий экземпляр в облаке.</para></listitem>
397 </varlistentry>
398 </variablelist>
399 </refsect2>
400
401 <refsect2 id="vboxmanage-cloudinstance-pause">
402 <title>cloud instance pause</title>
403 <para>
404 Приостанавливает облачный экземпляр с указанным id.
405 </para>
406 <variablelist>
407 <varlistentry>
408 <term><option>--id</option></term><listitem><para>Уникальный идентификатор, полностью идентифицирующий экземпляр в облаке.</para></listitem>
409 </varlistentry>
410 </variablelist>
411 </refsect2>
412
413
414 <!-- Cloud image commands -->
415 <refsect2 id="vboxmanage-cloudimage-create">
416 <title>cloud image create</title>
417 <remark role="help-copy-synopsis"/>
418 <para>
419 Создает новый образ в облаке.
420 Существует два стандартных способа создать образ в облаке:
421 1. Создать образ из объекта в облачном хранилище;
422 2. Создать образ из существующего облачного экземпляра.
423 Для первого способа требуются параметры:
424 bucket-name - имя облачной корзины, где находится объект;
425 object-name - имя объекта в корзине;
426 display-name - имя для нового образа в облаке.
427 Для второго способа требуются параметры:
428 instance-id - Id экземпляра в облаке;
429 display-name - имя для нового образа в облаке.
430 </para>
431 <variablelist>
432 <varlistentry>
433 <term><option>--display-name</option></term><listitem><para>Имя для нового образа в облаке.</para></listitem>
434 </varlistentry>
435 <varlistentry>
436 <term><option>--bucket-name</option></term><listitem><para>Имя облачной корзине, где находится объект.</para></listitem>
437 </varlistentry>
438 <varlistentry>
439 <term><option>--object-name</option></term><listitem><para>Имя объекта в корзине.</para></listitem>
440 </varlistentry>
441 <varlistentry>
442 <term><option>--instance-id</option></term><listitem><para>Уникальный идентификатор, полностью идентифицирующий экземпляр в облаке.</para></listitem>
443 </varlistentry>
444 </variablelist>
445 </refsect2>
446
447 <refsect2 id="vboxmanage-cloudimage-info">
448 <title>cloud image info</title>
449 <remark role="help-copy-synopsis"/>
450 <para>
451 Отображает информацию об облачном образе с указанным id.
452 </para>
453 <variablelist>
454 <varlistentry>
455 <term><option>--id</option></term><listitem><para>Уникальный идентификатор, полностью идентифицирующий образ в облаке.</para></listitem>
456 </varlistentry>
457 </variablelist>
458 </refsect2>
459
460 <refsect2 id="vboxmanage-cloudimage-delete">
461 <title>cloud image delete</title>
462 <remark role="help-copy-synopsis"/>
463 <para>
464 Удаляет образ с указанным id из облака.
465 </para>
466 <variablelist>
467 <varlistentry>
468 <term><option>--id</option></term><listitem><para>Уникальный идентификатор, полностью идентифицирующий образ в облаке.</para></listitem>
469 </varlistentry>
470 </variablelist>
471 </refsect2>
472
473 <refsect2 id="vboxmanage-cloudimage-import">
474 <title>cloud image import</title>
475 <remark role="help-copy-synopsis"/>
476 <para>
477 Импортирует образ с указанным id из облака на локальный хост.
478 Результатом является объект в локальной папке "temp" локального хоста.
479 Возможный подход может состоят из двух основных этапов:
480 1. Создать объект из образа в облачном хранилище;
481 2. Загрузить объект на локальный хост.
482 Поэтому, следующие параметры могут потребоваться:
483 bucket-name - имя облачной корзины где будет создан объект;
484 object-name - имя объекта в корзине. Если параметр "object-name" отсутствует, будет использовано показанное имя образа.
485 Если первый этап не нужен, требуется только параметр "id".
486 </para>
487 <variablelist>
488 <varlistentry>
489 <term><option>--id</option></term><listitem><para>Уникальный идентификатор, полностью идентифицирующий образ в облаке.</para></listitem>
490 </varlistentry>
491 <varlistentry>
492 <term><option>--bucket-name</option></term><listitem><para>Имя облачной корзины, где будет создан объект.</para></listitem>
493 </varlistentry>
494 <varlistentry>
495 <term><option>--object-name</option></term>
496 <listitem>
497 <para>
498 Имя созданного объекта в корзине. У загруженного объекта будет такое же имя.
499 </para>
500 </listitem>
501 </varlistentry>
502 </variablelist>
503 </refsect2>
504
505 <refsect2 id="vboxmanage-cloudimage-export">
506 <title>cloud image export</title>
507 <remark role="help-copy-synopsis"/>
508 <para>
509 Экспортирует существующий образ VBox с указанным uuid из локального хоста в облако.
510 Результатом является новый образ в облаке.
511 Возможный подход может состоят из двух основных этапов:
512 1. Загрузить образ VBox в облачное хранилище;
513 2. Создать образ из загруженного объекта.
514 Поэтому, следующие параметры могут потребоваться:
515 bucket-name - имя облачной корзины куда будет загружен объект;
516 object-name - имя объекта в корзине. Если параметр "object-name" отсутствует, будет использован id образа;
517 display-name - имя для нового образа в облаке.
518 Если первый этап не нужен, требуются только параметры "id" и "display-name".
519 </para>
520 <variablelist>
521 <varlistentry>
522 <term><option>--id</option></term><listitem><para>Уникальный идентификатор образа в VirtualBox.</para></listitem>
523 </varlistentry>
524 <varlistentry>
525 <term><option>--display-name</option></term><listitem><para>Имя для нового образа в облаке.</para></listitem>
526 </varlistentry>
527 <varlistentry>
528 <term><option>--bucket-name</option></term><listitem><para>Имя облачной корзины куда будет загружен образ (объект).</para></listitem>
529 </varlistentry>
530 <varlistentry>
531 <term><option>--object-name</option></term><listitem><para>Имя объекта в корзине.</para></listitem>
532 </varlistentry>
533 </variablelist>
534 </refsect2>
535
536
537 <!-- Cloud network commands -->
538 <refsect2 id="vboxmanage-cloud-network-setup">
539 <title>cloud network setup</title>
540 <remark role="help-copy-synopsis"/>
541 <para>
542 Настраивает окружение облачной сети для указанного облачного профиля.
543 </para>
544 <variablelist>
545 <varlistentry>
546 <term><option>--local-gateway-iso</option></term><listitem><para>Локальный путь к установочному носителю для локального шлюза.</para></listitem>
547 </varlistentry>
548 <varlistentry>
549 <term><option>--gateway-os-name</option></term><listitem><para>Имя ОС, используемой для облачного шлюза.</para></listitem>
550 </varlistentry>
551 <varlistentry>
552 <term><option>--gateway-os-version</option></term><listitem><para>Версия ОС, используемой для облачного шлюза.</para></listitem>
553 </varlistentry>
554 <varlistentry>
555 <term><option>--gateway-shape</option></term><listitem><para>Форма экземпляра, используемая для облачного шлюза.</para></listitem>
556 </varlistentry>
557 <varlistentry>
558 <term><option>--tunnel-network-name</option></term><listitem><para>Имя VCN/подсети, используемой для туннелирования.</para></listitem>
559 </varlistentry>
560 <varlistentry>
561 <term><option>--tunnel-network-range</option></term><listitem><para>Диапазон IP адресов, используемый для туннелирования.</para></listitem>
562 </varlistentry>
563 <varlistentry>
564 <term><option>--guest-additions-iso</option></term><listitem><para>Локальный путь к установочному носителю Дополнений Гостевой ОС VirtualBox.</para></listitem>
565 </varlistentry>
566 <varlistentry>
567 <term><option>--proxy</option></term><listitem><para>URL прокси, используемый в установке локального шлюза.</para></listitem>
568 </varlistentry>
569 <varlistentry>
570 <term><option>--compartment-id</option></term><listitem><para>Секция, в которую создается туннель.</para></listitem>
571 </varlistentry>
572 </variablelist>
573 </refsect2>
574
575 <refsect2 id="vboxmanage-cloud-network-create">
576 <title>cloud network create</title>
577 <remark role="help-copy-synopsis"/>
578 <para>
579 Создает новый дескриптор облачной сети, связанный с существующей облачной подсетью.
580 </para>
581 <variablelist>
582 <varlistentry>
583 <term><option>--name</option></term><listitem><para>Имя для назначения дескриптору облачной сети.</para></listitem>
584 </varlistentry>
585 <varlistentry>
586 <term><option>--network-id</option></term><listitem><para>Уникальный идентификатор существующей подсети в облаке.</para></listitem>
587 </varlistentry>
588 <varlistentry>
589 <term><option>--enable</option>, --disable</term>
590 <listitem><para>Включить или выключить дескриптор сети. Если не указано, сеть будет включена.</para></listitem>
591 </varlistentry>
592 </variablelist>
593 </refsect2>
594
595 <refsect2 id="vboxmanage-cloud-network-update">
596 <title>cloud network update</title>
597 <remark role="help-copy-synopsis"/>
598 <para>
599 Изменяет существующий дескриптор облачной сети.
600 </para>
601 <variablelist>
602 <varlistentry>
603 <term><option>--name</option></term><listitem><para>Имя существующего дескриптора облачной сети.</para></listitem>
604 </varlistentry>
605 <varlistentry>
606 <term><option>--network-id</option></term><listitem><para>Уникальный идентификатор существующей подсети в облаке.</para></listitem>
607 </varlistentry>
608 <varlistentry>
609 <term><option>--enable</option>, --disable</term>
610 <listitem><para>Включить или выключить дескриптор сети.</para></listitem>
611 </varlistentry>
612 </variablelist>
613 </refsect2>
614
615 <refsect2 id="vboxmanage-cloud-network-delete">
616 <title>cloud network delete</title>
617 <remark role="help-copy-synopsis"/>
618 <para>
619 Удаляет существующий дескриптор облачной сети.
620 </para>
621 <variablelist>
622 <varlistentry>
623 <term><option>--name</option></term><listitem><para>Имя существующего дескриптора облачной сети.</para></listitem>
624 </varlistentry>
625 </variablelist>
626 </refsect2>
627
628 <refsect2 id="vboxmanage-cloud-network-info">
629 <title>cloud network info</title>
630 <remark role="help-copy-synopsis"/>
631 <para>
632 Показывает информацию о дескрипторе облачной сети.
633 </para>
634 <variablelist>
635 <varlistentry>
636 <term><option>--name</option></term><listitem><para>Имя существующего дескриптора облачной сети.</para></listitem>
637 </varlistentry>
638 </variablelist>
639 </refsect2>
640
641 </refsect1>
642
643</refentry>
644
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