Sha256: db6db53528eb9e22965855bb305e64c3b08372298e023a841991a36987b56663

Contents?: true

Size: 453 Bytes

Versions: 54

Compression:

Stored size: 453 Bytes

Contents

class Ey::Core::Client
  class Real
    def get_costs(params={})
      url = params.delete("url")
      account_id = params.delete("id")

      request(
        url:   url,
        path:  "/accounts/#{account_id}/costs",
        query: params
      )
    end
  end

  class Mock
    def get_costs(params={})
      extract_url_params!(params)

      response(
        body:   {"costs" => self.data[:costs]},
        status: 200
      )
    end
  end
end

Version data entries

54 entries across 54 versions & 3 rubygems

Version Path
ey-core-3.6.0.autoscaling1 lib/ey-core/requests/get_costs.rb
ey-core-3.6.4 lib/ey-core/requests/get_costs.rb
ey-core-3.6.3 lib/ey-core/requests/get_costs.rb
ey-core-3.6.1 lib/ey-core/requests/get_costs.rb
groove-ey-core-3.6.3 lib/ey-core/requests/get_costs.rb
groove-ey-core-3.6.2 lib/ey-core/requests/get_costs.rb
groove-ey-core-3.6.1 lib/ey-core/requests/get_costs.rb
ey-core-3.5.0 lib/ey-core/requests/get_costs.rb
ey-core-3.4.4 lib/ey-core/requests/get_costs.rb
ey-core-3.4.2 lib/ey-core/requests/get_costs.rb
ey-core-3.4.1 lib/ey-core/requests/get_costs.rb
ey-core-3.4.0 lib/ey-core/requests/get_costs.rb
ey-core-3.3.1 lib/ey-core/requests/get_costs.rb
ey-core-3.3.0 lib/ey-core/requests/get_costs.rb
ey-core-3.2.6 lib/ey-core/requests/get_costs.rb
ey-core-3.2.5 lib/ey-core/requests/get_costs.rb
ey-core-3.2.4 lib/ey-core/requests/get_costs.rb
ey-core-3.2.3 lib/ey-core/requests/get_costs.rb
ey-core-3.2.2 lib/ey-core/requests/get_costs.rb
ey-core-3.2.1 lib/ey-core/requests/get_costs.rb