opennebula-cli 6.6.2 → 6.7.80.pre
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/oneacl +1 -1
- data/bin/onebackupjob +373 -0
- data/bin/onecluster +1 -1
- data/bin/onedatastore +7 -4
- data/bin/oneflow-template +24 -6
- data/bin/onegroup +1 -1
- data/bin/onehook +1 -1
- data/bin/onehost +1 -1
- data/bin/oneimage +9 -4
- data/bin/onemarket +6 -4
- data/bin/onemarketapp +6 -2
- data/bin/onesecgroup +1 -1
- data/bin/onetemplate +16 -9
- data/bin/oneuser +1 -1
- data/bin/onevdc +1 -1
- data/bin/onevm +118 -152
- data/bin/onevmgroup +65 -2
- data/bin/onevnet +7 -4
- data/bin/onevntemplate +1 -1
- data/bin/onevrouter +22 -16
- data/bin/onezone +1 -1
- data/lib/command_parser.rb +2 -9
- data/lib/one_helper/oneacl_helper.rb +6 -4
- data/lib/one_helper/onebackupjob_helper.rb +284 -0
- data/lib/one_helper/onevm_helper.rb +42 -230
- data/lib/one_helper/onevmgroup_helper.rb +15 -0
- data/lib/one_helper.rb +622 -325
- data/share/schemas/xsd/acct.xsd +2 -19
- data/share/schemas/xsd/backupjob.xsd +42 -0
- data/share/schemas/xsd/backupjob_pool.xsd +12 -0
- data/share/schemas/xsd/index.xsd +3 -0
- data/share/schemas/xsd/opennebula_configuration.xsd +3 -0
- data/share/schemas/xsd/shared.xsd +46 -0
- data/share/schemas/xsd/vm.xsd +18 -47
- data/share/schemas/xsd/vm_group.xsd +1 -0
- data/share/schemas/xsd/vm_pool.xsd +1 -0
- metadata +12 -6
data/share/schemas/xsd/acct.xsd
CHANGED
@@ -124,25 +124,8 @@
|
|
124
124
|
<xs:element name="STIME" type="xs:integer"/>
|
125
125
|
<xs:element name="ETIME" type="xs:integer"/>
|
126
126
|
<xs:element name="DEPLOY_ID" type="xs:string"/>
|
127
|
-
<xs:element name="MONITORING"
|
128
|
-
|
129
|
-
<xs:complexType>
|
130
|
-
<xs:all>
|
131
|
-
<- Percentage of 1 CPU consumed (two fully consumed cpu is 200) ->
|
132
|
-
<xs:element name="CPU" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
133
|
-
|
134
|
-
<- MEMORY consumption in kilobytes ->
|
135
|
-
<xs:element name="MEMORY" type="xs:integer" minOccurs="0" maxOccurs="1"/>
|
136
|
-
|
137
|
-
<- NETTX: Sent bytes to the network ->
|
138
|
-
<xs:element name="NETTX" type="xs:integer" minOccurs="0" maxOccurs="1"/>
|
139
|
-
|
140
|
-
<- NETRX: Received bytes from the network ->
|
141
|
-
<xs:element name="NETRX" type="xs:integer" minOccurs="0" maxOccurs="1"/>
|
142
|
-
</xs:all>
|
143
|
-
</xs:complexType>
|
144
|
-
-->
|
145
|
-
</xs:element>
|
127
|
+
<xs:element name="MONITORING"/>
|
128
|
+
<xs:element name="SCHED_ACTIONS" type="xs:anyType"/>
|
146
129
|
<xs:element name="TEMPLATE" type="xs:anyType"/>
|
147
130
|
<xs:element name="USER_TEMPLATE" type="xs:anyType"/>
|
148
131
|
<xs:element name="HISTORY_RECORDS">
|
@@ -0,0 +1,42 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
|
3
|
+
targetNamespace="http://opennebula.org/XMLSchema" xmlns="http://opennebula.org/XMLSchema">
|
4
|
+
<xs:include schemaLocation="shared.xsd"/>
|
5
|
+
<xs:element name="BACKUPJOB">
|
6
|
+
<xs:complexType>
|
7
|
+
<xs:sequence>
|
8
|
+
<xs:element name="ID" type="xs:integer"/>
|
9
|
+
<xs:element name="UID" type="xs:integer"/>
|
10
|
+
<xs:element name="GID" type="xs:integer"/>
|
11
|
+
<xs:element name="UNAME" type="xs:string"/>
|
12
|
+
<xs:element name="GNAME" type="xs:string"/>
|
13
|
+
<xs:element name="NAME" type="xs:string"/>
|
14
|
+
<xs:element name="LOCK" type="LOCK" minOccurs="0" maxOccurs="1"/>
|
15
|
+
<xs:element name="PERMISSIONS" type="PERMISSIONS"/>
|
16
|
+
<xs:element name="PRIORITY" type="xs:integer"/>
|
17
|
+
<xs:element name="LAST_BACKUP_TIME" type="xs:integer"/>
|
18
|
+
<xs:element name="LAST_BACKUP_DURATION" type="xs:integer"/>
|
19
|
+
<xs:element name="SCHED_ACTIONS" type="IDS"/>
|
20
|
+
<xs:element name="UPDATED_VMS" type="IDS"/>
|
21
|
+
<xs:element name="OUTDATED_VMS" type="IDS"/>
|
22
|
+
<xs:element name="BACKING_UP_VMS" type="IDS"/>
|
23
|
+
<xs:element name="ERROR_VMS" type="IDS"/>
|
24
|
+
<xs:element name="TEMPLATE">
|
25
|
+
<xs:complexType>
|
26
|
+
<xs:sequence>
|
27
|
+
<xs:element name="BACKUP_VMS" type="xs:string"/>
|
28
|
+
<xs:element name="BACKUP_VOLATILE" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
29
|
+
<xs:element name="DATASTORE_ID" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
30
|
+
<xs:element name="EXECUTION" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
31
|
+
<xs:element name="FS_FREEZE" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
32
|
+
<xs:element name="KEEP_LAST" type="xs:integer" minOccurs="0" maxOccurs="1"/>
|
33
|
+
<xs:element name="MODE" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
34
|
+
<xs:element name="RESET" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
35
|
+
<xs:element name="SCHED_ACTION" type="SCHED_ACTION" minOccurs="0" maxOccurs="unbounded"/>
|
36
|
+
</xs:sequence>
|
37
|
+
</xs:complexType>
|
38
|
+
</xs:element>
|
39
|
+
</xs:sequence>
|
40
|
+
</xs:complexType>
|
41
|
+
</xs:element>
|
42
|
+
</xs:schema>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
|
3
|
+
targetNamespace="http://opennebula.org/XMLSchema" xmlns="http://opennebula.org/XMLSchema">
|
4
|
+
<xs:include schemaLocation="backupjob.xsd"/>
|
5
|
+
<xs:element name="BACKUPJOB_POOL">
|
6
|
+
<xs:complexType>
|
7
|
+
<xs:sequence maxOccurs="1" minOccurs="1">
|
8
|
+
<xs:element ref="BACKUPJOB" maxOccurs="unbounded" minOccurs="0"/>
|
9
|
+
</xs:sequence>
|
10
|
+
</xs:complexType>
|
11
|
+
</xs:element>
|
12
|
+
</xs:schema>
|
data/share/schemas/xsd/index.xsd
CHANGED
@@ -4,6 +4,8 @@
|
|
4
4
|
<xs:include schemaLocation="acct.xsd"/>
|
5
5
|
<xs:include schemaLocation="acl_pool.xsd"/>
|
6
6
|
<xs:include schemaLocation="api_info.xsd"/>
|
7
|
+
<xs:include schemaLocation="backupjob_pool.xsd"/>
|
8
|
+
<xs:include schemaLocation="backupjob.xsd"/>
|
7
9
|
<xs:include schemaLocation="cluster_pool.xsd"/>
|
8
10
|
<xs:include schemaLocation="cluster.xsd"/>
|
9
11
|
<xs:include schemaLocation="datastore_pool.xsd"/>
|
@@ -28,6 +30,7 @@
|
|
28
30
|
<xs:include schemaLocation="raftstatus.xsd"/>
|
29
31
|
<xs:include schemaLocation="security_group_pool.xsd"/>
|
30
32
|
<xs:include schemaLocation="security_group.xsd"/>
|
33
|
+
<xs:include schemaLocation="shared.xsd"/>
|
31
34
|
<xs:include schemaLocation="showback.xsd"/>
|
32
35
|
<xs:include schemaLocation="user_pool.xsd"/>
|
33
36
|
<xs:include schemaLocation="user.xsd"/>
|
@@ -244,6 +244,8 @@
|
|
244
244
|
</xs:complexType>
|
245
245
|
</xs:element>
|
246
246
|
|
247
|
+
<xs:element name="MAX_BACKUPS" type="xs:integer" minOccurs="0" maxOccurs="1"/>
|
248
|
+
<xs:element name="MAX_BACKUPS_HOST" type="xs:integer" minOccurs="0" maxOccurs="1"/>
|
247
249
|
<xs:element name="MAX_CONN" type="xs:integer" minOccurs="0" maxOccurs="1"/>
|
248
250
|
<xs:element name="MAX_CONN_BACKLOG" type="xs:integer" minOccurs="0" maxOccurs="1"/>
|
249
251
|
<xs:element name="MESSAGE_SIZE" type="xs:integer" minOccurs="0" maxOccurs="1"/>
|
@@ -293,6 +295,7 @@
|
|
293
295
|
<xs:element name="CLONE_TARGET" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
294
296
|
<xs:element name="CLONE_TARGET_SHARED" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
295
297
|
<xs:element name="CLONE_TARGET_SSH" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
298
|
+
<xs:element name="DISK_TYPE" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
296
299
|
<xs:element name="DISK_TYPE_SHARED" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
297
300
|
<xs:element name="DISK_TYPE_SSH" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
298
301
|
<xs:element name="DRIVER" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
@@ -0,0 +1,46 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
|
3
|
+
targetNamespace="http://opennebula.org/XMLSchema" xmlns="http://opennebula.org/XMLSchema">
|
4
|
+
<xs:complexType name="LOCK">
|
5
|
+
<xs:sequence>
|
6
|
+
<xs:element name="LOCKED" type="xs:integer"/>
|
7
|
+
<xs:element name="OWNER" type="xs:integer"/>
|
8
|
+
<xs:element name="TIME" type="xs:integer"/>
|
9
|
+
<xs:element name="REQ_ID" type="xs:integer"/>
|
10
|
+
</xs:sequence>
|
11
|
+
</xs:complexType>
|
12
|
+
<xs:complexType name="PERMISSIONS">
|
13
|
+
<xs:sequence>
|
14
|
+
<xs:element name="OWNER_U" type="xs:integer"/>
|
15
|
+
<xs:element name="OWNER_M" type="xs:integer"/>
|
16
|
+
<xs:element name="OWNER_A" type="xs:integer"/>
|
17
|
+
<xs:element name="GROUP_U" type="xs:integer"/>
|
18
|
+
<xs:element name="GROUP_M" type="xs:integer"/>
|
19
|
+
<xs:element name="GROUP_A" type="xs:integer"/>
|
20
|
+
<xs:element name="OTHER_U" type="xs:integer"/>
|
21
|
+
<xs:element name="OTHER_M" type="xs:integer"/>
|
22
|
+
<xs:element name="OTHER_A" type="xs:integer"/>
|
23
|
+
</xs:sequence>
|
24
|
+
</xs:complexType>
|
25
|
+
<xs:complexType name="IDS">
|
26
|
+
<xs:sequence>
|
27
|
+
<xs:element name="ID" type="xs:integer" minOccurs="0" maxOccurs="unbounded"/>
|
28
|
+
</xs:sequence>
|
29
|
+
</xs:complexType>
|
30
|
+
<xs:complexType name="SCHED_ACTION">
|
31
|
+
<xs:sequence>
|
32
|
+
<xs:element name="ID" type="xs:integer"/>
|
33
|
+
<xs:element name="PARENT_ID" type="xs:integer"/>
|
34
|
+
<xs:element name="TYPE" type="xs:string"/>
|
35
|
+
<xs:element name="ACTION" type="xs:string"/>
|
36
|
+
<xs:element name="ARGS" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
37
|
+
<xs:element name="TIME" type="xs:string"/>
|
38
|
+
<xs:element name="REPEAT" type="xs:integer" minOccurs="0" maxOccurs="1"/>
|
39
|
+
<xs:element name="DAYS" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
40
|
+
<xs:element name="END_TYPE" type="xs:integer" minOccurs="0" maxOccurs="1"/>
|
41
|
+
<xs:element name="END_VALUE" type="xs:integer" minOccurs="0" maxOccurs="1"/>
|
42
|
+
<xs:element name="DONE" type="xs:integer" minOccurs="0" maxOccurs="1"/>
|
43
|
+
<xs:element name="MESSAGE" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
44
|
+
</xs:sequence>
|
45
|
+
</xs:complexType>
|
46
|
+
</xs:schema>
|
data/share/schemas/xsd/vm.xsd
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
|
3
3
|
targetNamespace="http://opennebula.org/XMLSchema" xmlns="http://opennebula.org/XMLSchema">
|
4
|
+
<xs:include schemaLocation="shared.xsd"/>
|
4
5
|
<xs:element name="VM">
|
5
6
|
<xs:complexType>
|
6
7
|
<xs:sequence>
|
@@ -10,21 +11,7 @@
|
|
10
11
|
<xs:element name="UNAME" type="xs:string"/>
|
11
12
|
<xs:element name="GNAME" type="xs:string"/>
|
12
13
|
<xs:element name="NAME" type="xs:string"/>
|
13
|
-
<xs:element name="PERMISSIONS"
|
14
|
-
<xs:complexType>
|
15
|
-
<xs:sequence>
|
16
|
-
<xs:element name="OWNER_U" type="xs:integer"/>
|
17
|
-
<xs:element name="OWNER_M" type="xs:integer"/>
|
18
|
-
<xs:element name="OWNER_A" type="xs:integer"/>
|
19
|
-
<xs:element name="GROUP_U" type="xs:integer"/>
|
20
|
-
<xs:element name="GROUP_M" type="xs:integer"/>
|
21
|
-
<xs:element name="GROUP_A" type="xs:integer"/>
|
22
|
-
<xs:element name="OTHER_U" type="xs:integer"/>
|
23
|
-
<xs:element name="OTHER_M" type="xs:integer"/>
|
24
|
-
<xs:element name="OTHER_A" type="xs:integer"/>
|
25
|
-
</xs:sequence>
|
26
|
-
</xs:complexType>
|
27
|
-
</xs:element>
|
14
|
+
<xs:element name="PERMISSIONS" type="PERMISSIONS"/>
|
28
15
|
<xs:element name="LAST_POLL" type="xs:integer"/>
|
29
16
|
|
30
17
|
<!-- STATE and LCM_STATE values,
|
@@ -38,16 +25,7 @@
|
|
38
25
|
<xs:element name="STIME" type="xs:integer"/>
|
39
26
|
<xs:element name="ETIME" type="xs:integer"/>
|
40
27
|
<xs:element name="DEPLOY_ID" type="xs:string"/>
|
41
|
-
<xs:element name="LOCK" minOccurs="0" maxOccurs="1"
|
42
|
-
<xs:complexType>
|
43
|
-
<xs:sequence>
|
44
|
-
<xs:element name="LOCKED" type="xs:integer"/>
|
45
|
-
<xs:element name="OWNER" type="xs:integer"/>
|
46
|
-
<xs:element name="TIME" type="xs:integer"/>
|
47
|
-
<xs:element name="REQ_ID" type="xs:integer"/>
|
48
|
-
</xs:sequence>
|
49
|
-
</xs:complexType>
|
50
|
-
</xs:element>
|
28
|
+
<xs:element name="LOCK" type="LOCK" minOccurs="0" maxOccurs="1"/>
|
51
29
|
<xs:element name="MONITORING">
|
52
30
|
<xs:complexType>
|
53
31
|
<xs:sequence>
|
@@ -91,6 +69,7 @@
|
|
91
69
|
</xs:sequence>
|
92
70
|
</xs:complexType>
|
93
71
|
</xs:element>
|
72
|
+
<xs:element name="SCHED_ACTIONS" type="IDS"/>
|
94
73
|
<xs:element name="TEMPLATE">
|
95
74
|
<xs:complexType>
|
96
75
|
<xs:sequence>
|
@@ -116,6 +95,17 @@
|
|
116
95
|
<xs:element name="FEATURES" minOccurs="0" maxOccurs="1"/>
|
117
96
|
<xs:element name="HYPERV_OPTIONS" minOccurs="0" maxOccurs="1"/>
|
118
97
|
<xs:element name="GRAPHICS" minOccurs="0" maxOccurs="1"/>
|
98
|
+
<xs:element name="VIDEO" minOccurs="0" maxOccurs="1">
|
99
|
+
<xs:complexType>
|
100
|
+
<xs:sequence>
|
101
|
+
<xs:element name="TYPE" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
102
|
+
<xs:element name="IOMMU" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
103
|
+
<xs:element name="ATS" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
104
|
+
<xs:element name="VRAM" type="xs:integer" minOccurs="0" maxOccurs="1"/>
|
105
|
+
<xs:element name="RESOLUTION" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
106
|
+
</xs:sequence>
|
107
|
+
</xs:complexType>
|
108
|
+
</xs:element>
|
119
109
|
<xs:element name="IMPORTED" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
120
110
|
<xs:element name="INPUT" minOccurs="0" maxOccurs="1"/>
|
121
111
|
<xs:element name="MEMORY" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
@@ -152,21 +142,6 @@
|
|
152
142
|
<xs:element name="OS" minOccurs="0" maxOccurs="1"/>
|
153
143
|
<xs:element name="PCI" minOccurs="0" maxOccurs="1"/>
|
154
144
|
<xs:element name="RAW" minOccurs="0" maxOccurs="1"/>
|
155
|
-
<xs:element name="SCHED_ACTION" minOccurs="0" maxOccurs="unbounded">
|
156
|
-
<xs:complexType>
|
157
|
-
<xs:sequence>
|
158
|
-
<xs:element name="ACTION" type="xs:string"/>
|
159
|
-
<xs:element name="ARGS" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
160
|
-
<xs:element name="DAYS" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
161
|
-
<xs:element name="END_TYPE" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
162
|
-
<xs:element name="END_VALUE" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
163
|
-
<xs:element name="ID" type="xs:string"/>
|
164
|
-
<xs:element name="REPEAT" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
165
|
-
<xs:element name="TIME" type="xs:string"/>
|
166
|
-
<xs:element name="WARNING" type="xs:string"/>
|
167
|
-
</xs:sequence>
|
168
|
-
</xs:complexType>
|
169
|
-
</xs:element>
|
170
145
|
<xs:element name="SECURITY_GROUP_RULE" minOccurs="0" maxOccurs="unbounded"/>
|
171
146
|
<xs:element name="SNAPSHOT" minOccurs="0" maxOccurs="unbounded">
|
172
147
|
<xs:complexType>
|
@@ -193,6 +168,7 @@
|
|
193
168
|
<xs:element name="VROUTER_ID" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
194
169
|
<xs:element name="VROUTER_KEEPALIVED_ID" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
195
170
|
<xs:element name="VROUTER_KEEPALIVED_PASSWORD" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
171
|
+
<xs:element name="SCHED_ACTION" type="SCHED_ACTION" minOccurs="0" maxOccurs="unbounded"/>
|
196
172
|
</xs:sequence>
|
197
173
|
</xs:complexType>
|
198
174
|
</xs:element>
|
@@ -319,6 +295,7 @@
|
|
319
295
|
<xs:element name="BACKUP_CONFIG" minOccurs="1" maxOccurs="1">
|
320
296
|
<xs:complexType>
|
321
297
|
<xs:sequence>
|
298
|
+
<xs:element name="BACKUP_JOB_ID" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
322
299
|
<xs:element name="BACKUP_VOLATILE" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
323
300
|
<xs:element name="FS_FREEZE" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
324
301
|
<xs:element name="INCREMENTAL_BACKUP_ID" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
@@ -331,13 +308,7 @@
|
|
331
308
|
</xs:sequence>
|
332
309
|
</xs:complexType>
|
333
310
|
</xs:element>
|
334
|
-
<xs:element name="BACKUP_IDS"
|
335
|
-
<xs:complexType>
|
336
|
-
<xs:sequence>
|
337
|
-
<xs:element name="ID" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
|
338
|
-
</xs:sequence>
|
339
|
-
</xs:complexType>
|
340
|
-
</xs:element>
|
311
|
+
<xs:element name="BACKUP_IDS" type="IDS"/>
|
341
312
|
</xs:sequence>
|
342
313
|
</xs:complexType>
|
343
314
|
</xs:element>
|
@@ -46,6 +46,7 @@
|
|
46
46
|
<xs:element name="ID" type="xs:integer"/>
|
47
47
|
<xs:element name="NAME" type="xs:string"/>
|
48
48
|
<xs:element name="POLICY" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
49
|
+
<xs:element name="VMS" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
49
50
|
</xs:sequence>
|
50
51
|
</xs:complexType>
|
51
52
|
</xs:element>
|
@@ -25,6 +25,7 @@
|
|
25
25
|
<xs:sequence>
|
26
26
|
<xs:element name="CPU" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
27
27
|
<xs:element name="MEMORY" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
28
|
+
<xs:element name="VCPU" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
28
29
|
<xs:element name="DISK" minOccurs="0" maxOccurs="unbounded">
|
29
30
|
<xs:complexType>
|
30
31
|
<xs:sequence>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opennebula-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.
|
4
|
+
version: 6.7.80.pre
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenNebula
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-09-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: opennebula
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 6.
|
19
|
+
version: 6.7.80.pre
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 6.
|
26
|
+
version: 6.7.80.pre
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: activesupport
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,6 +66,7 @@ executables:
|
|
66
66
|
- onevnet
|
67
67
|
- oneflow
|
68
68
|
- onedatastore
|
69
|
+
- onebackupjob
|
69
70
|
- onevm
|
70
71
|
extensions: []
|
71
72
|
extra_rdoc_files: []
|
@@ -74,6 +75,7 @@ files:
|
|
74
75
|
- NOTICE
|
75
76
|
- bin/oneacct
|
76
77
|
- bin/oneacl
|
78
|
+
- bin/onebackupjob
|
77
79
|
- bin/onecluster
|
78
80
|
- bin/onedatastore
|
79
81
|
- bin/oneflow
|
@@ -103,6 +105,7 @@ files:
|
|
103
105
|
- lib/one_helper.rb
|
104
106
|
- lib/one_helper/oneacct_helper.rb
|
105
107
|
- lib/one_helper/oneacl_helper.rb
|
108
|
+
- lib/one_helper/onebackupjob_helper.rb
|
106
109
|
- lib/one_helper/onecluster_helper.rb
|
107
110
|
- lib/one_helper/onedatastore_helper.rb
|
108
111
|
- lib/one_helper/oneflow_helper.rb
|
@@ -128,6 +131,8 @@ files:
|
|
128
131
|
- share/schemas/xsd/acct.xsd
|
129
132
|
- share/schemas/xsd/acl_pool.xsd
|
130
133
|
- share/schemas/xsd/api_info.xsd
|
134
|
+
- share/schemas/xsd/backupjob.xsd
|
135
|
+
- share/schemas/xsd/backupjob_pool.xsd
|
131
136
|
- share/schemas/xsd/cluster.xsd
|
132
137
|
- share/schemas/xsd/cluster_pool.xsd
|
133
138
|
- share/schemas/xsd/datastore.xsd
|
@@ -155,6 +160,7 @@ files:
|
|
155
160
|
- share/schemas/xsd/raftstatus.xsd
|
156
161
|
- share/schemas/xsd/security_group.xsd
|
157
162
|
- share/schemas/xsd/security_group_pool.xsd
|
163
|
+
- share/schemas/xsd/shared.xsd
|
158
164
|
- share/schemas/xsd/showback.xsd
|
159
165
|
- share/schemas/xsd/user.xsd
|
160
166
|
- share/schemas/xsd/user_pool.xsd
|
@@ -189,9 +195,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
189
195
|
version: '0'
|
190
196
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
191
197
|
requirements:
|
192
|
-
- - "
|
198
|
+
- - ">"
|
193
199
|
- !ruby/object:Gem::Version
|
194
|
-
version:
|
200
|
+
version: 1.3.1
|
195
201
|
requirements: []
|
196
202
|
rubygems_version: 3.1.2
|
197
203
|
signing_key:
|