Class: OpsviewRest::MonitoringServer
- Inherits:
-
Object
- Object
- OpsviewRest::MonitoringServer
- Includes:
- Mixin
- Defined in:
- lib/opsview_rest/monitoringserver.rb
Instance Attribute Summary collapse
-
#opsview ⇒ Object
Returns the value of attribute opsview.
-
#options ⇒ Object
Returns the value of attribute options.
-
#resource_type ⇒ Object
Returns the value of attribute resource_type.
Instance Method Summary collapse
-
#initialize(opsview, options = {}) ⇒ MonitoringServer
constructor
A new instance of MonitoringServer.
Methods included from Mixin
#resource_path, #save, #to_json
Constructor Details
#initialize(opsview, options = {}) ⇒ MonitoringServer
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/opsview_rest/monitoringserver.rb', line 9 def initialize(opsview, = {}) = { name: 'Slave', roles: [], activated: true, monitors: [], nodes: [], save: true, replace: false }.update @opsview = opsview @resource_type = [:type] @option[:roles] = @option[:roles].map { |x| { 'name' => x } } @option[:monitors] = @option[:monitors].map { |x| { 'name' => x } } @option[:nodes] = @option[:nodes].map { |x| { 'host' => { 'name' => x } } } [:activated] = ([:activated] ? 1 : 0) save([:replace]) if [:save] end |
Instance Attribute Details
#opsview ⇒ Object
Returns the value of attribute opsview.
7 8 9 |
# File 'lib/opsview_rest/monitoringserver.rb', line 7 def opsview @opsview end |
#options ⇒ Object
Returns the value of attribute options.
7 8 9 |
# File 'lib/opsview_rest/monitoringserver.rb', line 7 def end |
#resource_type ⇒ Object
Returns the value of attribute resource_type.
7 8 9 |
# File 'lib/opsview_rest/monitoringserver.rb', line 7 def resource_type @resource_type end |