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,43 @@
1
+ module Fog
2
+ module Compute
3
+ class ProfitBricks
4
+ class Real
5
+ # Retrieves a list of requests
6
+ #
7
+ # ==== Parameters
8
+ # * None
9
+ #
10
+ # ==== Returns
11
+ # * response<~Excon::Response>:
12
+ # * body<~Hash>:
13
+ # * id<~String> - The resource's unique identifier
14
+ # * type<~String> - The type of the resource
15
+ # * href<~String> - URL to the object’s representation (absolute path)
16
+ # * items<~Hash> - Collection of individual request objects
17
+ # * id<~String> - The resource's unique identifier
18
+ # * type<~String> - The type of the resource
19
+ # * href<~String> - URL to the object’s representation (absolute path)
20
+ #
21
+ # {ProfitBricks API Documentation}[https://devops.profitbricks.com/api/cloud/v2/#list-requests]
22
+ def get_all_requests
23
+ request(
24
+ :expects => [200],
25
+ :method => 'GET',
26
+ :path => "/requests"
27
+ )
28
+ end
29
+ end
30
+
31
+ class Mock
32
+ def get_all_requests
33
+ requests = self.data[:requests]
34
+ response = Excon::Response.new
35
+ response.status = 200
36
+ response.body = requests
37
+
38
+ response
39
+ end
40
+ end
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,134 @@
1
+ module Fog
2
+ module Compute
3
+ class ProfitBricks
4
+ class Real
5
+ # Get all servers within a datacenter
6
+ #
7
+ # ==== Parameters
8
+ # * datacenter_id<~String> - UUID of the datacenter which contains the servers
9
+ #
10
+ # ==== Returns
11
+ # * response<~Excon::Response>:
12
+ # * body<~Hash>:
13
+ # * id<~String> - The resource's unique identifier
14
+ # * type<~String> - The type of the requested resource
15
+ # * href<~String> - URL to the object’s representation (absolute path)
16
+ # * items<~Array>
17
+ # * id<~String> - The resource's unique identifier
18
+ # * type<~String> - The type of the requested resource
19
+ # * href<~String> - URL to the object’s representation (absolute path)
20
+ # * metadata<~Hash> - A hash containing the server metadata
21
+ # * createdDate<~String> - The date the resource was created
22
+ # * createdBy<~String> - The user who created the resource
23
+ # * etag<~String> - The etag
24
+ # * lastModifiedDate<~String> - The last modified time for the resource
25
+ # * lastModifiedBy<~String> - The user who last modified the resource
26
+ # * state<~String> - Status of the virtual Machine
27
+ # * properties<~Hash> - A hash containing the server properties
28
+ # * name<~String> - The name of the server
29
+ # * cores<~Integer> - The number of cores for the server
30
+ # * ram<~Integer> - The amount of memory on the server (in megabytes)
31
+ # * availabilityZone<~String> - The availability zone for the server
32
+ # * vmState<~String> - The current state of the instance (NOSTATE, RUNNING, BLOCKED, PAUSED, SHUTDOWN, SHUTOFF, CRASHED)
33
+ # * bootCdrom<~Hash> - Reference to a CD-ROM used for booting. If not 'null' then bootVolume has to be 'null'.
34
+ # * bootVolume<~Hash> - Reference to a Volume used for booting. If not ‘null’ then bootCdrom has to be ‘null’
35
+ # * id<~String> - The resource's unique identifier
36
+ # * type<~String> - The type of the requested resource
37
+ # * href<~String> - URL to the object’s representation (absolute path)
38
+ # * metadata<~Hash> - Hash containing the volume metadata
39
+ # * createdDate<~String> - The date the resource was created
40
+ # * createdBy<~String> - The user who created the resource
41
+ # * etag<~String> - The etag for the resource
42
+ # * lastModifiedDate<~String> - The last time the resource has been modified
43
+ # * lastModifiedBy<~String> - The user who last modified the resource
44
+ # * state<~String> - Volume state
45
+ # * properties<~Hash> - Hash containing the volume properties
46
+ # * name<~String> - The name of the volume.
47
+ # * type<~String> - The volume type, HDD or SSD.
48
+ # * size<~Integer> - The size of the volume in GB.
49
+ # * image<~String> - The image or snapshot ID.
50
+ # * imagePassword<~String> - Indicates if a password is set on the image.
51
+ # * sshKeys<~String> - SSH keys
52
+ # * bus<~String> - The bus type of the volume (VIRTIO or IDE). Default: VIRTIO.
53
+ # * licenceType<~String> - Volume licence type. ( WINDOWS, LINUX, OTHER, UNKNOWN)
54
+ # * cpuHotPlug<~Boolean> - This volume is capable of CPU hot plug (no reboot required)
55
+ # * cpuHotUnplug<~Boolean> - This volume is capable of CPU hot unplug (no reboot required)
56
+ # * ramHotPlug<~Boolean> - This volume is capable of memory hot plug (no reboot required)
57
+ # * ramHotUnplug<~Boolean> - This volume is capable of memory hot unplug (no reboot required)
58
+ # * nicHotPlug<~Boolean> - This volume is capable of nic hot plug (no reboot required)
59
+ # * nicHotUnplug<~Boolean> - This volume is capable of nic hot unplug (no reboot required)
60
+ # * discVirtioHotPlug<~Boolean> - This volume is capable of Virt-IO drive hot plug (no reboot required)
61
+ # * discVirtioHotPlug<~Boolean> - This volume is capable of Virt-IO drive hot unplug (no reboot required)
62
+ # * discScsiHotPlug<~Boolean> - This volume is capable of Scsi drive hot plug (no reboot required)
63
+ # * discScsiHotUnplug<~Boolean> - This volume is capable of Scsi drive hot unplug (no reboot required)
64
+ # * deviceNumber<~Integer> - The LUN ID of the storage volume
65
+ # * cpuFamily<~String> - Type of CPU assigned
66
+ # * entities<~Hash> - A hash containing the server entities
67
+ # * cdroms<~Hash> - A collection of cdroms attached to the server
68
+ # * id<~String> - The resource's unique identifier
69
+ # * type<~String> - The type of the requested resource
70
+ # * href<~String> - URL to the object’s representation (absolute path)
71
+ # * items<~Array> - The array containing individual cd rom resources
72
+ # * volumes<~Hash> - A collection of volumes attached to the server
73
+ # * id<~String> - The resource's unique identifier
74
+ # * type<~String> - The type of the requested resource
75
+ # * href<~String> - URL to the object’s representation (absolute path)
76
+ # * items<~Array> - The array containing individual volume resources (see bootVolume for detailed structure)
77
+ # * nics<~Hash> - A collection of NICs attached to the server
78
+ # * id<~String> - The resource's unique identifier
79
+ # * type<~String> - The type of the requested resource
80
+ # * href<~String> - URL to the object’s representation (absolute path)
81
+ # * items<~Array> - An array containing individual NIC resources
82
+ # * id<~String> - The resource's unique identifier
83
+ # * type<~String> - The type of the requested resource
84
+ # * href<~String> - URL to the object’s representation (absolute path)
85
+ # * metadata<~Hash> - A hash containing the nic metadata
86
+ # * createdDate<~String> - The date the resource was created
87
+ # * createdBy<~String> - The user who created the resource
88
+ # * etag<~String> - The etag for the resource
89
+ # * lastModifiedDate<~String> - The last time the resource has been modified
90
+ # * lastModifiedBy<~String> - The user who last modified the resource
91
+ # * state<~String> - NIC state
92
+ # * properties<~Hash> - A hash containing the nic properties
93
+ # * name<~String> - The name of the NIC
94
+ # * mac<~String> - The MAC address of the NIC
95
+ # * ips<~Array> - IPs assigned to the NIC represented as a collection
96
+ # * dhcp<~Boolean> - Boolean value that indicates if the NIC is using DHCP or not
97
+ # * lan<~integer> - The LAN ID the NIC sits on
98
+ # * firewallActive<~Boolean> - Once you add a firewall rule this will reflect a true value
99
+ # * entities<~Hash> - A hash containing the nic entities
100
+ # * firewallrules<~hash> - A list of firewall rules associated to the NIC represented as a collection
101
+ # * id<~String> - The resource's unique identifier
102
+ # * type<~String> - The type of the requested resource
103
+ # * href<~String> - URL to the object’s representation (absolute path)
104
+ # * items<~Array> - An array of individual firewall rules associated to the NIC
105
+ #
106
+ # {ProfitBricks API Documentation}[https://devops.profitbricks.com/api/cloud/v2/#list-servers]
107
+ def get_all_servers(datacenter_id)
108
+
109
+ request(
110
+ :expects => [200],
111
+ :method => 'GET',
112
+ :path => "/datacenters/#{datacenter_id}/servers?depth=5"
113
+ )
114
+ end
115
+ end
116
+
117
+ class Mock
118
+ def get_all_servers(datacenter_id)
119
+ if servs = self.data[:servers]['items'].select {
120
+ |attrib| attrib['datacenter_id'] == datacenter_id
121
+ }
122
+ else
123
+ raise Fog::Errors::NotFound.new('Server resource could not be found')
124
+ end
125
+
126
+ response = Excon::Response.new
127
+ response.status = 200
128
+ response.body = self.data[:servers]
129
+ response
130
+ end
131
+ end
132
+ end
133
+ end
134
+ end
@@ -0,0 +1,66 @@
1
+ module Fog
2
+ module Compute
3
+ class ProfitBricks
4
+ class Real
5
+ # Retrieve a list of all snapshots
6
+ #
7
+ # ==== Parameters
8
+ # * None
9
+ #
10
+ # ==== Returns
11
+ # * response<~Excon::Response>:
12
+ # * body<~Hash>:
13
+ # * id<~String> - The resource's unique identifier
14
+ # * type<~String> - The type of the requested resource
15
+ # * href<~String> - URL to the object’s representation (absolute path)
16
+ # * items<~Array>
17
+ # * id<~String> - The resource's unique identifier
18
+ # * type<~String> - The type of the requested resource
19
+ # * href<~String> - URL to the object’s representation (absolute path)
20
+ # * metadata<~Hash> - A hash containing the resource's metadata
21
+ # * createdDate<~String> - The date the resource was created
22
+ # * createdBy<~String> - The user who created the resource
23
+ # * etag<~String> - The etag for the resource
24
+ # * lastModifiedDate<~String> - The last time the resource has been modified
25
+ # * lastModifiedBy<~String> - The user who last modified the resource
26
+ # * state<~String> - Snapshot state (AVAILABLE, BUSY, INACTIVE)
27
+ # * properties<~Hash> - A hash containing the resource's properties
28
+ # * name<~String> - The name of the snapshot
29
+ # * description<~String> - The description of the snapshot
30
+ # * location<~String> - The snapshot's location ("de/fkb", "de/fra", or "us/las")
31
+ # * version<~Integer> - The version of the data center
32
+ # * size<~Integer> - The size of the snapshot in GB
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
+ # * licencetype<~String> - The snapshot's licence type: LINUX, WINDOWS, or UNKNOWN.
44
+ #
45
+ # {ProfitBricks API Documentation}[https://devops.profitbricks.com/api/cloud/v2/#list-snapshots]
46
+ def get_all_snapshots
47
+ request(
48
+ :expects => [200],
49
+ :method => 'GET',
50
+ :path => "/snapshots?depth=5"
51
+ )
52
+ end
53
+ end
54
+
55
+ class Mock
56
+ def get_all_snapshots
57
+ response = Excon::Response.new
58
+ response.status = 200
59
+ response.body = self.data[:snapshots]
60
+
61
+ response
62
+ end
63
+ end
64
+ end
65
+ end
66
+ end
@@ -0,0 +1,78 @@
1
+ module Fog
2
+ module Compute
3
+ class ProfitBricks
4
+ class Real
5
+ # Retrieve a list of all volumes
6
+ #
7
+ # ==== Parameters
8
+ # * datacenter_id - UUID of the datacenter which contains the volumes
9
+ #
10
+ # ==== Returns
11
+ # * response<~Excon::Response>:
12
+ # * body<~Hash>:
13
+ # * id<~String> - Id of the requested resource
14
+ # * type<~String> - type of the requested resource
15
+ # * href<~String> - url to the requested resource
16
+ # * items<~Array>
17
+ # * id<~String> - The resource's unique identifier
18
+ # * type<~String> - The type of the requested resource
19
+ # * href<~String> - URL to the object’s representation (absolute path)
20
+ # * metadata<~Hash> - Hash containing the volume metadata
21
+ # * createdDate<~String> - The date the resource was created
22
+ # * createdBy<~String> - The user who created the resource
23
+ # * etag<~String> - The etag for the resource
24
+ # * lastModifiedDate<~String> - The last time the resource has been modified
25
+ # * lastModifiedBy<~String> - The user who last modified the resource
26
+ # * state<~String> - Volume state
27
+ # * properties<~Hash> - Hash containing the volume properties
28
+ # * name<~String> - The name of the volume.
29
+ # * type<~String> - The volume type, HDD or SSD.
30
+ # * size<~Integer> - The size of the volume in GB.
31
+ # * image<~String> - The image or snapshot ID.
32
+ # * imagePassword<~Boolean> - Indicates if a password is set on the image.
33
+ # * bus<~String> - The bus type of the volume (VIRTIO or IDE). Default: VIRTIO.
34
+ # * licenceType<~String> - Volume licence type. ( WINDOWS, LINUX, OTHER, UNKNOWN)
35
+ # * cpuHotPlug<~Boolean> - This volume is capable of CPU hot plug (no reboot required)
36
+ # * cpuHotUnplug<~Boolean> - This volume is capable of CPU hot unplug (no reboot required)
37
+ # * ramHotPlug<~Boolean> - This volume is capable of memory hot plug (no reboot required)
38
+ # * ramHotUnplug<~Boolean> - This volume is capable of memory hot unplug (no reboot required)
39
+ # * nicHotPlug<~Boolean> - This volume is capable of nic hot plug (no reboot required)
40
+ # * nicHotUnplug<~Boolean> - This volume is capable of nic hot unplug (no reboot required)
41
+ # * discVirtioHotPlug<~Boolean> - This volume is capable of Virt-IO drive hot plug (no reboot required)
42
+ # * discVirtioHotPlug<~Boolean> - This volume is capable of Virt-IO drive hot unplug (no reboot required)
43
+ # * discScsiHotPlug<~Boolean> - This volume is capable of Scsi drive hot plug (no reboot required)
44
+ # * discScsiHotUnplug<~Boolean> - This volume is capable of Scsi drive hot unplug (no reboot required)
45
+ # * deviceNumber<~Integer> - The LUN ID of the storage volume
46
+ #
47
+ # {ProfitBricks API Documentation}[https://devops.profitbricks.com/api/cloud/v2/#list-volumes]
48
+ def get_all_volumes(datacenter_id)
49
+ request(
50
+ :expects => [200],
51
+ :method => 'GET',
52
+ :path => "/datacenters/#{datacenter_id}/volumes?depth=5"
53
+ )
54
+ end
55
+ end
56
+
57
+ class Mock
58
+ def get_all_volumes(datacenter_id)
59
+ volumes = self.data[:volumes]
60
+
61
+ if vlms = self.data[:volumes]['items'].select {
62
+ |attrib| attrib['datacenter_id'] == datacenter_id
63
+ }
64
+ else
65
+ raise Fog::Errors::NotFound.new('Volume resource could not be found')
66
+ end
67
+
68
+ volumes['items'] = vlms
69
+ response = Excon::Response.new
70
+ response.status = 200
71
+ response.body = self.data[:volumes]
72
+
73
+ response
74
+ end
75
+ end
76
+ end
77
+ end
78
+ end
@@ -0,0 +1,78 @@
1
+ module Fog
2
+ module Compute
3
+ class ProfitBricks
4
+ class Real
5
+ # Retrieve the properties of an attached volume
6
+ #
7
+ # ==== Parameters
8
+ # * datacenter_id<~String> - Required - UUID of the datacenter
9
+ # * server_id<~String> - Required - UUID of the server
10
+ # * cdrom_image_id<~String> - Required - UUID of the attached 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 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/#retrieve-attached-cd-rom]
45
+ def get_attached_cdrom(datacenter_id, server_id, cdrom_image_id)
46
+ request(
47
+ :expects => [200],
48
+ :method => 'GET',
49
+ :path => "/datacenters/#{datacenter_id}/servers/#{server_id}/cdroms/#{cdrom_image_id}?depth=1"
50
+ )
51
+ end
52
+ end
53
+
54
+ class Mock
55
+ def get_attached_cdrom(datacenter_id, server_id, cdrom_image_id)
56
+ if server = self.data[:servers]['items'].find {
57
+ |serv| serv['datacenter_id'] == datacenter_id && serv['id'] == server_id
58
+ }
59
+ else
60
+ raise Fog::Errors::NotFound.new("The server resource could not be found")
61
+ end
62
+
63
+ if cdrom = server['entities']['cdroms']['items'].find {
64
+ |cd| cd['id'] == cdrom_image_id
65
+ }
66
+ else
67
+ raise Fog::Errors::NotFound.new("The attached volume resource could not be found")
68
+ end
69
+
70
+ response = Excon::Response.new
71
+ response.status = 200
72
+ response.body = cdrom
73
+ response
74
+ end
75
+ end
76
+ end
77
+ end
78
+ end
@@ -0,0 +1,79 @@
1
+ module Fog
2
+ module Compute
3
+ class ProfitBricks
4
+ class Real
5
+ # Retrieve the properties of an attached volume
6
+ #
7
+ # ==== Parameters
8
+ # * datacenter_id<~String> - Required - UUID of the datacenter
9
+ # * server_id<~String> - Required - UUID of the server
10
+ # * volume_id<~String> - Required - UUID of the attached 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/#retrieve-an-attached-volume]
46
+ def get_attached_volume(datacenter_id, server_id, volume_id)
47
+ request(
48
+ :expects => [200],
49
+ :method => 'GET',
50
+ :path => "/datacenters/#{datacenter_id}/servers/#{server_id}/volumes/#{volume_id}?depth=1"
51
+ )
52
+ end
53
+ end
54
+
55
+ class Mock
56
+ def get_attached_volume(datacenter_id, server_id, volume_id)
57
+ if server = self.data[:servers]['items'].find {
58
+ |serv| serv['datacenter_id'] == datacenter_id && serv['id'] == server_id
59
+ }
60
+ else
61
+ raise Fog::Errors::NotFound.new("The server resource could not be found")
62
+ end
63
+
64
+ if volume = server['entities']['volumes']['items'].find {
65
+ |vlm| vlm['id'] == volume_id
66
+ }
67
+ else
68
+ raise Fog::Errors::NotFound.new("The attached volume resource could not be found")
69
+ end
70
+
71
+ response = Excon::Response.new
72
+ response.status = 200
73
+ response.body = volume
74
+ response
75
+ end
76
+ end
77
+ end
78
+ end
79
+ end