brightbox-cli 0.14.1 → 0.15.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (381) hide show
  1. data/.gitignore +7 -0
  2. data/bin/brightbox-firewall-policies +14 -0
  3. data/bin/brightbox-firewall-rules +14 -0
  4. data/bin/brightbox-groups +14 -0
  5. data/lib/brightbox-cli/api.rb +2 -1
  6. data/lib/brightbox-cli/cloud_ips.rb +2 -2
  7. data/lib/brightbox-cli/command_generator.rb +3 -0
  8. data/lib/brightbox-cli/commands/cloudips-update.rb +2 -2
  9. data/lib/brightbox-cli/commands/config-client-list.rb +1 -1
  10. data/lib/brightbox-cli/commands/firewall-policies-apply.rb +31 -0
  11. data/lib/brightbox-cli/commands/firewall-policies-create.rb +39 -0
  12. data/lib/brightbox-cli/commands/firewall-policies-destroy.rb +24 -0
  13. data/lib/brightbox-cli/commands/firewall-policies-list.rb +17 -0
  14. data/lib/brightbox-cli/commands/firewall-policies-remove.rb +31 -0
  15. data/lib/brightbox-cli/commands/firewall-policies-show.rb +19 -0
  16. data/lib/brightbox-cli/commands/firewall-rules-create.rb +51 -0
  17. data/lib/brightbox-cli/commands/firewall-rules-destroy.rb +24 -0
  18. data/lib/brightbox-cli/commands/firewall-rules-list.rb +19 -0
  19. data/lib/brightbox-cli/commands/firewall-rules-show.rb +22 -0
  20. data/lib/brightbox-cli/commands/groups-add-server.rb +23 -0
  21. data/lib/brightbox-cli/commands/groups-create.rb +22 -0
  22. data/lib/brightbox-cli/commands/groups-destroy.rb +23 -0
  23. data/lib/brightbox-cli/commands/groups-list.rb +16 -0
  24. data/lib/brightbox-cli/commands/groups-move_servers.rb +39 -0
  25. data/lib/brightbox-cli/commands/groups-remove-servers.rb +35 -0
  26. data/lib/brightbox-cli/commands/groups-show.rb +14 -0
  27. data/lib/brightbox-cli/commands/groups-update.rb +38 -0
  28. data/lib/brightbox-cli/commands/images-register.rb +11 -3
  29. data/lib/brightbox-cli/commands/images-update.rb +4 -0
  30. data/lib/brightbox-cli/commands/servers-create.rb +19 -8
  31. data/lib/brightbox-cli/commands/servers-list.rb +0 -3
  32. data/lib/brightbox-cli/commands/servers-show.rb +3 -39
  33. data/lib/brightbox-cli/commands/servers-stop.rb +1 -1
  34. data/lib/brightbox-cli/detailed_server.rb +43 -0
  35. data/lib/brightbox-cli/detailed_server_group.rb +13 -0
  36. data/lib/brightbox-cli/firewall_policy.rb +32 -0
  37. data/lib/brightbox-cli/firewall_rule.rb +39 -0
  38. data/lib/brightbox-cli/firewall_rules.rb +26 -0
  39. data/lib/brightbox-cli/images.rb +2 -1
  40. data/lib/brightbox-cli/server_groups.rb +64 -0
  41. data/lib/brightbox-cli/servers.rb +5 -13
  42. data/lib/brightbox-cli/vendor/fog/Rakefile +17 -2
  43. data/lib/brightbox-cli/vendor/fog/changelog.txt +434 -0
  44. data/lib/brightbox-cli/vendor/fog/docs/_layouts/default.html +12 -12
  45. data/lib/brightbox-cli/vendor/fog/docs/about/getting_started.markdown +2 -2
  46. data/lib/brightbox-cli/vendor/fog/docs/dns/index.markdown +3 -3
  47. data/lib/brightbox-cli/vendor/fog/docs/index.markdown +1 -1
  48. data/lib/brightbox-cli/vendor/fog/docs/public/css/fog.css +14 -1
  49. data/lib/brightbox-cli/vendor/fog/docs/public/images/engineyard.png +0 -0
  50. data/lib/brightbox-cli/vendor/fog/docs/public/images/fog.png +0 -0
  51. data/lib/brightbox-cli/vendor/fog/fog.gemspec +4 -4
  52. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/cloud_watch.rb +14 -0
  53. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/compute.rb +50 -19
  54. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/elasticache.rb +127 -0
  55. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/models/cloud_watch/alarm.rb +12 -0
  56. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/models/cloud_watch/alarm_data.rb +39 -0
  57. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/models/cloud_watch/alarm_datum.rb +66 -0
  58. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/models/cloud_watch/alarm_histories.rb +18 -0
  59. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/models/cloud_watch/alarm_history.rb +16 -0
  60. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/models/cloud_watch/alarms.rb +30 -0
  61. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/models/compute/servers.rb +1 -1
  62. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/models/elasticache/cluster.rb +69 -0
  63. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/models/elasticache/clusters.rb +31 -0
  64. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/models/elasticache/parameter_group.rb +32 -0
  65. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/models/elasticache/parameter_groups.rb +30 -0
  66. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/models/elasticache/security_group.rb +52 -0
  67. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/models/elasticache/security_groups.rb +30 -0
  68. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/cloud_watch/delete_alarms.rb +26 -0
  69. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/cloud_watch/describe_alarm_history.rb +40 -0
  70. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/cloud_watch/describe_alarms.rb +73 -0
  71. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/cloud_watch/describe_alarms_for_metric.rb +71 -0
  72. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/cloud_watch/disable_alarm_actions.rb +26 -0
  73. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/cloud_watch/enable_alarm_actions.rb +26 -0
  74. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/cloud_watch/get_metric_statistics.rb +1 -0
  75. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/cloud_watch/put_metric_alarm.rb +26 -0
  76. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/cloud_watch/set_alarm_state.rb +26 -0
  77. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/compute/spot_instance_requests.rb +2 -2
  78. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/{aws → dns}/change_resource_record_sets.rb +0 -0
  79. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/{aws → dns}/create_hosted_zone.rb +0 -0
  80. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/{aws → dns}/delete_hosted_zone.rb +0 -0
  81. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/{aws → dns}/get_change.rb +0 -0
  82. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/{aws → dns}/get_hosted_zone.rb +0 -0
  83. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/{aws → dns}/list_hosted_zones.rb +0 -0
  84. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/{aws → dns}/list_resource_record_sets.rb +0 -0
  85. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/authorize_cache_security_group_ingress.rb +26 -0
  86. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/base.rb +34 -0
  87. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/cache_cluster_parser.rb +79 -0
  88. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/describe_cache_clusters.rb +27 -0
  89. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/describe_cache_parameters.rb +22 -0
  90. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/describe_engine_default_parameters.rb +22 -0
  91. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/describe_parameter_groups.rb +27 -0
  92. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/describe_security_groups.rb +27 -0
  93. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/engine_defaults_parser.rb +59 -0
  94. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/event_list.rb +38 -0
  95. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/modify_parameter_group.rb +27 -0
  96. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/parameter_group_parser.rb +30 -0
  97. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/reset_parameter_group.rb +27 -0
  98. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/security_group_parser.rb +40 -0
  99. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/single_cache_cluster.rb +22 -0
  100. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/single_parameter_group.rb +22 -0
  101. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/single_security_group.rb +34 -0
  102. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/cloud_watch/delete_alarms.rb +30 -0
  103. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb +33 -0
  104. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/cloud_watch/describe_alarms.rb +38 -0
  105. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/cloud_watch/describe_alarms_for_metric.rb +39 -0
  106. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/cloud_watch/disable_alarm_actions.rb +30 -0
  107. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb +30 -0
  108. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/cloud_watch/put_metric_alarm.rb +84 -0
  109. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/cloud_watch/set_alarm_state.rb +31 -0
  110. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/compute/create_security_group.rb +5 -4
  111. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/compute/create_snapshot.rb +2 -3
  112. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/compute/create_tags.rb +5 -3
  113. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/compute/create_volume.rb +0 -1
  114. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/compute/delete_tags.rb +2 -3
  115. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/compute/describe_images.rb +5 -8
  116. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/compute/describe_instances.rb +2 -2
  117. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/compute/describe_snapshots.rb +3 -1
  118. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/compute/describe_volumes.rb +3 -2
  119. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/compute/modify_image_attribute.rb +32 -0
  120. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/compute/purchase_reserved_instances_offering.rb +1 -1
  121. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/compute/register_image.rb +0 -1
  122. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/compute/run_instances.rb +1 -2
  123. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elasticache/authorize_cache_security_group_ingress.rb +36 -0
  124. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elasticache/create_cache_cluster.rb +62 -0
  125. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elasticache/create_cache_parameter_group.rb +37 -0
  126. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elasticache/create_cache_security_group.rb +33 -0
  127. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elasticache/delete_cache_cluster.rb +32 -0
  128. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elasticache/delete_cache_parameter_group.rb +31 -0
  129. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elasticache/delete_cache_security_group.rb +31 -0
  130. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elasticache/describe_cache_clusters.rb +39 -0
  131. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elasticache/describe_cache_parameter_groups.rb +34 -0
  132. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elasticache/describe_cache_parameters.rb +36 -0
  133. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elasticache/describe_cache_security_groups.rb +34 -0
  134. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elasticache/describe_engine_default_parameters.rb +35 -0
  135. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elasticache/describe_events.rb +46 -0
  136. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elasticache/modify_cache_cluster.rb +70 -0
  137. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elasticache/modify_cache_parameter_group.rb +45 -0
  138. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elasticache/reboot_cache_cluster.rb +44 -0
  139. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb +46 -0
  140. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb +37 -0
  141. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elb/create_load_balancer.rb +1 -1
  142. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elb/create_load_balancer_listeners.rb +1 -1
  143. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elb/deregister_instances_from_load_balancer.rb +1 -1
  144. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elb/describe_instance_health.rb +2 -2
  145. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elb/register_instances_with_load_balancer.rb +1 -1
  146. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/iam/get_server_certificate.rb +5 -7
  147. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/iam/list_server_certificates.rb +3 -1
  148. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/iam/upload_server_certificate.rb +3 -2
  149. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/sqs/change_message_visibility.rb +30 -0
  150. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/sqs/create_queue.rb +35 -1
  151. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/sqs/delete_message.rb +29 -0
  152. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/sqs/delete_queue.rb +24 -1
  153. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/sqs/get_queue_attributes.rb +22 -1
  154. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/sqs/list_queues.rb +15 -1
  155. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/sqs/receive_message.rb +55 -1
  156. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/sqs/send_message.rb +39 -1
  157. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/sqs/set_queue_attributes.rb +19 -1
  158. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/copy_object.rb +1 -1
  159. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/get_object_acl.rb +1 -1
  160. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/hash_to_acl.rb +2 -3
  161. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/sqs.rb +30 -0
  162. data/lib/brightbox-cli/vendor/fog/lib/fog/aws/storage.rb +2 -1
  163. data/lib/brightbox-cli/vendor/fog/lib/fog/aws.rb +17 -14
  164. data/lib/brightbox-cli/vendor/fog/lib/fog/bin/aws.rb +4 -0
  165. data/lib/brightbox-cli/vendor/fog/lib/fog/bin/openstack.rb +31 -0
  166. data/lib/brightbox-cli/vendor/fog/lib/fog/bin.rb +1 -0
  167. data/lib/brightbox-cli/vendor/fog/lib/fog/bluebox/models/compute/server.rb +1 -1
  168. data/lib/brightbox-cli/vendor/fog/lib/fog/bluebox/requests/compute/create_template.rb +1 -1
  169. data/lib/brightbox-cli/vendor/fog/lib/fog/bluebox.rb +2 -2
  170. data/lib/brightbox-cli/vendor/fog/lib/fog/brightbox/compute.rb +5 -0
  171. data/lib/brightbox-cli/vendor/fog/lib/fog/brightbox/models/compute/account.rb +1 -1
  172. data/lib/brightbox-cli/vendor/fog/lib/fog/brightbox/models/compute/firewall_policies.rb +29 -0
  173. data/lib/brightbox-cli/vendor/fog/lib/fog/brightbox/models/compute/firewall_policy.rb +65 -0
  174. data/lib/brightbox-cli/vendor/fog/lib/fog/brightbox/models/compute/firewall_rule.rb +54 -0
  175. data/lib/brightbox-cli/vendor/fog/lib/fog/brightbox/models/compute/firewall_rules.rb +24 -0
  176. data/lib/brightbox-cli/vendor/fog/lib/fog/brightbox/models/compute/image.rb +2 -0
  177. data/lib/brightbox-cli/vendor/fog/lib/fog/brightbox/models/compute/server.rb +27 -2
  178. data/lib/brightbox-cli/vendor/fog/lib/fog/brightbox/models/compute/server_group.rb +1 -1
  179. data/lib/brightbox-cli/vendor/fog/lib/fog/brightbox/requests/compute/remove_firewall_policy.rb +14 -0
  180. data/lib/brightbox-cli/vendor/fog/lib/fog/brightbox.rb +1 -1
  181. data/lib/brightbox-cli/vendor/fog/lib/fog/compute/models/server.rb +1 -2
  182. data/lib/brightbox-cli/vendor/fog/lib/fog/compute.rb +3 -0
  183. data/lib/brightbox-cli/vendor/fog/lib/fog/core/attributes.rb +5 -5
  184. data/lib/brightbox-cli/vendor/fog/lib/fog/core/credentials.rb +5 -0
  185. data/lib/brightbox-cli/vendor/fog/lib/fog/core/errors.rb +4 -0
  186. data/lib/brightbox-cli/vendor/fog/lib/fog/core/provider.rb +9 -4
  187. data/lib/brightbox-cli/vendor/fog/lib/fog/dnsimple.rb +1 -1
  188. data/lib/brightbox-cli/vendor/fog/lib/fog/dnsmadeeasy.rb +1 -1
  189. data/lib/brightbox-cli/vendor/fog/lib/fog/dynect.rb +1 -1
  190. data/lib/brightbox-cli/vendor/fog/lib/fog/ecloud/compute.rb +1 -5
  191. data/lib/brightbox-cli/vendor/fog/lib/fog/ecloud.rb +1 -1
  192. data/lib/brightbox-cli/vendor/fog/lib/fog/glesys/compute.rb +20 -4
  193. data/lib/brightbox-cli/vendor/fog/lib/fog/glesys/models/compute/templates.rb +0 -6
  194. data/lib/brightbox-cli/vendor/fog/lib/fog/glesys.rb +1 -1
  195. data/lib/brightbox-cli/vendor/fog/lib/fog/go_grid.rb +1 -1
  196. data/lib/brightbox-cli/vendor/fog/lib/fog/google.rb +1 -1
  197. data/lib/brightbox-cli/vendor/fog/lib/fog/libvirt/models/compute/server.rb +1 -1
  198. data/lib/brightbox-cli/vendor/fog/lib/fog/libvirt/models/compute/uri.rb +7 -3
  199. data/lib/brightbox-cli/vendor/fog/lib/fog/libvirt.rb +1 -1
  200. data/lib/brightbox-cli/vendor/fog/lib/fog/linode/models/compute/server.rb +10 -0
  201. data/lib/brightbox-cli/vendor/fog/lib/fog/linode/{models/dns/linode → requests/dns}/domain_create.rb +3 -3
  202. data/lib/brightbox-cli/vendor/fog/lib/fog/linode/{models/dns/linode → requests/dns}/domain_delete.rb +0 -0
  203. data/lib/brightbox-cli/vendor/fog/lib/fog/linode/{models/dns/linode → requests/dns}/domain_list.rb +1 -1
  204. data/lib/brightbox-cli/vendor/fog/lib/fog/linode/{models/dns/linode → requests/dns}/domain_resource_create.rb +8 -8
  205. data/lib/brightbox-cli/vendor/fog/lib/fog/linode/{models/dns/linode → requests/dns}/domain_resource_delete.rb +0 -0
  206. data/lib/brightbox-cli/vendor/fog/lib/fog/linode/{models/dns/linode → requests/dns}/domain_resource_list.rb +8 -8
  207. data/lib/brightbox-cli/vendor/fog/lib/fog/linode/{models/dns/linode → requests/dns}/domain_resource_update.rb +9 -9
  208. data/lib/brightbox-cli/vendor/fog/lib/fog/linode/{models/dns/linode → requests/dns}/domain_update.rb +5 -5
  209. data/lib/brightbox-cli/vendor/fog/lib/fog/linode.rb +2 -2
  210. data/lib/brightbox-cli/vendor/fog/lib/fog/local/models/storage/directories.rb +33 -0
  211. data/lib/brightbox-cli/vendor/fog/lib/fog/local/models/storage/directory.rb +57 -0
  212. data/lib/brightbox-cli/vendor/fog/lib/fog/local/models/storage/file.rb +113 -0
  213. data/lib/brightbox-cli/vendor/fog/lib/fog/local/models/storage/files.rb +87 -0
  214. data/lib/brightbox-cli/vendor/fog/lib/fog/local/storage.rb +71 -0
  215. data/lib/brightbox-cli/vendor/fog/lib/fog/local.rb +1 -1
  216. data/lib/brightbox-cli/vendor/fog/lib/fog/new_servers.rb +1 -1
  217. data/lib/brightbox-cli/vendor/fog/lib/fog/ninefold/compute.rb +1 -1
  218. data/lib/brightbox-cli/vendor/fog/lib/fog/ninefold/models/compute/server.rb +2 -1
  219. data/lib/brightbox-cli/vendor/fog/lib/fog/ninefold.rb +2 -2
  220. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/compute.rb +198 -0
  221. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/models/compute/flavor.rb +20 -0
  222. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/models/compute/flavors.rb +28 -0
  223. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/models/compute/image.rb +57 -0
  224. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/models/compute/images.rb +33 -0
  225. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/models/compute/meta.rb +29 -0
  226. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/models/compute/metadata.rb +69 -0
  227. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/models/compute/server.rb +195 -0
  228. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/models/compute/servers.rb +36 -0
  229. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/models/meta_parent.rb +33 -0
  230. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/change_password_server.rb +24 -0
  231. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/confirm_resized_server.rb +24 -0
  232. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/create_image.rb +49 -0
  233. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/create_server.rb +75 -0
  234. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/delete_image.rb +40 -0
  235. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/delete_meta.rb +28 -0
  236. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/delete_server.rb +38 -0
  237. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/get_flavor_details.rb +43 -0
  238. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/get_image_details.rb +33 -0
  239. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/get_meta.rb +29 -0
  240. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/get_server_details.rb +32 -0
  241. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/list_addresses.rb +32 -0
  242. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/list_flavors.rb +38 -0
  243. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/list_flavors_detail.rb +38 -0
  244. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/list_images.rb +33 -0
  245. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/list_images_detail.rb +39 -0
  246. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/list_metadata.rb +28 -0
  247. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/list_private_addresses.rb +32 -0
  248. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/list_public_addresses.rb +32 -0
  249. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/list_servers.rb +33 -0
  250. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/list_servers_detail.rb +39 -0
  251. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/reboot_server.rb +24 -0
  252. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/rebuild_server.rb +31 -0
  253. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/resize_server.rb +24 -0
  254. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/revert_resized_server.rb +30 -0
  255. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/server_action.rb +18 -0
  256. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/set_metadata.rb +45 -0
  257. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/update_meta.rb +45 -0
  258. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/update_metadata.rb +46 -0
  259. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack/requests/compute/update_server.rb +35 -0
  260. data/lib/brightbox-cli/vendor/fog/lib/fog/openstack.rb +113 -0
  261. data/lib/brightbox-cli/vendor/fog/lib/fog/providers.rb +1 -0
  262. data/lib/brightbox-cli/vendor/fog/lib/fog/rackspace/dns.rb +25 -0
  263. data/lib/brightbox-cli/vendor/fog/lib/fog/rackspace/requests/dns/callback.rb +3 -2
  264. data/lib/brightbox-cli/vendor/fog/lib/fog/rackspace.rb +5 -5
  265. data/lib/brightbox-cli/vendor/fog/lib/fog/slicehost/{parsers/dns/slicehost → requests/dns}/create_record.rb +2 -2
  266. data/lib/brightbox-cli/vendor/fog/lib/fog/slicehost/{parsers/dns/slicehost → requests/dns}/create_zone.rb +1 -1
  267. data/lib/brightbox-cli/vendor/fog/lib/fog/slicehost/{parsers/dns/slicehost → requests/dns}/delete_record.rb +0 -0
  268. data/lib/brightbox-cli/vendor/fog/lib/fog/slicehost/{parsers/dns/slicehost → requests/dns}/delete_zone.rb +0 -0
  269. data/lib/brightbox-cli/vendor/fog/lib/fog/slicehost/{parsers/dns/slicehost → requests/dns}/get_record.rb +2 -2
  270. data/lib/brightbox-cli/vendor/fog/lib/fog/slicehost/{parsers/dns/slicehost → requests/dns}/get_records.rb +1 -1
  271. data/lib/brightbox-cli/vendor/fog/lib/fog/slicehost/{parsers/dns/slicehost → requests/dns}/get_zone.rb +0 -0
  272. data/lib/brightbox-cli/vendor/fog/lib/fog/slicehost/{parsers/dns/slicehost → requests/dns}/get_zones.rb +0 -0
  273. data/lib/brightbox-cli/vendor/fog/lib/fog/slicehost.rb +2 -2
  274. data/lib/brightbox-cli/vendor/fog/lib/fog/storm_on_demand.rb +1 -1
  275. data/lib/brightbox-cli/vendor/fog/lib/fog/vcloud.rb +1 -1
  276. data/lib/brightbox-cli/vendor/fog/lib/fog/virtual_box.rb +1 -1
  277. data/lib/brightbox-cli/vendor/fog/lib/fog/vmfusion/models/compute/servers.rb +6 -6
  278. data/lib/brightbox-cli/vendor/fog/lib/fog/vmfusion.rb +1 -1
  279. data/lib/brightbox-cli/vendor/fog/lib/fog/voxel.rb +1 -1
  280. data/lib/brightbox-cli/vendor/fog/lib/fog/vsphere/compute.rb +0 -2
  281. data/lib/brightbox-cli/vendor/fog/lib/fog/vsphere.rb +1 -1
  282. data/lib/brightbox-cli/vendor/fog/lib/fog/zerigo/dns.rb +14 -3
  283. data/lib/brightbox-cli/vendor/fog/lib/fog/zerigo/models/dns/record.rb +1 -1
  284. data/lib/brightbox-cli/vendor/fog/lib/fog/zerigo/models/dns/records.rb +5 -0
  285. data/lib/brightbox-cli/vendor/fog/lib/fog/zerigo/models/dns/zones.rb +2 -2
  286. data/lib/brightbox-cli/vendor/fog/lib/fog/zerigo/requests/dns/count_hosts.rb +20 -1
  287. data/lib/brightbox-cli/vendor/fog/lib/fog/zerigo/requests/dns/count_zones.rb +12 -1
  288. data/lib/brightbox-cli/vendor/fog/lib/fog/zerigo/requests/dns/create_host.rb +67 -1
  289. data/lib/brightbox-cli/vendor/fog/lib/fog/zerigo/requests/dns/create_zone.rb +44 -1
  290. data/lib/brightbox-cli/vendor/fog/lib/fog/zerigo/requests/dns/delete_host.rb +19 -0
  291. data/lib/brightbox-cli/vendor/fog/lib/fog/zerigo/requests/dns/delete_zone.rb +17 -0
  292. data/lib/brightbox-cli/vendor/fog/lib/fog/zerigo/requests/dns/find_hosts.rb +22 -1
  293. data/lib/brightbox-cli/vendor/fog/lib/fog/zerigo/requests/dns/get_host.rb +18 -1
  294. data/lib/brightbox-cli/vendor/fog/lib/fog/zerigo/requests/dns/get_zone.rb +19 -2
  295. data/lib/brightbox-cli/vendor/fog/lib/fog/zerigo/requests/dns/get_zone_stats.rb +23 -0
  296. data/lib/brightbox-cli/vendor/fog/lib/fog/zerigo/requests/dns/list_hosts.rb +20 -1
  297. data/lib/brightbox-cli/vendor/fog/lib/fog/zerigo/requests/dns/list_zones.rb +15 -0
  298. data/lib/brightbox-cli/vendor/fog/lib/fog/zerigo/requests/dns/update_host.rb +20 -1
  299. data/lib/brightbox-cli/vendor/fog/lib/fog/zerigo/requests/dns/update_zone.rb +20 -1
  300. data/lib/brightbox-cli/vendor/fog/lib/fog/zerigo.rb +1 -1
  301. data/lib/brightbox-cli/vendor/fog/lib/fog.rb +1 -1
  302. data/lib/brightbox-cli/vendor/fog/tests/aws/models/cloud_watch/alarm_data_tests.rb +40 -0
  303. data/lib/brightbox-cli/vendor/fog/tests/aws/models/cloud_watch/alarm_history_tests.rb +20 -0
  304. data/lib/brightbox-cli/vendor/fog/tests/aws/models/compute/server_tests.rb +2 -0
  305. data/lib/brightbox-cli/vendor/fog/tests/aws/models/elasticache/cluster_tests.rb +30 -0
  306. data/lib/brightbox-cli/vendor/fog/tests/aws/models/elasticache/parameter_groups_tests.rb +17 -0
  307. data/lib/brightbox-cli/vendor/fog/tests/aws/models/elasticache/security_groups_tests.rb +52 -0
  308. data/lib/brightbox-cli/vendor/fog/tests/aws/models/elb/model_tests.rb +2 -0
  309. data/lib/brightbox-cli/vendor/fog/tests/aws/requests/cloud_watch/list_metrics_test.rb +5 -5
  310. data/lib/brightbox-cli/vendor/fog/tests/aws/requests/compute/image_tests.rb +33 -2
  311. data/lib/brightbox-cli/vendor/fog/tests/aws/requests/compute/tag_tests.rb +40 -0
  312. data/lib/brightbox-cli/vendor/fog/tests/aws/requests/elasticache/cache_cluster_tests.rb +137 -0
  313. data/lib/brightbox-cli/vendor/fog/tests/aws/requests/elasticache/describe_events.rb +17 -0
  314. data/lib/brightbox-cli/vendor/fog/tests/aws/requests/elasticache/helper.rb +68 -0
  315. data/lib/brightbox-cli/vendor/fog/tests/aws/requests/elasticache/parameter_group_tests.rb +105 -0
  316. data/lib/brightbox-cli/vendor/fog/tests/aws/requests/elasticache/security_group_tests.rb +107 -0
  317. data/lib/brightbox-cli/vendor/fog/tests/aws/requests/iam/server_certificate_tests.rb +39 -18
  318. data/lib/brightbox-cli/vendor/fog/tests/aws/requests/simpledb/attributes_tests.rb +18 -18
  319. data/lib/brightbox-cli/vendor/fog/tests/aws/requests/simpledb/domain_tests.rb +7 -7
  320. data/lib/brightbox-cli/vendor/fog/tests/aws/requests/sqs/message_tests.rb +1 -7
  321. data/lib/brightbox-cli/vendor/fog/tests/aws/requests/sqs/queue_tests.rb +0 -5
  322. data/lib/brightbox-cli/vendor/fog/tests/brightbox/requests/compute/load_balancer_tests.rb +1 -0
  323. data/lib/brightbox-cli/vendor/fog/tests/compute/models/flavors_tests.rb +1 -1
  324. data/lib/brightbox-cli/vendor/fog/tests/core/attribute_tests.rb +29 -0
  325. data/lib/brightbox-cli/vendor/fog/tests/core/credential_tests.rb +2 -0
  326. data/lib/brightbox-cli/vendor/fog/tests/helper.rb +1 -1
  327. data/lib/brightbox-cli/vendor/fog/tests/helpers/collection_helper.rb +5 -0
  328. data/lib/brightbox-cli/vendor/fog/tests/helpers/compute/server_helper.rb +1 -0
  329. data/lib/brightbox-cli/vendor/fog/tests/helpers/formats_helper.rb +16 -8
  330. data/lib/brightbox-cli/vendor/fog/tests/helpers/formats_helper_tests.rb +8 -0
  331. data/lib/brightbox-cli/vendor/fog/tests/helpers/mock_helper.rb +6 -2
  332. data/lib/brightbox-cli/vendor/fog/tests/linode/requests/compute/linodeplans_tests.rb +2 -1
  333. data/lib/brightbox-cli/vendor/fog/tests/ninefold/requests/compute/helper.rb +14 -17
  334. data/lib/brightbox-cli/vendor/fog/tests/openstack/requests/compute/flavor_tests.rb +35 -0
  335. data/lib/brightbox-cli/vendor/fog/tests/openstack/requests/compute/helper.rb +17 -0
  336. data/lib/brightbox-cli/vendor/fog/tests/openstack/requests/compute/image_tests.rb +59 -0
  337. data/lib/brightbox-cli/vendor/fog/tests/openstack/requests/compute/server_tests.rb +142 -0
  338. data/lib/brightbox-cli/vendor/fog/tests/rackspace/requests/dns/dns_tests.rb +21 -21
  339. data/lib/brightbox-cli/vendor/fog/tests/rackspace/requests/dns/helper.rb +17 -9
  340. data/lib/brightbox-cli/vendor/fog/tests/rackspace/requests/dns/records_tests.rb +16 -16
  341. data/lib/brightbox-cli/vendor/fog/tests/rackspace/requests/{access_list_tests.rb → load_balancers/access_list_tests.rb} +0 -0
  342. data/lib/brightbox-cli/vendor/fog/tests/rackspace/requests/{algorithm_tests.rb → load_balancers/algorithm_tests.rb} +0 -0
  343. data/lib/brightbox-cli/vendor/fog/tests/rackspace/requests/{connection_logging_tests.rb → load_balancers/connection_logging_tests.rb} +0 -0
  344. data/lib/brightbox-cli/vendor/fog/tests/rackspace/requests/{connection_throttling_tests.rb → load_balancers/connection_throttling_tests.rb} +0 -0
  345. data/lib/brightbox-cli/vendor/fog/tests/rackspace/requests/{helper.rb → load_balancers/helper.rb} +12 -1
  346. data/lib/brightbox-cli/vendor/fog/tests/rackspace/requests/{load_balancer_tests.rb → load_balancers/load_balancer_tests.rb} +1 -1
  347. data/lib/brightbox-cli/vendor/fog/tests/rackspace/requests/{load_balancer_usage_tests.rb → load_balancers/load_balancer_usage_tests.rb} +0 -0
  348. data/lib/brightbox-cli/vendor/fog/tests/rackspace/requests/{monitor_tests.rb → load_balancers/monitor_tests.rb} +0 -0
  349. data/lib/brightbox-cli/vendor/fog/tests/rackspace/requests/{node_tests.rb → load_balancers/node_tests.rb} +0 -0
  350. data/lib/brightbox-cli/vendor/fog/tests/rackspace/requests/{protocol_tests.rb → load_balancers/protocol_tests.rb} +0 -0
  351. data/lib/brightbox-cli/vendor/fog/tests/rackspace/requests/{session_persistence_tests.rb → load_balancers/session_persistence_tests.rb} +0 -0
  352. data/lib/brightbox-cli/vendor/fog/tests/rackspace/requests/{usage_tests.rb → load_balancers/usage_tests.rb} +0 -0
  353. data/lib/brightbox-cli/vendor/fog/tests/rackspace/requests/{virtual_ip_tests.rb → load_balancers/virtual_ip_tests.rb} +2 -2
  354. data/lib/brightbox-cli/vendor/fog/tests/vsphere/requests/compute/vm_clone_tests.rb +2 -1
  355. data/lib/brightbox-cli/version.rb +1 -1
  356. data/lib/brightbox_cli.rb +16 -10
  357. data/spec/cloud_ips_spec.rb +17 -0
  358. data/spec/firewall_policy_spec.rb +78 -0
  359. data/spec/firewall_rule_spec.rb +74 -0
  360. data/spec/fixtures/vcr_cassettes/apply_firewall_policy.yml +137 -0
  361. data/spec/fixtures/vcr_cassettes/create_firewall_policy.yml +104 -0
  362. data/spec/fixtures/vcr_cassettes/destroy_firewall_policy.yml +137 -0
  363. data/spec/fixtures/vcr_cassettes/firewall_rule.yml +36 -0
  364. data/spec/fixtures/vcr_cassettes/firewall_rule_create.yml +36 -0
  365. data/spec/fixtures/vcr_cassettes/firewall_rule_destroy.yml +69 -0
  366. data/spec/fixtures/vcr_cassettes/firewall_rule_list.yml +36 -0
  367. data/spec/fixtures/vcr_cassettes/firewall_rule_show.yml +36 -0
  368. data/spec/fixtures/vcr_cassettes/list_cloud_ip.yml +36 -0
  369. data/spec/fixtures/vcr_cassettes/list_firewall_policy.yml +36 -0
  370. data/spec/fixtures/vcr_cassettes/list_server_groups.yml +36 -0
  371. data/spec/fixtures/vcr_cassettes/server_destroy.yml +71 -0
  372. data/spec/fixtures/vcr_cassettes/server_show.yml +141 -0
  373. data/spec/fixtures/vcr_cassettes/server_shutdown.yml +104 -0
  374. data/spec/fixtures/vcr_cassettes/server_start.yml +137 -0
  375. data/spec/fixtures/vcr_cassettes/server_stop.yml +104 -0
  376. data/spec/fixtures/vcr_cassettes/show_firewall_policy.yml +36 -0
  377. data/spec/server_group_spec.rb +15 -0
  378. data/spec/servers_spec.rb +75 -0
  379. data/spec/spec_helper.rb +0 -3
  380. data/tools/bash_completion_script +269 -122
  381. metadata +224 -41
@@ -1,3 +1,437 @@
1
+ 1.0.0 09/29/2011 a81be08ef2473af91f16f4926e5b3dfa962a34ae
2
+ =========================================================
3
+
4
+ Stats! { 'collaborators' => 16, 'downloads' => 245745, 'forks' => 260, 'open_issues' => 13, 'watchers' => 1521 }
5
+
6
+ MVP! Patrick Debois
7
+
8
+ [Libvirt]
9
+ if transport is empty, ssh can't be enabled. thanks Patrick Debois
10
+ Enable to pass an libvirt_ip_command for looking up the mac -> ip_address . Using eval to allow for passing of mac address in ip_command. thanks Patrick Debois
11
+ corrected typo for appending string output to IO.popen. thanks Patrick Debois
12
+ initialize the ip_address as an empty string. thanks Patrick Debois
13
+ more specific error if the ip_command results in string that has no ip-address format. thanks Patrick Debois
14
+ Remove the newlines after running the local ip_command. thanks Patrick Debois
15
+ rename xml_desc to xml as an attribute and hide all non_dynamic attributes from fog console. thanks Patrick Debois
16
+ added blocked state and corrected crashed to shutoff state. thanks Patrick Debois
17
+ renamed 'raw' connection to raw in the Fog Connection. thanks Patrick Debois
18
+
19
+ [Libvirt|Compute]
20
+ renamed all disk_ params for server creation to volume_ to make it consistent with the object type volume. thanks Patrick Debois
21
+
22
+ [aws]
23
+ remove base64 require (duplicates require in fog/core). thanks geemus
24
+
25
+ [aws/sqs]
26
+ Adding SQS mocking support. thanks Istvan Hoka
27
+
28
+ [aws|acs]
29
+ Create ACS security_group model and collection. thanks Aaron Suggs
30
+ Improve security group tests. thanks Aaron Suggs
31
+ Adds ACS#delete_cache_security_group. thanks Benton Roberts
32
+ Added security group methods. thanks Benton Roberts
33
+ Update CacheSecurityGroup API to public beta 2011-07-15. thanks Benton Roberts
34
+
35
+ [aws|cloudwatch]
36
+ Fix whitespace. thanks Jens Braeuer
37
+
38
+ [aws|compute]
39
+ add snapshot method to volume model. thanks Andrei Serdeliuc
40
+ Correct path. thanks Dylan Egan
41
+ raise an ArgumentError if image_id is nil, otherwise an ugly InternalError is returned from AWS. thanks Dylan Egan
42
+ wait for ready before testing tags. thanks geemus
43
+ fixes for mocks tests. thanks geemus
44
+ fix formatting for mock security groups. thanks geemus
45
+
46
+ [aws|dns]
47
+ fix parser path. thanks geemus
48
+
49
+ [aws|elasticache]
50
+ refactor acs->elasticache. thanks Benton Roberts
51
+ refactor for whitespace / readability. thanks Benton Roberts
52
+ fix typo in Elasticache Security Group tests. thanks Benton Roberts
53
+ rename test file for shindo. thanks Benton Roberts
54
+ create and describe cache clusters. thanks Benton Roberts
55
+ delete cache clusters. thanks Benton Roberts
56
+ add Cache Cluster model and collection. thanks Benton Roberts
57
+ Fix bug in AWS::Elasticache::Cluster.get. thanks Benton Roberts
58
+ randomize cache cluster IDs in testing. thanks Benton Roberts
59
+ return nil on CacheClusterNotFound. thanks Benton Roberts
60
+ use Formatador for testing output. thanks Benton Roberts
61
+ move ClusterNotFound rescue code into Elasticache service definition. thanks Benton Roberts
62
+ change method profile for create_cache_cluster, delete_cache_cluster, and describe_cache_clusters. thanks Benton Roberts
63
+ change parameters for describe_cache_security_groups to ruby-friendly values. thanks Benton Roberts
64
+ remove port attribute from cluster model. thanks Benton Roberts
65
+ fix Elasticahce::Cluster.security_groups attribute. thanks Benton Roberts
66
+ implement modify_cache_cluster request. thanks Benton Roberts
67
+ cluster port number cannot be modified. thanks Benton Roberts
68
+ add cache node info to describe_cache_clusters. thanks Benton Roberts
69
+ add InvalidInstace error class. thanks Benton Roberts
70
+ remove optional parameters from Elasticache::Cluster. thanks Benton Roberts
71
+ show cluster node details by default in model. thanks Benton Roberts
72
+ add test for removing a cache node. thanks Benton Roberts
73
+ add pending_values to modified nodes. thanks Benton Roberts
74
+ implement RebootCacheCluster. thanks Benton Roberts
75
+ implement DescribeEvents. thanks Benton Roberts
76
+ implement basic parameter group requests. thanks Benton Roberts
77
+ implement describe_engine_default_parameters request. thanks Benton Roberts
78
+ implement Elasticache::ParameterGroup model and collection. thanks Benton Roberts
79
+ implement modify_cache_parameter_group request. thanks Benton Roberts
80
+ implement reset_cache_parameter_group request. thanks Benton Roberts
81
+ implement describe_cache_groups request. thanks Benton Roberts
82
+ test fix: change DESCRIBE_SECURITY_GROUPS helper format. thanks Benton Roberts
83
+ delete outdated test file. thanks Benton Roberts
84
+
85
+ [aws|elb]
86
+ Raise a custom exception for Throttling. thanks Dylan Egan
87
+ wait_for server to be ready? before register. thanks geemus
88
+
89
+ [aws|iam]
90
+ implement correct path behaviour in mocking. thanks Dylan Egan
91
+
92
+ [aws|simpledb]
93
+ fix tests to use proper accessor. thanks geemus
94
+
95
+ [aws|storage]
96
+ fix acl mocking. thanks geemus
97
+
98
+ [bluebox|compute]
99
+ Fixed instance state. thanks Lee Huffman
100
+ Create and destroy images. thanks Lee Huffman
101
+ Fix for setting hostname on server save. thanks Lee Huffman
102
+ Expect correct status code for template create. thanks Lee Huffman
103
+
104
+ [cdn|aws]
105
+ move aws cdn to its own shared area (namespacing should probably be corrected). thanks geemus
106
+
107
+ [cdn|rackspace]
108
+ move rackspace cdn to its own shared area (namespacing should probably be corrected). thanks geemus
109
+
110
+ [compute]
111
+ fix service calls I missed in recent rearrange. thanks geemus
112
+
113
+ [compute|aws]
114
+ - Change modify_instance_attribute name to match EC2 API method, and actually make it do something. thanks Caleb Tennis
115
+ Include ids of things we're modifying in requests. thanks Dan Peterson
116
+ Fix create_volume mock when creating from a snapshot. thanks Dan Peterson
117
+ Make get_bucket_location mock return LocationConstraint as API doc describes. thanks Dan Peterson
118
+ Fix associate_address mock to detach/revert previous addresses properly. thanks Dan Peterson
119
+ Don't warn in mock describe_snapshots if RestorableBy is 'self'. thanks Dan Peterson
120
+ When mocking, instances don't show up right away. thanks Dan Peterson
121
+ Suffix with _tests.rb. thanks Dylan Egan
122
+ IpPermissionsEgress is returned from AWS. thanks Dylan Egan
123
+ Simple test to verify revoke_group_and_owner behaviour. thanks Dylan Egan
124
+ Apparently passing a nil value works against live AWS. Only use SourceSecurityGroupOwnerId in mocks if supplied. thanks Dylan Egan
125
+ Since this is really proving the use of nil, let's just not pretend there's a value for owner_id. thanks Dylan Egan
126
+ sometimes the platform string is returned. thanks Dylan Egan
127
+ enable tests for mocked tags. thanks Dylan Egan
128
+ Fix NameError. thanks Jens Braeuer
129
+ Fix bug in tag mocking preventing servers from being updated with new tags. thanks Matt Griffin
130
+ Add mocking for describe_tags. thanks Matt Griffin
131
+ move aws compute to its own shared area (namespacing should probably be corrected). thanks geemus
132
+
133
+ [compute|bluebox]
134
+ move bluebox compute to its own shared area (namespacing should probably be corrected). thanks geemus
135
+
136
+ [compute|brightbox]
137
+ Allow persistent option to be passed to Brightbox::Compute. thanks Caius Durling
138
+ Updated test for new behaviour. thanks Paul Thornthwaite
139
+ Picking up more attributes from Account. thanks Paul Thornthwaite
140
+ No need to hardcode a server type. thanks Paul Thornthwaite
141
+ Updated and reordered model attributes. thanks Paul Thornthwaite
142
+ Updates to tests. thanks Paul Thornthwaite
143
+ Added resave warning to a few Brightbox models. thanks Paul Thornthwaite
144
+ Requests for server group management. thanks Paul Thornthwaite
145
+ Merge in test updates and server groups. thanks Paul Thornthwaite
146
+ Corrected require missed in update. thanks Paul Thornthwaite
147
+ Reset times to the correct type so not string attributes. thanks Paul Thornthwaite
148
+ Updated Format test to remove gone fields. thanks Paul Thornthwaite
149
+ Fixed typo in connection options. thanks Paul Thornthwaite
150
+ Added missing requests. thanks Paul Thornthwaite
151
+ Added requests for firewall management. thanks Paul Thornthwaite
152
+ Added ServerGroup model and collections. thanks Paul Thornthwaite
153
+ Passing options to server group update. thanks Paul Thornthwaite
154
+ Fixed server_groups.get. thanks Paul Thornthwaite
155
+ move brightbox compute to its own shared area (namespacing should probably be corrected). thanks geemus
156
+
157
+ [compute|ecloud]
158
+ move ecloud compute to its own shared area (namespacing should probably be corrected). thanks geemus
159
+
160
+ [compute|glesys]
161
+ added glesys as provider. thanks Anton Lindstrom
162
+ added tests. thanks Anton Lindström
163
+ fixed logical error for default values. thanks Anton Lindström
164
+ fixed an invalid character. thanks Anton Lindström
165
+ consistency/cleanup. thanks geemus
166
+ fix format for start vs stop. thanks geemus
167
+ rearrange to match current naming conventions. thanks geemus
168
+
169
+ [compute|go_grid]
170
+ move go_grid compute to its own shared area (namespacing should probably be corrected). thanks geemus
171
+
172
+ [compute|libvirt]
173
+ merge jedi4ever/libvirt. thanks geemus
174
+ move libvirt compute to its own shared area (namespacing should probably be corrected). thanks geemus
175
+
176
+ [compute|linode]
177
+ move linode compute to its own shared area (namespacing should probably be corrected). thanks geemus
178
+
179
+ [compute|new_servers]
180
+ move new_servers compute to its own shared area (namespacing should probably be corrected). thanks geemus
181
+
182
+ [compute|ninefold]
183
+ move ninefold compute to its own shared area (namespacing should probably be corrected). thanks geemus
184
+
185
+ [compute|rackspace]
186
+ move rackspace compute to its own shared area (namespacing should probably be corrected). thanks geemus
187
+
188
+ [compute|slicehost]
189
+ move slicehost compute to its own shared area (namespacing should probably be corrected). thanks geemus
190
+
191
+ [compute|storm_on_demand]
192
+ move storm_on_demand compute to its own shared area (namespacing should probably be corrected). thanks geemus
193
+
194
+ [compute|vcloud]
195
+ move vcloud compute to its own shared area (namespacing should probably be corrected). thanks geemus
196
+
197
+ [compute|virtual_box]
198
+ move virtual_box compute to its own shared area (namespacing should probably be corrected). thanks geemus
199
+
200
+ [compute|voxel]
201
+ move voxel compute to its own shared area (namespacing should probably be corrected). thanks geemus
202
+
203
+ [core]
204
+ Allow FOG_CREDENTIAL env variable for config. thanks Aaron Suggs
205
+ add collection#destroy(identity). thanks geemus
206
+ move openssl to more central location. thanks geemus
207
+ first steps toward seperately requirable bits. thanks geemus
208
+ move providers to lib/fog/. thanks geemus
209
+ work toward separate requires. thanks geemus
210
+ prototype logger. thanks geemus
211
+ add get/set methods for logger channels. thanks geemus
212
+ use logger throughout for warnings. thanks geemus
213
+ coerce service credentials. thanks geemus
214
+ delete nil valued keys from config. thanks geemus
215
+ pass connection_options through service init. thanks geemus
216
+ don't rely on bin stuff for service init in tests. thanks geemus
217
+ dedup services listings. thanks geemus
218
+ more convenient accessors. thanks geemus
219
+ fixing more paths after rearrange. thanks geemus
220
+ add credentials setter. thanks geemus
221
+ make sure credentials tests properly reset after completion. thanks geemus
222
+ bump excon dep. thanks geemus
223
+ properly fix credentials tests. thanks geemus
224
+ skip vmfusion in rake nuke. thanks geemus
225
+ bump excon. thanks geemus
226
+ kill dns stuff in nuke as well. thanks geemus
227
+
228
+ [dns]
229
+ update dns constructor to match recent file moves. thanks geemus
230
+
231
+ [dns|aws]
232
+ move aws dns to its own shared area (namespacing should probably be corrected). thanks geemus
233
+
234
+ [dns|bluebox]
235
+ move bluebox dns to its own shared area (namespacing should probably be corrected). thanks geemus
236
+
237
+ [dns|dnsimple]
238
+ move dnsimple dns to its own shared area (namespacing should probably be corrected). thanks geemus
239
+
240
+ [dns|dnsmadeeasy]
241
+ move dnsmadeeasy dns to its own shared area (namespacing should probably be corrected). thanks geemus
242
+
243
+ [dns|dynect]
244
+ move dynect dns to its own shared area (namespacing should probably be corrected). thanks geemus
245
+
246
+ [dns|linode]
247
+ move linode dns to its own shared area (namespacing should probably be corrected). thanks geemus
248
+
249
+ [dns|rackspace]
250
+ initial commit. thanks Brian Hartsock
251
+ list_domains request. thanks Brian Hartsock
252
+ added attributes to list_domains; refactored rackspace errors to be shared with load balancers. thanks Brian Hartsock
253
+ move rackspace dns to its own shared area (namespacing should probably be corrected). thanks geemus
254
+
255
+ [dns|slicehost]
256
+ move slicehost dns to its own shared area (namespacing should probably be corrected). thanks geemus
257
+
258
+ [dns|zerigo]
259
+ move zerigo dns to its own shared area (namespacing should probably be corrected). thanks geemus
260
+
261
+ [doc]
262
+ Added blogpost about libvirt into fog to the press page. thanks Patrick Debois
263
+ corrected the link to the actual blogpost instead of the github markdown page :). thanks Patrick Debois
264
+
265
+ [docs]
266
+ add note about ec2 default username. thanks geemus
267
+
268
+ [dynect|dns]
269
+ use a string for now. #362 is open for accepting symbols in mocks. thanks Dylan Egan
270
+ return the zone name. thanks Dylan Egan
271
+ accidentally hardcoded the record type in the mocked data. thanks Dylan Egan
272
+ support ANY record results. thanks Dylan Egan
273
+ Don't use address as different records have different arguments, just send rdata. Remove value. Add CNAME test. thanks Dylan Egan
274
+ find, not first. thanks Dylan Egan
275
+ always ensure it's an integer. thanks Dylan Egan
276
+ retry if auth_token was previously set and error message includes possible login expiration. thanks Dylan Egan
277
+ support reauth for inactivity logout too. thanks Dylan Egan
278
+
279
+ [glesys|compute]
280
+ fixes to play nice with mock tests. thanks geemus
281
+ skip flavor tests. thanks geemus
282
+
283
+ [gleysys]
284
+ fixes for mocked test setup. thanks geemus
285
+
286
+ [libvirt]
287
+ Added option libvirt_ip_command to the credentials error page. thanks Patrick Debois
288
+ Corrected template variable from interface_nat_network to network_nat_network. thanks Patrick Debois
289
+
290
+ [linode|compute]
291
+ update format for plans. thanks geemus
292
+
293
+ [load balancer|rackspace]
294
+ fixed some minor bugs i noticed in the tests. thanks Brian Hartsock
295
+
296
+ [misc]
297
+ Fixed a couple of errors in the examples. thanks Bobby Wilson
298
+ Implement fog support for the Openstack Compute API v1.1. Includes support for legacy v1.0 style auth and v2.0 keystone auth. thanks Dan Prince
299
+ Add create_image to server model. thanks Dan Prince
300
+ Add support for non-strict validations, and nullable arrays/hashes. thanks Dan Prince
301
+ Additions and updates to the OpenStack API tests. thanks Dan Prince
302
+ Beginning of Dynect::DNS mocking support. thanks Dylan Egan
303
+ get_record, single. thanks Dylan Egan
304
+ Tidy up a bit. thanks Dylan Egan
305
+ Support freeze and thaw. thanks Dylan Egan
306
+ sleep for 3 seconds when running against Dynect because otherwise there is an operation still in progress. thanks Dylan Egan
307
+ raise a NotFound if not found. thanks Dylan Egan
308
+ Fog::DNS::Dynect, not Fog::Dynect::DNS. thanks Dylan Egan
309
+ InstanceId should have index according to AWS Docs. thanks E.J. Finneran
310
+ fix indenting to get markdown to recognise the code block properly. thanks Glenn Tweedie
311
+ Better URL escaping for Rackspace Cloud Files. thanks H. Wade Minter
312
+ Tweak to escape the Cloud Files filename before passing to public_url. thanks H. Wade Minter
313
+ Put escaping logic into the collection get_url call. thanks H. Wade Minter
314
+ (#9241) Add skeleton VMware vSphere platform support. thanks Jeff McCune
315
+ (#9241) Add SSL verification. thanks Jeff McCune
316
+ (#9241) Add current_time request. thanks Jeff McCune
317
+ (#9241) Add model for Fog::Compute[:vsphere].servers. thanks Jeff McCune
318
+ (#9241) Add test skeleton framework. thanks Jeff McCune
319
+ (#9241) Add ability to find VMs by UUID. thanks Jeff McCune
320
+ (#9421) Add start, stop, reboot server model methods. thanks Jeff McCune
321
+ (#9241) Add destroy API request and model action. thanks Jeff McCune
322
+ (#9241) Add find_template_by_instance_uuid request. thanks Jeff McCune
323
+ (#9241) Add vm_clone API request. thanks Jeff McCune
324
+ (#9241) Don't fail when trying to model a cloning VM. thanks Jeff McCune
325
+ (#9241) Make the reload action of the server models work. thanks Jeff McCune
326
+ (#9124) Add ability to reload the model of a cloning VM. thanks Jeff McCune
327
+ Refactor requests to return simple hashes and add unit tests. thanks Jeff McCune
328
+ Add vsphere_server connection attribute. thanks Jeff McCune
329
+ Fix vm clone problem when a Guid instance is passed as the instance_uuid. thanks Jeff McCune
330
+ Fix documentation. The resulting hash has no entry "PutScalingPolicyResponse", but a "...Result". thanks Jens Braeuer
331
+ Pass hostname to create_block request if provided. thanks Lee Huffman
332
+ Added Fog::CurrentMachine#ip_address. thanks Pan Thomakos
333
+ First cut at libvirt integration. Lots of features missing, but it proves the point. thanks Patrick Debois
334
+ - Added URI helper to parse libvirt URL's - exposed Libvirt original connection in Compute object - exposed URI in Compute object - added libvirt-ruby gem to the developer Gemspec. thanks Patrick Debois
335
+ - Get all pools now by name or by uuid - Create pool by providing xml - Destroy pool. thanks Patrick Debois
336
+ Added ability to create/destroy volumes You can search for volumes by path,key,name And list all volumes from a pool. thanks Patrick Debois
337
+ Allow creation of persistent or non persistent volumes. thanks Patrick Debois
338
+ Again major breakthrough. thanks Patrick Debois
339
+ Coming along nicely. thanks Patrick Debois
340
+ - ERB has a problem with a variable called type, it expands it on ruby 1.8 to .class - If the key or the volume is not found, maybe because the pool has not yet been started, the volumes should return nil. thanks Patrick Debois
341
+ Changed the monitoring command for IP addresses arpwatch.dat is not the correct place, it should be via syslog, or seperate file. thanks Patrick Debois
342
+ fixing whitespace. thanks Patrick Debois
343
+ removed trailing spaces. thanks Patrick Debois
344
+ indenting the files. thanks Patrick Debois
345
+ check ip-address that returned from the search in the logfile. thanks Patrick Debois
346
+ Added a way to locally retrieve the ipaddress through the ip_command More checks on correctness of ipaddress And checks on ssh failures. thanks Patrick Debois
347
+ renamed ipaddress to ip_address made the .id available and an alias to uuid for server. thanks Patrick Debois
348
+ Added description on the libvirt environment can be initialized and the requirements for ssh and ipaddress to work. thanks Patrick Debois
349
+ Added a global libvirt provider option ip_command to specify the ip_command Also more robust handling of connection error when the libvirt connection fails. thanks Patrick Debois
350
+ Remove the idea of template_options, now you specify the param directly in the create command. Unit and Size are now calculated. thanks Patrick Debois
351
+ Removed the template_options param. thanks Patrick Debois
352
+ Fixed disk_format_type vs disk_type_format difference and changed disk_format_type in the template as well. thanks Patrick Debois
353
+ added openauth support thanks to @rubiojr. thanks Patrick Debois
354
+ changed return code of state to string instead of symbols to be consistent with aws provider. thanks Patrick Debois
355
+ - Added concept of nodes (host of domains = node) - Renamed the shuttingdown to shutting-down mode - fixed the Gem warning on using Gem.find_by_name instead of Gem::Specification. thanks Patrick Debois
356
+ Added a way to filter the active and the defined servers(domains) using - servers.all(:active => false, :defined=> true). thanks Patrick Debois
357
+ Fixed empty filter issue, nil filter. thanks Patrick Debois
358
+ * Fixed an error with memory_size 256 that should be 256*1024 as the default is K nor M * Changed the ip_command to check the ipaddress to include changes not * only new IPaddresses. thanks Patrick Debois
359
+ Added libvirt options to credentials error. thanks Patrick Debois
360
+ Made libvirt username param consistent with other providers libvirt_user -> libvirt_username. thanks Patrick Debois
361
+ [Libvirt] Provided better solution for ip_command : use shell variable instead of ruby string for mac-address. thanks Patrick Debois
362
+ vmfusion provider , requires the fission gem (pull request pending). thanks Patrick Debois
363
+ fixed missing disk-> volume conversion. thanks Patrick Debois
364
+ another log entry style resused old ethernet. thanks Patrick Debois
365
+ Fix warning about whitespace before parentheses in dns.rb. thanks Rick Bradley
366
+ Added support fo canned ACLs in put_object_acl. thanks dblock
367
+ Updated put_bucket_acl to support canned ACLs. thanks dblock
368
+ Marking as pending. thanks dblock
369
+ Refactored specs, mocks, etc. thanks dblock
370
+ Revert "[core] make sure credentials tests properly reset after completion". thanks geemus
371
+ Update gemspec description to mention popular services that are supported. thanks watsonian
372
+
373
+ [ninefold|compute]
374
+ fixes for list formats. thanks geemus
375
+ fix for network formats. thanks geemus
376
+ add default (ubuntu) image for servers. thanks geemus
377
+
378
+ [rackspace|dns]
379
+ all important domains requests. thanks Brian Hartsock
380
+ zone models. thanks Brian Hartsock
381
+ records requests. thanks Brian Hartsock
382
+ record models. thanks Brian Hartsock
383
+ minor docs update. thanks Brian Hartsock
384
+ add mock initializer. thanks geemus
385
+ consistency fixes and tests and mark pending in mocked. thanks geemus
386
+ fix mock init to play nice with tests. thanks geemus
387
+ fixes for updates to beta. thanks geemus
388
+
389
+ [rackspace|load_balancers]
390
+ fix path for tests. thanks geemus
391
+ fixes for tests. thanks geemus
392
+
393
+ [rackspace|storage]
394
+ fix broken model paths. thanks geemus
395
+
396
+ [release]
397
+ update MVP skip list. thanks geemus
398
+ add collaborator count to changelog stats. thanks geemus
399
+
400
+ [storage]
401
+ Fixed what appeared to be broken test (I only verified with Rackspace provider). thanks Brian Hartsock
402
+
403
+ [storage|aws]
404
+ Add options to File#copy method. thanks Aaron Suggs
405
+ move aws storage back with other aws stuff (namespacing should probably be recorrected as well). thanks geemus
406
+
407
+ [storage|google]
408
+ move google storage to shared google stuff (namespacing should probably be corrected). thanks geemus
409
+
410
+ [storage|local]
411
+ move local storage to its own shared area (namespacing should probably be corrected). thanks geemus
412
+
413
+ [storage|ninefold]
414
+ move ninefold storage to its own shared area (namespacing should probably be corrected). thanks geemus
415
+ use Fog::HMAC. thanks geemus
416
+
417
+ [storage|rackspace]
418
+ Fixed NotFound namespace. thanks Grégory Karékinian
419
+ move rackspace storage to its own shared area (namespacing should probably be corrected). thanks geemus
420
+
421
+ [tests]
422
+ rearrange to match new lib structure. thanks geemus
423
+ mark not implemented mocks as pending. thanks geemus
424
+ more helpful formats helper errors. thanks geemus
425
+
426
+ [vmfusion|compute]
427
+ fixed destroy function. thanks Patrick Debois
428
+ reworked structure as will be released in 0.4.0a. thanks Patrick Debois
429
+
430
+ [vsphere|compute]
431
+ mark test requiring guid pending, as require can not be found. thanks geemus
432
+ remove unnecessary mocha require. thanks geemus
433
+
434
+
1
435
  0.11.0 08/18/2011 73bcee507a4732e071c58d85793b7f307eb377dc
2
436
  ==========================================================
3
437
 
@@ -39,28 +39,28 @@
39
39
  </dl>
40
40
  </header>
41
41
 
42
- <div id="main">
43
-
44
- {{ content }}
45
-
46
- <h2>Services</h2>
42
+ <nav>
47
43
  <ul>
48
- <li><a href="/cdn">CDN</a></li>
44
+ <li><a href="/">Home</a></li>
45
+ <li><a href="/about/structure.html">Structure</a></li>
46
+ <li><a href="/about/getting_started.html">Getting Started</a></li>
47
+ <li>&nbsp;</li>
48
+ <li><a href="/storage">Storage</a></li>
49
49
  <li><a href="/compute">Compute</a></li>
50
50
  <li><a href="/dns">DNS</a></li>
51
- <li><a href="/storage">Storage</a></li>
52
- {% for post in site.posts %}
53
- <li><a href="{{ post.url }}">{{ post.title }}</a></li>
54
- {% endfor %}
51
+ <li><a href="/cdn">CDN</a></li>
55
52
  </ul>
53
+ </nav>
54
+
55
+ <div id="main">
56
+
57
+ {{ content }}
56
58
 
57
59
  <h2>About</h2>
58
60
  <ul>
59
61
  <li><a href="/">Home</a></li>
60
62
  <li><a href="/about/contributing.html">Contributing</a></li>
61
- <li><a href="/about/getting_started.html">Getting Started</a></li>
62
63
  <li><a href="/about/press.html">Press</a></li>
63
- <li><a href="/about/structure.html">Structure</a></li>
64
64
  <li><a href="/about/supported_services.html">Supported Services</a></li>
65
65
  <li><a href="/about/users.html">Users</a></li>
66
66
  </ul>
@@ -24,7 +24,7 @@ Now in order to play with our data we need to setup a storage connection.
24
24
 
25
25
  storage = Fog::Storage.new({
26
26
  :local_root => '~/fog',
27
- :provider => 'Local',
27
+ :provider => 'Local'
28
28
  })
29
29
 
30
30
  `storage` will now contain our storage object, configured to use the Local provider from our specified directory.
@@ -33,7 +33,7 @@ Now in order to play with our data we need to setup a storage connection.
33
33
 
34
34
  Now that you have cleared the preliminaries you are ready to start storing data. Storage providers in fog segregate files into `directories` to make it easier to organize things. So lets create a directory so we can see that in action.
35
35
 
36
- directory = Fog::Storage.directories.create(
36
+ directory = storage.directories.create(
37
37
  :key => 'data'
38
38
  )
39
39
 
@@ -41,7 +41,7 @@ Now that you have a zone you will need to update your registrar to let them know
41
41
  With your new zone in hand you can add records as needed. First and foremost you will probably want the 'www' version of your site to point to whatever your ip might be:
42
42
 
43
43
  record = @zone.records.create(
44
- :ip => '1.2.3.4',
44
+ :value => '1.2.3.4',
45
45
  :name => 'example.com',
46
46
  :type => 'A'
47
47
  )
@@ -49,7 +49,7 @@ With your new zone in hand you can add records as needed. First and foremost yo
49
49
  Adding other records is similarly easy, for instance if we want 'www.example.com' to go to the same place, we can use a cname record:
50
50
 
51
51
  record = @zone.records.create(
52
- :ip => 'example.com',
52
+ :value => 'example.com',
53
53
  :name => 'www',
54
54
  :type => 'CNAME'
55
55
  )
@@ -57,7 +57,7 @@ Adding other records is similarly easy, for instance if we want 'www.example.com
57
57
  Or, similarly you might want to have your blog elsewhere:
58
58
 
59
59
  record = @zone.records.create(
60
- :ip => '4.3.2.1',
60
+ :value => '4.3.2.1',
61
61
  :name => 'blog.example.com',
62
62
  :type => 'A'
63
63
  )
@@ -54,7 +54,7 @@ Wonder how you can get a lovely fog shirt? Look no further!
54
54
 
55
55
  * Blue shirts go to people who have contributed indirectly, great examples are writing blog posts or giving lightning talks.
56
56
  * Grey shirts and a follow from @fog go to people who have made it on to the [contributors list](https://github.com/geemus/fog/contributors) by submitting code.
57
- * Black shirts go to people who have made it on to the [collaborators list](https://github.com/api/v2/json/repos/show/geemus/fog/collaborators) by coercing geemus into adding them (geemus is currently the only member of this list).
57
+ * Black shirts go to people who have made it on to the [collaborators list](https://github.com/api/v2/json/repos/show/geemus/fog/collaborators) by coercing geemus into adding them.
58
58
 
59
59
  ## Resources
60
60
 
@@ -56,7 +56,7 @@ header dl dt {
56
56
  font-weight: bold;
57
57
  }
58
58
 
59
- #main {
59
+ nav, #main {
60
60
  background-color: #FFF;
61
61
  -moz-border-radius: 0.5em;
62
62
  border-radius: 0.5em;
@@ -66,6 +66,19 @@ header dl dt {
66
66
  margin-bottom: 2em;
67
67
  }
68
68
 
69
+ nav {
70
+ padding: 1em;
71
+ }
72
+
73
+ nav li {
74
+ display: inline;
75
+ padding-left: 2em;
76
+ }
77
+
78
+ nav li a {
79
+ font-size: 1.5em;
80
+ }
81
+
69
82
  footer {
70
83
  background-color: #A0C0E1;
71
84
  border-color: #70A1D2;
@@ -6,14 +6,14 @@ Gem::Specification.new do |s|
6
6
  ## If your rubyforge_project name is different, then edit it and comment out
7
7
  ## the sub! line in the Rakefile
8
8
  s.name = 'fog'
9
- s.version = '0.11.0'
10
- s.date = '2011-08-18'
9
+ s.version = '1.0.0'
10
+ s.date = '2011-09-29'
11
11
  s.rubyforge_project = 'fog'
12
12
 
13
13
  ## Make sure your summary is short. The description may be as long
14
14
  ## as you like.
15
15
  s.summary = "brings clouds to you"
16
- s.description = "The Ruby cloud services library."
16
+ s.description = "The Ruby cloud services library. Supports all major cloud providers including AWS, Rackspace, Linode, Blue Box, StormOnDemand, and many others. Full support for most AWS services including EC2, S3, CloudWatch, SimpleDB, ELB, and RDS."
17
17
 
18
18
  ## List the primary authors. If there are a bunch of authors, it's probably
19
19
  ## better to set the email to an email list or something. If you don't have
@@ -37,7 +37,7 @@ Gem::Specification.new do |s|
37
37
  ## List your runtime dependencies here. Runtime dependencies are those
38
38
  ## that are needed for an end user to actually USE your code.
39
39
  s.add_dependency('builder')
40
- s.add_dependency('excon', '~>0.6.5')
40
+ s.add_dependency('excon', '~>0.7.3')
41
41
  s.add_dependency('formatador', '~>0.2.0')
42
42
  s.add_dependency('multi_json', '~>1.0.3')
43
43
  s.add_dependency('mime-types')
@@ -13,12 +13,26 @@ module Fog
13
13
  request :list_metrics
14
14
  request :get_metric_statistics
15
15
  request :put_metric_data
16
+ request :describe_alarms
17
+ request :put_metric_alarm
18
+ request :delete_alarms
19
+ request :describe_alarm_history
20
+ request :enable_alarm_actions
21
+ request :disable_alarm_actions
22
+ request :describe_alarms_for_metric
23
+ request :set_alarm_state
16
24
 
17
25
  model_path 'fog/aws/models/cloud_watch'
18
26
  model :metric
19
27
  collection :metrics
20
28
  model :metric_statistic
21
29
  collection :metric_statistics
30
+ model :alarm_datum
31
+ collection :alarm_data
32
+ model :alarm_history
33
+ collection :alarm_histories
34
+ model :alarm
35
+ collection :alarms
22
36
 
23
37
  class Mock
24
38