Module: Fog::Monitoring
- Extended by:
- ServicesMixin
- Defined in:
- lib/fog/monitoring.rb
Class Method Summary collapse
Methods included from ServicesMixin
Class Method Details
.new(orig_attributes) ⇒ Object
5 6 7 8 9 10 11 12 13 14 |
# File 'lib/fog/monitoring.rb', line 5 def self.new(orig_attributes) attributes = orig_attributes.dup provider = attributes.delete(:provider).to_s.downcase.to_sym if provider == :stormondemand require "fog/monitoring/storm_on_demand" Fog::Monitoring::StormOnDemand.new(attributes) else super(orig_attributes) end end |