fog 1.18.0 → 1.19.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/.travis.yml +6 -0
- data/CONTRIBUTING.md +22 -0
- data/LICENSE.md +20 -0
- data/README.md +41 -60
- data/Rakefile +2 -0
- data/changelog.txt +262 -0
- data/fog.gemspec +3 -3
- data/lib/fog/aws.rb +9 -7
- data/lib/fog/aws/cloud_watch.rb +0 -1
- data/lib/fog/aws/compute.rb +2 -0
- data/lib/fog/aws/dns.rb +2 -1
- data/lib/fog/aws/elb.rb +2 -0
- data/lib/fog/aws/models/auto_scaling/configuration.rb +4 -0
- data/lib/fog/aws/models/compute/address.rb +6 -5
- data/lib/fog/aws/models/compute/flavors.rb +10 -0
- data/lib/fog/aws/models/compute/spot_request.rb +1 -1
- data/lib/fog/aws/models/compute/subnet.rb +4 -0
- data/lib/fog/aws/models/compute/vpc.rb +5 -0
- data/lib/fog/aws/models/dns/records.rb +1 -3
- data/lib/fog/aws/models/elb/load_balancer.rb +10 -0
- data/lib/fog/aws/models/glacier/vault.rb +1 -1
- data/lib/fog/aws/models/rds/server.rb +5 -2
- data/lib/fog/aws/models/rds/subnet_group.rb +15 -1
- data/lib/fog/aws/models/storage/file.rb +2 -2
- data/lib/fog/aws/parsers/auto_scaling/describe_launch_configurations.rb +6 -0
- data/lib/fog/aws/parsers/compute/assign_private_ip_addresses.rb +25 -0
- data/lib/fog/aws/parsers/compute/describe_addresses.rb +1 -1
- data/lib/fog/aws/parsers/elb/describe_load_balancer_attributes.rb +40 -0
- data/lib/fog/aws/parsers/rds/delete_db_subnet_group.rb +35 -0
- data/lib/fog/aws/rds.rb +3 -3
- data/lib/fog/aws/requests/auto_scaling/create_launch_configuration.rb +2 -0
- data/lib/fog/aws/requests/auto_scaling/describe_notification_configurations.rb +1 -1
- data/lib/fog/aws/requests/compute/assign_private_ip_addresses.rb +60 -0
- data/lib/fog/aws/requests/compute/create_route.rb +1 -1
- data/lib/fog/aws/requests/compute/describe_images.rb +1 -1
- data/lib/fog/aws/requests/compute/describe_subnets.rb +8 -0
- data/lib/fog/aws/requests/compute/describe_vpcs.rb +8 -0
- data/lib/fog/aws/requests/compute/modify_vpc_attribute.rb +59 -0
- data/lib/fog/aws/requests/dns/change_resource_record_sets.rb +26 -9
- data/lib/fog/aws/requests/dns/create_hosted_zone.rb +12 -3
- data/lib/fog/aws/requests/dns/delete_hosted_zone.rb +33 -0
- data/lib/fog/aws/requests/dns/get_change.rb +26 -0
- data/lib/fog/aws/requests/dns/get_hosted_zone.rb +1 -1
- data/lib/fog/aws/requests/dns/list_hosted_zones.rb +3 -8
- data/lib/fog/aws/requests/dns/list_resource_record_sets.rb +68 -0
- data/lib/fog/aws/requests/elb/create_load_balancer.rb +1 -0
- data/lib/fog/aws/requests/elb/describe_load_balancer_attributes.rb +54 -0
- data/lib/fog/aws/requests/elb/modify_load_balancer_attributes.rb +59 -0
- data/lib/fog/aws/requests/rds/create_db_instance.rb +7 -1
- data/lib/fog/aws/requests/rds/create_db_subnet_group.rb +7 -1
- data/lib/fog/aws/requests/rds/delete_db_subnet_group.rb +42 -0
- data/lib/fog/aws/requests/storage/delete_multiple_objects.rb +6 -4
- data/lib/fog/aws/requests/storage/put_bucket.rb +4 -1
- data/lib/fog/aws/sqs.rb +2 -4
- data/lib/fog/aws/storage.rb +14 -1
- data/lib/fog/bluebox/compute.rb +1 -1
- data/lib/fog/brightbox/compute.rb +7 -9
- data/lib/fog/brightbox/compute/image_selector.rb +1 -1
- data/lib/fog/brightbox/compute/shared.rb +8 -10
- data/lib/fog/brightbox/models/compute/api_client.rb +1 -1
- data/lib/fog/brightbox/models/compute/application.rb +1 -4
- data/lib/fog/brightbox/models/compute/cloud_ip.rb +8 -5
- data/lib/fog/brightbox/models/compute/collaboration.rb +0 -2
- data/lib/fog/brightbox/models/compute/collaborations.rb +1 -1
- data/lib/fog/brightbox/models/compute/firewall_policy.rb +2 -4
- data/lib/fog/brightbox/models/compute/firewall_rule.rb +1 -1
- data/lib/fog/brightbox/models/compute/image.rb +1 -3
- data/lib/fog/brightbox/models/compute/load_balancer.rb +11 -8
- data/lib/fog/brightbox/models/compute/server.rb +28 -20
- data/lib/fog/brightbox/models/compute/server_group.rb +9 -11
- data/lib/fog/brightbox/models/compute/zone.rb +1 -1
- data/lib/fog/brightbox/oauth2.rb +3 -3
- data/lib/fog/brightbox/requests/compute/update_server.rb +1 -1
- data/lib/fog/cloudstack.rb +1 -1
- data/lib/fog/compute.rb +2 -2
- data/lib/fog/core.rb +1 -1
- data/lib/fog/core/connection.rb +1 -2
- data/lib/fog/core/errors.rb +3 -3
- data/lib/fog/core/hmac.rb +3 -3
- data/lib/fog/core/mock.rb +9 -2
- data/lib/fog/core/scp.rb +1 -1
- data/lib/fog/core/wait_for.rb +1 -1
- data/lib/fog/core/{timeout.rb → wait_for_defaults.rb} +10 -0
- data/lib/fog/digitalocean/models/compute/server.rb +4 -0
- data/lib/fog/digitalocean/requests/compute/create_server.rb +2 -0
- data/lib/fog/dnsimple/dns.rb +1 -1
- data/lib/fog/dreamhost/dns.rb +2 -4
- data/lib/fog/ecloud/compute.rb +1 -1
- data/lib/fog/ecloud/models/compute/environments.rb +5 -3
- data/lib/fog/google/compute.rb +105 -68
- data/lib/fog/google/examples/create.rb +1 -0
- data/lib/fog/google/models/compute/disk.rb +7 -1
- data/lib/fog/google/models/compute/operation.rb +42 -0
- data/lib/fog/google/models/compute/operations.rb +26 -0
- data/lib/fog/google/models/compute/server.rb +18 -2
- data/lib/fog/google/models/compute/servers.rb +2 -1
- data/lib/fog/google/models/compute/zones.rb +1 -1
- data/lib/fog/google/models/storage/file.rb +1 -1
- data/lib/fog/google/models/storage/files.rb +1 -1
- data/lib/fog/google/requests/compute/delete_disk.rb +22 -2
- data/lib/fog/google/requests/compute/delete_global_operation.rb +29 -0
- data/lib/fog/google/requests/compute/delete_server.rb +13 -9
- data/lib/fog/google/requests/compute/delete_zone_operation.rb +33 -0
- data/lib/fog/google/requests/compute/get_disk.rb +26 -2
- data/lib/fog/google/requests/compute/{delete_operation.rb → get_global_operation.rb} +5 -6
- data/lib/fog/google/requests/compute/get_image.rb +3 -3
- data/lib/fog/google/requests/compute/get_server.rb +1 -0
- data/lib/fog/google/requests/compute/get_zone_operation.rb +58 -0
- data/lib/fog/google/requests/compute/insert_disk.rb +43 -3
- data/lib/fog/google/requests/compute/insert_firewall.rb +2 -1
- data/lib/fog/google/requests/compute/insert_image.rb +2 -2
- data/lib/fog/google/requests/compute/insert_server.rb +64 -35
- data/lib/fog/google/requests/compute/list_disks.rb +8 -2
- data/lib/fog/google/requests/compute/list_images.rb +2 -2
- data/lib/fog/google/requests/compute/list_machine_types.rb +2 -2
- data/lib/fog/google/requests/compute/list_servers.rb +2 -2
- data/lib/fog/google/requests/compute/list_zone_operations.rb +2 -1
- data/lib/fog/google/requests/compute/list_zones.rb +1 -1
- data/lib/fog/google/requests/storage/copy_object.rb +1 -1
- data/lib/fog/hp.rb +1 -1
- data/lib/fog/hp/README.md +57 -0
- data/lib/fog/hp/articles/auth_caching.md +23 -0
- data/lib/fog/hp/docs/connect.md +152 -0
- data/lib/fog/hp/docs/install.md +133 -0
- data/lib/fog/hp/examples/block_storage.md +296 -0
- data/lib/fog/hp/examples/block_storage_v2.md +446 -0
- data/lib/fog/hp/examples/cdn.md +54 -0
- data/lib/fog/hp/examples/compute.md +794 -0
- data/lib/fog/hp/examples/compute_v2.md +848 -0
- data/lib/fog/hp/examples/getting_started_examples.md +30 -0
- data/lib/fog/hp/examples/networking.md +472 -0
- data/lib/fog/hp/examples/object_storage.md +387 -0
- data/lib/fog/json.rb +6 -3
- data/lib/fog/local/models/storage/directories.rb +8 -4
- data/lib/fog/openstack/compute.rb +3 -0
- data/lib/fog/openstack/examples/compute/basics.rb +74 -0
- data/lib/fog/openstack/identity.rb +2 -3
- data/lib/fog/openstack/image.rb +1 -4
- data/lib/fog/openstack/metering.rb +1 -4
- data/lib/fog/openstack/models/compute/host.rb +5 -1
- data/lib/fog/openstack/models/compute/security_group.rb +18 -4
- data/lib/fog/openstack/models/compute/security_group_rule.rb +32 -0
- data/lib/fog/openstack/models/compute/security_group_rules.rb +22 -0
- data/lib/fog/openstack/models/volume/volume_type.rb +20 -0
- data/lib/fog/openstack/models/volume/volume_types.rb +26 -0
- data/lib/fog/openstack/network.rb +34 -6
- data/lib/fog/openstack/requests/compute/add_flavor_access.rb +1 -1
- data/lib/fog/openstack/requests/compute/allocate_address.rb +1 -1
- data/lib/fog/openstack/requests/compute/attach_volume.rb +1 -1
- data/lib/fog/openstack/requests/compute/boot_from_snapshot.rb +1 -1
- data/lib/fog/openstack/requests/compute/create_flavor.rb +1 -1
- data/lib/fog/openstack/requests/compute/create_key_pair.rb +1 -1
- data/lib/fog/openstack/requests/compute/create_security_group.rb +4 -4
- data/lib/fog/openstack/requests/compute/create_security_group_rule.rb +2 -2
- data/lib/fog/openstack/requests/compute/create_server.rb +12 -5
- data/lib/fog/openstack/requests/compute/create_volume.rb +1 -1
- data/lib/fog/openstack/requests/compute/create_volume_snapshot.rb +1 -1
- data/lib/fog/openstack/requests/compute/delete_security_group.rb +1 -1
- data/lib/fog/openstack/requests/compute/delete_security_group_rule.rb +2 -0
- data/lib/fog/openstack/requests/compute/get_security_group.rb +14 -24
- data/lib/fog/openstack/requests/compute/get_security_group_rule.rb +38 -0
- data/lib/fog/openstack/requests/compute/list_hosts.rb +3 -3
- data/lib/fog/openstack/requests/compute/list_tenants.rb +1 -1
- data/lib/fog/openstack/requests/compute/remove_flavor_access.rb +1 -1
- data/lib/fog/openstack/requests/compute/update_quota.rb +1 -1
- data/lib/fog/openstack/requests/identity/create_ec2_credential.rb +1 -1
- data/lib/fog/openstack/requests/identity/create_role.rb +1 -1
- data/lib/fog/openstack/requests/identity/create_user.rb +1 -1
- data/lib/fog/openstack/requests/identity/update_user.rb +1 -1
- data/lib/fog/openstack/requests/image/update_image_members.rb +1 -1
- data/lib/fog/openstack/requests/orchestration/create_stack.rb +2 -2
- data/lib/fog/openstack/requests/orchestration/update_stack.rb +1 -1
- data/lib/fog/openstack/requests/storage/get_object_http_url.rb +13 -0
- data/lib/fog/openstack/requests/storage/get_object_https_url.rb +0 -14
- data/lib/fog/openstack/requests/volume/create_volume.rb +1 -1
- data/lib/fog/openstack/requests/volume/create_volume_snapshot.rb +1 -1
- data/lib/fog/openstack/requests/volume/get_volume_type_details.rb +32 -0
- data/lib/fog/openstack/requests/volume/list_volume_types.rb +41 -0
- data/lib/fog/openstack/storage.rb +2 -0
- data/lib/fog/openstack/volume.rb +9 -5
- data/lib/fog/rackspace/compute.rb +1 -4
- data/lib/fog/rackspace/compute_v2.rb +1 -0
- data/lib/fog/rackspace/docs/auto_scale.md +9 -9
- data/lib/fog/rackspace/docs/getting_started.md +1 -0
- data/lib/fog/rackspace/docs/queues.md +312 -0
- data/lib/fog/rackspace/examples/queues/claim_messages.rb +60 -0
- data/lib/fog/rackspace/examples/queues/create_queue.rb +45 -0
- data/lib/fog/rackspace/examples/queues/delete_message.rb +72 -0
- data/lib/fog/rackspace/examples/queues/delete_queue.rb +53 -0
- data/lib/fog/rackspace/examples/queues/list_messages.rb +64 -0
- data/lib/fog/rackspace/examples/queues/post_message.rb +59 -0
- data/lib/fog/rackspace/models/compute_v2/key_pairs.rb +1 -1
- data/lib/fog/rackspace/models/compute_v2/server.rb +9 -3
- data/lib/fog/rackspace/models/compute_v2/servers.rb +2 -2
- data/lib/fog/rackspace/models/identity/service_catalog.rb +44 -59
- data/lib/fog/rackspace/models/queues/claim.rb +41 -1
- data/lib/fog/rackspace/models/queues/claims.rb +25 -0
- data/lib/fog/rackspace/models/queues/message.rb +43 -5
- data/lib/fog/rackspace/models/queues/messages.rb +37 -0
- data/lib/fog/rackspace/models/queues/queue.rb +66 -3
- data/lib/fog/rackspace/models/queues/queues.rb +15 -0
- data/lib/fog/rackspace/models/storage/file.rb +8 -1
- data/lib/fog/rackspace/requests/compute_v2/delete_keypair.rb +1 -1
- data/lib/fog/rackspace/requests/compute_v2/get_keypair.rb +1 -1
- data/lib/fog/rackspace/requests/queues/create_claim.rb +15 -0
- data/lib/fog/rackspace/requests/queues/create_message.rb +15 -0
- data/lib/fog/rackspace/requests/queues/create_queue.rb +11 -0
- data/lib/fog/rackspace/requests/queues/delete_claim.rb +12 -0
- data/lib/fog/rackspace/requests/queues/delete_message.rb +14 -0
- data/lib/fog/rackspace/requests/queues/delete_queue.rb +10 -0
- data/lib/fog/rackspace/requests/queues/get_claim.rb +11 -0
- data/lib/fog/rackspace/requests/queues/get_message.rb +12 -0
- data/lib/fog/rackspace/requests/queues/get_queue.rb +10 -0
- data/lib/fog/rackspace/requests/queues/get_queue_stats.rb +10 -0
- data/lib/fog/rackspace/requests/queues/list_messages.rb +26 -0
- data/lib/fog/rackspace/requests/queues/list_queues.rb +17 -2
- data/lib/fog/rackspace/requests/queues/update_claim.rb +7 -0
- data/lib/fog/rackspace/service.rb +6 -2
- data/lib/fog/rackspace/storage.rb +1 -4
- data/lib/fog/riakcs.rb +2 -2
- data/lib/fog/riakcs/provisioning.rb +1 -3
- data/lib/fog/riakcs/requests/provisioning/create_user.rb +2 -2
- data/lib/fog/riakcs/requests/provisioning/get_user.rb +1 -1
- data/lib/fog/riakcs/requests/provisioning/list_users.rb +1 -1
- data/lib/fog/riakcs/requests/usage/get_usage.rb +1 -1
- data/lib/fog/riakcs/usage.rb +0 -2
- data/lib/fog/vcloud_director/README.md +2 -0
- data/lib/fog/vcloud_director/compute.rb +79 -8
- data/lib/fog/vcloud_director/generators/compute/org_vdc_network.rb +91 -0
- data/lib/fog/vcloud_director/generators/compute/vapp.rb +30 -0
- data/lib/fog/vcloud_director/generators/compute/vm.rb +33 -0
- data/lib/fog/vcloud_director/models/compute/medias.rb +1 -1
- data/lib/fog/vcloud_director/models/compute/vm_customization.rb +2 -0
- data/lib/fog/vcloud_director/parsers/compute/vm_customization.rb +2 -0
- data/lib/fog/vcloud_director/requests/compute/delete_network.rb +64 -0
- data/lib/fog/vcloud_director/requests/compute/get_execute_query.rb +433 -333
- data/lib/fog/vcloud_director/requests/compute/get_vapp_metadata.rb +3 -1
- data/lib/fog/vcloud_director/requests/compute/post_attach_disk.rb +1 -1
- data/lib/fog/vcloud_director/requests/compute/post_configure_edge_gateway_services.rb +20 -2
- data/lib/fog/vcloud_director/requests/compute/post_create_org_vdc_network.rb +176 -0
- data/lib/fog/vcloud_director/requests/compute/post_detach_disk.rb +1 -1
- data/lib/fog/vcloud_director/requests/compute/post_eject_cd_rom.rb +1 -1
- data/lib/fog/vcloud_director/requests/compute/post_insert_cd_rom.rb +1 -1
- data/lib/fog/vcloud_director/requests/compute/put_guest_customization_section_vapp.rb +1 -0
- data/lib/fog/vcloud_director/requests/compute/put_vapp_name_and_description.rb +37 -0
- data/lib/fog/vcloud_director/requests/compute/put_vm.rb +39 -0
- data/lib/fog/version.rb +1 -1
- data/lib/fog/vsphere/compute.rb +3 -0
- data/lib/fog/vsphere/models/compute/datastore.rb +1 -0
- data/lib/fog/vsphere/models/compute/interface.rb +50 -2
- data/lib/fog/vsphere/models/compute/interfaces.rb +25 -10
- data/lib/fog/vsphere/models/compute/scsicontroller.rb +19 -0
- data/lib/fog/vsphere/models/compute/server.rb +27 -8
- data/lib/fog/vsphere/requests/compute/create_vm.rb +34 -8
- data/lib/fog/vsphere/requests/compute/get_vm_first_scsi_controller.rb +26 -0
- data/lib/fog/vsphere/requests/compute/list_datastores.rb +9 -8
- data/lib/fog/vsphere/requests/compute/modify_vm_interface.rb +9 -6
- data/lib/fog/vsphere/requests/compute/set_vm_customvalue.rb +19 -0
- data/lib/fog/xenserver.rb +2 -1
- data/lib/fog/xenserver/compute.rb +37 -1
- data/lib/fog/xenserver/models/compute/blob.rb +22 -0
- data/lib/fog/xenserver/models/compute/blobs.rb +25 -0
- data/lib/fog/xenserver/models/compute/bond.rb +23 -0
- data/lib/fog/xenserver/models/compute/bonds.rb +25 -0
- data/lib/fog/xenserver/models/compute/console.rb +3 -1
- data/lib/fog/xenserver/models/compute/crash_dump.rb +19 -0
- data/lib/fog/xenserver/models/compute/crash_dumps.rb +25 -0
- data/lib/fog/xenserver/models/compute/dr_task.rb +17 -0
- data/lib/fog/xenserver/models/compute/dr_tasks.rb +25 -0
- data/lib/fog/xenserver/models/compute/gpu_group.rb +22 -0
- data/lib/fog/xenserver/models/compute/gpu_groups.rb +25 -0
- data/lib/fog/xenserver/models/compute/guest_metrics.rb +2 -1
- data/lib/fog/xenserver/models/compute/host.rb +41 -8
- data/lib/fog/xenserver/models/compute/host_cpu.rb +2 -1
- data/lib/fog/xenserver/models/compute/host_crash_dump.rb +20 -0
- data/lib/fog/xenserver/models/compute/host_crash_dumps.rb +25 -0
- data/lib/fog/xenserver/models/compute/host_metrics.rb +1 -1
- data/lib/fog/xenserver/models/compute/host_patch.rb +25 -0
- data/lib/fog/xenserver/models/compute/host_patchs.rb +25 -0
- data/lib/fog/xenserver/models/compute/network.rb +7 -6
- data/lib/fog/xenserver/models/compute/pbd.rb +3 -1
- data/lib/fog/xenserver/models/compute/pci.rb +22 -0
- data/lib/fog/xenserver/models/compute/pcis.rb +25 -0
- data/lib/fog/xenserver/models/compute/pgpu.rb +20 -0
- data/lib/fog/xenserver/models/compute/pgpus.rb +25 -0
- data/lib/fog/xenserver/models/compute/pif.rb +19 -8
- data/lib/fog/xenserver/models/compute/pif_metrics.rb +28 -0
- data/lib/fog/xenserver/models/compute/pifs_metrics.rb +25 -0
- data/lib/fog/xenserver/models/compute/pool.rb +18 -1
- data/lib/fog/xenserver/models/compute/pool_patch.rb +24 -0
- data/lib/fog/xenserver/models/compute/pool_patchs.rb +25 -0
- data/lib/fog/xenserver/models/compute/role.rb +19 -0
- data/lib/fog/xenserver/models/compute/roles.rb +25 -0
- data/lib/fog/xenserver/models/compute/server.rb +59 -26
- data/lib/fog/xenserver/models/compute/server_appliance.rb +21 -0
- data/lib/fog/xenserver/models/compute/server_appliances.rb +25 -0
- data/lib/fog/xenserver/models/compute/storage_manager.rb +28 -0
- data/lib/fog/xenserver/models/compute/storage_managers.rb +25 -0
- data/lib/fog/xenserver/models/compute/storage_repository.rb +4 -1
- data/lib/fog/xenserver/models/compute/tunnel.rb +20 -0
- data/lib/fog/xenserver/models/compute/tunnels.rb +25 -0
- data/lib/fog/xenserver/models/compute/vbd.rb +3 -2
- data/lib/fog/xenserver/models/compute/vbd_metrics.rb +1 -1
- data/lib/fog/xenserver/models/compute/vdi.rb +4 -1
- data/lib/fog/xenserver/models/compute/vif.rb +11 -2
- data/lib/fog/xenserver/models/compute/vlan.rb +2 -1
- data/lib/fog/xenserver/models/compute/vmpp.rb +35 -0
- data/lib/fog/xenserver/models/compute/vmpps.rb +25 -0
- data/lib/fog/xenserver/models/compute/vtpm.rb +18 -0
- data/lib/fog/xenserver/models/compute/vtpms.rb +25 -0
- data/lib/fog/xenserver/requests/compute/reboot_server.rb +1 -1
- data/lib/tasks/changelog_task.rb +0 -1
- data/tests/aws/models/dns/record_tests.rb +1 -2
- data/tests/aws/models/dns/records_tests.rb +2 -7
- data/tests/aws/models/dns/zone_tests.rb +1 -1
- data/tests/aws/models/dns/zones_tests.rb +1 -1
- data/tests/aws/models/elb/model_tests.rb +10 -0
- data/tests/aws/models/storage/file_tests.rb +4 -0
- data/tests/aws/requests/compute/assign_private_ip_tests.rb +52 -0
- data/tests/aws/requests/compute/vpc_tests.rb +17 -1
- data/tests/aws/requests/dns/dns_tests.rb +1 -26
- data/tests/aws/requests/elb/load_balancer_tests.rb +6 -0
- data/tests/aws/requests/rds/{subnet_groups_test.rb → subnet_groups_tests.rb} +4 -0
- data/tests/aws/requests/storage/bucket_tests.rb +17 -0
- data/tests/aws/requests/storage/delete_multiple_objects_tests.rb +12 -0
- data/tests/brightbox/compute/schema.rb +0 -13
- data/tests/brightbox/models/compute/server_tests.rb +7 -9
- data/tests/brightbox/requests/compute/interface_tests.rb +7 -19
- data/tests/digitalocean/models/compute/server_tests.rb +4 -3
- data/tests/google/models/compute/disk_tests.rb +5 -0
- data/tests/google/models/compute/disks_tests.rb +5 -0
- data/tests/google/models/compute/server_tests.rb +5 -1
- data/tests/google/models/compute/servers_tests.rb +5 -0
- data/tests/google/requests/compute/disk_tests.rb +2 -1
- data/tests/google/requests/compute/firewall_tests.rb +1 -0
- data/tests/google/requests/compute/image_tests.rb +3 -0
- data/tests/google/requests/compute/network_tests.rb +1 -0
- data/tests/google/requests/compute/operation_tests.rb +1 -0
- data/tests/google/requests/compute/server_tests.rb +2 -3
- data/tests/google/requests/compute/zone_tests.rb +1 -6
- data/tests/helpers/collection_helper.rb +10 -2
- data/tests/helpers/mock_helper.rb +4 -5
- data/tests/local/models/directories_tests.rb +17 -0
- data/tests/openstack/models/compute/security_group_tests.rb +54 -0
- data/tests/openstack/requests/compute/security_group_tests.rb +22 -20
- data/tests/openstack/requests/network/network_tests.rb +8 -8
- data/tests/rackspace/compute_tests.rb +0 -5
- data/tests/rackspace/helper.rb +9 -4
- data/tests/rackspace/models/compute_v2/server_tests.rb +29 -1
- data/tests/rackspace/models/identity/service_catalog_tests.rb +87 -39
- data/tests/rackspace/models/queues/message_tests.rb +16 -0
- data/tests/rackspace/models/storage/file_tests.rb +29 -0
- data/tests/rackspace/requests/compute_v2/address_tests.rb +3 -1
- data/tests/rackspace/requests/compute_v2/metadata_tests.rb +4 -2
- data/tests/rackspace/requests/compute_v2/server_tests.rb +3 -6
- data/tests/vcloud_director/models/compute/media_tests.rb +18 -5
- data/tests/vcloud_director/models/compute/vapp_tests.rb +3 -1
- data/tests/vcloud_director/models/compute/vms_tests.rb +2 -1
- data/tests/vcloud_director/requests/compute/edge_gateway_tests.rb +19 -10
- data/tests/vcloud_director/requests/compute/network_tests.rb +64 -3
- data/tests/vcloud_director/requests/compute/query_tests.rb +67 -2
- data/tests/vsphere/requests/compute/set_vm_customvalue_tests.rb +21 -0
- metadata +112 -11
- data/fogkeytest1.pem +0 -27
- data/lib/fog/hp/README_HP.rdoc +0 -61
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
@@ -11,6 +11,7 @@ rvm:
|
|
11
11
|
- 2.0.0
|
12
12
|
- jruby-18mode
|
13
13
|
- jruby-19mode
|
14
|
+
- jruby-head
|
14
15
|
|
15
16
|
script: bundle exec rake travis
|
16
17
|
|
@@ -28,6 +29,11 @@ matrix:
|
|
28
29
|
gemfile: Gemfile
|
29
30
|
- rvm: jruby-19mode
|
30
31
|
gemfile: Gemfile.1.8.7
|
32
|
+
- rvm: jruby-head
|
33
|
+
gemfile: Gemfile.1.8.7
|
34
|
+
|
35
|
+
allow_failures:
|
36
|
+
- rvm: jruby-head
|
31
37
|
|
32
38
|
notifications:
|
33
39
|
email: false
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
## Getting Involved
|
2
|
+
|
3
|
+
New contributors are always welcome, when it doubt please ask questions. We strive to be an open and welcoming community. Please be nice to one another.
|
4
|
+
|
5
|
+
### Coding
|
6
|
+
|
7
|
+
* Pick a task:
|
8
|
+
* Offer feedback on open [pull requests](https://github.com/fog/fog/pulls).
|
9
|
+
* Review open [issues](https://github.com/fog/fog/issues) for things to help on.
|
10
|
+
* [Create an issue](https://github.com/fog/fog/issues/new) to start a discussion on additions or features.
|
11
|
+
* Fork the project, add your changes and tests to cover them in a topic branch.
|
12
|
+
* Commit your changes and rebase against `fog/fog` to ensure everything is up to date.
|
13
|
+
* [Submit a pull request](https://github.com/fog/fog/compare/)
|
14
|
+
|
15
|
+
### Non-Coding
|
16
|
+
|
17
|
+
* Offer feedback on open [issues](https://github.com/fog/fog/issues).
|
18
|
+
* Write and help edit [documentation](https://github.com/fog/fog.github.com).
|
19
|
+
* Translate [documentation](https://github.com/fog/fog.github.com) in to other languages.
|
20
|
+
* Organize or volunteer at events.
|
21
|
+
* [Donate](https://www.gittip.com/geemus/)
|
22
|
+
* Discuss other ideas for contribution with [geemus](mailto:geemus+fog@gmail.com).
|
data/LICENSE.md
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2013 [geemus (Wesley Beary)](http://github.com/geemus)
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
@@ -7,10 +7,11 @@ 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
|
-
[![Gem Version](https://fury-badge.herokuapp.com/rb/fog.png)](http://badge.fury.io/rb/fog)
|
11
10
|
[![Dependency Status](https://gemnasium.com/fog/fog.png)](https://gemnasium.com/fog/fog)
|
12
11
|
[![Code Climate](https://codeclimate.com/github/fog/fog.png)](https://codeclimate.com/github/fog/fog)
|
13
12
|
[![Coverage Status](https://coveralls.io/repos/fog/fog/badge.png?branch=master)](https://coveralls.io/r/fog/fog?branch=master)
|
13
|
+
[![Gem Version](https://fury-badge.herokuapp.com/rb/fog.png)](http://badge.fury.io/rb/fog)
|
14
|
+
[![Gittip](http://img.shields.io/gittip/geemus.png)](https://www.gittip.com/geemus/)
|
14
15
|
|
15
16
|
## Getting Started
|
16
17
|
|
@@ -41,7 +42,9 @@ vulnerabilities.
|
|
41
42
|
With this caveat, if you wish to bundle `fog` into your application on Ruby
|
42
43
|
1.8.7, you must add the following line to your `Gemfile`.
|
43
44
|
|
44
|
-
|
45
|
+
```ruby
|
46
|
+
gem 'nokogiri', '~>1.5.0'
|
47
|
+
```
|
45
48
|
|
46
49
|
Also, ensure that you are using LibXML version 2.8.0, since there is an
|
47
50
|
[issue with LibXML version 2.9.0][issue829] ([and 2.9.1][issue904]).
|
@@ -73,21 +76,23 @@ Collections share basic CRUD type operations, such as:
|
|
73
76
|
|
74
77
|
As an example, we'll try initializing and persisting a Rackspace Cloud server:
|
75
78
|
|
76
|
-
|
79
|
+
```ruby
|
80
|
+
require 'fog'
|
77
81
|
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
82
|
+
compute = Fog::Compute.new(
|
83
|
+
:provider => 'Rackspace',
|
84
|
+
:rackspace_api_key => key,
|
85
|
+
:rackspace_username => username
|
86
|
+
)
|
83
87
|
|
84
|
-
|
85
|
-
|
86
|
-
|
88
|
+
# boot a gentoo server (flavor 1 = 256, image 3 = gentoo 2008.0)
|
89
|
+
server = compute.servers.create(:flavor_id => 1, :image_id => 3, :name => 'my_server')
|
90
|
+
server.wait_for { ready? } # give server time to boot
|
87
91
|
|
88
|
-
|
92
|
+
# DO STUFF
|
89
93
|
|
90
|
-
|
94
|
+
server.destroy # cleanup after yourself or regret it, trust me
|
95
|
+
```
|
91
96
|
|
92
97
|
## Models
|
93
98
|
|
@@ -103,7 +108,9 @@ As you might imagine, testing code using Fog can be slow and expensive, constant
|
|
103
108
|
Mocking allows skipping this overhead by providing an in memory representation resources as you make requests.
|
104
109
|
Enabling mocking easy to use, before you run other commands, simply run:
|
105
110
|
|
106
|
-
|
111
|
+
```ruby
|
112
|
+
Fog.mock!
|
113
|
+
```
|
107
114
|
|
108
115
|
Then proceed as usual, if you run into unimplemented mocks, fog will raise an error and as always contributions are welcome!
|
109
116
|
|
@@ -125,13 +132,15 @@ It will return an [excon](http://github.com/geemus/excon) response, which has `b
|
|
125
132
|
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)
|
126
133
|
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.
|
127
134
|
|
128
|
-
|
129
|
-
|
130
|
-
|
135
|
+
```ruby
|
136
|
+
# create a compute connection
|
137
|
+
compute = Fog::Compute.new(:provider => 'AWS', :aws_access_key_id => ACCESS_KEY_ID, :aws_secret_access_key => SECRET_ACCESS_KEY)
|
138
|
+
# compute operations go here
|
131
139
|
|
132
|
-
|
133
|
-
|
134
|
-
|
140
|
+
# create a storage connection
|
141
|
+
storage = Fog::Storage.new(:provider => 'AWS', :aws_access_key_id => ACCESS_KEY_ID, :aws_secret_access_key => SECRET_ACCESS_KEY)
|
142
|
+
# storage operations go here
|
143
|
+
```
|
135
144
|
|
136
145
|
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!"
|
137
146
|
|
@@ -160,45 +169,17 @@ spec.add_dependency 'fog', '~> 1.16'
|
|
160
169
|
[semver]: http://semver.org/
|
161
170
|
[pvc]: http://guides.rubygems.org/patterns/
|
162
171
|
|
172
|
+
## Getting Help
|
173
|
+
|
174
|
+
* [General Documentation](http://fog.io).
|
175
|
+
* [Provider Specific Documentation](http://fog.io/about/provider_documentation.html).
|
176
|
+
* Ask specific questions on [Stack Overflow](http://stackoverflow.com/questions/tagged/fog)
|
177
|
+
* Report bugs and discuss potential features in [Github issues](https://github.com/fog/fog/issues).
|
178
|
+
|
163
179
|
## Contributing
|
164
180
|
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
* Make sure your changes will work on both Ruby 1.8.7 and Ruby 1.9
|
171
|
-
* Add a config at `tests/.fog` for the component you want to test.
|
172
|
-
* Add shindo tests to prove your code works and run all the tests using `bundle exec rake`.
|
173
|
-
* Rebase your branch against `fog/fog` to make sure everything is up to date.
|
174
|
-
* Commit your changes and send a pull request.
|
175
|
-
|
176
|
-
## Additional Resources
|
177
|
-
|
178
|
-
* [fog.io](http://fog.io)
|
179
|
-
* [Provider Documentation](http://fog.io/about/provider_documentation.html)
|
180
|
-
|
181
|
-
## Copyright
|
182
|
-
|
183
|
-
(The MIT License)
|
184
|
-
|
185
|
-
Copyright (c) 2013 [geemus (Wesley Beary)](http://github.com/geemus)
|
186
|
-
|
187
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
188
|
-
a copy of this software and associated documentation files (the
|
189
|
-
"Software"), to deal in the Software without restriction, including
|
190
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
191
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
192
|
-
permit persons to whom the Software is furnished to do so, subject to
|
193
|
-
the following conditions:
|
194
|
-
|
195
|
-
The above copyright notice and this permission notice shall be
|
196
|
-
included in all copies or substantial portions of the Software.
|
197
|
-
|
198
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
199
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
200
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
201
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
202
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
203
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
204
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
181
|
+
Please refer to [CONTRIBUTING.md](https://github.com/fog/fog/blob/master/CONTRIBUTING.md).
|
182
|
+
|
183
|
+
## License
|
184
|
+
|
185
|
+
Please refer to [LICENSE.md](https://github.com/fog/fog/blob/master/LICENSE.md).
|
data/Rakefile
CHANGED
@@ -55,6 +55,8 @@ Fog::Rake::TestTask.new
|
|
55
55
|
namespace :test do
|
56
56
|
mock = 'true' || ENV['FOG_MOCK']
|
57
57
|
task :travis do
|
58
|
+
# jruby coveralls causes an OOM in travis
|
59
|
+
ENV['COVERAGE'] = 'false' if RUBY_PLATFORM == 'java'
|
58
60
|
sh("export FOG_MOCK=#{mock} && bundle exec shindont")
|
59
61
|
end
|
60
62
|
task :vsphere do
|
data/changelog.txt
CHANGED
@@ -1,3 +1,265 @@
|
|
1
|
+
1.19.0 12/19/2013 15180fd7c0993f7fe6cfdc861a4db7ada14825ad
|
2
|
+
==========================================================
|
3
|
+
|
4
|
+
Stats! { 'collaborators' => 53, 'downloads' => 3970307, 'forks' => 1015, 'open_issues' => 149, 'watchers' => 2831 }
|
5
|
+
|
6
|
+
MVP! Mike Pountney
|
7
|
+
|
8
|
+
[AWS]
|
9
|
+
add modify_vpc_attribute. thanks Eric Stonfer
|
10
|
+
add modify_vpc_attribute. thanks Eric Stonfer
|
11
|
+
|
12
|
+
[AWS|Autoscaling]
|
13
|
+
Fix option name in documentation. thanks Frederick Cheung
|
14
|
+
|
15
|
+
[AWS|RDS]
|
16
|
+
Support for creating and removing subnet groups. thanks Akshay Joshi
|
17
|
+
|
18
|
+
[AWS|Storage]
|
19
|
+
fixed signed urls when using session tokens. thanks Frederick Cheung
|
20
|
+
|
21
|
+
[Brightbox]
|
22
|
+
Fix test issue with reusing servers. thanks Paul Thornthwaite
|
23
|
+
Add new SSL cert metadata attributes. thanks Paul Thornthwaite
|
24
|
+
Remove commented resource from schema. thanks Paul Thornthwaite
|
25
|
+
Fix typo in yard tag. thanks Paul Thornthwaite
|
26
|
+
Clean up Cloud IP mapping code. thanks Paul Thornthwaite
|
27
|
+
Code style clean up. thanks Paul Thornthwaite
|
28
|
+
|
29
|
+
[OS|Volume]
|
30
|
+
Add listing/showing volume types. thanks Grzesiek Kolodziejczyk
|
31
|
+
|
32
|
+
[aws]
|
33
|
+
Implement missing mocks for Route 53. thanks Carlos Sanchez
|
34
|
+
style fix for address model. thanks Eric Stonfer
|
35
|
+
narrow scope of unf warning. thanks geemus
|
36
|
+
|
37
|
+
[aws:storage]
|
38
|
+
path_style option availability. thanks David Illsley
|
39
|
+
|
40
|
+
[aws|cloudwatch]
|
41
|
+
remove :host key from request. thanks Brian D. Burns
|
42
|
+
|
43
|
+
[aws|dns]
|
44
|
+
Don't set mock changes to INSYNC immediately, only after some timeout. thanks Carlos Sanchez
|
45
|
+
|
46
|
+
[aws|elb]
|
47
|
+
support for cross zone load balancing. thanks Frederick Cheung
|
48
|
+
|
49
|
+
[aws|rds]
|
50
|
+
Implement `ready?` for subnet group. thanks Akshay Joshi
|
51
|
+
Support Iops parameter. thanks Eric Hankins
|
52
|
+
|
53
|
+
[aws|sqs]
|
54
|
+
remove host/port from request. thanks geemus
|
55
|
+
|
56
|
+
[aws|storage]
|
57
|
+
warn/load unf as needed. thanks geemus
|
58
|
+
|
59
|
+
[bluebox]
|
60
|
+
remove :host from excon request. thanks Sam Cooper
|
61
|
+
|
62
|
+
[core]
|
63
|
+
use Excon :persistent option. thanks Brian D. Burns
|
64
|
+
|
65
|
+
[digitalocean]
|
66
|
+
Add support for private networking. thanks Trae Robrock
|
67
|
+
|
68
|
+
[dnsimple]
|
69
|
+
remove host from request. thanks Jose Luis Salas
|
70
|
+
|
71
|
+
[general]
|
72
|
+
Allow default wait_for interval to be overiden globally. thanks radekg
|
73
|
+
Merge Forg.interval and Fog.timeout into a single file. thanks radekg
|
74
|
+
|
75
|
+
[google]
|
76
|
+
natIP is set to true when it must be an ip. thanks Carlos Sanchez
|
77
|
+
Add support for instance tags. thanks Carlos Sanchez
|
78
|
+
Add support for instance tags. thanks Carlos Sanchez
|
79
|
+
Raise Fog::Errors::NotFound on 404. thanks Carlos Sanchez
|
80
|
+
Implement disk mocks and enable tests. thanks Carlos Sanchez
|
81
|
+
Alias flavor_id and machine_type for consistency with other providers. thanks Carlos Sanchez
|
82
|
+
Instances are created without description, and disk size is ignored. thanks Carlos Sanchez
|
83
|
+
Implement operation model. thanks Carlos Sanchez
|
84
|
+
|
85
|
+
[hp]
|
86
|
+
Add documentation and examples for the provider for HP Cloud Services. thanks Rupak Ganguly
|
87
|
+
Fix links in some documentation pages. thanks Rupak Ganguly
|
88
|
+
Fix a few more documentation page links. thanks Rupak Ganguly
|
89
|
+
Fix connection section for newer services. thanks Rupak Ganguly
|
90
|
+
|
91
|
+
[misc]
|
92
|
+
Get VcloudDirector working again in fog interactive. Fixes #2373. thanks Adam Heinz
|
93
|
+
Use OpenSSL::Digest instead of deprecated OpenSSL::Digest::Digest. thanks Akira Matsuda
|
94
|
+
Add new AWS EC2 flavors to the compute model. thanks Alfred Moreno
|
95
|
+
Add exponential backoff to backoff_if_unfound. thanks Andrew Leonard
|
96
|
+
add in 'AssociatePublicIpAddress' to launch configuration creation. thanks Andrew Stangl
|
97
|
+
merge upstream changes and resolve merge conflict. thanks Andrew Stangl
|
98
|
+
add in 'AssociatePublicIpAddress' to launch configuration creation. thanks Andrew Stangl
|
99
|
+
remove duplicate code introduced during rebase. thanks Andrew Stangl
|
100
|
+
tidy up and remove whitespace. thanks Andrew Stangl
|
101
|
+
use original error message if none given. thanks Brian D. Burns
|
102
|
+
use Fog::JSON. thanks Brian D. Burns
|
103
|
+
Add ready? method to aws VPC and Subnet models. thanks Brian Nelson
|
104
|
+
Add pending -> available transitions for AWS VPC and Subnets. thanks Brian Nelson
|
105
|
+
all? not working in JRuby 1.7.5+. Configure Travis. thanks Carlos Sanchez
|
106
|
+
Disable specific tests that don't pass on jruby 1.7.5+. thanks Carlos Sanchez
|
107
|
+
Disable coveralls on travis with jruby. thanks Carlos Sanchez
|
108
|
+
Ensure vpc created in a test doesn't affect another. thanks Carlos Sanchez
|
109
|
+
Allows custom username for aws spot instances. thanks Casey Abernathy
|
110
|
+
Added content_encoding attribute to Rackspace storage. thanks Cezar Sa Espinola
|
111
|
+
Remove :host key in RDS request method to eliminate excon warning. thanks David Faber
|
112
|
+
Remove stray private key. thanks Dominic Cleal
|
113
|
+
Update excon dependency to version ~>0.30.0. thanks Erik Michaels-Ober
|
114
|
+
Fix typo in documentation. thanks Erik Michaels-Ober
|
115
|
+
ecloud api version bump. thanks Eugene Howe
|
116
|
+
Lock user by default. thanks Evan Light
|
117
|
+
Updated docs to reflect RackConnect compatibility. thanks Evan Light
|
118
|
+
Typo. thanks Evan Light
|
119
|
+
service attribute conflicts with the service defined in the parent. thanks Evan Petrie
|
120
|
+
details sometimes fails with a not-found. thanks Evan Petrie
|
121
|
+
Add index for describe_images parameters that use them. thanks James Bence
|
122
|
+
Make changes to a copy of the options parameter. thanks Joe Yates
|
123
|
+
Give 'versionId' value the expected structure. thanks Joe Yates
|
124
|
+
Add IAMInstanceProfile support to launch configs. thanks Jon Topper
|
125
|
+
Improve support for VPC Security Groups in RDS. thanks Jon Topper
|
126
|
+
Add IAMInstanceProfile support to launch configs. thanks Jon Topper
|
127
|
+
Improve support for VPC Security Groups in RDS. thanks Jon Topper
|
128
|
+
Remove duplication. thanks Jon Topper
|
129
|
+
Update S3 ACL whitelist. thanks Keith Barrette
|
130
|
+
Revert "[rackspace] wrapping test blocks around test helpers to prevent unexpected shindo exceptions". thanks Kyle Rames
|
131
|
+
merging in changes. thanks Kyle Rames
|
132
|
+
Added syntax highlighting for ruby code fragments. thanks Mark IJbema
|
133
|
+
Add request to set VM annotations in vSphere. thanks Martin Matuska
|
134
|
+
Add the uncommitted property to the vsphere datastore object. thanks Martin Matuska
|
135
|
+
changed shutdown to reboot in reboot server method. thanks Matheus Mina
|
136
|
+
changed __consoles to consoles and renamed consoles method to get_consoles. thanks Matheus Mina
|
137
|
+
fixed tests. thanks Matheus Mina
|
138
|
+
fixed consoles to use :aliases. thanks Matheus Mina
|
139
|
+
fixed AWS::Glacier::Vault.delete_notification_configuration so that it passes the ID to the underlying core request. thanks Matt Pokress
|
140
|
+
Allow custom Mock.not_implemented message. thanks Mike Pountney
|
141
|
+
Allow custom Mock.not_implemented message. thanks Mike Pountney
|
142
|
+
ignore .ruby-version. thanks Mike Pountney
|
143
|
+
vApp rename via put_vapp_name_and_description. thanks Mike Pountney
|
144
|
+
use std options={} format for optional parameters. thanks Mike Pountney
|
145
|
+
Find all and by-name Mock for Query API orgVdcNetwork. thanks Mike Pountney
|
146
|
+
improve network mock test data, to include vdc & IsShared. thanks Mike Pountney
|
147
|
+
fix tests for running against live environment. thanks Mike Pountney
|
148
|
+
make Mock vcloud_director_host an FQDN. thanks Mike Pountney
|
149
|
+
rename Mock vcloud_director_host to pass URI.parse. thanks Mike Pountney
|
150
|
+
Add delete_network request. thanks Mike Pountney
|
151
|
+
add Mock for post_create_network, use this to create/delete network in tests. thanks Mike Pountney
|
152
|
+
Modified AWS S3 mock, so that it errors when creating an existing bucket. thanks Nassos Antoniou
|
153
|
+
return NS and SOA records as per https://github.com/fog/fog/issues/2419 - this allows us to work with NS subdelegations, as well as the NS and SOA records while the type can't be changed, the values and TTLs can be. thanks Nathan Sullivan
|
154
|
+
Added parameter to force request timeout on xen. thanks Paulo Henrique Lopes Ribeiro
|
155
|
+
Adding more XenServer models. thanks Paulo Henrique Lopes Ribeiro
|
156
|
+
Forget to reference models on main class. thanks Paulo Henrique Lopes Ribeiro
|
157
|
+
adding spot price to launch configurations. thanks Rodrigo Estebanez
|
158
|
+
Sometimes :Environments is not a key. thanks Sarah Vessels
|
159
|
+
Fog::Storage::Local#directories#all: Don't break when :local_root folder is missing. thanks Sjoerd Andringa
|
160
|
+
Also call #load in case of missing local root folder. thanks Sjoerd Andringa
|
161
|
+
using new way of task mocking for edgegateway tests. thanks Sneha Somwanshi
|
162
|
+
updated documentation for put_vm. thanks Sneha Somwanshi
|
163
|
+
openstack modifications. thanks Thom Mahoney & Eugene Howe
|
164
|
+
openstack modifications. thanks Thom Mahoney & Eugene Howe
|
165
|
+
Need to list block in the argument list to access the variable. thanks Trae Robrock
|
166
|
+
Update describe_addresses.rb. thanks Virender Khatri
|
167
|
+
Update address.rb. thanks Virender Khatri
|
168
|
+
add gittip shield. thanks geemus
|
169
|
+
fix for broken AWS records tests. thanks geemus
|
170
|
+
expanding/rewriting the getting-help/involved section of README. thanks geemus
|
171
|
+
fix spacing for getting help section of README. thanks geemus
|
172
|
+
streamline openstack security groups tests. thanks geemus
|
173
|
+
move license to LICENSE.md. thanks geemus
|
174
|
+
add CONTRIBUTING.md. thanks geemus
|
175
|
+
just refer to contrib/license in readme to DRY. thanks geemus
|
176
|
+
Create parser for AWS assign private ip addresses. thanks joe
|
177
|
+
Assign private ip parser. thanks joe
|
178
|
+
add assign private ip request path. thanks joe
|
179
|
+
fix typo and add mock. thanks joe
|
180
|
+
Update error message on tests. thanks joe
|
181
|
+
private ip tests. thanks joe
|
182
|
+
pass options as a hash add support for multiple ips. thanks joe
|
183
|
+
update tests to reflect argument hash. thanks joe
|
184
|
+
remove debugging. thanks joe
|
185
|
+
fix variable name typo. thanks joe
|
186
|
+
remove unneeded test and destroy objects. thanks joe
|
187
|
+
|
188
|
+
[openstack|compute]
|
189
|
+
Basic examples for Compute. thanks Daniel Lobato
|
190
|
+
|
191
|
+
[openstack|storage]
|
192
|
+
adding missing request methods to Storage service. thanks Kyle Rames
|
193
|
+
updating request to use the proper file structure. thanks Kyle Rames
|
194
|
+
|
195
|
+
[rackspace]
|
196
|
+
updating compute and storage to pull service net urls from service catalog. thanks Kyle Rames
|
197
|
+
wrapping test blocks around test helpers to prevent unexpected shindo exceptions. thanks Kyle Rames
|
198
|
+
updating test helper to log errors and not throw exceptions to prevent shindo from halting if an error occurs. thanks Kyle Rames
|
199
|
+
fixing more live tests. thanks Kyle Rames
|
200
|
+
fixing broken tests caused by bad helper. thanks Kyle Rames
|
201
|
+
apply documentation edits. thanks Kyle Rames
|
202
|
+
apply documentation edits. thanks Kyle Rames
|
203
|
+
|
204
|
+
[rackspace|compute]
|
205
|
+
compute_v2 should require fog/rackspace. thanks Brian D. Burns
|
206
|
+
|
207
|
+
[rackspace|identity]
|
208
|
+
re-implementing service catalog in hopes of providing a faster more flexible solution. thanks Kyle Rames
|
209
|
+
updated service catalog support service net. thanks Kyle Rames
|
210
|
+
updated service catalog to return global endpoint if specified region endpoint does not exist. thanks Kyle Rames
|
211
|
+
tweaking service catalog to support ruby 1.8.7. thanks Kyle Rames
|
212
|
+
|
213
|
+
[rackspace|queues]
|
214
|
+
adding examples create queue, delete queue, and post message. thanks Kyle Rames
|
215
|
+
adding id alias for identity; fixed bug in message#identity that returned the id along with the claim_id query string; removed redundant code. thanks Kyle Rames
|
216
|
+
adding more examples. thanks Kyle Rames
|
217
|
+
fixing examples. thanks Kyle Rames
|
218
|
+
adding request YARD docs. thanks Kyle Rames
|
219
|
+
adding YARD docs. thanks Kyle Rames
|
220
|
+
adding the queues getting started guide. thanks Kyle Rames
|
221
|
+
updating set_messages= to populate the claim_id attribute on messages in order for destroy to work properly. thanks Kyle Rames
|
222
|
+
adding the queues getting started guide. thanks Kyle Rames
|
223
|
+
|
224
|
+
[vSphere]
|
225
|
+
Implementation of feature to specify scsi_controller type at create type and also support the attribute scsi_controller to return the right class. thanks Marc Grimme
|
226
|
+
|
227
|
+
[vcloud_director]
|
228
|
+
fix models vms_test so is pending on empty environment. thanks Dan Abel
|
229
|
+
tests become pending not failing on absense of testable resources. thanks Dan Abel
|
230
|
+
post_create_org_vdc_network. thanks Mike Pountney
|
231
|
+
fix to input format for post_create_org_vdc_network. thanks Mike Pountney
|
232
|
+
fix query test to handle delete_network. thanks Mike Pountney
|
233
|
+
Fix medias#create - issue #2440. thanks Nick Osborn
|
234
|
+
s/@end_point/end_point/. thanks Nick Osborn
|
235
|
+
update name, description and storage_profile for vm. thanks Sneha Somwanshi
|
236
|
+
ensure that MetadataEntry is a list. thanks Sneha Somwanshi
|
237
|
+
Show guest customization "admin password auto". thanks Stefano Tortarolo
|
238
|
+
Handle Guest admin password. thanks Stefano Tortarolo
|
239
|
+
allow nullable for gateway in network tests. thanks geemus
|
240
|
+
|
241
|
+
[vclouddirector]
|
242
|
+
Shore up tests re EdgeGateway. thanks Mike Pountney
|
243
|
+
correct put_vapp_name_and_description documentation. thanks Mike Pountney
|
244
|
+
|
245
|
+
[vsphere|compute]
|
246
|
+
restore default guest_id so setting it is optional. thanks Dominic Cleal
|
247
|
+
Force shutdown a server if VMware Tools is installed, but isn't running. thanks Kevin Menard
|
248
|
+
Pass server shutdown options through to the stop operation so the caller can force shutdown if desired. thanks Kevin Menard
|
249
|
+
get_vm_interface returns a hash, not an object that responds to :key. thanks Kevin Menard
|
250
|
+
Renamed 'vm' to 'server' to be more in line with other fog providers. thanks Kevin Menard
|
251
|
+
Backed out the changed to use a hash and fixed the conversion to an Interface class. thanks Kevin Menard
|
252
|
+
Implemented idiomatic interface destruction. thanks Kevin Menard
|
253
|
+
Default to a VirtualE1000 NIC if not configured. thanks Kevin Menard
|
254
|
+
Implemented idiomatic interface creation. thanks Kevin Menard
|
255
|
+
interfaces#get now properly initializes the Interface object. thanks Kevin Menard
|
256
|
+
Deprecated the old interface creation and destruction methods now that the idiomatic ones exist. thanks Kevin Menard
|
257
|
+
|
258
|
+
[xenserver]
|
259
|
+
Updated models to have all attributes from version 6.2.0. thanks Paulo Henrique Lopes Ribeiro
|
260
|
+
Adding more XenServer Models. thanks Paulo Henrique Lopes Ribeiro
|
261
|
+
|
262
|
+
|
1
263
|
1.18.0 10/31/2013 5442bc7e893eb73dae8bb5ee8ef0845c78c43627
|
2
264
|
==========================================================
|
3
265
|
|