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,120 @@
1
+ module Fog
2
+ module Compute
3
+ class ProfitBricks
4
+ class Real
5
+ # Retrieves a list of LANs
6
+ #
7
+ # ==== Parameters
8
+ # * datacenter_id<~String> - UUID of the datacenter
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 created resource
15
+ # * href<~String> - URL to the object’s representation (absolute path)
16
+ # * items<~Hash> - Collection of individual lan objects
17
+ # * id<~String> - The resource's unique identifier
18
+ # * type<~String> - The type of the created resource
19
+ # * href<~String> - URL to the object’s representation (absolute path)
20
+ # * metadata<~Hash> - Hash containing the LAN 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> - LAN state
27
+ # * properties<~Hash> - Hash containing the LAN properties
28
+ # * name<~String> - The name of the LAN
29
+ # * public<~Boolean> - Boolean indicating if the LAN faces the public Internet or not
30
+ # * entities<~Hash> - Hash containing the LAN entities
31
+ # * nics<~Hash> - Hash containing the NIC properties
32
+ # * id<~String> - The resource's unique identifier
33
+ # * type<~String> - The type of the created resource
34
+ # * href<~String> - URL to the object’s representation (absolute path)
35
+ # * items<~Hash> - Collection of individual nic objects
36
+ # * id<~String> - The resource's unique identifier
37
+ # * type<~String> - The type of the created resource
38
+ # * href<~String> - URL to the object’s representation (absolute path)
39
+ # * metadata<~Hash> - Hash containing the NIC metadata
40
+ # * createdDate<~String> - The date the resource was created
41
+ # * createdBy<~String> - The user who created the resource
42
+ # * etag<~String> - The etag for the resource
43
+ # * lastModifiedDate<~String> - The last time the resource has been modified
44
+ # * lastModifiedBy<~String> - The user who last modified the resource
45
+ # * state<~String> - NIC state
46
+ # * properties<~Hash> - Hash containing the NIC properties
47
+ # * name<~String> - The name of the NIC
48
+ # * mac<~String> - The MAC address of the NIC
49
+ # * ips<~Array> - IPs assigned to the NIC represented as a collection
50
+ # * dhcp<~Boolean> - Boolean value that indicates if the NIC is using DHCP or not
51
+ # * lan<~Integer> - The LAN ID the NIC sits on
52
+ # * firewallActive<~Boolean> - Once a firewall rule is added, this will reflect a true value
53
+ # * entities<~Hash> - Hash containing the NIC entities
54
+ # * firewallrules<~Hash> - A list of firewall rules associated to the NIC represented as a collection
55
+ # * id<~String> - The resource's unique identifier
56
+ # * type<~String> - The type of the resource
57
+ # * href<~String> - URL to the object’s representation (absolute path)
58
+ # * items<~Array> - Collection of individual firewall rules objects
59
+ # * id<~String> - The resource's unique identifier
60
+ # * type<~String> - The type of the resource
61
+ # * href<~String> - URL to the object’s representation (absolute path)
62
+ # * metadata<~Hash> - Hash containing the Firewall Rule metadata
63
+ # * createdDate<~String> - The date the resource was created
64
+ # * createdBy<~String> - The user who created the resource
65
+ # * etag<~String> - The etag for the resource
66
+ # * lastModifiedDate<~String> - The last time the resource has been modified
67
+ # * lastModifiedBy<~String> - The user who last modified the resource
68
+ # * state<~String> - Firewall Rule state
69
+ # * properties<~Hash> - Hash containing the Firewall Rule properties
70
+ # * name<~String> - The name of the Firewall Rule
71
+ # * protocol<~String> - The protocol for the rule: TCP, UDP, ICMP, ANY
72
+ # * sourceMac<~Array> - Only traffic originating from the respective MAC address is allowed.
73
+ # Valid format: aa:bb:cc:dd:ee:ff. Value null allows all source MAC address
74
+ # * sourceIp<~Boolean> - Only traffic originating from the respective IPv4 address is allowed.
75
+ # Value null allows all source IPs
76
+ # * targetIp<~Integer> - In case the target NIC has multiple IP addresses, only traffic directed
77
+ # to the respective IP address of the NIC is allowed. Value null allows all target IPs
78
+ # * icmpCode<~Boolean> - Defines the allowed code (from 0 to 254) if protocol ICMP is chosen.
79
+ # Value null allows all codes.
80
+ # * icmpType<~Boolean> - Defines the allowed type (from 0 to 254) if the protocol ICMP is chosen.
81
+ # Value null allows all types
82
+ # * portRangeStart<~Boolean> - Defines the start range of the allowed port (from 1 to 65534)
83
+ # if protocol TCP or UDP is chosen. Leave portRangeStart and portRangeEnd
84
+ # value null to allow all ports
85
+ # * portRangeEnd<~Boolean> - Defines the end range of the allowed port (from 1 to 65534)
86
+ # if the protocol TCP or UDP is chosen. Leave portRangeStart and
87
+ # portRangeEnd value null to allow all ports
88
+ #
89
+ # {ProfitBricks API Documentation}[https://devops.profitbricks.com/api/cloud/v2/#list-lans]
90
+ def get_all_lans(datacenter_id)
91
+ request(
92
+ :expects => [200],
93
+ :method => 'GET',
94
+ :path => "/datacenters/#{datacenter_id}/lans?depth=1"
95
+ )
96
+ end
97
+ end
98
+
99
+ class Mock
100
+ def get_all_lans(datacenter_id)
101
+ lans = self.data[:lans]
102
+
103
+ if lns = self.data[:lans]['items'].select {
104
+ |attrib| attrib['datacenter_id'] == datacenter_id
105
+ }
106
+ else
107
+ raise Fog::Errors::NotFound.new('The resource could not be found')
108
+ end
109
+
110
+ lans['items'] = lns
111
+ response = Excon::Response.new
112
+ response.status = 200
113
+ response.body = lans
114
+
115
+ response
116
+ end
117
+ end
118
+ end
119
+ end
120
+ end
@@ -0,0 +1,100 @@
1
+ module Fog
2
+ module Compute
3
+ class ProfitBricks
4
+ class Real
5
+ # Retrieves a list of NICs associated with the load balancer
6
+ #
7
+ # ==== Parameters
8
+ # * datacenter_id<~String> - UUID of the data center
9
+ # * load_balancer_id<~String> - UUID of the load balancer
10
+ #
11
+ # ==== Returns
12
+ # * response<~Excon::Response>:
13
+ # * body<~Hash>:
14
+ # * id<~String> - The resource's unique identifier
15
+ # * type<~String> - The type of the created resource
16
+ # * href<~String> - URL to the object’s representation (absolute path)
17
+ # * items<~Hash> - Collection of individual NIC objects
18
+ # * id<~String> - The resource's unique identifier
19
+ # * type<~String> - The type of the created resource
20
+ # * href<~String> - URL to the object’s representation (absolute path)
21
+ # * metadata<~Hash> - Hash containing the NIC metadata
22
+ # * createdDate<~String> - The date the resource was created
23
+ # * createdBy<~String> - The user who created the resource
24
+ # * etag<~String> - The etag for the resource
25
+ # * lastModifiedDate<~String> - The last time the resource has been modified
26
+ # * lastModifiedBy<~String> - The user who last modified the resource
27
+ # * state<~String> - NIC state
28
+ # * properties<~Hash> - Hash containing the NIC properties
29
+ # * name<~String> - The name of the NIC
30
+ # * mac<~String> - The MAC address of the NIC
31
+ # * ips<~Array> - IPs assigned to the NIC represented as a collection
32
+ # * dhcp<~Boolean> - Boolean value that indicates if the NIC is using DHCP or not
33
+ # * lan<~Integer> - The LAN ID the NIC sits on
34
+ # * firewallActive<~Boolean> - Once a firewall rule is added, this will reflect a true value
35
+ # * entities<~Hash> - Hash containing the NIC entities
36
+ # * firewallrules<~Hash> - A list of firewall rules associated to the NIC represented as a collection
37
+ # * id<~String> - The resource's unique identifier
38
+ # * type<~String> - The type of the resource
39
+ # * href<~String> - URL to the object’s representation (absolute path)
40
+ # * items<~Array> - Collection of individual firewall rules objects
41
+ # * id<~String> - The resource's unique identifier
42
+ # * type<~String> - The type of the resource
43
+ # * href<~String> - URL to the object’s representation (absolute path)
44
+ # * metadata<~Hash> - Hash containing the Firewall Rule metadata
45
+ # * createdDate<~String> - The date the resource was created
46
+ # * createdBy<~String> - The user who created the resource
47
+ # * etag<~String> - The etag for the resource
48
+ # * lastModifiedDate<~String> - The last time the resource has been modified
49
+ # * lastModifiedBy<~String> - The user who last modified the resource
50
+ # * state<~String> - Firewall Rule state
51
+ # * properties<~Hash> - Hash containing the Firewall Rule properties
52
+ # * name<~String> - The name of the Firewall Rule
53
+ # * protocol<~String> - The protocol for the rule: TCP, UDP, ICMP, ANY
54
+ # * sourceMac<~Array> - Only traffic originating from the respective MAC address is allowed.
55
+ # Valid format: aa:bb:cc:dd:ee:ff. Value null allows all source MAC address
56
+ # * sourceIp<~Boolean> - Only traffic originating from the respective IPv4 address is allowed.
57
+ # Value null allows all source IPs
58
+ # * targetIp<~Integer> - In case the target NIC has multiple IP addresses, only traffic directed
59
+ # to the respective IP address of the NIC is allowed. Value null allows all target IPs
60
+ # * icmpCode<~Boolean> - Defines the allowed code (from 0 to 254) if protocol ICMP is chosen.
61
+ # Value null allows all codes.
62
+ # * icmpType<~Boolean> - Defines the allowed type (from 0 to 254) if the protocol ICMP is chosen.
63
+ # Value null allows all types
64
+ # * portRangeStart<~Boolean> - Defines the start range of the allowed port (from 1 to 65534)
65
+ # if protocol TCP or UDP is chosen. Leave portRangeStart and portRangeEnd
66
+ # value null to allow all ports
67
+ # * portRangeEnd<~Boolean> - Defines the end range of the allowed port (from 1 to 65534)
68
+ # if the protocol TCP or UDP is chosen. Leave portRangeStart and
69
+ # portRangeEnd value null to allow all ports
70
+ #
71
+ # {ProfitBricks API Documentation}[https://devops.profitbricks.com/api/cloud/v2/#list-load-balanced-nics]
72
+ def get_all_load_balanced_nics(datacenter_id, load_balancer_id)
73
+ request(
74
+ :expects => [200],
75
+ :method => 'GET',
76
+ :path => "/datacenters/#{datacenter_id}/loadbalancers/#{load_balancer_id}/balancednics?depth=5"
77
+ )
78
+ end
79
+ end
80
+
81
+ class Mock
82
+ def get_all_load_balanced_nics(datacenter_id, load_balancer_id)
83
+ if load_balancer = self.data[:load_balancers]['items'].find {
84
+ |lb| lb["datacenter_id"] == datacenter_id && lb["id"] == load_balancer_id
85
+ }
86
+ else
87
+ raise Fog::Errors::NotFound.new("The requested resource could not be found")
88
+ end
89
+
90
+ load_balanced_nics = load_balancer['entities'][:balancednics]
91
+
92
+ response = Excon::Response.new
93
+ response.status = 200
94
+ response.body = load_balanced_nics
95
+ response
96
+ end
97
+ end
98
+ end
99
+ end
100
+ end
@@ -0,0 +1,117 @@
1
+ module Fog
2
+ module Compute
3
+ class ProfitBricks
4
+ class Real
5
+ # Retrieve a list of load balancers within the data center
6
+ #
7
+ # ==== Parameters
8
+ # * datacenter_id<~String> - UUID of the data center
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 created resource
15
+ # * href<~String> - URL to the object’s representation (absolute path)
16
+ # * items<~Hash> - Collection of individual Load Balancer objects
17
+ # * id<~String> - The resource's unique identifier
18
+ # * type<~String> - The type of the created resource
19
+ # * href<~String> - URL to the object’s representation (absolute path)
20
+ # * metadata<~Hash> - Hash containing the Load Balancer 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> - Load Balancer state
27
+ # * properties<~Hash> - Hash containing the Load Balancer properties
28
+ # * name<~String> - The name of the Load Balancer
29
+ # * ip<~String> - IPv4 address of the Load Balancer. All attached NICs will inherit this IP
30
+ # * dhcp<~Boolean> - Indicates if the Load Balancer will reserve an IP using DHCP
31
+ # * entities<~Hash> - Hash containing the Load Balancer entities
32
+ # * balancednics<~Hash> - Hash containing the NICs associated to the Load Balancer, represented as a collection
33
+ # * id<~String> - The resource's unique identifier
34
+ # * type<~String> - The type of the created resource
35
+ # * href<~String> - URL to the object’s representation (absolute path)
36
+ # * items<~Hash> - Collection of individual NIC objects
37
+ # * id<~String> - The resource's unique identifier
38
+ # * type<~String> - The type of the created resource
39
+ # * href<~String> - URL to the object’s representation (absolute path)
40
+ # * metadata<~Hash> - Hash containing the NIC metadata
41
+ # * createdDate<~String> - The date the resource was created
42
+ # * createdBy<~String> - The user who created the resource
43
+ # * etag<~String> - The etag for the resource
44
+ # * lastModifiedDate<~String> - The last time the resource has been modified
45
+ # * lastModifiedBy<~String> - The user who last modified the resource
46
+ # * state<~String> - NIC state
47
+ # * properties<~Hash> - Hash containing the NIC properties
48
+ # * name<~String> - The name of the NIC
49
+ # * mac<~String> - The MAC address of the NIC
50
+ # * ips<~Array> - IPs assigned to the NIC represented as a collection
51
+ # * dhcp<~Boolean> - Boolean value that indicates if the NIC is using DHCP or not
52
+ # * lan<~Integer> - The LAN ID the NIC sits on
53
+ # * firewallActive<~Boolean> - Once a firewall rule is added, this will reflect a true value
54
+ # * entities<~Hash> - Hash containing the NIC entities
55
+ # * firewallrules<~Hash> - A list of firewall rules associated to the NIC represented as a collection
56
+ # * id<~String> - The resource's unique identifier
57
+ # * type<~String> - The type of the resource
58
+ # * href<~String> - URL to the object’s representation (absolute path)
59
+ # * items<~Array> - Collection of individual firewall rules objects
60
+ # * id<~String> - The resource's unique identifier
61
+ # * type<~String> - The type of the resource
62
+ # * href<~String> - URL to the object’s representation (absolute path)
63
+ # * metadata<~Hash> - Hash containing the Firewall Rule metadata
64
+ # * createdDate<~String> - The date the resource was created
65
+ # * createdBy<~String> - The user who created the resource
66
+ # * etag<~String> - The etag for the resource
67
+ # * lastModifiedDate<~String> - The last time the resource has been modified
68
+ # * lastModifiedBy<~String> - The user who last modified the resource
69
+ # * state<~String> - Firewall Rule state
70
+ # * properties<~Hash> - Hash containing the Firewall Rule properties
71
+ # * name<~String> - The name of the Firewall Rule
72
+ # * protocol<~String> - The protocol for the rule: TCP, UDP, ICMP, ANY
73
+ # * sourceMac<~Array> - Only traffic originating from the respective MAC address is allowed.
74
+ # Valid format: aa:bb:cc:dd:ee:ff. Value null allows all source MAC address
75
+ # * sourceIp<~Boolean> - Only traffic originating from the respective IPv4 address is allowed.
76
+ # Value null allows all source IPs
77
+ # * targetIp<~Integer> - In case the target NIC has multiple IP addresses, only traffic directed
78
+ # to the respective IP address of the NIC is allowed. Value null allows all target IPs
79
+ # * icmpCode<~Boolean> - Defines the allowed code (from 0 to 254) if protocol ICMP is chosen.
80
+ # Value null allows all codes.
81
+ # * icmpType<~Boolean> - Defines the allowed type (from 0 to 254) if the protocol ICMP is chosen.
82
+ # Value null allows all types
83
+ # * portRangeStart<~Boolean> - Defines the start range of the allowed port (from 1 to 65534)
84
+ # if protocol TCP or UDP is chosen. Leave portRangeStart and portRangeEnd
85
+ # value null to allow all ports
86
+ # * portRangeEnd<~Boolean> - Defines the end range of the allowed port (from 1 to 65534)
87
+ # if the protocol TCP or UDP is chosen. Leave portRangeStart and
88
+ # portRangeEnd value null to allow all ports
89
+ #
90
+ # {ProfitBricks API Documentation}[https://devops.profitbricks.com/api/cloud/v2/#list-load-balancers]
91
+ def get_all_load_balancers(datacenter_id)
92
+ request(
93
+ :expects => [200],
94
+ :method => 'GET',
95
+ :path => "/datacenters/#{datacenter_id}/loadbalancers?depth=5"
96
+ )
97
+ end
98
+ end
99
+
100
+ class Mock
101
+ def get_all_load_balancers(datacenter_id)
102
+ if load_balancers = self.data[:load_balancers]['items'].select {
103
+ |attrib| attrib['datacenter_id'] == datacenter_id
104
+ }
105
+ else
106
+ raise Fog::Errors::NotFound.new('The requested Load Balancer resource could not be found')
107
+ end
108
+
109
+ response = Excon::Response.new
110
+ response.status = 200
111
+ response.body = self.data[:load_balancers]
112
+ response
113
+ end
114
+ end
115
+ end
116
+ end
117
+ end
@@ -0,0 +1,44 @@
1
+ module Fog
2
+ module Compute
3
+ class ProfitBricks
4
+ class Real
5
+ # Get all locations
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 consisting of country/city
18
+ # * type<~String> - The type of the requested resource
19
+ # * href<~String> - URL to the object’s representation (absolute path)
20
+ # * properties<~Hash> - A hash containing the location properties
21
+ # * name<~String> - A descriptive name for the location
22
+ # * features<~Array> - Features available at this location
23
+ #
24
+ # {ProfitBricks API Documentation}[https://devops.profitbricks.com/api/cloud/v2/#list-locations]
25
+ def get_all_locations
26
+ request(
27
+ :expects => [200],
28
+ :method => 'GET',
29
+ :path => "/locations?depth=5"
30
+ )
31
+ end
32
+ end
33
+
34
+ class Mock
35
+ def get_all_locations(options={})
36
+ response = Excon::Response.new
37
+ response.status = 200
38
+ response.body = self.data[:locations]
39
+ response
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,102 @@
1
+ module Fog
2
+ module Compute
3
+ class ProfitBricks
4
+ class Real
5
+ # Retrieves a list of NICs
6
+ #
7
+ # ==== Parameters
8
+ # * datacenter_id<~String> - UUID of the datacenter
9
+ # * server_id<~String> - UUID of the server
10
+ #
11
+ # ==== Returns
12
+ # * response<~Excon::Response>:
13
+ # * body<~Hash>:
14
+ # * id<~String> - The resource's unique identifier
15
+ # * type<~String> - The type of the created resource
16
+ # * href<~String> - URL to the object’s representation (absolute path)
17
+ # * items<~Hash> - Collection of individual nic objects
18
+ # * id<~String> - The resource's unique identifier
19
+ # * type<~String> - The type of the created resource
20
+ # * href<~String> - URL to the object’s representation (absolute path)
21
+ # * metadata<~Hash> - Hash containing the NIC metadata
22
+ # * createdDate<~String> - The date the resource was created
23
+ # * createdBy<~String> - The user who created the resource
24
+ # * etag<~String> - The etag for the resource
25
+ # * lastModifiedDate<~String> - The last time the resource has been modified
26
+ # * lastModifiedBy<~String> - The user who last modified the resource
27
+ # * state<~String> - NIC state
28
+ # * properties<~Hash> - Hash containing the NIC properties
29
+ # * name<~String> - The name of the NIC
30
+ # * mac<~String> - The MAC address of the NIC
31
+ # * ips<~Array> - IPs assigned to the NIC represented as a collection
32
+ # * dhcp<~Boolean> - Boolean value that indicates if the NIC is using DHCP or not
33
+ # * lan<~Integer> - The LAN ID the NIC sits on
34
+ # * firewallActive<~Boolean> - Once a firewall rule is added, this will reflect a true value
35
+ # * entities<~Hash> - Hash containing the NIC entities
36
+ # * firewallrules<~Hash> - A list of firewall rules associated to the NIC represented as a collection
37
+ # * id<~String> - The resource's unique identifier
38
+ # * type<~String> - The type of the resource
39
+ # * href<~String> - URL to the object’s representation (absolute path)
40
+ # * items<~Array> - Collection of individual firewall rules objects
41
+ # * id<~String> - The resource's unique identifier
42
+ # * type<~String> - The type of the resource
43
+ # * href<~String> - URL to the object’s representation (absolute path)
44
+ # * metadata<~Hash> - Hash containing the Firewall Rule metadata
45
+ # * createdDate<~String> - The date the resource was created
46
+ # * createdBy<~String> - The user who created the resource
47
+ # * etag<~String> - The etag for the resource
48
+ # * lastModifiedDate<~String> - The last time the resource has been modified
49
+ # * lastModifiedBy<~String> - The user who last modified the resource
50
+ # * state<~String> - Firewall Rule state
51
+ # * properties<~Hash> - Hash containing the Firewall Rule properties
52
+ # * name<~String> - The name of the Firewall Rule
53
+ # * protocol<~String> - The protocol for the rule: TCP, UDP, ICMP, ANY
54
+ # * sourceMac<~Array> - Only traffic originating from the respective MAC address is allowed.
55
+ # Valid format: aa:bb:cc:dd:ee:ff. Value null allows all source MAC address
56
+ # * sourceIp<~Boolean> - Only traffic originating from the respective IPv4 address is allowed.
57
+ # Value null allows all source IPs
58
+ # * targetIp<~Integer> - In case the target NIC has multiple IP addresses, only traffic directed
59
+ # to the respective IP address of the NIC is allowed. Value null allows all target IPs
60
+ # * icmpCode<~Boolean> - Defines the allowed code (from 0 to 254) if protocol ICMP is chosen.
61
+ # Value null allows all codes.
62
+ # * icmpType<~Boolean> - Defines the allowed type (from 0 to 254) if the protocol ICMP is chosen.
63
+ # Value null allows all types
64
+ # * portRangeStart<~Boolean> - Defines the start range of the allowed port (from 1 to 65534)
65
+ # if protocol TCP or UDP is chosen. Leave portRangeStart and portRangeEnd
66
+ # value null to allow all ports
67
+ # * portRangeEnd<~Boolean> - Defines the end range of the allowed port (from 1 to 65534)
68
+ # if the protocol TCP or UDP is chosen. Leave portRangeStart and
69
+ # portRangeEnd value null to allow all ports
70
+ #
71
+ # {ProfitBricks API Documentation}[https://devops.profitbricks.com/api/cloud/v2/#list-nics]
72
+ def get_all_nic(datacenter_id, server_id)
73
+ request(
74
+ :expects => [200],
75
+ :method => 'GET',
76
+ :path => "/datacenters/#{datacenter_id}/servers/#{server_id}/nics?depth=5"
77
+ )
78
+ end
79
+ end
80
+
81
+ class Mock
82
+ def get_all_nic(datacenter_id, server_id)
83
+ nics = self.data[:nics]
84
+
85
+ if nics = self.data[:nics]['items'].select {
86
+ |attrib| attrib['datacenter_id'] == datacenter_id
87
+ }
88
+ else
89
+ raise Fog::Errors::NotFound.new('The resource could not be found')
90
+ end
91
+
92
+ nics['items'] = nics
93
+ response = Excon::Response.new
94
+ response.status = 200
95
+ response.body = interfaces
96
+
97
+ response
98
+ end
99
+ end
100
+ end
101
+ end
102
+ end