fog-maestrodev 1.8.0.20130114204828 → 1.14.0.20130806165225
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.gitignore +2 -0
- data/.travis.yml +18 -2
- data/Gemfile +6 -1
- data/Gemfile.1.8.7 +10 -0
- data/README.md +54 -42
- data/Rakefile +21 -2
- data/benchs/load_times.rb +31 -0
- data/bin/fog +22 -0
- data/changelog.txt +2198 -0
- data/fog.gemspec +7 -7
- data/lib/fog.rb +44 -14
- data/lib/fog/account.rb +25 -0
- data/lib/fog/atmos/models/storage/file.rb +2 -2
- data/lib/fog/aws.rb +12 -2
- data/lib/fog/aws/auto_scaling.rb +15 -18
- data/lib/fog/aws/beanstalk.rb +8 -10
- data/lib/fog/aws/cloud_formation.rb +11 -12
- data/lib/fog/aws/compute.rb +9 -10
- data/lib/fog/aws/credential_fetcher.rb +7 -7
- data/lib/fog/aws/data_pipeline.rb +114 -0
- data/lib/fog/aws/dynamodb.rb +3 -3
- data/lib/fog/aws/elasticache.rb +16 -20
- data/lib/fog/aws/elb.rb +32 -31
- data/lib/fog/aws/elb/policy_types.rb +441 -430
- data/lib/fog/aws/iam.rb +13 -13
- data/lib/fog/aws/models/auto_scaling/activities.rb +11 -3
- data/lib/fog/aws/models/auto_scaling/group.rb +6 -3
- data/lib/fog/aws/models/auto_scaling/policies.rb +7 -3
- data/lib/fog/aws/models/beanstalk/environment.rb +6 -2
- data/lib/fog/aws/models/cdn/distributions.rb +2 -1
- data/lib/fog/aws/models/cdn/distributions_helper.rb +2 -1
- data/lib/fog/aws/models/cdn/streaming_distributions.rb +2 -1
- data/lib/fog/aws/models/compute/flavors.rb +1 -1
- data/lib/fog/aws/models/compute/server.rb +39 -33
- data/lib/fog/aws/models/compute/spot_request.rb +3 -11
- data/lib/fog/aws/models/compute/volume.rb +2 -1
- data/lib/fog/aws/models/data_pipeline/pipeline.rb +67 -0
- data/lib/fog/aws/models/data_pipeline/pipelines.rb +36 -0
- data/lib/fog/aws/models/dns/record.rb +1 -1
- data/lib/fog/aws/models/elb/backend_server_description.rb +11 -0
- data/lib/fog/aws/models/elb/backend_server_descriptions.rb +22 -0
- data/lib/fog/aws/models/elb/load_balancer.rb +15 -2
- data/lib/fog/aws/models/elb/policies.rb +28 -13
- data/lib/fog/aws/models/elb/policy.rb +20 -10
- data/lib/fog/aws/models/iam/role.rb +36 -0
- data/lib/fog/aws/models/iam/roles.rb +40 -0
- data/lib/fog/aws/models/iam/user.rb +1 -0
- data/lib/fog/aws/models/rds/log_file.rb +26 -0
- data/lib/fog/aws/models/rds/log_files.rb +50 -0
- data/lib/fog/aws/models/rds/server.rb +4 -1
- data/lib/fog/aws/models/rds/snapshot.rb +1 -0
- data/lib/fog/aws/models/rds/snapshots.rb +26 -3
- data/lib/fog/aws/models/storage/directories.rb +1 -1
- data/lib/fog/aws/models/storage/directory.rb +20 -17
- data/lib/fog/aws/models/storage/file.rb +6 -7
- data/lib/fog/aws/models/storage/files.rb +6 -6
- data/lib/fog/aws/parsers/auto_scaling/describe_policies.rb +5 -5
- data/lib/fog/aws/parsers/beanstalk/describe_environment_resources.rb +11 -0
- data/lib/fog/aws/parsers/cloud_formation/list_stack_resources.rb +32 -0
- data/lib/fog/aws/parsers/cloud_formation/list_stacks.rb +34 -0
- data/lib/fog/aws/parsers/cloud_watch/list_metrics.rb +1 -1
- data/lib/fog/aws/parsers/compute/copy_image.rb +22 -0
- data/lib/fog/aws/parsers/compute/describe_instances.rb +19 -5
- data/lib/fog/aws/parsers/compute/run_instances.rb +5 -4
- data/lib/fog/aws/parsers/compute/spot_instance_requests.rb +2 -0
- data/lib/fog/aws/parsers/dns/get_hosted_zone.rb +2 -0
- data/lib/fog/aws/parsers/elasticache/describe_reserved_cache_nodes.rb +37 -0
- data/lib/fog/aws/parsers/elb/describe_load_balancers.rb +44 -13
- data/lib/fog/aws/parsers/iam/get_user.rb +2 -0
- data/lib/fog/aws/parsers/iam/list_users.rb +2 -0
- data/lib/fog/aws/parsers/rds/db_parser.rb +27 -5
- data/lib/fog/aws/parsers/rds/describe_db_log_files.rb +44 -0
- data/lib/fog/aws/parsers/rds/download_db_logfile_portion.rb +26 -0
- data/lib/fog/aws/parsers/ses/verify_domain_identity.rb +26 -0
- data/lib/fog/aws/parsers/storage/complete_multipart_upload.rb +1 -1
- data/lib/fog/aws/parsers/storage/get_bucket_lifecycle.rb +45 -11
- data/lib/fog/aws/parsers/sts/assume_role.rb +30 -0
- data/lib/fog/aws/rds.rb +27 -14
- data/lib/fog/aws/requests/auto_scaling/create_auto_scaling_group.rb +8 -0
- data/lib/fog/aws/requests/auto_scaling/update_auto_scaling_group.rb +8 -1
- data/lib/fog/aws/requests/cdn/delete_distribution.rb +5 -7
- data/lib/fog/aws/requests/cdn/delete_streaming_distribution.rb +5 -7
- data/lib/fog/aws/requests/cdn/get_distribution.rb +28 -31
- data/lib/fog/aws/requests/cdn/get_distribution_list.rb +29 -33
- data/lib/fog/aws/requests/cdn/get_invalidation.rb +15 -13
- data/lib/fog/aws/requests/cdn/get_invalidation_list.rb +15 -17
- data/lib/fog/aws/requests/cdn/get_streaming_distribution.rb +23 -26
- data/lib/fog/aws/requests/cdn/get_streaming_distribution_list.rb +29 -33
- data/lib/fog/aws/requests/cdn/post_distribution.rb +40 -42
- data/lib/fog/aws/requests/cdn/post_invalidation.rb +14 -18
- data/lib/fog/aws/requests/cdn/post_streaming_distribution.rb +28 -30
- data/lib/fog/aws/requests/cdn/put_distribution_config.rb +42 -44
- data/lib/fog/aws/requests/cdn/put_streaming_distribution_config.rb +31 -33
- data/lib/fog/aws/requests/cloud_formation/create_stack.rb +33 -20
- data/lib/fog/aws/requests/cloud_formation/delete_stack.rb +5 -8
- data/lib/fog/aws/requests/cloud_formation/describe_stack_events.rb +19 -22
- data/lib/fog/aws/requests/cloud_formation/describe_stack_resources.rb +18 -21
- data/lib/fog/aws/requests/cloud_formation/describe_stacks.rb +18 -21
- data/lib/fog/aws/requests/cloud_formation/get_template.rb +7 -10
- data/lib/fog/aws/requests/cloud_formation/list_stack_resources.rb +36 -0
- data/lib/fog/aws/requests/cloud_formation/list_stacks.rb +37 -0
- data/lib/fog/aws/requests/cloud_formation/update_stack.rb +11 -15
- data/lib/fog/aws/requests/cloud_formation/validate_template.rb +9 -12
- data/lib/fog/aws/requests/compute/associate_address.rb +13 -7
- data/lib/fog/aws/requests/compute/copy_image.rb +63 -0
- data/lib/fog/aws/requests/compute/create_volume.rb +3 -3
- data/lib/fog/aws/requests/compute/describe_instances.rb +1 -1
- data/lib/fog/aws/requests/compute/describe_reserved_instances_offerings.rb +16 -2
- data/lib/fog/aws/requests/compute/describe_security_groups.rb +2 -2
- data/lib/fog/aws/requests/compute/request_spot_instances.rb +1 -0
- data/lib/fog/aws/requests/compute/run_instances.rb +3 -1
- data/lib/fog/aws/requests/data_pipeline/activate_pipeline.rb +35 -0
- data/lib/fog/aws/requests/data_pipeline/create_pipeline.rb +41 -0
- data/lib/fog/aws/requests/data_pipeline/delete_pipeline.rb +35 -0
- data/lib/fog/aws/requests/data_pipeline/describe_pipelines.rb +36 -0
- data/lib/fog/aws/requests/data_pipeline/list_pipelines.rb +36 -0
- data/lib/fog/aws/requests/data_pipeline/put_pipeline_definition.rb +72 -0
- data/lib/fog/aws/requests/elasticache/describe_reserved_cache_nodes.rb +42 -0
- data/lib/fog/aws/requests/elb/create_app_cookie_stickiness_policy.rb +0 -2
- data/lib/fog/aws/requests/elb/create_lb_cookie_stickiness_policy.rb +0 -2
- data/lib/fog/aws/requests/elb/create_load_balancer.rb +17 -0
- data/lib/fog/aws/requests/elb/create_load_balancer_policy.rb +11 -8
- data/lib/fog/aws/requests/elb/describe_load_balancers.rb +21 -1
- data/lib/fog/aws/requests/elb/set_load_balancer_policies_for_backend_server.rb +67 -0
- data/lib/fog/aws/requests/iam/create_user.rb +5 -4
- data/lib/fog/aws/requests/iam/get_user.rb +5 -4
- data/lib/fog/aws/requests/iam/list_users.rb +5 -4
- data/lib/fog/aws/requests/iam/update_server_certificate.rb +27 -0
- data/lib/fog/aws/requests/rds/create_db_instance.rb +28 -26
- data/lib/fog/aws/requests/rds/describe_db_instances.rb +8 -9
- data/lib/fog/aws/requests/rds/describe_db_log_files.rb +67 -0
- data/lib/fog/aws/requests/rds/download_db_logfile_portion.rb +63 -0
- data/lib/fog/aws/requests/ses/send_raw_email.rb +1 -1
- data/lib/fog/aws/requests/ses/verify_domain_identity.rb +30 -0
- data/lib/fog/aws/requests/storage/abort_multipart_upload.rb +3 -3
- data/lib/fog/aws/requests/storage/complete_multipart_upload.rb +8 -4
- data/lib/fog/aws/requests/storage/copy_object.rb +2 -2
- data/lib/fog/aws/requests/storage/delete_bucket.rb +1 -1
- data/lib/fog/aws/requests/storage/delete_bucket_cors.rb +1 -1
- data/lib/fog/aws/requests/storage/delete_bucket_lifecycle.rb +1 -1
- data/lib/fog/aws/requests/storage/delete_bucket_policy.rb +1 -1
- data/lib/fog/aws/requests/storage/delete_bucket_website.rb +1 -1
- data/lib/fog/aws/requests/storage/delete_multiple_objects.rb +1 -1
- data/lib/fog/aws/requests/storage/delete_object.rb +1 -1
- data/lib/fog/aws/requests/storage/get_bucket.rb +1 -1
- data/lib/fog/aws/requests/storage/get_bucket_acl.rb +1 -1
- data/lib/fog/aws/requests/storage/get_bucket_cors.rb +1 -1
- data/lib/fog/aws/requests/storage/get_bucket_lifecycle.rb +1 -1
- data/lib/fog/aws/requests/storage/get_bucket_location.rb +1 -1
- data/lib/fog/aws/requests/storage/get_bucket_logging.rb +1 -1
- data/lib/fog/aws/requests/storage/get_bucket_object_versions.rb +1 -1
- data/lib/fog/aws/requests/storage/get_bucket_policy.rb +1 -1
- data/lib/fog/aws/requests/storage/get_bucket_versioning.rb +1 -1
- data/lib/fog/aws/requests/storage/get_bucket_website.rb +1 -1
- data/lib/fog/aws/requests/storage/get_object.rb +8 -4
- data/lib/fog/aws/requests/storage/get_object_acl.rb +2 -2
- data/lib/fog/aws/requests/storage/get_object_http_url.rb +1 -19
- data/lib/fog/aws/requests/storage/get_object_torrent.rb +2 -2
- data/lib/fog/aws/requests/storage/get_object_url.rb +5 -14
- data/lib/fog/aws/requests/storage/get_request_payment.rb +1 -1
- data/lib/fog/aws/requests/storage/get_service.rb +1 -2
- data/lib/fog/aws/requests/storage/head_object.rb +2 -5
- data/lib/fog/aws/requests/storage/initiate_multipart_upload.rb +3 -5
- data/lib/fog/aws/requests/storage/list_multipart_uploads.rb +27 -33
- data/lib/fog/aws/requests/storage/list_parts.rb +27 -31
- data/lib/fog/aws/requests/storage/post_object_hidden_fields.rb +15 -17
- data/lib/fog/aws/requests/storage/post_object_restore.rb +54 -0
- data/lib/fog/aws/requests/storage/put_bucket.rb +9 -12
- data/lib/fog/aws/requests/storage/put_bucket_acl.rb +16 -18
- data/lib/fog/aws/requests/storage/put_bucket_cors.rb +11 -13
- data/lib/fog/aws/requests/storage/put_bucket_lifecycle.rb +45 -16
- data/lib/fog/aws/requests/storage/put_bucket_logging.rb +14 -16
- data/lib/fog/aws/requests/storage/put_bucket_policy.rb +4 -6
- data/lib/fog/aws/requests/storage/put_bucket_versioning.rb +4 -6
- data/lib/fog/aws/requests/storage/put_bucket_website.rb +6 -8
- data/lib/fog/aws/requests/storage/put_object.rb +21 -24
- data/lib/fog/aws/requests/storage/put_object_acl.rb +19 -21
- data/lib/fog/aws/requests/storage/put_object_url.rb +11 -16
- data/lib/fog/aws/requests/storage/put_request_payment.rb +4 -6
- data/lib/fog/aws/requests/storage/upload_part.rb +14 -17
- data/lib/fog/aws/requests/sts/assume_role.rb +46 -0
- data/lib/fog/aws/ses.rb +26 -9
- data/lib/fog/aws/storage.rb +204 -97
- data/lib/fog/aws/sts.rb +31 -21
- data/lib/fog/billing.rb +23 -0
- data/lib/fog/bin.rb +6 -2
- data/lib/fog/bin/aws.rb +4 -0
- data/lib/fog/bin/bluebox.rb +2 -0
- data/lib/fog/bin/cloudsigma.rb +29 -0
- data/lib/fog/bin/digitalocean.rb +31 -0
- data/lib/fog/bin/dreamhost.rb +31 -0
- data/lib/fog/bin/google.rb +47 -1
- data/lib/fog/bin/hp.rb +7 -0
- data/lib/fog/bin/internet_archive.rb +34 -0
- data/lib/fog/bin/openstack.rb +22 -2
- data/lib/fog/bin/openvz.rb +31 -0
- data/lib/fog/bin/rackspace.rb +11 -0
- data/lib/fog/bin/riakcs.rb +27 -0
- data/lib/fog/bluebox.rb +1 -0
- data/lib/fog/bluebox/blb.rb +85 -0
- data/lib/fog/bluebox/models/blb/lb_application.rb +32 -0
- data/lib/fog/bluebox/models/blb/lb_applications.rb +26 -0
- data/lib/fog/bluebox/models/blb/lb_backend.rb +22 -0
- data/lib/fog/bluebox/models/blb/lb_backends.rb +30 -0
- data/lib/fog/bluebox/models/blb/lb_service.rb +35 -0
- data/lib/fog/bluebox/models/blb/lb_services.rb +29 -0
- data/lib/fog/bluebox/models/compute/server.rb +3 -1
- data/lib/fog/bluebox/models/dns/zone.rb +1 -1
- data/lib/fog/bluebox/requests/blb/add_machine_to_lb_application.rb +33 -0
- data/lib/fog/bluebox/requests/blb/add_machine_to_lb_backend.rb +31 -0
- data/lib/fog/bluebox/requests/blb/get_lb_application.rb +33 -0
- data/lib/fog/bluebox/requests/blb/get_lb_applications.rb +31 -0
- data/lib/fog/bluebox/requests/blb/get_lb_backend.rb +36 -0
- data/lib/fog/bluebox/requests/blb/get_lb_backends.rb +36 -0
- data/lib/fog/bluebox/requests/blb/get_lb_machine.rb +35 -0
- data/lib/fog/bluebox/requests/blb/get_lb_machines.rb +35 -0
- data/lib/fog/bluebox/requests/blb/get_lb_service.rb +36 -0
- data/lib/fog/bluebox/requests/blb/get_lb_services.rb +36 -0
- data/lib/fog/bluebox/requests/blb/remove_machine_from_lb_backend.rb +28 -0
- data/lib/fog/bluebox/requests/blb/update_lb_backend_machine.rb +29 -0
- data/lib/fog/brightbox/compute.rb +36 -236
- data/lib/fog/brightbox/compute/image_selector.rb +45 -0
- data/lib/fog/brightbox/compute/shared.rb +232 -0
- data/lib/fog/brightbox/models/compute/collaboration.rb +43 -0
- data/lib/fog/brightbox/models/compute/collaborations.rb +23 -0
- data/lib/fog/brightbox/models/compute/user_collaboration.rb +29 -0
- data/lib/fog/brightbox/models/compute/user_collaborations.rb +23 -0
- data/lib/fog/brightbox/oauth2.rb +5 -3
- data/lib/fog/brightbox/requests/compute/accept_user_collaboration.rb +21 -0
- data/lib/fog/brightbox/requests/compute/activate_console_server.rb +1 -1
- data/lib/fog/brightbox/requests/compute/add_listeners_load_balancer.rb +2 -1
- data/lib/fog/brightbox/requests/compute/add_nodes_load_balancer.rb +2 -1
- data/lib/fog/brightbox/requests/compute/add_servers_server_group.rb +11 -3
- data/lib/fog/brightbox/requests/compute/apply_to_firewall_policy.rb +2 -1
- data/lib/fog/brightbox/requests/compute/create_api_client.rb +2 -1
- data/lib/fog/brightbox/requests/compute/create_application.rb +2 -1
- data/lib/fog/brightbox/requests/compute/create_cloud_ip.rb +2 -1
- data/lib/fog/brightbox/requests/compute/create_collaboration.rb +23 -0
- data/lib/fog/brightbox/requests/compute/create_firewall_policy.rb +3 -1
- data/lib/fog/brightbox/requests/compute/create_firewall_rule.rb +2 -1
- data/lib/fog/brightbox/requests/compute/create_image.rb +2 -1
- data/lib/fog/brightbox/requests/compute/create_load_balancer.rb +2 -1
- data/lib/fog/brightbox/requests/compute/create_server.rb +2 -1
- data/lib/fog/brightbox/requests/compute/create_server_group.rb +2 -1
- data/lib/fog/brightbox/requests/compute/{destroy_api_client.rb → delete_api_client.rb} +10 -3
- data/lib/fog/brightbox/requests/compute/{destroy_application.rb → delete_application.rb} +10 -3
- data/lib/fog/brightbox/requests/compute/{destroy_cloud_ip.rb → delete_cloud_ip.rb} +10 -3
- data/lib/fog/brightbox/requests/compute/delete_collaboration.rb +28 -0
- data/lib/fog/brightbox/requests/compute/{destroy_firewall_policy.rb → delete_firewall_policy.rb} +10 -3
- data/lib/fog/brightbox/requests/compute/{destroy_firewall_rule.rb → delete_firewall_rule.rb} +10 -3
- data/lib/fog/brightbox/requests/compute/{destroy_image.rb → delete_image.rb} +10 -3
- data/lib/fog/brightbox/requests/compute/{destroy_load_balancer.rb → delete_load_balancer.rb} +10 -3
- data/lib/fog/brightbox/requests/compute/{destroy_server.rb → delete_server.rb} +10 -3
- data/lib/fog/brightbox/requests/compute/{destroy_server_group.rb → delete_server_group.rb} +10 -3
- data/lib/fog/brightbox/requests/compute/delete_user_collaboration.rb +28 -0
- data/lib/fog/brightbox/requests/compute/destroy_user_collaboration.rb +21 -0
- data/lib/fog/brightbox/requests/compute/get_account.rb +1 -1
- data/lib/fog/brightbox/requests/compute/get_api_client.rb +1 -1
- data/lib/fog/brightbox/requests/compute/get_application.rb +1 -1
- data/lib/fog/brightbox/requests/compute/get_cloud_ip.rb +1 -1
- data/lib/fog/brightbox/requests/compute/get_collaboration.rb +21 -0
- data/lib/fog/brightbox/requests/compute/get_firewall_policy.rb +1 -1
- data/lib/fog/brightbox/requests/compute/get_firewall_rule.rb +1 -1
- data/lib/fog/brightbox/requests/compute/get_image.rb +1 -1
- data/lib/fog/brightbox/requests/compute/get_interface.rb +1 -1
- data/lib/fog/brightbox/requests/compute/get_load_balancer.rb +1 -1
- data/lib/fog/brightbox/requests/compute/get_server.rb +1 -1
- data/lib/fog/brightbox/requests/compute/get_server_group.rb +1 -1
- data/lib/fog/brightbox/requests/compute/get_server_type.rb +1 -1
- data/lib/fog/brightbox/requests/compute/get_user.rb +1 -1
- data/lib/fog/brightbox/requests/compute/get_user_collaboration.rb +21 -0
- data/lib/fog/brightbox/requests/compute/get_zone.rb +1 -1
- data/lib/fog/brightbox/requests/compute/list_accounts.rb +1 -1
- data/lib/fog/brightbox/requests/compute/list_api_clients.rb +1 -1
- data/lib/fog/brightbox/requests/compute/list_applications.rb +1 -1
- data/lib/fog/brightbox/requests/compute/list_cloud_ips.rb +1 -1
- data/lib/fog/brightbox/requests/compute/list_collaborations.rb +19 -0
- data/lib/fog/brightbox/requests/compute/list_firewall_policies.rb +1 -1
- data/lib/fog/brightbox/requests/compute/list_images.rb +1 -1
- data/lib/fog/brightbox/requests/compute/list_load_balancers.rb +1 -1
- data/lib/fog/brightbox/requests/compute/list_server_groups.rb +1 -1
- data/lib/fog/brightbox/requests/compute/list_server_types.rb +1 -1
- data/lib/fog/brightbox/requests/compute/list_servers.rb +1 -1
- data/lib/fog/brightbox/requests/compute/list_user_collaborations.rb +19 -0
- data/lib/fog/brightbox/requests/compute/list_users.rb +1 -1
- data/lib/fog/brightbox/requests/compute/list_zones.rb +1 -1
- data/lib/fog/brightbox/requests/compute/map_cloud_ip.rb +2 -1
- data/lib/fog/brightbox/requests/compute/move_servers_server_group.rb +12 -3
- data/lib/fog/brightbox/requests/compute/reject_user_collaboration.rb +21 -0
- data/lib/fog/brightbox/requests/compute/remove_firewall_policy.rb +2 -1
- data/lib/fog/brightbox/requests/compute/remove_listeners_load_balancer.rb +2 -1
- data/lib/fog/brightbox/requests/compute/remove_nodes_load_balancer.rb +2 -1
- data/lib/fog/brightbox/requests/compute/remove_servers_server_group.rb +11 -3
- data/lib/fog/brightbox/requests/compute/resend_collaboration.rb +21 -0
- data/lib/fog/brightbox/requests/compute/reset_ftp_password_account.rb +2 -2
- data/lib/fog/brightbox/requests/compute/reset_secret_api_client.rb +1 -2
- data/lib/fog/brightbox/requests/compute/reset_secret_application.rb +1 -1
- data/lib/fog/brightbox/requests/compute/shutdown_server.rb +1 -1
- data/lib/fog/brightbox/requests/compute/snapshot_server.rb +1 -1
- data/lib/fog/brightbox/requests/compute/start_server.rb +1 -1
- data/lib/fog/brightbox/requests/compute/stop_server.rb +1 -1
- data/lib/fog/brightbox/requests/compute/unmap_cloud_ip.rb +1 -1
- data/lib/fog/brightbox/requests/compute/update_account.rb +2 -1
- data/lib/fog/brightbox/requests/compute/update_api_client.rb +2 -1
- data/lib/fog/brightbox/requests/compute/update_application.rb +2 -1
- data/lib/fog/brightbox/requests/compute/update_cloud_ip.rb +2 -1
- data/lib/fog/brightbox/requests/compute/update_firewall_policy.rb +26 -0
- data/lib/fog/brightbox/requests/compute/update_firewall_rule.rb +2 -1
- data/lib/fog/brightbox/requests/compute/update_image.rb +2 -1
- data/lib/fog/brightbox/requests/compute/update_load_balancer.rb +2 -1
- data/lib/fog/brightbox/requests/compute/update_scoped_account.rb +2 -1
- data/lib/fog/brightbox/requests/compute/update_server.rb +3 -1
- data/lib/fog/brightbox/requests/compute/update_server_group.rb +2 -1
- data/lib/fog/brightbox/requests/compute/update_user.rb +2 -1
- data/lib/fog/cdn.rb +5 -12
- data/lib/fog/cloudsigma.rb +9 -0
- data/lib/fog/cloudsigma/compute.rb +221 -0
- data/lib/fog/cloudsigma/connection.rb +197 -0
- data/lib/fog/cloudsigma/docs/getting_started.md +59 -0
- data/lib/fog/cloudsigma/error.rb +45 -0
- data/lib/fog/cloudsigma/mock_data.rb +46 -0
- data/lib/fog/cloudsigma/models/balance.rb +12 -0
- data/lib/fog/cloudsigma/models/current_usage.rb +19 -0
- data/lib/fog/cloudsigma/models/ip.rb +22 -0
- data/lib/fog/cloudsigma/models/ipconf.rb +12 -0
- data/lib/fog/cloudsigma/models/ips.rb +27 -0
- data/lib/fog/cloudsigma/models/lib_volume.rb +50 -0
- data/lib/fog/cloudsigma/models/lib_volumes.rb +27 -0
- data/lib/fog/cloudsigma/models/mountpoint.rb +25 -0
- data/lib/fog/cloudsigma/models/nic.rb +22 -0
- data/lib/fog/cloudsigma/models/obj_ref.rb +12 -0
- data/lib/fog/cloudsigma/models/price_calculation.rb +13 -0
- data/lib/fog/cloudsigma/models/price_record.rb +38 -0
- data/lib/fog/cloudsigma/models/pricing.rb +20 -0
- data/lib/fog/cloudsigma/models/profile.rb +50 -0
- data/lib/fog/cloudsigma/models/server.rb +208 -0
- data/lib/fog/cloudsigma/models/servers.rb +27 -0
- data/lib/fog/cloudsigma/models/subscription.rb +53 -0
- data/lib/fog/cloudsigma/models/subscriptions.rb +41 -0
- data/lib/fog/cloudsigma/models/usage_record.rb +13 -0
- data/lib/fog/cloudsigma/models/vlan.rb +29 -0
- data/lib/fog/cloudsigma/models/vlans.rb +27 -0
- data/lib/fog/cloudsigma/models/volume.rb +71 -0
- data/lib/fog/cloudsigma/models/volumes.rb +27 -0
- data/lib/fog/cloudsigma/nested_model.rb +60 -0
- data/lib/fog/cloudsigma/requests/calculate_subscription_price.rb +18 -0
- data/lib/fog/cloudsigma/requests/clone_libvolume.rb +32 -0
- data/lib/fog/cloudsigma/requests/clone_server.rb +32 -0
- data/lib/fog/cloudsigma/requests/clone_volume.rb +32 -0
- data/lib/fog/cloudsigma/requests/close_vnc.rb +30 -0
- data/lib/fog/cloudsigma/requests/create_server.rb +33 -0
- data/lib/fog/cloudsigma/requests/create_subscription.rb +40 -0
- data/lib/fog/cloudsigma/requests/create_volume.rb +30 -0
- data/lib/fog/cloudsigma/requests/delete_server.rb +18 -0
- data/lib/fog/cloudsigma/requests/delete_volume.rb +18 -0
- data/lib/fog/cloudsigma/requests/extend_subscription.rb +22 -0
- data/lib/fog/cloudsigma/requests/get_balance.rb +18 -0
- data/lib/fog/cloudsigma/requests/get_current_usage.rb +18 -0
- data/lib/fog/cloudsigma/requests/get_ip.rb +18 -0
- data/lib/fog/cloudsigma/requests/get_lib_volume.rb +18 -0
- data/lib/fog/cloudsigma/requests/get_pricing.rb +28 -0
- data/lib/fog/cloudsigma/requests/get_profile.rb +18 -0
- data/lib/fog/cloudsigma/requests/get_server.rb +18 -0
- data/lib/fog/cloudsigma/requests/get_subscription.rb +18 -0
- data/lib/fog/cloudsigma/requests/get_vlan.rb +18 -0
- data/lib/fog/cloudsigma/requests/get_volume.rb +18 -0
- data/lib/fog/cloudsigma/requests/list_ips.rb +18 -0
- data/lib/fog/cloudsigma/requests/list_lib_volumes.rb +18 -0
- data/lib/fog/cloudsigma/requests/list_servers.rb +18 -0
- data/lib/fog/cloudsigma/requests/list_subscriptions.rb +18 -0
- data/lib/fog/cloudsigma/requests/list_vlans.rb +18 -0
- data/lib/fog/cloudsigma/requests/list_volumes.rb +18 -0
- data/lib/fog/cloudsigma/requests/open_vnc.rb +34 -0
- data/lib/fog/cloudsigma/requests/start_server.rb +32 -0
- data/lib/fog/cloudsigma/requests/stop_server.rb +33 -0
- data/lib/fog/cloudsigma/requests/update_profile.rb +18 -0
- data/lib/fog/cloudsigma/requests/update_server.rb +40 -0
- data/lib/fog/cloudsigma/requests/update_vlan.rb +20 -0
- data/lib/fog/cloudsigma/requests/update_volume.rb +18 -0
- data/lib/fog/cloudstack/compute.rb +72 -1
- data/lib/fog/cloudstack/models/compute/disk_offering.rb +46 -0
- data/lib/fog/cloudstack/models/compute/disk_offerings.rb +27 -0
- data/lib/fog/cloudstack/models/compute/image.rb +1 -1
- data/lib/fog/cloudstack/models/compute/servers.rb +6 -4
- data/lib/fog/cloudstack/models/compute/snapshot.rb +46 -0
- data/lib/fog/cloudstack/models/compute/snapshots.rb +25 -0
- data/lib/fog/cloudstack/requests/compute/create_disk_offering.rb +51 -0
- data/lib/fog/cloudstack/requests/compute/create_snapshot.rb +24 -0
- data/lib/fog/cloudstack/requests/compute/delete_disk_offering.rb +31 -0
- data/lib/fog/cloudstack/requests/compute/delete_snapshot.rb +44 -2
- data/lib/fog/cloudstack/requests/compute/list_disk_offerings.rb +9 -0
- data/lib/fog/cloudstack/requests/compute/list_os_types.rb +9 -0
- data/lib/fog/cloudstack/requests/compute/list_snapshots.rb +21 -0
- data/lib/fog/compute.rb +7 -65
- data/lib/fog/compute/models/server.rb +21 -16
- data/lib/fog/core.rb +18 -7
- data/lib/fog/core/attributes.rb +1 -1
- data/lib/fog/core/connection.rb +62 -25
- data/lib/fog/core/deprecated/connection.rb +24 -0
- data/lib/fog/core/errors.rb +10 -1
- data/lib/fog/core/logger.rb +2 -0
- data/lib/fog/core/mock.rb +16 -0
- data/lib/fog/core/model.rb +12 -11
- data/lib/fog/core/parser.rb +14 -1
- data/lib/fog/core/scp.rb +4 -3
- data/lib/fog/core/service.rb +1 -1
- data/lib/fog/core/ssh.rb +1 -0
- data/lib/fog/digitalocean.rb +9 -0
- data/lib/fog/digitalocean/CHANGELOG.md +6 -0
- data/lib/fog/digitalocean/compute.rb +136 -0
- data/lib/fog/digitalocean/examples/getting_started.md +106 -0
- data/lib/fog/digitalocean/models/compute/flavor.rb +14 -0
- data/lib/fog/digitalocean/models/compute/flavors.rb +25 -0
- data/lib/fog/digitalocean/models/compute/image.rb +15 -0
- data/lib/fog/digitalocean/models/compute/images.rb +25 -0
- data/lib/fog/digitalocean/models/compute/region.rb +14 -0
- data/lib/fog/digitalocean/models/compute/regions.rb +25 -0
- data/lib/fog/digitalocean/models/compute/server.rb +179 -0
- data/lib/fog/digitalocean/models/compute/servers.rb +50 -0
- data/lib/fog/digitalocean/models/compute/ssh_key.rb +28 -0
- data/lib/fog/digitalocean/models/compute/ssh_keys.rb +26 -0
- data/lib/fog/digitalocean/requests/compute/create_server.rb +70 -0
- data/lib/fog/digitalocean/requests/compute/create_ssh_key.rb +38 -0
- data/lib/fog/digitalocean/requests/compute/destroy_server.rb +37 -0
- data/lib/fog/digitalocean/requests/compute/destroy_ssh_key.rb +37 -0
- data/lib/fog/digitalocean/requests/compute/get_server_details.rb +35 -0
- data/lib/fog/digitalocean/requests/compute/get_ssh_key.rb +39 -0
- data/lib/fog/digitalocean/requests/compute/list_flavors.rb +38 -0
- data/lib/fog/digitalocean/requests/compute/list_images.rb +49 -0
- data/lib/fog/digitalocean/requests/compute/list_regions.rb +34 -0
- data/lib/fog/digitalocean/requests/compute/list_servers.rb +31 -0
- data/lib/fog/digitalocean/requests/compute/list_ssh_keys.rb +31 -0
- data/lib/fog/digitalocean/requests/compute/power_cycle_server.rb +33 -0
- data/lib/fog/digitalocean/requests/compute/power_off_server.rb +33 -0
- data/lib/fog/digitalocean/requests/compute/power_on_server.rb +33 -0
- data/lib/fog/digitalocean/requests/compute/reboot_server.rb +33 -0
- data/lib/fog/digitalocean/requests/compute/shutdown_server.rb +36 -0
- data/lib/fog/dns.rb +8 -24
- data/lib/fog/dnsimple/dns.rb +4 -1
- data/lib/fog/dnsimple/models/dns/record.rb +3 -4
- data/lib/fog/dnsimple/requests/dns/create_domain.rb +36 -0
- data/lib/fog/dnsimple/requests/dns/create_record.rb +27 -0
- data/lib/fog/dnsimple/requests/dns/delete_domain.rb +12 -0
- data/lib/fog/dnsimple/requests/dns/delete_record.rb +12 -0
- data/lib/fog/dnsimple/requests/dns/get_domain.rb +12 -0
- data/lib/fog/dnsimple/requests/dns/get_record.rb +24 -0
- data/lib/fog/dnsimple/requests/dns/list_domains.rb +12 -0
- data/lib/fog/dnsimple/requests/dns/list_records.rb +12 -0
- data/lib/fog/dnsimple/requests/dns/update_record.rb +20 -0
- data/lib/fog/dnsmadeeasy/models/dns/record.rb +1 -1
- data/lib/fog/dreamhost.rb +11 -0
- data/lib/fog/dreamhost/CHANGELOG.md +8 -0
- data/lib/fog/dreamhost/dns.rb +86 -0
- data/lib/fog/dreamhost/examples/dns/getting_started.md +105 -0
- data/lib/fog/dreamhost/models/dns/record.rb +35 -0
- data/lib/fog/dreamhost/models/dns/records.rb +38 -0
- data/lib/fog/dreamhost/models/dns/zone.rb +59 -0
- data/lib/fog/dreamhost/models/dns/zones.rb +41 -0
- data/lib/fog/dreamhost/requests/dns/create_record.rb +32 -0
- data/lib/fog/dreamhost/requests/dns/delete_record.rb +31 -0
- data/lib/fog/dreamhost/requests/dns/list_records.rb +25 -0
- data/lib/fog/dynect/models/dns/zone.rb +1 -1
- data/lib/fog/ecloud/models/compute/detached_disks.rb +3 -7
- data/lib/fog/ecloud/models/compute/internet_services.rb +1 -5
- data/lib/fog/ecloud/models/compute/ip_address.rb +2 -2
- data/lib/fog/ecloud/models/compute/network.rb +1 -1
- data/lib/fog/ecloud/models/compute/nodes.rb +1 -5
- data/lib/fog/ecloud/models/compute/public_ips.rb +1 -5
- data/lib/fog/ecloud/models/compute/servers.rb +2 -6
- data/lib/fog/ecloud/models/compute/virtual_machine_assigned_ip.rb +2 -2
- data/lib/fog/ecloud/models/compute/virtual_machine_assigned_ips.rb +2 -2
- data/lib/fog/ecloud/requests/compute/get_detached_disk.rb +1 -1
- data/lib/fog/ecloud/requests/compute/get_internet_service.rb +1 -1
- data/lib/fog/ecloud/requests/compute/get_node.rb +1 -1
- data/lib/fog/ecloud/requests/compute/get_public_ip.rb +1 -1
- data/lib/fog/ecloud/requests/compute/get_server.rb +1 -1
- data/lib/fog/ecloud/requests/compute/virtual_machine_create_from_template.rb +1 -1
- data/lib/fog/glesys/compute.rb +5 -1
- data/lib/fog/glesys/models/compute/ip.rb +47 -46
- data/lib/fog/glesys/models/compute/ips.rb +95 -12
- data/lib/fog/glesys/models/compute/server.rb +72 -5
- data/lib/fog/glesys/models/compute/servers.rb +7 -1
- data/lib/fog/glesys/models/compute/template.rb +8 -16
- data/lib/fog/glesys/models/compute/templates.rb +23 -5
- data/lib/fog/glesys/requests/compute/ip_details.rb +2 -2
- data/lib/fog/glesys/requests/compute/server_details.rb +2 -2
- data/lib/fog/glesys/requests/compute/template_list.rb +2 -2
- data/lib/fog/google.rb +1 -0
- data/lib/fog/google/README.md +28 -0
- data/lib/fog/google/Rakefile +17 -0
- data/lib/fog/google/compute.rb +162 -0
- data/lib/fog/google/examples/bootstrap.rb +9 -0
- data/lib/fog/google/examples/create.rb +37 -0
- data/lib/fog/google/examples/eric-fail.rb +19 -0
- data/lib/fog/google/examples/launch_micro_instance.rb +21 -0
- data/lib/fog/google/examples/metadata.rb +18 -0
- data/lib/fog/google/models/compute/disk.rb +80 -0
- data/lib/fog/google/models/compute/disks.rb +38 -0
- data/lib/fog/google/models/compute/flavor.rb +24 -0
- data/lib/fog/google/models/compute/flavors.rb +29 -0
- data/lib/fog/google/models/compute/image.rb +55 -0
- data/lib/fog/google/models/compute/images.rb +35 -0
- data/lib/fog/google/models/compute/server.rb +93 -0
- data/lib/fog/google/models/compute/servers.rb +71 -0
- data/lib/fog/google/models/storage/file.rb +7 -1
- data/lib/fog/google/parsers/storage/access_control_list.rb +2 -2
- data/lib/fog/google/requests/compute/delete_disk.rb +31 -0
- data/lib/fog/google/requests/compute/delete_firewall.rb +30 -0
- data/lib/fog/google/requests/compute/delete_image.rb +30 -0
- data/lib/fog/google/requests/compute/delete_network.rb +30 -0
- data/lib/fog/google/requests/compute/delete_operation.rb +30 -0
- data/lib/fog/google/requests/compute/delete_server.rb +43 -0
- data/lib/fog/google/requests/compute/get_disk.rb +34 -0
- data/lib/fog/google/requests/compute/get_firewall.rb +30 -0
- data/lib/fog/google/requests/compute/get_image.rb +30 -0
- data/lib/fog/google/requests/compute/get_machine_type.rb +30 -0
- data/lib/fog/google/requests/compute/get_network.rb +30 -0
- data/lib/fog/google/requests/compute/get_server.rb +37 -0
- data/lib/fog/google/requests/compute/get_zone.rb +30 -0
- data/lib/fog/google/requests/compute/insert_disk.rb +41 -0
- data/lib/fog/google/requests/compute/insert_firewall.rb +37 -0
- data/lib/fog/google/requests/compute/insert_image.rb +38 -0
- data/lib/fog/google/requests/compute/insert_network.rb +34 -0
- data/lib/fog/google/requests/compute/insert_server.rb +78 -0
- data/lib/fog/google/requests/compute/list_disks.rb +30 -0
- data/lib/fog/google/requests/compute/list_firewalls.rb +29 -0
- data/lib/fog/google/requests/compute/list_global_operations.rb +28 -0
- data/lib/fog/google/requests/compute/list_images.rb +30 -0
- data/lib/fog/google/requests/compute/list_machine_types.rb +30 -0
- data/lib/fog/google/requests/compute/list_networks.rb +29 -0
- data/lib/fog/google/requests/compute/list_servers.rb +30 -0
- data/lib/fog/google/requests/compute/list_zone_operations.rb +28 -0
- data/lib/fog/google/requests/compute/list_zones.rb +29 -0
- data/lib/fog/google/requests/compute/set_metadata.rb +36 -0
- data/lib/fog/google/requests/storage/get_object.rb +1 -1
- data/lib/fog/google/storage.rb +1 -1
- data/lib/fog/hp.rb +56 -26
- data/lib/fog/hp/CHANGELOG.hp +123 -0
- data/lib/fog/hp/README_HP.rdoc +7 -6
- data/lib/fog/hp/block_storage.rb +170 -0
- data/lib/fog/hp/cdn.rb +30 -7
- data/lib/fog/hp/compute.rb +89 -17
- data/lib/fog/hp/models/block_storage/bootable_volumes.rb +28 -0
- data/lib/fog/hp/models/block_storage/snapshot.rb +56 -0
- data/lib/fog/hp/models/block_storage/snapshots.rb +29 -0
- data/lib/fog/hp/models/block_storage/volume.rb +102 -0
- data/lib/fog/hp/models/block_storage/volumes.rb +28 -0
- data/lib/fog/hp/models/compute/address.rb +0 -1
- data/lib/fog/hp/models/compute/image.rb +43 -4
- data/lib/fog/hp/models/compute/images.rb +0 -5
- data/lib/fog/hp/models/compute/key_pair.rb +0 -5
- data/lib/fog/hp/models/compute/meta.rb +29 -0
- data/lib/fog/hp/models/compute/metadata.rb +79 -0
- data/lib/fog/hp/models/compute/server.rb +96 -26
- data/lib/fog/hp/models/meta_parent.rb +33 -0
- data/lib/fog/hp/models/storage/directories.rb +35 -10
- data/lib/fog/hp/models/storage/directory.rb +139 -29
- data/lib/fog/hp/models/storage/file.rb +10 -0
- data/lib/fog/hp/models/storage/files.rb +9 -1
- data/lib/fog/hp/models/storage/shared_directories.rb +55 -0
- data/lib/fog/hp/models/storage/shared_directory.rb +39 -0
- data/lib/fog/hp/models/storage/shared_file.rb +67 -0
- data/lib/fog/hp/models/storage/shared_files.rb +64 -0
- data/lib/fog/hp/requests/block_storage/create_snapshot.rb +76 -0
- data/lib/fog/hp/requests/block_storage/create_volume.rb +87 -0
- data/lib/fog/hp/requests/block_storage/delete_snapshot.rb +38 -0
- data/lib/fog/hp/requests/block_storage/delete_volume.rb +38 -0
- data/lib/fog/hp/requests/block_storage/get_bootable_volume_details.rb +59 -0
- data/lib/fog/hp/requests/block_storage/get_snapshot_details.rb +54 -0
- data/lib/fog/hp/requests/block_storage/get_volume_details.rb +58 -0
- data/lib/fog/hp/requests/block_storage/list_bootable_volumes.rb +53 -0
- data/lib/fog/hp/requests/block_storage/list_snapshots.rb +48 -0
- data/lib/fog/hp/requests/block_storage/list_volumes.rb +52 -0
- data/lib/fog/hp/requests/compute/attach_volume.rb +78 -0
- data/lib/fog/hp/requests/compute/create_image.rb +5 -8
- data/lib/fog/hp/requests/compute/create_persistent_server.rb +168 -0
- data/lib/fog/hp/requests/compute/create_server.rb +38 -32
- data/lib/fog/hp/requests/compute/delete_meta.rb +55 -0
- data/lib/fog/hp/requests/compute/delete_security_group_rule.rb +4 -4
- data/lib/fog/hp/requests/compute/detach_volume.rb +47 -0
- data/lib/fog/hp/requests/compute/get_console_output.rb +43 -0
- data/lib/fog/hp/requests/compute/get_meta.rb +57 -0
- data/lib/fog/hp/requests/compute/get_windows_password.rb +43 -0
- data/lib/fog/hp/requests/compute/list_metadata.rb +56 -0
- data/lib/fog/hp/requests/compute/list_server_volumes.rb +49 -0
- data/lib/fog/hp/requests/compute/set_metadata.rb +60 -0
- data/lib/fog/hp/requests/compute/update_meta.rb +61 -0
- data/lib/fog/hp/requests/compute/update_metadata.rb +60 -0
- data/lib/fog/hp/requests/storage/delete_shared_object.rb +38 -0
- data/lib/fog/hp/requests/storage/get_object.rb +13 -11
- data/lib/fog/hp/requests/storage/get_object_temp_url.rb +31 -0
- data/lib/fog/hp/requests/storage/get_shared_container.rb +75 -0
- data/lib/fog/hp/requests/storage/get_shared_object.rb +66 -0
- data/lib/fog/hp/requests/storage/head_container.rb +1 -0
- data/lib/fog/hp/requests/storage/head_object.rb +1 -0
- data/lib/fog/hp/requests/storage/head_shared_container.rb +45 -0
- data/lib/fog/hp/requests/storage/head_shared_object.rb +39 -0
- data/lib/fog/hp/requests/storage/put_container.rb +6 -6
- data/lib/fog/hp/requests/storage/put_object.rb +12 -1
- data/lib/fog/hp/requests/storage/put_shared_object.rb +85 -0
- data/lib/fog/hp/storage.rb +195 -34
- data/lib/fog/ibm/requests/compute/create_instance.rb +20 -15
- data/lib/fog/identity.rb +8 -4
- data/lib/fog/image.rb +5 -6
- data/lib/fog/internet_archive.rb +292 -0
- data/lib/fog/internet_archive/models/storage/directories.rb +43 -0
- data/lib/fog/internet_archive/models/storage/directory.rb +109 -0
- data/lib/fog/internet_archive/models/storage/file.rb +267 -0
- data/lib/fog/internet_archive/models/storage/files.rb +122 -0
- data/lib/fog/internet_archive/models/storage/ia_attributes.rb +39 -0
- data/lib/fog/internet_archive/parsers/storage/access_control_list.rb +46 -0
- data/lib/fog/internet_archive/parsers/storage/complete_multipart_upload.rb +24 -0
- data/lib/fog/internet_archive/parsers/storage/copy_object.rb +22 -0
- data/lib/fog/internet_archive/parsers/storage/cors_configuration.rb +41 -0
- data/lib/fog/internet_archive/parsers/storage/delete_multiple_objects.rb +50 -0
- data/lib/fog/internet_archive/parsers/storage/get_bucket.rb +62 -0
- data/lib/fog/internet_archive/parsers/storage/get_bucket_lifecycle.rb +66 -0
- data/lib/fog/internet_archive/parsers/storage/get_bucket_location.rb +20 -0
- data/lib/fog/internet_archive/parsers/storage/get_bucket_logging.rb +40 -0
- data/lib/fog/internet_archive/parsers/storage/get_bucket_website.rb +26 -0
- data/lib/fog/internet_archive/parsers/storage/get_request_payment.rb +20 -0
- data/lib/fog/internet_archive/parsers/storage/get_service.rb +32 -0
- data/lib/fog/internet_archive/parsers/storage/initiate_multipart_upload.rb +24 -0
- data/lib/fog/internet_archive/parsers/storage/list_multipart_uploads.rb +56 -0
- data/lib/fog/internet_archive/parsers/storage/list_parts.rb +40 -0
- data/lib/fog/internet_archive/requests/storage/abort_multipart_upload.rb +28 -0
- data/lib/fog/internet_archive/requests/storage/acl_utils.rb +62 -0
- data/lib/fog/internet_archive/requests/storage/complete_multipart_upload.rb +48 -0
- data/lib/fog/internet_archive/requests/storage/copy_object.rb +81 -0
- data/lib/fog/internet_archive/requests/storage/cors_utils.rb +41 -0
- data/lib/fog/internet_archive/requests/storage/delete_bucket.rb +47 -0
- data/lib/fog/internet_archive/requests/storage/delete_bucket_cors.rb +29 -0
- data/lib/fog/internet_archive/requests/storage/delete_bucket_lifecycle.rb +27 -0
- data/lib/fog/internet_archive/requests/storage/delete_bucket_policy.rb +29 -0
- data/lib/fog/internet_archive/requests/storage/delete_bucket_website.rb +29 -0
- data/lib/fog/internet_archive/requests/storage/delete_multiple_objects.rb +93 -0
- data/lib/fog/internet_archive/requests/storage/delete_object.rb +50 -0
- data/lib/fog/internet_archive/requests/storage/get_bucket.rb +112 -0
- data/lib/fog/internet_archive/requests/storage/get_bucket_acl.rb +69 -0
- data/lib/fog/internet_archive/requests/storage/get_bucket_cors.rb +65 -0
- data/lib/fog/internet_archive/requests/storage/get_bucket_lifecycle.rb +38 -0
- data/lib/fog/internet_archive/requests/storage/get_bucket_location.rb +58 -0
- data/lib/fog/internet_archive/requests/storage/get_bucket_logging.rb +47 -0
- data/lib/fog/internet_archive/requests/storage/get_bucket_policy.rb +34 -0
- data/lib/fog/internet_archive/requests/storage/get_bucket_website.rb +40 -0
- data/lib/fog/internet_archive/requests/storage/get_object.rb +167 -0
- data/lib/fog/internet_archive/requests/storage/get_object_acl.rb +76 -0
- data/lib/fog/internet_archive/requests/storage/get_object_http_url.rb +55 -0
- data/lib/fog/internet_archive/requests/storage/get_object_https_url.rb +37 -0
- data/lib/fog/internet_archive/requests/storage/get_object_torrent.rb +47 -0
- data/lib/fog/internet_archive/requests/storage/get_object_url.rb +55 -0
- data/lib/fog/internet_archive/requests/storage/get_request_payment.rb +49 -0
- data/lib/fog/internet_archive/requests/storage/get_service.rb +54 -0
- data/lib/fog/internet_archive/requests/storage/head_object.rb +61 -0
- data/lib/fog/internet_archive/requests/storage/initiate_multipart_upload.rb +44 -0
- data/lib/fog/internet_archive/requests/storage/list_multipart_uploads.rb +54 -0
- data/lib/fog/internet_archive/requests/storage/list_parts.rb +55 -0
- data/lib/fog/internet_archive/requests/storage/post_object_hidden_fields.rb +38 -0
- data/lib/fog/internet_archive/requests/storage/put_bucket.rb +74 -0
- data/lib/fog/internet_archive/requests/storage/put_bucket_acl.rb +71 -0
- data/lib/fog/internet_archive/requests/storage/put_bucket_cors.rb +49 -0
- data/lib/fog/internet_archive/requests/storage/put_bucket_lifecycle.rb +77 -0
- data/lib/fog/internet_archive/requests/storage/put_bucket_logging.rb +81 -0
- data/lib/fog/internet_archive/requests/storage/put_bucket_policy.rb +28 -0
- data/lib/fog/internet_archive/requests/storage/put_bucket_website.rb +64 -0
- data/lib/fog/internet_archive/requests/storage/put_object.rb +98 -0
- data/lib/fog/internet_archive/requests/storage/put_object_acl.rb +75 -0
- data/lib/fog/internet_archive/requests/storage/put_object_url.rb +48 -0
- data/lib/fog/internet_archive/requests/storage/put_request_payment.rb +49 -0
- data/lib/fog/internet_archive/requests/storage/sync_clock.rb +28 -0
- data/lib/fog/internet_archive/requests/storage/upload_part.rb +41 -0
- data/lib/fog/internet_archive/signaturev4.rb +73 -0
- data/lib/fog/internet_archive/storage.rb +390 -0
- data/lib/fog/joyent.rb +2 -0
- data/lib/fog/joyent/compute.rb +59 -42
- data/lib/fog/joyent/errors.rb +2 -2
- data/lib/fog/joyent/models/compute/network.rb +13 -0
- data/lib/fog/joyent/models/compute/networks.rb +15 -0
- data/lib/fog/joyent/models/compute/server.rb +3 -2
- data/lib/fog/joyent/models/compute/servers.rb +3 -1
- data/lib/fog/joyent/requests/compute/delete_machine.rb +1 -1
- data/lib/fog/joyent/requests/compute/get_machine.rb +1 -1
- data/lib/fog/joyent/requests/compute/list_machines.rb +2 -1
- data/lib/fog/joyent/requests/compute/list_networks.rb +26 -0
- data/lib/fog/joyent/requests/compute/resize_machine.rb +4 -1
- data/lib/fog/{core/json.rb → json.rb} +13 -3
- data/lib/fog/libvirt/models/compute/nic.rb +1 -0
- data/lib/fog/libvirt/models/compute/volume.rb +1 -1
- data/lib/fog/libvirt/requests/compute/get_node_info.rb +1 -1
- data/lib/fog/linode/models/dns/record.rb +0 -1
- data/lib/fog/linode/models/dns/zone.rb +0 -1
- data/lib/fog/local/models/storage/files.rb +13 -13
- data/lib/fog/metering.rb +25 -0
- data/lib/fog/monitoring.rb +24 -0
- data/lib/fog/network.rb +8 -6
- data/lib/fog/openstack.rb +40 -1
- data/lib/fog/openstack/CHANGELOG.md +47 -0
- data/lib/fog/openstack/compute.rb +20 -7
- data/lib/fog/openstack/examples/identity/basics.rb +69 -0
- data/lib/fog/openstack/examples/image/upload-test-image.rb +77 -0
- data/lib/fog/openstack/examples/network/network_subnets_routers.rb +63 -0
- data/lib/fog/openstack/examples/storage/set-account-quota.rb +66 -0
- data/lib/fog/openstack/identity.rb +5 -5
- data/lib/fog/openstack/image.rb +8 -2
- data/lib/fog/openstack/metering.rb +215 -0
- data/lib/fog/openstack/models/compute/flavors.rb +2 -2
- data/lib/fog/openstack/models/compute/images.rb +2 -1
- data/lib/fog/openstack/models/compute/metadata.rb +5 -6
- data/lib/fog/openstack/models/compute/server.rb +69 -25
- data/lib/fog/openstack/models/identity/role.rb +1 -1
- data/lib/fog/openstack/models/image/images.rb +2 -1
- data/lib/fog/openstack/models/metering/meter.rb +0 -0
- data/lib/fog/openstack/models/metering/meters.rb +0 -0
- data/lib/fog/openstack/models/metering/resource.rb +24 -0
- data/lib/fog/openstack/models/metering/resources.rb +25 -0
- data/lib/fog/openstack/models/network/floating_ip.rb +52 -0
- data/lib/fog/openstack/models/network/floating_ips.rb +34 -0
- data/lib/fog/openstack/models/network/lb_health_monitor.rb +68 -0
- data/lib/fog/openstack/models/network/lb_health_monitors.rb +34 -0
- data/lib/fog/openstack/models/network/lb_member.rb +53 -0
- data/lib/fog/openstack/models/network/lb_members.rb +34 -0
- data/lib/fog/openstack/models/network/lb_pool.rb +78 -0
- data/lib/fog/openstack/models/network/lb_pools.rb +34 -0
- data/lib/fog/openstack/models/network/lb_vip.rb +59 -0
- data/lib/fog/openstack/models/network/lb_vips.rb +34 -0
- data/lib/fog/openstack/models/network/network.rb +8 -0
- data/lib/fog/openstack/models/network/router.rb +56 -0
- data/lib/fog/openstack/models/network/routers.rb +34 -0
- data/lib/fog/openstack/models/storage/directories.rb +39 -0
- data/lib/fog/openstack/models/storage/directory.rb +50 -0
- data/lib/fog/openstack/models/storage/file.rb +150 -0
- data/lib/fog/openstack/models/storage/files.rb +94 -0
- data/lib/fog/openstack/models/volume/volume.rb +3 -1
- data/lib/fog/openstack/models/volume/volumes.rb +2 -1
- data/lib/fog/openstack/network.rb +103 -29
- data/lib/fog/openstack/requests/compute/add_flavor_access.rb +31 -0
- data/lib/fog/openstack/requests/compute/allocate_address.rb +1 -1
- data/lib/fog/openstack/requests/compute/attach_volume.rb +10 -5
- data/lib/fog/openstack/requests/compute/create_flavor.rb +1 -1
- data/lib/fog/openstack/requests/compute/create_server.rb +34 -7
- data/lib/fog/openstack/requests/compute/create_volume.rb +14 -13
- data/lib/fog/openstack/requests/compute/delete_meta.rb +43 -0
- data/lib/fog/openstack/requests/compute/delete_volume.rb +9 -2
- data/lib/fog/openstack/requests/compute/detach_volume.rb +8 -2
- data/lib/fog/openstack/requests/compute/get_limits.rb +1 -1
- data/lib/fog/openstack/requests/compute/get_server_volumes.rb +10 -0
- data/lib/fog/openstack/requests/compute/get_snapshot_details.rb +1 -1
- data/lib/fog/openstack/requests/compute/get_volume_details.rb +8 -17
- data/lib/fog/openstack/requests/compute/list_address_pools.rb +10 -0
- data/lib/fog/openstack/requests/compute/list_flavors_detail.rb +4 -3
- data/lib/fog/openstack/requests/compute/list_security_groups.rb +1 -1
- data/lib/fog/openstack/requests/compute/list_servers.rb +1 -1
- data/lib/fog/openstack/requests/compute/list_tenants.rb +1 -0
- data/lib/fog/openstack/requests/compute/list_tenants_with_flavor_access.rb +26 -0
- data/lib/fog/openstack/requests/compute/list_volumes.rb +4 -26
- data/lib/fog/openstack/requests/compute/rebuild_server.rb +9 -1
- data/lib/fog/openstack/requests/compute/remove_fixed_ip.rb +1 -1
- data/lib/fog/openstack/requests/compute/remove_flavor_access.rb +31 -0
- data/lib/fog/openstack/requests/compute/revert_resize_server.rb +2 -2
- data/lib/fog/openstack/requests/compute/update_meta.rb +46 -0
- data/lib/fog/openstack/requests/compute/update_server.rb +1 -1
- data/lib/fog/openstack/requests/identity/create_tenant.rb +2 -2
- data/lib/fog/openstack/requests/identity/delete_user_role.rb +2 -2
- data/lib/fog/openstack/requests/identity/get_user_by_name.rb +2 -2
- data/lib/fog/openstack/requests/image/create_image.rb +1 -1
- data/lib/fog/openstack/requests/metering/get_resource.rb +32 -0
- data/lib/fog/openstack/requests/metering/get_samples.rb +55 -0
- data/lib/fog/openstack/requests/metering/get_statistics.rb +56 -0
- data/lib/fog/openstack/requests/metering/list_meters.rb +50 -0
- data/lib/fog/openstack/requests/metering/list_resources.rb +32 -0
- data/lib/fog/openstack/requests/network/add_router_interface.rb +48 -0
- data/lib/fog/openstack/requests/network/associate_floating_ip.rb +49 -0
- data/lib/fog/openstack/requests/network/associate_lb_health_monitor.rb +39 -0
- data/lib/fog/openstack/requests/network/create_floating_ip.rb +50 -0
- data/lib/fog/openstack/requests/network/create_lb_health_monitor.rb +56 -0
- data/lib/fog/openstack/requests/network/create_lb_member.rb +53 -0
- data/lib/fog/openstack/requests/network/create_lb_pool.rb +60 -0
- data/lib/fog/openstack/requests/network/create_lb_vip.rb +60 -0
- data/lib/fog/openstack/requests/network/create_network.rb +57 -2
- data/lib/fog/openstack/requests/network/create_router.rb +57 -0
- data/lib/fog/openstack/requests/network/delete_floating_ip.rb +30 -0
- data/lib/fog/openstack/requests/network/delete_lb_health_monitor.rb +30 -0
- data/lib/fog/openstack/requests/network/delete_lb_member.rb +30 -0
- data/lib/fog/openstack/requests/network/delete_lb_pool.rb +30 -0
- data/lib/fog/openstack/requests/network/delete_lb_vip.rb +30 -0
- data/lib/fog/openstack/requests/network/delete_quota.rb +26 -0
- data/lib/fog/openstack/requests/network/delete_router.rb +30 -0
- data/lib/fog/openstack/requests/network/disassociate_floating_ip.rb +49 -0
- data/lib/fog/openstack/requests/network/disassociate_lb_health_monitor.rb +31 -0
- data/lib/fog/openstack/requests/network/get_floating_ip.rb +42 -0
- data/lib/fog/openstack/requests/network/get_lb_health_monitor.rb +30 -0
- data/lib/fog/openstack/requests/network/get_lb_member.rb +30 -0
- data/lib/fog/openstack/requests/network/get_lb_pool.rb +30 -0
- data/lib/fog/openstack/requests/network/get_lb_pool_stats.rb +35 -0
- data/lib/fog/openstack/requests/network/get_lb_vip.rb +30 -0
- data/lib/fog/openstack/requests/network/get_quota.rb +31 -0
- data/lib/fog/openstack/requests/network/get_quotas.rb +31 -0
- data/lib/fog/openstack/requests/network/get_router.rb +32 -0
- data/lib/fog/openstack/requests/network/list_floating_ips.rb +27 -0
- data/lib/fog/openstack/requests/network/list_lb_health_monitors.rb +27 -0
- data/lib/fog/openstack/requests/network/list_lb_members.rb +27 -0
- data/lib/fog/openstack/requests/network/list_lb_pools.rb +27 -0
- data/lib/fog/openstack/requests/network/list_lb_vips.rb +27 -0
- data/lib/fog/openstack/requests/network/list_routers.rb +27 -0
- data/lib/fog/openstack/requests/network/remove_router_interface.rb +36 -0
- data/lib/fog/openstack/requests/network/update_lb_health_monitor.rb +45 -0
- data/lib/fog/openstack/requests/network/update_lb_member.rb +41 -0
- data/lib/fog/openstack/requests/network/update_lb_pool.rb +42 -0
- data/lib/fog/openstack/requests/network/update_lb_vip.rb +44 -0
- data/lib/fog/openstack/requests/network/update_quota.rb +33 -0
- data/lib/fog/openstack/requests/network/update_router.rb +85 -0
- data/lib/fog/openstack/requests/storage/copy_object.rb +27 -0
- data/lib/fog/openstack/requests/storage/delete_container.rb +22 -0
- data/lib/fog/openstack/requests/storage/delete_object.rb +23 -0
- data/lib/fog/openstack/requests/storage/get_container.rb +44 -0
- data/lib/fog/openstack/requests/storage/get_containers.rb +33 -0
- data/lib/fog/openstack/requests/storage/get_object.rb +29 -0
- data/lib/fog/openstack/requests/storage/get_object_https_url.rb +51 -0
- data/lib/fog/openstack/requests/storage/head_container.rb +28 -0
- data/lib/fog/openstack/requests/storage/head_containers.rb +25 -0
- data/lib/fog/openstack/requests/storage/head_object.rb +23 -0
- data/lib/fog/openstack/requests/storage/post_set_meta_temp_url_key.rb +37 -0
- data/lib/fog/openstack/requests/storage/put_container.rb +22 -0
- data/lib/fog/openstack/requests/storage/put_object.rb +33 -0
- data/lib/fog/openstack/requests/storage/put_object_manifest.rb +38 -0
- data/lib/fog/openstack/requests/volume/create_volume.rb +4 -2
- data/lib/fog/openstack/requests/volume/get_quota.rb +31 -0
- data/lib/fog/openstack/requests/volume/get_quota_defaults.rb +31 -0
- data/lib/fog/openstack/requests/volume/update_quota.rb +32 -0
- data/lib/fog/openstack/storage.rb +216 -0
- data/lib/fog/openstack/volume.rb +14 -5
- data/lib/fog/openvz.rb +9 -0
- data/lib/fog/openvz/README.md +188 -0
- data/lib/fog/openvz/compute.rb +176 -0
- data/lib/fog/openvz/models/compute/server.rb +194 -0
- data/lib/fog/openvz/models/compute/servers.rb +27 -0
- data/lib/fog/openvz/requests/compute/compact_server.rb +21 -0
- data/lib/fog/openvz/requests/compute/convert_server.rb +21 -0
- data/lib/fog/openvz/requests/compute/create_server.rb +23 -0
- data/lib/fog/openvz/requests/compute/destroy_server.rb +21 -0
- data/lib/fog/openvz/requests/compute/exec2_server.rb +21 -0
- data/lib/fog/openvz/requests/compute/exec_server.rb +21 -0
- data/lib/fog/openvz/requests/compute/get_server_details.rb +21 -0
- data/lib/fog/openvz/requests/compute/list_servers.rb +21 -0
- data/lib/fog/openvz/requests/compute/mount_server.rb +21 -0
- data/lib/fog/openvz/requests/compute/quotainit_server.rb +21 -0
- data/lib/fog/openvz/requests/compute/quotaoff_server.rb +21 -0
- data/lib/fog/openvz/requests/compute/quotaon_server.rb +21 -0
- data/lib/fog/openvz/requests/compute/restart_server.rb +24 -0
- data/lib/fog/openvz/requests/compute/resume_server.rb +21 -0
- data/lib/fog/openvz/requests/compute/runscript_server.rb +21 -0
- data/lib/fog/openvz/requests/compute/set_server.rb +27 -0
- data/lib/fog/openvz/requests/compute/snapshot_delete_server.rb +21 -0
- data/lib/fog/openvz/requests/compute/snapshot_list_server.rb +21 -0
- data/lib/fog/openvz/requests/compute/snapshot_mount_server.rb +21 -0
- data/lib/fog/openvz/requests/compute/snapshot_server.rb +21 -0
- data/lib/fog/openvz/requests/compute/snapshot_switch_server.rb +21 -0
- data/lib/fog/openvz/requests/compute/snapshot_umount_server.rb +21 -0
- data/lib/fog/openvz/requests/compute/start_server.rb +24 -0
- data/lib/fog/openvz/requests/compute/status_server.rb +21 -0
- data/lib/fog/openvz/requests/compute/stop_server.rb +24 -0
- data/lib/fog/openvz/requests/compute/suspend_server.rb +21 -0
- data/lib/fog/openvz/requests/compute/umount_server.rb +21 -0
- data/lib/fog/ovirt/compute.rb +5 -0
- data/lib/fog/ovirt/models/compute/quota.rb +21 -0
- data/lib/fog/ovirt/models/compute/quotas.rb +24 -0
- data/lib/fog/ovirt/models/compute/server.rb +4 -3
- data/lib/fog/ovirt/models/compute/volume.rb +2 -0
- data/lib/fog/ovirt/requests/compute/get_api_version.rb +16 -0
- data/lib/fog/ovirt/requests/compute/get_quota.rb +19 -0
- data/lib/fog/ovirt/requests/compute/list_quotas.rb +21 -0
- data/lib/fog/ovirt/requests/compute/mock_files/quotas.xml +7 -0
- data/lib/fog/rackspace.rb +55 -11
- data/lib/fog/rackspace/block_storage.rb +103 -40
- data/lib/fog/rackspace/cdn.rb +120 -38
- data/lib/fog/rackspace/compute.rb +56 -58
- data/lib/fog/rackspace/compute_v2.rb +149 -45
- data/lib/fog/rackspace/databases.rb +86 -43
- data/lib/fog/rackspace/dns.rb +77 -38
- data/lib/fog/rackspace/docs/block_storage.md +417 -0
- data/lib/fog/rackspace/docs/compute_v2.md +722 -0
- data/lib/fog/rackspace/docs/getting_started.md +86 -0
- data/lib/fog/rackspace/docs/storage.md +530 -0
- data/lib/fog/rackspace/errors.rb +34 -0
- data/lib/fog/rackspace/examples/README.md +47 -0
- data/lib/fog/rackspace/examples/block_storage/create_snapshot.rb +118 -0
- data/lib/fog/rackspace/examples/block_storage/create_volume.rb +58 -0
- data/lib/fog/rackspace/examples/block_storage/delete_volume.rb +53 -0
- data/lib/fog/rackspace/examples/compute_v2/create_image.rb +61 -0
- data/lib/fog/rackspace/examples/compute_v2/create_server.rb +89 -0
- data/lib/fog/rackspace/examples/compute_v2/delete_image.rb +61 -0
- data/lib/fog/rackspace/examples/compute_v2/delete_server.rb +56 -0
- data/lib/fog/rackspace/examples/compute_v2/detach_volume.rb +93 -0
- data/lib/fog/rackspace/examples/compute_v2/resize_server.rb +106 -0
- data/lib/fog/rackspace/examples/compute_v2/server_attachments.rb +69 -0
- data/lib/fog/rackspace/examples/compute_v2/server_metadata.rb +85 -0
- data/lib/fog/rackspace/examples/storage/create_cdn_directory.rb +44 -0
- data/lib/fog/rackspace/examples/storage/create_private_directory.rb +46 -0
- data/lib/fog/rackspace/examples/storage/delete_directory.rb +62 -0
- data/lib/fog/rackspace/examples/storage/delete_file.rb +70 -0
- data/lib/fog/rackspace/examples/storage/download_file.rb +75 -0
- data/lib/fog/rackspace/examples/storage/lorem.txt +1 -0
- data/lib/fog/rackspace/examples/storage/storage_metadata.rb +82 -0
- data/lib/fog/rackspace/examples/storage/upload_file.rb +45 -0
- data/lib/fog/rackspace/examples/storage/upload_large_files.rb +103 -0
- data/lib/fog/rackspace/identity.rb +19 -28
- data/lib/fog/rackspace/load_balancers.rb +86 -42
- data/lib/fog/rackspace/mock_data.rb +172 -0
- data/lib/fog/rackspace/models/block_storage/snapshot.rb +42 -0
- data/lib/fog/rackspace/models/block_storage/snapshots.rb +15 -0
- data/lib/fog/rackspace/models/block_storage/volume.rb +65 -0
- data/lib/fog/rackspace/models/block_storage/volume_type.rb +6 -0
- data/lib/fog/rackspace/models/block_storage/volume_types.rb +15 -0
- data/lib/fog/rackspace/models/block_storage/volumes.rb +15 -0
- data/lib/fog/rackspace/models/compute/server.rb +1 -1
- data/lib/fog/rackspace/models/compute_v2/attachment.rb +37 -9
- data/lib/fog/rackspace/models/compute_v2/attachments.rb +14 -0
- data/lib/fog/rackspace/models/compute_v2/flavor.rb +18 -0
- data/lib/fog/rackspace/models/compute_v2/flavors.rb +17 -1
- data/lib/fog/rackspace/models/compute_v2/image.rb +82 -3
- data/lib/fog/rackspace/models/compute_v2/images.rb +17 -0
- data/lib/fog/rackspace/models/compute_v2/key_pair.rb +56 -0
- data/lib/fog/rackspace/models/compute_v2/key_pairs.rb +43 -0
- data/lib/fog/rackspace/models/compute_v2/meta_parent.rb +42 -0
- data/lib/fog/rackspace/models/compute_v2/metadata.rb +112 -0
- data/lib/fog/rackspace/models/compute_v2/metadatum.rb +41 -0
- data/lib/fog/rackspace/models/compute_v2/network.rb +27 -0
- data/lib/fog/rackspace/models/compute_v2/networks.rb +23 -0
- data/lib/fog/rackspace/models/compute_v2/server.rb +380 -19
- data/lib/fog/rackspace/models/compute_v2/servers.rb +35 -2
- data/lib/fog/rackspace/models/dns/records.rb +1 -1
- data/lib/fog/rackspace/models/dns/zones.rb +46 -4
- data/lib/fog/rackspace/models/identity/credentials.rb +3 -2
- data/lib/fog/rackspace/models/identity/service_catalog.rb +83 -0
- data/lib/fog/rackspace/models/identity/users.rb +2 -2
- data/lib/fog/rackspace/models/load_balancers/load_balancer.rb +7 -7
- data/lib/fog/rackspace/models/monitoring/agent_token.rb +40 -0
- data/lib/fog/rackspace/models/monitoring/agent_tokens.rb +28 -0
- data/lib/fog/rackspace/models/monitoring/alarm.rb +51 -0
- data/lib/fog/rackspace/models/monitoring/alarm_example.rb +26 -0
- data/lib/fog/rackspace/models/monitoring/alarm_examples.rb +31 -0
- data/lib/fog/rackspace/models/monitoring/alarms.rb +40 -0
- data/lib/fog/rackspace/models/monitoring/base.rb +36 -0
- data/lib/fog/rackspace/models/monitoring/check.rb +75 -0
- data/lib/fog/rackspace/models/monitoring/check_type.rb +15 -0
- data/lib/fog/rackspace/models/monitoring/check_types.rb +23 -0
- data/lib/fog/rackspace/models/monitoring/checks.rb +40 -0
- data/lib/fog/rackspace/models/monitoring/data_point.rb +18 -0
- data/lib/fog/rackspace/models/monitoring/data_points.rb +49 -0
- data/lib/fog/rackspace/models/monitoring/entities.rb +48 -0
- data/lib/fog/rackspace/models/monitoring/entity.rb +64 -0
- data/lib/fog/rackspace/models/monitoring/metric.rb +25 -0
- data/lib/fog/rackspace/models/monitoring/metrics.rb +27 -0
- data/lib/fog/rackspace/models/storage/account.rb +50 -0
- data/lib/fog/rackspace/models/storage/directories.rb +26 -3
- data/lib/fog/rackspace/models/storage/directory.rb +151 -38
- data/lib/fog/rackspace/models/storage/file.rb +166 -66
- data/lib/fog/rackspace/models/storage/files.rb +89 -4
- data/lib/fog/rackspace/models/storage/metadata.rb +152 -0
- data/lib/fog/rackspace/monitoring.rb +145 -0
- data/lib/fog/rackspace/requests/block_storage/create_snapshot.rb +52 -0
- data/lib/fog/rackspace/requests/block_storage/create_volume.rb +66 -0
- data/lib/fog/rackspace/requests/block_storage/delete_snapshot.rb +17 -0
- data/lib/fog/rackspace/requests/block_storage/delete_volume.rb +28 -0
- data/lib/fog/rackspace/requests/block_storage/get_snapshot.rb +31 -0
- data/lib/fog/rackspace/requests/block_storage/get_volume.rb +41 -0
- data/lib/fog/rackspace/requests/block_storage/get_volume_type.rb +27 -0
- data/lib/fog/rackspace/requests/block_storage/list_snapshots.rb +25 -0
- data/lib/fog/rackspace/requests/block_storage/list_volume_types.rb +20 -0
- data/lib/fog/rackspace/requests/block_storage/list_volumes.rb +28 -0
- data/lib/fog/rackspace/requests/cdn/delete_object.rb +41 -0
- data/lib/fog/rackspace/requests/cdn/get_containers.rb +39 -0
- data/lib/fog/rackspace/requests/cdn/head_container.rb +29 -0
- data/lib/fog/rackspace/requests/cdn/post_container.rb +27 -1
- data/lib/fog/rackspace/requests/cdn/put_container.rb +27 -1
- data/lib/fog/rackspace/requests/compute/delete_image.rb +1 -1
- data/lib/fog/rackspace/requests/compute_v2/attach_volume.rb +58 -2
- data/lib/fog/rackspace/requests/compute_v2/change_server_password.rb +17 -0
- data/lib/fog/rackspace/requests/compute_v2/confirm_resize_server.rb +22 -0
- data/lib/fog/rackspace/requests/compute_v2/create_image.rb +68 -11
- data/lib/fog/rackspace/requests/compute_v2/create_keypair.rb +53 -0
- data/lib/fog/rackspace/requests/compute_v2/create_network.rb +36 -0
- data/lib/fog/rackspace/requests/compute_v2/create_server.rb +160 -8
- data/lib/fog/rackspace/requests/compute_v2/delete_attachment.rb +25 -0
- data/lib/fog/rackspace/requests/compute_v2/delete_image.rb +8 -4
- data/lib/fog/rackspace/requests/compute_v2/delete_keypair.rb +36 -0
- data/lib/fog/rackspace/requests/compute_v2/delete_metadata_item.rb +37 -0
- data/lib/fog/rackspace/requests/compute_v2/delete_network.rb +21 -0
- data/lib/fog/rackspace/requests/compute_v2/delete_server.rb +21 -0
- data/lib/fog/rackspace/requests/compute_v2/get_attachment.rb +24 -0
- data/lib/fog/rackspace/requests/compute_v2/get_flavor.rb +29 -0
- data/lib/fog/rackspace/requests/compute_v2/get_image.rb +33 -0
- data/lib/fog/rackspace/requests/compute_v2/get_keypair.rb +41 -0
- data/lib/fog/rackspace/requests/compute_v2/get_metadata_item.rb +39 -0
- data/lib/fog/rackspace/requests/compute_v2/get_network.rb +21 -0
- data/lib/fog/rackspace/requests/compute_v2/get_server.rb +49 -0
- data/lib/fog/rackspace/requests/compute_v2/list_addresses.rb +9 -0
- data/lib/fog/rackspace/requests/compute_v2/list_addresses_by_network.rb +16 -0
- data/lib/fog/rackspace/requests/compute_v2/list_attachments.rb +23 -0
- data/lib/fog/rackspace/requests/compute_v2/list_flavors.rb +21 -0
- data/lib/fog/rackspace/requests/compute_v2/list_images.rb +21 -0
- data/lib/fog/rackspace/requests/compute_v2/list_keypairs.rb +37 -0
- data/lib/fog/rackspace/requests/compute_v2/list_metadata.rb +38 -0
- data/lib/fog/rackspace/requests/compute_v2/list_networks.rb +18 -0
- data/lib/fog/rackspace/requests/compute_v2/list_servers.rb +42 -0
- data/lib/fog/rackspace/requests/compute_v2/reboot_server.rb +23 -0
- data/lib/fog/rackspace/requests/compute_v2/rebuild_server.rb +54 -4
- data/lib/fog/rackspace/requests/compute_v2/rescue_server.rb +43 -0
- data/lib/fog/rackspace/requests/compute_v2/resize_server.rb +23 -0
- data/lib/fog/rackspace/requests/compute_v2/revert_resize_server.rb +23 -0
- data/lib/fog/rackspace/requests/compute_v2/set_metadata.rb +41 -0
- data/lib/fog/rackspace/requests/compute_v2/set_metadata_item.rb +41 -0
- data/lib/fog/rackspace/requests/compute_v2/unrescue_server.rb +40 -0
- data/lib/fog/rackspace/requests/compute_v2/update_metadata.rb +40 -0
- data/lib/fog/rackspace/requests/compute_v2/update_server.rb +30 -7
- data/lib/fog/rackspace/requests/dns/list_domains.rb +2 -2
- data/lib/fog/rackspace/requests/load_balancers/create_load_balancer.rb +1 -1
- data/lib/fog/rackspace/requests/load_balancers/set_ssl_termination.rb +3 -3
- data/lib/fog/rackspace/requests/load_balancers/update_load_balancer.rb +2 -1
- data/lib/fog/rackspace/requests/monitoring/create_agent_token.rb +19 -0
- data/lib/fog/rackspace/requests/monitoring/create_alarm.rb +19 -0
- data/lib/fog/rackspace/requests/monitoring/create_check.rb +19 -0
- data/lib/fog/rackspace/requests/monitoring/create_entity.rb +19 -0
- data/lib/fog/rackspace/requests/monitoring/delete_agent_token.rb +17 -0
- data/lib/fog/rackspace/requests/monitoring/delete_alarm.rb +18 -0
- data/lib/fog/rackspace/requests/monitoring/delete_check.rb +17 -0
- data/lib/fog/rackspace/requests/monitoring/delete_entity.rb +17 -0
- data/lib/fog/rackspace/requests/monitoring/evaluate_alarm_example.rb +21 -0
- data/lib/fog/rackspace/requests/monitoring/get_agent_token.rb +19 -0
- data/lib/fog/rackspace/requests/monitoring/get_alarm.rb +19 -0
- data/lib/fog/rackspace/requests/monitoring/get_alarm_example.rb +19 -0
- data/lib/fog/rackspace/requests/monitoring/get_check.rb +19 -0
- data/lib/fog/rackspace/requests/monitoring/get_entity.rb +19 -0
- data/lib/fog/rackspace/requests/monitoring/list_agent_tokens.rb +19 -0
- data/lib/fog/rackspace/requests/monitoring/list_alarm_examples.rb +18 -0
- data/lib/fog/rackspace/requests/monitoring/list_alarms.rb +18 -0
- data/lib/fog/rackspace/requests/monitoring/list_check_types.rb +17 -0
- data/lib/fog/rackspace/requests/monitoring/list_checks.rb +18 -0
- data/lib/fog/rackspace/requests/monitoring/list_data_points.rb +18 -0
- data/lib/fog/rackspace/requests/monitoring/list_entities.rb +19 -0
- data/lib/fog/rackspace/requests/monitoring/list_metrics.rb +18 -0
- data/lib/fog/rackspace/requests/monitoring/list_notification_plans.rb +18 -0
- data/lib/fog/rackspace/requests/monitoring/list_overview.rb +19 -0
- data/lib/fog/rackspace/requests/monitoring/update_alarm.rb +18 -0
- data/lib/fog/rackspace/requests/monitoring/update_check.rb +18 -0
- data/lib/fog/rackspace/requests/monitoring/update_entity.rb +18 -0
- data/lib/fog/rackspace/requests/storage/copy_object.rb +4 -0
- data/lib/fog/rackspace/requests/storage/delete_container.rb +4 -1
- data/lib/fog/rackspace/requests/storage/delete_multiple_objects.rb +75 -0
- data/lib/fog/rackspace/requests/storage/delete_object.rb +4 -1
- data/lib/fog/rackspace/requests/storage/delete_static_large_object.rb +50 -0
- data/lib/fog/rackspace/requests/storage/get_container.rb +4 -0
- data/lib/fog/rackspace/requests/storage/get_containers.rb +4 -0
- data/lib/fog/rackspace/requests/storage/get_object.rb +7 -3
- data/lib/fog/rackspace/requests/storage/get_object_https_url.rb +7 -4
- data/lib/fog/rackspace/requests/storage/head_container.rb +4 -0
- data/lib/fog/rackspace/requests/storage/head_containers.rb +4 -0
- data/lib/fog/rackspace/requests/storage/head_object.rb +4 -1
- data/lib/fog/rackspace/requests/storage/post_set_meta_temp_url_key.rb +4 -1
- data/lib/fog/rackspace/requests/storage/put_container.rb +6 -2
- data/lib/fog/rackspace/requests/storage/put_dynamic_obj_manifest.rb +44 -0
- data/lib/fog/rackspace/requests/storage/put_object.rb +12 -6
- data/lib/fog/rackspace/requests/storage/put_object_manifest.rb +4 -13
- data/lib/fog/rackspace/requests/storage/put_static_obj_manifest.rb +60 -0
- data/lib/fog/rackspace/service.rb +121 -0
- data/lib/fog/rackspace/storage.rb +91 -46
- data/lib/fog/riakcs.rb +122 -0
- data/lib/fog/riakcs/provisioning.rb +101 -0
- data/lib/fog/riakcs/requests/provisioning/create_user.rb +77 -0
- data/lib/fog/riakcs/requests/provisioning/disable_user.rb +23 -0
- data/lib/fog/riakcs/requests/provisioning/enable_user.rb +23 -0
- data/lib/fog/riakcs/requests/provisioning/get_user.rb +41 -0
- data/lib/fog/riakcs/requests/provisioning/list_users.rb +43 -0
- data/lib/fog/riakcs/requests/provisioning/regrant_secret.rb +23 -0
- data/lib/fog/riakcs/requests/provisioning/update_user.rb +23 -0
- data/lib/fog/riakcs/requests/usage/get_usage.rb +68 -0
- data/lib/fog/riakcs/usage.rb +67 -0
- data/lib/fog/schema/data_validator.rb +154 -0
- data/lib/fog/serverlove/compute.rb +26 -23
- data/lib/fog/serverlove/models/compute/server.rb +1 -1
- data/lib/fog/storage.rb +11 -24
- data/lib/fog/storm_on_demand.rb +9 -1
- data/lib/fog/storm_on_demand/README.md +49 -0
- data/lib/fog/storm_on_demand/account.rb +58 -0
- data/lib/fog/storm_on_demand/billing.rb +61 -0
- data/lib/fog/storm_on_demand/compute.rb +33 -58
- data/lib/fog/storm_on_demand/dns.rb +85 -0
- data/lib/fog/storm_on_demand/models/account/token.rb +23 -0
- data/lib/fog/storm_on_demand/models/account/tokens.rb +20 -0
- data/lib/fog/storm_on_demand/models/billing/invoice.rb +28 -0
- data/lib/fog/storm_on_demand/models/billing/invoices.rb +30 -0
- data/lib/fog/storm_on_demand/models/billing/payment.rb +17 -0
- data/lib/fog/storm_on_demand/models/billing/payments.rb +19 -0
- data/lib/fog/storm_on_demand/models/compute/config.rb +18 -4
- data/lib/fog/storm_on_demand/models/compute/configs.rb +6 -2
- data/lib/fog/storm_on_demand/models/compute/image.rb +22 -1
- data/lib/fog/storm_on_demand/models/compute/images.rb +12 -2
- data/lib/fog/storm_on_demand/models/compute/notification.rb +34 -0
- data/lib/fog/storm_on_demand/models/compute/notifications.rb +30 -0
- data/lib/fog/storm_on_demand/models/compute/product.rb +40 -0
- data/lib/fog/storm_on_demand/models/compute/products.rb +28 -0
- data/lib/fog/storm_on_demand/models/compute/server.rb +33 -9
- data/lib/fog/storm_on_demand/models/compute/servers.rb +7 -2
- data/lib/fog/storm_on_demand/models/compute/template.rb +7 -1
- data/lib/fog/storm_on_demand/models/compute/templates.rb +7 -2
- data/lib/fog/storm_on_demand/models/dns/domain.rb +34 -0
- data/lib/fog/storm_on_demand/models/dns/domains.rb +20 -0
- data/lib/fog/storm_on_demand/models/dns/record.rb +64 -0
- data/lib/fog/storm_on_demand/models/dns/records.rb +30 -0
- data/lib/fog/storm_on_demand/models/dns/reverse.rb +15 -0
- data/lib/fog/storm_on_demand/models/dns/reverses.rb +23 -0
- data/lib/fog/storm_on_demand/models/dns/zone.rb +40 -0
- data/lib/fog/storm_on_demand/models/dns/zones.rb +30 -0
- data/lib/fog/storm_on_demand/models/monitoring/bandwidth.rb +23 -0
- data/lib/fog/storm_on_demand/models/monitoring/bandwidths.rb +23 -0
- data/lib/fog/storm_on_demand/models/{compute/stat.rb → monitoring/load.rb} +6 -6
- data/lib/fog/storm_on_demand/models/monitoring/loads.rb +24 -0
- data/lib/fog/storm_on_demand/models/monitoring/monitor_service.rb +22 -0
- data/lib/fog/storm_on_demand/models/monitoring/monitor_services.rb +32 -0
- data/lib/fog/storm_on_demand/models/{compute → network}/balancer.rb +27 -5
- data/lib/fog/storm_on_demand/models/network/balancers.rb +44 -0
- data/lib/fog/storm_on_demand/models/network/firewall.rb +20 -0
- data/lib/fog/storm_on_demand/models/network/firewalls.rb +32 -0
- data/lib/fog/storm_on_demand/models/network/network_ip.rb +23 -0
- data/lib/fog/storm_on_demand/models/network/network_ips.rb +48 -0
- data/lib/fog/storm_on_demand/models/network/pool.rb +32 -0
- data/lib/fog/storm_on_demand/models/network/pools.rb +28 -0
- data/lib/fog/storm_on_demand/models/{compute → network}/private_ip.rb +2 -3
- data/lib/fog/storm_on_demand/models/network/private_ips.rb +40 -0
- data/lib/fog/storm_on_demand/models/network/ruleset.rb +27 -0
- data/lib/fog/storm_on_demand/models/network/rulesets.rb +28 -0
- data/lib/fog/storm_on_demand/models/network/zone.rb +27 -0
- data/lib/fog/storm_on_demand/models/network/zones.rb +24 -0
- data/lib/fog/storm_on_demand/models/storage/cluster.rb +20 -0
- data/lib/fog/storm_on_demand/models/storage/clusters.rb +20 -0
- data/lib/fog/storm_on_demand/models/storage/volume.rb +54 -0
- data/lib/fog/storm_on_demand/models/storage/volumes.rb +30 -0
- data/lib/fog/storm_on_demand/models/support/alert.rb +19 -0
- data/lib/fog/storm_on_demand/models/support/alerts.rb +20 -0
- data/lib/fog/storm_on_demand/models/support/ticket.rb +74 -0
- data/lib/fog/storm_on_demand/models/support/tickets.rb +33 -0
- data/lib/fog/storm_on_demand/models/vpn/vpn.rb +30 -0
- data/lib/fog/storm_on_demand/models/vpn/vpns.rb +27 -0
- data/lib/fog/storm_on_demand/monitoring.rb +68 -0
- data/lib/fog/storm_on_demand/network.rb +113 -0
- data/lib/fog/storm_on_demand/requests/account/create_token.rb +16 -0
- data/lib/fog/storm_on_demand/requests/account/expire_token.rb +16 -0
- data/lib/fog/storm_on_demand/requests/billing/get_invoice.rb +16 -0
- data/lib/fog/storm_on_demand/requests/billing/list_invoices.rb +16 -0
- data/lib/fog/storm_on_demand/requests/billing/make_payment.rb +16 -0
- data/lib/fog/storm_on_demand/requests/billing/next_invoice.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/clone_server.rb +1 -1
- data/lib/fog/storm_on_demand/requests/compute/create_image.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/create_server.rb +1 -1
- data/lib/fog/storm_on_demand/requests/compute/current_notifications.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/delete_image.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/delete_server.rb +1 -1
- data/lib/fog/storm_on_demand/requests/compute/get_config_details.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/get_image_details.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/get_notification.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/get_product.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/get_product_code.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/get_product_price.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/get_product_starting_price.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/get_server.rb +1 -1
- data/lib/fog/storm_on_demand/requests/compute/get_template_details.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/list_configs.rb +1 -1
- data/lib/fog/storm_on_demand/requests/compute/list_images.rb +2 -2
- data/lib/fog/storm_on_demand/requests/compute/list_notifications.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/list_products.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/list_servers.rb +2 -2
- data/lib/fog/storm_on_demand/requests/compute/list_templates.rb +2 -2
- data/lib/fog/storm_on_demand/requests/compute/reboot_server.rb +1 -1
- data/lib/fog/storm_on_demand/requests/compute/resize_server.rb +1 -1
- data/lib/fog/storm_on_demand/requests/compute/resolve_notification.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/restore_image.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/restore_template.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/server_history.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/server_status.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/shutdown_server.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/start_server.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/update_image.rb +16 -0
- data/lib/fog/storm_on_demand/requests/compute/update_server.rb +16 -0
- data/lib/fog/storm_on_demand/requests/dns/check_zone_delegation.rb +16 -0
- data/lib/fog/storm_on_demand/requests/dns/create_record.rb +16 -0
- data/lib/fog/storm_on_demand/requests/dns/create_record_region.rb +16 -0
- data/lib/fog/storm_on_demand/requests/dns/create_zone.rb +16 -0
- data/lib/fog/storm_on_demand/requests/dns/delete_record.rb +16 -0
- data/lib/fog/storm_on_demand/requests/dns/delete_record_region.rb +16 -0
- data/lib/fog/storm_on_demand/requests/dns/delete_reverse.rb +16 -0
- data/lib/fog/storm_on_demand/requests/dns/delete_zone.rb +16 -0
- data/lib/fog/storm_on_demand/requests/dns/get_record.rb +16 -0
- data/lib/fog/storm_on_demand/requests/dns/get_zone.rb +16 -0
- data/lib/fog/storm_on_demand/requests/dns/list_domains.rb +16 -0
- data/lib/fog/storm_on_demand/requests/dns/list_records.rb +16 -0
- data/lib/fog/storm_on_demand/requests/dns/list_zones.rb +16 -0
- data/lib/fog/storm_on_demand/requests/dns/renew_domain.rb +16 -0
- data/lib/fog/storm_on_demand/requests/dns/update_record.rb +16 -0
- data/lib/fog/storm_on_demand/requests/dns/update_record_region.rb +16 -0
- data/lib/fog/storm_on_demand/requests/dns/update_reverse.rb +16 -0
- data/lib/fog/storm_on_demand/requests/dns/update_zone.rb +16 -0
- data/lib/fog/storm_on_demand/requests/monitoring/get_bandwidth_graph.rb +16 -0
- data/lib/fog/storm_on_demand/requests/monitoring/get_bandwidth_stats.rb +16 -0
- data/lib/fog/storm_on_demand/requests/monitoring/get_load_graph.rb +16 -0
- data/lib/fog/storm_on_demand/requests/monitoring/get_load_stats.rb +16 -0
- data/lib/fog/storm_on_demand/requests/monitoring/get_service.rb +16 -0
- data/lib/fog/storm_on_demand/requests/monitoring/get_service_status.rb +16 -0
- data/lib/fog/storm_on_demand/requests/monitoring/monitoring_ips.rb +16 -0
- data/lib/fog/storm_on_demand/requests/monitoring/update_service.rb +16 -0
- data/lib/fog/storm_on_demand/requests/{compute → network}/add_balancer_node.rb +2 -2
- data/lib/fog/storm_on_demand/requests/network/add_balancer_service.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/add_ip_to_server.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/attach_server_to_private_ip.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/check_balancer_available.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/check_server_attached.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/create_balancer.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/create_pool.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/create_ruleset.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/delete_balancer.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/delete_pool.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/detach_server_from_private_ip.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/get_assignments.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/get_balancer_details.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/get_balancer_possible_nodes.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/get_balancer_strategies.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/get_firewall.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/get_firewall_basic_options.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/get_firewall_rules.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/get_ip_details.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/get_pool.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/get_private_ip.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/get_ruleset.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/get_zone.rb +16 -0
- data/lib/fog/storm_on_demand/requests/{compute → network}/list_balancers.rb +3 -3
- data/lib/fog/storm_on_demand/requests/network/list_ip_public_accounts.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/list_network_ips.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/list_network_public_ips.rb +16 -0
- data/lib/fog/storm_on_demand/requests/{compute → network}/list_private_ips.rb +3 -3
- data/lib/fog/storm_on_demand/requests/network/list_rulesets.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/list_zones.rb +16 -0
- data/lib/fog/storm_on_demand/requests/{compute → network}/remove_balancer_node.rb +2 -2
- data/lib/fog/storm_on_demand/requests/network/remove_balancer_service.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/remove_ip_from_server.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/request_new_ips.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/set_default_zone.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/update_balancer.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/update_firewall.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/update_pool.rb +16 -0
- data/lib/fog/storm_on_demand/requests/network/update_ruleset.rb +16 -0
- data/lib/fog/storm_on_demand/requests/storage/attach_volume_to_server.rb +16 -0
- data/lib/fog/storm_on_demand/requests/storage/create_volume.rb +16 -0
- data/lib/fog/storm_on_demand/requests/storage/delete_volume.rb +16 -0
- data/lib/fog/storm_on_demand/requests/storage/detach_volume_from_server.rb +16 -0
- data/lib/fog/storm_on_demand/requests/storage/get_volume.rb +16 -0
- data/lib/fog/storm_on_demand/requests/storage/list_clusters.rb +16 -0
- data/lib/fog/storm_on_demand/requests/storage/list_volumes.rb +16 -0
- data/lib/fog/storm_on_demand/requests/storage/resize_volume.rb +16 -0
- data/lib/fog/storm_on_demand/requests/storage/update_volume.rb +16 -0
- data/lib/fog/storm_on_demand/requests/support/add_feedback.rb +16 -0
- data/lib/fog/storm_on_demand/requests/support/add_transaction_feedback.rb +16 -0
- data/lib/fog/storm_on_demand/requests/support/authenticate.rb +16 -0
- data/lib/fog/storm_on_demand/requests/support/close_ticket.rb +16 -0
- data/lib/fog/storm_on_demand/requests/support/create_ticket.rb +16 -0
- data/lib/fog/storm_on_demand/requests/support/get_active_alert.rb +16 -0
- data/lib/fog/storm_on_demand/requests/support/get_ticket_details.rb +16 -0
- data/lib/fog/storm_on_demand/requests/support/list_ticket_types.rb +16 -0
- data/lib/fog/storm_on_demand/requests/support/list_tickets.rb +16 -0
- data/lib/fog/storm_on_demand/requests/support/reopen_ticket.rb +16 -0
- data/lib/fog/storm_on_demand/requests/support/reply_ticket.rb +16 -0
- data/lib/fog/storm_on_demand/requests/vpn/create_vpn.rb +16 -0
- data/lib/fog/storm_on_demand/requests/vpn/get_vpn.rb +16 -0
- data/lib/fog/storm_on_demand/requests/vpn/list_vpn_users.rb +16 -0
- data/lib/fog/storm_on_demand/requests/vpn/update_vpn.rb +16 -0
- data/lib/fog/storm_on_demand/shared.rb +55 -0
- data/lib/fog/storm_on_demand/storage.rb +69 -0
- data/lib/fog/storm_on_demand/support.rb +68 -0
- data/lib/fog/storm_on_demand/vpn.rb +58 -0
- data/lib/fog/support.rb +26 -0
- data/lib/fog/terremark/models/shared/server.rb +5 -3
- data/lib/fog/terremark/parser.rb +14 -13
- data/lib/fog/terremark/parsers/shared/get_catalog.rb +5 -19
- data/lib/fog/terremark/parsers/shared/get_catalog_item.rb +4 -14
- data/lib/fog/terremark/parsers/shared/get_internet_services.rb +1 -1
- data/lib/fog/terremark/parsers/shared/get_keys_list.rb +4 -18
- data/lib/fog/terremark/parsers/shared/get_network_ips.rb +1 -1
- data/lib/fog/terremark/parsers/shared/get_node_services.rb +1 -1
- data/lib/fog/terremark/parsers/shared/get_organization.rb +4 -3
- data/lib/fog/terremark/parsers/shared/get_organizations.rb +3 -2
- data/lib/fog/terremark/parsers/shared/get_public_ips.rb +1 -1
- data/lib/fog/terremark/parsers/shared/get_tasks_list.rb +4 -17
- data/lib/fog/terremark/parsers/shared/get_vapp_template.rb +3 -14
- data/lib/fog/terremark/parsers/shared/get_vdc.rb +6 -38
- data/lib/fog/terremark/parsers/shared/instantiate_vapp_template.rb +3 -14
- data/lib/fog/terremark/parsers/shared/internet_service.rb +2 -5
- data/lib/fog/terremark/parsers/shared/network.rb +3 -11
- data/lib/fog/terremark/parsers/shared/node_service.rb +1 -1
- data/lib/fog/terremark/parsers/shared/public_ip.rb +1 -1
- data/lib/fog/terremark/parsers/shared/task.rb +3 -14
- data/lib/fog/terremark/parsers/shared/vapp.rb +3 -14
- data/lib/fog/vcloud/compute.rb +9 -2
- data/lib/fog/vcloud/models/compute/catalog_item.rb +8 -0
- data/lib/fog/vcloud/models/compute/server.rb +36 -2
- data/lib/fog/vcloud/models/compute/tag.rb +18 -0
- data/lib/fog/vcloud/models/compute/tags.rb +32 -0
- data/lib/fog/vcloud/models/compute/vapp.rb +11 -0
- data/lib/fog/vcloud/requests/compute/configure_metadata.rb +36 -0
- data/lib/fog/vcloud/requests/compute/configure_vm.rb +2 -2
- data/lib/fog/vcloud/requests/compute/configure_vm_cpus.rb +1 -1
- data/lib/fog/vcloud/requests/compute/configure_vm_customization_script.rb +33 -0
- data/lib/fog/vcloud/requests/compute/configure_vm_memory.rb +1 -1
- data/lib/fog/vcloud/requests/compute/configure_vm_network.rb +36 -0
- data/lib/fog/vcloud/requests/compute/delete_metadata.rb +10 -0
- data/lib/fog/vcloud/requests/compute/get_metadata.rb +10 -0
- data/lib/fog/vcloud/requests/compute/instantiate_vapp_template.rb +8 -4
- data/lib/fog/version.rb +1 -1
- data/lib/fog/volume.rb +6 -6
- data/lib/fog/vpn.rb +25 -0
- data/lib/fog/vsphere/compute.rb +160 -15
- data/lib/fog/vsphere/models/compute/customfield.rb +19 -0
- data/lib/fog/vsphere/models/compute/customfields.rb +27 -0
- data/lib/fog/vsphere/models/compute/customvalue.rb +17 -0
- data/lib/fog/vsphere/models/compute/customvalues.rb +37 -0
- data/lib/fog/vsphere/models/compute/datacenter.rb +4 -0
- data/lib/fog/vsphere/models/compute/interface.rb +2 -0
- data/lib/fog/vsphere/models/compute/interfaces.rb +14 -2
- data/lib/fog/vsphere/models/compute/networks.rb +2 -2
- data/lib/fog/vsphere/models/compute/server.rb +44 -8
- data/lib/fog/vsphere/models/compute/servers.rb +9 -9
- data/lib/fog/vsphere/requests/compute/create_vm.rb +18 -3
- data/lib/fog/vsphere/requests/compute/get_datacenter.rb +3 -1
- data/lib/fog/vsphere/requests/compute/get_datastore.rb +6 -1
- data/lib/fog/vsphere/requests/compute/get_folder.rb +3 -1
- data/lib/fog/vsphere/requests/compute/get_network.rb +6 -1
- data/lib/fog/vsphere/requests/compute/get_template.rb +16 -0
- data/lib/fog/vsphere/requests/compute/get_virtual_machine.rb +13 -28
- data/lib/fog/vsphere/requests/compute/list_customfields.rb +22 -0
- data/lib/fog/vsphere/requests/compute/list_datacenters.rb +1 -0
- data/lib/fog/vsphere/requests/compute/list_templates.rb +49 -0
- data/lib/fog/vsphere/requests/compute/list_virtual_machines.rb +25 -122
- data/lib/fog/vsphere/requests/compute/list_vm_customvalues.rb +22 -0
- data/lib/fog/vsphere/requests/compute/list_vm_interfaces.rb +14 -1
- data/lib/fog/vsphere/requests/compute/modify_vm_interface.rb +58 -0
- data/lib/fog/vsphere/requests/compute/vm_clone.rb +79 -50
- data/lib/fog/vsphere/requests/compute/vm_power_off.rb +2 -0
- data/lib/fog/vsphere/requests/compute/vm_reconfig_hardware.rb +1 -1
- data/lib/fog/xenserver.rb +2 -0
- data/lib/fog/xenserver/CHANGELOG.md +77 -0
- data/lib/fog/xenserver/compute.rb +23 -12
- data/lib/fog/xenserver/examples/networks-and-vlans.rb +45 -0
- data/lib/fog/xenserver/models/compute/console.rb +27 -0
- data/lib/fog/xenserver/models/compute/consoles.rb +25 -0
- data/lib/fog/xenserver/models/compute/host.rb +19 -6
- data/lib/fog/xenserver/models/compute/host_cpu.rb +37 -0
- data/lib/fog/xenserver/models/compute/network.rb +33 -0
- data/lib/fog/xenserver/models/compute/pbd.rb +1 -1
- data/lib/fog/xenserver/models/compute/pool.rb +4 -4
- data/lib/fog/xenserver/models/compute/server.rb +13 -7
- data/lib/fog/xenserver/models/compute/servers.rb +5 -0
- data/lib/fog/xenserver/models/compute/storage_repository.rb +4 -4
- data/lib/fog/xenserver/models/compute/vlan.rb +80 -0
- data/lib/fog/xenserver/models/compute/vlans.rb +39 -0
- data/lib/fog/xenserver/requests/compute/create_network.rb +42 -0
- data/lib/fog/xenserver/requests/compute/create_server.rb +4 -0
- data/lib/fog/xenserver/requests/compute/create_vlan.rb +35 -0
- data/lib/fog/xenserver/requests/compute/destroy_network.rb +33 -0
- data/lib/fog/xenserver/requests/compute/destroy_vlan.rb +32 -0
- data/lib/fog/xenserver/requests/compute/snapshot_revert.rb +22 -0
- data/lib/fog/xenserver/requests/compute/snapshot_server.rb +22 -0
- data/lib/fog/xml.rb +21 -0
- data/lib/fog/xml/sax_parser_connection.rb +46 -0
- data/lib/fog/zerigo/models/dns/record.rb +0 -1
- data/lib/fog/zerigo/models/dns/records.rb +15 -12
- data/lib/fog/zerigo/models/dns/zone.rb +1 -1
- data/lib/fog/zerigo/models/dns/zones.rb +2 -2
- data/lib/fog/zerigo/requests/dns/list_zones.rb +7 -1
- data/lib/tasks/changelog_task.rb +8 -2
- data/tests/aws/models/auto_scaling/groups_test.rb +22 -0
- data/tests/aws/models/compute/volume_tests.rb +1 -1
- data/tests/aws/models/data_pipeline/pipeline_tests.rb +8 -0
- data/tests/aws/models/data_pipeline/pipelines_tests.rb +8 -0
- data/tests/aws/models/elb/model_tests.rb +28 -1
- data/tests/aws/models/iam/roles_tests.rb +63 -0
- data/tests/aws/models/rds/server_tests.rb +10 -9
- data/tests/aws/models/storage/directory_tests.rb +41 -5
- data/tests/aws/models/storage/file_tests.rb +1 -2
- data/tests/aws/models/storage/files_tests.rb +6 -4
- data/tests/aws/models/storage/url_tests.rb +7 -5
- data/tests/aws/models/storage/version_tests.rb +2 -2
- data/tests/aws/models/storage/versions_tests.rb +5 -5
- data/tests/aws/parsers/elb/describe_load_balancers.rb +65 -0
- data/tests/aws/requests/cloud_formation/stack_tests.rb +10 -0
- data/tests/aws/requests/compute/address_tests.rb +4 -0
- data/tests/aws/requests/compute/image_tests.rb +22 -2
- data/tests/aws/requests/compute/instance_tests.rb +50 -54
- data/tests/aws/requests/compute/security_group_tests.rb +1 -1
- data/tests/aws/requests/compute/spot_instance_tests.rb +3 -2
- data/tests/aws/requests/compute/volume_tests.rb +3 -3
- data/tests/aws/requests/data_pipeline/helper.rb +44 -0
- data/tests/aws/requests/data_pipeline/pipeline_tests.rb +54 -0
- data/tests/aws/requests/elasticache/describe_reserved_cache_nodes.rb +17 -0
- data/tests/aws/requests/elasticache/helper.rb +17 -0
- data/tests/aws/requests/elb/helper.rb +2 -1
- data/tests/aws/requests/elb/listener_tests.rb +1 -1
- data/tests/aws/requests/elb/load_balancer_tests.rb +5 -1
- data/tests/aws/requests/elb/policy_tests.rb +85 -6
- data/tests/aws/requests/glacier/vault_tests.rb +1 -1
- data/tests/aws/requests/iam/helper.rb +4 -1
- data/tests/aws/requests/iam/server_certificate_tests.rb +33 -1
- data/tests/aws/requests/iam/user_tests.rb +10 -8
- data/tests/aws/requests/rds/helper.rb +14 -0
- data/tests/aws/requests/rds/instance_tests.rb +8 -5
- data/tests/aws/requests/rds/log_file_tests.rb +19 -0
- data/tests/aws/requests/ses/verified_domain_identity_tests.rb +16 -0
- data/tests/aws/requests/storage/bucket_tests.rb +23 -3
- data/tests/aws/requests/storage/multipart_upload_tests.rb +1 -1
- data/tests/aws/requests/storage/object_tests.rb +22 -13
- data/tests/aws/requests/sts/assume_role_tests.rb +19 -0
- data/tests/bluebox/requests/blb/helper.rb +64 -0
- data/tests/bluebox/requests/blb/lb_tests.rb +75 -0
- data/tests/brightbox/compute/image_selector_tests.rb +103 -0
- data/tests/brightbox/oauth2_tests.rb +8 -1
- data/tests/brightbox/requests/compute/collaboration_tests.rb +41 -0
- data/tests/brightbox/requests/compute/firewall_policy_tests.rb +7 -0
- data/tests/brightbox/requests/compute/helper.rb +50 -4
- data/tests/brightbox/requests/compute/user_collaboration_tests.rb +67 -0
- data/tests/cloudsigma/models/server_tests.rb +72 -0
- data/tests/cloudsigma/models/servers_tests.rb +7 -0
- data/tests/cloudsigma/models/volume_tests.rb +21 -0
- data/tests/cloudsigma/models/volumes_tests.rb +9 -0
- data/tests/cloudsigma/requests/server_tests.rb +81 -0
- data/tests/cloudsigma/requests/volumes_tests.rb +55 -0
- data/tests/cloudstack/compute/models/disk_offering_tests.rb +5 -0
- data/tests/cloudstack/compute/models/snapshot_tests.rb +19 -0
- data/tests/cloudstack/requests/disk_offering_tests.rb +3 -3
- data/tests/cloudstack/requests/os_type_tests.rb +2 -3
- data/tests/compute/helper.rb +17 -0
- data/tests/core/connection_tests.rb +26 -0
- data/tests/core/mocking_tests.rb +15 -0
- data/tests/core/parser_tests.rb +32 -6
- data/tests/digitalocean/helper.rb +51 -0
- data/tests/digitalocean/models/compute/flavor_tests.rb +30 -0
- data/tests/digitalocean/models/compute/image_tests.rb +31 -0
- data/tests/digitalocean/models/compute/region_tests.rb +30 -0
- data/tests/digitalocean/models/compute/server_tests.rb +92 -0
- data/tests/digitalocean/models/compute/servers_tests.rb +21 -0
- data/tests/digitalocean/models/compute/ssh_key_tests.rb +44 -0
- data/tests/digitalocean/models/compute/ssh_keys_tests.rb +32 -0
- data/tests/digitalocean/requests/compute/create_server_tests.rb +25 -0
- data/tests/digitalocean/requests/compute/create_ssh_key_tests.rb +22 -0
- data/tests/digitalocean/requests/compute/destroy_server_tests.rb +14 -0
- data/tests/digitalocean/requests/compute/destroy_ssh_key_tests.rb +23 -0
- data/tests/digitalocean/requests/compute/get_server_details_tests.rb +13 -0
- data/tests/digitalocean/requests/compute/get_ssh_key_tests.rb +25 -0
- data/tests/digitalocean/requests/compute/list_flavors_tests.rb +23 -0
- data/tests/digitalocean/requests/compute/list_images_tests.rb +24 -0
- data/tests/digitalocean/requests/compute/list_regions_tests.rb +23 -0
- data/tests/digitalocean/requests/compute/list_servers_tests.rb +26 -0
- data/tests/digitalocean/requests/compute/list_ssh_keys_tests.rb +24 -0
- data/tests/digitalocean/requests/compute/power_cycle_server_tests.rb +20 -0
- data/tests/digitalocean/requests/compute/power_state_tests.rb +25 -0
- data/tests/digitalocean/requests/compute/reboot_server_tests.rb +14 -0
- data/tests/dnsimple/requests/dns/dns_tests.rb +30 -26
- data/tests/dreamhost/README.md +56 -0
- data/tests/dreamhost/dns_tests.rb +20 -0
- data/tests/dreamhost/helper.rb +19 -0
- data/tests/dreamhost/models/dns/record_tests.rb +73 -0
- data/tests/dreamhost/models/dns/records_tests.rb +29 -0
- data/tests/dreamhost/models/dns/zone_tests.rb +62 -0
- data/tests/dreamhost/models/dns/zones_tests.rb +29 -0
- data/tests/dreamhost/requests/dns/create_record_tests.rb +39 -0
- data/tests/dreamhost/requests/dns/delete_record_tests.rb +26 -0
- data/tests/dreamhost/requests/dns/list_records_tests.rb +31 -0
- data/tests/dynect/requests/dns/dns_tests.rb +4 -7
- data/tests/ecloud/compute/models/server_tests.rb +9 -1
- data/tests/glesys/requests/compute/helper.rb +5 -5
- data/tests/google/models/compute/server_tests.rb +24 -0
- data/tests/google/requests/compute/disk_tests.rb +88 -0
- data/tests/google/requests/compute/firewall_tests.rb +85 -0
- data/tests/google/requests/compute/image_tests.rb +80 -0
- data/tests/google/requests/compute/network_tests.rb +74 -0
- data/tests/google/requests/compute/operation_tests.rb +19 -0
- data/tests/google/requests/compute/server_tests.rb +84 -0
- data/tests/google/requests/compute/zone_tests.rb +46 -0
- data/tests/helper.rb +16 -1
- data/tests/helpers/collection_helper.rb +35 -0
- data/tests/helpers/formats_helper.rb +63 -50
- data/tests/helpers/formats_helper_tests.rb +87 -36
- data/tests/helpers/mock_helper.rb +15 -2
- data/tests/helpers/schema_validator_tests.rb +107 -0
- data/tests/hp/models/block_storage/bootable_volume_tests.rb +23 -0
- data/tests/hp/models/block_storage/snapshot_tests.rb +23 -0
- data/tests/hp/models/block_storage/volume_tests.rb +21 -0
- data/tests/hp/models/compute/address_tests.rb +1 -1
- data/tests/hp/models/compute/addresses_tests.rb +1 -1
- data/tests/hp/models/compute/key_pair_tests.rb +1 -1
- data/tests/hp/models/compute/key_pairs_tests.rb +1 -1
- data/tests/hp/models/compute/metadata_image_tests.rb +60 -0
- data/tests/hp/models/compute/metadata_server_tests.rb +54 -0
- data/tests/hp/models/compute/security_group_tests.rb +3 -1
- data/tests/hp/models/compute/security_groups_tests.rb +1 -1
- data/tests/hp/models/storage/directories_tests.rb +23 -0
- data/tests/hp/models/storage/directory_tests.rb +62 -0
- data/tests/hp/models/storage/file_tests.rb +44 -0
- data/tests/hp/models/storage/files_tests.rb +38 -0
- data/tests/hp/requests/block_storage/bootable_volume_tests.rb +78 -0
- data/tests/hp/requests/block_storage/snapshot_tests.rb +56 -0
- data/tests/hp/requests/block_storage/volume_tests.rb +94 -0
- data/tests/hp/requests/cdn/container_tests.rb +1 -1
- data/tests/hp/requests/compute/address_tests.rb +5 -6
- data/tests/hp/requests/compute/flavor_tests.rb +1 -1
- data/tests/hp/requests/compute/image_tests.rb +1 -1
- data/tests/hp/requests/compute/key_pair_tests.rb +1 -1
- data/tests/hp/requests/compute/metadata_tests.rb +70 -0
- data/tests/hp/requests/compute/persistent_server_tests.rb +66 -0
- data/tests/hp/requests/compute/security_group_rule_tests.rb +1 -1
- data/tests/hp/requests/compute/security_group_tests.rb +1 -1
- data/tests/hp/requests/compute/server_address_tests.rb +1 -1
- data/tests/hp/requests/compute/server_tests.rb +5 -6
- data/tests/hp/requests/compute/server_volume_tests.rb +76 -0
- data/tests/hp/requests/storage/container_tests.rb +1 -1
- data/tests/hp/requests/storage/object_tests.rb +9 -1
- data/tests/hp/user_agent_tests.rb +13 -0
- data/tests/internet_archive/models/storage/directory_tests.rb +43 -0
- data/tests/internet_archive/models/storage/file_tests.rb +61 -0
- data/tests/internet_archive/models/storage/files_tests.rb +58 -0
- data/tests/internet_archive/models/storage/url_tests.rb +28 -0
- data/tests/internet_archive/requests/storage/acl_utils_tests.rb +209 -0
- data/tests/internet_archive/requests/storage/bucket_tests.rb +324 -0
- data/tests/internet_archive/requests/storage/cors_utils_tests.rb +108 -0
- data/tests/internet_archive/requests/storage/multipart_upload_tests.rb +132 -0
- data/tests/internet_archive/requests/storage/object_tests.rb +166 -0
- data/tests/internet_archive/signaturev4_tests.rb +41 -0
- data/tests/internet_archive/signed_params_tests.rb +5 -0
- data/tests/joyent/requests/compute/networks_tests.rb +39 -0
- data/tests/openstack/models/compute/images_tests.rb +14 -0
- data/tests/openstack/models/compute/server_tests.rb +133 -2
- data/tests/openstack/models/identity/roles_tests.rb +1 -0
- data/tests/openstack/models/identity/user_tests.rb +2 -2
- data/tests/openstack/models/image/images_tests.rb +5 -0
- data/tests/openstack/models/network/floating_ip_tests.rb +30 -0
- data/tests/openstack/models/network/floating_ips_tests.rb +27 -0
- data/tests/openstack/models/network/lb_health_monitor_tests.rb +52 -0
- data/tests/openstack/models/network/lb_health_monitors_tests.rb +21 -0
- data/tests/openstack/models/network/lb_member_tests.rb +28 -0
- data/tests/openstack/models/network/lb_members_tests.rb +21 -0
- data/tests/openstack/models/network/lb_pool_tests.rb +53 -0
- data/tests/openstack/models/network/lb_pools_tests.rb +20 -0
- data/tests/openstack/models/network/lb_vip_tests.rb +39 -0
- data/tests/openstack/models/network/lb_vips_tests.rb +21 -0
- data/tests/openstack/models/network/network_tests.rb +38 -1
- data/tests/openstack/models/network/router_tests.rb +38 -0
- data/tests/openstack/models/network/routers_tests.rb +21 -0
- data/tests/openstack/models/storage/file_tests.rb +178 -0
- data/tests/openstack/requests/compute/address_tests.rb +8 -0
- data/tests/openstack/requests/compute/flavor_tests.rb +12 -0
- data/tests/openstack/requests/compute/limit_tests.rb +1 -1
- data/tests/openstack/requests/compute/tenant_tests.rb +2 -2
- data/tests/openstack/requests/compute/volume_tests.rb +11 -9
- data/tests/openstack/requests/identity/ec2_credentials_tests.rb +7 -4
- data/tests/openstack/requests/identity/helper.rb +17 -0
- data/tests/openstack/requests/identity/role_tests.rb +6 -0
- data/tests/openstack/requests/identity/tenant_tests.rb +14 -12
- data/tests/openstack/requests/identity/user_tests.rb +9 -5
- data/tests/openstack/requests/metering/meter_tests.rb +52 -0
- data/tests/openstack/requests/metering/resource_tests.rb +19 -0
- data/tests/openstack/requests/network/lb_health_monitor_tests.rb +93 -0
- data/tests/openstack/requests/network/lb_member_tests.rb +60 -0
- data/tests/openstack/requests/network/lb_pool_tests.rb +80 -0
- data/tests/openstack/requests/network/lb_vip_tests.rb +71 -0
- data/tests/openstack/requests/network/network_tests.rb +61 -10
- data/tests/openstack/requests/network/quota_tests.rb +65 -0
- data/tests/openstack/requests/network/router_tests.rb +75 -0
- data/tests/openstack/requests/storage/container_tests.rb +64 -0
- data/tests/openstack/requests/storage/large_object_tests.rb +111 -0
- data/tests/openstack/requests/storage/object_tests.rb +109 -0
- data/tests/openstack/requests/volume/quota_tests.rb +51 -0
- data/tests/openstack/storage_tests.rb +19 -0
- data/tests/openstack/version_tests.rb +55 -0
- data/tests/openstack/volume_tests.rb +15 -0
- data/tests/openvz/helper.rb +47 -0
- data/tests/openvz/models/compute/server_tests.rb +56 -0
- data/tests/openvz/models/compute/servers_tests.rb +35 -0
- data/tests/ovirt/requests/compute/list_quotas_tests.rb +12 -0
- data/tests/rackspace/block_storage_tests.rb +114 -0
- data/tests/rackspace/cdn_tests.rb +173 -0
- data/tests/rackspace/compute_tests.rb +99 -0
- data/tests/rackspace/compute_v2_tests.rb +113 -0
- data/tests/rackspace/databases_tests.rb +110 -0
- data/tests/rackspace/dns_tests.rb +105 -0
- data/tests/rackspace/helper.rb +47 -1
- data/tests/rackspace/identity_tests.rb +25 -0
- data/tests/rackspace/load_balancer_tests.rb +111 -0
- data/tests/rackspace/models/block_storage/snapshot_tests.rb +4 -6
- data/tests/rackspace/models/block_storage/snapshots_tests.rb +1 -3
- data/tests/rackspace/models/block_storage/volume_tests.rb +3 -5
- data/tests/rackspace/models/block_storage/volume_types_tests.rb +1 -3
- data/tests/rackspace/models/block_storage/volumes_tests.rb +1 -3
- data/tests/rackspace/models/compute_v2/flavors_tests.rb +2 -5
- data/tests/rackspace/models/compute_v2/image_tests.rb +57 -10
- data/tests/rackspace/models/compute_v2/images_tests.rb +2 -4
- data/tests/rackspace/models/compute_v2/keypairs_tests.rb +47 -0
- data/tests/rackspace/models/compute_v2/metadata_tests.rb +44 -0
- data/tests/rackspace/models/compute_v2/network_tests.rb +10 -0
- data/tests/rackspace/models/compute_v2/networks_tests.rb +10 -0
- data/tests/rackspace/models/compute_v2/server_tests.rb +152 -15
- data/tests/rackspace/models/compute_v2/servers_tests.rb +9 -7
- data/tests/rackspace/models/dns/zones_tests.rb +36 -0
- data/tests/rackspace/models/identity/credentials_tests.rb +14 -5
- data/tests/rackspace/models/identity/service_catalog_tests.rb +81 -0
- data/tests/rackspace/models/load_balancers/load_balancer_tests.rb +2 -0
- data/tests/rackspace/models/monitoring/agent_token_tests.rb +9 -0
- data/tests/rackspace/models/monitoring/agent_tokens_tests.rb +9 -0
- data/tests/rackspace/models/monitoring/alarm_example_tests.rb +18 -0
- data/tests/rackspace/models/monitoring/alarm_examples_tests.rb +19 -0
- data/tests/rackspace/models/monitoring/alarm_tests.rb +56 -0
- data/tests/rackspace/models/monitoring/alarms_tests.rb +25 -0
- data/tests/rackspace/models/monitoring/check_tests.rb +50 -0
- data/tests/rackspace/models/monitoring/check_types_tests.rb +14 -0
- data/tests/rackspace/models/monitoring/checks_tests.rb +16 -0
- data/tests/rackspace/models/monitoring/data_points_tests.rb +19 -0
- data/tests/rackspace/models/monitoring/entities_tests.rb +14 -0
- data/tests/rackspace/models/monitoring/entity_tests.rb +26 -0
- data/tests/rackspace/models/monitoring/metric_tests.rb +19 -0
- data/tests/rackspace/models/monitoring/metrics_tests.rb +17 -0
- data/tests/rackspace/models/storage/account_tests.rb +28 -0
- data/tests/rackspace/models/storage/directories_tests.rb +29 -0
- data/tests/rackspace/models/storage/directory_tests.rb +141 -0
- data/tests/rackspace/models/storage/file_tests.rb +146 -16
- data/tests/rackspace/models/storage/metadata_tests.rb +174 -0
- data/tests/rackspace/monitoring_tests.rb +72 -0
- data/tests/rackspace/rackspace_tests.rb +56 -0
- data/tests/rackspace/requests/block_storage/snapshot_tests.rb +14 -15
- data/tests/rackspace/requests/block_storage/volume_tests.rb +9 -11
- data/tests/rackspace/requests/block_storage/volume_type_tests.rb +6 -16
- data/tests/rackspace/requests/cdn/cdn_tests.rb +76 -0
- data/tests/rackspace/requests/compute/image_tests.rb +3 -3
- data/tests/rackspace/requests/compute_v2/address_tests.rb +1 -1
- data/tests/rackspace/requests/compute_v2/attachment_tests.rb +19 -20
- data/tests/rackspace/requests/compute_v2/flavor_tests.rb +8 -10
- data/tests/rackspace/requests/compute_v2/image_tests.rb +19 -21
- data/tests/rackspace/requests/compute_v2/keypair_tests.rb +55 -0
- data/tests/rackspace/requests/compute_v2/metadata_tests.rb +104 -0
- data/tests/rackspace/requests/compute_v2/network_tests.rb +49 -0
- data/tests/rackspace/requests/compute_v2/server_tests.rb +55 -58
- data/tests/rackspace/requests/databases/database_tests.rb +23 -20
- data/tests/rackspace/requests/databases/user_tests.rb +6 -6
- data/tests/rackspace/requests/dns/dns_tests.rb +1 -1
- data/tests/rackspace/requests/dns/records_tests.rb +3 -3
- data/tests/rackspace/requests/identity/token_tests.rb +9 -0
- data/tests/rackspace/requests/identity/user_tests.rb +4 -5
- data/tests/rackspace/requests/load_balancers/helper.rb +2 -0
- data/tests/rackspace/requests/load_balancers/load_balancer_tests.rb +2 -1
- data/tests/rackspace/requests/load_balancers/usage_tests.rb +4 -2
- data/tests/rackspace/requests/monitoring/agent_tests.rb +34 -0
- data/tests/rackspace/requests/monitoring/alarm_example_tests.rb +30 -0
- data/tests/rackspace/requests/monitoring/alarm_tests.rb +56 -0
- data/tests/rackspace/requests/monitoring/check_tests.rb +40 -0
- data/tests/rackspace/requests/monitoring/entity_tests.rb +37 -0
- data/tests/rackspace/requests/monitoring/helper.rb +78 -0
- data/tests/rackspace/requests/monitoring/list_tests.rb +60 -0
- data/tests/rackspace/requests/storage/container_tests.rb +8 -1
- data/tests/rackspace/requests/storage/large_object_tests.rb +326 -18
- data/tests/rackspace/requests/storage/object_tests.rb +89 -4
- data/tests/rackspace/service_tests.rb +83 -0
- data/tests/rackspace/storage_tests.rb +116 -0
- data/tests/riakcs/requests/provisioning/provisioning_tests.rb +174 -0
- data/tests/riakcs/requests/usage/usage_tests.rb +29 -0
- data/tests/storage/helper.rb +3 -0
- data/tests/vcloud/requests/compute/disk_configure_tests.rb +7 -2
- data/tests/vsphere/models/compute/server_tests.rb +1 -1
- data/tests/vsphere/requests/compute/list_virtual_machines_tests.rb +2 -2
- data/tests/vsphere/requests/compute/vm_clone_tests.rb +21 -5
- data/tests/xenserver/compute_tests.rb +5 -5
- data/tests/xenserver/models/compute/console_test.rb +35 -0
- data/tests/xenserver/models/compute/consoles_test.rb +19 -0
- data/tests/xenserver/models/compute/host_cpu_tests.rb +58 -0
- data/tests/xenserver/models/compute/host_metrics_tests.rb +1 -1
- data/tests/xenserver/models/compute/host_tests.rb +13 -1
- data/tests/xenserver/models/compute/network_tests.rb +18 -6
- data/tests/xenserver/models/compute/server_tests.rb +35 -18
- data/tests/xenserver/models/compute/servers_tests.rb +1 -0
- data/tests/xenserver/models/compute/vlan_tests.rb +76 -0
- data/tests/xenserver/models/compute/vlans_tests.rb +36 -0
- data/tests/xenserver/requests/compute/create_network_tests.rb +20 -0
- data/tests/xenserver/requests/compute/create_vlan_tests.rb +36 -0
- data/tests/xenserver/requests/compute/destroy_network_tests.rb +13 -0
- data/tests/xenserver/requests/compute/destroy_vlan_tests.rb +36 -0
- data/tests/zerigo/requests/dns/dns_tests.rb +59 -13
- metadata +1211 -107
- data/docs/storage/aws.markdown +0 -21
- data/lib/fog/bin/virtual_box.rb +0 -57
- data/lib/fog/openstack/README.identity.md +0 -69
- data/lib/fog/providers.rb +0 -33
- data/lib/fog/rackspace/requests/identity/get_credentials.rb +0 -15
- data/lib/fog/storm_on_demand/models/compute/balancers.rb +0 -21
- data/lib/fog/storm_on_demand/models/compute/private_ips.rb +0 -31
- data/lib/fog/storm_on_demand/models/compute/stats.rb +0 -22
- data/lib/fog/storm_on_demand/requests/compute/get_stats.rb +0 -16
- data/lib/fog/virtual_box.rb +0 -11
- data/lib/fog/virtual_box/compute.rb +0 -59
- data/lib/fog/virtual_box/models/compute/medium.rb +0 -87
- data/lib/fog/virtual_box/models/compute/medium_format.rb +0 -34
- data/lib/fog/virtual_box/models/compute/mediums.rb +0 -32
- data/lib/fog/virtual_box/models/compute/nat_engine.rb +0 -65
- data/lib/fog/virtual_box/models/compute/nat_redirect.rb +0 -91
- data/lib/fog/virtual_box/models/compute/nat_redirects.rb +0 -41
- data/lib/fog/virtual_box/models/compute/network_adapter.rb +0 -82
- data/lib/fog/virtual_box/models/compute/network_adapters.rb +0 -42
- data/lib/fog/virtual_box/models/compute/server.rb +0 -199
- data/lib/fog/virtual_box/models/compute/servers.rb +0 -41
- data/lib/fog/virtual_box/models/compute/storage_controller.rb +0 -83
- data/lib/fog/virtual_box/models/compute/storage_controllers.rb +0 -38
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
ZWIyNDZjZTIzZGM2MWU2YWUwNjA0OGM1ZTY1YTBiYjliMDAwZWRkZg==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
NDAzYmU5OTBiYjA1YjFiNzVmYzBlNTMzYTJmMzUyMDkzZmQ4OTFjMg==
|
7
|
+
SHA512:
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
YTQ4YWEwZGRiMGZlMTkyYzNlYWFmMDhlODg0NTZlZjM2ZTY5NDhmNjYwOGIx
|
10
|
+
ZTk4MGMyZWE1MGU3NDdjMTUxNzBmYmZkOTVhMGUyZmQ5NTc2MzViMWEzYTk0
|
11
|
+
MDE4NmNiOTVmMjg3N2U4NDM3MDQzMTY5ZGY3NzFhYzE0MThhYjU=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
ODU5NGMyMzYzMWZlYTQ4NzhlY2ZiZDI2MWY5ZGMyNTQ3NzE3YTRiZWQxZjAy
|
14
|
+
NjliOTc5NTdjMjY2YzMxMGY1MTEwODY2MDZhMWI5ZWM0OWZkOTY3MzJhYzUx
|
15
|
+
NjVhMWYyNThjYmNjMmYzNGM5ZWRjNWI1YWUxNjI3MWU0MzVjMjk=
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
@@ -1,15 +1,31 @@
|
|
1
1
|
language: ruby
|
2
2
|
|
3
|
+
gemfile:
|
4
|
+
- Gemfile
|
5
|
+
- Gemfile.1.8.7
|
6
|
+
|
3
7
|
rvm:
|
4
8
|
- 1.8.7
|
5
9
|
- 1.9.2
|
6
10
|
- 1.9.3
|
11
|
+
- 2.0.0
|
12
|
+
|
13
|
+
script: bundle exec rake travis
|
7
14
|
|
8
|
-
|
15
|
+
matrix:
|
16
|
+
exclude:
|
17
|
+
- rvm: 1.8.7
|
18
|
+
gemfile: Gemfile
|
19
|
+
- rvm: 1.9.2
|
20
|
+
gemfile: Gemfile.1.8.7
|
21
|
+
- rvm: 1.9.3
|
22
|
+
gemfile: Gemfile.1.8.7
|
23
|
+
- rvm: 2.0.0
|
24
|
+
gemfile: Gemfile.1.8.7
|
9
25
|
|
10
26
|
notifications:
|
11
27
|
email: false
|
12
|
-
irc:
|
28
|
+
irc:
|
13
29
|
channels:
|
14
30
|
- "irc.freenode.org#ruby-fog"
|
15
31
|
template:
|
data/Gemfile
CHANGED
data/Gemfile.1.8.7
ADDED
data/README.md
CHANGED
@@ -7,38 +7,55 @@ fog is the Ruby cloud services library, top to bottom:
|
|
7
7
|
* Mocks make testing and integrating a breeze.
|
8
8
|
|
9
9
|
[![Build Status](https://secure.travis-ci.org/fog/fog.png?branch=master)](http://travis-ci.org/fog/fog)
|
10
|
-
[![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/fog/fog)
|
11
10
|
[![Gem Version](https://fury-badge.herokuapp.com/rb/fog.png)](http://badge.fury.io/rb/fog)
|
12
11
|
[![Dependency Status](https://gemnasium.com/fog/fog.png)](https://gemnasium.com/fog/fog)
|
12
|
+
[![Code Climate](https://codeclimate.com/github/fog/fog.png)](https://codeclimate.com/github/fog/fog)
|
13
13
|
|
14
14
|
## Getting Started
|
15
15
|
|
16
16
|
sudo gem install fog
|
17
17
|
|
18
|
-
Now type `fog` to try stuff, confident that fog will let you know what to do.
|
18
|
+
Now type `fog` to try stuff, confident that fog will let you know what to do.
|
19
19
|
Here is an example of wading through server creation for Amazon Elastic Compute Cloud:
|
20
20
|
|
21
|
-
|
22
|
-
|
23
|
-
# => ArgumentError: image_id is required for this operation
|
21
|
+
>> server = Compute[:aws].servers.create
|
22
|
+
ArgumentError: image_id is required for this operation
|
24
23
|
|
25
|
-
server = Compute[:aws].servers.create(:image_id => 'ami-5ee70037')
|
26
|
-
|
24
|
+
>> server = Compute[:aws].servers.create(:image_id => 'ami-5ee70037')
|
25
|
+
<Fog::AWS::EC2::Server [...]>
|
27
26
|
|
28
|
-
server.destroy # cleanup after yourself or regret it, trust me
|
29
|
-
|
30
|
-
|
27
|
+
>> server.destroy # cleanup after yourself or regret it, trust me
|
28
|
+
true
|
29
|
+
|
30
|
+
## Ruby 1.8.7
|
31
|
+
|
32
|
+
The maintainers of this project, in concert with the maintainers of Ruby,
|
33
|
+
**strongly** recommend using the latest patchlevel of Ruby 1.9.2 or later.
|
34
|
+
[As of July 1, 2013, Ruby 1.8.7 is no longer officially maintained.][retired]
|
35
|
+
This means fixes will no longer be provided, even for known security
|
36
|
+
vulnerabilities.
|
37
|
+
|
38
|
+
[retired]: http://www.ruby-lang.org/en/news/2013/06/30/we-retire-1-8-7/
|
39
|
+
|
40
|
+
With this caveat, if you wish to bundle `fog` into your application on Ruby
|
41
|
+
1.8.7, you must add the following line to your `Gemfile`.
|
42
|
+
|
43
|
+
gem 'nokogiri', '~>1.5.0'
|
44
|
+
|
45
|
+
Also, ensure that you are using LibXML version 2.8.0, since there is an
|
46
|
+
[issue with LibXML version 2.9.0][issue829] ([and 2.9.1][issue904]).
|
47
|
+
|
48
|
+
[issue829]: https://github.com/sparklemotion/nokogiri/issues/829
|
49
|
+
[issue904]: https://github.com/sparklemotion/nokogiri/issues/904
|
31
50
|
|
32
51
|
## Collections
|
33
52
|
|
34
53
|
A high level interface to each cloud is provided through collections, such as `images` and `servers`.
|
35
|
-
You can see a list of available collections by calling `collections` on the connection object.
|
54
|
+
You can see a list of available collections by calling `collections` on the connection object.
|
36
55
|
You can try it out using the `fog` command:
|
37
56
|
|
38
|
-
|
39
|
-
|
40
|
-
# => [:addresses, :directories, ..., :volumes, :zones]
|
41
|
-
```
|
57
|
+
>> Compute[:aws].collections
|
58
|
+
[:addresses, :directories, ..., :volumes, :zones]
|
42
59
|
|
43
60
|
Some collections are available across multiple providers:
|
44
61
|
|
@@ -55,23 +72,21 @@ Collections share basic CRUD type operations, such as:
|
|
55
72
|
|
56
73
|
As an example, we'll try initializing and persisting a Rackspace Cloud server:
|
57
74
|
|
58
|
-
|
59
|
-
require 'fog'
|
75
|
+
require 'fog'
|
60
76
|
|
61
|
-
compute = Fog::Compute.new(
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
)
|
77
|
+
compute = Fog::Compute.new(
|
78
|
+
:provider => 'Rackspace',
|
79
|
+
:rackspace_api_key => key,
|
80
|
+
:rackspace_username => username
|
81
|
+
)
|
66
82
|
|
67
|
-
# boot a gentoo server (flavor 1 = 256, image 3 = gentoo 2008.0)
|
68
|
-
server = compute.servers.create(:flavor_id => 1, :image_id => 3, :name => 'my_server')
|
69
|
-
server.wait_for { ready? } # give server time to boot
|
83
|
+
# boot a gentoo server (flavor 1 = 256, image 3 = gentoo 2008.0)
|
84
|
+
server = compute.servers.create(:flavor_id => 1, :image_id => 3, :name => 'my_server')
|
85
|
+
server.wait_for { ready? } # give server time to boot
|
70
86
|
|
71
|
-
# DO STUFF
|
87
|
+
# DO STUFF
|
72
88
|
|
73
|
-
server.destroy # cleanup after yourself or regret it, trust me
|
74
|
-
```
|
89
|
+
server.destroy # cleanup after yourself or regret it, trust me
|
75
90
|
|
76
91
|
## Models
|
77
92
|
|
@@ -87,9 +102,7 @@ As you might imagine, testing code using Fog can be slow and expensive, constant
|
|
87
102
|
Mocking allows skipping this overhead by providing an in memory representation resources as you make requests.
|
88
103
|
Enabling mocking easy to use, before you run other commands, simply run:
|
89
104
|
|
90
|
-
|
91
|
-
Fog.mock!
|
92
|
-
```
|
105
|
+
Fog.mock!
|
93
106
|
|
94
107
|
Then proceed as usual, if you run into unimplemented mocks, fog will raise an error and as always contributions are welcome!
|
95
108
|
|
@@ -108,18 +121,16 @@ It will return an [excon](http://github.com/geemus/excon) response, which has `b
|
|
108
121
|
|
109
122
|
## Go forth and conquer
|
110
123
|
|
111
|
-
Play around and use the console to explore or check out [fog.io](http://fog.io)
|
112
|
-
Once you are ready to start scripting fog, here is a quick hint on how to make connections without the command line thing to help you.
|
124
|
+
Play around and use the console to explore or check out [fog.io](http://fog.io) and the [provider documentation](http://fog.io/about/provider_documentation.html)
|
125
|
+
for more details and examples. Once you are ready to start scripting fog, here is a quick hint on how to make connections without the command line thing to help you.
|
113
126
|
|
114
|
-
|
115
|
-
|
116
|
-
compute
|
117
|
-
# compute operations go here
|
127
|
+
# create a compute connection
|
128
|
+
compute = Fog::Compute.new(:provider => 'AWS', :aws_access_key_id => ACCESS_KEY_ID, :aws_secret_access_key => SECRET_ACCESS_KEY)
|
129
|
+
# compute operations go here
|
118
130
|
|
119
|
-
# create a storage connection
|
120
|
-
storage = Fog::Storage.new(:provider => 'AWS', :aws_access_key_id => ACCESS_KEY_ID, :aws_secret_access_key => SECRET_ACCESS_KEY)
|
121
|
-
# storage operations go here
|
122
|
-
```
|
131
|
+
# create a storage connection
|
132
|
+
storage = Fog::Storage.new(:provider => 'AWS', :aws_access_key_id => ACCESS_KEY_ID, :aws_secret_access_key => SECRET_ACCESS_KEY)
|
133
|
+
# storage operations go here
|
123
134
|
|
124
135
|
geemus says: "That should give you everything you need to get started, but let me know if there is anything I can do to help!"
|
125
136
|
|
@@ -138,7 +149,8 @@ geemus says: "That should give you everything you need to get started, but let m
|
|
138
149
|
|
139
150
|
## Additional Resources
|
140
151
|
|
141
|
-
[fog.io](http://fog.io)
|
152
|
+
* [fog.io](http://fog.io)
|
153
|
+
* [Provider Documentation](http://fog.io/about/provider_documentation.html)
|
142
154
|
|
143
155
|
## Copyright
|
144
156
|
|
data/Rakefile
CHANGED
@@ -48,15 +48,21 @@ end
|
|
48
48
|
|
49
49
|
GEM_NAME = "#{name}"
|
50
50
|
task :default => :test
|
51
|
+
task :travis => ['test:travis', 'coveralls_push_workaround']
|
51
52
|
|
52
53
|
require "tasks/test_task"
|
53
54
|
Fog::Rake::TestTask.new
|
54
55
|
|
55
56
|
namespace :test do
|
57
|
+
mock = 'true' || ENV['FOG_MOCK']
|
58
|
+
task :travis do
|
59
|
+
sh("export FOG_MOCK=#{mock} && bundle exec shindont")
|
60
|
+
end
|
56
61
|
task :vsphere do
|
57
|
-
[true].each do |mock|
|
58
62
|
sh("export FOG_MOCK=#{mock} && bundle exec shindont tests/vsphere")
|
59
|
-
|
63
|
+
end
|
64
|
+
task :openvz do
|
65
|
+
sh("export FOG_MOCK=#{mock} && bundle exec shindont tests/openvz")
|
60
66
|
end
|
61
67
|
end
|
62
68
|
|
@@ -136,12 +142,15 @@ task :gem_push do
|
|
136
142
|
sh "gem push pkg/#{name}-#{version}.gem"
|
137
143
|
end
|
138
144
|
|
145
|
+
desc "Build fog-#{version}.gem"
|
139
146
|
task :build => :gemspec do
|
140
147
|
sh "mkdir -p pkg"
|
141
148
|
sh "gem build #{gemspec_file}"
|
142
149
|
sh "mv *.gem pkg"
|
143
150
|
end
|
151
|
+
task :gem => :build
|
144
152
|
|
153
|
+
desc "Updates the gemspec and runs 'validate'"
|
145
154
|
task :gemspec => :validate do
|
146
155
|
# read spec file and split out manifest section
|
147
156
|
spec = File.read(gemspec_file)
|
@@ -157,6 +166,7 @@ task :gemspec => :validate do
|
|
157
166
|
puts "Updated #{gemspec_file}"
|
158
167
|
end
|
159
168
|
|
169
|
+
desc "Run before pushing out the code"
|
160
170
|
task :validate do
|
161
171
|
libfiles = Dir['lib/*'] - ["lib/#{name}.rb", "lib/#{name}", "lib/tasks"]
|
162
172
|
unless libfiles.empty?
|
@@ -178,3 +188,12 @@ end
|
|
178
188
|
|
179
189
|
require "tasks/changelog_task"
|
180
190
|
Fog::Rake::ChangelogTask.new
|
191
|
+
|
192
|
+
task :coveralls_push_workaround do
|
193
|
+
use_coveralls = (Gem::Version.new(RUBY_VERSION) > Gem::Version.new('1.9.2'))
|
194
|
+
if (ENV['COVERAGE'] != 'false') && use_coveralls
|
195
|
+
require 'coveralls/rake/task'
|
196
|
+
Coveralls::RakeTask.new
|
197
|
+
Rake::Task["coveralls:push"].invoke
|
198
|
+
end
|
199
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
require 'benchmark'
|
2
|
+
$LOAD_PATH << File.dirname(__FILE__) + '/../lib'
|
3
|
+
|
4
|
+
def time_in_fork(&block)
|
5
|
+
read, write = IO.pipe
|
6
|
+
Process.fork do
|
7
|
+
write.puts Benchmark.realtime{ block.call }
|
8
|
+
end
|
9
|
+
Process.wait
|
10
|
+
write.close
|
11
|
+
read.read.tap do
|
12
|
+
read.close
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
class Array
|
17
|
+
def avg
|
18
|
+
map(&:to_f).inject(:+) / size
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
def report(label, n = 10, &block)
|
23
|
+
puts label
|
24
|
+
puts "%.4f" % n.times.map{ time_in_fork &block }.avg
|
25
|
+
puts
|
26
|
+
end
|
27
|
+
|
28
|
+
N = 10
|
29
|
+
|
30
|
+
report("require fog:", N) { require 'fog' }
|
31
|
+
report("require fog/aws:", N) { require 'fog/aws' }
|
data/bin/fog
CHANGED
@@ -1,7 +1,29 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
|
2
3
|
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib', 'fog'))
|
4
|
+
require 'optparse'
|
3
5
|
require 'irb'
|
4
6
|
require 'yaml'
|
7
|
+
|
8
|
+
options = OptionParser.new do |opts|
|
9
|
+
opts.banner = 'usage: fog [options] CREDENTIAL'
|
10
|
+
|
11
|
+
opts.on('-C', '--credentials-path FILE', 'Path to the credentials file') do |file|
|
12
|
+
Fog.credentials_path = file
|
13
|
+
end
|
14
|
+
|
15
|
+
opts.on_tail('-v', '--version', 'Prints the version') do
|
16
|
+
puts Fog::VERSION
|
17
|
+
exit
|
18
|
+
end
|
19
|
+
|
20
|
+
opts.on_tail('-h', '--help', 'Prints this message') do
|
21
|
+
puts opts
|
22
|
+
exit
|
23
|
+
end
|
24
|
+
end
|
25
|
+
options.parse!
|
26
|
+
|
5
27
|
Fog.credential = ARGV.first ? ARGV.first.to_sym : nil
|
6
28
|
Fog.mock! if ENV['FOG_MOCK']
|
7
29
|
if Fog.credentials.empty?
|
data/changelog.txt
CHANGED
@@ -1,3 +1,2201 @@
|
|
1
|
+
1.14.0 07/19/2013 b9f1659ebd45c84db011c71b53cc581a1b7ac7e1
|
2
|
+
==========================================================
|
3
|
+
|
4
|
+
Stats! { 'collaborators' => 49, 'downloads' => 2713501, 'forks' => 860, 'open_issues' => 155, 'watchers' => 2634 }
|
5
|
+
|
6
|
+
MVP! Erik Michaels-Ober
|
7
|
+
|
8
|
+
[misc]
|
9
|
+
Create separate Gemfile for Ruby 1.8.7. thanks Erik Michaels-Ober
|
10
|
+
Update nokogiri dependency to version ~>1.5. thanks Erik Michaels-Ober
|
11
|
+
Add note about installing on Ruby 1.8.7 [ci skip]. thanks Erik Michaels-Ober
|
12
|
+
add coveralls to Gemfile.1.8.7. thanks geemus
|
13
|
+
|
14
|
+
|
15
|
+
1.13.0 07/19/2013 7f5b0b4931d8fe85596f67013ef285fd0b8335e0
|
16
|
+
==========================================================
|
17
|
+
|
18
|
+
Stats! { 'collaborators' => 49, 'downloads' => 2712905, 'forks' => 860, 'open_issues' => 157, 'watchers' => 2634 }
|
19
|
+
|
20
|
+
MVP! James Bence
|
21
|
+
|
22
|
+
[AWS | AutoScaling]
|
23
|
+
Do not send Instances for update_auto_scaling_group (Avoids 413 Request Entity Too Large for ASGs with lots of instances). thanks Michael Hale
|
24
|
+
|
25
|
+
[AWS | Autoscaling]
|
26
|
+
whitelist the options for update_auto_scaling_group. thanks Michael Hale
|
27
|
+
whitelist the options for create_auto_scaling_group. thanks Michael Hale
|
28
|
+
dry up expected options. thanks Michael Hale
|
29
|
+
correct whitelist for create_auto_scaling_group. thanks Michael Hale
|
30
|
+
ensure tests work in 1.8.7. thanks Michael Hale
|
31
|
+
|
32
|
+
[Brightbox]
|
33
|
+
Updates to add collaborations. thanks Hemant Kumar
|
34
|
+
Extract Compute::Shared to own file. thanks Paul Thornthwaite
|
35
|
+
|
36
|
+
[Openstack|Volumes]
|
37
|
+
alias type to volume_type. thanks Grzesiek Kolodziejczyk
|
38
|
+
|
39
|
+
[Openstack|volume]
|
40
|
+
Add #get to volumes collection. thanks Grzesiek Kolodziejczyk
|
41
|
+
fix key name for volume_type. thanks Grzesiek Kolodziejczyk
|
42
|
+
create volumes from other vol. thanks Grzesiek Kolodziejczyk
|
43
|
+
|
44
|
+
[aws|storage]
|
45
|
+
parse #complete_multipart error. thanks Brian D. Burns
|
46
|
+
|
47
|
+
[aws|sts]
|
48
|
+
Add support for the AssumeRole STS method. Also enable the ability for the STS service to use IAM profiles to grab credentials off the EC2 instance, as is in place for the other AWS services. thanks Caleb Tennis
|
49
|
+
|
50
|
+
[cli]
|
51
|
+
Changes `fog --version` short option to `-v`. thanks Paul Thornthwaite
|
52
|
+
|
53
|
+
[core]
|
54
|
+
Removes unused getting of Constant. thanks Paul Thornthwaite
|
55
|
+
Comments why Nokogiri 1.6 is not being used. thanks Paul Thornthwaite
|
56
|
+
Move XML/JSON code up out of core. thanks Paul Thornthwaite
|
57
|
+
Fog::Connection documentation. thanks Paul Thornthwaite
|
58
|
+
Adds initial Fog::Connection tests. thanks Paul Thornthwaite
|
59
|
+
Test Core version not deprecated one. thanks Paul Thornthwaite
|
60
|
+
|
61
|
+
[core/xml]
|
62
|
+
Splits SAX parsing from Connection. thanks Paul Thornthwaite
|
63
|
+
|
64
|
+
[digitalocean]
|
65
|
+
Rename do to docean in examples. thanks Ørjan Blom
|
66
|
+
|
67
|
+
[fix]
|
68
|
+
Corrected the service mocks for testing to respond with a 304 to values of If-Modified-Since that match Last-Modified. thanks Bob Lail and Luke Booth
|
69
|
+
|
70
|
+
[google|compute]
|
71
|
+
Change default image to most recent version of wheezy. thanks Nat Welch
|
72
|
+
Fix some bugs with using create without bootstrap. thanks Nat Welch
|
73
|
+
|
74
|
+
[misc]
|
75
|
+
Add PubliclyAccessible option to RDS. thanks Adam Tucker
|
76
|
+
Extend capability to restore_db_instance_from_db_snapshot. thanks Adam Tucker
|
77
|
+
Signature method requires x-amz-security-token header. thanks Adam Tucker
|
78
|
+
Infer the 'image' URL correctly when inserting a server. thanks Akshay Moghe
|
79
|
+
increased iops limit to 4000. http://aws.typepad.com/aws/2013/05/provision-up-to-4k-iops-per-ebs-volume.html. thanks Angelo Marletta
|
80
|
+
Added support for [xenserver] snapshot. thanks Celso Fernandes
|
81
|
+
Fixes security group handling for spot requests launching into a VPC on AWS. thanks Dave Myron
|
82
|
+
Swapped to SecurityGroupId. thanks Dave Myron
|
83
|
+
fix create_tenant Mock response description and name. thanks Doug McInnes
|
84
|
+
Update excon dependency to version ~>0.24.0. thanks Erik Michaels-Ober
|
85
|
+
Update excon dependency to version ~>0.25.0. thanks Erik Michaels-Ober
|
86
|
+
Passing the connection_options parameter to underlying Fog::Storage object. thanks Hector Castro
|
87
|
+
Passing the connection_options parameter to underlying Fog::Storage object for Fog::RiakCS::Provisioning. thanks Hector Castro
|
88
|
+
Used publicURL as default endpoint type for OpenStack network. thanks Hongbin Lu
|
89
|
+
Rename 'each' method to 'each_page'. thanks James Bence
|
90
|
+
Loop over Marker header in 'all', remove 'each'. thanks James Bence
|
91
|
+
Inspect error.response.body, not error.message. thanks James Bence
|
92
|
+
Restore implementation of each/all. thanks James Bence
|
93
|
+
Refactor error handling. thanks James Bence
|
94
|
+
Remove code from other branch-in-progress. thanks James Bence
|
95
|
+
Remove mistaken version update. thanks James Bence
|
96
|
+
Construct hash with => (for 1.8.7). thanks James Bence
|
97
|
+
Use specific error classes, not generic Fog::Compute::AWS::Error. thanks James Bence
|
98
|
+
Add describe_db_log_files request for AWS, version 2013-05-15. thanks James Bence
|
99
|
+
Add 'each' that iterates over all log files. thanks James Bence
|
100
|
+
Add parser/request for DownloadDBLogFilePortion. thanks James Bence
|
101
|
+
Use correct filters on RDS model snapshots 'all' method. thanks James Bence
|
102
|
+
Use correct filters in RDS model logfiles 'all' method. thanks James Bence
|
103
|
+
More DRY, succinct implementation of tag parsing. thanks James Bence
|
104
|
+
Remove extraneous nil. thanks James Bence
|
105
|
+
Add db identifier to parser, use it for log_file model. thanks James Bence
|
106
|
+
Get partial log content via method call; add to log_file model attributes. thanks James Bence
|
107
|
+
adding proper fixed secondary_ip support. thanks John E. Vincent
|
108
|
+
remove a debug entry. thanks John E. Vincent
|
109
|
+
Allows to set the account meta key by setting hp_account_meta_key, needed to generate temp urls using the HP provider, explicitly, instead of using hp_secret_key. If hp_account_meta_key is not given hp_secret_key is used as hp_account_meta_key. thanks Julian Fischer
|
110
|
+
HP uses a different strategy to create the signature that is passed to swift than OpenStack. As the HP provider is broadly used by OpenStack users the OpenStack strategy is applied when the @hp_account_meta_key is given. thanks Julian Fischer
|
111
|
+
Adds Fog::Storage::HP::File#url method to enable compatibility with Fog::Storage::AWS::File. thanks Julian Fischer
|
112
|
+
Fixed bug undefined local variable or method account_meta_key. thanks Julian Fischer
|
113
|
+
Bugfix: @hp_secret_key instead of @hp_account_meta_key required in storage.rb:186. thanks Julian Fischer
|
114
|
+
Avoids Digest::HMAC.hexdigest to remain 1.8.7 compatibility. thanks Julian Fischer
|
115
|
+
Remove File#url. thanks Julian Fischer
|
116
|
+
Renames hp_account_meta_key to os_account_meta_temp_url_key. thanks Julian Fischer
|
117
|
+
merging with master. thanks Kyle Rames
|
118
|
+
Add nil check on metadata mock. thanks Mike Moore
|
119
|
+
Add attachment check to detach_volume mock. thanks Mike Moore
|
120
|
+
Add array coalesce. thanks Mike Moore
|
121
|
+
Uping version to v1beta15. thanks Nat Welch
|
122
|
+
trying to fix sshable? for gce. thanks Nat Welch
|
123
|
+
more attempts to get ssh in compute workings. thanks Nat Welch
|
124
|
+
temporary debug info. thanks Nat Welch
|
125
|
+
Better comments and a logging attempt. thanks Nat Welch
|
126
|
+
bug in network interfaces code. thanks Nat Welch
|
127
|
+
Trying to be more consistent in code. Removing logging. thanks Nat Welch
|
128
|
+
trying to get metadata do one request per access. thanks Nat Welch
|
129
|
+
Forgot to delete two lines. thanks Nat Welch
|
130
|
+
correct syntax for the metadata craziness. thanks Nat Welch
|
131
|
+
I'm an idiot. thanks Nat Welch
|
132
|
+
trying again to get metadata working... thanks Nat Welch
|
133
|
+
Hashes not Arrays. thanks Nat Welch
|
134
|
+
ahh machine api changed as well... gotta figure out what the api is returning now. thanks Nat Welch
|
135
|
+
can't be private. thanks Nat Welch
|
136
|
+
whoops. thanks Nat Welch
|
137
|
+
Nope. thanks Nat Welch
|
138
|
+
not that either. thanks Nat Welch
|
139
|
+
so many syntax errors. thanks Nat Welch
|
140
|
+
in v15, there are all kinds of places images can hide. thanks Nat Welch
|
141
|
+
make sure I'm getting valid data back. thanks Nat Welch
|
142
|
+
trying to actually handle response error data. thanks Nat Welch
|
143
|
+
just the message. thanks Nat Welch
|
144
|
+
aha! This could be the issue. thanks Nat Welch
|
145
|
+
why isn't image_url getting set?. thanks Nat Welch
|
146
|
+
nil, not empty. thanks Nat Welch
|
147
|
+
try this... thanks Nat Welch
|
148
|
+
never being written. thanks Nat Welch
|
149
|
+
trying to use correct code location. thanks Nat Welch
|
150
|
+
alright! Insertion!. thanks Nat Welch
|
151
|
+
Why is this request failing. thanks Nat Welch
|
152
|
+
Send the right zone. thanks Nat Welch
|
153
|
+
zone looks to be bad in get_server. thanks Nat Welch
|
154
|
+
why!. thanks Nat Welch
|
155
|
+
this is probably not stable. thanks Nat Welch
|
156
|
+
Different trypes of input. thanks Nat Welch
|
157
|
+
modify all of the things. thanks Nat Welch
|
158
|
+
passing around teh data. thanks Nat Welch
|
159
|
+
better zone name. thanks Nat Welch
|
160
|
+
sshable? shouldn't just die. thanks Nat Welch
|
161
|
+
inifite loop get. thanks Nat Welch
|
162
|
+
more bad status code checks. thanks Nat Welch
|
163
|
+
init response. thanks Nat Welch
|
164
|
+
trying to figure out what's wrong. thanks Nat Welch
|
165
|
+
Patch from a fellow googler. thanks Nat Welch
|
166
|
+
Switch running? back to ready?. thanks Nat Welch
|
167
|
+
network_interfaces can be nil. thanks Nat Welch
|
168
|
+
Default to running user for username. thanks Nat Welch
|
169
|
+
A patch from a fellow googler. thanks Nat Welch
|
170
|
+
metadata could be nil. thanks Nat Welch
|
171
|
+
Throw errors instead of printing them. thanks Nat Welch
|
172
|
+
refactor image lookup code. thanks Nat Welch
|
173
|
+
Let's wait till sshable. thanks Nat Welch
|
174
|
+
whoops. thanks Nat Welch
|
175
|
+
small style tweaks for #1946. thanks Nat Welch
|
176
|
+
Added option parsing to bin/fog. thanks Postmodern
|
177
|
+
Added the -f, --fogrc option for specifying an alternate fogrc file. thanks Postmodern
|
178
|
+
Renamed -f,--fogrc to -C,--credentials-path. thanks Postmodern
|
179
|
+
Added Fog::AWS::SES.verify_domain_identity. thanks Postmodern
|
180
|
+
Fixed description for the #verify_domain_identity tests. thanks Postmodern
|
181
|
+
Actually call verify_domain_identity. thanks Postmodern
|
182
|
+
Add basic error handling for Fog::AWS::SES. thanks Postmodern
|
183
|
+
Convert the raw_message for send_raw_email, just in case. thanks Postmodern
|
184
|
+
Raise Fog::AWS::SES::InvalidParameterError for InvalidParameterValue. thanks Postmodern
|
185
|
+
Fix autoincrement when creating a flavor if private flavors exist. thanks Thomas Kadauke
|
186
|
+
Add RDS API version parameter option. thanks Timur Alperovich
|
187
|
+
Initial documentation for using Fog with CloudSigma. thanks Viktor Petersson
|
188
|
+
Fixed typos. thanks Viktor Petersson
|
189
|
+
add license to gempsec. thanks geemus
|
190
|
+
Added Disk and Disks to Google compute. Created new insert server request method that is backward compatible with the old request method, but also allows all insert server options to be used rather than a subset. thanks jordangbull
|
191
|
+
cleaned out print statements. Refactored disk(s) to be created the same way as other models. Fixed wait_for on disks to properly work. thanks jordangbull
|
192
|
+
Fixed minor import issue. thanks jordangbull
|
193
|
+
Rebased and cleaned up google fog. Changed insert_server to allow all options (not backwards compatible, but throws an informative error. thanks jordangbull
|
194
|
+
Cleaned code and fixed issue with getting a resource too soon after request for creation. thanks jordangbull
|
195
|
+
Added access configs name so public ip can be retrieved. thanks jordangbull
|
196
|
+
Fixed bug with bootstrapped servers not being sshable. thanks jordangbull
|
197
|
+
small fix in metadata for servers. thanks jordangbull
|
198
|
+
Fixed server bootstrap to remove default image if a boot disk is specified. thanks jordangbull
|
199
|
+
Google Cloud Compute now raises Errors rather than throwing them. thanks jordangbull
|
200
|
+
Added destroy method to disk and zone method. thanks jordangbull
|
201
|
+
Add SimpleCov and Coveralls.io dependenices Add rake tasks for travis, which include publishing coverage reports. thanks mlincoln
|
202
|
+
Change travis to use a rake task instead of shindont directly. This is partly necessary for https://github.com/lemurheavy/coveralls-ruby/pull/20, though I'm a fan of running just "rake" or "rake travis" for simplicity anyways. thanks mlincoln
|
203
|
+
The actual simplecov/coveralls setup. The use of Process.pid is an attempt to avoid confusing SimpleCov when running tests in parallel. Other tests frameworks take a similar approach when they detect parallel_tests. thanks mlincoln
|
204
|
+
Some cleanup based on comments on the PR. thanks mlincoln
|
205
|
+
|
206
|
+
[openstack|compute]
|
207
|
+
support block_device_mapping. thanks Grzesiek Kolodziejczyk
|
208
|
+
|
209
|
+
[openstack|image]
|
210
|
+
Fix image reload. thanks Ferran Rodenas
|
211
|
+
|
212
|
+
[openstack|metering]
|
213
|
+
Allow multiple filtering queries. thanks Alvin Garcia
|
214
|
+
Fix get_statistics mock. thanks Alvin Garcia
|
215
|
+
Added metering service for Ceilometer. thanks Philip Mark M. Deazeta
|
216
|
+
|
217
|
+
[openstack|volume]
|
218
|
+
support imageRef option. thanks Grzesiek Kolodziejczyk
|
219
|
+
|
220
|
+
[openvz]
|
221
|
+
Fixes #1871 test helper callback. thanks Paul Thornthwaite
|
222
|
+
|
223
|
+
[rackspace]
|
224
|
+
fix JSON error parsing. thanks Brian D. Burns
|
225
|
+
updated services to re-authenticate when authentication token expires. thanks Kyle Rames
|
226
|
+
adding block and parse_json parameters to request parameter calls. thanks Kyle Rames
|
227
|
+
fixing broken user tests; adding wait_for_request method to add in testing. thanks Kyle Rames
|
228
|
+
setting default fog timeout to 2000 for testing; removing specific hard coded timeouts. thanks Kyle Rames
|
229
|
+
|
230
|
+
[rackspace|block_storage]
|
231
|
+
fixing broken volume type tests. thanks Kyle Rames
|
232
|
+
|
233
|
+
[rackspace|cdn]
|
234
|
+
updating cdn to throw exceptions from storage namespace rather than cdn. This was done for historical reasons. thanks Kyle Rames
|
235
|
+
|
236
|
+
[rackspace|compute]
|
237
|
+
updating mocks. thanks Kyle Rames
|
238
|
+
fixing broken address test. thanks Kyle Rames
|
239
|
+
fixed metadata tests. thanks Kyle Rames
|
240
|
+
fixing broken tests. thanks Kyle Rames
|
241
|
+
adding parameter to save method in order to make it more polymorphic. thanks Kyle Rames
|
242
|
+
|
243
|
+
[rackspace|dns]
|
244
|
+
fixing DNS pagination issue #1887. thanks Kyle Rames
|
245
|
+
added total_entries attribute to zones. thanks Kyle Rames
|
246
|
+
adding :limit => 100 to clarify that all returns a limit of 100 records per page at @rupakg suggestion. thanks Kyle Rames
|
247
|
+
fixing broken tests. thanks Kyle Rames
|
248
|
+
|
249
|
+
[rackspace|identity]
|
250
|
+
fixing broken identity tests. thanks Kyle Rames
|
251
|
+
|
252
|
+
[rackspace|load balancers]
|
253
|
+
making failing usage tests cases pending until I can get them fixed. thanks Kyle Rames
|
254
|
+
|
255
|
+
[rackspace|storage]
|
256
|
+
add methods for SLO support. thanks Brian D. Burns
|
257
|
+
add #put_dynamic_obj_manifest. thanks Brian D. Burns
|
258
|
+
patch #delete_static_large_object for Swift v1.8. thanks Brian D. Burns
|
259
|
+
fix tests under ruby-1.8.7. thanks Brian D. Burns
|
260
|
+
add #delete_multiple_objects. thanks Brian D. Burns
|
261
|
+
patch #delete_multiple_objects for Swift v1.8. thanks Brian D. Burns
|
262
|
+
update File model to submit etags if they are specified. thanks Kyle Rames
|
263
|
+
|
264
|
+
[rackspce|block_storage]
|
265
|
+
fixing tests. thanks Kyle Rames
|
266
|
+
|
267
|
+
[vcloud|compute]
|
268
|
+
better defaults for configuring vm content-type. thanks geemus
|
269
|
+
|
270
|
+
[vsphere]
|
271
|
+
fix regex typo. thanks Dominic Cleal
|
272
|
+
|
273
|
+
[xenserver|compute]
|
274
|
+
Small fix for snapshot tests added in #1914. thanks Sergio Rubio
|
275
|
+
|
276
|
+
|
277
|
+
1.12.1 06/11/2013 8663e9079edb69f1a56ea887379f94e6d5efd0d8
|
278
|
+
==========================================================
|
279
|
+
|
280
|
+
Stats! { 'collaborators' => 49, 'downloads' => 2417193, 'forks' => 817, 'open_issues' => 150, 'watchers' => 2564 }
|
281
|
+
|
282
|
+
MVP! Hongbin Lu
|
283
|
+
|
284
|
+
[misc]
|
285
|
+
Don't parse non-JSON response. thanks Hongbin Lu
|
286
|
+
turn verbose error responses on. thanks geemus
|
287
|
+
|
288
|
+
|
289
|
+
1.12.0 06/11/2013 2dd2a8b003fd7ee89141820e0d3c7ff161e74f60
|
290
|
+
==========================================================
|
291
|
+
|
292
|
+
Stats! { 'collaborators' => 49, 'downloads' => 2416827, 'forks' => 817, 'open_issues' => 153, 'watchers' => 2563 }
|
293
|
+
|
294
|
+
[AWS]
|
295
|
+
adds 'hypervisor', 'lifecycle', 'requester_id', 'source_dest_check', 'spot_instance_request_id', 'virtualization_type' attributes to instances, also fixes instance tests to work in non-mocking mode. thanks Eric Stonfer
|
296
|
+
|
297
|
+
[AWS | Compute]
|
298
|
+
Added copy_image request with parser, mocks and tests. thanks Rad Gruchalski
|
299
|
+
|
300
|
+
[AWS|IAM]
|
301
|
+
Added AWS IAM iam.roles support. thanks Rad Gruchalski
|
302
|
+
|
303
|
+
[AWS|RDS]
|
304
|
+
Properly rescue NotFound exceptions. thanks Aaron Suggs
|
305
|
+
|
306
|
+
[Brightbox]
|
307
|
+
Expose expires_in value for the access token. thanks Amitava
|
308
|
+
Rename old destroy requests to delete. thanks Paul Thornthwaite
|
309
|
+
Documentation fixes. thanks Paul Thornthwaite
|
310
|
+
|
311
|
+
[Rackspace|Storage]
|
312
|
+
updating large file upload based on @burns suggestions. thanks Kyle Rames
|
313
|
+
|
314
|
+
[Zerigo|DNS]
|
315
|
+
Remove default 3600 TTL. thanks Eric Hankins
|
316
|
+
|
317
|
+
[cloudsigma]
|
318
|
+
Add CloudSigma compute provider. thanks Kaloyan Kanev
|
319
|
+
Fix create request not expecting status 201. thanks Kaloyan Kanev
|
320
|
+
Make api location as an option (:cloudsigma_host). thanks Kaloyan Kanev
|
321
|
+
Fix excon HTTPStatusError#response not having []= and failing on assignment of json decoded body. thanks Kaloyan Kanev
|
322
|
+
|
323
|
+
[cloudstack]
|
324
|
+
fix broken mock test. thanks geemus
|
325
|
+
|
326
|
+
[dynect]
|
327
|
+
remove should usage in tests. thanks geemus
|
328
|
+
|
329
|
+
[misc]
|
330
|
+
Add joyent API version and network support GH-1853. thanks Blake Irvin and Eric Saxby
|
331
|
+
Add post_object_restore support. thanks Bradley Schaefer
|
332
|
+
Fix excon expects syntax for post object restore. thanks Bradley Schaefer
|
333
|
+
Add 409 (Conflict) as an expected restore response. thanks Bradley Schaefer
|
334
|
+
Very basic mock for post_object_restore. thanks Bradley Schaefer
|
335
|
+
debug excon errors in tests. thanks Brian D. Burns
|
336
|
+
Include the ResourceRecordSetCount. thanks Edward Muller
|
337
|
+
Support pagination on Zerigo DNS zones. thanks Eric Hankins
|
338
|
+
Simplify Zerigo DNS list_zones request. thanks Eric Hankins
|
339
|
+
Update docs for Zerigo DNS list_zones request. thanks Eric Hankins
|
340
|
+
Add TTL on save rather than initialize. thanks Eric Hankins
|
341
|
+
Add Config attributes, and the "get" method for Configs to get detail of a specific config object. thanks Eric Wong
|
342
|
+
Revert "Updated gem spec to require json rather than multi_json". thanks Erik Michaels-Ober
|
343
|
+
proper user creation in OS create_server mock. thanks Evan Petrie
|
344
|
+
Remove spurious warning... thanks Frederic Jean
|
345
|
+
Fixed typo. thanks Geoff Pado
|
346
|
+
Add :id attribute to libvirt nic model. thanks Greg Sutcliffe
|
347
|
+
Include all snapshots in FOG::AWS::RDS::Snapshots#all. thanks Harry Wilkinson
|
348
|
+
Add Snaphost#each method with lazy pagination. thanks Harry Wilkinson
|
349
|
+
Added support for OpenStack region for network service. thanks Hongbin Lu
|
350
|
+
Adding support for AWS CloudFormation list_stacks and list_stack_resources API calls. thanks Joe Kinsella
|
351
|
+
Using AWS::Compute::Error for CloudFormation errors produces erroneous error messages. thanks Joe Kinsella
|
352
|
+
Support both RSpec 1.x and 2.x. thanks Josef Stribny
|
353
|
+
Chdir in a block to dry up all method. thanks Karl Freeman
|
354
|
+
Fixes #39 joyent server resize command requires expected response code. thanks Kevin Chan
|
355
|
+
Fixes #1822 Joyent list_machines is slower than it needs to be. thanks Kevin Chan
|
356
|
+
Support for request signing via ssh-agent. thanks Kevin Chan
|
357
|
+
Fixes for tags for pre7 api, more ssh-agent improvements Refs: kevinykchan/knife-joyent#37. thanks Kevin Chan
|
358
|
+
GH-1853 "public" attribute for network. thanks Kevin Chan
|
359
|
+
Fix "cache_controle" typo in docs. thanks Mark Rushakoff
|
360
|
+
Avoids Fog::Compute::Joyent::Real#decode_time_attrs raising an exception when an empty string is returned as created or updated property. thanks Pablo Baños López
|
361
|
+
server.tags implemented. thanks Rodrigo Estebanez
|
362
|
+
Tag#destroy implemented. thanks Rodrigo Estebanez
|
363
|
+
Tags#create implemented. thanks Rodrigo Estebanez
|
364
|
+
shows customizationScript of a VM. thanks Rodrigo Estebanez
|
365
|
+
VM@customization_script=. thanks Rodrigo Estebanez
|
366
|
+
escapeHTML. thanks Rodrigo Estebanez
|
367
|
+
server.tags implemented. thanks Rodrigo Estebanez
|
368
|
+
Tag#destroy implemented. thanks Rodrigo Estebanez
|
369
|
+
Tags#create implemented. thanks Rodrigo Estebanez
|
370
|
+
shows customizationScript of a VM. thanks Rodrigo Estebanez
|
371
|
+
VM@customization_script=. thanks Rodrigo Estebanez
|
372
|
+
escapeHTML. thanks Rodrigo Estebanez
|
373
|
+
Whitespace. thanks Sean Handley
|
374
|
+
Options get formed into the body. thanks Sean Handley
|
375
|
+
Don't delete the options if they were never there!. thanks Sean Handley
|
376
|
+
Allow creation with objects. thanks Sean Handley
|
377
|
+
This withstands naming/renaming issues. thanks Sean Handley
|
378
|
+
quote data in regex. thanks Simon Josi
|
379
|
+
Add API calls to manage flavor access across tenants. thanks Thomas Kadauke
|
380
|
+
fail when cloudstack default view empty. thanks Tor-Ake Fransson
|
381
|
+
fix broken test related to redacted excon error bodies. thanks geemus
|
382
|
+
Don't CGI encode header query values in the signature string. thanks ronen barzel
|
383
|
+
Consolidation suggested by Wesley Beary. thanks torake.fransson
|
384
|
+
servers can still be nil under some circumstances (server id specified does no longer exist). thanks torake.fransson
|
385
|
+
|
386
|
+
[openstack|compute]
|
387
|
+
Add mock method to list_address_pools. thanks Ferran Rodenas
|
388
|
+
|
389
|
+
[openstack|image]
|
390
|
+
Define get method for images. thanks Ferran Rodenas
|
391
|
+
|
392
|
+
[openstack|network]
|
393
|
+
Add support for OpenStack Networking LBaaS extension. thanks Ferran Rodenas
|
394
|
+
|
395
|
+
[openstack|storage]
|
396
|
+
allow headers to be specified for object manifest. thanks Brian D. Burns
|
397
|
+
|
398
|
+
[openvz|compute]
|
399
|
+
Initial commit. thanks Patrick Debois
|
400
|
+
|
401
|
+
[rackspace]
|
402
|
+
pass connection_options onto identity service so we can auth behind a proxy. thanks Kyle Rames
|
403
|
+
|
404
|
+
[rackspace|compute]
|
405
|
+
removing erronious note on setup method. thanks Kyle Rames
|
406
|
+
|
407
|
+
[rackspace|lb]
|
408
|
+
Add support for timeout attribute. thanks Decklin Foster
|
409
|
+
Use a non-default timeout so we are actually testing if the attribute was set. thanks Decklin Foster
|
410
|
+
Pass through timeout option on LB creation (also, we know algorithm works). thanks Decklin Foster
|
411
|
+
|
412
|
+
[rackspace|storage]
|
413
|
+
add large object container and prefix options. thanks Brian D. Burns
|
414
|
+
allow headers to be specified for object manifest. thanks Brian D. Burns
|
415
|
+
created a last_modified= method in the File class which works around a timezone bug in the swift service. thanks Kyle Rames
|
416
|
+
updated put_object to allow blocks to upload large files; added large file upload example and documentation. thanks Kyle Rames
|
417
|
+
made large object delete tests pending if mocking is turned on. thanks Kyle Rames
|
418
|
+
fixing large upload example and documentation. thanks Kyle Rames
|
419
|
+
tweaking upload large file example to use X-Object-Manifest header in anticipation of PR #1855. thanks Kyle Rames
|
420
|
+
fixing typo in large file upload documentation; updated large file upload to work with ruby 1.8.7. thanks Kyle Rames
|
421
|
+
|
422
|
+
[stormnondemand|compute]
|
423
|
+
Add Notification APIs. thanks Eric Wong
|
424
|
+
|
425
|
+
[stormondemand]
|
426
|
+
fix service exception handling. thanks Eric Wong
|
427
|
+
fix typo bugs and move shared code into shared.rb module. thanks Eric Wong
|
428
|
+
fix some minor problems. Add a README.md file to describe how to use the storm on demand APIs. thanks Eric Wong
|
429
|
+
|
430
|
+
[stormondemand|account]
|
431
|
+
Add Account service and token APIs. thanks Eric Wong
|
432
|
+
Add Account service to the service lsit. thanks Eric Wong
|
433
|
+
|
434
|
+
[stormondemand|billing]
|
435
|
+
Add Billing service and related APIs. thanks Eric Wong
|
436
|
+
|
437
|
+
[stormondemand|compute]
|
438
|
+
Add API version in requrest path and add new attributes in Config. thanks Eric Wong
|
439
|
+
Fix request path. thanks Eric Wong
|
440
|
+
Add additional attributes to Image and CRUD methods to Images. thanks Eric Wong
|
441
|
+
Move destroy/update/restore methods to image.rb. thanks Eric Wong
|
442
|
+
Fix the get parameters. thanks Eric Wong
|
443
|
+
Add all LoadBalancer related APIs. thanks Eric Wong
|
444
|
+
Add all server APIs. thanks Eric Wong
|
445
|
+
Add all template APIs. thanks Eric Wong
|
446
|
+
Add stats graph API. thanks Eric Wong
|
447
|
+
Add all Private IP APIs. thanks Eric Wong
|
448
|
+
Add Network IP APIs. thanks Eric Wong
|
449
|
+
Add Firewall APIs. thanks Eric Wong
|
450
|
+
Add Firewall Ruleset APIs. thanks Eric Wong
|
451
|
+
Add Pool APIs. thanks Eric Wong
|
452
|
+
Add Network Zone APIs. thanks Eric Wong
|
453
|
+
change all keys for response data into strings. thanks Eric Wong
|
454
|
+
Add Product APIs. thanks Eric Wong
|
455
|
+
|
456
|
+
[stormondemand|dns]
|
457
|
+
Add DNS service and domain APIs. thanks Eric Wong
|
458
|
+
Add DNS record APIs. thanks Eric Wong
|
459
|
+
add record region APIs. thanks Eric Wong
|
460
|
+
Add Reverse APIs. thanks Eric Wong
|
461
|
+
Add DNS Zone APIs. thanks Eric Wong
|
462
|
+
Add DNS Service to StormOnDemand. thanks Eric Wong
|
463
|
+
|
464
|
+
[stormondemand|monitoring]
|
465
|
+
Add a new Monitoring service and add/move load/bandwidth/service APIs. thanks Eric Wong
|
466
|
+
|
467
|
+
[stormondemand|network]
|
468
|
+
Add a new Network service and move all network code in Compute into Network. thanks Eric Wong
|
469
|
+
|
470
|
+
[stormondemand|storage]
|
471
|
+
Add Storage service and cluster API. thanks Eric Wong
|
472
|
+
Add Volume APIs. thanks Eric Wong
|
473
|
+
|
474
|
+
[stormondemand|support]
|
475
|
+
Add Support service and APIs for alert and support tickets. thanks Eric Wong
|
476
|
+
|
477
|
+
[stormondemand|vpn]
|
478
|
+
Add new VPN service and APIs. thanks Eric Wong
|
479
|
+
|
480
|
+
|
481
|
+
1.11.1 05/05/2013 2cfeaf236e4ebcf883d0e17f586293d6cd66f379
|
482
|
+
==========================================================
|
483
|
+
|
484
|
+
Stats! { 'collaborators' => 47, 'downloads' => 2177247, 'forks' => 783, 'open_issues' => 140, 'watchers' => 2494 }
|
485
|
+
|
486
|
+
[VSphere]
|
487
|
+
Added VMware customvalue and customfields to read the annotations for each VM. thanks Marc Grimme
|
488
|
+
Removed dependency to the Datacenters root path. So that now it should even work with other localizations. thanks Marc Grimme
|
489
|
+
|
490
|
+
[misc]
|
491
|
+
Load google/api_client late to avoid dep. thanks Dan Prince
|
492
|
+
Add a custom log warning on load error. thanks Dan Prince
|
493
|
+
|
494
|
+
[vSphere]
|
495
|
+
Refactor and extend network interface methods (similar to the ovirt implementation) * added methods to add, remove and update interfaces for vSphere * added missing method to retrieve the interface * added existing attribute key to interface (required for modifying, deleting interfaces) * alias interface's mac to id. thanks Marc Grimme
|
496
|
+
fixed bug that datastores in subfolders would not be found. thanks Marc Grimme
|
497
|
+
|
498
|
+
|
499
|
+
1.11.0 05/04/2013 bbea0162df01317405bfbb4c427fdde40e5f0f2c
|
500
|
+
==========================================================
|
501
|
+
|
502
|
+
Stats! { 'collaborators' => 1, 'downloads' => 2175484 }
|
503
|
+
|
504
|
+
MVP! Nat Welch
|
505
|
+
|
506
|
+
[Brightbox]
|
507
|
+
Updates image selector for name format. thanks Paul Thornthwaite
|
508
|
+
|
509
|
+
[Docs]
|
510
|
+
Fixes assorted yardoc tagging issues. thanks Paul Thornthwaite
|
511
|
+
|
512
|
+
[aws|iam]
|
513
|
+
user: add created_at attribute. thanks Pierre Carrier
|
514
|
+
|
515
|
+
[cloudstack]
|
516
|
+
add disk_offerings, os_types mock data. thanks Dmitry Dedov
|
517
|
+
add list_os_types, list_disk_offerings request mocks. thanks Dmitry Dedov
|
518
|
+
list_os_types, list_disk_offerings request tests, rm pending. thanks Dmitry Dedov
|
519
|
+
servers collection, add attributes to :all method. thanks Dmitry Dedov
|
520
|
+
fix image password_enabled field alias. thanks Dmitry Dedov
|
521
|
+
add create_disk_offering request. thanks Dmitry Dedov
|
522
|
+
add delete_disk_offering request. thanks Dmitry Dedov
|
523
|
+
add disk_offering model. thanks Dmitry Dedov
|
524
|
+
add disk_offerings collection. thanks Dmitry Dedov
|
525
|
+
add disk offerings to compute, tidy up. thanks Dmitry Dedov
|
526
|
+
add create/delete disk_offering mocks. thanks Dmitry Dedov
|
527
|
+
add disk_offering model tests. thanks Dmitry Dedov
|
528
|
+
fix typo in declaration model. thanks Dmitry Dedov
|
529
|
+
add delete_snapshot request mock, fix delete_snapshot description comments. thanks dm1try
|
530
|
+
add list_snapshots request mock. thanks dm1try
|
531
|
+
add test volume to mock data. thanks dm1try
|
532
|
+
tests, add snapshots_attributes to cloudstack provider config. thanks dm1try
|
533
|
+
tests, fix snapshot test. thanks dm1try
|
534
|
+
tests, remove unreachable code in snapshot test, add testcase for volume relation. thanks dm1try
|
535
|
+
|
536
|
+
[core]
|
537
|
+
fixing brittle json test. thanks Kyle Rames
|
538
|
+
|
539
|
+
[docs::aws::rds]
|
540
|
+
converted formatting from RDoc to YARD. thanks Weston Platter
|
541
|
+
|
542
|
+
[misc]
|
543
|
+
fix case where volume isn't instantly available to attach upon creation. thanks AltJ
|
544
|
+
cosmetic - fix space. thanks Andrew Kuklewicz
|
545
|
+
fix bug with head request - no query on version id for IA. thanks Andrew Kuklewicz
|
546
|
+
Fog::Model#wait_for: eliminate inner retry loop. thanks Chris Frederick
|
547
|
+
Implement rescue mode support for Rackspace. thanks Chris Wuest
|
548
|
+
Rectify issues with tests and status. thanks Chris Wuest
|
549
|
+
OS: Fix revert_resize_server method name. thanks Dan Prince
|
550
|
+
Fix non-circular-require warnings. thanks Eric Hodel
|
551
|
+
Fix bluebox's Server#public_ip_address. thanks Eric Lindvall
|
552
|
+
Fix typo in method name for DynamoDB::Mock#setup_credentials. thanks James Fraser
|
553
|
+
(maint) Fixup whitespace. thanks Jeff McCune
|
554
|
+
(maint) Clean up whitespace errors. thanks Jeff McCune
|
555
|
+
AWS | storage: use #service instead of the deprecated #connection in the tests. thanks Jonas Pfenniger
|
556
|
+
AWS | storage: add tests for directory#public_url. thanks Jonas Pfenniger
|
557
|
+
AWS | storage: add more uniq_id in the tests to avoid collisions. thanks Jonas Pfenniger
|
558
|
+
AWS | storage: disabling broken tests. thanks Jonas Pfenniger
|
559
|
+
AWS | storage: make directory.persisted? tell the truth. thanks Jonas Pfenniger
|
560
|
+
AWS | storage: fixes ignored location with new buckets. thanks Jonas Pfenniger
|
561
|
+
AWS | storage: big refactor. thanks Jonas Pfenniger
|
562
|
+
AWS | storage: also escape the bucket name when using the path_style. thanks Jonas Pfenniger
|
563
|
+
Updated gem spec to require json rather than multi_json; Fog::JSON will attempt to load and use multi_json first and then fallback to require json; removed hard coded references to multi_json. thanks Kyle Rames
|
564
|
+
Adding multi_json to GemFile as it is now an optional dependency for the gem. thanks Kyle Rames
|
565
|
+
Added tests for Fog::JSON; Added Fog::JSON::LoadError class; Updated all MultiJson references to Fog::JSON. thanks Kyle Rames
|
566
|
+
Added pointers to provider specific documentation to README.md. thanks Kyle Rames
|
567
|
+
adding space to force travis to build. thanks Kyle Rames
|
568
|
+
Remove the OpenStack API cache busting. thanks Mark Turner
|
569
|
+
Changes the path only if subdomain is not @host. thanks Matthieu Huin
|
570
|
+
Vsphere: add options of numCPUs and memoryMB for VM clone. thanks Ming Jin
|
571
|
+
delete vms that is not ready for vm.config, e.g. during the creation period. thanks Ming Jin
|
572
|
+
merged fog HEAD, deleting whitespaces. thanks Ming Jin
|
573
|
+
delete whitespaces. thanks Ming Jin
|
574
|
+
fix issues in checking whether VM is of template type. thanks Ming Jin
|
575
|
+
trying to move gce to google. thanks Nat Welch
|
576
|
+
more trying to move gce to google. thanks Nat Welch
|
577
|
+
GCE -> Google. thanks Nat Welch
|
578
|
+
merge bin files. thanks Nat Welch
|
579
|
+
google was in the providers twice. thanks Nat Welch
|
580
|
+
fixes tests due to class name collision. thanks Nat Welch
|
581
|
+
remove more references to gce. thanks Nat Welch
|
582
|
+
an attempt to get gce tests working in travis. thanks Nat Welch
|
583
|
+
a little sorting of config options. thanks Nat Welch
|
584
|
+
trying to move gce to google. thanks Nat Welch
|
585
|
+
more trying to move gce to google. thanks Nat Welch
|
586
|
+
GCE -> Google. thanks Nat Welch
|
587
|
+
merge bin files. thanks Nat Welch
|
588
|
+
google was in the providers twice. thanks Nat Welch
|
589
|
+
fixes tests due to class name collision. thanks Nat Welch
|
590
|
+
remove more references to gce. thanks Nat Welch
|
591
|
+
an attempt to get gce tests working in travis. thanks Nat Welch
|
592
|
+
a little sorting of config options. thanks Nat Welch
|
593
|
+
remove google-api requirements. thanks Nat Welch
|
594
|
+
stripping out thin. thanks Nat Welch
|
595
|
+
should move auth into a the main class. thanks Nat Welch
|
596
|
+
Hopeing the head of the gapi makes things better... thanks Nat Welch
|
597
|
+
actually just specify a version. thanks Nat Welch
|
598
|
+
load file appropriately. thanks Nat Welch
|
599
|
+
fix deprecation notice. thanks Nat Welch
|
600
|
+
more attempts to get server creation working. thanks Nat Welch
|
601
|
+
get rid of gAPI warnings and Fog deprecation notices. thanks Nat Welch
|
602
|
+
successfully launched a server. thanks Nat Welch
|
603
|
+
whoops. thanks Nat Welch
|
604
|
+
trying to fix 1.8.7. thanks Nat Welch
|
605
|
+
still trying to figure out 1.8.7 support. thanks Nat Welch
|
606
|
+
fixing another 1.8.7 bug. thanks Nat Welch
|
607
|
+
Add correct keys for Google Compute. thanks Nat Welch
|
608
|
+
whoops. thanks Nat Welch
|
609
|
+
put extra keys in fog credential error. thanks Nat Welch
|
610
|
+
Fixes the test running. thanks Nat Welch
|
611
|
+
13 is now deprecated. thanks Nat Welch
|
612
|
+
An attempt to get disk requests passing tests. thanks Nat Welch
|
613
|
+
More accurate disk tests that fail. thanks Nat Welch
|
614
|
+
Kernel api has been deprecated. thanks Nat Welch
|
615
|
+
removing listoperations as it doesn't exist anymore. thanks Nat Welch
|
616
|
+
basis for zone and global operations requests. thanks Nat Welch
|
617
|
+
better operation APIs. thanks Nat Welch
|
618
|
+
cheating to make operations tests simpler for now. thanks Nat Welch
|
619
|
+
firewall tests passing. thanks Nat Welch
|
620
|
+
passing zone tests. thanks Nat Welch
|
621
|
+
format isn't write, but valid API requests. thanks Nat Welch
|
622
|
+
working image test. thanks Nat Welch
|
623
|
+
more accurate server requests. thanks Nat Welch
|
624
|
+
fix network list test. thanks Nat Welch
|
625
|
+
get image tests closer to passing. thanks Nat Welch
|
626
|
+
trying to get a simple model test working. thanks Nat Welch
|
627
|
+
progress. thanks Nat Welch
|
628
|
+
didn't mean to commit this. thanks Nat Welch
|
629
|
+
fix server list. thanks Nat Welch
|
630
|
+
slightly more accurate image test, although still failing. thanks Nat Welch
|
631
|
+
fix delete server. thanks Nat Welch
|
632
|
+
Fixes insert and delete. thanks Nat Welch
|
633
|
+
Trying to get ssh command working. thanks Nat Welch
|
634
|
+
... really?. thanks Nat Welch
|
635
|
+
trying to get ssh to work. thanks Nat Welch
|
636
|
+
I'm not saving networkinterfaces. thanks Nat Welch
|
637
|
+
more attempts to get ssh working. thanks Nat Welch
|
638
|
+
zone_names are urls, but I need to write them as just the name. thanks Nat Welch
|
639
|
+
trying to get keys working for ssh. thanks Nat Welch
|
640
|
+
auto expand home. thanks Nat Welch
|
641
|
+
whoops. thanks Nat Welch
|
642
|
+
add set_metadata to upload ssh keys. thanks Nat Welch
|
643
|
+
custome sshable. thanks Nat Welch
|
644
|
+
reverting bin.rb to original state. thanks Nat Welch
|
645
|
+
disable mock running, I think. thanks Nat Welch
|
646
|
+
merge fail. thanks Nat Welch
|
647
|
+
Fix CHANGELOG fog version for digitalocean, xenserver and openstack. thanks Sergio Rubio
|
648
|
+
issue #1275 removed rspec requires - tests pass. thanks Weston Platter
|
649
|
+
Adding Google Compute Engine driver. thanks Ziyad Mir
|
650
|
+
Updating create server behaviour and defaults. thanks Ziyad Mir
|
651
|
+
Adding Google Compute Engine driver. thanks Ziyad Mir
|
652
|
+
Updating create server behaviour and defaults. thanks Ziyad Mir
|
653
|
+
remove kyle rames from future contention for MVP. thanks geemus
|
654
|
+
add trademark notice. thanks geemus
|
655
|
+
Revert "add trademark notice". thanks geemus
|
656
|
+
add 2.0.0 to travis build list. thanks geemus
|
657
|
+
|
658
|
+
[openstack]
|
659
|
+
Retrieve supported API version for Image & Network services. thanks Ferran Rodenas
|
660
|
+
|
661
|
+
[openstack|compute]
|
662
|
+
Add volume attachment methods. thanks Ferran Rodenas
|
663
|
+
Add volume method to server model. thanks Ferran Rodenas
|
664
|
+
Add volume tests. thanks Ferran Rodenas
|
665
|
+
|
666
|
+
[openstack|volume]
|
667
|
+
Added quota requests for Cinder. thanks Philip Mark M. Deazeta
|
668
|
+
|
669
|
+
[rackspace]
|
670
|
+
updated NotFound exceptions to include region when available. thanks Kyle Rames
|
671
|
+
correcting exception classes on YARD docs. thanks Kyle Rames
|
672
|
+
fixing delete image tests. thanks Kyle Rames
|
673
|
+
updated ServiceException to catch JSON decoding exception and display a warning message. thanks Kyle Rames
|
674
|
+
fixing broken tests. thanks Kyle Rames
|
675
|
+
removing duplicate line caused by bad merge. thanks Kyle Rames
|
676
|
+
fixing bug with mock data. thanks Kyle Rames
|
677
|
+
|
678
|
+
[rackspace|compute_v2]
|
679
|
+
fixed bug in InvalidStateExceptions. thanks Kyle Rames
|
680
|
+
fixed bug where server creation was not adding networks. thanks Kyle Rames
|
681
|
+
|
682
|
+
[rackspace|dns]
|
683
|
+
updated DNS service to use Fog::DNS::Rackspace::NotFound exceptions in keeping with the rest of the services. thanks Kyle Rames
|
684
|
+
|
685
|
+
[rackspace|storage]
|
686
|
+
updated storage and cdn services to wrap excon exceptions in the same manner as the other Rackspace services. thanks Kyle Rames
|
687
|
+
|
688
|
+
[vsphere]
|
689
|
+
Use Fog.mock? as the other providers Specs can set Fog.mock! without setting the env var. thanks Carlos Sanchez
|
690
|
+
Use find_raw_datacenter instead of get_raw_datacenter. thanks Carlos Sanchez
|
691
|
+
allow setting ram and num of cpu when cloning. thanks Mick Pollard
|
692
|
+
add list_templates function. thanks Ming Jin
|
693
|
+
add get_template function. thanks Ming Jin
|
694
|
+
|
695
|
+
[vsphere|compute]
|
696
|
+
Merge tmandke VM list speedups. thanks Jeff McCune
|
697
|
+
Add VM template models. thanks Jeff McCune
|
698
|
+
fix incorrect filters.merge in networks model. thanks Mick Pollard
|
699
|
+
add list_templates function. thanks Ming Jin
|
700
|
+
add get_template function. thanks Ming Jin
|
701
|
+
add options of numCPUs and memoryMB for VM clone. thanks Ming Jin
|
702
|
+
Bulk fetch all managed views VM properties. thanks Tejas Ravindra Mandke
|
703
|
+
Switch some attributes to lazyload. thanks Tejas Ravindra Mandke
|
704
|
+
|
705
|
+
|
706
|
+
1.10.1 04/04/2013 a270b69a23b43a8cdab768f88503779f27a74fa0
|
707
|
+
==========================================================
|
708
|
+
|
709
|
+
Stats! { 'collaborators' => 46, 'downloads' => 1993968, 'forks' => 746, 'open_issues' => 134, 'watchers' => 2438 }
|
710
|
+
|
711
|
+
MVP! Kyle Rames
|
712
|
+
|
713
|
+
[VMWare]
|
714
|
+
Fixed broken support for obj_ids with spaces. thanks Marc Grimme
|
715
|
+
|
716
|
+
[Vcloud]
|
717
|
+
Server reset instance vars after save. thanks dJason
|
718
|
+
|
719
|
+
[aws]
|
720
|
+
Handle the "phantom" security group that exists for elbs. thanks Eugene Howe
|
721
|
+
mock update_server_certificate. thanks Josh Lane & Ines Sombra
|
722
|
+
|
723
|
+
[aws|beanstalk]
|
724
|
+
Update parser for DescribeEnvironmentResources. thanks George Scott
|
725
|
+
|
726
|
+
[cloudstack]
|
727
|
+
add snapshot model. thanks Dmitry Dedov
|
728
|
+
|
729
|
+
[core]
|
730
|
+
Updated to make ssh timeout user configurable. thanks Kyle Rames
|
731
|
+
|
732
|
+
[digitalocean]
|
733
|
+
Check to see if we have a digital ocean api key before attempting to delete servers. thanks Kyle Rames
|
734
|
+
|
735
|
+
[digitalocean|compute]
|
736
|
+
initial release. thanks Sergio Rubio
|
737
|
+
added getting started guide. thanks Sergio Rubio
|
738
|
+
Updated server model documentation. thanks Sergio Rubio
|
739
|
+
added test helpers. thanks Sergio Rubio
|
740
|
+
Implemented Server.reboot. thanks Sergio Rubio
|
741
|
+
Implement Server.power_cycle. thanks Sergio Rubio
|
742
|
+
tests updates. thanks Sergio Rubio
|
743
|
+
Added Servers collection tests. thanks Sergio Rubio
|
744
|
+
Implement missing requests. thanks Sergio Rubio
|
745
|
+
implemented missing Server actions. thanks Sergio Rubio
|
746
|
+
string fixes. thanks Sergio Rubio
|
747
|
+
list_servers request test fixes. thanks Sergio Rubio
|
748
|
+
server model test fixes. thanks Sergio Rubio
|
749
|
+
remove extra comma, breaks ruby 1.8. thanks Sergio Rubio
|
750
|
+
Added support to use SSH keys when creating the server. thanks Sergio Rubio
|
751
|
+
added some more request. thanks Sergio Rubio
|
752
|
+
Added list_flavors mock code. thanks Sergio Rubio
|
753
|
+
Added list_images mock code. thanks Sergio Rubio
|
754
|
+
added list_servers mock code. thanks Sergio Rubio
|
755
|
+
added list_regions mock code. thanks Sergio Rubio
|
756
|
+
initialize compute service mock data. thanks Sergio Rubio
|
757
|
+
added create_server mock code. thanks Sergio Rubio
|
758
|
+
added create_ssh_key mock code. thanks Sergio Rubio
|
759
|
+
added destroy_server mock code. thanks Sergio Rubio
|
760
|
+
added get_server_details mock code. thanks Sergio Rubio
|
761
|
+
list_servers uses mock data. thanks Sergio Rubio
|
762
|
+
added list_ssh_keys mock code. thanks Sergio Rubio
|
763
|
+
added power_cycle_server mock code. thanks Sergio Rubio
|
764
|
+
added power_off_server mock code. thanks Sergio Rubio
|
765
|
+
added power_on_server mock code. thanks Sergio Rubio
|
766
|
+
added reboot_server mock code. thanks Sergio Rubio
|
767
|
+
added shutdown_server mock code. thanks Sergio Rubio
|
768
|
+
added list_ssh_keys request tests. thanks Sergio Rubio
|
769
|
+
mark Server.reboot test pending if mocking. thanks Sergio Rubio
|
770
|
+
do not run at_exit block when mocking. thanks Sergio Rubio
|
771
|
+
mark Server.power_cycle test as pending when mocking. thanks Sergio Rubio
|
772
|
+
power state tests fixes. thanks Sergio Rubio
|
773
|
+
improve power state tests reliability. thanks Sergio Rubio
|
774
|
+
fix create_ssh_key request path. thanks Sergio Rubio
|
775
|
+
added destroy_ssh_key request and tests. thanks Sergio Rubio
|
776
|
+
added get_ssh_key request and tests. thanks Sergio Rubio
|
777
|
+
added create_ssh_key request tests. thanks Sergio Rubio
|
778
|
+
added SshKey model, collection and related tests. thanks Sergio Rubio
|
779
|
+
added ssh related requests, model and collection. thanks Sergio Rubio
|
780
|
+
power_state_tests fixes. thanks Sergio Rubio
|
781
|
+
list_ssh_keys request mock fixes. thanks Sergio Rubio
|
782
|
+
include response body in exception when request fails. thanks Sergio Rubio
|
783
|
+
Improved tests reliability. thanks Sergio Rubio
|
784
|
+
Added changelog. thanks Sergio Rubio
|
785
|
+
|
786
|
+
[docs::aws::cloudformation]
|
787
|
+
reformatted in YARD format. no content changes, just format changes. thanks Weston Platter
|
788
|
+
|
789
|
+
[docs::was::cdn]
|
790
|
+
reformatted in YARD format. no content changes, just format changes. thanks Weston Platter
|
791
|
+
|
792
|
+
[dreamhost|dns]
|
793
|
+
added missing changelog. thanks Sergio Rubio
|
794
|
+
|
795
|
+
[hp]
|
796
|
+
Add Accept header with application/json for all HP requests. thanks Rupak Ganguly
|
797
|
+
|
798
|
+
[hp|compute]
|
799
|
+
Add user_data option to create server call. thanks Rupak Ganguly
|
800
|
+
Consolidate the simple mapped options parameters in the create server call. thanks Rupak Ganguly
|
801
|
+
Add the capability to pass in user_data in the server model. thanks Rupak Ganguly
|
802
|
+
Add user_data to the mock data structure. thanks Rupak Ganguly
|
803
|
+
Fix mock for create server. thanks Rupak Ganguly
|
804
|
+
Add user_data option to create server call. thanks Rupak Ganguly
|
805
|
+
Consolidate the simple mapped options parameters in the create server call. thanks Rupak Ganguly
|
806
|
+
Add user_data to the mock data structure. thanks Rupak Ganguly
|
807
|
+
Fix mock for create server. thanks Rupak Ganguly
|
808
|
+
|
809
|
+
[hp|storage]
|
810
|
+
marker option in each method needs to be a string. thanks Andreas Gerauer
|
811
|
+
|
812
|
+
[libvirt|compute]
|
813
|
+
handle missing <system> tag in libvirt node info. thanks Dominic Cleal
|
814
|
+
|
815
|
+
[misc]
|
816
|
+
ovirt quota support. thanks Amos Benari
|
817
|
+
Removed Zerigo::Models::DNS::Records#find method, moved functionality to all(options) Removed Rackspace::Models::DNS::Zones#find, moved functionality to all(options). thanks Andreas Gerauer
|
818
|
+
fixed infinite loop in each method of AWS Distributions. thanks Andreas Gerauer
|
819
|
+
add a test to protect certain Enumerable methods in Fog::Collection subclasses. thanks Andreas Gerauer
|
820
|
+
get rid of bucket/directory delete - not allowed for IA. thanks Andrew Kuklewicz
|
821
|
+
add IA specific headers for file. thanks Andrew Kuklewicz
|
822
|
+
get rid of versions from IA. thanks Andrew Kuklewicz
|
823
|
+
missed one. thanks Andrew Kuklewicz
|
824
|
+
fix tests, found a few differences with S3. thanks Andrew Kuklewicz
|
825
|
+
fix 1.8.7 error, oops. thanks Andrew Kuklewicz
|
826
|
+
fix internet archive use of headers, remove acls. thanks Andrew Kuklewicz
|
827
|
+
sshable should take the same options as ssh. thanks Anshul Khandelwal
|
828
|
+
[aws][glesys] Pass credentials to sshable. thanks Anshul Khandelwal
|
829
|
+
Use strict base encoding otherwise breaks for very large org names. thanks Chirag Jog
|
830
|
+
revert typo. thanks Chirag Jog
|
831
|
+
Fix the base encoding issue with Ruby 1.8.7 Compliance. thanks Chirag Jog
|
832
|
+
Delete \r also. thanks Chirag Jog
|
833
|
+
Minor fix: Ensure to send a valid Content-Type. thanks Chirag Jog
|
834
|
+
Check if a template requires a password or not. thanks Chirag Jog
|
835
|
+
Remove unecessary print. thanks Chirag Jog
|
836
|
+
Support optional `snapshot_id` key when creating volumes. thanks Chris Roberts
|
837
|
+
added dummy filters parameter to servers.all for conformity. thanks Christoph Witzany
|
838
|
+
Add Riak CS provider in Fog. thanks Christopher Meiklejohn
|
839
|
+
Updated DescribeReservedInstancesOfferings to take in filters as request parameters. thanks Curtis Stewart
|
840
|
+
OpenStack: base64 encode personality in rebuild. thanks Dan Prince
|
841
|
+
Forcing good Excon version. thanks Daniel Libanori
|
842
|
+
Update file.rb. thanks Dave Ungerer
|
843
|
+
Stop hardcoding the server ssh port. thanks David Calavera
|
844
|
+
Use passed blocks to handle scp callbacks. thanks David Calavera
|
845
|
+
fix syntax, ruby 1.8.7. thanks Dmitry Dedov
|
846
|
+
changed status to state for conformity and fixed alias for flavor_id. thanks DoubleMalt
|
847
|
+
replaced dup/delete with reject. thanks Eugene Howe
|
848
|
+
fixed for 1.8. thanks Eugene Howe
|
849
|
+
add ovirt quota support. thanks Jason Montleon
|
850
|
+
1620: Try to add some guards around possible nil objects based on associations in VPCs. thanks Jesse Davis
|
851
|
+
1620: Try to add some guards around possible nil objects based on associations in VPCs. thanks Jesse Davis
|
852
|
+
fix tabs. thanks Jesse Davis
|
853
|
+
First attempt at an S3 path_style flag. thanks Joachim Nolten
|
854
|
+
rebasing with master. thanks Kyle Rames
|
855
|
+
rebasing with master. thanks Kyle Rames
|
856
|
+
removing superfluous readme. thanks Kyle Rames
|
857
|
+
rebasing with master. thanks Kyle Rames
|
858
|
+
updated endpoint handing. thanks Kyle Rames
|
859
|
+
rebasing with master. thanks Kyle Rames
|
860
|
+
rebasing. thanks Kyle Rames
|
861
|
+
merging in latest master. thanks Kyle Rames
|
862
|
+
fixing merge issues. thanks Kyle Rames
|
863
|
+
fixing merge issues. thanks Kyle Rames
|
864
|
+
merging in document changes. thanks Kyle Rames
|
865
|
+
rackspace|compute_v2] removing superfluous note from compute_v2 documentation. thanks Kyle Rames
|
866
|
+
merging in latest master. thanks Kyle Rames
|
867
|
+
mend. thanks Kyle Rames
|
868
|
+
Revert "[rackspace] adding note about credentials in the getting started document". thanks Kyle Rames
|
869
|
+
convert lib/fog to simply include all providers. thanks Lance Ivy
|
870
|
+
benchmark for loading all of fog vs just aws. thanks Lance Ivy
|
871
|
+
fix joyent and xenserver so they can be required individually. thanks Lance Ivy
|
872
|
+
restore ability to load fog from source without bundler. thanks Lance Ivy
|
873
|
+
fix bug where servers.all was ignoring filters due to hash merging in the wrong direction. thanks Mick Pollard
|
874
|
+
Fix S3 directory location infinite loop. thanks Nils Landt
|
875
|
+
Update changelog and bump version. thanks Rupak Ganguly
|
876
|
+
Fix names of the container sync attributes. thanks Rupak Ganguly
|
877
|
+
Add Object Storage container sync feature. thanks Rupak Ganguly
|
878
|
+
Update changelog and bump version. thanks Rupak Ganguly
|
879
|
+
supported OpenStack Quantum Router Operation. not include mock code. thanks Tomokazu Hirai
|
880
|
+
added mock code for router operation. thanks Tomokazu Hirai
|
881
|
+
fixed responce data from mock and removed vanilla options reject code. thanks Tomokazu Hirai
|
882
|
+
@rubiojr wrote mock code for openstack routers. thanks Tomokazu Hirai
|
883
|
+
@rubiojr fixed mock test failure. thanks Tomokazu Hirai
|
884
|
+
@rubiojr fixed mock faulure for router(s)_tests.rb. thanks Tomokazu Hirai
|
885
|
+
fix for AWS error message parsing. thanks VirtualStaticVoid
|
886
|
+
Added Content-Disposition attribute for Rackspace file. thanks Yauheni Kryudziuk
|
887
|
+
Changed GoogleAccessKeyId to GoogleAccessId. thanks althras
|
888
|
+
Add Vcloud support back to Fog::Compute. thanks dJason
|
889
|
+
add Rupak Ganguly to MVP exclusion list. thanks geemus
|
890
|
+
container sync attributes. thanks howete
|
891
|
+
|
892
|
+
[openstack]
|
893
|
+
added changelog. thanks Sergio Rubio
|
894
|
+
|
895
|
+
[openstack|compute]
|
896
|
+
Allow booting a VM with NICs (net_id, port_id, fixed_ip). thanks Ferran Rodenas
|
897
|
+
Use attribute accessor for nics. thanks Ferran Rodenas
|
898
|
+
|
899
|
+
[openstack|glance]
|
900
|
+
Added image service example. thanks Sergio Rubio
|
901
|
+
|
902
|
+
[openstack|identity]
|
903
|
+
moved identity example to the examples directory. thanks Sergio Rubio
|
904
|
+
|
905
|
+
[openstack|image]
|
906
|
+
Check for glance version (fog only supports v1). thanks Ferran Rodenas
|
907
|
+
|
908
|
+
[openstack|network]
|
909
|
+
Add endpoint_type option. thanks Ferran Rodenas
|
910
|
+
create_network provider extensions. thanks Sergio Rubio
|
911
|
+
Added missing router model/collection. thanks Sergio Rubio
|
912
|
+
update_router request updates. thanks Sergio Rubio
|
913
|
+
router model updates. thanks Sergio Rubio
|
914
|
+
create_router request updates. thanks Sergio Rubio
|
915
|
+
Added missing router related tests. thanks Sergio Rubio
|
916
|
+
create_network provider extensions reworked. thanks Sergio Rubio
|
917
|
+
remove extra trailing comma. thanks Sergio Rubio
|
918
|
+
remove superfluous Router model attributes. thanks Sergio Rubio
|
919
|
+
Fix #connection deprecation replacing it with #service. thanks Sergio Rubio
|
920
|
+
mock fixes in some OpenStack Network requests. thanks Sergio Rubio
|
921
|
+
added network/subnet/router related example. thanks Sergio Rubio
|
922
|
+
|
923
|
+
[openstack|storage]
|
924
|
+
Added support to impersonate other accounts. thanks Sergio Rubio
|
925
|
+
added missing mocks. thanks Sergio Rubio
|
926
|
+
Added storage example to set the account quota. thanks Sergio Rubio
|
927
|
+
|
928
|
+
[rackspace]
|
929
|
+
updated storage to support custom endpoints when using auth 2.0. thanks Kyle Rames
|
930
|
+
extracted auth 2.0 into module; updated cdn to support an external endpoint. thanks Kyle Rames
|
931
|
+
updated service_catalog.reload; added rackspace_cdn_url as an option to storage service; tweaked compute_v2 auth. thanks Kyle Rames
|
932
|
+
renaming variables in the interest of clarification. thanks Kyle Rames
|
933
|
+
updated to use v1 authentication if rackspace_auth_url endpoint is specified without version as with the current implementation of knife-rackspace. thanks Kyle Rames
|
934
|
+
initial checkin for the Getting started with Cloud Files document. thanks Kyle Rames
|
935
|
+
SPIKE: converting authentication module to super class. thanks Kyle Rames
|
936
|
+
updated to pass string rather and a uri to Fog::Connection. thanks Kyle Rames
|
937
|
+
created auth_token method in service that will return a token defined in the @auth_token variable to the identity service to reduce the chance that token might not be set; improved token tests. thanks Kyle Rames
|
938
|
+
made some methods private per @brianhartsock. thanks Kyle Rames
|
939
|
+
adding deprecation warning for auth v1.0/v1.1 authentication endpoints. thanks Kyle Rames
|
940
|
+
fixing yard warnings. thanks Kyle Rames
|
941
|
+
adding auth endpoint constants in Fog::Rackspace. thanks Kyle Rames
|
942
|
+
additional getting started document edits. thanks Kyle Rames
|
943
|
+
minor document update. thanks Kyle Rames
|
944
|
+
fixing constant already defined error for Fog::Rackspace::UK_AUTH_ENDPOINT and Fog::Rackspace::US_AUTH_ENDPOINT. thanks Kyle Rames
|
945
|
+
adding auth 2.0 to compute, databases, dns, load balancers, cloud block storage. thanks Kyle Rames
|
946
|
+
updated service endpoint handling; improved service endpoint tests. thanks Kyle Rames
|
947
|
+
moving require 'fog/rackspace/service' to fog/rackspace. thanks Kyle Rames
|
948
|
+
fixing auth 20 issue where tenant id is not being appended to the service url. thanks Kyle Rames
|
949
|
+
adjusting white space on documents. Added examples, additional resources, and support section to cloud files doc. thanks Kyle Rames
|
950
|
+
updated to normalize endpoints before detecting a standard endpoint. thanks Kyle Rames
|
951
|
+
making document edits. thanks Kyle Rames
|
952
|
+
fixing code error in documentation. thanks Kyle Rames
|
953
|
+
miscellaneous document tweaks. thanks Kyle Rames
|
954
|
+
added exception info to rackspace api documentation. thanks Kyle Rames
|
955
|
+
adding stragler. thanks Kyle Rames
|
956
|
+
fixing typo in api docs. thanks Kyle Rames
|
957
|
+
updated getting_started.md to use source 'https://rubygems.org' rather than :rubygems. thanks Kyle Rames
|
958
|
+
tweaking getting started page. thanks Kyle Rames
|
959
|
+
adding note about credentials in the getting started document. thanks Kyle Rames
|
960
|
+
adding note about credentials in the getting started document. thanks Kyle Rames
|
961
|
+
updated examples to use Chicago data center; updated error message to indicate we were using the Chicago data center. thanks Kyle Rames
|
962
|
+
revising getting started page. thanks Kyle Rames
|
963
|
+
|
964
|
+
[rackspace|block_storage]
|
965
|
+
initial document checkin. thanks Kyle Rames
|
966
|
+
edits to cloud block storage documentation. thanks Kyle Rames
|
967
|
+
adding link on getting_started.md to cloud block storage doc. thanks Kyle Rames
|
968
|
+
additional edits to the cloud block storage documentation. thanks Kyle Rames
|
969
|
+
initial checkin of block storage api documentation. thanks Kyle Rames
|
970
|
+
adding response documentaion. thanks Kyle Rames
|
971
|
+
updated yard docs for requests. thanks Kyle Rames
|
972
|
+
|
973
|
+
[rackspace|blockstorage]
|
974
|
+
adding Cloud Block Storage Examples. thanks Kyle Rames
|
975
|
+
|
976
|
+
[rackspace|cdn]
|
977
|
+
updated cdn to use auth 2.0. thanks Kyle Rames
|
978
|
+
|
979
|
+
[rackspace|compute_v2]
|
980
|
+
updated compute_v2 to use auth 2.0 endpoints. thanks Kyle Rames
|
981
|
+
updated to support auth 2.0. thanks Kyle Rames
|
982
|
+
fixing broken test. thanks Kyle Rames
|
983
|
+
added authentication_method test specifically for chef's default. thanks Kyle Rames
|
984
|
+
fixing yard doc. thanks Kyle Rames
|
985
|
+
updated compute_v2 to get the appropriate endpoint from the service catalog when an endpoint is specified via :rackspace_endpoint with one of the known constants (DFW_ENDPOINT, ORD_ENDPOINT, LON_ENDPOINT); updated compute examples to use rackspace region. thanks Kyle Rames
|
986
|
+
fixed chef issue. thanks Kyle Rames
|
987
|
+
updated detach volume to use :rackspace_region to specify region. thanks Kyle Rames
|
988
|
+
added specific exception for invalid states in order to make it easier to rescue. thanks Kyle Rames
|
989
|
+
added bootstrap and ssh section to compute documentation. thanks Kyle Rames
|
990
|
+
updated the bootstrap section of the compute_v2 documentation. thanks Kyle Rames
|
991
|
+
|
992
|
+
[rackspace|identity]
|
993
|
+
updated test to support ruby 1.8.7. thanks Kyle Rames
|
994
|
+
|
995
|
+
[rackspace|storage]
|
996
|
+
initial cloud file examples checkin. thanks Kyle Rames
|
997
|
+
fixing typos. thanks Kyle Rames
|
998
|
+
renaming examples. thanks Kyle Rames
|
999
|
+
updating to use 2.0 authentication endpoints. thanks Kyle Rames
|
1000
|
+
fixing broken tests. thanks Kyle Rames
|
1001
|
+
fixing example spacing. thanks Kyle Rames
|
1002
|
+
adding rackspace storage docs; general edits on other rackspace documents. thanks Kyle Rames
|
1003
|
+
adding Storage yard docs. thanks Kyle Rames
|
1004
|
+
updating the download file section. thanks Kyle Rames
|
1005
|
+
updating download example to use a block. thanks Kyle Rames
|
1006
|
+
updating auth endpoints in documentation. thanks Kyle Rames
|
1007
|
+
fixing typos. thanks Kyle Rames
|
1008
|
+
|
1009
|
+
[xenserver|compute]
|
1010
|
+
added create_vlan request. thanks Sergio Rubio
|
1011
|
+
added destroy_vlan request. thanks Sergio Rubio
|
1012
|
+
added create_vlan request tests. thanks Sergio Rubio
|
1013
|
+
added destroy_vlan request tests. thanks Sergio Rubio
|
1014
|
+
added create_network request. thanks Sergio Rubio
|
1015
|
+
added create_network tests. thanks Sergio Rubio
|
1016
|
+
added destroy_network request. thanks Sergio Rubio
|
1017
|
+
added destroy_network request tests. thanks Sergio Rubio
|
1018
|
+
added VLAN model and tests. thanks Sergio Rubio
|
1019
|
+
Added Vlans collection and tests. thanks Sergio Rubio
|
1020
|
+
added save and destroy operations to Network. thanks Sergio Rubio
|
1021
|
+
updated compute service to add new model, requests. thanks Sergio Rubio
|
1022
|
+
Added Network/VLANs creation example. thanks Sergio Rubio
|
1023
|
+
update changelog. thanks Sergio Rubio
|
1024
|
+
|
1025
|
+
|
1026
|
+
1.10.0 03/05/2013 2f30de2ab357a5bbdb505b94ada8aa637ba936f5
|
1027
|
+
==========================================================
|
1028
|
+
|
1029
|
+
Stats! { 'collaborators' => 45, 'downloads' => 1813647, 'forks' => 720, 'open_issues' => 117, 'watchers' => 2386 }
|
1030
|
+
|
1031
|
+
MVP! Rupak Ganguly
|
1032
|
+
|
1033
|
+
[Brightbox]
|
1034
|
+
Adds update firewall request. thanks Paul Thornthwaite
|
1035
|
+
Adds compatibility mode to template. thanks Paul Thornthwaite
|
1036
|
+
Updates to requests. thanks Paul Thornthwaite
|
1037
|
+
|
1038
|
+
[Glesys]
|
1039
|
+
Template list request does not take options. thanks Simon Gate
|
1040
|
+
Only make one request when fetching templates. thanks Simon Gate
|
1041
|
+
Fix template attributes, now they work. thanks Simon Gate
|
1042
|
+
Attribute :keepip removed from server model. thanks Simon Gate
|
1043
|
+
Clean up attributes on server model. thanks Simon Gate
|
1044
|
+
Add public_ip_method to server model. thanks Simon Gate
|
1045
|
+
Add setup method to copy fog ssh keys to server. thanks Simon Gate
|
1046
|
+
Wrap ssh method to use rootpassword if present. thanks Simon Gate
|
1047
|
+
|
1048
|
+
[HP]
|
1049
|
+
Add BlockStorage provider and add volumes and snapshots support. Add support for bootable volumes, persistent server, cross-tenant acls and temp urls. Add support for Windows instances. Merge the latest code from fog 1.9.0 release. thanks Rupak Ganguly
|
1050
|
+
|
1051
|
+
[HP|storage]
|
1052
|
+
Fix generate_object_temp_url to use signer that is backward compatible to 1.8.7. thanks Rupak Ganguly
|
1053
|
+
|
1054
|
+
[Rackspace|Compute]
|
1055
|
+
fixed issue with bootstrap method where server was ready, but it had not received an ipv4 address yet. Added check for ip address in server ready block as well as a timeout parameter. thanks Kyle Rames
|
1056
|
+
|
1057
|
+
[Rackspace|Storage]
|
1058
|
+
This tests consistently fails on either ruby 1.8.7 or ruby 1.9.3 because hash order is indeterminate. I believe the spirt of this test is to ensure that only one header value is generated and thus I have updated the test to reflect that. thanks Kyle Rames
|
1059
|
+
|
1060
|
+
[aws]
|
1061
|
+
Fixes typo in fetching credentials error. thanks Paul Thornthwaite
|
1062
|
+
Fixes security group template. thanks Paul Thornthwaite
|
1063
|
+
|
1064
|
+
[aws|compute]
|
1065
|
+
Fixes schema in image tests. thanks Paul Thornthwaite
|
1066
|
+
|
1067
|
+
[aws|dynamodb]
|
1068
|
+
fix port to match https default closes #1531. thanks geemus
|
1069
|
+
|
1070
|
+
[aws|rds]
|
1071
|
+
remove some superfluous reloads, hopefully help with travis test timing issues. thanks geemus
|
1072
|
+
|
1073
|
+
[aws|storage]
|
1074
|
+
Fixes Yard tags. thanks Paul Thornthwaite
|
1075
|
+
|
1076
|
+
[bluebox|blb]
|
1077
|
+
clean up, define types returned. thanks Josh Yotty
|
1078
|
+
some cleanup of model stubs. thanks Josh Yotty
|
1079
|
+
add model to application and server collections. thanks Josh Yotty
|
1080
|
+
require model. thanks Josh Yotty
|
1081
|
+
require model. thanks Josh Yotty
|
1082
|
+
fix more stub/copypaste inanity. thanks Josh Yotty
|
1083
|
+
lb_service collection implementation. thanks Josh Yotty
|
1084
|
+
service must be passed from caller. thanks Josh Yotty
|
1085
|
+
atone for additional sins in the lb service and backend models. thanks Josh Yotty
|
1086
|
+
add last set of index requests for lb_machines. thanks Josh Yotty
|
1087
|
+
add_machine. thanks Josh Yotty
|
1088
|
+
rename for consistency. thanks Josh Yotty
|
1089
|
+
typo, whitespace. thanks Josh Yotty
|
1090
|
+
lb_machine API coverage. thanks Josh Yotty
|
1091
|
+
missing end. thanks Josh Yotty
|
1092
|
+
testing stubs. thanks Josh Yotty
|
1093
|
+
rename to tests, plural. thanks Josh Yotty
|
1094
|
+
more request tests, missing comma. thanks Josh Yotty
|
1095
|
+
parsing is hard, let's go shopping. thanks Josh Yotty
|
1096
|
+
account for text/plain endpoint. thanks Josh Yotty
|
1097
|
+
update tests. thanks Josh Yotty
|
1098
|
+
|
1099
|
+
[core]
|
1100
|
+
Uses Logger deprecation for Compute.new. thanks Paul Thornthwaite
|
1101
|
+
Fix display_stdout to process multiple lines output. thanks Rupak Ganguly
|
1102
|
+
|
1103
|
+
[dreamhost|dns]
|
1104
|
+
remove connection deprecation notices. thanks Sergio Rubio
|
1105
|
+
Use the new fog-dream.com domain for testing. thanks Sergio Rubio
|
1106
|
+
remove silly debugging code. thanks Sergio Rubio
|
1107
|
+
do not delete the do-not-delete record when testing. thanks Sergio Rubio
|
1108
|
+
added test helpers. thanks Sergio Rubio
|
1109
|
+
Added README.md file documenting testing procedure. thanks Sergio Rubio
|
1110
|
+
Removed get_record request. thanks Sergio Rubio
|
1111
|
+
refactor dns requests tests. thanks Sergio Rubio
|
1112
|
+
added Record model tests, fix Record.save. thanks Sergio Rubio
|
1113
|
+
record tests fixes. thanks Sergio Rubio
|
1114
|
+
Emulate zone model and collection, added tests. thanks Sergio Rubio
|
1115
|
+
Do not add duplicated zones to the Zones collection. thanks Sergio Rubio
|
1116
|
+
Moved getting started guide to examples/dns. thanks Sergio Rubio
|
1117
|
+
Zone.records: list only records matching the current zone. thanks Sergio Rubio
|
1118
|
+
Updated testing documentation. thanks Sergio Rubio
|
1119
|
+
Updated Dreamhost/DNS getting started guide. thanks Sergio Rubio
|
1120
|
+
drop uuid gem requirements, not needed. thanks Sergio Rubio
|
1121
|
+
drop uuid gem dep from fog.gemspec. thanks Sergio Rubio
|
1122
|
+
Add dreamhost to the list of providers. thanks Sergio Rubio
|
1123
|
+
|
1124
|
+
[dreamhost|docs]
|
1125
|
+
Added getting started guide, initial release. thanks Sergio Rubio
|
1126
|
+
|
1127
|
+
[dremhost|dns]
|
1128
|
+
added DNS service tests. thanks Sergio Rubio
|
1129
|
+
|
1130
|
+
[ecloud]
|
1131
|
+
fixed object returns in mock. thanks Eugene Howe
|
1132
|
+
|
1133
|
+
[fog]
|
1134
|
+
Typo fixed in identity. thanks Anshul Khandelwal
|
1135
|
+
Cleanup: Use the service registry for requiring libs where possible. thanks Anshul Khandelwal
|
1136
|
+
|
1137
|
+
[glesys]
|
1138
|
+
Add description to server model. thanks Simon Gate
|
1139
|
+
Ability to pass in options to server details. thanks Simon Gate
|
1140
|
+
Consistent naming of attributes. thanks Simon Gate
|
1141
|
+
ip details should be ip details, not listfree. thanks Simon Gate
|
1142
|
+
Fix ip model name to match nameing convention. thanks Simon Gate
|
1143
|
+
Fix ip attributes, they didn't work. thanks Simon Gate
|
1144
|
+
Return nil if there isn't any public ip address. thanks Simon Gate
|
1145
|
+
Refactor the ip interface, did not work earlier. thanks Simon Gate
|
1146
|
+
add take method to ip model. thanks Simon Gate
|
1147
|
+
Fix error in ip tests. thanks Simon Gate
|
1148
|
+
Make compute test pass. thanks Simon Gate
|
1149
|
+
Attributes were overwritten when getting server details. thanks Simon Gate
|
1150
|
+
Fix bug when trying to attach a ip to a server. thanks Simon Gate
|
1151
|
+
Platform methods to templates. thanks Simon Gate
|
1152
|
+
Rename template model to match Fog convention. thanks Simon Gate
|
1153
|
+
Remove unused features from template model. thanks Simon Gate
|
1154
|
+
|
1155
|
+
[hp/openstack|compute]
|
1156
|
+
remove erroneous block argument to get_object; fixes issue #1588 for OpenStack and HP. thanks Kyle Rames
|
1157
|
+
|
1158
|
+
[libvirt|volume]
|
1159
|
+
Fix typo in image_suffix. thanks David Wittman
|
1160
|
+
|
1161
|
+
[misc]
|
1162
|
+
Enable ebs-optimized spot instance requests. thanks Adam Bozanich
|
1163
|
+
test spot instance request parser. thanks Adam Bozanich
|
1164
|
+
add internet_archive to fog providers, bin, storage. thanks Andrew Kuklewicz
|
1165
|
+
and internet_archive code, tests. thanks Andrew Kuklewicz
|
1166
|
+
fix testing mock. thanks Andrew Kuklewicz
|
1167
|
+
set defaults to be scheme http, port 80, as that is what internet_archive supports. thanks Andrew Kuklewicz
|
1168
|
+
Pass the management URI if no public endpoint. thanks BK Box
|
1169
|
+
Need to check for management variable as well. thanks BK Box
|
1170
|
+
Add support for pulling out virtualization type when parsing AWS Describe Instances results. thanks Brad Heller
|
1171
|
+
Ignore tags. thanks Brad Heller
|
1172
|
+
NextMarker => NextToken. Maybe that's what it used to be...?. thanks Brad Heller
|
1173
|
+
Fix Params related to network configuration. thanks Chirag Jog
|
1174
|
+
Support to Configure the VM network. thanks Chirag Jog
|
1175
|
+
Ability to track vApp level status of readiness. thanks Chirag Jog
|
1176
|
+
Fix Params related to network configuration. thanks Chirag Jog
|
1177
|
+
Support to Configure the VM network. thanks Chirag Jog
|
1178
|
+
Ability to track vApp level status of readiness. thanks Chirag Jog
|
1179
|
+
Remove extraneous print. thanks Chirag Jog
|
1180
|
+
Remove existing (unused) parser module and introduce a TerremarkParser - which extends the base parser with the ability to extract relevant attributes. thanks Chirag Jog
|
1181
|
+
Use the TerremarkParser to extract relevant attributes. thanks Chirag Jog
|
1182
|
+
Minor Fix to delete the internet service. thanks Chirag Jog
|
1183
|
+
OpenStack: update used limits tests. thanks Dan Prince
|
1184
|
+
OpenStack: update tenant_list tests. thanks Dan Prince
|
1185
|
+
OpenStack: get identity tests passing in real mode. thanks Dan Prince
|
1186
|
+
Drop 'extras' from tenant test validations. thanks Dan Prince
|
1187
|
+
Openstack: fix bin/openstack.rb errors. thanks Dan Prince
|
1188
|
+
OpenStack Compute: Fix server model metadata. thanks Dan Prince
|
1189
|
+
OpenStack: Add missing metadatum requests. thanks Dan Prince
|
1190
|
+
vsphere: Support multiple NIC backings. thanks Ewoud Kohl van Wijngaarden
|
1191
|
+
vsphere: Allow listing virtual port groups. thanks Ewoud Kohl van Wijngaarden
|
1192
|
+
Add a zones.find(substring) method to return only zones whose name matches that substring. thanks H. Wade Minter
|
1193
|
+
Add initial support for pulling in >100 zones via Zones.each. thanks H. Wade Minter
|
1194
|
+
Get rid of the extra load() calls. thanks H. Wade Minter
|
1195
|
+
copy & paste to get Blocks LB API working. thanks Josh Yotty
|
1196
|
+
register blb feature. thanks Josh Yotty
|
1197
|
+
Rudimentary CRUD for AWS Data Pipeline. thanks Keith Barrette
|
1198
|
+
Simple model tests. thanks Keith Barrette
|
1199
|
+
Simple request tests. thanks Keith Barrette
|
1200
|
+
Fix failing model tests. thanks Keith Barrette
|
1201
|
+
Mark data pipeline tests pending if mocked. thanks Keith Barrette
|
1202
|
+
Make compatible with Ruby 1.8.7. thanks Keith Barrette
|
1203
|
+
Finished initial draft of Cloud Server docs. thanks Kyle Rames
|
1204
|
+
updating Rackspace Cloud Server Documentation. thanks Kyle Rames
|
1205
|
+
moving documents to another branch. thanks Kyle Rames
|
1206
|
+
adding white space to force travis build. thanks Kyle Rames
|
1207
|
+
refined examples; moved samples into cloud_servers sub directory. thanks Kyle Rames
|
1208
|
+
moving examples; added readme. thanks Kyle Rames
|
1209
|
+
tweaking example readme file. thanks Kyle Rames
|
1210
|
+
tweaking examples document. thanks Kyle Rames
|
1211
|
+
merging with latest master. thanks Kyle Rames
|
1212
|
+
Adding Rackspace getting started and compute documents back in. thanks Kyle Rames
|
1213
|
+
apply edits to Rackspace compute documents. thanks Kyle Rames
|
1214
|
+
fixing links to anchors in Rackspace Compute doc. thanks Kyle Rames
|
1215
|
+
fixing links to anchors in Rackspace Compute doc one more time. thanks Kyle Rames
|
1216
|
+
fixing links to anchors in Rackspace Compute doc AGAIN. thanks Kyle Rames
|
1217
|
+
fixing merge conflicts. thanks Kyle Rames
|
1218
|
+
added 30 second timeout for SSH and SCP connect. thanks Kyle Rames
|
1219
|
+
moved cloud servers examples to lib/fog/rackspace/examples/compute_v2; renamed cloud_servers.md to compute_v2.md. thanks Kyle Rames
|
1220
|
+
rebased with master. thanks Kyle Rames
|
1221
|
+
merging with the latest file_metadata. thanks Kyle Rames
|
1222
|
+
rebasing cdn branch with latest master. thanks Kyle Rames
|
1223
|
+
rebasing with master. thanks Kyle Rames
|
1224
|
+
rebasing with master. thanks Kyle Rames
|
1225
|
+
rebasing with master. thanks Kyle Rames
|
1226
|
+
fixing broken tests. thanks Kyle Rames
|
1227
|
+
Revert "[rackspace] adding accept headers to block_storage, cdn, compute_v2, databases, identity, load_balancers, storage". thanks Kyle Rames
|
1228
|
+
Revert "Revert "[rackspace] adding accept headers to block_storage, cdn, compute_v2, databases, identity, load_balancers, storage"". thanks Kyle Rames
|
1229
|
+
Follow redirection from response even if response is a Hash. thanks Marc G Gauthier
|
1230
|
+
Set the User-Agent as Fog, to help differentiate from HP's CLI tools that have a vendored 'hpfog'. thanks Matt Ray
|
1231
|
+
Make sure no requests are ever sent to the wrong endpoint by default. thanks Matt Sanders
|
1232
|
+
Bump release to 0.0.7. thanks Matt Sanders
|
1233
|
+
Remove matt as contact. thanks Matt Sanders
|
1234
|
+
Bumped net-scp dependency to ~>1.1. thanks Michael D. Hall
|
1235
|
+
remove unneeded url param. thanks Michał Krzyżanowski
|
1236
|
+
Fix Mock#allocate_address method arity. thanks Mike Moore
|
1237
|
+
Fix Mock#get_snapshot_details argument. thanks Mike Moore
|
1238
|
+
Fix Mock#get_volume_details argument. thanks Mike Moore
|
1239
|
+
Fix Mock#list_servers method arity. thanks Mike Moore
|
1240
|
+
Fix Mock#remove_fixed_ip arguments. thanks Mike Moore
|
1241
|
+
Fix Mock#update_server arguments. thanks Mike Moore
|
1242
|
+
Removes docs since they are in wrong repo. thanks Paul Thornthwaite
|
1243
|
+
Adds new Code Climate badge to README. thanks Paul Thornthwaite
|
1244
|
+
Disables tests with race conditions affecting CI. thanks Paul Thornthwaite
|
1245
|
+
Update gitignore and add a rvmrc file. thanks Rupak Ganguly
|
1246
|
+
Add a new HP provider. thanks Rupak Ganguly
|
1247
|
+
Add a case for the new HP provider. thanks Rupak Ganguly
|
1248
|
+
Add a new HP provider. thanks Rupak Ganguly
|
1249
|
+
Add a storage service implementation to the HP provider. thanks Rupak Ganguly
|
1250
|
+
Add #get_containers, #get_container, #put_container and #delete_container methods to the storage service. thanks Rupak Ganguly
|
1251
|
+
Add #head_containers and #head_container methods. thanks Rupak Ganguly
|
1252
|
+
Enable #get, #put, #head and #delete object methods. thanks Rupak Ganguly
|
1253
|
+
Add implementation for #get_object method. thanks Rupak Ganguly
|
1254
|
+
Add implementation for #put_object method. thanks Rupak Ganguly
|
1255
|
+
Add implementation for #head_object method. thanks Rupak Ganguly
|
1256
|
+
Add implementation for #delete_object method. thanks Rupak Ganguly
|
1257
|
+
Enable models layer methods and return nil from cdn call. thanks Rupak Ganguly
|
1258
|
+
Add the directories model implementation. thanks Rupak Ganguly
|
1259
|
+
Add the directory model implementation. thanks Rupak Ganguly
|
1260
|
+
Add the files model implementation. thanks Rupak Ganguly
|
1261
|
+
Add the file model implementation. thanks Rupak Ganguly
|
1262
|
+
Add an implementation of copy method to copy files between containers. thanks Rupak Ganguly
|
1263
|
+
Require HP provider for the fog binary. thanks Rupak Ganguly
|
1264
|
+
Add a HP provider class for the fog binary. thanks Rupak Ganguly
|
1265
|
+
Enable compute service with HP provider. Refactor hp_auth_url into hp_host, hp_port and hp_auth_path to enable flexibility in specifying the host, port and auth path separately. thanks Rupak Ganguly
|
1266
|
+
Add the new hp_host, hp_port and hp_auth_path attributes and remove hp_auth_url. thanks Rupak Ganguly
|
1267
|
+
Add a new HP provider for compute service. Note the new hp_host, hp_port and hp_auth_path attributes. thanks Rupak Ganguly
|
1268
|
+
Add a case for the new HP provider for compute service. thanks Rupak Ganguly
|
1269
|
+
Add the #list_servers method. thanks Rupak Ganguly
|
1270
|
+
Enable #create_server, #list_servers and #list_servers_detail services for Nova. thanks Rupak Ganguly
|
1271
|
+
Add implementation for #list_servers_detail. thanks Rupak Ganguly
|
1272
|
+
Enable #list_images and #list_images_detail services. thanks Rupak Ganguly
|
1273
|
+
Add implementation for #list_images service. thanks Rupak Ganguly
|
1274
|
+
Add implementation for #list_images_detail service. thanks Rupak Ganguly
|
1275
|
+
Enable #list_flavors and #list_flavors_detail services for Nova. thanks Rupak Ganguly
|
1276
|
+
Add implementation for #list_flavors service. thanks Rupak Ganguly
|
1277
|
+
Add implementation for #list_flavors_detail service. thanks Rupak Ganguly
|
1278
|
+
Add implementation for #get_server_details service. thanks Rupak Ganguly
|
1279
|
+
Add implementation for #get_image_details service. thanks Rupak Ganguly
|
1280
|
+
Add implementation for #get_flavor_details service. thanks Rupak Ganguly
|
1281
|
+
Enable #get_server_details, #get_image_details and #get_flavor_details services for Nova. thanks Rupak Ganguly
|
1282
|
+
Add implementation for #create_server service. thanks Rupak Ganguly
|
1283
|
+
Enable #create_image and #delete_image services. thanks Rupak Ganguly
|
1284
|
+
Add implementation for #create_image service. thanks Rupak Ganguly
|
1285
|
+
Add implementation for #delete_image service. thanks Rupak Ganguly
|
1286
|
+
Enable the #create_server, #update_server and #delete_server services for Nova. thanks Rupak Ganguly
|
1287
|
+
Update code with differences from Rackspace API and OS, to make it work with the Nova instance. thanks Rupak Ganguly
|
1288
|
+
Add the implementation for #update_server services. thanks Rupak Ganguly
|
1289
|
+
Add the implementation for #delete_server services. thanks Rupak Ganguly
|
1290
|
+
Enable #list_addresses, #list_public_addresses and #list_private_addresses services for Nova. thanks Rupak Ganguly
|
1291
|
+
Add implementation for #list_addresses service. thanks Rupak Ganguly
|
1292
|
+
Add implementation for #list_public_addresses service. thanks Rupak Ganguly
|
1293
|
+
Add implementation for #list_private_addresses service. thanks Rupak Ganguly
|
1294
|
+
Enable #server_action, #reboot_server, #resize_server, #confirm_resized_server and #revert_resized services for Nova. thanks Rupak Ganguly
|
1295
|
+
Add implementation for #server_action, #reboot_server, #resize_server, #confirm_resized_server and #revert_resized services. thanks Rupak Ganguly
|
1296
|
+
Enable flavors and flavor models. thanks Rupak Ganguly
|
1297
|
+
Add implementation for flavors and flavor model layer. thanks Rupak Ganguly
|
1298
|
+
Enable images and image models. thanks Rupak Ganguly
|
1299
|
+
Add implementation for images and image model layers. thanks Rupak Ganguly
|
1300
|
+
Enable models for servers and server for Nova services. thanks Rupak Ganguly
|
1301
|
+
Add implementaion for servers model. thanks Rupak Ganguly
|
1302
|
+
Add implementaion for server model. thanks Rupak Ganguly
|
1303
|
+
Refactor connection parameters to accept a single endpoint and credentials. thanks Rupak Ganguly
|
1304
|
+
Refactor Nova connection parameters to accept a single endpoint and credentials. thanks Rupak Ganguly
|
1305
|
+
Add a options hash so that headers can be passed in to set acls. thanks Rupak Ganguly
|
1306
|
+
Fix public_url property to generate a url when cdn is not enabled. Also, create a new url method that returns the full url. thanks Rupak Ganguly
|
1307
|
+
Add a helper method to convert a acl string to a header name/value pair that Swift understands. thanks Rupak Ganguly
|
1308
|
+
Add an acl property that will allow setting of acls strings. Also, add fix the public property to now toggle the appropriate acl string. thanks Rupak Ganguly
|
1309
|
+
Remove Content-Length header incase Transfer-Encoding header is present. This was done to get the streaming for PUT working. thanks Rupak Ganguly
|
1310
|
+
Fix a JSON parse error for Nova service methods like reboot. The server returns plain text instead of JSON text and hence JSON.parse barfs. thanks Rupak Ganguly
|
1311
|
+
Revise fog gemspec to reflect hpfog name and tag it with v0.0.6. thanks Rupak Ganguly
|
1312
|
+
Add mocking support to Swift HP provider calls. thanks Rupak Ganguly
|
1313
|
+
Add a public? method to query a directory's state. thanks Rupak Ganguly
|
1314
|
+
Add header_to_acl helper method to convert an acl header into corresponding acl strings. thanks Rupak Ganguly
|
1315
|
+
Retrieve acl headers if present and set the acl string on a directory. thanks Rupak Ganguly
|
1316
|
+
Add a check to see if acl string is nil and if so set it to 'private'. thanks Rupak Ganguly
|
1317
|
+
Change serverRef to serverId. This was a change from Rackspace API but has been sync'd upon now. thanks Rupak Ganguly
|
1318
|
+
Change flavorRef to flavorId and imageRef to imageId. This was a change from Rackspace API but has been sync'd upon now. thanks Rupak Ganguly
|
1319
|
+
Fix DEVEX-634: Remove services that our out of scope. thanks Rupak Ganguly
|
1320
|
+
Add CHANGELOG for HP specific fog extensions. thanks Rupak Ganguly
|
1321
|
+
Add README with documentation for HP specific fog extensions. thanks Rupak Ganguly
|
1322
|
+
Bump version. thanks Rupak Ganguly
|
1323
|
+
Fix differences that were there in OS API. thanks Rupak Ganguly
|
1324
|
+
Add special char. support including '?' in container and object names. thanks Rupak Ganguly
|
1325
|
+
Add a helper method to expose some base info. for clients. thanks Rupak Ganguly
|
1326
|
+
Bump version and update changelog. thanks Rupak Ganguly
|
1327
|
+
Fix bug DEVEX-1296. Encode container and object names for public_url. thanks Rupak Ganguly
|
1328
|
+
Update changelog. thanks Rupak Ganguly
|
1329
|
+
Update date for release. thanks Rupak Ganguly
|
1330
|
+
Change flavorId to flavorRef and imageId to imageRef as the specs changed. Also, change expected status to be 202 instead of 200. thanks Rupak Ganguly
|
1331
|
+
Change expected status to be 204 instead of 202. thanks Rupak Ganguly
|
1332
|
+
Change expected status to be 204 instead of 200. thanks Rupak Ganguly
|
1333
|
+
Update date for fog merge with upstream milestone. thanks Rupak Ganguly
|
1334
|
+
Add connection options param to the HP provider for Storage and Compute services that can be used to customize various connection related timeouts and other options. thanks Rupak Ganguly
|
1335
|
+
Remove deprecated provider recognize clause. thanks Rupak Ganguly
|
1336
|
+
Enable HP CDN provider. thanks Rupak Ganguly
|
1337
|
+
Integrate HP CDN service with storage service. thanks Rupak Ganguly
|
1338
|
+
Fix small bug with returning public url in the case when cdn is used. thanks Rupak Ganguly
|
1339
|
+
Add initial implementation for cdn services i.e. GET, PUT, POST, HEAD and DELETE. thanks Rupak Ganguly
|
1340
|
+
Hardcode X-Storage-Url as service is returning wrong url. thanks Rupak Ganguly
|
1341
|
+
Assign hp_auth_uri to an instance var. so that CDN can use it. thanks Rupak Ganguly
|
1342
|
+
Enable delete_container on the CDN service. thanks Rupak Ganguly
|
1343
|
+
Add fix for special chars. in CDN-enabled container names. thanks Rupak Ganguly
|
1344
|
+
Catch new exception that is being thrown. thanks Rupak Ganguly
|
1345
|
+
Update code to call delete_container if CDN is enabled. thanks Rupak Ganguly
|
1346
|
+
Make headers camel cased in public_url and remove manipulation of public_url in save method. Use delete_container in CDN context instead of out_container. thanks Rupak Ganguly
|
1347
|
+
Remove CDN integration from within Storage service, till CDN service is more mature. thanks Rupak Ganguly
|
1348
|
+
Update image and images model, and create_image call now uses server_action. Behavior change in Diablo 4. thanks Rupak Ganguly
|
1349
|
+
Add new request layer method for rebuild_server and enable it for compute services. Behavior added in Diablo 4. thanks Rupak Ganguly
|
1350
|
+
Enable new compute services. thanks Rupak Ganguly
|
1351
|
+
Add name, accessIPv4 and accessIPv6 as properties. Change create_server signature to include the now required name param. Breaking change due to OS API. thanks Rupak Ganguly
|
1352
|
+
Add new attributes, update flavor and image attributes and add corresponding accessors for them. Add new methods for rebuild, resize, revert_resize, confirm_resize, and create_image. Update save method to use new attributes. Update create_server call to pass in name param. thanks Rupak Ganguly
|
1353
|
+
Remove resize related calls as they are not fully functional yet. thanks Rupak Ganguly
|
1354
|
+
Update changelog for 0.0.10 tagged version. thanks Rupak Ganguly
|
1355
|
+
Add a new option for CDN endpoint url and build the CDN mgmt url. thanks Rupak Ganguly
|
1356
|
+
Add a new cdn uri to the Storage service to enable a CDN service from within the Storage service. thanks Rupak Ganguly
|
1357
|
+
Update destroy and save methods to call appropriate CDN counterparts when CDN service is available and enabled. thanks Rupak Ganguly
|
1358
|
+
Add some new attributes. Fix image_id and flavor_id getters. thanks Rupak Ganguly
|
1359
|
+
Add request and model methods for change_password_server, and enable it for compute. thanks Rupak Ganguly
|
1360
|
+
Add list_key_pairs compute request layer method, and mocks for it as well. thanks Rupak Ganguly
|
1361
|
+
Add some mocking helper methods. thanks Rupak Ganguly
|
1362
|
+
Fix issue with list in mock mode. thanks Rupak Ganguly
|
1363
|
+
Enable create_key_pair service for compute. Add key_pairs array for mocking support. thanks Rupak Ganguly
|
1364
|
+
Add implementation for creating keypair and also provide mocking support. thanks Rupak Ganguly
|
1365
|
+
Remove a debug message. thanks Rupak Ganguly
|
1366
|
+
Fix param name. thanks Rupak Ganguly
|
1367
|
+
Enable delete_key_pair request method and implement it, along with mocking support. thanks Rupak Ganguly
|
1368
|
+
Enable and implement key pairs model layer for compute service. thanks Rupak Ganguly
|
1369
|
+
Add implementation for list_security_groups request layer method and enable it for compute services. Add mocking support as well. thanks Rupak Ganguly
|
1370
|
+
Fix a small typo in mocks. thanks Rupak Ganguly
|
1371
|
+
Enable and implemented create_security_groups method for request layer for compute services. thanks Rupak Ganguly
|
1372
|
+
Fix code to remove from last modified hash afetr delete in mock code. thanks Rupak Ganguly
|
1373
|
+
Use id instead of name to index the security groups hash in mock data structure. thanks Rupak Ganguly
|
1374
|
+
Enable and implemented delete_security_groups method in requets layer for compute services. thanks Rupak Ganguly
|
1375
|
+
Enable and implement create, get and delete security group methods for compute service. thanks Rupak Ganguly
|
1376
|
+
Enable and add the security groups model layer implementation for the compute services. thanks Rupak Ganguly
|
1377
|
+
Enable and add implementation for create security group rules for compute service. thanks Rupak Ganguly
|
1378
|
+
Fix bugs in mocking support. thanks Rupak Ganguly
|
1379
|
+
Small fix in mocks. thanks Rupak Ganguly
|
1380
|
+
Enable and implement delete security group rules for compute service. thanks Rupak Ganguly
|
1381
|
+
Add security group rule methods to security group model. thanks Rupak Ganguly
|
1382
|
+
Fix create_rule to return response instead of boolean. thanks Rupak Ganguly
|
1383
|
+
Add helper methods for mocking. thanks Rupak Ganguly
|
1384
|
+
Enable and implement allocate address with mocking support for compute services. thanks Rupak Ganguly
|
1385
|
+
Add options for keyname, security group and availability zone. thanks Rupak Ganguly
|
1386
|
+
Enable and add implementation for release address for request layer for the compute service. thanks Rupak Ganguly
|
1387
|
+
Fix documentation. thanks Rupak Ganguly
|
1388
|
+
Enable and implement get address for request layer along with mocking support for the compute service. thanks Rupak Ganguly
|
1389
|
+
Rename these to add a server prefix as they pertain to server addresses. thanks Rupak Ganguly
|
1390
|
+
Enable and implement list addresses for request layer for the compute service. thanks Rupak Ganguly
|
1391
|
+
Enable and implement the address model layer for the compute service. thanks Rupak Ganguly
|
1392
|
+
Fix the documentation. thanks Rupak Ganguly
|
1393
|
+
Enable and add associating and disassociating addresses to a server instance in the request layer for the compute service. thanks Rupak Ganguly
|
1394
|
+
Add new attributes and revise addresses hash structure for the mock. thanks Rupak Ganguly
|
1395
|
+
Fix doc, and status. thanks Rupak Ganguly
|
1396
|
+
Revise implementation for returning private and public ip addresses for a given server, along with mocking support. thanks Rupak Ganguly
|
1397
|
+
Revise mocking support to manage ip address collection in servers. thanks Rupak Ganguly
|
1398
|
+
Add server attribute to associate and disassociate a server to an address. thanks Rupak Ganguly
|
1399
|
+
Remove some attributes from object. thanks Rupak Ganguly
|
1400
|
+
Add support for passing in key pairs, security groups, availability zone and min/max count to the create server request layer method. thanks Rupak Ganguly
|
1401
|
+
Update the server model to support passing in keypairs and security groups. thanks Rupak Ganguly
|
1402
|
+
Fix some verbiage and update some links. thanks Rupak Ganguly
|
1403
|
+
Remove instance_id as an accessor. thanks Rupak Ganguly
|
1404
|
+
Add vcpus as an attribute. thanks Rupak Ganguly
|
1405
|
+
Add back some attributes. thanks Rupak Ganguly
|
1406
|
+
Update inline docs to add some params. thanks Rupak Ganguly
|
1407
|
+
Update changelog with changes for this version release. thanks Rupak Ganguly
|
1408
|
+
Bump version to 0.0.11. thanks Rupak Ganguly
|
1409
|
+
Update HP provider with the new CS authentication method and also refactor the legacy authentication method. Also, update HP Storage provider to use the CS authentication scheme. thanks Rupak Ganguly
|
1410
|
+
Retrofit HP Storage provider to work with both legacy and CS authentication schemes. thanks Rupak Ganguly
|
1411
|
+
Refactor code to get endpoints from service catalog for v1 and v2 auths. thanks Rupak Ganguly
|
1412
|
+
Update Storage provider to work with v1 and v2 auths. thanks Rupak Ganguly
|
1413
|
+
Update CDN provider to work with v1 and v2 auths. Also, patch code for incorrect endpoint via CS catalog. thanks Rupak Ganguly
|
1414
|
+
Update for cdn endpoint fix in place. thanks Rupak Ganguly
|
1415
|
+
Update inline docs as per real responses. thanks Rupak Ganguly
|
1416
|
+
Update CDN integration with Storage with respect to CS authentication. thanks Rupak Ganguly
|
1417
|
+
Update HP Compute provider to use CS authentication and retrofit code to use v1 auth as well. thanks Rupak Ganguly
|
1418
|
+
Add cdn_enabled?, cdn_enable= and cdn_public_url for directory model. Also, add cdn_public_url for file model. thanks Rupak Ganguly
|
1419
|
+
Add connection_options for AWS Compute provider. thanks Rupak Ganguly
|
1420
|
+
Refactor to remove service_type param from provider call. thanks Rupak Ganguly
|
1421
|
+
Update inline documentation. thanks Rupak Ganguly
|
1422
|
+
Escape the key in the call. thanks Rupak Ganguly
|
1423
|
+
Remove bits and cores from flavor. thanks Rupak Ganguly
|
1424
|
+
Add cores as an attribute to alias vcpus. thanks Rupak Ganguly
|
1425
|
+
Add some attributes that are implemented as methods. thanks Rupak Ganguly
|
1426
|
+
Add copyright message for HP extensions for fog. thanks Rupak Ganguly
|
1427
|
+
Bump version and update changelog. thanks Rupak Ganguly
|
1428
|
+
Update copyright notice. thanks Rupak Ganguly
|
1429
|
+
Update inline documentation. thanks Rupak Ganguly
|
1430
|
+
Fix for auth uri using Identity service. thanks Rupak Ganguly
|
1431
|
+
Add parameter :hp_avl_zone to access the az2 availability zone to the HP Compute provider. thanks Rupak Ganguly
|
1432
|
+
Bump version and update changelog. thanks Rupak Ganguly
|
1433
|
+
Bump version and update changelog. thanks Rupak Ganguly
|
1434
|
+
Bump version and update changelog. thanks Rupak Ganguly
|
1435
|
+
Add key_pair get/set methods for server model. thanks Rupak Ganguly
|
1436
|
+
Hack to fix public_ip_address. thanks Rupak Ganguly
|
1437
|
+
Fix for Fog::HP::CDN::NotFound exception. thanks Rupak Ganguly
|
1438
|
+
Update public_ip_address method to return first public ip address. thanks Rupak Ganguly
|
1439
|
+
Bump version and update changelog. thanks Rupak Ganguly
|
1440
|
+
Add an Errors module for handling HP provider specific exceptions. thanks Rupak Ganguly
|
1441
|
+
Refactor escape method for container and object names and move it to the HP provider from individual namespaces. thanks Rupak Ganguly
|
1442
|
+
Remove obsolete method. thanks Rupak Ganguly
|
1443
|
+
Remove bad service. thanks Rupak Ganguly
|
1444
|
+
Fix mock to return integer value for count. thanks Rupak Ganguly
|
1445
|
+
Raise the correct exception in the mock. thanks Rupak Ganguly
|
1446
|
+
Add HP provider and credentials to support testing with mocks. thanks Rupak Ganguly
|
1447
|
+
Fix mocks to match real implementation. thanks Rupak Ganguly
|
1448
|
+
Add object tests for storage. thanks Rupak Ganguly
|
1449
|
+
Add mocking support for copy operation using puut object. thanks Rupak Ganguly
|
1450
|
+
Add more tests for containers and objects. thanks Rupak Ganguly
|
1451
|
+
Fix an issue in copy mocking portion. thanks Rupak Ganguly
|
1452
|
+
Add test for copy objects. thanks Rupak Ganguly
|
1453
|
+
Add test for copying from one container to another. thanks Rupak Ganguly
|
1454
|
+
Fix format of flavors in mocks. thanks Rupak Ganguly
|
1455
|
+
Add tests for flavor. thanks Rupak Ganguly
|
1456
|
+
Add implementation for mocks. thanks Rupak Ganguly
|
1457
|
+
Add mocking support. thanks Rupak Ganguly
|
1458
|
+
Minor fix for mocks. thanks Rupak Ganguly
|
1459
|
+
Add tests for images. thanks Rupak Ganguly
|
1460
|
+
Update mocking support. thanks Rupak Ganguly
|
1461
|
+
Add tests for server requests. thanks Rupak Ganguly
|
1462
|
+
Update mocking support. thanks Rupak Ganguly
|
1463
|
+
Add tests for addresses and floating ips. thanks Rupak Ganguly
|
1464
|
+
Fix minor things in tests. thanks Rupak Ganguly
|
1465
|
+
Update mocking support. thanks Rupak Ganguly
|
1466
|
+
Add tests for keypairs. thanks Rupak Ganguly
|
1467
|
+
Update mocking support for security groups. thanks Rupak Ganguly
|
1468
|
+
Add tests for security groups. thanks Rupak Ganguly
|
1469
|
+
Update mocking support for security groups and security group rules. thanks Rupak Ganguly
|
1470
|
+
Add tests for security group rules. thanks Rupak Ganguly
|
1471
|
+
Fix mocks for create_key_pair. thanks Rupak Ganguly
|
1472
|
+
Fix mocks for list_key_pairs. thanks Rupak Ganguly
|
1473
|
+
Fix format for list_key_pairs. thanks Rupak Ganguly
|
1474
|
+
Add tests for address model and addresses collection. thanks Rupak Ganguly
|
1475
|
+
Add HP provider in the helper. thanks Rupak Ganguly
|
1476
|
+
Add tests for key_pair model and key_pairs collection. thanks Rupak Ganguly
|
1477
|
+
Add tests for security group model and collection. thanks Rupak Ganguly
|
1478
|
+
Add HP credential params. thanks Rupak Ganguly
|
1479
|
+
Add HP credential params for mocking support. thanks Rupak Ganguly
|
1480
|
+
Add mocking support for HP CDN provider. thanks Rupak Ganguly
|
1481
|
+
Add tests for CDN containers. thanks Rupak Ganguly
|
1482
|
+
Update mocks to simulate real results in containers. thanks Rupak Ganguly
|
1483
|
+
Update tests and mocks based on real pro data. thanks Rupak Ganguly
|
1484
|
+
Update tests and mock formats based on real pro data. thanks Rupak Ganguly
|
1485
|
+
Update mocks to simulate real behavior. thanks Rupak Ganguly
|
1486
|
+
Update key pair tests to work with real pro results. thanks Rupak Ganguly
|
1487
|
+
Update mocks to simulate real results. thanks Rupak Ganguly
|
1488
|
+
Update mocks and tests to simulate real results. thanks Rupak Ganguly
|
1489
|
+
Update mocks and tests to simulate real results. thanks Rupak Ganguly
|
1490
|
+
Update mocks and tests for flavor to simulate real results. thanks Rupak Ganguly
|
1491
|
+
Update mocks and tests to simulate real calls in pro. thanks Rupak Ganguly
|
1492
|
+
Update mocks for address in create_server and corresponding tests. thanks Rupak Ganguly
|
1493
|
+
Add hp_tenant_id as a required param for connection to HP providers. thanks Rupak Ganguly
|
1494
|
+
Update default scheme from http to https in the v1 auth. thanks Rupak Ganguly
|
1495
|
+
Add uuid and links atrributes to the list servers mock. thanks Rupak Ganguly
|
1496
|
+
Pass connection_options hash to the cdn connection in the storage provider. thanks Rupak Ganguly
|
1497
|
+
Fix a bug where cdn state was not preserved. thanks Rupak Ganguly
|
1498
|
+
Add helper method for cdn public ssl url and remove check for hp_cdn_ssl flag. thanks Rupak Ganguly
|
1499
|
+
Add helper method for cdn public url for file. thanks Rupak Ganguly
|
1500
|
+
Add helper method to get cdn ssl url for the files collection. thanks Rupak Ganguly
|
1501
|
+
Add and enable get_console_output request method and add server method console_output. Add test for get_console_output. thanks Rupak Ganguly
|
1502
|
+
Add avl zone as required param. Update endpoint retrieving logic from catalog to allow future avl zones. Fix minor error in tests. thanks Rupak Ganguly
|
1503
|
+
Add avl zone as required param. Update endpoint retrieving logic from catalog to allow future avl zones. Fix minor error in tests. thanks Rupak Ganguly
|
1504
|
+
Add availability zone required parameter for storage and cdn services. thanks Rupak Ganguly
|
1505
|
+
Add availability zone required parameter for storage and cdn services. thanks Rupak Ganguly
|
1506
|
+
Minor fix. thanks Rupak Ganguly
|
1507
|
+
Add security_groups attribute to the server model. thanks Rupak Ganguly
|
1508
|
+
Change hp_service_type to check for 'name' in the service catalog rather than 'type'. thanks Rupak Ganguly
|
1509
|
+
Update tests to reflect addition of security_groups attribute to server model. thanks Rupak Ganguly
|
1510
|
+
Update to not raise exception if service is not active or not present. thanks Rupak Ganguly
|
1511
|
+
Upgrade to excon version 0.13.0 to take advantage of the ssl_verify_peer and ssl_ca_file params via the connection_options hash. Also, remove the use of :hp_servicenet setting for ssl for storage and compute providers. thanks Rupak Ganguly
|
1512
|
+
Add request layer code for metadata. thanks Rupak Ganguly
|
1513
|
+
Update mocking support for metadata to match real responses. thanks Rupak Ganguly
|
1514
|
+
Add tests for metadata requests methods. thanks Rupak Ganguly
|
1515
|
+
Minor fix to mocks. thanks Rupak Ganguly
|
1516
|
+
Add metadata models support. Also, include metadata attribute in server and image models, to manage metadata. thanks Rupak Ganguly
|
1517
|
+
Add some more metadata requests tests. thanks Rupak Ganguly
|
1518
|
+
Minor fix and add a destroy method. thanks Rupak Ganguly
|
1519
|
+
Add metadata tests for servers and images. thanks Rupak Ganguly
|
1520
|
+
Fix code to metadata to the create image call. thanks Rupak Ganguly
|
1521
|
+
Add an attribute for network_name to make it easy to switch. thanks Rupak Ganguly
|
1522
|
+
Add a multi_json require so that json parsing is available. thanks Rupak Ganguly
|
1523
|
+
Bump version and update changelog. thanks Rupak Ganguly
|
1524
|
+
Update call to include response_block rather than passing a block, to conform to excon deprecation message. thanks Rupak Ganguly
|
1525
|
+
Add attributes to image model by extracting them from metadata. thanks Rupak Ganguly
|
1526
|
+
Add a BlockStorage service to the HP provider. thanks Rupak Ganguly
|
1527
|
+
Add list_volumes for block storage. thanks Rupak Ganguly
|
1528
|
+
Add get_volume_details request method for block storage. thanks Rupak Ganguly
|
1529
|
+
Add delete_volumes request method for block storage. thanks Rupak Ganguly
|
1530
|
+
Add create_volume request method for block storage service. thanks Rupak Ganguly
|
1531
|
+
Add ability to send in metadata to create_volume request method. thanks Rupak Ganguly
|
1532
|
+
Fix mock for tests. thanks Rupak Ganguly
|
1533
|
+
Fix typo in service folder. thanks Rupak Ganguly
|
1534
|
+
Add the block storage service to the binary. thanks Rupak Ganguly
|
1535
|
+
Fix mock for tests. thanks Rupak Ganguly
|
1536
|
+
Add shindo tests for requests methods for block storage. thanks Rupak Ganguly
|
1537
|
+
Add server attach block storage request methods. thanks Rupak Ganguly
|
1538
|
+
Add list_server_volumes request method for block storage service. thanks Rupak Ganguly
|
1539
|
+
Add attach_volume request method for block storage service. thanks Rupak Ganguly
|
1540
|
+
Add detach_volume request method for block storage service. thanks Rupak Ganguly
|
1541
|
+
Add shindo tests for server volume request methdos for block storage service. thanks Rupak Ganguly
|
1542
|
+
Add volume model and volumes collection for block storage service. thanks Rupak Ganguly
|
1543
|
+
Add shindo tests for volume models and collection. thanks Rupak Ganguly
|
1544
|
+
Fix mock to provide correct status after creation. thanks Rupak Ganguly
|
1545
|
+
Add a compute service attribute to peek into the compute service from within the block_storage service. thanks Rupak Ganguly
|
1546
|
+
Add attach and detach methods to the volume model using the compute service attribute. thanks Rupak Ganguly
|
1547
|
+
Add shindo tests for attach and detach. thanks Rupak Ganguly
|
1548
|
+
Fix mock. Fix tests for mocking and real modes. thanks Rupak Ganguly
|
1549
|
+
Add a head method for the directories collection. thanks Rupak Ganguly
|
1550
|
+
Upgrade to excon 0.14.0 to take advantage of the new StandardInstrumentor for debug use. thanks Rupak Ganguly
|
1551
|
+
Capture hp_auth_uri for passing down to compute provider. thanks Rupak Ganguly
|
1552
|
+
Add a list_snapshot request method, a corresponding mock, and add support for it in the block storage provider. thanks Rupak Ganguly
|
1553
|
+
Add a create_snapshot request method, a corresponding mock, and add support for it in the block storage provider. thanks Rupak Ganguly
|
1554
|
+
Minor fix to the inline help. thanks Rupak Ganguly
|
1555
|
+
Add a get_snapshot_details request method, a corresponding mock, and add support for it in the block storage provider. thanks Rupak Ganguly
|
1556
|
+
Add a delete_snapshot request method, a corresponding mock, and add support for it in the block storage provider. thanks Rupak Ganguly
|
1557
|
+
Add shindo tests for snapshots request layer methods. thanks Rupak Ganguly
|
1558
|
+
Minor update to inline help. thanks Rupak Ganguly
|
1559
|
+
Add snapshot model and collection to bloack storage provider. thanks Rupak Ganguly
|
1560
|
+
Add snapshot model/collection and corresponding tests. thanks Rupak Ganguly
|
1561
|
+
Add user_agent string to the core fog connection with corresponding tests. thanks Rupak Ganguly
|
1562
|
+
Add customised user_agent string for HP providers. Also, enable passing a custom user_agent string from calling clients. Add corresponding tests. thanks Rupak Ganguly
|
1563
|
+
Add volume_attachments to server model. thanks Rupak Ganguly
|
1564
|
+
Bump version to 0.0.16 and update changelog. thanks Rupak Ganguly
|
1565
|
+
Removed 'server' attribute from server model, and fixed 'all' method. thanks Rupak Ganguly
|
1566
|
+
Removed 'images' attribute from server model. thanks Rupak Ganguly
|
1567
|
+
Fix version info. that is used by user-agent. thanks Rupak Ganguly
|
1568
|
+
Add object temp url generation capability with mock support. thanks Rupak Ganguly
|
1569
|
+
Add object temp url functionality to file model layer. thanks Rupak Ganguly
|
1570
|
+
Add request layer tests for object_temp_url functionality. thanks Rupak Ganguly
|
1571
|
+
Add tenant_id to the mix to tighten security for the temp_url generation. thanks Rupak Ganguly
|
1572
|
+
Update mock for tenp_url. thanks Rupak Ganguly
|
1573
|
+
Call the request layer method instead of the generic util method. thanks Rupak Ganguly
|
1574
|
+
Add model tests for storage service. thanks Rupak Ganguly
|
1575
|
+
Add the request layer method to extract the windows password from the console log in case of a windows instance. thanks Rupak Ganguly
|
1576
|
+
Update the server model with a method to retrieve the windows password. thanks Rupak Ganguly
|
1577
|
+
Update the get_windows_password to return the encrypted password instead of the decrypted one. thanks Rupak Ganguly
|
1578
|
+
Add grant, revoke and list methods for cross tenant object acls implementation. thanks Rupak Ganguly
|
1579
|
+
Add request layer methods for shared container and shared object access. thanks Rupak Ganguly
|
1580
|
+
Bump version and update changelog. thanks Rupak Ganguly
|
1581
|
+
Fix response status for mocks. thanks Rupak Ganguly
|
1582
|
+
Add mocks for shared container and objects calls. thanks Rupak Ganguly
|
1583
|
+
Add a new exception class and handled exceptions in exception messages. thanks Rupak Ganguly
|
1584
|
+
Add request method for put_shared_object. Add model and collection for shared_directory and shared_file. thanks Rupak Ganguly
|
1585
|
+
Refactor common code into separate method. thanks Rupak Ganguly
|
1586
|
+
Fix mock for put_container to reflect new acl changes. thanks Rupak Ganguly
|
1587
|
+
Fix head call to return an empty body. thanks Rupak Ganguly
|
1588
|
+
Removed comment. thanks Rupak Ganguly
|
1589
|
+
Minor fix to allow options on save to pass in metadata. thanks Rupak Ganguly
|
1590
|
+
Add method all. thanks Rupak Ganguly
|
1591
|
+
Add methods for destroy and save. thanks Rupak Ganguly
|
1592
|
+
Add method for destroy. thanks Rupak Ganguly
|
1593
|
+
Add request layer method for put_shared_container. thanks Rupak Ganguly
|
1594
|
+
Minor bug fix when acls are nil. Also, added support for specifying list of users for grant and revoke as a comma-separated list. thanks Rupak Ganguly
|
1595
|
+
Allow the models to raise exception when there is insufficient access. thanks Rupak Ganguly
|
1596
|
+
Add delete_shared_object and corresponding model support. thanks Rupak Ganguly
|
1597
|
+
Update inline documentation. thanks Rupak Ganguly
|
1598
|
+
Update method to remove availability_zone as input data parameter. thanks Rupak Ganguly
|
1599
|
+
Allows creation of bootable volumes by passing in single part images. thanks Rupak Ganguly
|
1600
|
+
Allows creation of server instances that use a bootable volume rather than an image as its base. This gives us persistant instances. thanks Rupak Ganguly
|
1601
|
+
Fix failing shindo tests. thanks Rupak Ganguly
|
1602
|
+
Fix some null checks. thanks Rupak Ganguly
|
1603
|
+
Add request layer methods for listing and getting bootable volumes. thanks Rupak Ganguly
|
1604
|
+
Update volume model and collection to handle bootable volumes as well. thanks Rupak Ganguly
|
1605
|
+
Add code to accept config_drive and block_device_mapping parameters while creating a server instance. thanks Rupak Ganguly
|
1606
|
+
Move CHANGELOG.hp under hp folder. thanks Rupak Ganguly
|
1607
|
+
Bump the version and update the changelog. thanks Rupak Ganguly
|
1608
|
+
Fix public_key attribute to be visible in table. thanks Rupak Ganguly
|
1609
|
+
Add create_persistent_server request layer method to compute service. Add mocks and tests as well. thanks Rupak Ganguly
|
1610
|
+
Remove block_device_mapping param from create_server request method call. thanks Rupak Ganguly
|
1611
|
+
Add capability of creating regular and persistent servers via the server model. Make image_id an optional parameter for creating servers. thanks Rupak Ganguly
|
1612
|
+
Add bootable_volumes collection for managing only bootable volumes. thanks Rupak Ganguly
|
1613
|
+
Remove bootable volumes list and get methods and moved them under the bootable_volumes collection. thanks Rupak Ganguly
|
1614
|
+
Update changelog and release date. thanks Rupak Ganguly
|
1615
|
+
Updated the BlockStorage namespace to be Fog::HP::BlockStorage. thanks Rupak Ganguly
|
1616
|
+
Updated the tests to reflect the BlockStorage namespace changes. thanks Rupak Ganguly
|
1617
|
+
Fix case where invalid CDN endpoint was causing issues. thanks Rupak Ganguly
|
1618
|
+
Update to new code and tests based on changes from upstream fog. thanks Rupak Ganguly
|
1619
|
+
Deprecate hp_account_id to use hp_access_key instead. thanks Rupak Ganguly
|
1620
|
+
Fix fog.gemspec. thanks Rupak Ganguly
|
1621
|
+
* [dreamhost|dns] initial import. thanks Sergio Rubio
|
1622
|
+
Switch gem source to https://rubygems.org. thanks Sergio Rubio
|
1623
|
+
A whitespace fix :v:. thanks Simon Gate
|
1624
|
+
add install.txt. thanks Terry Howe
|
1625
|
+
remove file. thanks Terry Howe
|
1626
|
+
Update put_object to accept blocks, and remove deprecation message. thanks Terry Howe
|
1627
|
+
Fix warning. thanks William Lawson
|
1628
|
+
version. thanks William Lawson
|
1629
|
+
reverse version change. thanks William Lawson
|
1630
|
+
joyent resize smartmachine incorrect class type. thanks angus
|
1631
|
+
Typo in instantiate_vapp_template.rb. thanks dJason
|
1632
|
+
fix for user agent tests excon usage. thanks geemus
|
1633
|
+
fixed bug, quantum api need no underscore valiable name. (ex floatingips. thanks kanetann
|
1634
|
+
Update lib/fog/ecloud/requests/compute/virtual_machine_create_from_template.rb. thanks tipt0e
|
1635
|
+
Fog::Vsphere::Compute - misspelled method 'get_vm_by_ref' in vm_reconfig_hardware. thanks tipt0e
|
1636
|
+
|
1637
|
+
[openstack]
|
1638
|
+
Register the image service. thanks Anshul Khandelwal
|
1639
|
+
string interpolation problem image create fixes #1493. thanks Ruben Koster
|
1640
|
+
|
1641
|
+
[openstack|compute]
|
1642
|
+
fix get_metadata call. thanks Ben Bleything
|
1643
|
+
rename meta_hash to to_hash; make it public. thanks Ben Bleything
|
1644
|
+
adds methods to retireve floating & fixed ip addresses. thanks Ohad Levy
|
1645
|
+
ensures we clear ipaddresses cache upload reload. thanks Ohad Levy
|
1646
|
+
configurable :openstack_endpoint_type. thanks Sergio Rubio
|
1647
|
+
images collection should not return nil for #all. thanks Sergio Rubio
|
1648
|
+
|
1649
|
+
[openstack|identity]
|
1650
|
+
Marks test as pending. thanks Paul Thornthwaite
|
1651
|
+
Configurable :openstack_endpoint_type. thanks Sergio Rubio
|
1652
|
+
user model tests fixes. thanks Sergio Rubio
|
1653
|
+
cleanup the test role when no longer in use. thanks Sergio Rubio
|
1654
|
+
|
1655
|
+
[openstack|network]
|
1656
|
+
Added missing Network model attributes. thanks Sergio Rubio
|
1657
|
+
|
1658
|
+
[openstack|storage]
|
1659
|
+
intial import. thanks Sergio Rubio
|
1660
|
+
added OpenStack Storage to lib/fog/storage.rb. thanks Sergio Rubio
|
1661
|
+
Added OpenStack.escape utility method. thanks Sergio Rubio
|
1662
|
+
Added storage service to lib/fog/bin/openstack.rb. thanks Sergio Rubio
|
1663
|
+
Added OpenStack Storage service tests. thanks Sergio Rubio
|
1664
|
+
configurable service_type and service_name. thanks Sergio Rubio
|
1665
|
+
added openstack_tenant and openstack_region params. thanks Sergio Rubio
|
1666
|
+
replace 'object_store' service type with 'object-store'. thanks Sergio Rubio
|
1667
|
+
|
1668
|
+
[openstack|volume]
|
1669
|
+
Configurable :openstack_endpoint_type. thanks Sergio Rubio
|
1670
|
+
remove extra comma. thanks Sergio Rubio
|
1671
|
+
Added missing service declaration. thanks Sergio Rubio
|
1672
|
+
|
1673
|
+
[ovirt]
|
1674
|
+
Add support for reading the oVirt api version. thanks Amos Benari
|
1675
|
+
Added support for oVirt volume status. thanks Amos Benari
|
1676
|
+
Updated the blocking start logic to fit oVirt 3.1 api. thanks Amos Benari
|
1677
|
+
|
1678
|
+
[rackspace]
|
1679
|
+
adding accept headers to block_storage, cdn, compute_v2, databases, identity, load_balancers, storage. thanks Kyle Rames
|
1680
|
+
fixing merge. thanks Kyle Rames
|
1681
|
+
|
1682
|
+
[rackspace|cdn]
|
1683
|
+
implemented purge object from CDN; added CDN tests and mocks. thanks Kyle Rames
|
1684
|
+
more refactoring. thanks Kyle Rames
|
1685
|
+
more refactoring of cdn. thanks Kyle Rames
|
1686
|
+
|
1687
|
+
[rackspace|compute]
|
1688
|
+
Fix typo in attachments model. thanks Brad Gignac
|
1689
|
+
Handle malformed API responses. thanks Brad Gignac
|
1690
|
+
Update server to use default networks. thanks Brad Gignac
|
1691
|
+
Allow custom network on server. thanks Brad Gignac
|
1692
|
+
this should address a metadata issue discovered in chef http://tickets.opscode.com/browse/KNIFE-217. thanks Kyle Rames
|
1693
|
+
this should address a metadata issue discovered in chef http://tickets.opscode.com/browse/KNIFE-217(cherry picked from commit a859b9ecf550469ac43ea35402785dad59d7c7f2). thanks Kyle Rames
|
1694
|
+
added create server example. thanks Kyle Rames
|
1695
|
+
Adding more cloud server examples. thanks Kyle Rames
|
1696
|
+
tweaking examples. thanks Kyle Rames
|
1697
|
+
fixing typo in metadata class. thanks Kyle Rames
|
1698
|
+
fixing connection deprecation warnings. thanks Kyle Rames
|
1699
|
+
Adding API documentation. thanks Kyle Rames
|
1700
|
+
updated to check for public_ip_address instead of ip4_address as setup uses the public_ip_address. thanks Kyle Rames
|
1701
|
+
removed timeout from bootstrap method signature and hard coded it in method per geemus. thanks Kyle Rames
|
1702
|
+
added test for put_container with an optional parameter. thanks Kyle Rames
|
1703
|
+
updated mocking framework to support any flavor or image. thanks Kyle Rames
|
1704
|
+
remove erroneous block argument to get_object fixes #1588. thanks geemus
|
1705
|
+
|
1706
|
+
[rackspace|compute_v2]
|
1707
|
+
fixing merge issues; added metadata test for servers. thanks Kyle Rames
|
1708
|
+
Added note indicating that RackConnect users should use Server personalization rather than the bootstrap method. thanks Kyle Rames
|
1709
|
+
fixing bootstrap example. thanks Kyle Rames
|
1710
|
+
compute_v2 tests were failing because the flavor used in the tests was too small for the image selected. I updating tests to use the an Ubuntu image in hopes of making the tests less brittle. thanks Kyle Rames
|
1711
|
+
|
1712
|
+
[rackspace|database]
|
1713
|
+
remove extraneous colon. thanks Kyle Rames
|
1714
|
+
|
1715
|
+
[rackspace|databases]
|
1716
|
+
removed trailing stash from hard coded endpoints; added accept header. thanks Kyle Rames
|
1717
|
+
|
1718
|
+
[rackspace|dns]
|
1719
|
+
added tests for zones.find. thanks Brian Hartsock
|
1720
|
+
fix issue in zones.find where results with no links throw exception. thanks Brian Hartsock
|
1721
|
+
|
1722
|
+
[rackspace|identity]
|
1723
|
+
Correctly populate model from request data. thanks Brad Gignac
|
1724
|
+
Remove unused get_credentials request. thanks Brad Gignac
|
1725
|
+
|
1726
|
+
[rackspace|lb]
|
1727
|
+
fixed issue where double paths cause API errors. thanks Brian Hartsock
|
1728
|
+
removed puts. thanks Brian Hartsock
|
1729
|
+
|
1730
|
+
[rackspace|networks]
|
1731
|
+
Add Cloud Networks requests. thanks Brad Gignac
|
1732
|
+
Add networks model and collection. thanks Brad Gignac
|
1733
|
+
Add mock responses. thanks Brad Gignac
|
1734
|
+
|
1735
|
+
[rackspace|storage]
|
1736
|
+
refactored storage/cdn. thanks Kyle Rames
|
1737
|
+
fixed issue in ruby 1.8.7 where metadata was not being deleted when set to nil. thanks Kyle Rames
|
1738
|
+
tweaked directory implementation; added directory model tests. thanks Kyle Rames
|
1739
|
+
updating to return true after saving directory. thanks Kyle Rames
|
1740
|
+
added support for container metadata; added directory tests. thanks Kyle Rames
|
1741
|
+
Cloud Files will not process a header without a value so I added a stand in value for nil. thanks Kyle Rames
|
1742
|
+
added delete method to metadata. thanks Kyle Rames
|
1743
|
+
removing test of dubious distinction per geemus. thanks Kyle Rames
|
1744
|
+
updated file class to use the same metadata implementation as the directory class. thanks Kyle Rames
|
1745
|
+
added test to check for metadata on object creation; tweaked metadata on object creation test. thanks Kyle Rames
|
1746
|
+
updated metadata class to decode incoming header values using FOG::JSON. thanks Kyle Rames
|
1747
|
+
fixing Metadata#respond_to? method. thanks Kyle Rames
|
1748
|
+
updated directory to lazy load metadata when necessary. thanks Kyle Rames
|
1749
|
+
added tests for metadata class; fixed bug with method missing. thanks Kyle Rames
|
1750
|
+
updated file class to use the same metadata implementation as the directory class. thanks Kyle Rames
|
1751
|
+
added test to check for metadata on object creation; tweaked metadata on object creation test. thanks Kyle Rames
|
1752
|
+
updated metadata class to decode incoming header values using FOG::JSON. thanks Kyle Rames
|
1753
|
+
rebased with dir_metadata branch - https://github.com/fog/fog/pull/1563. thanks Kyle Rames
|
1754
|
+
added ios_url and streaming_url methods to directory and file; added more tests. thanks Kyle Rames
|
1755
|
+
added account model. thanks Kyle Rames
|
1756
|
+
removing type conversion for metadata per https://github.com/fog/fog/pull/1587. thanks Kyle Rames
|
1757
|
+
added the ability to determine meta prefixes from Class objects as well as Fog object. This addresses issue in Files#get method. thanks Kyle Rames
|
1758
|
+
|
1759
|
+
[tests]
|
1760
|
+
Updates format tests. thanks Paul Thornthwaite
|
1761
|
+
Changes to format testing helper. thanks Paul Thornthwaite
|
1762
|
+
Extracts schema validator to class. thanks Paul Thornthwaite
|
1763
|
+
Fixes schema validator for arrays. thanks Paul Thornthwaite
|
1764
|
+
|
1765
|
+
[virtualbox]
|
1766
|
+
Removed VirtualBox since it has many problems and the gem it's based on is no longer maintained. thanks Kevin Menard
|
1767
|
+
|
1768
|
+
|
1769
|
+
1.9.0 01/19/2013 0283cac581edc36fe58681c51d6fa2a5d2db3f41
|
1770
|
+
=========================================================
|
1771
|
+
|
1772
|
+
Stats! { 'collaborators' => 41, 'downloads' => 1567112, 'forks' => 673, 'open_issues' => 99, 'watchers' => 2342 }
|
1773
|
+
|
1774
|
+
MVP! Paul Thornthwaite
|
1775
|
+
|
1776
|
+
[AWS]
|
1777
|
+
CopySnapshot. supports cross-region snapshot copying. thanks Shai Rosenfeld & Jacob Burkhart
|
1778
|
+
|
1779
|
+
[AWS|DynamoDB]
|
1780
|
+
Default to HTTPS. thanks Blake Gentry
|
1781
|
+
|
1782
|
+
[AWS|cloud_watch]
|
1783
|
+
Add Metrics#each, which follows NextToken. thanks Michael Hale
|
1784
|
+
|
1785
|
+
[Brightbox]
|
1786
|
+
Add ServerGroup attribute in CloudIP model. thanks Hemant Kumar
|
1787
|
+
Guards against unimplemented mock. thanks Paul Thornthwaite
|
1788
|
+
Adds firewall request tests. thanks Paul Thornthwaite
|
1789
|
+
Deprecates incorrect form of #request. thanks Paul Thornthwaite
|
1790
|
+
Replaces usage of deprecated #request. thanks Paul Thornthwaite
|
1791
|
+
Adds #dns_name to server. thanks Paul Thornthwaite
|
1792
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1793
|
+
|
1794
|
+
[Rackspace]
|
1795
|
+
updated to select London athorization endpoint if the London Region endpoint is selected. thanks Kyle Rames
|
1796
|
+
|
1797
|
+
[Rackspace|Compute]
|
1798
|
+
updated create_image to return an image object instead of the object id. thanks Kyle Rames
|
1799
|
+
updated ready method on Image to raise an exception if an error state occurs. This is similar to the behavior of Server. thanks Kyle Rames
|
1800
|
+
|
1801
|
+
[atmos]
|
1802
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1803
|
+
|
1804
|
+
[aws]
|
1805
|
+
Replaces #new_record? with #persisted?. thanks Paul Thornthwaite
|
1806
|
+
|
1807
|
+
[aws|auto_scaling]
|
1808
|
+
Implement resume_processes mock. thanks Michael Hale
|
1809
|
+
Implement suspend_processes mock. thanks Michael Hale
|
1810
|
+
remove pending if mocking? for model_tests. thanks Michael Hale
|
1811
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1812
|
+
|
1813
|
+
[aws|beanstalk]
|
1814
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1815
|
+
|
1816
|
+
[aws|cdn]
|
1817
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1818
|
+
|
1819
|
+
[aws|cloud_watch]
|
1820
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1821
|
+
|
1822
|
+
[aws|compute]
|
1823
|
+
Updates 'connection' references. thanks Paul Thornthwaite
|
1824
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1825
|
+
|
1826
|
+
[aws|dns]
|
1827
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1828
|
+
|
1829
|
+
[aws|elasticache]
|
1830
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1831
|
+
|
1832
|
+
[aws|elb]
|
1833
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1834
|
+
|
1835
|
+
[aws|glacier]
|
1836
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1837
|
+
|
1838
|
+
[aws|iam]
|
1839
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1840
|
+
|
1841
|
+
[aws|rds]
|
1842
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1843
|
+
|
1844
|
+
[aws|storage]
|
1845
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1846
|
+
|
1847
|
+
[bluebox]
|
1848
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1849
|
+
|
1850
|
+
[clodo]
|
1851
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1852
|
+
|
1853
|
+
[cloudstack]
|
1854
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1855
|
+
|
1856
|
+
[core]
|
1857
|
+
Adds #persisted? to Fog models. thanks Paul Thornthwaite
|
1858
|
+
Breaks down rake tasks. thanks Paul Thornthwaite
|
1859
|
+
Deprecates 'connection' accessor. thanks Paul Thornthwaite
|
1860
|
+
Fix service instance variable being included when doing model.to_json. thanks Philip Mark M. Deazeta
|
1861
|
+
|
1862
|
+
[dns_made_easy|dns]
|
1863
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1864
|
+
|
1865
|
+
[dnsimple]
|
1866
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1867
|
+
|
1868
|
+
[doc]
|
1869
|
+
converting old doc style to YARD doc style. thanks Weston Platter
|
1870
|
+
is there a better way to format nested responses?. thanks Weston Platter
|
1871
|
+
|
1872
|
+
[docs]
|
1873
|
+
changed rdoc formatting to yard. thanks Danny Garcia
|
1874
|
+
Creates release policy document to discuss. thanks Paul Thornthwaite
|
1875
|
+
|
1876
|
+
[docs::aws::storage]
|
1877
|
+
added [] to make it pretty. thanks Weston Platter
|
1878
|
+
yard doc syntax fix. thanks Weston Platter
|
1879
|
+
reformatted copy_object. thanks Weston Platter
|
1880
|
+
reformatted delete requests. thanks Weston Platter
|
1881
|
+
standardized return format for key with values, # @return variable [data_type]: for values, # * variable [data_type] - description of value. thanks Weston Platter
|
1882
|
+
WIP on get requests. thanks Weston Platter
|
1883
|
+
finished formatting get requests. thanks Weston Platter
|
1884
|
+
requests convert Rdoc to YARD format. thanks Weston Platter
|
1885
|
+
requests minor tweaks to keep docs all the same. thanks Weston Platter
|
1886
|
+
requests changed Rdoc to YARD. thanks Weston Platter
|
1887
|
+
requests finished changing RDoc to Yard. thanks Weston Platter
|
1888
|
+
remove 1 space char for formatting. thanks Weston Platter
|
1889
|
+
|
1890
|
+
[docs::was::storage]
|
1891
|
+
i was wrong. this is an int describing "number of seconds before expiration" to confirm, go to -- http://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectPUT.html search for -- expires. thanks Weston Platter
|
1892
|
+
formatting. thanks Weston Platter
|
1893
|
+
added more description. thanks Weston Platter
|
1894
|
+
added docs for other public methods. thanks Weston Platter
|
1895
|
+
added URL for list of S3 docs about Restful HTTP API. thanks Weston Platter
|
1896
|
+
this consistently spaces all methods 2 lines from each other. thanks Weston Platter
|
1897
|
+
|
1898
|
+
[dynect|dns]
|
1899
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1900
|
+
|
1901
|
+
[ecloud]
|
1902
|
+
improvements and some mocking. thanks Eugene Howe & Josh Lane
|
1903
|
+
Replaces #new_record? with #persisted?. thanks Paul Thornthwaite
|
1904
|
+
Fixes tests by duplicating test setup. thanks Paul Thornthwaite
|
1905
|
+
|
1906
|
+
[ecloud|compute]
|
1907
|
+
Fixes missing value. thanks Paul Thornthwaite
|
1908
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1909
|
+
Fixes tagging of some tests. thanks Paul Thornthwaite
|
1910
|
+
Fixes ecloud server tests. thanks Paul Thornthwaite
|
1911
|
+
|
1912
|
+
[glesys|compute]
|
1913
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1914
|
+
|
1915
|
+
[go_grid|compute]
|
1916
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1917
|
+
|
1918
|
+
[google|storage]
|
1919
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1920
|
+
|
1921
|
+
[hp]
|
1922
|
+
Replaces #new_record? with #persisted?. thanks Paul Thornthwaite
|
1923
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1924
|
+
|
1925
|
+
[ibm]
|
1926
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1927
|
+
|
1928
|
+
[joyent|compute]
|
1929
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1930
|
+
|
1931
|
+
[libvirt|compute]
|
1932
|
+
Updates 'connection' references. thanks Paul Thornthwaite
|
1933
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1934
|
+
|
1935
|
+
[linode]
|
1936
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1937
|
+
|
1938
|
+
[local|storage]
|
1939
|
+
Updates reference to service. thanks Paul Thornthwaite
|
1940
|
+
|
1941
|
+
[misc]
|
1942
|
+
use old multijson methods. thanks Carl Allen
|
1943
|
+
always use old encode/decode from multijson (it only has warnings in 1.3.0-1.3.2). thanks Carl Allen
|
1944
|
+
Rackspace, openstack, hp API error messages are not set correctly in exceptions. thanks Carlos Sanchez
|
1945
|
+
Add vsphere public_ip_address correctly. thanks Carlos Sanchez
|
1946
|
+
add failing test and update Mock list_users to filter based on tenant_id. thanks Coby Randquist
|
1947
|
+
update tenant.rb to pass the test, by passing correct parameter. thanks Coby Randquist
|
1948
|
+
OpenStack server test updates for real mode. thanks Dan Prince
|
1949
|
+
OpenStack: Drop unused server_format hash. thanks Dan Prince
|
1950
|
+
OpenStack custom exception cleanup. thanks Dan Prince
|
1951
|
+
OpenStack auth updates to select by service name. thanks Dan Prince
|
1952
|
+
skype sucks. thanks Danny Garcia
|
1953
|
+
change copy_object docs to YARD. thanks Danny Garcia
|
1954
|
+
YARD docs for head_object.rb. thanks Danny Garcia
|
1955
|
+
how do I updates my clone with updates from source?. thanks Danny Garcia
|
1956
|
+
change docs on initiate_multipart_upload.rb. thanks Danny Garcia
|
1957
|
+
change copy_object docs to YARD. thanks Danny Garcia
|
1958
|
+
YARD docs for head_object.rb. thanks Danny Garcia
|
1959
|
+
how do I updates my clone with updates from source?. thanks Danny Garcia
|
1960
|
+
change docs on initiate_multipart_upload.rb. thanks Danny Garcia
|
1961
|
+
resolve merge conflicts according to the code on fog master. thanks Danny Garcia
|
1962
|
+
change doc on copy_object.rb. thanks Danny Garcia
|
1963
|
+
change docs. thanks Danny Garcia
|
1964
|
+
Add ability to specify Tags to AWS cfn-create-stack call. thanks David Chen
|
1965
|
+
Remove tabs... thanks David Chen
|
1966
|
+
Added test for Fog::Openstack::authenticate_v2. thanks Eric Hodel
|
1967
|
+
Raise a NotFound exception for missing services. thanks Eric Hodel
|
1968
|
+
Add OpenStack EC2 credentials requests. thanks Eric Hodel
|
1969
|
+
Added OpenStack EC2 credential management models. thanks Eric Hodel
|
1970
|
+
Added documentation for OS-EC2 requests. thanks Eric Hodel
|
1971
|
+
Ruby 1.8.7 does not allow trailing commas in method arguments. thanks Eric Hodel
|
1972
|
+
Ruby 1.8.7 does not allow trailing commas in method arguments (for remaining files). thanks Eric Hodel
|
1973
|
+
OpenStack create_server mocks now match reality. thanks Eric Hodel
|
1974
|
+
Added mock for Fog::Identity#get_user_by_name. thanks Eric Hodel
|
1975
|
+
Removed extra whitespace from previous commit. thanks Eric Hodel
|
1976
|
+
Store the user_id in the server mock data. thanks Eric Hodel
|
1977
|
+
Added SIGINT handler to the fog console. thanks Eric Hodel
|
1978
|
+
OpenStack servers can now retrieve security groups. thanks Eric Hodel
|
1979
|
+
adds support for bucket transitioning/fixes bucket lifecycle management. thanks Eric Stonfer
|
1980
|
+
fixed bug where Fog::Storage::Rackspace::File raised Fog::Storage::Rackspace::NotFound if file was created with passed etag attribute. Changed to check existence based on last_modified instead of etag. thanks Evan Smith
|
1981
|
+
Added multi-region support for OpenStack Image service. thanks Joe Topjian
|
1982
|
+
use CGI.escapeHTML instead of CGI.escape. thanks John Parker
|
1983
|
+
Correct the Blue Box create_block method to check for ssh_public_key, not public_key. thanks Josh Kalderimis
|
1984
|
+
Correct the docs for the ssh_public_key option. thanks Josh Kalderimis
|
1985
|
+
added create_image and delete_image to Compute::RackspaceV2 Fixes #1351. thanks Kyle Rames
|
1986
|
+
added a mock for Compute::RackspaceV2 delete_image; Compute::RackspaceV2 has not implemented mocking support however. thanks Kyle Rames
|
1987
|
+
Updated Fog.wait_for to throw a timeout exception instead of returning false #1368. thanks Kyle Rames
|
1988
|
+
updating wait_for timeout message per conversation with @geemus. thanks Kyle Rames
|
1989
|
+
Modified Fog::Compute::RackspaceV2 destroy image test from test setup. thanks Kyle Rames
|
1990
|
+
Updated Fog::Rackspace::Errors::Service error to include the HTTP response code to aid in debugging. thanks Kyle Rames
|
1991
|
+
Fixing html escape typo in the Rackspace section of the Fog storage instructions. thanks Kyle Rames
|
1992
|
+
added create_snapshot method to Fog::Rackspace::BlockStorage::Volume. thanks Kyle Rames
|
1993
|
+
updated save method in Fog::Rackspace::BlockStorage::Volume and Fog::Rackspace::BlockStorage::Snapshot to skip creating cloud reources if identity was already set Fixes #1402. thanks Kyle Rames
|
1994
|
+
Updated default Rackspace Compute provider to return a Fog::Compute::RackspaceV2 instance. In order to access legacy Cloud Servers, a :version => :v1 parameter will need be passed like so Fog::Compute.new({ :provider => 'Rackspace', :rackspace_username => USER, :rackspace_api_key => API_KEY, :version => :v1 }). thanks Kyle Rames
|
1995
|
+
Updated the save method in Fog::Rackspace::BlockStorage::Volume and Fog::Rackspace::BlockStorage::Snapshot to throw an exception if the identity attribute is set per geemus; rebased code to latest master. thanks Kyle Rames
|
1996
|
+
updating Compute[:rackspace] to use v1 provider. thanks Kyle Rames
|
1997
|
+
Updated compute model tests to take a provider parameter; Updated tests to run tests for Rackspace Compute V1. I will add V2 when the mocks are complete. thanks Kyle Rames
|
1998
|
+
reverted back to version 1 of the Rackspace compute interface along with a deprecation warning. thanks Kyle Rames
|
1999
|
+
implemented list_addresses for Fog::Compute::RackspaceV2. thanks Kyle Rames
|
2000
|
+
implemented list_addresses_by_network for Fog::Compute::RackspaceV2. thanks Kyle Rames
|
2001
|
+
added server metadata operations for Fog::Compute::RackspaceV2. thanks Kyle Rames
|
2002
|
+
refactored Fog::Compute::RackspaceV2 metadata to take collection as a parameter rather than using it as part of the method name. thanks Kyle Rames
|
2003
|
+
fixing broken metadata tests. thanks Kyle Rames
|
2004
|
+
changed metadata implementation for Fog::Compute::RackspaceV2::Server and Fog::Compute::RackspaceV2::Image. thanks Kyle Rames
|
2005
|
+
changing variable names to make code clearer. thanks Kyle Rames
|
2006
|
+
fixing broken tests. thanks Kyle Rames
|
2007
|
+
added better acceptance criteria to server/image metadata tests; added metadata to ignored_attributes to address bug. thanks Kyle Rames
|
2008
|
+
fixing merge issues with master. thanks Kyle Rames
|
2009
|
+
fixing typo. thanks Kyle Rames
|
2010
|
+
fixing broken tests. thanks Kyle Rames
|
2011
|
+
tweaking tests and error handling. thanks Kyle Rames
|
2012
|
+
merge in latest master. thanks Kyle Rames
|
2013
|
+
Updated Fog::Logger to log to standard out if DEBUG=true is passed in through the environment. thanks Kyle Rames
|
2014
|
+
Fixing merge conflicts. thanks Kyle Rames
|
2015
|
+
fixing merge issues. thanks Kyle Rames
|
2016
|
+
tweaking whitespace in order to get travis to rebuild. thanks Kyle Rames
|
2017
|
+
tweaking whitespace one more time in order to get travis to rebuild. thanks Kyle Rames
|
2018
|
+
initial revision of rackspace documentation. thanks Kyle Rames
|
2019
|
+
Support AWS S3 cors configuration for buckets. thanks Lee Henson
|
2020
|
+
adding support for rackspace loadbalancer content caching. thanks Luiz Ribeiro
|
2021
|
+
Added request create_folder for vsphere compute. This will create a vm folder in vsphere. thanks Matthew Black
|
2022
|
+
Expanded vm_clone to allow for setting up static ip for first nic. thanks Matthew Black
|
2023
|
+
Add Gem Version badge. thanks Michael Rykov
|
2024
|
+
Added new output to vm_clone.rb Fixed 'path' attribute on server model fixed server.clone function and added some documentation. thanks Nick Huanca
|
2025
|
+
Fixed path for folder attribute model. thanks Nick Huanca
|
2026
|
+
Added a new attribute to server model (relative_path) cleaned up clone function from server model Added better use of resource pool, dest_folder Added new datastore selection, simplified vm_clone.rb Added Customization specs for linux machines Added a new call from datacenters method to grab virtual_servers in datacenter. thanks Nick Huanca
|
2027
|
+
fixed up issues with vm_clone looking for methods that didn't exist tested with wait => true, wait => false fails since it cannot load model while server is still being created. thanks Nick Huanca
|
2028
|
+
added styling fix. thanks Nick Huanca
|
2029
|
+
Fixed up tests. thanks Nick Huanca
|
2030
|
+
fixed up some issues with the tests, needs more work and thought. thanks Nick Huanca
|
2031
|
+
added a note about ugliness and needing more help with tests. thanks Nick Huanca
|
2032
|
+
Adds badge for dependencies status. thanks Paul Thornthwaite
|
2033
|
+
Make use of #persisted? method. thanks Paul Thornthwaite
|
2034
|
+
Removes tags file from repo. thanks Paul Thornthwaite
|
2035
|
+
Revert "add GitHub Flavored Markdown to README". thanks Paul Thornthwaite
|
2036
|
+
add GitHub Flavored Markdown to README. thanks Phil Cohen
|
2037
|
+
Fix typo and use #get_header to handle mixed-case header keys. thanks Rida Al Barazi
|
2038
|
+
Adding describe_reserved_cache_nodes.rb ' '. thanks Sean Hart
|
2039
|
+
Added Tests for Elasticache Reservations. thanks Sean Hart
|
2040
|
+
Added missing HostMetrics model. thanks Sergio Rubio
|
2041
|
+
Added some task descriptions so they show up with 'rake -T'. thanks Sergio Rubio
|
2042
|
+
Alias 'rake build' task with 'rake gem'. thanks Sergio Rubio
|
2043
|
+
Introduce AWS::COMPLIANT_BUCKET_NAMES constant. thanks Stephan Kaag
|
2044
|
+
fix typo. thanks Steve Agalloco
|
2045
|
+
list all VMs in nested folders. thanks Tejas Ravindra Mandke
|
2046
|
+
search through all network adapters recursively to find one being searched for. thanks Tejas Ravindra Mandke
|
2047
|
+
a few workarounds allowing aws plugin to work with Eucalyptus cloud. thanks Tomasz Bak
|
2048
|
+
unit test for the XML namespace handling workaround. thanks Tomasz Bak
|
2049
|
+
a workaround for lack of handling XML namespaces directly (required by Eucalyptus endpoint). thanks Tomasz Bak
|
2050
|
+
add IamInstanceProfile abilitie. thanks Topper Bowers
|
2051
|
+
fix existing spot specs. thanks Topper Bowers
|
2052
|
+
support parsing the iamInstanceProfile. thanks Topper Bowers
|
2053
|
+
Properly return all alarms. thanks Trotter Cashion
|
2054
|
+
add aws page - wip #1350. thanks Weston Platter
|
2055
|
+
work in progress #1350 - change tabs to spaces. thanks Weston Platter
|
2056
|
+
complete #1350 add link to index page referencing storage/aws.hmtl. thanks Weston Platter
|
2057
|
+
issue/1350 [doc] add options param. thanks Weston Platter
|
2058
|
+
issue/1350 [doc] add key to options hash -- encryption. thanks Weston Platter
|
2059
|
+
issue/1350 [doc] add other key to options hash. thanks Weston Platter
|
2060
|
+
Added a cors (with bucket) item to the data has of the Storage AWS Mock class (upon creation of the hash). This is to prevent put_bucket_cors from failing during tests. thanks epdejager
|
2061
|
+
Added a test for put_bucket_cors to make sure it runs in a test (mock) scenario. thanks epdejager
|
2062
|
+
remove docs and related, they now live at fog/fog.github.com. thanks geemus
|
2063
|
+
update copyright notice year. thanks geemus
|
2064
|
+
rescue/retry when loading gems (possibly without rubygems) closes #901. thanks geemus
|
2065
|
+
added floatingip. thanks kanetann
|
2066
|
+
added associate_floatingip and disassosiate_floatingip mock test. thanks kanetann
|
2067
|
+
update associate_floatingip for real. thanks kanetann
|
2068
|
+
deleted update_floatingip and changed variable name from floating_network_id to floatingip_id. thanks kanetann
|
2069
|
+
fixed disassociate_floatingip bug and update floatingip-* mock values. thanks kanetann
|
2070
|
+
updated for ruby naming conventions. thanks kanetann
|
2071
|
+
deleted old files eg. floatingip.rb. thanks kanetann
|
2072
|
+
Bug fix: Ensure Fog::VERSION gets defined. thanks ronen barzel
|
2073
|
+
remove const_defined? guard. thanks ronen barzel
|
2074
|
+
|
2075
|
+
[ninefold|compute]
|
2076
|
+
Updates reference to service. thanks Paul Thornthwaite
|
2077
|
+
|
2078
|
+
[openstack]
|
2079
|
+
Show an error message when there aren't any endpoints available for a region. thanks Ferran Rodenas
|
2080
|
+
Show an error message when there aren't any endpoints available for a region. thanks Ferran Rodenas
|
2081
|
+
Update Mocks and Cleanup Unused Code. thanks Nelvin Driz
|
2082
|
+
Fix Test. thanks Nelvin Driz
|
2083
|
+
Replaces #new_record? with #persisted?. thanks Paul Thornthwaite
|
2084
|
+
Updates reference to service. thanks Paul Thornthwaite
|
2085
|
+
|
2086
|
+
[openstack|compute]
|
2087
|
+
Update Quota Mocks based on Folsom Stable. thanks Nelvin Driz
|
2088
|
+
|
2089
|
+
[openstack|identity]
|
2090
|
+
Update User Role Membership Mocks. thanks Nelvin Driz
|
2091
|
+
Added sample code to README.identity.md. thanks Sergio Rubio
|
2092
|
+
replace to_json with Fog::JSON.encode. thanks Sergio Rubio
|
2093
|
+
|
2094
|
+
[openstack|image]
|
2095
|
+
Fixes #1383. thanks Sergio Rubio
|
2096
|
+
Configurable :openstack_endpoint_type. thanks Sergio Rubio
|
2097
|
+
|
2098
|
+
[ovirt|compute]
|
2099
|
+
Updates reference to service. thanks Paul Thornthwaite
|
2100
|
+
|
2101
|
+
[rackspace]
|
2102
|
+
compute_v2 and blockstorage are mocked [ecloud] fixed a test and removed connection deprecation notices. thanks Eugene Howe
|
2103
|
+
Moved methods to MockData module. thanks Eugene Howe
|
2104
|
+
updated Rackspace to return a list of all services. thanks Kyle Rames
|
2105
|
+
Updates reference to service. thanks Paul Thornthwaite
|
2106
|
+
Fixes nesting of tests. thanks Paul Thornthwaite
|
2107
|
+
|
2108
|
+
[rackspace|compute]
|
2109
|
+
updated rebuild to support passing additional options. thanks Kyle Rames
|
2110
|
+
added attach_volume method to server; cleaned up attachment model. thanks Kyle Rames
|
2111
|
+
server update method now updates accessIPv4, accessIPv6, as well as name; made server request tests more robust. thanks Kyle Rames
|
2112
|
+
made device an optional parameter in attach_volume method and request; split volume_attach and attachments into two different tests. thanks Kyle Rames
|
2113
|
+
tweaked server model tests; updated ready? method to support different ready states as well as checking for error states. thanks Kyle Rames
|
2114
|
+
|
2115
|
+
[rackspace|dns]
|
2116
|
+
creating a record now uses specified ttl. thanks Andreas Gerauer
|
2117
|
+
|
2118
|
+
[rackspace|storage]
|
2119
|
+
Updates 'connection' references. thanks Paul Thornthwaite
|
2120
|
+
|
2121
|
+
[serverlove|compute]
|
2122
|
+
Updates reference to service. thanks Paul Thornthwaite
|
2123
|
+
|
2124
|
+
[storm_on_demand]
|
2125
|
+
Updates reference to service. thanks Paul Thornthwaite
|
2126
|
+
|
2127
|
+
[terremark]
|
2128
|
+
Updates reference to service. thanks Paul Thornthwaite
|
2129
|
+
|
2130
|
+
[vcloud]
|
2131
|
+
Replaces #new_record? with #persisted?. thanks Paul Thornthwaite
|
2132
|
+
|
2133
|
+
[vcloud|compute]
|
2134
|
+
Updates reference to service. thanks Paul Thornthwaite
|
2135
|
+
|
2136
|
+
[virtual_box|compute]
|
2137
|
+
Updates reference to service. thanks Paul Thornthwaite
|
2138
|
+
|
2139
|
+
[vmfusion]
|
2140
|
+
Updates reference to service. thanks Paul Thornthwaite
|
2141
|
+
|
2142
|
+
[voxel|compute]
|
2143
|
+
Updates reference to service. thanks Paul Thornthwaite
|
2144
|
+
|
2145
|
+
[vsphere]
|
2146
|
+
allow to create a vm with multiple disks. thanks Ohad Levy
|
2147
|
+
|
2148
|
+
[vsphere|compute]
|
2149
|
+
Updates reference to service. thanks Paul Thornthwaite
|
2150
|
+
Reverts change of connection. thanks Paul Thornthwaite
|
2151
|
+
|
2152
|
+
[xenserver]
|
2153
|
+
Fix Fog::XenServer::Connection.authenticate. thanks Oguz Bilgic
|
2154
|
+
Added HostMetrics tests. thanks Sergio Rubio
|
2155
|
+
added create_sr request (create Storage Repository). thanks Sergio Rubio
|
2156
|
+
added destroy_sr request (destroy Storage Repository). thanks Sergio Rubio
|
2157
|
+
added unplug_pbd request. thanks Sergio Rubio
|
2158
|
+
added new requests to compute service. thanks Sergio Rubio
|
2159
|
+
added unplug method to PBD model. thanks Sergio Rubio
|
2160
|
+
missing Pool model attribute, new methods. thanks Sergio Rubio
|
2161
|
+
added new methods to StorageRepository model. thanks Sergio Rubio
|
2162
|
+
updated create_sr request documentation, fixed default values. thanks Sergio Rubio
|
2163
|
+
add missing PBD 'currently_attached' attribute. thanks Sergio Rubio
|
2164
|
+
StorageRepository.save should use sane defaults. thanks Sergio Rubio
|
2165
|
+
add missing host operations (enable/disable, reboot, shutdown). thanks Sergio Rubio
|
2166
|
+
added missing HostCpu model. thanks Sergio Rubio
|
2167
|
+
added missing host_cpus attribute to Host model. thanks Sergio Rubio
|
2168
|
+
add missing Host attributes (edition, software_version). thanks Sergio Rubio
|
2169
|
+
replace #connection with #service in models. thanks Sergio Rubio
|
2170
|
+
Use Nokogiri instead of slow REXML for parsing. thanks deepj
|
2171
|
+
|
2172
|
+
[xenserver|compute]
|
2173
|
+
Updates reference to service. thanks Paul Thornthwaite
|
2174
|
+
added getting started examples. thanks Sergio Rubio
|
2175
|
+
|
2176
|
+
[xenserver|docs]
|
2177
|
+
Added maintainer/attribution header to README.md. thanks Sergio Rubio
|
2178
|
+
added creating_servers.md tutorial. thanks Sergio Rubio
|
2179
|
+
added storage repositories examples. thanks Sergio Rubio
|
2180
|
+
added some color!, minor format fixes. thanks Sergio Rubio
|
2181
|
+
Added new example that covers a Citrix KB ctx116324 article. thanks Sergio Rubio
|
2182
|
+
Added XenServer provider specific ChangeLog. thanks Sergio Rubio
|
2183
|
+
|
2184
|
+
[xenserver|tests]
|
2185
|
+
Added create_sr request tests. thanks Sergio Rubio
|
2186
|
+
Added destroy_sr request tests. thanks Sergio Rubio
|
2187
|
+
add unplug_pbd request tests. thanks Sergio Rubio
|
2188
|
+
tests PBDs plug/unplug operation. thanks Sergio Rubio
|
2189
|
+
added more pool tests to cover the new functionality. thanks Sergio Rubio
|
2190
|
+
added missing SotorageRepository tests. thanks Sergio Rubio
|
2191
|
+
added HostCpu model tests. thanks Sergio Rubio
|
2192
|
+
typo fix. thanks Sergio Rubio
|
2193
|
+
test Host.host_cpus method. thanks Sergio Rubio
|
2194
|
+
|
2195
|
+
[zerigo|dns]
|
2196
|
+
Updates reference to service. thanks Paul Thornthwaite
|
2197
|
+
|
2198
|
+
|
1
2199
|
1.8.0 12/01/2012 057c0c525a39e77cb2037c9fec3d851b209c151b
|
2
2200
|
=========================================================
|
3
2201
|
|