Sha256: 4aee0f16cf1f0d4f59a334eb4c64ae84bf40b746f7c60885f4ac6c17d0a9af20
Contents?: true
Size: 1.27 KB
Versions: 4
Compression:
Stored size: 1.27 KB
Contents
module Fog module Compute class DigitalOceanV2 class Real def resize(id, resize_disk, size) body = { :type => "resize", :disk => resize_disk, :size => size } encoded_body = Fog::JSON.encode(body) request( :expects => [201], :headers => { 'Content-Type' => "application/json; charset=UTF-8", }, :method => 'POST', :path => "v2/droplets/#{id}/actions", :body => encoded_body, ) end end class Mock def resize(id, resize_disk, size) response = Excon::Response.new response.status = 201 response.body = { 'action' => { 'id' => Fog::Mock.random_numbers(1).to_i, 'status' => "in-progress", 'type' => "resize", 'started_at' => "2014-11-14T16:31:00Z", 'completed_at' => null, 'resource_id' => id, 'resource_type' => "droplet", 'region' => "nyc3", 'region_slug' => "nyc3" } } response end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems