Sha256: 75d779daa8e542a1a2bdb26a71595432e186afa32c923b1b7e97000381fa00cb

Contents?: true

Size: 661 Bytes

Versions: 4

Compression:

Stored size: 661 Bytes

Contents

module Fog
  module Network
    class HuaweiCloud
      class Real
        def update_quota(tenant_id, options = {})
          request(
            :body    => Fog::JSON.encode('quota' => options),
            :expects => 200,
            :method  => 'PUT',
            :path    => "/quotas/#{tenant_id}"
          )
        end
      end

      class Mock
        def update_quota(_tenant_id, options = {})
          data[:quota_updated] = data[:quota].merge options

          response = Excon::Response.new
          response.status = 200
          response.body = {'quota' => data[:quota_updated]}
          response
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fog-huaweicloud-0.0.3 lib/fog/network/huaweicloud/requests/update_quota.rb
fog-huaweicloud-0.0.2 lib/fog/network/huaweicloud/requests/update_quota.rb
fog-huaweicloud-0.1.3 lib/fog/network/huaweicloud/requests/update_quota.rb
fog-huaweicloud-0.1.2 lib/fog/network/huaweicloud/requests/update_quota.rb