fog 1.9.0 → 1.10.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +1 -1
- data/README.md +1 -1
- data/changelog.txt +743 -0
- data/fog.gemspec +3 -5
- data/lib/fog/aws.rb +1 -0
- data/lib/fog/aws/credential_fetcher.rb +1 -1
- data/lib/fog/aws/data_pipeline.rb +114 -0
- data/lib/fog/aws/dynamodb.rb +1 -1
- data/lib/fog/aws/models/compute/flavors.rb +1 -1
- data/lib/fog/aws/models/compute/spot_request.rb +2 -0
- 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/parsers/cloud_watch/list_metrics.rb +1 -1
- data/lib/fog/aws/parsers/compute/describe_instances.rb +1 -1
- data/lib/fog/aws/parsers/compute/spot_instance_requests.rb +2 -0
- data/lib/fog/aws/requests/compute/request_spot_instances.rb +1 -0
- 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/rds/describe_db_instances.rb +8 -9
- data/lib/fog/aws/requests/storage/get_service.rb +1 -2
- data/lib/fog/aws/requests/storage/list_multipart_uploads.rb +3 -3
- data/lib/fog/aws/requests/storage/put_bucket_policy.rb +2 -2
- data/lib/fog/aws/storage.rb +1 -1
- data/lib/fog/bin.rb +2 -1
- data/lib/fog/bin/aws.rb +4 -0
- data/lib/fog/bin/bluebox.rb +2 -0
- data/lib/fog/bin/dreamhost.rb +31 -0
- data/lib/fog/bin/hp.rb +7 -0
- data/lib/fog/bin/internet_archive.rb +34 -0
- data/lib/fog/bin/openstack.rb +17 -2
- 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/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 +1 -0
- data/lib/fog/brightbox/requests/compute/create_firewall_policy.rb +1 -0
- data/lib/fog/brightbox/requests/compute/update_firewall_policy.rb +25 -0
- data/lib/fog/brightbox/requests/compute/update_server.rb +1 -0
- data/lib/fog/cdn.rb +5 -12
- data/lib/fog/compute.rb +7 -68
- data/lib/fog/core/errors.rb +5 -1
- data/lib/fog/core/scp.rb +1 -0
- data/lib/fog/core/ssh.rb +1 -0
- data/lib/fog/dns.rb +7 -27
- data/lib/fog/dreamhost.rb +11 -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/ecloud/models/compute/detached_disks.rb +1 -5
- data/lib/fog/ecloud/models/compute/internet_services.rb +1 -5
- 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/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 +66 -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/hp.rb +56 -26
- data/lib/fog/hp/CHANGELOG.hp +113 -0
- data/lib/fog/hp/README_HP.rdoc +7 -6
- data/lib/fog/hp/block_storage.rb +169 -0
- data/lib/fog/hp/cdn.rb +29 -7
- data/lib/fog/hp/compute.rb +88 -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 +84 -20
- data/lib/fog/hp/models/meta_parent.rb +33 -0
- data/lib/fog/hp/models/storage/directories.rb +34 -9
- data/lib/fog/hp/models/storage/directory.rb +111 -26
- data/lib/fog/hp/models/storage/file.rb +10 -0
- data/lib/fog/hp/models/storage/files.rb +8 -0
- 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 +36 -20
- 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 +12 -10
- 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 +175 -33
- data/lib/fog/identity.rb +5 -4
- data/lib/fog/image.rb +5 -6
- data/lib/fog/internet_archive.rb +290 -0
- data/lib/fog/internet_archive/models/storage/directories.rb +43 -0
- data/lib/fog/internet_archive/models/storage/directory.rb +126 -0
- data/lib/fog/internet_archive/models/storage/file.rb +286 -0
- data/lib/fog/internet_archive/models/storage/files.rb +122 -0
- data/lib/fog/internet_archive/models/storage/version.rb +36 -0
- data/lib/fog/internet_archive/models/storage/versions.rb +38 -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_object_versions.rb +88 -0
- data/lib/fog/internet_archive/parsers/storage/get_bucket_versioning.rb +24 -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 +167 -0
- data/lib/fog/internet_archive/requests/storage/delete_object.rb +118 -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_object_versions.rb +162 -0
- data/lib/fog/internet_archive/requests/storage/get_bucket_policy.rb +34 -0
- data/lib/fog/internet_archive/requests/storage/get_bucket_versioning.rb +69 -0
- data/lib/fog/internet_archive/requests/storage/get_bucket_website.rb +40 -0
- data/lib/fog/internet_archive/requests/storage/get_object.rb +188 -0
- data/lib/fog/internet_archive/requests/storage/get_object_acl.rb +80 -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 +55 -0
- data/lib/fog/internet_archive/requests/storage/head_object.rb +66 -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 +55 -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_versioning.rb +75 -0
- data/lib/fog/internet_archive/requests/storage/put_bucket_website.rb +64 -0
- data/lib/fog/internet_archive/requests/storage/put_object.rb +113 -0
- data/lib/fog/internet_archive/requests/storage/put_object_acl.rb +80 -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 +402 -0
- data/lib/fog/joyent/models/compute/server.rb +1 -1
- data/lib/fog/joyent/requests/compute/resize_machine.rb +2 -0
- data/lib/fog/libvirt/models/compute/volume.rb +1 -1
- data/lib/fog/network.rb +5 -6
- data/lib/fog/openstack.rb +10 -0
- data/lib/fog/openstack/compute.rb +11 -4
- data/lib/fog/openstack/identity.rb +5 -2
- data/lib/fog/openstack/models/compute/images.rb +2 -1
- data/lib/fog/openstack/models/compute/metadata.rb +4 -5
- data/lib/fog/openstack/models/compute/server.rb +36 -21
- data/lib/fog/openstack/models/identity/role.rb +1 -1
- data/lib/fog/openstack/models/network/floating_ip.rb +1 -1
- data/lib/fog/openstack/models/network/floating_ips.rb +2 -2
- data/lib/fog/openstack/models/network/network.rb +8 -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/requests/compute/allocate_address.rb +1 -1
- data/lib/fog/openstack/requests/compute/delete_meta.rb +43 -0
- data/lib/fog/openstack/requests/compute/get_limits.rb +1 -1
- data/lib/fog/openstack/requests/compute/get_snapshot_details.rb +1 -1
- data/lib/fog/openstack/requests/compute/get_volume_details.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/remove_fixed_ip.rb +1 -1
- 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/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/network/associate_floating_ip.rb +3 -3
- data/lib/fog/openstack/requests/network/create_floating_ip.rb +3 -3
- data/lib/fog/openstack/requests/network/delete_floating_ip.rb +1 -1
- data/lib/fog/openstack/requests/network/disassociate_floating_ip.rb +3 -3
- data/lib/fog/openstack/requests/network/get_floating_ip.rb +1 -1
- data/lib/fog/openstack/requests/network/list_floating_ips.rb +1 -1
- 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 +30 -0
- data/lib/fog/openstack/requests/storage/put_object_manifest.rb +25 -0
- data/lib/fog/openstack/storage.rb +159 -0
- data/lib/fog/openstack/volume.rb +4 -2
- data/lib/fog/ovirt/compute.rb +1 -0
- data/lib/fog/ovirt/models/compute/server.rb +2 -2
- data/lib/fog/ovirt/models/compute/volume.rb +1 -0
- data/lib/fog/ovirt/requests/compute/get_api_version.rb +16 -0
- data/lib/fog/providers.rb +2 -1
- data/lib/fog/rackspace/block_storage.rb +1 -0
- data/lib/fog/rackspace/cdn.rb +61 -7
- data/lib/fog/rackspace/compute_v2.rb +16 -3
- data/lib/fog/rackspace/databases.rb +4 -3
- data/lib/fog/rackspace/docs/compute_v2.md +663 -0
- data/lib/fog/rackspace/docs/getting_started.md +9 -9
- data/lib/fog/rackspace/examples/README.md +47 -0
- data/lib/fog/rackspace/examples/compute_v2/README.md +47 -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/identity.rb +1 -1
- data/lib/fog/rackspace/load_balancers.rb +2 -2
- data/lib/fog/rackspace/mock_data.rb +114 -96
- data/lib/fog/rackspace/models/compute_v2/attachment.rb +16 -0
- data/lib/fog/rackspace/models/compute_v2/attachments.rb +6 -0
- data/lib/fog/rackspace/models/compute_v2/flavor.rb +18 -0
- data/lib/fog/rackspace/models/compute_v2/flavors.rb +9 -1
- data/lib/fog/rackspace/models/compute_v2/image.rb +52 -7
- data/lib/fog/rackspace/models/compute_v2/images.rb +9 -0
- data/lib/fog/rackspace/models/compute_v2/meta_parent.rb +9 -0
- data/lib/fog/rackspace/models/compute_v2/metadata.rb +30 -7
- data/lib/fog/rackspace/models/compute_v2/metadatum.rb +4 -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 +235 -24
- data/lib/fog/rackspace/models/compute_v2/servers.rb +19 -1
- data/lib/fog/rackspace/models/dns/zones.rb +35 -2
- data/lib/fog/rackspace/models/identity/credentials.rb +3 -2
- data/lib/fog/rackspace/models/storage/account.rb +24 -0
- data/lib/fog/rackspace/models/storage/directories.rb +3 -0
- data/lib/fog/rackspace/models/storage/directory.rb +68 -39
- data/lib/fog/rackspace/models/storage/file.rb +38 -67
- data/lib/fog/rackspace/models/storage/files.rb +11 -4
- data/lib/fog/rackspace/models/storage/metadata.rb +129 -0
- data/lib/fog/rackspace/requests/cdn/delete_object.rb +37 -0
- data/lib/fog/rackspace/requests/cdn/get_containers.rb +34 -0
- data/lib/fog/rackspace/requests/cdn/head_container.rb +24 -0
- data/lib/fog/rackspace/requests/cdn/post_container.rb +21 -0
- data/lib/fog/rackspace/requests/cdn/put_container.rb +21 -0
- data/lib/fog/rackspace/requests/compute_v2/attach_volume.rb +13 -0
- data/lib/fog/rackspace/requests/compute_v2/change_server_password.rb +7 -0
- data/lib/fog/rackspace/requests/compute_v2/confirm_resize_server.rb +9 -0
- data/lib/fog/rackspace/requests/compute_v2/create_image.rb +9 -5
- data/lib/fog/rackspace/requests/compute_v2/create_network.rb +36 -0
- data/lib/fog/rackspace/requests/compute_v2/create_server.rb +38 -0
- data/lib/fog/rackspace/requests/compute_v2/delete_attachment.rb +5 -0
- data/lib/fog/rackspace/requests/compute_v2/delete_image.rb +2 -4
- data/lib/fog/rackspace/requests/compute_v2/delete_metadata_item.rb +6 -0
- data/lib/fog/rackspace/requests/compute_v2/delete_network.rb +21 -0
- data/lib/fog/rackspace/requests/compute_v2/delete_server.rb +4 -0
- data/lib/fog/rackspace/requests/compute_v2/get_attachment.rb +12 -0
- data/lib/fog/rackspace/requests/compute_v2/get_flavor.rb +14 -0
- data/lib/fog/rackspace/requests/compute_v2/get_image.rb +18 -0
- data/lib/fog/rackspace/requests/compute_v2/get_metadata_item.rb +9 -0
- data/lib/fog/rackspace/requests/compute_v2/get_network.rb +21 -0
- data/lib/fog/rackspace/requests/compute_v2/get_server.rb +32 -0
- data/lib/fog/rackspace/requests/compute_v2/list_addresses.rb +5 -0
- data/lib/fog/rackspace/requests/compute_v2/list_addresses_by_network.rb +12 -0
- data/lib/fog/rackspace/requests/compute_v2/list_attachments.rb +12 -0
- data/lib/fog/rackspace/requests/compute_v2/list_flavors.rb +10 -0
- data/lib/fog/rackspace/requests/compute_v2/list_images.rb +10 -0
- data/lib/fog/rackspace/requests/compute_v2/list_metadata.rb +8 -0
- data/lib/fog/rackspace/requests/compute_v2/list_networks.rb +18 -0
- data/lib/fog/rackspace/requests/compute_v2/list_servers.rb +31 -0
- data/lib/fog/rackspace/requests/compute_v2/reboot_server.rb +5 -0
- data/lib/fog/rackspace/requests/compute_v2/rebuild_server.rb +37 -0
- data/lib/fog/rackspace/requests/compute_v2/resize_server.rb +10 -0
- data/lib/fog/rackspace/requests/compute_v2/revert_resize_server.rb +10 -0
- data/lib/fog/rackspace/requests/compute_v2/set_metadata.rb +9 -0
- data/lib/fog/rackspace/requests/compute_v2/set_metadata_item.rb +10 -0
- data/lib/fog/rackspace/requests/compute_v2/update_metadata.rb +9 -0
- data/lib/fog/rackspace/requests/compute_v2/update_server.rb +9 -0
- data/lib/fog/rackspace/requests/storage/get_object.rb +0 -1
- data/lib/fog/rackspace/requests/storage/put_container.rb +2 -1
- data/lib/fog/rackspace/storage.rb +14 -2
- data/lib/fog/schema/data_validator.rb +154 -0
- data/lib/fog/storage.rb +8 -24
- 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 +1 -0
- data/lib/fog/vcloud/models/compute/server.rb +15 -2
- data/lib/fog/vcloud/models/compute/vapp.rb +11 -0
- data/lib/fog/vcloud/requests/compute/configure_vm_network.rb +37 -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/vsphere/requests/compute/create_vm.rb +18 -3
- data/lib/fog/vsphere/requests/compute/list_vm_interfaces.rb +1 -1
- data/lib/fog/vsphere/requests/compute/vm_reconfig_hardware.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/rds/server_tests.rb +10 -9
- data/tests/aws/requests/compute/image_tests.rb +2 -2
- 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/data_pipeline/helper.rb +44 -0
- data/tests/aws/requests/data_pipeline/pipeline_tests.rb +54 -0
- data/tests/aws/requests/rds/instance_tests.rb +8 -5
- data/tests/bluebox/requests/blb/helper.rb +64 -0
- data/tests/bluebox/requests/blb/lb_tests.rb +75 -0
- data/tests/brightbox/requests/compute/firewall_policy_tests.rb +7 -0
- data/tests/brightbox/requests/compute/helper.rb +4 -2
- data/tests/compute/helper.rb +8 -0
- data/tests/core/user_agent_tests.rb +6 -0
- 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/glesys/requests/compute/helper.rb +5 -5
- data/tests/helper.rb +1 -1
- data/tests/helpers/formats_helper.rb +63 -50
- data/tests/helpers/formats_helper_tests.rb +87 -36
- data/tests/helpers/mock_helper.rb +4 -1
- 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 +51 -0
- data/tests/internet_archive/models/storage/file_tests.rb +80 -0
- data/tests/internet_archive/models/storage/files_tests.rb +56 -0
- data/tests/internet_archive/models/storage/url_tests.rb +28 -0
- data/tests/internet_archive/models/storage/version_tests.rb +52 -0
- data/tests/internet_archive/models/storage/versions_tests.rb +56 -0
- data/tests/internet_archive/requests/storage/acl_utils_tests.rb +209 -0
- data/tests/internet_archive/requests/storage/bucket_tests.rb +328 -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/requests/storage/versioning_tests.rb +258 -0
- data/tests/internet_archive/signaturev4_tests.rb +41 -0
- data/tests/internet_archive/signed_params_tests.rb +5 -0
- data/tests/openstack/models/compute/images_tests.rb +14 -0
- data/tests/openstack/models/compute/server_tests.rb +42 -1
- data/tests/openstack/models/identity/roles_tests.rb +1 -0
- data/tests/openstack/models/identity/user_tests.rb +2 -2
- data/tests/openstack/models/network/network_tests.rb +21 -1
- data/tests/openstack/models/storage/file_tests.rb +178 -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/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/storage/container_tests.rb +64 -0
- data/tests/openstack/requests/storage/large_object_tests.rb +47 -0
- data/tests/openstack/requests/storage/object_tests.rb +84 -0
- data/tests/openstack/volume_tests.rb +15 -0
- data/tests/rackspace/cdn_tests.rb +78 -0
- data/tests/rackspace/helper.rb +9 -0
- data/tests/rackspace/models/compute_v2/flavors_tests.rb +1 -1
- data/tests/rackspace/models/compute_v2/image_tests.rb +2 -4
- data/tests/rackspace/models/compute_v2/images_tests.rb +1 -1
- data/tests/rackspace/models/compute_v2/metadata_tests.rb +5 -3
- 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 +8 -7
- data/tests/rackspace/models/compute_v2/servers_tests.rb +5 -7
- data/tests/rackspace/models/dns/zones_tests.rb +22 -0
- data/tests/rackspace/models/identity/credentials_tests.rb +14 -5
- 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 +86 -11
- data/tests/rackspace/models/storage/metadata_tests.rb +174 -0
- data/tests/rackspace/requests/cdn/cdn_tests.rb +76 -0
- data/tests/rackspace/requests/compute/image_tests.rb +2 -2
- data/tests/rackspace/requests/compute_v2/image_tests.rb +6 -6
- data/tests/rackspace/requests/compute_v2/network_tests.rb +49 -0
- data/tests/rackspace/requests/identity/user_tests.rb +0 -4
- data/tests/rackspace/requests/storage/container_tests.rb +8 -1
- data/tests/rackspace/storage_tests.rb +8 -0
- data/tests/storage/helper.rb +3 -0
- metadata +341 -40
- data/docs/storage/aws.markdown +0 -21
- data/lib/fog/bin/virtual_box.rb +0 -57
- data/lib/fog/rackspace/docs/cloud_servers.md +0 -65
- data/lib/fog/rackspace/requests/identity/get_credentials.rb +0 -15
- 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
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -7,9 +7,9 @@ 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
|
|
data/changelog.txt
CHANGED
@@ -1,3 +1,746 @@
|
|
1
|
+
1.10.0 03/05/2013 2f30de2ab357a5bbdb505b94ada8aa637ba936f5
|
2
|
+
==========================================================
|
3
|
+
|
4
|
+
Stats! { 'collaborators' => 45, 'downloads' => 1813647, 'forks' => 720, 'open_issues' => 117, 'watchers' => 2386 }
|
5
|
+
|
6
|
+
MVP! Rupak Ganguly
|
7
|
+
|
8
|
+
[Brightbox]
|
9
|
+
Adds update firewall request. thanks Paul Thornthwaite
|
10
|
+
Adds compatibility mode to template. thanks Paul Thornthwaite
|
11
|
+
Updates to requests. thanks Paul Thornthwaite
|
12
|
+
|
13
|
+
[Glesys]
|
14
|
+
Template list request does not take options. thanks Simon Gate
|
15
|
+
Only make one request when fetching templates. thanks Simon Gate
|
16
|
+
Fix template attributes, now they work. thanks Simon Gate
|
17
|
+
Attribute :keepip removed from server model. thanks Simon Gate
|
18
|
+
Clean up attributes on server model. thanks Simon Gate
|
19
|
+
Add public_ip_method to server model. thanks Simon Gate
|
20
|
+
Add setup method to copy fog ssh keys to server. thanks Simon Gate
|
21
|
+
Wrap ssh method to use rootpassword if present. thanks Simon Gate
|
22
|
+
|
23
|
+
[HP]
|
24
|
+
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
|
25
|
+
|
26
|
+
[HP|storage]
|
27
|
+
Fix generate_object_temp_url to use signer that is backward compatible to 1.8.7. thanks Rupak Ganguly
|
28
|
+
|
29
|
+
[Rackspace|Compute]
|
30
|
+
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
|
31
|
+
|
32
|
+
[Rackspace|Storage]
|
33
|
+
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
|
34
|
+
|
35
|
+
[aws]
|
36
|
+
Fixes typo in fetching credentials error. thanks Paul Thornthwaite
|
37
|
+
Fixes security group template. thanks Paul Thornthwaite
|
38
|
+
|
39
|
+
[aws|compute]
|
40
|
+
Fixes schema in image tests. thanks Paul Thornthwaite
|
41
|
+
|
42
|
+
[aws|dynamodb]
|
43
|
+
fix port to match https default closes #1531. thanks geemus
|
44
|
+
|
45
|
+
[aws|rds]
|
46
|
+
remove some superfluous reloads, hopefully help with travis test timing issues. thanks geemus
|
47
|
+
|
48
|
+
[aws|storage]
|
49
|
+
Fixes Yard tags. thanks Paul Thornthwaite
|
50
|
+
|
51
|
+
[bluebox|blb]
|
52
|
+
clean up, define types returned. thanks Josh Yotty
|
53
|
+
some cleanup of model stubs. thanks Josh Yotty
|
54
|
+
add model to application and server collections. thanks Josh Yotty
|
55
|
+
require model. thanks Josh Yotty
|
56
|
+
require model. thanks Josh Yotty
|
57
|
+
fix more stub/copypaste inanity. thanks Josh Yotty
|
58
|
+
lb_service collection implementation. thanks Josh Yotty
|
59
|
+
service must be passed from caller. thanks Josh Yotty
|
60
|
+
atone for additional sins in the lb service and backend models. thanks Josh Yotty
|
61
|
+
add last set of index requests for lb_machines. thanks Josh Yotty
|
62
|
+
add_machine. thanks Josh Yotty
|
63
|
+
rename for consistency. thanks Josh Yotty
|
64
|
+
typo, whitespace. thanks Josh Yotty
|
65
|
+
lb_machine API coverage. thanks Josh Yotty
|
66
|
+
missing end. thanks Josh Yotty
|
67
|
+
testing stubs. thanks Josh Yotty
|
68
|
+
rename to tests, plural. thanks Josh Yotty
|
69
|
+
more request tests, missing comma. thanks Josh Yotty
|
70
|
+
parsing is hard, let's go shopping. thanks Josh Yotty
|
71
|
+
account for text/plain endpoint. thanks Josh Yotty
|
72
|
+
update tests. thanks Josh Yotty
|
73
|
+
|
74
|
+
[core]
|
75
|
+
Uses Logger deprecation for Compute.new. thanks Paul Thornthwaite
|
76
|
+
Fix display_stdout to process multiple lines output. thanks Rupak Ganguly
|
77
|
+
|
78
|
+
[dreamhost|dns]
|
79
|
+
remove connection deprecation notices. thanks Sergio Rubio
|
80
|
+
Use the new fog-dream.com domain for testing. thanks Sergio Rubio
|
81
|
+
remove silly debugging code. thanks Sergio Rubio
|
82
|
+
do not delete the do-not-delete record when testing. thanks Sergio Rubio
|
83
|
+
added test helpers. thanks Sergio Rubio
|
84
|
+
Added README.md file documenting testing procedure. thanks Sergio Rubio
|
85
|
+
Removed get_record request. thanks Sergio Rubio
|
86
|
+
refactor dns requests tests. thanks Sergio Rubio
|
87
|
+
added Record model tests, fix Record.save. thanks Sergio Rubio
|
88
|
+
record tests fixes. thanks Sergio Rubio
|
89
|
+
Emulate zone model and collection, added tests. thanks Sergio Rubio
|
90
|
+
Do not add duplicated zones to the Zones collection. thanks Sergio Rubio
|
91
|
+
Moved getting started guide to examples/dns. thanks Sergio Rubio
|
92
|
+
Zone.records: list only records matching the current zone. thanks Sergio Rubio
|
93
|
+
Updated testing documentation. thanks Sergio Rubio
|
94
|
+
Updated Dreamhost/DNS getting started guide. thanks Sergio Rubio
|
95
|
+
drop uuid gem requirements, not needed. thanks Sergio Rubio
|
96
|
+
drop uuid gem dep from fog.gemspec. thanks Sergio Rubio
|
97
|
+
Add dreamhost to the list of providers. thanks Sergio Rubio
|
98
|
+
|
99
|
+
[dreamhost|docs]
|
100
|
+
Added getting started guide, initial release. thanks Sergio Rubio
|
101
|
+
|
102
|
+
[dremhost|dns]
|
103
|
+
added DNS service tests. thanks Sergio Rubio
|
104
|
+
|
105
|
+
[ecloud]
|
106
|
+
fixed object returns in mock. thanks Eugene Howe
|
107
|
+
|
108
|
+
[fog]
|
109
|
+
Typo fixed in identity. thanks Anshul Khandelwal
|
110
|
+
Cleanup: Use the service registry for requiring libs where possible. thanks Anshul Khandelwal
|
111
|
+
|
112
|
+
[glesys]
|
113
|
+
Add description to server model. thanks Simon Gate
|
114
|
+
Ability to pass in options to server details. thanks Simon Gate
|
115
|
+
Consistent naming of attributes. thanks Simon Gate
|
116
|
+
ip details should be ip details, not listfree. thanks Simon Gate
|
117
|
+
Fix ip model name to match nameing convention. thanks Simon Gate
|
118
|
+
Fix ip attributes, they didn't work. thanks Simon Gate
|
119
|
+
Return nil if there isn't any public ip address. thanks Simon Gate
|
120
|
+
Refactor the ip interface, did not work earlier. thanks Simon Gate
|
121
|
+
add take method to ip model. thanks Simon Gate
|
122
|
+
Fix error in ip tests. thanks Simon Gate
|
123
|
+
Make compute test pass. thanks Simon Gate
|
124
|
+
Attributes were overwritten when getting server details. thanks Simon Gate
|
125
|
+
Fix bug when trying to attach a ip to a server. thanks Simon Gate
|
126
|
+
Platform methods to templates. thanks Simon Gate
|
127
|
+
Rename template model to match Fog convention. thanks Simon Gate
|
128
|
+
Remove unused features from template model. thanks Simon Gate
|
129
|
+
|
130
|
+
[hp/openstack|compute]
|
131
|
+
remove erroneous block argument to get_object; fixes issue #1588 for OpenStack and HP. thanks Kyle Rames
|
132
|
+
|
133
|
+
[libvirt|volume]
|
134
|
+
Fix typo in image_suffix. thanks David Wittman
|
135
|
+
|
136
|
+
[misc]
|
137
|
+
Enable ebs-optimized spot instance requests. thanks Adam Bozanich
|
138
|
+
test spot instance request parser. thanks Adam Bozanich
|
139
|
+
add internet_archive to fog providers, bin, storage. thanks Andrew Kuklewicz
|
140
|
+
and internet_archive code, tests. thanks Andrew Kuklewicz
|
141
|
+
fix testing mock. thanks Andrew Kuklewicz
|
142
|
+
set defaults to be scheme http, port 80, as that is what internet_archive supports. thanks Andrew Kuklewicz
|
143
|
+
Pass the management URI if no public endpoint. thanks BK Box
|
144
|
+
Need to check for management variable as well. thanks BK Box
|
145
|
+
Add support for pulling out virtualization type when parsing AWS Describe Instances results. thanks Brad Heller
|
146
|
+
Ignore tags. thanks Brad Heller
|
147
|
+
NextMarker => NextToken. Maybe that's what it used to be...?. thanks Brad Heller
|
148
|
+
Fix Params related to network configuration. thanks Chirag Jog
|
149
|
+
Support to Configure the VM network. thanks Chirag Jog
|
150
|
+
Ability to track vApp level status of readiness. thanks Chirag Jog
|
151
|
+
Fix Params related to network configuration. thanks Chirag Jog
|
152
|
+
Support to Configure the VM network. thanks Chirag Jog
|
153
|
+
Ability to track vApp level status of readiness. thanks Chirag Jog
|
154
|
+
Remove extraneous print. thanks Chirag Jog
|
155
|
+
Remove existing (unused) parser module and introduce a TerremarkParser - which extends the base parser with the ability to extract relevant attributes. thanks Chirag Jog
|
156
|
+
Use the TerremarkParser to extract relevant attributes. thanks Chirag Jog
|
157
|
+
Minor Fix to delete the internet service. thanks Chirag Jog
|
158
|
+
OpenStack: update used limits tests. thanks Dan Prince
|
159
|
+
OpenStack: update tenant_list tests. thanks Dan Prince
|
160
|
+
OpenStack: get identity tests passing in real mode. thanks Dan Prince
|
161
|
+
Drop 'extras' from tenant test validations. thanks Dan Prince
|
162
|
+
Openstack: fix bin/openstack.rb errors. thanks Dan Prince
|
163
|
+
OpenStack Compute: Fix server model metadata. thanks Dan Prince
|
164
|
+
OpenStack: Add missing metadatum requests. thanks Dan Prince
|
165
|
+
vsphere: Support multiple NIC backings. thanks Ewoud Kohl van Wijngaarden
|
166
|
+
vsphere: Allow listing virtual port groups. thanks Ewoud Kohl van Wijngaarden
|
167
|
+
Add a zones.find(substring) method to return only zones whose name matches that substring. thanks H. Wade Minter
|
168
|
+
Add initial support for pulling in >100 zones via Zones.each. thanks H. Wade Minter
|
169
|
+
Get rid of the extra load() calls. thanks H. Wade Minter
|
170
|
+
copy & paste to get Blocks LB API working. thanks Josh Yotty
|
171
|
+
register blb feature. thanks Josh Yotty
|
172
|
+
Rudimentary CRUD for AWS Data Pipeline. thanks Keith Barrette
|
173
|
+
Simple model tests. thanks Keith Barrette
|
174
|
+
Simple request tests. thanks Keith Barrette
|
175
|
+
Fix failing model tests. thanks Keith Barrette
|
176
|
+
Mark data pipeline tests pending if mocked. thanks Keith Barrette
|
177
|
+
Make compatible with Ruby 1.8.7. thanks Keith Barrette
|
178
|
+
Finished initial draft of Cloud Server docs. thanks Kyle Rames
|
179
|
+
updating Rackspace Cloud Server Documentation. thanks Kyle Rames
|
180
|
+
moving documents to another branch. thanks Kyle Rames
|
181
|
+
adding white space to force travis build. thanks Kyle Rames
|
182
|
+
refined examples; moved samples into cloud_servers sub directory. thanks Kyle Rames
|
183
|
+
moving examples; added readme. thanks Kyle Rames
|
184
|
+
tweaking example readme file. thanks Kyle Rames
|
185
|
+
tweaking examples document. thanks Kyle Rames
|
186
|
+
merging with latest master. thanks Kyle Rames
|
187
|
+
Adding Rackspace getting started and compute documents back in. thanks Kyle Rames
|
188
|
+
apply edits to Rackspace compute documents. thanks Kyle Rames
|
189
|
+
fixing links to anchors in Rackspace Compute doc. thanks Kyle Rames
|
190
|
+
fixing links to anchors in Rackspace Compute doc one more time. thanks Kyle Rames
|
191
|
+
fixing links to anchors in Rackspace Compute doc AGAIN. thanks Kyle Rames
|
192
|
+
fixing merge conflicts. thanks Kyle Rames
|
193
|
+
added 30 second timeout for SSH and SCP connect. thanks Kyle Rames
|
194
|
+
moved cloud servers examples to lib/fog/rackspace/examples/compute_v2; renamed cloud_servers.md to compute_v2.md. thanks Kyle Rames
|
195
|
+
rebased with master. thanks Kyle Rames
|
196
|
+
merging with the latest file_metadata. thanks Kyle Rames
|
197
|
+
rebasing cdn branch with latest master. thanks Kyle Rames
|
198
|
+
rebasing with master. thanks Kyle Rames
|
199
|
+
rebasing with master. thanks Kyle Rames
|
200
|
+
rebasing with master. thanks Kyle Rames
|
201
|
+
fixing broken tests. thanks Kyle Rames
|
202
|
+
Revert "[rackspace] adding accept headers to block_storage, cdn, compute_v2, databases, identity, load_balancers, storage". thanks Kyle Rames
|
203
|
+
Revert "Revert "[rackspace] adding accept headers to block_storage, cdn, compute_v2, databases, identity, load_balancers, storage"". thanks Kyle Rames
|
204
|
+
Follow redirection from response even if response is a Hash. thanks Marc G Gauthier
|
205
|
+
Set the User-Agent as Fog, to help differentiate from HP's CLI tools that have a vendored 'hpfog'. thanks Matt Ray
|
206
|
+
Make sure no requests are ever sent to the wrong endpoint by default. thanks Matt Sanders
|
207
|
+
Bump release to 0.0.7. thanks Matt Sanders
|
208
|
+
Remove matt as contact. thanks Matt Sanders
|
209
|
+
Bumped net-scp dependency to ~>1.1. thanks Michael D. Hall
|
210
|
+
remove unneeded url param. thanks Michał Krzyżanowski
|
211
|
+
Fix Mock#allocate_address method arity. thanks Mike Moore
|
212
|
+
Fix Mock#get_snapshot_details argument. thanks Mike Moore
|
213
|
+
Fix Mock#get_volume_details argument. thanks Mike Moore
|
214
|
+
Fix Mock#list_servers method arity. thanks Mike Moore
|
215
|
+
Fix Mock#remove_fixed_ip arguments. thanks Mike Moore
|
216
|
+
Fix Mock#update_server arguments. thanks Mike Moore
|
217
|
+
Removes docs since they are in wrong repo. thanks Paul Thornthwaite
|
218
|
+
Adds new Code Climate badge to README. thanks Paul Thornthwaite
|
219
|
+
Disables tests with race conditions affecting CI. thanks Paul Thornthwaite
|
220
|
+
Update gitignore and add a rvmrc file. thanks Rupak Ganguly
|
221
|
+
Add a new HP provider. thanks Rupak Ganguly
|
222
|
+
Add a case for the new HP provider. thanks Rupak Ganguly
|
223
|
+
Add a new HP provider. thanks Rupak Ganguly
|
224
|
+
Add a storage service implementation to the HP provider. thanks Rupak Ganguly
|
225
|
+
Add #get_containers, #get_container, #put_container and #delete_container methods to the storage service. thanks Rupak Ganguly
|
226
|
+
Add #head_containers and #head_container methods. thanks Rupak Ganguly
|
227
|
+
Enable #get, #put, #head and #delete object methods. thanks Rupak Ganguly
|
228
|
+
Add implementation for #get_object method. thanks Rupak Ganguly
|
229
|
+
Add implementation for #put_object method. thanks Rupak Ganguly
|
230
|
+
Add implementation for #head_object method. thanks Rupak Ganguly
|
231
|
+
Add implementation for #delete_object method. thanks Rupak Ganguly
|
232
|
+
Enable models layer methods and return nil from cdn call. thanks Rupak Ganguly
|
233
|
+
Add the directories model implementation. thanks Rupak Ganguly
|
234
|
+
Add the directory model implementation. thanks Rupak Ganguly
|
235
|
+
Add the files model implementation. thanks Rupak Ganguly
|
236
|
+
Add the file model implementation. thanks Rupak Ganguly
|
237
|
+
Add an implementation of copy method to copy files between containers. thanks Rupak Ganguly
|
238
|
+
Require HP provider for the fog binary. thanks Rupak Ganguly
|
239
|
+
Add a HP provider class for the fog binary. thanks Rupak Ganguly
|
240
|
+
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
|
241
|
+
Add the new hp_host, hp_port and hp_auth_path attributes and remove hp_auth_url. thanks Rupak Ganguly
|
242
|
+
Add a new HP provider for compute service. Note the new hp_host, hp_port and hp_auth_path attributes. thanks Rupak Ganguly
|
243
|
+
Add a case for the new HP provider for compute service. thanks Rupak Ganguly
|
244
|
+
Add the #list_servers method. thanks Rupak Ganguly
|
245
|
+
Enable #create_server, #list_servers and #list_servers_detail services for Nova. thanks Rupak Ganguly
|
246
|
+
Add implementation for #list_servers_detail. thanks Rupak Ganguly
|
247
|
+
Enable #list_images and #list_images_detail services. thanks Rupak Ganguly
|
248
|
+
Add implementation for #list_images service. thanks Rupak Ganguly
|
249
|
+
Add implementation for #list_images_detail service. thanks Rupak Ganguly
|
250
|
+
Enable #list_flavors and #list_flavors_detail services for Nova. thanks Rupak Ganguly
|
251
|
+
Add implementation for #list_flavors service. thanks Rupak Ganguly
|
252
|
+
Add implementation for #list_flavors_detail service. thanks Rupak Ganguly
|
253
|
+
Add implementation for #get_server_details service. thanks Rupak Ganguly
|
254
|
+
Add implementation for #get_image_details service. thanks Rupak Ganguly
|
255
|
+
Add implementation for #get_flavor_details service. thanks Rupak Ganguly
|
256
|
+
Enable #get_server_details, #get_image_details and #get_flavor_details services for Nova. thanks Rupak Ganguly
|
257
|
+
Add implementation for #create_server service. thanks Rupak Ganguly
|
258
|
+
Enable #create_image and #delete_image services. thanks Rupak Ganguly
|
259
|
+
Add implementation for #create_image service. thanks Rupak Ganguly
|
260
|
+
Add implementation for #delete_image service. thanks Rupak Ganguly
|
261
|
+
Enable the #create_server, #update_server and #delete_server services for Nova. thanks Rupak Ganguly
|
262
|
+
Update code with differences from Rackspace API and OS, to make it work with the Nova instance. thanks Rupak Ganguly
|
263
|
+
Add the implementation for #update_server services. thanks Rupak Ganguly
|
264
|
+
Add the implementation for #delete_server services. thanks Rupak Ganguly
|
265
|
+
Enable #list_addresses, #list_public_addresses and #list_private_addresses services for Nova. thanks Rupak Ganguly
|
266
|
+
Add implementation for #list_addresses service. thanks Rupak Ganguly
|
267
|
+
Add implementation for #list_public_addresses service. thanks Rupak Ganguly
|
268
|
+
Add implementation for #list_private_addresses service. thanks Rupak Ganguly
|
269
|
+
Enable #server_action, #reboot_server, #resize_server, #confirm_resized_server and #revert_resized services for Nova. thanks Rupak Ganguly
|
270
|
+
Add implementation for #server_action, #reboot_server, #resize_server, #confirm_resized_server and #revert_resized services. thanks Rupak Ganguly
|
271
|
+
Enable flavors and flavor models. thanks Rupak Ganguly
|
272
|
+
Add implementation for flavors and flavor model layer. thanks Rupak Ganguly
|
273
|
+
Enable images and image models. thanks Rupak Ganguly
|
274
|
+
Add implementation for images and image model layers. thanks Rupak Ganguly
|
275
|
+
Enable models for servers and server for Nova services. thanks Rupak Ganguly
|
276
|
+
Add implementaion for servers model. thanks Rupak Ganguly
|
277
|
+
Add implementaion for server model. thanks Rupak Ganguly
|
278
|
+
Refactor connection parameters to accept a single endpoint and credentials. thanks Rupak Ganguly
|
279
|
+
Refactor Nova connection parameters to accept a single endpoint and credentials. thanks Rupak Ganguly
|
280
|
+
Add a options hash so that headers can be passed in to set acls. thanks Rupak Ganguly
|
281
|
+
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
|
282
|
+
Add a helper method to convert a acl string to a header name/value pair that Swift understands. thanks Rupak Ganguly
|
283
|
+
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
|
284
|
+
Remove Content-Length header incase Transfer-Encoding header is present. This was done to get the streaming for PUT working. thanks Rupak Ganguly
|
285
|
+
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
|
286
|
+
Revise fog gemspec to reflect hpfog name and tag it with v0.0.6. thanks Rupak Ganguly
|
287
|
+
Add mocking support to Swift HP provider calls. thanks Rupak Ganguly
|
288
|
+
Add a public? method to query a directory's state. thanks Rupak Ganguly
|
289
|
+
Add header_to_acl helper method to convert an acl header into corresponding acl strings. thanks Rupak Ganguly
|
290
|
+
Retrieve acl headers if present and set the acl string on a directory. thanks Rupak Ganguly
|
291
|
+
Add a check to see if acl string is nil and if so set it to 'private'. thanks Rupak Ganguly
|
292
|
+
Change serverRef to serverId. This was a change from Rackspace API but has been sync'd upon now. thanks Rupak Ganguly
|
293
|
+
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
|
294
|
+
Fix DEVEX-634: Remove services that our out of scope. thanks Rupak Ganguly
|
295
|
+
Add CHANGELOG for HP specific fog extensions. thanks Rupak Ganguly
|
296
|
+
Add README with documentation for HP specific fog extensions. thanks Rupak Ganguly
|
297
|
+
Bump version. thanks Rupak Ganguly
|
298
|
+
Fix differences that were there in OS API. thanks Rupak Ganguly
|
299
|
+
Add special char. support including '?' in container and object names. thanks Rupak Ganguly
|
300
|
+
Add a helper method to expose some base info. for clients. thanks Rupak Ganguly
|
301
|
+
Bump version and update changelog. thanks Rupak Ganguly
|
302
|
+
Fix bug DEVEX-1296. Encode container and object names for public_url. thanks Rupak Ganguly
|
303
|
+
Update changelog. thanks Rupak Ganguly
|
304
|
+
Update date for release. thanks Rupak Ganguly
|
305
|
+
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
|
306
|
+
Change expected status to be 204 instead of 202. thanks Rupak Ganguly
|
307
|
+
Change expected status to be 204 instead of 200. thanks Rupak Ganguly
|
308
|
+
Update date for fog merge with upstream milestone. thanks Rupak Ganguly
|
309
|
+
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
|
310
|
+
Remove deprecated provider recognize clause. thanks Rupak Ganguly
|
311
|
+
Enable HP CDN provider. thanks Rupak Ganguly
|
312
|
+
Integrate HP CDN service with storage service. thanks Rupak Ganguly
|
313
|
+
Fix small bug with returning public url in the case when cdn is used. thanks Rupak Ganguly
|
314
|
+
Add initial implementation for cdn services i.e. GET, PUT, POST, HEAD and DELETE. thanks Rupak Ganguly
|
315
|
+
Hardcode X-Storage-Url as service is returning wrong url. thanks Rupak Ganguly
|
316
|
+
Assign hp_auth_uri to an instance var. so that CDN can use it. thanks Rupak Ganguly
|
317
|
+
Enable delete_container on the CDN service. thanks Rupak Ganguly
|
318
|
+
Add fix for special chars. in CDN-enabled container names. thanks Rupak Ganguly
|
319
|
+
Catch new exception that is being thrown. thanks Rupak Ganguly
|
320
|
+
Update code to call delete_container if CDN is enabled. thanks Rupak Ganguly
|
321
|
+
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
|
322
|
+
Remove CDN integration from within Storage service, till CDN service is more mature. thanks Rupak Ganguly
|
323
|
+
Update image and images model, and create_image call now uses server_action. Behavior change in Diablo 4. thanks Rupak Ganguly
|
324
|
+
Add new request layer method for rebuild_server and enable it for compute services. Behavior added in Diablo 4. thanks Rupak Ganguly
|
325
|
+
Enable new compute services. thanks Rupak Ganguly
|
326
|
+
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
|
327
|
+
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
|
328
|
+
Remove resize related calls as they are not fully functional yet. thanks Rupak Ganguly
|
329
|
+
Update changelog for 0.0.10 tagged version. thanks Rupak Ganguly
|
330
|
+
Add a new option for CDN endpoint url and build the CDN mgmt url. thanks Rupak Ganguly
|
331
|
+
Add a new cdn uri to the Storage service to enable a CDN service from within the Storage service. thanks Rupak Ganguly
|
332
|
+
Update destroy and save methods to call appropriate CDN counterparts when CDN service is available and enabled. thanks Rupak Ganguly
|
333
|
+
Add some new attributes. Fix image_id and flavor_id getters. thanks Rupak Ganguly
|
334
|
+
Add request and model methods for change_password_server, and enable it for compute. thanks Rupak Ganguly
|
335
|
+
Add list_key_pairs compute request layer method, and mocks for it as well. thanks Rupak Ganguly
|
336
|
+
Add some mocking helper methods. thanks Rupak Ganguly
|
337
|
+
Fix issue with list in mock mode. thanks Rupak Ganguly
|
338
|
+
Enable create_key_pair service for compute. Add key_pairs array for mocking support. thanks Rupak Ganguly
|
339
|
+
Add implementation for creating keypair and also provide mocking support. thanks Rupak Ganguly
|
340
|
+
Remove a debug message. thanks Rupak Ganguly
|
341
|
+
Fix param name. thanks Rupak Ganguly
|
342
|
+
Enable delete_key_pair request method and implement it, along with mocking support. thanks Rupak Ganguly
|
343
|
+
Enable and implement key pairs model layer for compute service. thanks Rupak Ganguly
|
344
|
+
Add implementation for list_security_groups request layer method and enable it for compute services. Add mocking support as well. thanks Rupak Ganguly
|
345
|
+
Fix a small typo in mocks. thanks Rupak Ganguly
|
346
|
+
Enable and implemented create_security_groups method for request layer for compute services. thanks Rupak Ganguly
|
347
|
+
Fix code to remove from last modified hash afetr delete in mock code. thanks Rupak Ganguly
|
348
|
+
Use id instead of name to index the security groups hash in mock data structure. thanks Rupak Ganguly
|
349
|
+
Enable and implemented delete_security_groups method in requets layer for compute services. thanks Rupak Ganguly
|
350
|
+
Enable and implement create, get and delete security group methods for compute service. thanks Rupak Ganguly
|
351
|
+
Enable and add the security groups model layer implementation for the compute services. thanks Rupak Ganguly
|
352
|
+
Enable and add implementation for create security group rules for compute service. thanks Rupak Ganguly
|
353
|
+
Fix bugs in mocking support. thanks Rupak Ganguly
|
354
|
+
Small fix in mocks. thanks Rupak Ganguly
|
355
|
+
Enable and implement delete security group rules for compute service. thanks Rupak Ganguly
|
356
|
+
Add security group rule methods to security group model. thanks Rupak Ganguly
|
357
|
+
Fix create_rule to return response instead of boolean. thanks Rupak Ganguly
|
358
|
+
Add helper methods for mocking. thanks Rupak Ganguly
|
359
|
+
Enable and implement allocate address with mocking support for compute services. thanks Rupak Ganguly
|
360
|
+
Add options for keyname, security group and availability zone. thanks Rupak Ganguly
|
361
|
+
Enable and add implementation for release address for request layer for the compute service. thanks Rupak Ganguly
|
362
|
+
Fix documentation. thanks Rupak Ganguly
|
363
|
+
Enable and implement get address for request layer along with mocking support for the compute service. thanks Rupak Ganguly
|
364
|
+
Rename these to add a server prefix as they pertain to server addresses. thanks Rupak Ganguly
|
365
|
+
Enable and implement list addresses for request layer for the compute service. thanks Rupak Ganguly
|
366
|
+
Enable and implement the address model layer for the compute service. thanks Rupak Ganguly
|
367
|
+
Fix the documentation. thanks Rupak Ganguly
|
368
|
+
Enable and add associating and disassociating addresses to a server instance in the request layer for the compute service. thanks Rupak Ganguly
|
369
|
+
Add new attributes and revise addresses hash structure for the mock. thanks Rupak Ganguly
|
370
|
+
Fix doc, and status. thanks Rupak Ganguly
|
371
|
+
Revise implementation for returning private and public ip addresses for a given server, along with mocking support. thanks Rupak Ganguly
|
372
|
+
Revise mocking support to manage ip address collection in servers. thanks Rupak Ganguly
|
373
|
+
Add server attribute to associate and disassociate a server to an address. thanks Rupak Ganguly
|
374
|
+
Remove some attributes from object. thanks Rupak Ganguly
|
375
|
+
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
|
376
|
+
Update the server model to support passing in keypairs and security groups. thanks Rupak Ganguly
|
377
|
+
Fix some verbiage and update some links. thanks Rupak Ganguly
|
378
|
+
Remove instance_id as an accessor. thanks Rupak Ganguly
|
379
|
+
Add vcpus as an attribute. thanks Rupak Ganguly
|
380
|
+
Add back some attributes. thanks Rupak Ganguly
|
381
|
+
Update inline docs to add some params. thanks Rupak Ganguly
|
382
|
+
Update changelog with changes for this version release. thanks Rupak Ganguly
|
383
|
+
Bump version to 0.0.11. thanks Rupak Ganguly
|
384
|
+
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
|
385
|
+
Retrofit HP Storage provider to work with both legacy and CS authentication schemes. thanks Rupak Ganguly
|
386
|
+
Refactor code to get endpoints from service catalog for v1 and v2 auths. thanks Rupak Ganguly
|
387
|
+
Update Storage provider to work with v1 and v2 auths. thanks Rupak Ganguly
|
388
|
+
Update CDN provider to work with v1 and v2 auths. Also, patch code for incorrect endpoint via CS catalog. thanks Rupak Ganguly
|
389
|
+
Update for cdn endpoint fix in place. thanks Rupak Ganguly
|
390
|
+
Update inline docs as per real responses. thanks Rupak Ganguly
|
391
|
+
Update CDN integration with Storage with respect to CS authentication. thanks Rupak Ganguly
|
392
|
+
Update HP Compute provider to use CS authentication and retrofit code to use v1 auth as well. thanks Rupak Ganguly
|
393
|
+
Add cdn_enabled?, cdn_enable= and cdn_public_url for directory model. Also, add cdn_public_url for file model. thanks Rupak Ganguly
|
394
|
+
Add connection_options for AWS Compute provider. thanks Rupak Ganguly
|
395
|
+
Refactor to remove service_type param from provider call. thanks Rupak Ganguly
|
396
|
+
Update inline documentation. thanks Rupak Ganguly
|
397
|
+
Escape the key in the call. thanks Rupak Ganguly
|
398
|
+
Remove bits and cores from flavor. thanks Rupak Ganguly
|
399
|
+
Add cores as an attribute to alias vcpus. thanks Rupak Ganguly
|
400
|
+
Add some attributes that are implemented as methods. thanks Rupak Ganguly
|
401
|
+
Add copyright message for HP extensions for fog. thanks Rupak Ganguly
|
402
|
+
Bump version and update changelog. thanks Rupak Ganguly
|
403
|
+
Update copyright notice. thanks Rupak Ganguly
|
404
|
+
Update inline documentation. thanks Rupak Ganguly
|
405
|
+
Fix for auth uri using Identity service. thanks Rupak Ganguly
|
406
|
+
Add parameter :hp_avl_zone to access the az2 availability zone to the HP Compute provider. thanks Rupak Ganguly
|
407
|
+
Bump version and update changelog. thanks Rupak Ganguly
|
408
|
+
Bump version and update changelog. thanks Rupak Ganguly
|
409
|
+
Bump version and update changelog. thanks Rupak Ganguly
|
410
|
+
Add key_pair get/set methods for server model. thanks Rupak Ganguly
|
411
|
+
Hack to fix public_ip_address. thanks Rupak Ganguly
|
412
|
+
Fix for Fog::HP::CDN::NotFound exception. thanks Rupak Ganguly
|
413
|
+
Update public_ip_address method to return first public ip address. thanks Rupak Ganguly
|
414
|
+
Bump version and update changelog. thanks Rupak Ganguly
|
415
|
+
Add an Errors module for handling HP provider specific exceptions. thanks Rupak Ganguly
|
416
|
+
Refactor escape method for container and object names and move it to the HP provider from individual namespaces. thanks Rupak Ganguly
|
417
|
+
Remove obsolete method. thanks Rupak Ganguly
|
418
|
+
Remove bad service. thanks Rupak Ganguly
|
419
|
+
Fix mock to return integer value for count. thanks Rupak Ganguly
|
420
|
+
Raise the correct exception in the mock. thanks Rupak Ganguly
|
421
|
+
Add HP provider and credentials to support testing with mocks. thanks Rupak Ganguly
|
422
|
+
Fix mocks to match real implementation. thanks Rupak Ganguly
|
423
|
+
Add object tests for storage. thanks Rupak Ganguly
|
424
|
+
Add mocking support for copy operation using puut object. thanks Rupak Ganguly
|
425
|
+
Add more tests for containers and objects. thanks Rupak Ganguly
|
426
|
+
Fix an issue in copy mocking portion. thanks Rupak Ganguly
|
427
|
+
Add test for copy objects. thanks Rupak Ganguly
|
428
|
+
Add test for copying from one container to another. thanks Rupak Ganguly
|
429
|
+
Fix format of flavors in mocks. thanks Rupak Ganguly
|
430
|
+
Add tests for flavor. thanks Rupak Ganguly
|
431
|
+
Add implementation for mocks. thanks Rupak Ganguly
|
432
|
+
Add mocking support. thanks Rupak Ganguly
|
433
|
+
Minor fix for mocks. thanks Rupak Ganguly
|
434
|
+
Add tests for images. thanks Rupak Ganguly
|
435
|
+
Update mocking support. thanks Rupak Ganguly
|
436
|
+
Add tests for server requests. thanks Rupak Ganguly
|
437
|
+
Update mocking support. thanks Rupak Ganguly
|
438
|
+
Add tests for addresses and floating ips. thanks Rupak Ganguly
|
439
|
+
Fix minor things in tests. thanks Rupak Ganguly
|
440
|
+
Update mocking support. thanks Rupak Ganguly
|
441
|
+
Add tests for keypairs. thanks Rupak Ganguly
|
442
|
+
Update mocking support for security groups. thanks Rupak Ganguly
|
443
|
+
Add tests for security groups. thanks Rupak Ganguly
|
444
|
+
Update mocking support for security groups and security group rules. thanks Rupak Ganguly
|
445
|
+
Add tests for security group rules. thanks Rupak Ganguly
|
446
|
+
Fix mocks for create_key_pair. thanks Rupak Ganguly
|
447
|
+
Fix mocks for list_key_pairs. thanks Rupak Ganguly
|
448
|
+
Fix format for list_key_pairs. thanks Rupak Ganguly
|
449
|
+
Add tests for address model and addresses collection. thanks Rupak Ganguly
|
450
|
+
Add HP provider in the helper. thanks Rupak Ganguly
|
451
|
+
Add tests for key_pair model and key_pairs collection. thanks Rupak Ganguly
|
452
|
+
Add tests for security group model and collection. thanks Rupak Ganguly
|
453
|
+
Add HP credential params. thanks Rupak Ganguly
|
454
|
+
Add HP credential params for mocking support. thanks Rupak Ganguly
|
455
|
+
Add mocking support for HP CDN provider. thanks Rupak Ganguly
|
456
|
+
Add tests for CDN containers. thanks Rupak Ganguly
|
457
|
+
Update mocks to simulate real results in containers. thanks Rupak Ganguly
|
458
|
+
Update tests and mocks based on real pro data. thanks Rupak Ganguly
|
459
|
+
Update tests and mock formats based on real pro data. thanks Rupak Ganguly
|
460
|
+
Update mocks to simulate real behavior. thanks Rupak Ganguly
|
461
|
+
Update key pair tests to work with real pro results. thanks Rupak Ganguly
|
462
|
+
Update mocks to simulate real results. thanks Rupak Ganguly
|
463
|
+
Update mocks and tests to simulate real results. thanks Rupak Ganguly
|
464
|
+
Update mocks and tests to simulate real results. thanks Rupak Ganguly
|
465
|
+
Update mocks and tests for flavor to simulate real results. thanks Rupak Ganguly
|
466
|
+
Update mocks and tests to simulate real calls in pro. thanks Rupak Ganguly
|
467
|
+
Update mocks for address in create_server and corresponding tests. thanks Rupak Ganguly
|
468
|
+
Add hp_tenant_id as a required param for connection to HP providers. thanks Rupak Ganguly
|
469
|
+
Update default scheme from http to https in the v1 auth. thanks Rupak Ganguly
|
470
|
+
Add uuid and links atrributes to the list servers mock. thanks Rupak Ganguly
|
471
|
+
Pass connection_options hash to the cdn connection in the storage provider. thanks Rupak Ganguly
|
472
|
+
Fix a bug where cdn state was not preserved. thanks Rupak Ganguly
|
473
|
+
Add helper method for cdn public ssl url and remove check for hp_cdn_ssl flag. thanks Rupak Ganguly
|
474
|
+
Add helper method for cdn public url for file. thanks Rupak Ganguly
|
475
|
+
Add helper method to get cdn ssl url for the files collection. thanks Rupak Ganguly
|
476
|
+
Add and enable get_console_output request method and add server method console_output. Add test for get_console_output. thanks Rupak Ganguly
|
477
|
+
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
|
478
|
+
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
|
479
|
+
Add availability zone required parameter for storage and cdn services. thanks Rupak Ganguly
|
480
|
+
Add availability zone required parameter for storage and cdn services. thanks Rupak Ganguly
|
481
|
+
Minor fix. thanks Rupak Ganguly
|
482
|
+
Add security_groups attribute to the server model. thanks Rupak Ganguly
|
483
|
+
Change hp_service_type to check for 'name' in the service catalog rather than 'type'. thanks Rupak Ganguly
|
484
|
+
Update tests to reflect addition of security_groups attribute to server model. thanks Rupak Ganguly
|
485
|
+
Update to not raise exception if service is not active or not present. thanks Rupak Ganguly
|
486
|
+
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
|
487
|
+
Add request layer code for metadata. thanks Rupak Ganguly
|
488
|
+
Update mocking support for metadata to match real responses. thanks Rupak Ganguly
|
489
|
+
Add tests for metadata requests methods. thanks Rupak Ganguly
|
490
|
+
Minor fix to mocks. thanks Rupak Ganguly
|
491
|
+
Add metadata models support. Also, include metadata attribute in server and image models, to manage metadata. thanks Rupak Ganguly
|
492
|
+
Add some more metadata requests tests. thanks Rupak Ganguly
|
493
|
+
Minor fix and add a destroy method. thanks Rupak Ganguly
|
494
|
+
Add metadata tests for servers and images. thanks Rupak Ganguly
|
495
|
+
Fix code to metadata to the create image call. thanks Rupak Ganguly
|
496
|
+
Add an attribute for network_name to make it easy to switch. thanks Rupak Ganguly
|
497
|
+
Add a multi_json require so that json parsing is available. thanks Rupak Ganguly
|
498
|
+
Bump version and update changelog. thanks Rupak Ganguly
|
499
|
+
Update call to include response_block rather than passing a block, to conform to excon deprecation message. thanks Rupak Ganguly
|
500
|
+
Add attributes to image model by extracting them from metadata. thanks Rupak Ganguly
|
501
|
+
Add a BlockStorage service to the HP provider. thanks Rupak Ganguly
|
502
|
+
Add list_volumes for block storage. thanks Rupak Ganguly
|
503
|
+
Add get_volume_details request method for block storage. thanks Rupak Ganguly
|
504
|
+
Add delete_volumes request method for block storage. thanks Rupak Ganguly
|
505
|
+
Add create_volume request method for block storage service. thanks Rupak Ganguly
|
506
|
+
Add ability to send in metadata to create_volume request method. thanks Rupak Ganguly
|
507
|
+
Fix mock for tests. thanks Rupak Ganguly
|
508
|
+
Fix typo in service folder. thanks Rupak Ganguly
|
509
|
+
Add the block storage service to the binary. thanks Rupak Ganguly
|
510
|
+
Fix mock for tests. thanks Rupak Ganguly
|
511
|
+
Add shindo tests for requests methods for block storage. thanks Rupak Ganguly
|
512
|
+
Add server attach block storage request methods. thanks Rupak Ganguly
|
513
|
+
Add list_server_volumes request method for block storage service. thanks Rupak Ganguly
|
514
|
+
Add attach_volume request method for block storage service. thanks Rupak Ganguly
|
515
|
+
Add detach_volume request method for block storage service. thanks Rupak Ganguly
|
516
|
+
Add shindo tests for server volume request methdos for block storage service. thanks Rupak Ganguly
|
517
|
+
Add volume model and volumes collection for block storage service. thanks Rupak Ganguly
|
518
|
+
Add shindo tests for volume models and collection. thanks Rupak Ganguly
|
519
|
+
Fix mock to provide correct status after creation. thanks Rupak Ganguly
|
520
|
+
Add a compute service attribute to peek into the compute service from within the block_storage service. thanks Rupak Ganguly
|
521
|
+
Add attach and detach methods to the volume model using the compute service attribute. thanks Rupak Ganguly
|
522
|
+
Add shindo tests for attach and detach. thanks Rupak Ganguly
|
523
|
+
Fix mock. Fix tests for mocking and real modes. thanks Rupak Ganguly
|
524
|
+
Add a head method for the directories collection. thanks Rupak Ganguly
|
525
|
+
Upgrade to excon 0.14.0 to take advantage of the new StandardInstrumentor for debug use. thanks Rupak Ganguly
|
526
|
+
Capture hp_auth_uri for passing down to compute provider. thanks Rupak Ganguly
|
527
|
+
Add a list_snapshot request method, a corresponding mock, and add support for it in the block storage provider. thanks Rupak Ganguly
|
528
|
+
Add a create_snapshot request method, a corresponding mock, and add support for it in the block storage provider. thanks Rupak Ganguly
|
529
|
+
Minor fix to the inline help. thanks Rupak Ganguly
|
530
|
+
Add a get_snapshot_details request method, a corresponding mock, and add support for it in the block storage provider. thanks Rupak Ganguly
|
531
|
+
Add a delete_snapshot request method, a corresponding mock, and add support for it in the block storage provider. thanks Rupak Ganguly
|
532
|
+
Add shindo tests for snapshots request layer methods. thanks Rupak Ganguly
|
533
|
+
Minor update to inline help. thanks Rupak Ganguly
|
534
|
+
Add snapshot model and collection to bloack storage provider. thanks Rupak Ganguly
|
535
|
+
Add snapshot model/collection and corresponding tests. thanks Rupak Ganguly
|
536
|
+
Add user_agent string to the core fog connection with corresponding tests. thanks Rupak Ganguly
|
537
|
+
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
|
538
|
+
Add volume_attachments to server model. thanks Rupak Ganguly
|
539
|
+
Bump version to 0.0.16 and update changelog. thanks Rupak Ganguly
|
540
|
+
Removed 'server' attribute from server model, and fixed 'all' method. thanks Rupak Ganguly
|
541
|
+
Removed 'images' attribute from server model. thanks Rupak Ganguly
|
542
|
+
Fix version info. that is used by user-agent. thanks Rupak Ganguly
|
543
|
+
Add object temp url generation capability with mock support. thanks Rupak Ganguly
|
544
|
+
Add object temp url functionality to file model layer. thanks Rupak Ganguly
|
545
|
+
Add request layer tests for object_temp_url functionality. thanks Rupak Ganguly
|
546
|
+
Add tenant_id to the mix to tighten security for the temp_url generation. thanks Rupak Ganguly
|
547
|
+
Update mock for tenp_url. thanks Rupak Ganguly
|
548
|
+
Call the request layer method instead of the generic util method. thanks Rupak Ganguly
|
549
|
+
Add model tests for storage service. thanks Rupak Ganguly
|
550
|
+
Add the request layer method to extract the windows password from the console log in case of a windows instance. thanks Rupak Ganguly
|
551
|
+
Update the server model with a method to retrieve the windows password. thanks Rupak Ganguly
|
552
|
+
Update the get_windows_password to return the encrypted password instead of the decrypted one. thanks Rupak Ganguly
|
553
|
+
Add grant, revoke and list methods for cross tenant object acls implementation. thanks Rupak Ganguly
|
554
|
+
Add request layer methods for shared container and shared object access. thanks Rupak Ganguly
|
555
|
+
Bump version and update changelog. thanks Rupak Ganguly
|
556
|
+
Fix response status for mocks. thanks Rupak Ganguly
|
557
|
+
Add mocks for shared container and objects calls. thanks Rupak Ganguly
|
558
|
+
Add a new exception class and handled exceptions in exception messages. thanks Rupak Ganguly
|
559
|
+
Add request method for put_shared_object. Add model and collection for shared_directory and shared_file. thanks Rupak Ganguly
|
560
|
+
Refactor common code into separate method. thanks Rupak Ganguly
|
561
|
+
Fix mock for put_container to reflect new acl changes. thanks Rupak Ganguly
|
562
|
+
Fix head call to return an empty body. thanks Rupak Ganguly
|
563
|
+
Removed comment. thanks Rupak Ganguly
|
564
|
+
Minor fix to allow options on save to pass in metadata. thanks Rupak Ganguly
|
565
|
+
Add method all. thanks Rupak Ganguly
|
566
|
+
Add methods for destroy and save. thanks Rupak Ganguly
|
567
|
+
Add method for destroy. thanks Rupak Ganguly
|
568
|
+
Add request layer method for put_shared_container. thanks Rupak Ganguly
|
569
|
+
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
|
570
|
+
Allow the models to raise exception when there is insufficient access. thanks Rupak Ganguly
|
571
|
+
Add delete_shared_object and corresponding model support. thanks Rupak Ganguly
|
572
|
+
Update inline documentation. thanks Rupak Ganguly
|
573
|
+
Update method to remove availability_zone as input data parameter. thanks Rupak Ganguly
|
574
|
+
Allows creation of bootable volumes by passing in single part images. thanks Rupak Ganguly
|
575
|
+
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
|
576
|
+
Fix failing shindo tests. thanks Rupak Ganguly
|
577
|
+
Fix some null checks. thanks Rupak Ganguly
|
578
|
+
Add request layer methods for listing and getting bootable volumes. thanks Rupak Ganguly
|
579
|
+
Update volume model and collection to handle bootable volumes as well. thanks Rupak Ganguly
|
580
|
+
Add code to accept config_drive and block_device_mapping parameters while creating a server instance. thanks Rupak Ganguly
|
581
|
+
Move CHANGELOG.hp under hp folder. thanks Rupak Ganguly
|
582
|
+
Bump the version and update the changelog. thanks Rupak Ganguly
|
583
|
+
Fix public_key attribute to be visible in table. thanks Rupak Ganguly
|
584
|
+
Add create_persistent_server request layer method to compute service. Add mocks and tests as well. thanks Rupak Ganguly
|
585
|
+
Remove block_device_mapping param from create_server request method call. thanks Rupak Ganguly
|
586
|
+
Add capability of creating regular and persistent servers via the server model. Make image_id an optional parameter for creating servers. thanks Rupak Ganguly
|
587
|
+
Add bootable_volumes collection for managing only bootable volumes. thanks Rupak Ganguly
|
588
|
+
Remove bootable volumes list and get methods and moved them under the bootable_volumes collection. thanks Rupak Ganguly
|
589
|
+
Update changelog and release date. thanks Rupak Ganguly
|
590
|
+
Updated the BlockStorage namespace to be Fog::HP::BlockStorage. thanks Rupak Ganguly
|
591
|
+
Updated the tests to reflect the BlockStorage namespace changes. thanks Rupak Ganguly
|
592
|
+
Fix case where invalid CDN endpoint was causing issues. thanks Rupak Ganguly
|
593
|
+
Update to new code and tests based on changes from upstream fog. thanks Rupak Ganguly
|
594
|
+
Deprecate hp_account_id to use hp_access_key instead. thanks Rupak Ganguly
|
595
|
+
Fix fog.gemspec. thanks Rupak Ganguly
|
596
|
+
* [dreamhost|dns] initial import. thanks Sergio Rubio
|
597
|
+
Switch gem source to https://rubygems.org. thanks Sergio Rubio
|
598
|
+
A whitespace fix :v:. thanks Simon Gate
|
599
|
+
add install.txt. thanks Terry Howe
|
600
|
+
remove file. thanks Terry Howe
|
601
|
+
Update put_object to accept blocks, and remove deprecation message. thanks Terry Howe
|
602
|
+
Fix warning. thanks William Lawson
|
603
|
+
version. thanks William Lawson
|
604
|
+
reverse version change. thanks William Lawson
|
605
|
+
joyent resize smartmachine incorrect class type. thanks angus
|
606
|
+
Typo in instantiate_vapp_template.rb. thanks dJason
|
607
|
+
fix for user agent tests excon usage. thanks geemus
|
608
|
+
fixed bug, quantum api need no underscore valiable name. (ex floatingips. thanks kanetann
|
609
|
+
Update lib/fog/ecloud/requests/compute/virtual_machine_create_from_template.rb. thanks tipt0e
|
610
|
+
Fog::Vsphere::Compute - misspelled method 'get_vm_by_ref' in vm_reconfig_hardware. thanks tipt0e
|
611
|
+
|
612
|
+
[openstack]
|
613
|
+
Register the image service. thanks Anshul Khandelwal
|
614
|
+
string interpolation problem image create fixes #1493. thanks Ruben Koster
|
615
|
+
|
616
|
+
[openstack|compute]
|
617
|
+
fix get_metadata call. thanks Ben Bleything
|
618
|
+
rename meta_hash to to_hash; make it public. thanks Ben Bleything
|
619
|
+
adds methods to retireve floating & fixed ip addresses. thanks Ohad Levy
|
620
|
+
ensures we clear ipaddresses cache upload reload. thanks Ohad Levy
|
621
|
+
configurable :openstack_endpoint_type. thanks Sergio Rubio
|
622
|
+
images collection should not return nil for #all. thanks Sergio Rubio
|
623
|
+
|
624
|
+
[openstack|identity]
|
625
|
+
Marks test as pending. thanks Paul Thornthwaite
|
626
|
+
Configurable :openstack_endpoint_type. thanks Sergio Rubio
|
627
|
+
user model tests fixes. thanks Sergio Rubio
|
628
|
+
cleanup the test role when no longer in use. thanks Sergio Rubio
|
629
|
+
|
630
|
+
[openstack|network]
|
631
|
+
Added missing Network model attributes. thanks Sergio Rubio
|
632
|
+
|
633
|
+
[openstack|storage]
|
634
|
+
intial import. thanks Sergio Rubio
|
635
|
+
added OpenStack Storage to lib/fog/storage.rb. thanks Sergio Rubio
|
636
|
+
Added OpenStack.escape utility method. thanks Sergio Rubio
|
637
|
+
Added storage service to lib/fog/bin/openstack.rb. thanks Sergio Rubio
|
638
|
+
Added OpenStack Storage service tests. thanks Sergio Rubio
|
639
|
+
configurable service_type and service_name. thanks Sergio Rubio
|
640
|
+
added openstack_tenant and openstack_region params. thanks Sergio Rubio
|
641
|
+
replace 'object_store' service type with 'object-store'. thanks Sergio Rubio
|
642
|
+
|
643
|
+
[openstack|volume]
|
644
|
+
Configurable :openstack_endpoint_type. thanks Sergio Rubio
|
645
|
+
remove extra comma. thanks Sergio Rubio
|
646
|
+
Added missing service declaration. thanks Sergio Rubio
|
647
|
+
|
648
|
+
[ovirt]
|
649
|
+
Add support for reading the oVirt api version. thanks Amos Benari
|
650
|
+
Added support for oVirt volume status. thanks Amos Benari
|
651
|
+
Updated the blocking start logic to fit oVirt 3.1 api. thanks Amos Benari
|
652
|
+
|
653
|
+
[rackspace]
|
654
|
+
adding accept headers to block_storage, cdn, compute_v2, databases, identity, load_balancers, storage. thanks Kyle Rames
|
655
|
+
fixing merge. thanks Kyle Rames
|
656
|
+
|
657
|
+
[rackspace|cdn]
|
658
|
+
implemented purge object from CDN; added CDN tests and mocks. thanks Kyle Rames
|
659
|
+
more refactoring. thanks Kyle Rames
|
660
|
+
more refactoring of cdn. thanks Kyle Rames
|
661
|
+
|
662
|
+
[rackspace|compute]
|
663
|
+
Fix typo in attachments model. thanks Brad Gignac
|
664
|
+
Handle malformed API responses. thanks Brad Gignac
|
665
|
+
Update server to use default networks. thanks Brad Gignac
|
666
|
+
Allow custom network on server. thanks Brad Gignac
|
667
|
+
this should address a metadata issue discovered in chef http://tickets.opscode.com/browse/KNIFE-217. thanks Kyle Rames
|
668
|
+
this should address a metadata issue discovered in chef http://tickets.opscode.com/browse/KNIFE-217(cherry picked from commit a859b9ecf550469ac43ea35402785dad59d7c7f2). thanks Kyle Rames
|
669
|
+
added create server example. thanks Kyle Rames
|
670
|
+
Adding more cloud server examples. thanks Kyle Rames
|
671
|
+
tweaking examples. thanks Kyle Rames
|
672
|
+
fixing typo in metadata class. thanks Kyle Rames
|
673
|
+
fixing connection deprecation warnings. thanks Kyle Rames
|
674
|
+
Adding API documentation. thanks Kyle Rames
|
675
|
+
updated to check for public_ip_address instead of ip4_address as setup uses the public_ip_address. thanks Kyle Rames
|
676
|
+
removed timeout from bootstrap method signature and hard coded it in method per geemus. thanks Kyle Rames
|
677
|
+
added test for put_container with an optional parameter. thanks Kyle Rames
|
678
|
+
updated mocking framework to support any flavor or image. thanks Kyle Rames
|
679
|
+
remove erroneous block argument to get_object fixes #1588. thanks geemus
|
680
|
+
|
681
|
+
[rackspace|compute_v2]
|
682
|
+
fixing merge issues; added metadata test for servers. thanks Kyle Rames
|
683
|
+
Added note indicating that RackConnect users should use Server personalization rather than the bootstrap method. thanks Kyle Rames
|
684
|
+
fixing bootstrap example. thanks Kyle Rames
|
685
|
+
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
|
686
|
+
|
687
|
+
[rackspace|database]
|
688
|
+
remove extraneous colon. thanks Kyle Rames
|
689
|
+
|
690
|
+
[rackspace|databases]
|
691
|
+
removed trailing stash from hard coded endpoints; added accept header. thanks Kyle Rames
|
692
|
+
|
693
|
+
[rackspace|dns]
|
694
|
+
added tests for zones.find. thanks Brian Hartsock
|
695
|
+
fix issue in zones.find where results with no links throw exception. thanks Brian Hartsock
|
696
|
+
|
697
|
+
[rackspace|identity]
|
698
|
+
Correctly populate model from request data. thanks Brad Gignac
|
699
|
+
Remove unused get_credentials request. thanks Brad Gignac
|
700
|
+
|
701
|
+
[rackspace|lb]
|
702
|
+
fixed issue where double paths cause API errors. thanks Brian Hartsock
|
703
|
+
removed puts. thanks Brian Hartsock
|
704
|
+
|
705
|
+
[rackspace|networks]
|
706
|
+
Add Cloud Networks requests. thanks Brad Gignac
|
707
|
+
Add networks model and collection. thanks Brad Gignac
|
708
|
+
Add mock responses. thanks Brad Gignac
|
709
|
+
|
710
|
+
[rackspace|storage]
|
711
|
+
refactored storage/cdn. thanks Kyle Rames
|
712
|
+
fixed issue in ruby 1.8.7 where metadata was not being deleted when set to nil. thanks Kyle Rames
|
713
|
+
tweaked directory implementation; added directory model tests. thanks Kyle Rames
|
714
|
+
updating to return true after saving directory. thanks Kyle Rames
|
715
|
+
added support for container metadata; added directory tests. thanks Kyle Rames
|
716
|
+
Cloud Files will not process a header without a value so I added a stand in value for nil. thanks Kyle Rames
|
717
|
+
added delete method to metadata. thanks Kyle Rames
|
718
|
+
removing test of dubious distinction per geemus. thanks Kyle Rames
|
719
|
+
updated file class to use the same metadata implementation as the directory class. thanks Kyle Rames
|
720
|
+
added test to check for metadata on object creation; tweaked metadata on object creation test. thanks Kyle Rames
|
721
|
+
updated metadata class to decode incoming header values using FOG::JSON. thanks Kyle Rames
|
722
|
+
fixing Metadata#respond_to? method. thanks Kyle Rames
|
723
|
+
updated directory to lazy load metadata when necessary. thanks Kyle Rames
|
724
|
+
added tests for metadata class; fixed bug with method missing. thanks Kyle Rames
|
725
|
+
updated file class to use the same metadata implementation as the directory class. thanks Kyle Rames
|
726
|
+
added test to check for metadata on object creation; tweaked metadata on object creation test. thanks Kyle Rames
|
727
|
+
updated metadata class to decode incoming header values using FOG::JSON. thanks Kyle Rames
|
728
|
+
rebased with dir_metadata branch - https://github.com/fog/fog/pull/1563. thanks Kyle Rames
|
729
|
+
added ios_url and streaming_url methods to directory and file; added more tests. thanks Kyle Rames
|
730
|
+
added account model. thanks Kyle Rames
|
731
|
+
removing type conversion for metadata per https://github.com/fog/fog/pull/1587. thanks Kyle Rames
|
732
|
+
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
|
733
|
+
|
734
|
+
[tests]
|
735
|
+
Updates format tests. thanks Paul Thornthwaite
|
736
|
+
Changes to format testing helper. thanks Paul Thornthwaite
|
737
|
+
Extracts schema validator to class. thanks Paul Thornthwaite
|
738
|
+
Fixes schema validator for arrays. thanks Paul Thornthwaite
|
739
|
+
|
740
|
+
[virtualbox]
|
741
|
+
Removed VirtualBox since it has many problems and the gem it's based on is no longer maintained. thanks Kevin Menard
|
742
|
+
|
743
|
+
|
1
744
|
1.9.0 01/19/2013 0283cac581edc36fe58681c51d6fa2a5d2db3f41
|
2
745
|
=========================================================
|
3
746
|
|