deltacloud-client-vm 1.1.4.2 → 1.1.4.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (191) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +176 -0
  3. data/NOTICE +8 -0
  4. data/README.md +73 -0
  5. data/Rakefile +122 -0
  6. data/deltacloud-client-vm.gemspec +24 -0
  7. data/lib/deltacloud_vm/client.rb +79 -0
  8. data/lib/deltacloud_vm/client/base_error.rb +80 -0
  9. data/lib/deltacloud_vm/client/connection.rb +139 -0
  10. data/lib/deltacloud_vm/client/helpers/model_helper.rb +69 -0
  11. data/lib/deltacloud_vm/client/helpers/property_helper.rb +103 -0
  12. data/lib/deltacloud_vm/client/helpers/xml_helper.rb +33 -0
  13. data/lib/deltacloud_vm/client/methods.rb +33 -0
  14. data/lib/deltacloud_vm/client/methods/address.rb +67 -0
  15. data/lib/deltacloud_vm/client/methods/api.rb +96 -0
  16. data/lib/deltacloud_vm/client/methods/backward_compatiblity.rb +72 -0
  17. data/lib/deltacloud_vm/client/methods/blob.rb +91 -0
  18. data/lib/deltacloud_vm/client/methods/bucket.rb +55 -0
  19. data/lib/deltacloud_vm/client/methods/common.rb +46 -0
  20. data/lib/deltacloud_vm/client/methods/driver.rb +53 -0
  21. data/lib/deltacloud_vm/client/methods/firewall.rb +67 -0
  22. data/lib/deltacloud_vm/client/methods/hardware_profile.rb +41 -0
  23. data/lib/deltacloud_vm/client/methods/image.rb +61 -0
  24. data/lib/deltacloud_vm/client/methods/instance.rb +141 -0
  25. data/lib/deltacloud_vm/client/methods/instance_state.rb +41 -0
  26. data/lib/deltacloud_vm/client/methods/key.rb +58 -0
  27. data/lib/deltacloud_vm/client/methods/load_balancer.rb +96 -0
  28. data/lib/deltacloud_vm/client/methods/metric.rb +54 -0
  29. data/lib/deltacloud_vm/client/methods/realm.rb +42 -0
  30. data/lib/deltacloud_vm/client/methods/storage_snapshot.rb +61 -0
  31. data/lib/deltacloud_vm/client/methods/storage_volume.rb +94 -0
  32. data/lib/deltacloud_vm/client/models.rb +32 -0
  33. data/lib/deltacloud_vm/client/models/address.rb +57 -0
  34. data/lib/deltacloud_vm/client/models/base.rb +153 -0
  35. data/lib/deltacloud_vm/client/models/blob.rb +56 -0
  36. data/lib/deltacloud_vm/client/models/bucket.rb +65 -0
  37. data/lib/deltacloud_vm/client/models/driver.rb +87 -0
  38. data/lib/deltacloud_vm/client/models/firewall.rb +64 -0
  39. data/lib/deltacloud_vm/client/models/hardware_profile.rb +68 -0
  40. data/lib/deltacloud_vm/client/models/image.rb +60 -0
  41. data/lib/deltacloud_vm/client/models/instance.rb +142 -0
  42. data/lib/deltacloud_vm/client/models/instance_address.rb +40 -0
  43. data/lib/deltacloud_vm/client/models/instance_state.rb +52 -0
  44. data/lib/deltacloud_vm/client/models/key.rb +52 -0
  45. data/lib/deltacloud_vm/client/models/load_balancer.rb +55 -0
  46. data/lib/deltacloud_vm/client/models/metric.rb +72 -0
  47. data/lib/deltacloud_vm/client/models/realm.rb +29 -0
  48. data/lib/deltacloud_vm/client/models/storage_snapshot.rb +54 -0
  49. data/lib/deltacloud_vm/client/models/storage_volume.rb +96 -0
  50. data/lib/deltacloud_vm/core_ext.rb +19 -0
  51. data/lib/deltacloud_vm/core_ext/element.rb +32 -0
  52. data/lib/deltacloud_vm/core_ext/fixnum.rb +30 -0
  53. data/lib/deltacloud_vm/core_ext/nil.rb +22 -0
  54. data/lib/deltacloud_vm/core_ext/string.rb +49 -0
  55. data/lib/deltacloud_vm/error_response.rb +93 -0
  56. data/tests/client/client_test.rb +51 -0
  57. data/tests/client/connection_test.rb +77 -0
  58. data/tests/core_ext/element_test.rb +40 -0
  59. data/tests/core_ext/fixnum_test.rb +35 -0
  60. data/tests/core_ext/nil.rb +27 -0
  61. data/tests/core_ext/string_test.rb +47 -0
  62. data/tests/fixtures/instances_cleanup.yml +681 -0
  63. data/tests/fixtures/test_0001_connects_to_Deltacloud_API.yml +60 -0
  64. data/tests/fixtures/test_0001_support_cpu.yml +444 -0
  65. data/tests/fixtures/test_0001_support_original_body.yml +116 -0
  66. data/tests/fixtures/test_0001_supports_addresses.yml +178 -0
  67. data/tests/fixtures/test_0001_supports_api_host.yml +60 -0
  68. data/tests/fixtures/test_0001_supports_attached_.yml +282 -0
  69. data/tests/fixtures/test_0001_supports_blobs.yml +475 -0
  70. data/tests/fixtures/test_0001_supports_bucket.yml +200 -0
  71. data/tests/fixtures/test_0001_supports_buckets.yml +160 -0
  72. data/tests/fixtures/test_0001_supports_drivers.yml +202 -0
  73. data/tests/fixtures/test_0001_supports_firewalls.yml +399 -0
  74. data/tests/fixtures/test_0001_supports_hardware_profiles.yml +262 -0
  75. data/tests/fixtures/test_0001_supports_images.yml +224 -0
  76. data/tests/fixtures/test_0001_supports_instance_states.yml +156 -0
  77. data/tests/fixtures/test_0001_supports_instances.yml +486 -0
  78. data/tests/fixtures/test_0001_supports_keys.yml +198 -0
  79. data/tests/fixtures/test_0001_supports_path.yml +60 -0
  80. data/tests/fixtures/test_0001_supports_realms.yml +152 -0
  81. data/tests/fixtures/test_0001_supports_storage_snapshots.yml +164 -0
  82. data/tests/fixtures/test_0001_supports_storage_volumes.yml +176 -0
  83. data/tests/fixtures/test_0001_supports_to_get_providers.yml +410 -0
  84. data/tests/fixtures/test_0002_support_blob.yml +148 -0
  85. data/tests/fixtures/test_0002_support_instance_state.yml +204 -0
  86. data/tests/fixtures/test_0002_support_memory.yml +444 -0
  87. data/tests/fixtures/test_0002_support_on_Provider.yml +130 -0
  88. data/tests/fixtures/test_0002_supports_api_port.yml +60 -0
  89. data/tests/fixtures/test_0002_supports_api_uri.yml +60 -0
  90. data/tests/fixtures/test_0002_supports_driver.yml +219 -0
  91. data/tests/fixtures/test_0002_supports_extract_xml_body_using_faraday_connection.yml +117 -0
  92. data/tests/fixtures/test_0002_supports_filtering_addresses_by_id_param.yml +156 -0
  93. data/tests/fixtures/test_0002_supports_filtering_buckets_by_id_param.yml +156 -0
  94. data/tests/fixtures/test_0002_supports_filtering_firewalls_by_id_param.yml +207 -0
  95. data/tests/fixtures/test_0002_supports_filtering_hardware_profiles_by_id_param.yml +158 -0
  96. data/tests/fixtures/test_0002_supports_filtering_images_by_id_param.yml +165 -0
  97. data/tests/fixtures/test_0002_supports_filtering_instances_by_id_param.yml +164 -0
  98. data/tests/fixtures/test_0002_supports_filtering_keys_by_id_param.yml +178 -0
  99. data/tests/fixtures/test_0002_supports_filtering_realms_by_id.yml +104 -0
  100. data/tests/fixtures/test_0002_supports_filtering_storage_snapshots_by_id_param.yml +155 -0
  101. data/tests/fixtures/test_0002_supports_filtering_storage_volumes_by_id_param.yml +157 -0
  102. data/tests/fixtures/test_0002_supports_hardware_profiles.yml +262 -0
  103. data/tests/fixtures/test_0002_supports_is_compatible_.yml +116 -0
  104. data/tests/fixtures/test_0002_supports_snapshot_.yml +202 -0
  105. data/tests/fixtures/test_0002_supports_version.yml +60 -0
  106. data/tests/fixtures/test_0003_caches_the_API_entrypoint.yml +60 -0
  107. data/tests/fixtures/test_0003_support_address.yml +197 -0
  108. data/tests/fixtures/test_0003_support_bucket.yml +198 -0
  109. data/tests/fixtures/test_0003_support_create_blob.yml +105 -0
  110. data/tests/fixtures/test_0003_support_create_blob_and_destroy_blob.yml +138 -0
  111. data/tests/fixtures/test_0003_support_firewall.yml +768 -0
  112. data/tests/fixtures/test_0003_support_hardware_profile.yml +199 -0
  113. data/tests/fixtures/test_0003_support_image.yml +207 -0
  114. data/tests/fixtures/test_0003_support_instance.yml +206 -0
  115. data/tests/fixtures/test_0003_support_key.yml +220 -0
  116. data/tests/fixtures/test_0003_support_realm.yml +195 -0
  117. data/tests/fixtures/test_0003_support_storage.yml +444 -0
  118. data/tests/fixtures/test_0003_support_storage_snapshot.yml +196 -0
  119. data/tests/fixtures/test_0003_support_storage_volume.yml +197 -0
  120. data/tests/fixtures/test_0003_support_to_change_driver_with_Client.yml +72 -0
  121. data/tests/fixtures/test_0003_supports_connect.yml +60 -0
  122. data/tests/fixtures/test_0003_supports_extract_xml_body_using_nokogiri_document.yml +117 -0
  123. data/tests/fixtures/test_0003_supports_instance.yml +396 -0
  124. data/tests/fixtures/test_0003_supports_is_compatible_.yml +116 -0
  125. data/tests/fixtures/test_0003_supports_lunch_image.yml +367 -0
  126. data/tests/fixtures/test_0003_supports_providers.yml +102 -0
  127. data/tests/fixtures/test_0003_supports_version.yml +60 -0
  128. data/tests/fixtures/test_0004_support_architecture.yml +444 -0
  129. data/tests/fixtures/test_0004_support_create_address.yml +197 -0
  130. data/tests/fixtures/test_0004_support_create_blob_and_destroy_blob_with_meta_params.yml +139 -0
  131. data/tests/fixtures/test_0004_support_create_bucket.yml +180 -0
  132. data/tests/fixtures/test_0004_support_create_bucket_and_destroy_bucket.yml +180 -0
  133. data/tests/fixtures/test_0004_support_create_firewall_and_destroy_firewall.yml +496 -0
  134. data/tests/fixtures/test_0004_support_create_image_and_destroy_image.yml +1527 -0
  135. data/tests/fixtures/test_0004_support_create_instance.yml +115 -0
  136. data/tests/fixtures/test_0004_support_create_key_and_destroy_key.yml +206 -0
  137. data/tests/fixtures/test_0004_support_create_volume.yml +105 -0
  138. data/tests/fixtures/test_0004_support_create_volume_and_destroy_volume.yml +181 -0
  139. data/tests/fixtures/test_0004_support_to_test_of_valid_DC_connection.yml +60 -0
  140. data/tests/fixtures/test_0004_supports_current_driver.yml +60 -0
  141. data/tests/fixtures/test_0004_supports_extract_xml_body_using_nokogiri_element.yml +117 -0
  142. data/tests/fixtures/test_0004_supports_lunch_image.yml +312 -0
  143. data/tests/fixtures/test_0004_supports_valid_credentials_.yml +215 -0
  144. data/tests/fixtures/test_0004_supports_with_config.yml +129 -0
  145. data/tests/fixtures/test_0005_support_attach_storage_volume.yml +102 -0
  146. data/tests/fixtures/test_0005_support_attach_storage_volume_and_detach_storage_volume.yml +142 -0
  147. data/tests/fixtures/test_0005_support_create_instance_with_hwp_id.yml +115 -0
  148. data/tests/fixtures/test_0005_support_opaque_.yml +152 -0
  149. data/tests/fixtures/test_0005_supports_current_provider.yml +134 -0
  150. data/tests/fixtures/test_0005_supports_id.yml +116 -0
  151. data/tests/fixtures/test_0005_supports_switching_drivers_per_instance.yml +129 -0
  152. data/tests/fixtures/test_0005_supports_use_driver.yml +60 -0
  153. data/tests/fixtures/test_0006_support_create_instance_with_realm_id.yml +115 -0
  154. data/tests/fixtures/test_0006_supports_discovered_.yml +60 -0
  155. data/tests/fixtures/test_0006_supports_supported_collections.yml +60 -0
  156. data/tests/fixtures/test_0006_supports_switching_providers_per_instance.yml +208 -0
  157. data/tests/fixtures/test_0007_support_create_instance_with_name.yml +115 -0
  158. data/tests/fixtures/test_0007_support_switching_provider_without_credentials.yml +208 -0
  159. data/tests/fixtures/test_0007_supports_support_.yml +60 -0
  160. data/tests/fixtures/test_0007_supports_valid_credentials_on_class.yml +370 -0
  161. data/tests/fixtures/test_0008_support_stop_instance.yml +166 -0
  162. data/tests/fixtures/test_0008_supports_must_support_.yml +60 -0
  163. data/tests/fixtures/test_0009_support_start_instance.yml +217 -0
  164. data/tests/fixtures/test_0009_supports_features.yml +60 -0
  165. data/tests/fixtures/test_0010_support_reboot_instance.yml +166 -0
  166. data/tests/fixtures/test_0010_supports_feature_.yml +60 -0
  167. data/tests/helpers/model_test.rb +33 -0
  168. data/tests/helpers/xml_test.rb +56 -0
  169. data/tests/methods/address_test.rb +64 -0
  170. data/tests/methods/api_test.rb +97 -0
  171. data/tests/methods/backward_compatibility_test.rb +87 -0
  172. data/tests/methods/blob_test.rb +64 -0
  173. data/tests/methods/bucket_test.rb +62 -0
  174. data/tests/methods/driver_test.rb +48 -0
  175. data/tests/methods/firewall_test.rb +84 -0
  176. data/tests/methods/hardware_profile_test.rb +53 -0
  177. data/tests/methods/image_test.rb +64 -0
  178. data/tests/methods/instance_state_test.rb +43 -0
  179. data/tests/methods/instance_test.rb +126 -0
  180. data/tests/methods/key_test.rb +63 -0
  181. data/tests/methods/realm_test.rb +50 -0
  182. data/tests/methods/storage_snapshot_test.rb +53 -0
  183. data/tests/methods/storage_volume_test.rb +81 -0
  184. data/tests/models/blob_test.rb +40 -0
  185. data/tests/models/bucket_test.rb +37 -0
  186. data/tests/models/driver_test.rb +42 -0
  187. data/tests/models/hardware_profile_test.rb +80 -0
  188. data/tests/models/image_test.rb +65 -0
  189. data/tests/models/storage_volume_test.rb +52 -0
  190. data/tests/test_helper.rb +64 -0
  191. metadata +191 -2
@@ -0,0 +1,67 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one or more
2
+ # contributor license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright ownership. The
4
+ # ASF licenses this file to you under the Apache License, Version 2.0 (the
5
+ # "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13
+ # License for the specific language governing permissions and limitations
14
+ # under the License.
15
+
16
+ module DeltacloudVM::Client
17
+ module Methods
18
+ module Firewall
19
+
20
+ # Retrieve list of all firewall entities
21
+ #
22
+ # - filter_opts:
23
+ # - :id -> Filter entities using 'id' attribute
24
+ #
25
+ def firewalls(filter_opts={})
26
+ from_collection :firewalls,
27
+ connection.get(api_uri('firewalls'), filter_opts)
28
+ end
29
+
30
+ # Retrieve the single firewall entity
31
+ #
32
+ # - firewall_id -> Firewall entity to retrieve
33
+ #
34
+ def firewall(firewall_id)
35
+ from_resource :firewall,
36
+ connection.get(api_uri("firewalls/#{firewall_id}"))
37
+ end
38
+
39
+ # Create a new firewall
40
+ #
41
+ # - name - Name to associate with new firewall
42
+ # - create_opts
43
+ # :name -> Name of firewall
44
+ #
45
+ def create_firewall(name, create_opts={})
46
+ create_resource :firewall, { :name => name }.merge(create_opts)
47
+ end
48
+
49
+ def destroy_firewall(firewall_id)
50
+ destroy_resource :firewall, firewall_id
51
+ end
52
+
53
+ def add_firewall_rule(firewall_id, protocol, port_from, port_to, opts={})
54
+ r = connection.post(api_uri("firewalls/#{firewall_id}/rules")) do |request|
55
+ request.params = {
56
+ :protocol => protocol,
57
+ :port_from => port_from,
58
+ :port_to => port_to
59
+ }
60
+ # TODO: Add support for sources
61
+ end
62
+ model(:firewall).convert(self, r.body)
63
+ end
64
+
65
+ end
66
+ end
67
+ end
@@ -0,0 +1,41 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one or more
2
+ # contributor license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright ownership. The
4
+ # ASF licenses this file to you under the Apache License, Version 2.0 (the
5
+ # "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13
+ # License for the specific language governing permissions and limitations
14
+ # under the License.
15
+
16
+ module DeltacloudVM::Client
17
+ module Methods
18
+ module HardwareProfile
19
+
20
+ # Retrieve list of all hardware_profiles
21
+ #
22
+ # - filter_opts:
23
+ # - :id -> Filter hardware_profiles using their 'id'
24
+ #
25
+ def hardware_profiles(filter_opts={})
26
+ from_collection :hardware_profiles,
27
+ connection.get(api_uri('hardware_profiles'), filter_opts)
28
+ end
29
+
30
+ # Retrieve the given hardware_profile
31
+ #
32
+ # - hwp_id -> hardware_profile to retrieve
33
+ #
34
+ def hardware_profile(hwp_id)
35
+ from_resource :hardware_profile,
36
+ connection.get(api_uri("hardware_profiles/#{hwp_id}"))
37
+ end
38
+
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,61 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one or more
2
+ # contributor license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright ownership. The
4
+ # ASF licenses this file to you under the Apache License, Version 2.0 (the
5
+ # "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13
+ # License for the specific language governing permissions and limitations
14
+ # under the License.
15
+
16
+ module DeltacloudVM::Client
17
+ module Methods
18
+ module Image
19
+
20
+ # Retrieve list of all images
21
+ #
22
+ # - filter_opts:
23
+ # - :id -> Filter images using their 'id'
24
+ # - :state -> Filter images by their 'state'
25
+ # - :architecture -> Filter images by their 'architecture'
26
+ #
27
+ def images(filter_opts={})
28
+ from_collection :images,
29
+ connection.get(api_uri('images'), filter_opts)
30
+ end
31
+
32
+ # Retrieve the given image
33
+ #
34
+ # - image_id -> Image to retrieve
35
+ #
36
+ def image(image_id)
37
+ from_resource :image,
38
+ connection.get(api_uri("images/#{image_id}"))
39
+ end
40
+
41
+ # Create a new image from instance
42
+ #
43
+ # - instance_id -> The stopped instance used for creation
44
+ # - create_opts
45
+ # - :name -> Name of the new image
46
+ # - :description -> Description of the new image
47
+ #
48
+ def create_image(instance_id, create_opts={})
49
+ create_resource :image, { :instance_id => instance_id }.merge(create_opts)
50
+ end
51
+
52
+ # Destroy given image
53
+ # NOTE: This operation might not be supported for all drivers.
54
+ #
55
+ def destroy_image(image_id)
56
+ destroy_resource :image, image_id
57
+ end
58
+
59
+ end
60
+ end
61
+ end
@@ -0,0 +1,141 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one or more
2
+ # contributor license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright ownership. The
4
+ # ASF licenses this file to you under the Apache License, Version 2.0 (the
5
+ # "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13
+ # License for the specific language governing permissions and limitations
14
+ # under the License.
15
+
16
+ module DeltacloudVM::Client
17
+ module Methods
18
+ module Instance
19
+
20
+ # Retrieve list of all instances
21
+ #
22
+ # - filter_opts:
23
+ # - :id -> Filter instances using their 'id'
24
+ # - :state -> Filter instances by their 'state'
25
+ # - :realm_id -> Filter instances based on their 'realm_id'
26
+ #
27
+ def instances(filter_opts={})
28
+ from_collection(
29
+ :instances,
30
+ connection.get(api_uri('/instances'), filter_opts)
31
+ )
32
+ end
33
+
34
+ # Retrieve the given instance
35
+ #
36
+ # - instance_id -> Instance to retrieve
37
+ #
38
+ def instance(instance_id)
39
+ from_resource(
40
+ :instance,
41
+ connection.get(api_uri("instances/#{instance_id}"))
42
+ )
43
+ end
44
+
45
+ # Create a new instance
46
+ #
47
+ # - image_id -> Image to use for instance creation
48
+ # (img1, ami-12345, etc...)
49
+ # - create_opts -> Various options that DC support for the current
50
+ # provider.
51
+ #
52
+ # Returns created instance, or list of created instances or all instances.
53
+ #
54
+ def create_instance(image_id, create_opts={})
55
+ create_opts[:user_data] = Base64::encode64(create_opts[:user_data]) if create_opts[:user_data]
56
+ r = create_resource :instance, create_opts.merge(
57
+ :image_id => image_id,
58
+ :no_convert_model => true
59
+ )
60
+ parse_create_instance(r)
61
+ end
62
+
63
+ # Destroy the current +Instance+
64
+ # Returns 'true' if the response was 204 No Content
65
+ #
66
+ # - instance_id -> The 'id' of the Instance to destroy
67
+ #
68
+ def destroy_instance(instance_id)
69
+ destroy_resource :instance, instance_id
70
+ end
71
+
72
+ # Attempt to change the +Instance+ state to STOPPED
73
+ #
74
+ # - instance_id -> The 'id' of the Instance to stop
75
+ #
76
+ def stop_instance(instance_id)
77
+ instance_action :stop, instance_id
78
+ end
79
+
80
+ # Attempt to change the +Instance+ state to STARTED
81
+ #
82
+ # - instance_id -> The 'id' of the Instance to start
83
+ #
84
+ def start_instance(instance_id)
85
+ instance_action :start, instance_id
86
+ end
87
+
88
+ # Attempt to reboot the +Instance+
89
+ #
90
+ # - instance_id -> The 'id' of the Instance to reboot
91
+ #
92
+ def reboot_instance(instance_id)
93
+ instance_action :reboot, instance_id
94
+ end
95
+
96
+ private
97
+
98
+ # Avoid codu duplication ;-)
99
+ #
100
+ def instance_action(action, instance_id)
101
+ result = connection.post(
102
+ api_uri("/instances/#{instance_id}/#{action}")
103
+ )
104
+ if result.status.is_ok?
105
+ from_resource(:instance, result)
106
+ else
107
+ instance(instance_id)
108
+ end
109
+ end
110
+
111
+ # Handles parsing of +create_instance+ method
112
+ #
113
+ # - response -> +create_instance+ HTTP response body
114
+ #
115
+ def parse_create_instance(response)
116
+ # If DeltacloudVM API return only Location (30x), follow it and
117
+ # retrieve created instance from there.
118
+ #
119
+ if response.status.is_redirect?
120
+ # If DeltacloudVM API redirect to list of instances
121
+ # then return list of **all** instances, otherwise
122
+ # grab the instance_id from Location header
123
+ #
124
+ redirect_instance = response.headers['Location'].split('/').last
125
+ if redirect_instance == 'instances'
126
+ instances
127
+ else
128
+ instance(redirect_instance)
129
+ end
130
+ elsif response.body.to_xml.root.name == 'instances'
131
+ # If more than 1 instance was created, return list
132
+ #
133
+ from_collection(:instances, response.body)
134
+ else
135
+ from_resource(:instance, response)
136
+ end
137
+ end
138
+
139
+ end
140
+ end
141
+ end
@@ -0,0 +1,41 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one or more
2
+ # contributor license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright ownership. The
4
+ # ASF licenses this file to you under the Apache License, Version 2.0 (the
5
+ # "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13
+ # License for the specific language governing permissions and limitations
14
+ # under the License.
15
+
16
+ module DeltacloudVM::Client
17
+ module Methods
18
+ module InstanceState
19
+
20
+ # Representation of the current driver state machine
21
+ #
22
+ def instance_states
23
+ r = connection.get(api_uri("instance_states"))
24
+ r.body.to_xml.root.xpath('state').map do |se|
25
+ state = model(:instance_state).new_state(se['name'])
26
+ se.xpath('transition').each do |te|
27
+ state.transitions << model(:instance_state).new_transition(
28
+ te['to'], te['action']
29
+ )
30
+ end
31
+ state
32
+ end
33
+ end
34
+
35
+ def instance_state(name)
36
+ instance_states.find { |s| s.name.to_s.eql?(name.to_s) }
37
+ end
38
+
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,58 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one or more
2
+ # contributor license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright ownership. The
4
+ # ASF licenses this file to you under the Apache License, Version 2.0 (the
5
+ # "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13
+ # License for the specific language governing permissions and limitations
14
+ # under the License.
15
+
16
+ module DeltacloudVM::Client
17
+ module Methods
18
+ module Key
19
+
20
+ # Retrieve list of all key entities
21
+ #
22
+ # - filter_opts:
23
+ # - :id -> Filter entities using 'id' attribute
24
+ #
25
+ def keys(filter_opts={})
26
+ from_collection :keys,
27
+ connection.get(api_uri('keys'), filter_opts)
28
+ end
29
+
30
+ # Retrieve the single key entity
31
+ #
32
+ # - key_id -> Key entity to retrieve
33
+ #
34
+ def key(key_id)
35
+ from_resource :key,
36
+ connection.get(api_uri("keys/#{key_id}"))
37
+ end
38
+
39
+ # Create a new credentials to use with authentication
40
+ # to an +Instance+
41
+ #
42
+ # - key_name -> The name of the key
43
+ # - create_opts
44
+ # : public_key -> Your SSH public key (eg. ~/.ssh/id_rsa.pub)
45
+ #
46
+ def create_key(key_name, create_opts={})
47
+ create_resource :key, create_opts.merge(:name => key_name)
48
+ end
49
+
50
+ # Destroy the SSH key
51
+ #
52
+ def destroy_key(key_id)
53
+ destroy_resource :key, key_id
54
+ end
55
+
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,96 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one or more
2
+ # contributor license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright ownership. The
4
+ # ASF licenses this file to you under the Apache License, Version 2.0 (the
5
+ # "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13
+ # License for the specific language governing permissions and limitations
14
+ # under the License.
15
+
16
+ module DeltacloudVM::Client
17
+ module Methods
18
+ module LoadBalancer
19
+
20
+ # Retrieve list of all load_balancer entities
21
+ #
22
+ # Filter options:
23
+ #
24
+ # - :id -> Filter entities using 'id' attribute
25
+ #
26
+ def load_balancers(filter_opts={})
27
+ from_collection :load_balancers,
28
+ connection.get(api_uri('load_balancers'), filter_opts)
29
+ end
30
+
31
+ # Retrieve the single load_balancer entity
32
+ #
33
+ # - load_balancer_id -> LoadBalancer entity to retrieve
34
+ #
35
+ def load_balancer(load_balancer_id)
36
+ from_resource :load_balancer,
37
+ connection.get(api_uri("load_balancers/#{load_balancer_id}"))
38
+ end
39
+
40
+ # Destroy load balancer
41
+ # Returns 'true' if the response was 204 No Content
42
+ #
43
+ # - load_balancer_id -> The 'id' of the LoadBalancer to destroy
44
+ #
45
+ def destroy_load_balancer(load_balancer_id)
46
+ destroy_resource :load_balancer, load_balancer_id
47
+ end
48
+
49
+ # Create a new load_balancer
50
+ #
51
+ # - create_opts
52
+ # :name - Load Balancer name
53
+ # :realm_id - Load Balancer realm id
54
+ # :listener_protocol - Protocol to use for LB listener (HTTP or TCP)
55
+ # :listener_balancer_port - Load Balancer port (like. 80)
56
+ # :listener_instance_port - Instances port (like, 8080)
57
+ #
58
+ # Example:
59
+ #
60
+ # client.create_load_balancer(:name => 'test2', :realm_id => 'us-east-1a', :listener_protocol => 'HTTP', :listener_balancer_port => '80', :listener_instance_port => '8080')
61
+ #
62
+ def create_load_balancer(create_opts={})
63
+ must_support! :load_balancers
64
+ response = connection.post(api_uri('load_balancers')) do |request|
65
+ request.params = create_opts
66
+ end
67
+ model(:load_balancer).convert(self, response.body)
68
+ end
69
+
70
+ # Register an Instance to given Load Balancer
71
+ #
72
+ # load_balancer_id - Load Balancer to use
73
+ # instance_id - Instance to register to load balancer
74
+ #
75
+ def register_instance(load_balancer_id, instance_id)
76
+ response = connection.post(api_uri("/load_balancers/#{load_balancer_id}/register")) do |request|
77
+ request.params = { 'instance_id' => instance_id }
78
+ end
79
+ model(:load_balancer).convert(self, response.body)
80
+ end
81
+
82
+ # Unregister an Instance from given Load Balancer
83
+ #
84
+ # load_balancer_id - Load Balancer to use
85
+ # instance_id - Instance to unregister from load balancer
86
+ #
87
+ def unregister_instance(load_balancer_id, instance_id)
88
+ response = connection.post(api_uri("/load_balancers/#{load_balancer_id}/unregister")) do |request|
89
+ request.params = { 'instance_id' => instance_id }
90
+ end
91
+ model(:load_balancer).convert(self, response.body)
92
+ end
93
+
94
+ end
95
+ end
96
+ end