Sha256: 714d30ece3f3f2d6188d847a82992a0260b7615b431f708460c39e59ca54800c

Contents?: true

Size: 745 Bytes

Versions: 86

Compression:

Stored size: 745 Bytes

Contents

module Fog
  module Compute
    class Cloudstack
      class Real

        # Lists usage records for accounts.
        #
        # {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/listUsageRecords.html]
        def list_usage_records(options={})
          options.merge!(
            'command' => 'listUsageRecords'
          )
          
          if startdate = options.delete('startdate')
            options.merge!('startdate' => startdate.strftime('%Y-%m-%d'))
          end
          
          if enddate = options.delete('enddate')
            options.merge!('enddate' => enddate.strftime('%Y-%m-%d'))
          end
          
          request(options)
        end

      end
    end
  end
end

Version data entries

86 entries across 86 versions & 16 rubygems

Version Path
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/lib/fog/cloudstack/requests/compute/list_usage_records.rb
fog-1.3.1 lib/fog/cloudstack/requests/compute/list_usage_records.rb
fog-1.3.0 lib/fog/cloudstack/requests/compute/list_usage_records.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/lib/fog/cloudstack/requests/compute/list_usage_records.rb
fog-1.2.0 lib/fog/cloudstack/requests/compute/list_usage_records.rb
ktheory-fog-1.1.2 lib/fog/cloudstack/requests/compute/list_usage_records.rb