class Hawkular::Inventory::Operation
Attributes
name[R]
@return [String] Name of the operation
params[R]
Public Class Methods
new(op_hash)
click to toggle source
# File lib/hawkular/inventory/entities.rb 42 def initialize(op_hash) 43 @name = op_hash['name'] 44 @params = op_hash.key?('parameters') ? op_hash['parameters'] : {} 45 end