opennebula 5.12.7 → 5.12.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a8e0231d79f81923f6d323a5d146141c7a72bced
4
- data.tar.gz: 0f51f821f807294afba62ad523d71be6d37812fd
3
+ metadata.gz: a3004d2bbf363d338d695028b9220a45ed515363
4
+ data.tar.gz: 8cfd31d45570457bc71d19a22a1d0b5c8901fee2
5
5
  SHA512:
6
- metadata.gz: 215a242b1ff60ee0803261f85703124cf99d69933e5903c941a3b8290557586f9033a596649d352b140ea6300c9e48a3a33e81916cd71c780c131fd2b681b025
7
- data.tar.gz: d188e1691553a23fe7e99cbfa2c643afeaea4a49883e2406578ac508bde8b2cf7acb40e75e2d0d5d3c222b3a822cc4b5c1bf6c5cee838893be3465d7460f793f
6
+ metadata.gz: 2bdefdf0dae55b42305418c2dec370028ee53364016e176b0a52ae972ca198cc637f622acc3d76db7cff6c251853d2745977da48320765ed09bc109ebc9a7e55
7
+ data.tar.gz: 700502a89a97d53a8c0c1df5ee5fa2be3b8387b39411e0a4844104063bf7d689f3febb6d16407e42708afa2a80c8295f6557b1acc08993e3a2fd479bbe60615d
@@ -51,7 +51,7 @@ end
51
51
  module CloudClient
52
52
 
53
53
  # OpenNebula version
54
- VERSION = '5.12.7'
54
+ VERSION = '5.12.8'
55
55
 
56
56
  # #########################################################################
57
57
  # Default location for the authentication file
data/lib/opennebula.rb CHANGED
@@ -74,5 +74,5 @@ require 'opennebula/hook_log'
74
74
  module OpenNebula
75
75
 
76
76
  # OpenNebula version
77
- VERSION = '5.12.7'
77
+ VERSION = '5.12.8'
78
78
  end
@@ -127,6 +127,19 @@ module OpenNebula
127
127
  return hash
128
128
  end
129
129
 
130
+ def monitoring_last(xml_method, *args)
131
+ rc = @client.call(xml_method, *args)
132
+
133
+ if OpenNebula.is_error?(rc)
134
+ return rc
135
+ end
136
+
137
+ xmldoc = XMLElement.new
138
+ xmldoc.initialize_xml(rc, 'MONITORING_DATA')
139
+
140
+ xmldoc.to_hash
141
+ end
142
+
130
143
  private
131
144
  # Calls to the corresponding info method to retreive the pool
132
145
  # representation in XML format
@@ -202,6 +202,10 @@ module OpenNebula
202
202
  return super(VM_POOL_METHODS[:monitoring], xpaths, filter_flag)
203
203
  end
204
204
 
205
+ def monitoring_last(filter_flag=INFO_ALL)
206
+ return super(VM_POOL_METHODS[:monitoring], filter_flag, 0)
207
+ end
208
+
205
209
  # Retrieves the monitoring data for all the VMs in the pool, in XML
206
210
  #
207
211
  # @param [Integer] filter_flag Optional filter flag to retrieve all or
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opennebula
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.12.7
4
+ version: 5.12.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenNebula
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-12-16 00:00:00.000000000 Z
11
+ date: 2021-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -65,61 +65,61 @@ files:
65
65
  - lib/CommandManager.rb
66
66
  - lib/ActionManager.rb
67
67
  - lib/DriverExecHelper.rb
68
- - lib/opennebula/acl.rb
69
- - lib/opennebula/acl_pool.rb
70
- - lib/opennebula/client.rb
71
- - lib/opennebula/cluster.rb
72
- - lib/opennebula/cluster_pool.rb
73
- - lib/opennebula/datastore.rb
74
- - lib/opennebula/datastore_pool.rb
75
- - lib/opennebula/document_pool.rb
76
- - lib/opennebula/document_pool_json.rb
77
- - lib/opennebula/error.rb
78
- - lib/opennebula/group.rb
79
- - lib/opennebula/group_pool.rb
80
- - lib/opennebula/hook_log.rb
81
- - lib/opennebula/hook_pool.rb
82
- - lib/opennebula/host.rb
83
- - lib/opennebula/host_pool.rb
84
- - lib/opennebula/image_pool.rb
85
- - lib/opennebula/marketplace.rb
86
- - lib/opennebula/marketplace_pool.rb
87
- - lib/opennebula/marketplaceapp_pool.rb
88
- - lib/opennebula/pool_element.rb
89
- - lib/opennebula/security_group.rb
90
68
  - lib/opennebula/security_group_pool.rb
91
69
  - lib/opennebula/system.rb
70
+ - lib/opennebula/template.rb
92
71
  - lib/opennebula/template_pool.rb
72
+ - lib/opennebula/user.rb
93
73
  - lib/opennebula/user_pool.rb
94
74
  - lib/opennebula/utils.rb
95
75
  - lib/opennebula/vdc.rb
96
76
  - lib/opennebula/vdc_pool.rb
77
+ - lib/opennebula/virtual_machine.rb
97
78
  - lib/opennebula/virtual_machine_pool.rb
79
+ - lib/opennebula/virtual_network.rb
98
80
  - lib/opennebula/virtual_network_pool.rb
81
+ - lib/opennebula/virtual_router.rb
99
82
  - lib/opennebula/virtual_router_pool.rb
83
+ - lib/opennebula/vm_group.rb
100
84
  - lib/opennebula/vm_group_pool.rb
85
+ - lib/opennebula/vntemplate.rb
101
86
  - lib/opennebula/vntemplate_pool.rb
102
87
  - lib/opennebula/xml_element.rb
103
88
  - lib/opennebula/xml_pool.rb
104
89
  - lib/opennebula/xml_utils.rb
105
90
  - lib/opennebula/zone.rb
106
91
  - lib/opennebula/zone_pool.rb
92
+ - lib/opennebula/acl.rb
93
+ - lib/opennebula/acl_pool.rb
94
+ - lib/opennebula/client.rb
95
+ - lib/opennebula/cluster.rb
96
+ - lib/opennebula/cluster_pool.rb
97
+ - lib/opennebula/datastore.rb
98
+ - lib/opennebula/datastore_pool.rb
107
99
  - lib/opennebula/document.rb
108
100
  - lib/opennebula/document_json.rb
101
+ - lib/opennebula/document_pool.rb
102
+ - lib/opennebula/document_pool_json.rb
103
+ - lib/opennebula/error.rb
104
+ - lib/opennebula/group.rb
105
+ - lib/opennebula/group_pool.rb
109
106
  - lib/opennebula/hook.rb
107
+ - lib/opennebula/hook_log.rb
108
+ - lib/opennebula/hook_pool.rb
109
+ - lib/opennebula/host.rb
110
+ - lib/opennebula/host_pool.rb
110
111
  - lib/opennebula/image.rb
112
+ - lib/opennebula/image_pool.rb
113
+ - lib/opennebula/marketplace.rb
114
+ - lib/opennebula/marketplace_pool.rb
111
115
  - lib/opennebula/marketplaceapp.rb
116
+ - lib/opennebula/marketplaceapp_pool.rb
112
117
  - lib/opennebula/oneflow_client.rb
113
118
  - lib/opennebula/pool.rb
114
- - lib/opennebula/template.rb
115
- - lib/opennebula/user.rb
116
- - lib/opennebula/virtual_machine.rb
117
- - lib/opennebula/virtual_network.rb
118
- - lib/opennebula/virtual_router.rb
119
- - lib/opennebula/vm_group.rb
120
- - lib/opennebula/vntemplate.rb
121
- - lib/opennebula/ldap_auth.rb
119
+ - lib/opennebula/pool_element.rb
120
+ - lib/opennebula/security_group.rb
122
121
  - lib/opennebula/ldap_auth_spec.rb
122
+ - lib/opennebula/ldap_auth.rb
123
123
  - lib/opennebula/server_cipher_auth.rb
124
124
  - lib/opennebula/server_x509_auth.rb
125
125
  - lib/opennebula/ssh_auth.rb