Class/Module Index [+]

Quicksearch

Fog::Billing

Public Class Methods

[](provider) click to toggle source
# File lib/fog/billing.rb, line 4
def self.[](provider)
  self.new(:provider => provider)
end
new(attributes) click to toggle source
# File lib/fog/billing.rb, line 8
def self.new(attributes)
  attributes = attributes.dup
  provider = attributes.delete(:provider).to_s.downcase.to_sym
  if provider == :stormondemand
    require 'fog/storm_on_demand/billing'
    Fog::Billing::StormOnDemand.new(attributes)
  else
    raise ArgumentError.new("#{provider} has no billing service")
  end
end
providers() click to toggle source
# File lib/fog/billing.rb, line 19
def self.providers
  Fog.services[:billing]
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.