opennebula-cli 6.10.3 → 6.99.85.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/oneacct +5 -18
- data/bin/oneacl +2 -18
- data/bin/onebackupjob +2 -18
- data/bin/onecluster +36 -18
- data/bin/onedatastore +2 -18
- data/bin/oneflow +2 -18
- data/bin/oneflow-template +8 -24
- data/bin/onegroup +2 -18
- data/bin/onehook +2 -18
- data/bin/onehost +4 -48
- data/bin/oneimage +2 -18
- data/bin/oneirb +2 -61
- data/bin/onelog +3 -22
- data/bin/onemarket +2 -18
- data/bin/onemarketapp +2 -30
- data/bin/onesecgroup +2 -18
- data/bin/oneshowback +2 -18
- data/bin/onetemplate +2 -19
- data/bin/oneuser +2 -18
- data/bin/onevdc +2 -18
- data/bin/onevm +2 -18
- data/bin/onevmgroup +2 -18
- data/bin/onevnet +2 -18
- data/bin/onevntemplate +2 -18
- data/bin/onevrouter +13 -20
- data/bin/onezone +2 -18
- data/lib/cli_helper.rb +1 -1
- data/lib/command_parser.rb +1 -1
- data/lib/one_helper/oneacct_helper.rb +10 -2
- data/lib/one_helper/oneacl_helper.rb +1 -1
- data/lib/one_helper/onebackupjob_helper.rb +1 -1
- data/lib/one_helper/onecluster_helper.rb +49 -1
- data/lib/one_helper/onedatastore_helper.rb +1 -1
- data/lib/one_helper/oneflow_helper.rb +1 -1
- data/lib/one_helper/oneflowtemplate_helper.rb +17 -17
- data/lib/one_helper/onegroup_helper.rb +4 -55
- data/lib/one_helper/onehook_helper.rb +1 -1
- data/lib/one_helper/onehost_helper.rb +25 -86
- data/lib/one_helper/oneimage_helper.rb +2 -19
- data/lib/one_helper/onemarket_helper.rb +1 -1
- data/lib/one_helper/onemarketapp_helper.rb +13 -3
- data/lib/one_helper/onequota_helper.rb +35 -8
- data/lib/one_helper/onesecgroup_helper.rb +1 -1
- data/lib/one_helper/onetemplate_helper.rb +1 -8
- data/lib/one_helper/oneuser_helper.rb +41 -75
- data/lib/one_helper/onevdc_helper.rb +1 -1
- data/lib/one_helper/onevm_helper.rb +96 -85
- data/lib/one_helper/onevmgroup_helper.rb +1 -1
- data/lib/one_helper/onevnet_helper.rb +1 -1
- data/lib/one_helper/onevntemplate_helper.rb +1 -1
- data/lib/one_helper/onevrouter_helper.rb +1 -1
- data/lib/one_helper/onezone_helper.rb +10 -23
- data/lib/one_helper.rb +14 -138
- data/share/schemas/xsd/acct.xsd +2 -0
- data/share/schemas/xsd/cluster.xsd +21 -0
- data/share/schemas/xsd/datastore.xsd +1 -13
- data/share/schemas/xsd/group.xsd +11 -122
- data/share/schemas/xsd/group_pool.xsd +8 -120
- data/share/schemas/xsd/host.xsd +19 -21
- data/share/schemas/xsd/image.xsd +0 -1
- data/share/schemas/xsd/monitoring_data.xsd +0 -8
- data/share/schemas/xsd/opennebula_configuration.xsd +23 -1
- data/share/schemas/xsd/plan.xsd +29 -0
- data/share/schemas/xsd/requirements.xsd +45 -0
- data/share/schemas/xsd/scheduler_driver_action.xsd +24 -0
- data/share/schemas/xsd/shared.xsd +67 -0
- data/share/schemas/xsd/user.xsd +10 -122
- data/share/schemas/xsd/user_pool.xsd +8 -120
- data/share/schemas/xsd/vm.xsd +37 -28
- data/share/schemas/xsd/vm_pool.xsd +0 -12
- data/share/schemas/xsd/vm_pool_extended.xsd +12 -0
- data/share/schemas/xsd/vmtemplate.xsd +0 -3
- data/share/schemas/xsd/vnet.xsd +0 -5
- data/share/schemas/xsd/vnet_pool_extended.xsd +12 -0
- metadata +11 -9
- data/bin/onevcenter +0 -471
- data/lib/one_helper/onevcenter_helper.rb +0 -523
@@ -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="USER_POOL">
|
5
6
|
<xs:complexType>
|
6
7
|
<xs:sequence maxOccurs="1" minOccurs="1">
|
@@ -39,79 +40,10 @@
|
|
39
40
|
<xs:complexType>
|
40
41
|
<xs:sequence>
|
41
42
|
<xs:element name="ID" type="xs:integer"/>
|
42
|
-
<xs:element name="DATASTORE_QUOTA"
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
<xs:complexType>
|
47
|
-
<xs:sequence>
|
48
|
-
<xs:element name="ID" type="xs:string"/>
|
49
|
-
<xs:element name="IMAGES" type="xs:string"/>
|
50
|
-
<xs:element name="IMAGES_USED" type="xs:string"/>
|
51
|
-
<xs:element name="SIZE" type="xs:string"/>
|
52
|
-
<xs:element name="SIZE_USED" type="xs:string"/>
|
53
|
-
</xs:sequence>
|
54
|
-
</xs:complexType>
|
55
|
-
</xs:element>
|
56
|
-
</xs:sequence>
|
57
|
-
</xs:complexType>
|
58
|
-
</xs:element>
|
59
|
-
<xs:element name="NETWORK_QUOTA" minOccurs="0" maxOccurs="1">
|
60
|
-
<xs:complexType>
|
61
|
-
<xs:sequence>
|
62
|
-
<xs:element name="NETWORK" minOccurs="0" maxOccurs="unbounded">
|
63
|
-
<xs:complexType>
|
64
|
-
<xs:sequence>
|
65
|
-
<xs:element name="ID" type="xs:string"/>
|
66
|
-
<xs:element name="LEASES" type="xs:string"/>
|
67
|
-
<xs:element name="LEASES_USED" type="xs:string"/>
|
68
|
-
</xs:sequence>
|
69
|
-
</xs:complexType>
|
70
|
-
</xs:element>
|
71
|
-
</xs:sequence>
|
72
|
-
</xs:complexType>
|
73
|
-
</xs:element>
|
74
|
-
<xs:element name="VM_QUOTA" minOccurs="0" maxOccurs="1">
|
75
|
-
<xs:complexType>
|
76
|
-
<xs:sequence>
|
77
|
-
<xs:element name="VM" minOccurs="0" maxOccurs="1">
|
78
|
-
<xs:complexType>
|
79
|
-
<xs:sequence>
|
80
|
-
<xs:element name="CPU" type="xs:string"/>
|
81
|
-
<xs:element name="CPU_USED" type="xs:string"/>
|
82
|
-
<xs:element name="MEMORY" type="xs:string"/>
|
83
|
-
<xs:element name="MEMORY_USED" type="xs:string"/>
|
84
|
-
<xs:element name="RUNNING_CPU" type="xs:string"/>
|
85
|
-
<xs:element name="RUNNING_CPU_USED" type="xs:string"/>
|
86
|
-
<xs:element name="RUNNING_MEMORY" type="xs:string"/>
|
87
|
-
<xs:element name="RUNNING_MEMORY_USED" type="xs:string"/>
|
88
|
-
<xs:element name="RUNNING_VMS" type="xs:string"/>
|
89
|
-
<xs:element name="RUNNING_VMS_USED" type="xs:string"/>
|
90
|
-
<xs:element name="SYSTEM_DISK_SIZE" type="xs:string"/>
|
91
|
-
<xs:element name="SYSTEM_DISK_SIZE_USED" type="xs:string"/>
|
92
|
-
<xs:element name="VMS" type="xs:string"/>
|
93
|
-
<xs:element name="VMS_USED" type="xs:string"/>
|
94
|
-
</xs:sequence>
|
95
|
-
</xs:complexType>
|
96
|
-
</xs:element>
|
97
|
-
</xs:sequence>
|
98
|
-
</xs:complexType>
|
99
|
-
</xs:element>
|
100
|
-
<xs:element name="IMAGE_QUOTA" minOccurs="0" maxOccurs="1">
|
101
|
-
<xs:complexType>
|
102
|
-
<xs:sequence>
|
103
|
-
<xs:element name="IMAGE" minOccurs="0" maxOccurs="unbounded">
|
104
|
-
<xs:complexType>
|
105
|
-
<xs:sequence>
|
106
|
-
<xs:element name="ID" type="xs:string"/>
|
107
|
-
<xs:element name="RVMS" type="xs:string"/>
|
108
|
-
<xs:element name="RVMS_USED" type="xs:string"/>
|
109
|
-
</xs:sequence>
|
110
|
-
</xs:complexType>
|
111
|
-
</xs:element>
|
112
|
-
</xs:sequence>
|
113
|
-
</xs:complexType>
|
114
|
-
</xs:element>
|
43
|
+
<xs:element name="DATASTORE_QUOTA" type="DATASTORE_QUOTA" minOccurs="0"/>
|
44
|
+
<xs:element name="NETWORK_QUOTA" type="NETWORK_QUOTA" minOccurs="0"/>
|
45
|
+
<xs:element name="VM_QUOTA" type="VM_QUOTA" minOccurs="0"/>
|
46
|
+
<xs:element name="IMAGE_QUOTA" type="IMAGE_QUOTA" minOccurs="0"/>
|
115
47
|
</xs:sequence>
|
116
48
|
</xs:complexType>
|
117
49
|
</xs:element>
|
@@ -119,38 +51,8 @@
|
|
119
51
|
<xs:element name="DEFAULT_USER_QUOTAS">
|
120
52
|
<xs:complexType>
|
121
53
|
<xs:sequence>
|
122
|
-
<xs:element name="DATASTORE_QUOTA"
|
123
|
-
|
124
|
-
<xs:sequence>
|
125
|
-
<xs:element name="DATASTORE" minOccurs="0" maxOccurs="unbounded">
|
126
|
-
<xs:complexType>
|
127
|
-
<xs:sequence>
|
128
|
-
<xs:element name="ID" type="xs:string"/>
|
129
|
-
<xs:element name="IMAGES" type="xs:string"/>
|
130
|
-
<xs:element name="IMAGES_USED" type="xs:string"/>
|
131
|
-
<xs:element name="SIZE" type="xs:string"/>
|
132
|
-
<xs:element name="SIZE_USED" type="xs:string"/>
|
133
|
-
</xs:sequence>
|
134
|
-
</xs:complexType>
|
135
|
-
</xs:element>
|
136
|
-
</xs:sequence>
|
137
|
-
</xs:complexType>
|
138
|
-
</xs:element>
|
139
|
-
<xs:element name="NETWORK_QUOTA" minOccurs="0" maxOccurs="1">
|
140
|
-
<xs:complexType>
|
141
|
-
<xs:sequence>
|
142
|
-
<xs:element name="NETWORK" minOccurs="0" maxOccurs="unbounded">
|
143
|
-
<xs:complexType>
|
144
|
-
<xs:sequence>
|
145
|
-
<xs:element name="ID" type="xs:string"/>
|
146
|
-
<xs:element name="LEASES" type="xs:string"/>
|
147
|
-
<xs:element name="LEASES_USED" type="xs:string"/>
|
148
|
-
</xs:sequence>
|
149
|
-
</xs:complexType>
|
150
|
-
</xs:element>
|
151
|
-
</xs:sequence>
|
152
|
-
</xs:complexType>
|
153
|
-
</xs:element>
|
54
|
+
<xs:element name="DATASTORE_QUOTA" type="DATASTORE_QUOTA" minOccurs="0"/>
|
55
|
+
<xs:element name="NETWORK_QUOTA" type="NETWORK_QUOTA" minOccurs="0"/>
|
154
56
|
<xs:element name="VM_QUOTA" minOccurs="0" maxOccurs="1">
|
155
57
|
<xs:complexType>
|
156
58
|
<xs:sequence>
|
@@ -177,21 +79,7 @@
|
|
177
79
|
</xs:sequence>
|
178
80
|
</xs:complexType>
|
179
81
|
</xs:element>
|
180
|
-
<xs:element name="IMAGE_QUOTA"
|
181
|
-
<xs:complexType>
|
182
|
-
<xs:sequence>
|
183
|
-
<xs:element name="IMAGE" minOccurs="0" maxOccurs="unbounded">
|
184
|
-
<xs:complexType>
|
185
|
-
<xs:sequence>
|
186
|
-
<xs:element name="ID" type="xs:string"/>
|
187
|
-
<xs:element name="RVMS" type="xs:string"/>
|
188
|
-
<xs:element name="RVMS_USED" type="xs:string"/>
|
189
|
-
</xs:sequence>
|
190
|
-
</xs:complexType>
|
191
|
-
</xs:element>
|
192
|
-
</xs:sequence>
|
193
|
-
</xs:complexType>
|
194
|
-
</xs:element>
|
82
|
+
<xs:element name="IMAGE_QUOTA" type="IMAGE_QUOTA" minOccurs="0"/>
|
195
83
|
</xs:sequence>
|
196
84
|
</xs:complexType>
|
197
85
|
</xs:element>
|
data/share/schemas/xsd/vm.xsd
CHANGED
@@ -31,14 +31,32 @@
|
|
31
31
|
<xs:sequence>
|
32
32
|
<!-- Percentage of 1 CPU consumed (two fully consumed cpu is 2.0) -->
|
33
33
|
<xs:element name="CPU" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
34
|
+
<xs:element name="CPU_FORECAST" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
35
|
+
<xs:element name="CPU_FORECAST_FAR" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
34
36
|
<!-- Amount of bytes read from disk-->
|
35
|
-
<xs:element name="DISKRDBYTES" type="xs:
|
37
|
+
<xs:element name="DISKRDBYTES" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
38
|
+
<!-- Disk read bandwidth in bytes per second-->
|
39
|
+
<xs:element name="DISKRDBYTES_BW" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
40
|
+
<xs:element name="DISKRDBYTES_BW_FORECAST" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
41
|
+
<xs:element name="DISKRDBYTES_BW_FORECAST_FAR" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
36
42
|
<!-- Number of IO read operations -->
|
37
|
-
<xs:element name="DISKRDIOPS" type="xs:
|
43
|
+
<xs:element name="DISKRDIOPS" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
44
|
+
<!-- Disk IOPS read operations bandwidth -->
|
45
|
+
<xs:element name="DISKRDIOPS_BW" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
46
|
+
<xs:element name="DISKRDIOPS_BW_FORECAST" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
47
|
+
<xs:element name="DISKRDIOPS_BW_FORECAST_FAR" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
38
48
|
<!-- Amount of bytes written to disk -->
|
39
|
-
<xs:element name="DISKWRBYTES" type="xs:
|
49
|
+
<xs:element name="DISKWRBYTES" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
50
|
+
<!-- Disk write bandwidth in bytes per second -->
|
51
|
+
<xs:element name="DISKWRBYTES_BW" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
52
|
+
<xs:element name="DISKWRBYTES_BW_FORECAST" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
53
|
+
<xs:element name="DISKWRBYTES_BW_FORECAST_FAR" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
40
54
|
<!-- Number of IO write operations -->
|
41
|
-
<xs:element name="DISKWRIOPS" type="xs:
|
55
|
+
<xs:element name="DISKWRIOPS" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
56
|
+
<!-- Disk IO write operations bandwidth -->
|
57
|
+
<xs:element name="DISKWRIOPS_BW" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
58
|
+
<xs:element name="DISKWRIOPS_BW_FORECAST" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
59
|
+
<xs:element name="DISKWRIOPS_BW_FORECAST_FAR" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
42
60
|
<!-- Disk size details -->
|
43
61
|
<xs:element name="DISK_SIZE" minOccurs="0" maxOccurs="unbounded">
|
44
62
|
<xs:complexType>
|
@@ -51,21 +69,21 @@
|
|
51
69
|
<!-- ID of the VM -->
|
52
70
|
<xs:element name="ID" type="xs:integer" minOccurs="0" maxOccurs="1"/>
|
53
71
|
<!-- Consumption in kilobytes -->
|
54
|
-
<xs:element name="MEMORY" type="xs:
|
72
|
+
<xs:element name="MEMORY" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
55
73
|
<!-- Received bytes from the network -->
|
56
|
-
<xs:element name="NETRX" type="xs:
|
74
|
+
<xs:element name="NETRX" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
75
|
+
<!-- Network received bandwidth in bytes per second -->
|
76
|
+
<xs:element name="NETRX_BW" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
77
|
+
<xs:element name="NETRX_BW_FORECAST" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
78
|
+
<xs:element name="NETRX_BW_FORECAST_FAR" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
57
79
|
<!-- Sent bytes to the network -->
|
58
|
-
<xs:element name="NETTX" type="xs:
|
80
|
+
<xs:element name="NETTX" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
81
|
+
<!-- Network transmitted bandwidth in bytes per second -->
|
82
|
+
<xs:element name="NETTX_BW" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
83
|
+
<xs:element name="NETTX_BW_FORECAST" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
84
|
+
<xs:element name="NETTX_BW_FORECAST_FAR" type="xs:decimal" minOccurs="0" maxOccurs="1"/>
|
59
85
|
<!-- Exact time when monitoring info were retieved -->
|
60
86
|
<xs:element name="TIMESTAMP" type="xs:integer" minOccurs="0" maxOccurs="1"/>
|
61
|
-
<!-- vCetner information -->
|
62
|
-
<xs:element name="VCENTER_ESX_HOST" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
63
|
-
<xs:element name="VCENTER_GUEST_STATE" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
64
|
-
<xs:element name="VCENTER_RP_NAME" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
65
|
-
<xs:element name="VCENTER_VMWARETOOLS_RUNNING_STATUS" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
66
|
-
<xs:element name="VCENTER_VMWARETOOLS_VERSION" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
67
|
-
<xs:element name="VCENTER_VMWARETOOLS_VERSION_STATUS" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
68
|
-
<xs:element name="VCENTER_VM_NAME" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
69
87
|
<xs:any minOccurs="0" maxOccurs="unbounded" processContents="skip"/>
|
70
88
|
</xs:sequence>
|
71
89
|
</xs:complexType>
|
@@ -85,8 +103,6 @@
|
|
85
103
|
<xs:complexType>
|
86
104
|
<xs:sequence>
|
87
105
|
<xs:any minOccurs="0" maxOccurs="unbounded" processContents="skip"/>
|
88
|
-
<xs:element name="VCENTER_DS_REF" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
89
|
-
<xs:element name="VCENTER_INSTANCE_ID" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
90
106
|
<xs:any minOccurs="0" maxOccurs="unbounded" processContents="skip"/>
|
91
107
|
</xs:sequence>
|
92
108
|
</xs:complexType>
|
@@ -118,9 +134,6 @@
|
|
118
134
|
<xs:complexType>
|
119
135
|
<xs:sequence>
|
120
136
|
<xs:any minOccurs="0" maxOccurs="unbounded" processContents="skip"/>
|
121
|
-
<xs:element name="VCENTER_INSTANCE_ID" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
122
|
-
<xs:element name="VCENTER_NET_REF" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
123
|
-
<xs:element name="VCENTER_PORTGROUP_TYPE" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
124
137
|
</xs:sequence>
|
125
138
|
</xs:complexType>
|
126
139
|
</xs:element>
|
@@ -132,16 +145,13 @@
|
|
132
145
|
<xs:element name="PARENT" type="xs:string" minOccurs="1" maxOccurs="1"/>
|
133
146
|
<xs:element name="PARENT_ID" type="xs:string" minOccurs="1" maxOccurs="1"/>
|
134
147
|
<xs:any minOccurs="0" maxOccurs="unbounded" processContents="skip"/>
|
135
|
-
<xs:element name="VCENTER_INSTANCE_ID" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
136
|
-
<xs:element name="VCENTER_NET_REF" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
137
|
-
<xs:element name="VCENTER_PORTGROUP_TYPE" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
138
148
|
</xs:sequence>
|
139
149
|
</xs:complexType>
|
140
150
|
</xs:element>
|
141
151
|
<xs:element name="NIC_DEFAULT" minOccurs="0" maxOccurs="1"/>
|
142
152
|
<xs:element name="NUMA_NODE" minOccurs="0" maxOccurs="1"/>
|
143
153
|
<xs:element name="OS" minOccurs="0" maxOccurs="1"/>
|
144
|
-
<xs:element name="PCI" minOccurs="0" maxOccurs="
|
154
|
+
<xs:element name="PCI" minOccurs="0" maxOccurs="unbounded"/>
|
145
155
|
<xs:element name="RAW" minOccurs="0" maxOccurs="1"/>
|
146
156
|
<xs:element name="SECURITY_GROUP_RULE" minOccurs="0" maxOccurs="unbounded"/>
|
147
157
|
<xs:element name="SNAPSHOT" minOccurs="0" maxOccurs="unbounded">
|
@@ -164,7 +174,7 @@
|
|
164
174
|
<xs:element name="TOPOLOGY" minOccurs="0" maxOccurs="1"/>
|
165
175
|
<xs:element name="VCPU" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
166
176
|
<xs:element name="VCPU_MAX" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
167
|
-
<xs:element name="VMGROUP" minOccurs="0" maxOccurs="
|
177
|
+
<xs:element name="VMGROUP" minOccurs="0" maxOccurs="1"/>
|
168
178
|
<xs:element name="VMID" type="xs:string"/>
|
169
179
|
<xs:element name="VROUTER_ID" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
170
180
|
<xs:element name="VROUTER_KEEPALIVED_ID" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
@@ -177,9 +187,6 @@
|
|
177
187
|
<xs:complexType>
|
178
188
|
<xs:sequence>
|
179
189
|
<xs:any minOccurs="0" maxOccurs="unbounded" processContents="skip"/>
|
180
|
-
<xs:element name="VCENTER_CCR_REF" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
181
|
-
<xs:element name="VCENTER_DS_REF" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
182
|
-
<xs:element name="VCENTER_INSTANCE_ID" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
183
190
|
<xs:any minOccurs="0" maxOccurs="unbounded" processContents="skip"/>
|
184
191
|
</xs:sequence>
|
185
192
|
</xs:complexType>
|
@@ -200,6 +207,8 @@
|
|
200
207
|
<xs:element name="VM_MAD" type="xs:string"/>
|
201
208
|
<xs:element name="TM_MAD" type="xs:string"/>
|
202
209
|
<xs:element name="DS_ID" type="xs:integer"/>
|
210
|
+
<xs:element name="PLAN_ID" type="xs:integer"/>
|
211
|
+
<xs:element name="ACTION_ID" type="xs:integer"/>
|
203
212
|
<xs:element name="PSTIME" type="xs:integer"/>
|
204
213
|
<xs:element name="PETIME" type="xs:integer"/>
|
205
214
|
<xs:element name="RSTIME" type="xs:integer"/>
|
@@ -30,8 +30,6 @@
|
|
30
30
|
<xs:complexType>
|
31
31
|
<xs:sequence>
|
32
32
|
<xs:any minOccurs="0" maxOccurs="unbounded" processContents="skip"/>
|
33
|
-
<xs:element name="VCENTER_DS_REF" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
34
|
-
<xs:element name="VCENTER_INSTANCE_ID" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
35
33
|
<xs:any minOccurs="0" maxOccurs="unbounded" processContents="skip"/>
|
36
34
|
</xs:sequence>
|
37
35
|
</xs:complexType>
|
@@ -40,9 +38,6 @@
|
|
40
38
|
<xs:complexType>
|
41
39
|
<xs:sequence>
|
42
40
|
<xs:any minOccurs="0" maxOccurs="unbounded" processContents="skip"/>
|
43
|
-
<xs:element name="VCENTER_INSTANCE_ID" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
44
|
-
<xs:element name="VCENTER_NET_REF" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
45
|
-
<xs:element name="VCENTER_PORTGROUP_TYPE" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
46
41
|
</xs:sequence>
|
47
42
|
</xs:complexType>
|
48
43
|
</xs:element>
|
@@ -68,13 +63,6 @@
|
|
68
63
|
<xs:element name="SCHED_REQUIREMENTS" type="xs:string" minOccurs="0"/>
|
69
64
|
<xs:element name="SCHED_DS_REQUIREMENTS" type="xs:string" minOccurs="0"/>
|
70
65
|
<xs:element name="USER_PRIORITY" type="xs:string" minOccurs="0"/>
|
71
|
-
<xs:element name="PUBLIC_CLOUD" minOccurs="0" maxOccurs="unbounded">
|
72
|
-
<xs:complexType>
|
73
|
-
<xs:sequence>
|
74
|
-
<xs:any processContents="skip"/>
|
75
|
-
</xs:sequence>
|
76
|
-
</xs:complexType>
|
77
|
-
</xs:element>
|
78
66
|
<xs:element name="SCHED_ACTION" minOccurs="0" maxOccurs="unbounded">
|
79
67
|
<xs:complexType>
|
80
68
|
<xs:sequence>
|
@@ -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="vm.xsd"/>
|
5
|
+
<xs:element name="VM_POOL">
|
6
|
+
<xs:complexType>
|
7
|
+
<xs:sequence maxOccurs="1" minOccurs="1">
|
8
|
+
<xs:element ref="VM" maxOccurs="unbounded" minOccurs="0"/>
|
9
|
+
</xs:sequence>
|
10
|
+
</xs:complexType>
|
11
|
+
</xs:element>
|
12
|
+
</xs:schema>
|
@@ -39,9 +39,6 @@
|
|
39
39
|
<xs:complexType>
|
40
40
|
<xs:sequence>
|
41
41
|
<xs:any minOccurs="0" maxOccurs="unbounded" processContents="skip"/>
|
42
|
-
<xs:element name="VCENTER_CCR_REF" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
43
|
-
<xs:element name="VCENTER_INSTANCE_ID" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
44
|
-
<xs:element name="VCENTER_TEMPLATE_REF" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
45
42
|
<xs:any minOccurs="0" maxOccurs="unbounded" processContents="skip"/>
|
46
43
|
</xs:sequence>
|
47
44
|
</xs:complexType>
|
data/share/schemas/xsd/vnet.xsd
CHANGED
@@ -104,11 +104,6 @@
|
|
104
104
|
<xs:element name="NETWORK_ADDRESS" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
105
105
|
<xs:element name="NETWORK_MASK" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
106
106
|
<xs:element name="SEARCH_DOMAIN" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
107
|
-
<xs:element name="VCENTER_FROM_WILD" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
108
|
-
<xs:element name="VCENTER_INSTANCE_ID" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
109
|
-
<xs:element name="VCENTER_NET_REF" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
110
|
-
<xs:element name="VCENTER_PORTGROUP_TYPE" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
111
|
-
<xs:element name="VCENTER_TEMPLATE_REF" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
112
107
|
<xs:any minOccurs="0" maxOccurs="unbounded" processContents="skip"/>
|
113
108
|
</xs:sequence>
|
114
109
|
</xs:complexType>
|
@@ -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="vnet.xsd"/>
|
5
|
+
<xs:element name="VNET_POOL">
|
6
|
+
<xs:complexType>
|
7
|
+
<xs:sequence maxOccurs="1" minOccurs="1">
|
8
|
+
<xs:element ref="VNET" maxOccurs="unbounded" minOccurs="0"/>
|
9
|
+
</xs:sequence>
|
10
|
+
</xs:complexType>
|
11
|
+
</xs:element>
|
12
|
+
</xs:schema>
|
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.99.85.pre
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenNebula
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-05-22 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.99.85.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.99.85.pre
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: activesupport
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -60,7 +60,6 @@ executables:
|
|
60
60
|
- oneshowback
|
61
61
|
- onetemplate
|
62
62
|
- oneuser
|
63
|
-
- onevcenter
|
64
63
|
- onevdc
|
65
64
|
- onevm
|
66
65
|
- onevmgroup
|
@@ -92,7 +91,6 @@ files:
|
|
92
91
|
- bin/oneshowback
|
93
92
|
- bin/onetemplate
|
94
93
|
- bin/oneuser
|
95
|
-
- bin/onevcenter
|
96
94
|
- bin/onevdc
|
97
95
|
- bin/onevm
|
98
96
|
- bin/onevmgroup
|
@@ -120,7 +118,6 @@ files:
|
|
120
118
|
- lib/one_helper/onesecgroup_helper.rb
|
121
119
|
- lib/one_helper/onetemplate_helper.rb
|
122
120
|
- lib/one_helper/oneuser_helper.rb
|
123
|
-
- lib/one_helper/onevcenter_helper.rb
|
124
121
|
- lib/one_helper/onevdc_helper.rb
|
125
122
|
- lib/one_helper/onevm_helper.rb
|
126
123
|
- lib/one_helper/onevmgroup_helper.rb
|
@@ -157,7 +154,10 @@ files:
|
|
157
154
|
- share/schemas/xsd/marketplaceapp_pool.xsd
|
158
155
|
- share/schemas/xsd/monitoring_data.xsd
|
159
156
|
- share/schemas/xsd/opennebula_configuration.xsd
|
157
|
+
- share/schemas/xsd/plan.xsd
|
160
158
|
- share/schemas/xsd/raftstatus.xsd
|
159
|
+
- share/schemas/xsd/requirements.xsd
|
160
|
+
- share/schemas/xsd/scheduler_driver_action.xsd
|
161
161
|
- share/schemas/xsd/security_group.xsd
|
162
162
|
- share/schemas/xsd/security_group_pool.xsd
|
163
163
|
- share/schemas/xsd/shared.xsd
|
@@ -170,10 +170,12 @@ files:
|
|
170
170
|
- share/schemas/xsd/vm_group.xsd
|
171
171
|
- share/schemas/xsd/vm_group_pool.xsd
|
172
172
|
- share/schemas/xsd/vm_pool.xsd
|
173
|
+
- share/schemas/xsd/vm_pool_extended.xsd
|
173
174
|
- share/schemas/xsd/vmtemplate.xsd
|
174
175
|
- share/schemas/xsd/vmtemplate_pool.xsd
|
175
176
|
- share/schemas/xsd/vnet.xsd
|
176
177
|
- share/schemas/xsd/vnet_pool.xsd
|
178
|
+
- share/schemas/xsd/vnet_pool_extended.xsd
|
177
179
|
- share/schemas/xsd/vntemplate.xsd
|
178
180
|
- share/schemas/xsd/vntemplate_pool.xsd
|
179
181
|
- share/schemas/xsd/vrouter.xsd
|
@@ -195,9 +197,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
195
197
|
version: '0'
|
196
198
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
197
199
|
requirements:
|
198
|
-
- - "
|
200
|
+
- - ">"
|
199
201
|
- !ruby/object:Gem::Version
|
200
|
-
version:
|
202
|
+
version: 1.3.1
|
201
203
|
requirements: []
|
202
204
|
rubygems_version: 3.3.5
|
203
205
|
signing_key:
|