fog-profitbricks 0.0.5 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (194) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/README.md +1465 -4
  4. data/Rakefile +3 -0
  5. data/examples/pb_demo.rb +83 -35
  6. data/fog-profitbricks.gemspec +10 -10
  7. data/gemfiles/Gemfile.1.8.7 +0 -1
  8. data/lib/fog/profitbricks.rb +4 -23
  9. data/lib/fog/profitbricks/compute.rb +1082 -1
  10. data/lib/fog/profitbricks/helpers/compute/data_helper.rb +12 -0
  11. data/lib/fog/profitbricks/models/base.rb +37 -0
  12. data/lib/fog/profitbricks/models/compute/datacenter.rb +64 -0
  13. data/lib/fog/{compute/profit_bricks/models → profitbricks/models/compute}/datacenters.rb +9 -4
  14. data/lib/fog/profitbricks/models/compute/firewall_rule.rb +101 -0
  15. data/lib/fog/profitbricks/models/compute/firewall_rules.rb +40 -0
  16. data/lib/fog/{compute/profit_bricks/models → profitbricks/models/compute}/flavor.rb +0 -0
  17. data/lib/fog/{compute/profit_bricks/models → profitbricks/models/compute}/flavors.rb +0 -0
  18. data/lib/fog/profitbricks/models/compute/image.rb +72 -0
  19. data/lib/fog/profitbricks/models/compute/images.rb +28 -0
  20. data/lib/fog/profitbricks/models/compute/ip_block.rb +58 -0
  21. data/lib/fog/profitbricks/models/compute/ip_blocks.rb +30 -0
  22. data/lib/fog/profitbricks/models/compute/lan.rb +89 -0
  23. data/lib/fog/profitbricks/models/compute/lans.rb +36 -0
  24. data/lib/fog/profitbricks/models/compute/load_balancer.rb +126 -0
  25. data/lib/fog/profitbricks/models/compute/load_balancers.rb +34 -0
  26. data/lib/fog/profitbricks/models/compute/location.rb +18 -0
  27. data/lib/fog/profitbricks/models/compute/locations.rb +28 -0
  28. data/lib/fog/profitbricks/models/compute/nic.rb +111 -0
  29. data/lib/fog/profitbricks/models/compute/nics.rb +38 -0
  30. data/lib/fog/{compute/profit_bricks/models → profitbricks/models/compute}/region.rb +0 -0
  31. data/lib/fog/{compute/profit_bricks/models → profitbricks/models/compute}/regions.rb +0 -0
  32. data/lib/fog/profitbricks/models/compute/request.rb +24 -0
  33. data/lib/fog/profitbricks/models/compute/requests.rb +37 -0
  34. data/lib/fog/profitbricks/models/compute/server.rb +263 -0
  35. data/lib/fog/profitbricks/models/compute/servers.rb +32 -0
  36. data/lib/fog/profitbricks/models/compute/snapshot.rb +81 -0
  37. data/lib/fog/profitbricks/models/compute/snapshots.rb +28 -0
  38. data/lib/fog/profitbricks/models/compute/volume.rb +123 -0
  39. data/lib/fog/profitbricks/models/compute/volumes.rb +33 -0
  40. data/lib/fog/profitbricks/requests/compute/associate_nic_to_load_balancer.rb +104 -0
  41. data/lib/fog/profitbricks/requests/compute/attach_cdrom.rb +88 -0
  42. data/lib/fog/profitbricks/requests/compute/attach_volume.rb +89 -0
  43. data/lib/fog/profitbricks/requests/compute/create_datacenter.rb +89 -0
  44. data/lib/fog/profitbricks/requests/compute/create_firewall_rule.rb +103 -0
  45. data/lib/fog/{compute/profit_bricks/requests → profitbricks/requests/compute}/create_flavor.rb +0 -0
  46. data/lib/fog/profitbricks/requests/compute/create_ip_block.rb +81 -0
  47. data/lib/fog/profitbricks/requests/compute/create_lan.rb +160 -0
  48. data/lib/fog/profitbricks/requests/compute/create_load_balancer.rb +87 -0
  49. data/lib/fog/profitbricks/requests/compute/create_nic.rb +124 -0
  50. data/lib/fog/profitbricks/requests/compute/create_server.rb +257 -0
  51. data/lib/fog/profitbricks/requests/compute/create_volume.rb +133 -0
  52. data/lib/fog/profitbricks/requests/compute/create_volume_snapshot.rb +113 -0
  53. data/lib/fog/profitbricks/requests/compute/delete_datacenter.rb +43 -0
  54. data/lib/fog/profitbricks/requests/compute/delete_firewall_rule.rb +47 -0
  55. data/lib/fog/profitbricks/requests/compute/delete_image.rb +43 -0
  56. data/lib/fog/profitbricks/requests/compute/delete_ip_block.rb +43 -0
  57. data/lib/fog/profitbricks/requests/compute/delete_lan.rb +44 -0
  58. data/lib/fog/profitbricks/requests/compute/delete_load_balancer.rb +44 -0
  59. data/lib/fog/profitbricks/requests/compute/delete_nic.rb +46 -0
  60. data/lib/fog/profitbricks/requests/compute/delete_server.rb +48 -0
  61. data/lib/fog/profitbricks/requests/compute/delete_snapshot.rb +43 -0
  62. data/lib/fog/profitbricks/requests/compute/delete_volume.rb +44 -0
  63. data/lib/fog/profitbricks/requests/compute/detach_cdrom.rb +52 -0
  64. data/lib/fog/profitbricks/requests/compute/detach_volume.rb +53 -0
  65. data/lib/fog/profitbricks/requests/compute/get_all_datacenters.rb +59 -0
  66. data/lib/fog/profitbricks/requests/compute/get_all_firewall_rules.rb +76 -0
  67. data/lib/fog/{compute/profit_bricks/requests → profitbricks/requests/compute}/get_all_flavors.rb +0 -0
  68. data/lib/fog/profitbricks/requests/compute/get_all_images.rb +66 -0
  69. data/lib/fog/profitbricks/requests/compute/get_all_ip_blocks.rb +56 -0
  70. data/lib/fog/profitbricks/requests/compute/get_all_lans.rb +120 -0
  71. data/lib/fog/profitbricks/requests/compute/get_all_load_balanced_nics.rb +100 -0
  72. data/lib/fog/profitbricks/requests/compute/get_all_load_balancers.rb +117 -0
  73. data/lib/fog/profitbricks/requests/compute/get_all_locations.rb +44 -0
  74. data/lib/fog/profitbricks/requests/compute/get_all_nic.rb +102 -0
  75. data/lib/fog/profitbricks/requests/compute/get_all_requests.rb +43 -0
  76. data/lib/fog/profitbricks/requests/compute/get_all_servers.rb +134 -0
  77. data/lib/fog/profitbricks/requests/compute/get_all_snapshots.rb +66 -0
  78. data/lib/fog/profitbricks/requests/compute/get_all_volumes.rb +78 -0
  79. data/lib/fog/profitbricks/requests/compute/get_attached_cdrom.rb +78 -0
  80. data/lib/fog/profitbricks/requests/compute/get_attached_volume.rb +79 -0
  81. data/lib/fog/profitbricks/requests/compute/get_datacenter.rb +65 -0
  82. data/lib/fog/profitbricks/requests/compute/get_firewall_rule.rb +71 -0
  83. data/lib/fog/{compute/profit_bricks/requests → profitbricks/requests/compute}/get_flavor.rb +0 -0
  84. data/lib/fog/profitbricks/requests/compute/get_image.rb +71 -0
  85. data/lib/fog/profitbricks/requests/compute/get_ip_block.rb +58 -0
  86. data/lib/fog/profitbricks/requests/compute/get_lan.rb +120 -0
  87. data/lib/fog/profitbricks/requests/compute/get_load_balanced_nic.rb +99 -0
  88. data/lib/fog/profitbricks/requests/compute/get_load_balancer.rb +116 -0
  89. data/lib/fog/profitbricks/requests/compute/get_location.rb +49 -0
  90. data/lib/fog/profitbricks/requests/compute/get_nic.rb +98 -0
  91. data/lib/fog/profitbricks/requests/compute/get_request.rb +61 -0
  92. data/lib/fog/profitbricks/requests/compute/get_request_status.rb +50 -0
  93. data/lib/fog/profitbricks/requests/compute/get_server.rb +133 -0
  94. data/lib/fog/profitbricks/requests/compute/get_snapshot.rb +70 -0
  95. data/lib/fog/profitbricks/requests/compute/get_volume.rb +73 -0
  96. data/lib/fog/profitbricks/requests/compute/list_attached_cdroms.rb +74 -0
  97. data/lib/fog/profitbricks/requests/compute/list_attached_volumes.rb +75 -0
  98. data/lib/fog/profitbricks/requests/compute/reboot_server.rb +47 -0
  99. data/lib/fog/profitbricks/requests/compute/remove_nic_association.rb +44 -0
  100. data/lib/fog/profitbricks/requests/compute/restore_volume_snapshot.rb +61 -0
  101. data/lib/fog/profitbricks/requests/compute/start_server.rb +49 -0
  102. data/lib/fog/profitbricks/requests/compute/stop_server.rb +50 -0
  103. data/lib/fog/profitbricks/requests/compute/update_datacenter.rb +73 -0
  104. data/lib/fog/profitbricks/requests/compute/update_firewall_rule.rb +87 -0
  105. data/lib/fog/profitbricks/requests/compute/update_image.rb +90 -0
  106. data/lib/fog/profitbricks/requests/compute/update_lan.rb +126 -0
  107. data/lib/fog/profitbricks/requests/compute/update_load_balancer.rb +70 -0
  108. data/lib/fog/profitbricks/requests/compute/update_nic.rb +107 -0
  109. data/lib/fog/profitbricks/requests/compute/update_server.rb +147 -0
  110. data/lib/fog/profitbricks/requests/compute/update_snapshot.rb +90 -0
  111. data/lib/fog/profitbricks/requests/compute/update_volume.rb +82 -0
  112. data/lib/fog/profitbricks/version.rb +1 -1
  113. data/tests/profitbricks/requests/compute/composite_create_tests.rb +241 -0
  114. data/tests/profitbricks/requests/compute/location_tests.rb +24 -12
  115. data/tests/profitbricks/requests/compute/nic_tests.rb +290 -0
  116. data/tests/profitbricks/requests/compute/request_tests.rb +52 -0
  117. data/tests/profitbricks/requests/compute/server_tests.rb +398 -175
  118. metadata +140 -133
  119. data/lib/fog/compute/profit_bricks.rb +0 -217
  120. data/lib/fog/compute/profit_bricks/models/datacenter.rb +0 -60
  121. data/lib/fog/compute/profit_bricks/models/image.rb +0 -27
  122. data/lib/fog/compute/profit_bricks/models/images.rb +0 -22
  123. data/lib/fog/compute/profit_bricks/models/interface.rb +0 -61
  124. data/lib/fog/compute/profit_bricks/models/interfaces.rb +0 -23
  125. data/lib/fog/compute/profit_bricks/models/server.rb +0 -104
  126. data/lib/fog/compute/profit_bricks/models/servers.rb +0 -22
  127. data/lib/fog/compute/profit_bricks/models/volume.rb +0 -71
  128. data/lib/fog/compute/profit_bricks/models/volumes.rb +0 -23
  129. data/lib/fog/compute/profit_bricks/requests/clear_data_center.rb +0 -51
  130. data/lib/fog/compute/profit_bricks/requests/connect_storage_to_server.rb +0 -83
  131. data/lib/fog/compute/profit_bricks/requests/create_data_center.rb +0 -62
  132. data/lib/fog/compute/profit_bricks/requests/create_nic.rb +0 -79
  133. data/lib/fog/compute/profit_bricks/requests/create_server.rb +0 -105
  134. data/lib/fog/compute/profit_bricks/requests/create_storage.rb +0 -96
  135. data/lib/fog/compute/profit_bricks/requests/delete_data_center.rb +0 -60
  136. data/lib/fog/compute/profit_bricks/requests/delete_nic.rb +0 -64
  137. data/lib/fog/compute/profit_bricks/requests/delete_server.rb +0 -64
  138. data/lib/fog/compute/profit_bricks/requests/delete_storage.rb +0 -64
  139. data/lib/fog/compute/profit_bricks/requests/disconnect_storage_from_server.rb +0 -76
  140. data/lib/fog/compute/profit_bricks/requests/get_all_data_centers.rb +0 -31
  141. data/lib/fog/compute/profit_bricks/requests/get_all_images.rb +0 -65
  142. data/lib/fog/compute/profit_bricks/requests/get_all_locations.rb +0 -44
  143. data/lib/fog/compute/profit_bricks/requests/get_all_nic.rb +0 -53
  144. data/lib/fog/compute/profit_bricks/requests/get_all_servers.rb +0 -57
  145. data/lib/fog/compute/profit_bricks/requests/get_all_storages.rb +0 -56
  146. data/lib/fog/compute/profit_bricks/requests/get_data_center.rb +0 -38
  147. data/lib/fog/compute/profit_bricks/requests/get_data_center_state.rb +0 -42
  148. data/lib/fog/compute/profit_bricks/requests/get_image.rb +0 -69
  149. data/lib/fog/compute/profit_bricks/requests/get_location.rb +0 -48
  150. data/lib/fog/compute/profit_bricks/requests/get_nic.rb +0 -63
  151. data/lib/fog/compute/profit_bricks/requests/get_server.rb +0 -98
  152. data/lib/fog/compute/profit_bricks/requests/get_storage.rb +0 -63
  153. data/lib/fog/compute/profit_bricks/requests/reset_server.rb +0 -49
  154. data/lib/fog/compute/profit_bricks/requests/set_internet_access.rb +0 -59
  155. data/lib/fog/compute/profit_bricks/requests/start_server.rb +0 -58
  156. data/lib/fog/compute/profit_bricks/requests/stop_server.rb +0 -58
  157. data/lib/fog/compute/profit_bricks/requests/update_data_center.rb +0 -54
  158. data/lib/fog/compute/profit_bricks/requests/update_nic.rb +0 -74
  159. data/lib/fog/compute/profit_bricks/requests/update_server.rb +0 -79
  160. data/lib/fog/compute/profit_bricks/requests/update_storage.rb +0 -73
  161. data/lib/fog/models/profit_bricks/base.rb +0 -11
  162. data/lib/fog/parsers/compute.rb +0 -37
  163. data/lib/fog/parsers/compute/profit_bricks/base.rb +0 -51
  164. data/lib/fog/parsers/compute/profit_bricks/clear_data_center.rb +0 -22
  165. data/lib/fog/parsers/compute/profit_bricks/connect_storage_to_server.rb +0 -22
  166. data/lib/fog/parsers/compute/profit_bricks/create_data_center.rb +0 -22
  167. data/lib/fog/parsers/compute/profit_bricks/create_nic.rb +0 -22
  168. data/lib/fog/parsers/compute/profit_bricks/create_server.rb +0 -22
  169. data/lib/fog/parsers/compute/profit_bricks/create_storage.rb +0 -22
  170. data/lib/fog/parsers/compute/profit_bricks/delete_data_center.rb +0 -20
  171. data/lib/fog/parsers/compute/profit_bricks/delete_nic.rb +0 -22
  172. data/lib/fog/parsers/compute/profit_bricks/delete_server.rb +0 -22
  173. data/lib/fog/parsers/compute/profit_bricks/delete_storage.rb +0 -22
  174. data/lib/fog/parsers/compute/profit_bricks/disconnect_storage_from_server.rb +0 -22
  175. data/lib/fog/parsers/compute/profit_bricks/get_all_data_centers.rb +0 -26
  176. data/lib/fog/parsers/compute/profit_bricks/get_all_images.rb +0 -30
  177. data/lib/fog/parsers/compute/profit_bricks/get_all_nic.rb +0 -30
  178. data/lib/fog/parsers/compute/profit_bricks/get_all_servers.rb +0 -57
  179. data/lib/fog/parsers/compute/profit_bricks/get_all_storages.rb +0 -33
  180. data/lib/fog/parsers/compute/profit_bricks/get_data_center.rb +0 -23
  181. data/lib/fog/parsers/compute/profit_bricks/get_data_center_state.rb +0 -20
  182. data/lib/fog/parsers/compute/profit_bricks/get_image.rb +0 -26
  183. data/lib/fog/parsers/compute/profit_bricks/get_nic.rb +0 -27
  184. data/lib/fog/parsers/compute/profit_bricks/get_server.rb +0 -57
  185. data/lib/fog/parsers/compute/profit_bricks/get_storage.rb +0 -30
  186. data/lib/fog/parsers/compute/profit_bricks/reset_server.rb +0 -20
  187. data/lib/fog/parsers/compute/profit_bricks/set_internet_access.rb +0 -22
  188. data/lib/fog/parsers/compute/profit_bricks/update_data_center.rb +0 -22
  189. data/lib/fog/parsers/compute/profit_bricks/update_nic.rb +0 -22
  190. data/lib/fog/parsers/compute/profit_bricks/update_server.rb +0 -22
  191. data/lib/fog/parsers/compute/profit_bricks/update_storage.rb +0 -22
  192. data/lib/fog/profitbricks/storage.rb +0 -1
  193. data/tests/profitbricks/requests/compute/image_tests.rb +0 -50
  194. data/tests/profitbricks/requests/compute/interface_tests.rb +0 -101
@@ -0,0 +1,28 @@
1
+ require File.expand_path('../snapshot', __FILE__)
2
+ require File.expand_path('../../helpers/compute/data_helper', __dir__)
3
+
4
+ module Fog
5
+ module Compute
6
+ class ProfitBricks
7
+ class Snapshots < Fog::Collection
8
+ include Fog::Helpers::ProfitBricks::DataHelper
9
+ model Fog::Compute::ProfitBricks::Snapshot
10
+
11
+ def all
12
+ result = service.get_all_snapshots
13
+
14
+ load(result.body['items'].each {|snapshot| flatten(snapshot)})
15
+ end
16
+
17
+ def get(id)
18
+ snapshot = service.get_snapshot(id).body
19
+
20
+ Excon::Errors
21
+ new(flatten(snapshot))
22
+ rescue Excon::Errors::NotFound
23
+ nil
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,123 @@
1
+ require File.expand_path('../../helpers/compute/data_helper', __dir__)
2
+
3
+ module Fog
4
+ module Compute
5
+ class ProfitBricks
6
+ class Volume < Fog::Models::ProfitBricks::Base
7
+ include Fog::Helpers::ProfitBricks::DataHelper
8
+
9
+ identity :id
10
+
11
+ # properties
12
+ attribute :name
13
+ attribute :size
14
+ attribute :image
15
+ attribute :bus
16
+ attribute :type
17
+ attribute :image_password, :aliases => 'imagePassword'
18
+ attribute :ssh_keys, :aliases => 'sshKeys'
19
+ attribute :licence_type, :aliases => 'licenceType'
20
+ attribute :cpu_hot_plug, :aliases => 'cpuHotPlug'
21
+ attribute :cpu_hot_unplug, :aliases => 'cpuHotUnplug'
22
+ attribute :ram_hot_plug, :aliases => 'ramHotPlug'
23
+ attribute :ram_hot_unplug, :aliases => 'ramHotUnplug'
24
+ attribute :nic_hot_plug, :aliases => 'nicHotPlug'
25
+ attribute :nic_hot_unplug, :aliases => 'nicHotUnplug'
26
+ attribute :disc_virtio_hot_plug, :aliases => 'discVirtioHotPlug'
27
+ attribute :disc_virtio_hot_unplug, :aliases => 'discVirtioHotUnplug'
28
+ attribute :disc_scsi_hot_plug, :aliases => 'discScsiHotPlug'
29
+ attribute :disc_scsi_hot_unplug, :aliases => 'discScsiHotUnplug'
30
+ attribute :device_number, :aliases => 'deviceNumber'
31
+
32
+ # metadata
33
+ attribute :created_date, :aliases => 'createdDate', :type => :time
34
+ attribute :created_by, :aliases => 'createdBy'
35
+ attribute :last_modified_date, :aliases => 'lastModifiedDate', :type => :time
36
+ attribute :last_modified_by, :aliases => 'lastModifiedBy'
37
+ attribute :request_id, :aliases => 'requestId'
38
+ attribute :state
39
+
40
+ attribute :datacenter_id
41
+
42
+ attr_accessor :options
43
+
44
+ def initialize(attributes = {})
45
+ super
46
+ end
47
+
48
+ def save
49
+ requires :datacenter_id, :size, :type
50
+
51
+ options = {}
52
+ options[:name] = name if name
53
+ options[:size] = size
54
+ options[:bus] = bus if bus
55
+ options[:image] = image if image
56
+ options[:type] = type
57
+ options[:licenceType] = licence_type if licence_type
58
+ options[:imagePassword] = image_password if image_password
59
+ options[:sshKeys] = ssh_keys if ssh_keys
60
+
61
+ data = service.create_volume(datacenter_id, options)
62
+ merge_attributes(flatten(data.body))
63
+ true
64
+ end
65
+
66
+ def update
67
+ requires :datacenter_id, :id
68
+
69
+ options = {}
70
+ options[:name] = name if name
71
+ options[:size] = size if size
72
+
73
+ data = service.update_volume(datacenter_id, id, options)
74
+ merge_attributes(flatten(data.body))
75
+ true
76
+ end
77
+
78
+ def delete
79
+ requires :datacenter_id, :id
80
+ service.delete_volume(datacenter_id, id)
81
+ true
82
+ end
83
+
84
+ def reload
85
+ requires :datacenter_id, :id
86
+
87
+ data = begin
88
+ collection.get(datacenter_id, id)
89
+ rescue Excon::Errors::SocketError
90
+ nil
91
+ end
92
+
93
+ return unless data
94
+
95
+ new_attributes = data.attributes
96
+ merge_attributes(new_attributes)
97
+ self
98
+ end
99
+
100
+ def create_snapshot(name, description = '')
101
+ requires :datacenter_id, :id
102
+
103
+ options = {}
104
+ options[:name] = name if name
105
+ options[:description] = description if description && description != ''
106
+
107
+ service.create_volume_snapshot(datacenter_id, id, options)
108
+ true
109
+ end
110
+
111
+ def restore_snapshot(snapshot_id)
112
+ requires :datacenter_id, :id
113
+
114
+ options = {}
115
+ options[:snapshot_id] = snapshot_id if snapshot_id
116
+
117
+ service.restore_volume_snapshot(datacenter_id, id, options)
118
+ true
119
+ end
120
+ end
121
+ end
122
+ end
123
+ end
@@ -0,0 +1,33 @@
1
+ require File.expand_path('../volume', __FILE__)
2
+ require File.expand_path('../../helpers/compute/data_helper', __dir__)
3
+
4
+ module Fog
5
+ module Compute
6
+ class ProfitBricks
7
+ class Volumes < Fog::Collection
8
+ include Fog::Helpers::ProfitBricks::DataHelper
9
+ model Fog::Compute::ProfitBricks::Volume
10
+
11
+ def all(datacenter_id)
12
+ result = service.get_all_volumes(datacenter_id)
13
+
14
+ volumes = result.body['items'].each {|volume| volume['datacenter_id'] = datacenter_id}
15
+ result.body['items'] = volumes
16
+
17
+ load(result.body['items'].each {|volume| flatten(volume)})
18
+ end
19
+
20
+ def get(datacenter_id, volume_id)
21
+ response = service.get_volume(datacenter_id, volume_id)
22
+ volume = response.body
23
+
24
+ Excon::Errors
25
+ volume['datacenter_id'] = datacenter_id
26
+ new(flatten(volume))
27
+ rescue Excon::Errors::NotFound
28
+ nil
29
+ end
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,104 @@
1
+ module Fog
2
+ module Compute
3
+ class ProfitBricks
4
+ class Real
5
+ # Associates a NIC to a Load Balancer, enabling the NIC to participate in load-balancing
6
+ #
7
+ # ==== Parameters
8
+ # * datacenter_id<~String> - UUID of the data center
9
+ # * load_balancer_id<~String> - UUID of the load balancer
10
+ # * nic_id<~String> - UUID of the NIC
11
+ #
12
+ # ==== Returns
13
+ # * response<~Excon::Response>:
14
+ # * body<~Hash>:
15
+ # * id<~String> - The resource's unique identifier
16
+ # * type<~String> - The type of the created resource
17
+ # * href<~String> - URL to the object’s representation (absolute path)
18
+ # * metadata<~Hash> - Hash containing the NIC metadata
19
+ # * createdDate<~String> - The date the resource was created
20
+ # * createdBy<~String> - The user who created the resource
21
+ # * etag<~String> - The etag for the resource
22
+ # * lastModifiedDate<~String> - The last time the resource has been modified
23
+ # * lastModifiedBy<~String> - The user who last modified the resource
24
+ # * state<~String> - NIC state
25
+ # * properties<~Hash> - Hash containing the NIC properties
26
+ # * name<~String> - The name of the NIC
27
+ # * mac<~String> - The MAC address of the NIC
28
+ # * ips<~Array> - IPs assigned to the NIC represented as a collection
29
+ # * dhcp<~Boolean> - Boolean value that indicates if the NIC is using DHCP or not
30
+ # * lan<~Integer> - The LAN ID the NIC sits on
31
+ # * firewallActive<~Boolean> - Once a firewall rule is added, this will reflect a true value
32
+ # * entities<~Hash> - Hash containing the NIC entities
33
+ # * firewallrules<~Hash> - A list of firewall rules associated to the NIC represented as a collection
34
+ # * id<~String> - The resource's unique identifier
35
+ # * type<~String> - The type of the resource
36
+ # * href<~String> - URL to the object’s representation (absolute path)
37
+ # * items<~Array> - Collection of individual firewall rules objects
38
+ # * id<~String> - The resource's unique identifier
39
+ # * type<~String> - The type of the resource
40
+ # * href<~String> - URL to the object’s representation (absolute path)
41
+ # * metadata<~Hash> - Hash containing the Firewall Rule metadata
42
+ # * createdDate<~String> - The date the resource was created
43
+ # * createdBy<~String> - The user who created the resource
44
+ # * etag<~String> - The etag for the resource
45
+ # * lastModifiedDate<~String> - The last time the resource has been modified
46
+ # * lastModifiedBy<~String> - The user who last modified the resource
47
+ # * state<~String> - Firewall Rule state
48
+ # * properties<~Hash> - Hash containing the Firewall Rule properties
49
+ # * name<~String> - The name of the Firewall Rule
50
+ # * protocol<~String> - The protocol for the rule: TCP, UDP, ICMP, ANY
51
+ # * sourceMac<~Array> - Only traffic originating from the respective MAC address is allowed.
52
+ # Valid format: aa:bb:cc:dd:ee:ff. Value null allows all source MAC address
53
+ # * sourceIp<~Boolean> - Only traffic originating from the respective IPv4 address is allowed.
54
+ # Value null allows all source IPs
55
+ # * targetIp<~Integer> - In case the target NIC has multiple IP addresses, only traffic directed
56
+ # to the respective IP address of the NIC is allowed. Value null allows all target IPs
57
+ # * icmpCode<~Boolean> - Defines the allowed code (from 0 to 254) if protocol ICMP is chosen.
58
+ # Value null allows all codes.
59
+ # * icmpType<~Boolean> - Defines the allowed type (from 0 to 254) if the protocol ICMP is chosen.
60
+ # Value null allows all types
61
+ # * portRangeStart<~Boolean> - Defines the start range of the allowed port (from 1 to 65534)
62
+ # if protocol TCP or UDP is chosen. Leave portRangeStart and portRangeEnd
63
+ # value null to allow all ports
64
+ # * portRangeEnd<~Boolean> - Defines the end range of the allowed port (from 1 to 65534)
65
+ # if the protocol TCP or UDP is chosen. Leave portRangeStart and
66
+ # portRangeEnd value null to allow all ports
67
+ #
68
+ # {ProfitBricks API Documentation}[https://devops.profitbricks.com/api/cloud/v2/#associate-nic-to-load-balancer]
69
+ def associate_nic_to_load_balancer(datacenter_id, load_balancer_id, nic_id)
70
+ nic = {
71
+ :id => nic_id
72
+ }
73
+
74
+ request(
75
+ :expects => [202],
76
+ :method => 'POST',
77
+ :path => "/datacenters/#{datacenter_id}/loadbalancers/#{load_balancer_id}/balancednics",
78
+ :body => Fog::JSON.encode(nic)
79
+ )
80
+ rescue => error
81
+ Fog::Errors::NotFound.new(error)
82
+ end
83
+ end
84
+
85
+ class Mock
86
+ def associate_nic_to_load_balancer(datacenter_id, load_balancer_id, nic_id)
87
+ if load_balancer = self.data[:load_balancers]['items'].find {
88
+ |lb| lb["datacenter_id"] == datacenter_id && lb["id"] == load_balancer_id
89
+ }
90
+ else
91
+ raise Fog::Errors::NotFound.new("The requested resource could not be found")
92
+ end
93
+
94
+ data = load_balancer['entities'][:balancednics][0]
95
+
96
+ response = Excon::Response.new
97
+ response.status = 202
98
+ response.body = data
99
+ response
100
+ end
101
+ end
102
+ end
103
+ end
104
+ end
@@ -0,0 +1,88 @@
1
+ module Fog
2
+ module Compute
3
+ class ProfitBricks
4
+ class Real
5
+ # Attach a CD-ROM to an existing server.
6
+ #
7
+ # ==== Parameters
8
+ # * datacenter_id - Required - The unique ID of the data center
9
+ # * server_id<~String> - Required - The unique ID of the server
10
+ # * cdrom_image_id<~String> - Required - The unique ID of a CD-ROM image
11
+ #
12
+ # ==== Returns
13
+ # * response<~Excon::Response>:
14
+ # * body<~Hash>:
15
+ # * id<~String> - The resource's unique identifier
16
+ # * type<~String> - The type of the requested resource
17
+ # * href<~String> - URL to the object’s representation (absolute path)
18
+ # * metadata<~Hash> - Hash containing the image metadata
19
+ # * createdDate<~String> - The date the resource was created
20
+ # * createdBy<~String> - The user who created the resource
21
+ # * etag<~String> - The etag for the resource
22
+ # * lastModifiedDate<~String> - The last time the resource has been modified
23
+ # * lastModifiedBy<~String> - The user who last modified the resource
24
+ # * state<~String> - Volume state
25
+ # * properties<~Hash> - Hash containing the volume properties
26
+ # * name<~String> - The name of the image
27
+ # * description<~String> - The description of the image
28
+ # * location<~String> - The image's location
29
+ # * size<~Integer> - The size of the image in GB
30
+ # * cpuHotPlug<~Boolean> - This image is capable of CPU hot plug (no reboot required)
31
+ # * cpuHotUnplug<~Boolean> - This image is capable of CPU hot unplug (no reboot required)
32
+ # * ramHotPlug<~Boolean> - This image is capable of memory hot plug (no reboot required)
33
+ # * ramHotUnplug<~Boolean> - This image is capable of memory hot unplug (no reboot required)
34
+ # * nicHotPlug<~Boolean> - This image is capable of nic hot plug (no reboot required)
35
+ # * nicHotUnplug<~Boolean> - This image is capable of nic hot unplug (no reboot required)
36
+ # * discVirtioHotPlug<~Boolean> - This image is capable of Virt-IO drive hot plug (no reboot required)
37
+ # * discVirtioHotPlug<~Boolean> - This image is capable of Virt-IO drive hot unplug (no reboot required)
38
+ # * discScsiHotPlug<~Boolean> - This image is capable of Scsi drive hot plug (no reboot required)
39
+ # * discScsiHotUnplug<~Boolean> - This image is capable of Scsi drive hot unplug (no reboot required)
40
+ # * licenceType<~String> - The image's licence type: LINUX, WINDOWS, or UNKNOWN
41
+ # * imageType<~String> - The type of image: HDD, CDROM
42
+ # * public<~String> - Indicates if the image is part of the public repository or not
43
+ #
44
+ # {ProfitBricks API Documentation}[https://devops.profitbricks.com/api/cloud/v2/#attach-a-cd-rom]
45
+ def attach_cdrom(datacenter_id, server_id, cdrom_image_id)
46
+ volume = {
47
+ :id => cdrom_image_id
48
+ }
49
+
50
+ request(
51
+ :expects => [202],
52
+ :method => 'POST',
53
+ :path => "/datacenters/#{datacenter_id}/servers/#{server_id}/cdroms",
54
+ :body => Fog::JSON.encode(volume)
55
+ )
56
+ rescue => error
57
+ Fog::Errors::NotFound.new(error)
58
+ end
59
+ end
60
+
61
+ class Mock
62
+ def attach_cdrom(datacenter_id, server_id, cdrom_image_id)
63
+ if cdrom = self.data[:images]['items'].find {
64
+ |cd| cd["id"] == cdrom_image_id
65
+ }
66
+ else
67
+ raise Fog::Errors::NotFound.new("The requested resource could not be found")
68
+ end
69
+
70
+ if server = self.data[:servers]['items'].find {
71
+ |serv| serv['datacenter_id'] == datacenter_id && serv['id'] == server_id
72
+ }
73
+ else
74
+ raise Fog::Errors::NotFound.new("The server resource could not be found")
75
+ end
76
+
77
+ server['entities']['cdroms']['items'] << cdrom
78
+
79
+ response = Excon::Response.new
80
+ response.status = 202
81
+ response.body = cdrom
82
+
83
+ response
84
+ end
85
+ end
86
+ end
87
+ end
88
+ end
@@ -0,0 +1,89 @@
1
+ module Fog
2
+ module Compute
3
+ class ProfitBricks
4
+ class Real
5
+ # Attach a pre-existing storage volume to the server.
6
+ #
7
+ # ==== Parameters
8
+ # * datacenter_id - Required - The unique ID of the data center
9
+ # * server_id<~String> - Required - The unique ID of the server
10
+ # * storage_id<~String> - Required - The unique ID of a storage volume
11
+ #
12
+ # ==== Returns
13
+ # * response<~Excon::Response>:
14
+ # * body<~Hash>:
15
+ # * id<~String> - The resource's unique identifier
16
+ # * type<~String> - The type of the requested resource
17
+ # * href<~String> - URL to the object’s representation (absolute path)
18
+ # * metadata<~Hash> - Hash containing the volume metadata
19
+ # * createdDate<~String> - The date the resource was created
20
+ # * createdBy<~String> - The user who created the resource
21
+ # * etag<~String> - The etag for the resource
22
+ # * lastModifiedDate<~String> - The last time the resource has been modified
23
+ # * lastModifiedBy<~String> - The user who last modified the resource
24
+ # * state<~String> - Volume state
25
+ # * properties<~Hash> - Hash containing the volume properties
26
+ # * name<~String> - The name of the volume.
27
+ # * type<~String> - The volume type, HDD or SSD.
28
+ # * size<~Integer> - The size of the volume in GB.
29
+ # * image<~String> - The image or snapshot ID.
30
+ # * imagePassword<~Boolean> - Indicates if a password is set on the image.
31
+ # * bus<~String> - The bus type of the volume (VIRTIO or IDE). Default: VIRTIO.
32
+ # * licenceType<~String> - Volume licence type. ( WINDOWS, LINUX, OTHER, UNKNOWN)
33
+ # * cpuHotPlug<~Boolean> - This volume is capable of CPU hot plug (no reboot required)
34
+ # * cpuHotUnplug<~Boolean> - This volume is capable of CPU hot unplug (no reboot required)
35
+ # * ramHotPlug<~Boolean> - This volume is capable of memory hot plug (no reboot required)
36
+ # * ramHotUnplug<~Boolean> - This volume is capable of memory hot unplug (no reboot required)
37
+ # * nicHotPlug<~Boolean> - This volume is capable of nic hot plug (no reboot required)
38
+ # * nicHotUnplug<~Boolean> - This volume is capable of nic hot unplug (no reboot required)
39
+ # * discVirtioHotPlug<~Boolean> - This volume is capable of Virt-IO drive hot plug (no reboot required)
40
+ # * discVirtioHotPlug<~Boolean> - This volume is capable of Virt-IO drive hot unplug (no reboot required)
41
+ # * discScsiHotPlug<~Boolean> - This volume is capable of Scsi drive hot plug (no reboot required)
42
+ # * discScsiHotUnplug<~Boolean> - This volume is capable of Scsi drive hot unplug (no reboot required)
43
+ # * deviceNumber<~Integer> - The LUN ID of the storage volume
44
+ #
45
+ # {ProfitBricks API Documentation}[https://devops.profitbricks.com/api/cloud/v2/#attach-a-volume]
46
+ def attach_volume(datacenter_id, server_id, storage_id)
47
+ volume = {
48
+ :id => storage_id
49
+ }
50
+
51
+ request(
52
+ :expects => [202],
53
+ :method => 'POST',
54
+ :path => "/datacenters/#{datacenter_id}/servers/#{server_id}/volumes",
55
+ :body => Fog::JSON.encode(volume)
56
+ )
57
+ rescue => error
58
+ Fog::Errors::NotFound.new(error)
59
+ end
60
+ end
61
+
62
+ class Mock
63
+ def attach_volume(datacenter_id, server_id, storage_id)
64
+ if volume = self.data[:volumes]['items'].find {
65
+ |vlm| vlm["id"] == storage_id && vlm["datacenter_id"] == datacenter_id
66
+ }
67
+ else
68
+ raise Fog::Errors::NotFound.new("The requested resource could not be found")
69
+ end
70
+
71
+ if server = self.data[:servers]['items'].find {
72
+ |serv| serv['datacenter_id'] == datacenter_id && serv['id'] == server_id
73
+ }
74
+ else
75
+ raise Fog::Errors::NotFound.new("The server resource could not be found")
76
+ end
77
+
78
+ server['entities']['volumes']['items'] << volume
79
+
80
+ response = Excon::Response.new
81
+ response.status = 202
82
+ response.body = volume
83
+
84
+ response
85
+ end
86
+ end
87
+ end
88
+ end
89
+ end