Sha256: 7b9a798ebd5c2c72dd21d9f983c4fed284f4ffe4694ff915ff8447aa102fc86d
Contents?: true
Size: 1.17 KB
Versions: 2
Compression:
Stored size: 1.17 KB
Contents
module Fog module Compute class DigitalOcean class Real def rename(id, name) body = { :type => "rename", :name => name } 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 rename(id, name) response = Excon::Response.new response.status = 201 response.body = { 'action' => { 'id' => Fog::Mock.random_numbers(1).to_i, 'status' => "in-progress", 'type' => "rename", '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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fog-digitalocean-0.2.0 | lib/fog/digitalocean/requests/compute/rename.rb |
fog-digitalocean-0.1.0 | lib/fog/digitalocean/requests/compute/rename.rb |