Class: Barge::Resource::Droplet

Inherits:
Object
  • Object
show all
Includes:
Base
Defined in:
lib/barge/resource/droplet.rb

Constant Summary

Constants included from Base

Base::PER_PAGE

Instance Attribute Summary

Attributes included from Base

#faraday

Instance Method Summary collapse

Methods included from Base

#initialize

Instance Method Details

#actions(droplet_id) ⇒ Object



94
95
96
# File 'lib/barge/resource/droplet.rb', line 94

def actions(droplet_id)
  get("droplets/#{droplet_id}/actions")
end

#all(options = {}) ⇒ Object



10
11
12
# File 'lib/barge/resource/droplet.rb', line 10

def all(options = {})
  get('droplets', options)
end

#backups(droplet_id) ⇒ Object



18
19
20
# File 'lib/barge/resource/droplet.rb', line 18

def backups(droplet_id)
  get("droplets/#{droplet_id}/backups")
end

#change_kernel(droplet_id, options) ⇒ Object



78
79
80
# File 'lib/barge/resource/droplet.rb', line 78

def change_kernel(droplet_id, options)
  action(droplet_id, __method__, options)
end

#create(options) ⇒ Object



6
7
8
# File 'lib/barge/resource/droplet.rb', line 6

def create(options)
  post('droplets', options.to_json)
end

#destroy(droplet_id) ⇒ Object



30
31
32
# File 'lib/barge/resource/droplet.rb', line 30

def destroy(droplet_id)
  delete("droplets/#{droplet_id}")
end

#disable_backups(droplet_id) ⇒ Object



86
87
88
# File 'lib/barge/resource/droplet.rb', line 86

def disable_backups(droplet_id)
  action(droplet_id, __method__)
end

#enable_ipv6(droplet_id) ⇒ Object



82
83
84
# File 'lib/barge/resource/droplet.rb', line 82

def enable_ipv6(droplet_id)
  action(droplet_id, __method__)
end

#enable_private_networking(droplet_id) ⇒ Object



90
91
92
# File 'lib/barge/resource/droplet.rb', line 90

def enable_private_networking(droplet_id)
  action(droplet_id, __method__)
end

#kernels(droplet_id) ⇒ Object



22
23
24
# File 'lib/barge/resource/droplet.rb', line 22

def kernels(droplet_id)
  get("droplets/#{droplet_id}/kernels")
end

#password_reset(droplet_id) ⇒ Object



74
75
76
# File 'lib/barge/resource/droplet.rb', line 74

def password_reset(droplet_id)
  action(droplet_id, __method__)
end

#power_cycle(droplet_id) ⇒ Object



54
55
56
# File 'lib/barge/resource/droplet.rb', line 54

def power_cycle(droplet_id)
  action(droplet_id, __method__)
end

#power_off(droplet_id) ⇒ Object



50
51
52
# File 'lib/barge/resource/droplet.rb', line 50

def power_off(droplet_id)
  action(droplet_id, __method__)
end

#power_on(droplet_id) ⇒ Object



58
59
60
# File 'lib/barge/resource/droplet.rb', line 58

def power_on(droplet_id)
  action(droplet_id, __method__)
end

#reboot(droplet_id) ⇒ Object



42
43
44
# File 'lib/barge/resource/droplet.rb', line 42

def reboot(droplet_id)
  action(droplet_id, __method__)
end

#rebuild(droplet_id, options) ⇒ Object



66
67
68
# File 'lib/barge/resource/droplet.rb', line 66

def rebuild(droplet_id, options)
  action(droplet_id, __method__, options)
end

#rename(droplet_id, options) ⇒ Object



34
35
36
# File 'lib/barge/resource/droplet.rb', line 34

def rename(droplet_id, options)
  action(droplet_id, __method__, options)
end

#resize(droplet_id, options) ⇒ Object



62
63
64
# File 'lib/barge/resource/droplet.rb', line 62

def resize(droplet_id, options)
  action(droplet_id, __method__, options)
end

#restore(droplet_id, options) ⇒ Object



70
71
72
# File 'lib/barge/resource/droplet.rb', line 70

def restore(droplet_id, options)
  action(droplet_id, __method__, options)
end

#show(droplet_id) ⇒ Object



14
15
16
# File 'lib/barge/resource/droplet.rb', line 14

def show(droplet_id)
  get("droplets/#{droplet_id}")
end

#show_action(droplet_id, action_id) ⇒ Object



98
99
100
# File 'lib/barge/resource/droplet.rb', line 98

def show_action(droplet_id, action_id)
  get("droplets/#{droplet_id}/actions/#{action_id}")
end

#shutdown(droplet_id) ⇒ Object



46
47
48
# File 'lib/barge/resource/droplet.rb', line 46

def shutdown(droplet_id)
  action(droplet_id, __method__)
end

#snapshot(droplet_id, options) ⇒ Object



38
39
40
# File 'lib/barge/resource/droplet.rb', line 38

def snapshot(droplet_id, options)
  action(droplet_id, __method__, options)
end

#snapshots(droplet_id) ⇒ Object



26
27
28
# File 'lib/barge/resource/droplet.rb', line 26

def snapshots(droplet_id)
  get("droplets/#{droplet_id}/snapshots")
end