Sha256: 78623ae235f1f5b817d1dbe44b292a0b8847f758fde8ea9d0fa8178dca133a39
Contents?: true
Size: 1 KB
Versions: 2
Compression:
Stored size: 1 KB
Contents
module Fog module Compute class DigitalOcean class Real def get_droplet_action(droplet_id, action_id) request( :expects => [200], :method => 'GET', :path => "v2/droplets/#{droplet_id}/actions/#{action_id}", ) end end class Mock def get_droplet_action(droplet_id, action) response = Excon::Response.new response.status = 201 response.body = { 'action' => { 'id' => Fog::Mock.random_numbers(1).to_i, 'status' => "in-progress", 'type' => "change_kernel", '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/get_droplet_action.rb |
fog-digitalocean-0.1.0 | lib/fog/digitalocean/requests/compute/get_droplet_action.rb |