Sha256: f31be97632a86dc4874a3bcee7264cddb85d7369fb4ce88bf1b900f53eba48e0
Contents?: true
Size: 412 Bytes
Versions: 26
Compression:
Stored size: 412 Bytes
Contents
module Fog module Monitoring extend Fog::ServicesMixin 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 end end
Version data entries
26 entries across 23 versions & 3 rubygems