fog 1.1.2 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +5 -0
- data/README.rdoc +1 -1
- data/Rakefile +3 -16
- data/changelog.txt +401 -2
- data/docs/_layouts/default.html +1 -1
- data/docs/index.markdown +2 -2
- data/docs/storage/index.markdown +4 -4
- data/fog.gemspec +7 -4
- data/lib/fog.rb +1 -1
- data/lib/fog/aws.rb +32 -6
- data/lib/fog/aws/auto_scaling.rb +1 -18
- data/lib/fog/aws/beanstalk.rb +140 -0
- data/lib/fog/aws/cloud_formation.rb +1 -18
- data/lib/fog/aws/cloud_watch.rb +2 -19
- data/lib/fog/aws/compute.rb +16 -21
- data/lib/fog/aws/dns.rb +2 -2
- data/lib/fog/aws/dynamodb.rb +162 -0
- data/lib/fog/aws/elasticache.rb +1 -14
- data/lib/fog/aws/elb.rb +34 -26
- data/lib/fog/aws/elb/policy_types.rb +35 -0
- data/lib/fog/aws/emr.rb +5 -4
- data/lib/fog/aws/iam.rb +16 -1
- data/lib/fog/aws/models/auto_scaling/activity.rb +1 -1
- data/lib/fog/aws/models/auto_scaling/group.rb +2 -2
- data/lib/fog/aws/models/beanstalk/application.rb +62 -0
- data/lib/fog/aws/models/beanstalk/applications.rb +25 -0
- data/lib/fog/aws/models/beanstalk/environment.rb +129 -0
- data/lib/fog/aws/models/beanstalk/environments.rb +29 -0
- data/lib/fog/aws/models/beanstalk/event.rb +20 -0
- data/lib/fog/aws/models/beanstalk/events.rb +19 -0
- data/lib/fog/aws/models/beanstalk/template.rb +62 -0
- data/lib/fog/aws/models/beanstalk/templates.rb +70 -0
- data/lib/fog/aws/models/beanstalk/version.rb +79 -0
- data/lib/fog/aws/models/beanstalk/versions.rb +31 -0
- data/lib/fog/aws/models/compute/address.rb +7 -4
- data/lib/fog/aws/models/compute/addresses.rb +2 -2
- data/lib/fog/aws/models/compute/flavors.rb +1 -1
- data/lib/fog/aws/models/compute/key_pairs.rb +2 -2
- data/lib/fog/aws/models/compute/security_group.rb +2 -2
- data/lib/fog/aws/models/compute/security_groups.rb +30 -5
- data/lib/fog/aws/models/compute/server.rb +2 -0
- data/lib/fog/aws/models/compute/servers.rb +2 -2
- data/lib/fog/aws/models/compute/subnet.rb +58 -0
- data/lib/fog/aws/models/compute/subnets.rb +99 -0
- data/lib/fog/aws/models/compute/volumes.rb +3 -3
- data/lib/fog/aws/models/compute/vpc.rb +63 -0
- data/lib/fog/aws/models/compute/vpcs.rb +93 -0
- data/lib/fog/aws/models/dns/record.rb +37 -23
- data/lib/fog/aws/models/elasticache/cluster.rb +1 -1
- data/lib/fog/aws/models/elb/listener.rb +9 -7
- data/lib/fog/aws/models/storage/directory.rb +22 -1
- data/lib/fog/aws/models/storage/file.rb +58 -7
- data/lib/fog/aws/models/storage/version.rb +36 -0
- data/lib/fog/aws/models/storage/versions.rb +38 -0
- data/lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb +3 -3
- data/lib/fog/aws/parsers/beanstalk/check_dns_availability.rb +19 -0
- data/lib/fog/aws/parsers/beanstalk/create_application.rb +24 -0
- data/lib/fog/aws/parsers/beanstalk/create_application_version.rb +26 -0
- data/lib/fog/aws/parsers/beanstalk/create_configuration_template.rb +29 -0
- data/lib/fog/aws/parsers/beanstalk/create_environment.rb +37 -0
- data/lib/fog/aws/parsers/beanstalk/create_storage_location.rb +18 -0
- data/lib/fog/aws/parsers/beanstalk/describe_application_versions.rb +26 -0
- data/lib/fog/aws/parsers/beanstalk/describe_applications.rb +24 -0
- data/lib/fog/aws/parsers/beanstalk/describe_configuration_options.rb +32 -0
- data/lib/fog/aws/parsers/beanstalk/describe_configuration_settings.rb +30 -0
- data/lib/fog/aws/parsers/beanstalk/describe_environment_resources.rb +26 -0
- data/lib/fog/aws/parsers/beanstalk/describe_environments.rb +38 -0
- data/lib/fog/aws/parsers/beanstalk/describe_events.rb +27 -0
- data/lib/fog/aws/parsers/beanstalk/empty.rb +27 -0
- data/lib/fog/aws/parsers/beanstalk/list_available_solution_stacks.rb +21 -0
- data/lib/fog/aws/parsers/beanstalk/parser.rb +93 -0
- data/lib/fog/aws/parsers/beanstalk/retrieve_environment_info.rb +22 -0
- data/lib/fog/aws/parsers/beanstalk/terminate_environment.rb +37 -0
- data/lib/fog/aws/parsers/beanstalk/update_application.rb +24 -0
- data/lib/fog/aws/parsers/beanstalk/update_application_version.rb +26 -0
- data/lib/fog/aws/parsers/beanstalk/update_configuration_template.rb +29 -0
- data/lib/fog/aws/parsers/beanstalk/update_environment.rb +37 -0
- data/lib/fog/aws/parsers/beanstalk/validate_configuration_settings.rb +22 -0
- data/lib/fog/aws/parsers/compute/allocate_address.rb +1 -1
- data/lib/fog/aws/parsers/compute/associate_address.rb +25 -0
- data/lib/fog/aws/parsers/compute/create_subnet.rb +51 -0
- data/lib/fog/aws/parsers/compute/create_vpc.rb +51 -0
- data/lib/fog/aws/parsers/compute/delete_subnet.rb +24 -0
- data/lib/fog/aws/parsers/compute/delete_vpc.rb +24 -0
- data/lib/fog/aws/parsers/compute/describe_addresses.rb +1 -1
- data/lib/fog/aws/parsers/compute/describe_images.rb +20 -13
- data/lib/fog/aws/parsers/compute/describe_instance_status.rb +62 -29
- data/lib/fog/aws/parsers/compute/describe_instances.rb +2 -2
- data/lib/fog/aws/parsers/compute/describe_security_groups.rb +4 -4
- data/lib/fog/aws/parsers/compute/describe_subnets.rb +49 -0
- data/lib/fog/aws/parsers/compute/describe_volume_status.rb +70 -0
- data/lib/fog/aws/parsers/compute/describe_vpcs.rb +49 -0
- data/lib/fog/aws/parsers/dns/list_resource_record_sets.rb +15 -7
- data/lib/fog/aws/parsers/elb/describe_load_balancer_policies.rb +64 -0
- data/lib/fog/aws/parsers/elb/describe_load_balancer_policy_types.rb +70 -0
- data/lib/fog/aws/parsers/sns/confirm_subscription.rb +1 -1
- data/lib/fog/aws/parsers/sns/create_topic.rb +1 -1
- data/lib/fog/aws/parsers/sns/list_subscriptions.rb +2 -2
- data/lib/fog/aws/parsers/sns/list_topics.rb +1 -1
- data/lib/fog/aws/parsers/sns/subscribe.rb +1 -1
- data/lib/fog/aws/parsers/storage/get_bucket_lifecycle.rb +32 -0
- data/lib/fog/aws/parsers/storage/get_bucket_object_versions.rb +1 -1
- data/lib/fog/aws/parsers/storage/get_bucket_versioning.rb +1 -1
- data/lib/fog/aws/parsers/sts/get_session_token.rb +1 -1
- data/lib/fog/aws/rds.rb +19 -21
- data/lib/fog/aws/requests/auto_scaling/delete_launch_configuration.rb +10 -1
- data/lib/fog/aws/requests/auto_scaling/describe_launch_configurations.rb +16 -7
- data/lib/fog/aws/requests/auto_scaling/describe_scheduled_actions.rb +5 -0
- data/lib/fog/aws/requests/auto_scaling/put_scheduled_update_group_action.rb +13 -3
- data/lib/fog/aws/requests/beanstalk/check_dns_availability.rb +27 -0
- data/lib/fog/aws/requests/beanstalk/create_application.rb +29 -0
- data/lib/fog/aws/requests/beanstalk/create_application_version.rb +41 -0
- data/lib/fog/aws/requests/beanstalk/create_configuration_template.rb +44 -0
- data/lib/fog/aws/requests/beanstalk/create_environment.rb +50 -0
- data/lib/fog/aws/requests/beanstalk/create_storage_location.rb +27 -0
- data/lib/fog/aws/requests/beanstalk/delete_application.rb +29 -0
- data/lib/fog/aws/requests/beanstalk/delete_application_version.rb +36 -0
- data/lib/fog/aws/requests/beanstalk/delete_configuration_template.rb +34 -0
- data/lib/fog/aws/requests/beanstalk/delete_environment_configuration.rb +34 -0
- data/lib/fog/aws/requests/beanstalk/describe_application_versions.rb +34 -0
- data/lib/fog/aws/requests/beanstalk/describe_applications.rb +30 -0
- data/lib/fog/aws/requests/beanstalk/describe_configuration_options.rb +40 -0
- data/lib/fog/aws/requests/beanstalk/describe_configuration_settings.rb +31 -0
- data/lib/fog/aws/requests/beanstalk/describe_environment_resources.rb +29 -0
- data/lib/fog/aws/requests/beanstalk/describe_environments.rb +40 -0
- data/lib/fog/aws/requests/beanstalk/describe_events.rb +29 -0
- data/lib/fog/aws/requests/beanstalk/list_available_solution_stacks.rb +27 -0
- data/lib/fog/aws/requests/beanstalk/rebuild_environment.rb +30 -0
- data/lib/fog/aws/requests/beanstalk/request_environment_info.rb +29 -0
- data/lib/fog/aws/requests/beanstalk/restart_app_server.rb +29 -0
- data/lib/fog/aws/requests/beanstalk/retrieve_environment_info.rb +29 -0
- data/lib/fog/aws/requests/beanstalk/swap_environment_cnames.rb +29 -0
- data/lib/fog/aws/requests/beanstalk/terminate_environment.rb +31 -0
- data/lib/fog/aws/requests/beanstalk/update_application.rb +30 -0
- data/lib/fog/aws/requests/beanstalk/update_application_version.rb +30 -0
- data/lib/fog/aws/requests/beanstalk/update_configuration_template.rb +36 -0
- data/lib/fog/aws/requests/beanstalk/update_environment.rb +42 -0
- data/lib/fog/aws/requests/beanstalk/validate_configuration_settings.rb +33 -0
- data/lib/fog/aws/requests/compute/allocate_address.rb +11 -4
- data/lib/fog/aws/requests/compute/associate_address.rb +44 -17
- data/lib/fog/aws/requests/compute/authorize_security_group_ingress.rb +15 -17
- data/lib/fog/aws/requests/compute/create_security_group.rb +8 -4
- data/lib/fog/aws/requests/compute/create_subnet.rb +79 -0
- data/lib/fog/aws/requests/compute/create_tags.rb +3 -2
- data/lib/fog/aws/requests/compute/create_vpc.rb +71 -0
- data/lib/fog/aws/requests/compute/delete_security_group.rb +22 -4
- data/lib/fog/aws/requests/compute/delete_subnet.rb +49 -0
- data/lib/fog/aws/requests/compute/delete_vpc.rb +52 -0
- data/lib/fog/aws/requests/compute/describe_security_groups.rb +2 -0
- data/lib/fog/aws/requests/compute/describe_subnets.rb +66 -0
- data/lib/fog/aws/requests/compute/describe_volume_status.rb +50 -0
- data/lib/fog/aws/requests/compute/describe_vpcs.rb +62 -0
- data/lib/fog/aws/requests/compute/detach_volume.rb +13 -8
- data/lib/fog/aws/requests/compute/disassociate_address.rb +7 -5
- data/lib/fog/aws/requests/compute/request_spot_instances.rb +5 -1
- data/lib/fog/aws/requests/compute/revoke_security_group_ingress.rb +11 -13
- data/lib/fog/aws/requests/compute/run_instances.rb +5 -1
- data/lib/fog/aws/requests/dns/change_resource_record_sets.rb +43 -28
- data/lib/fog/aws/requests/dns/create_hosted_zone.rb +9 -9
- data/lib/fog/aws/requests/dns/delete_hosted_zone.rb +7 -7
- data/lib/fog/aws/requests/dns/get_change.rb +5 -5
- data/lib/fog/aws/requests/dns/get_hosted_zone.rb +8 -8
- data/lib/fog/aws/requests/dns/list_hosted_zones.rb +15 -15
- data/lib/fog/aws/requests/dns/list_resource_record_sets.rb +23 -20
- data/lib/fog/aws/requests/dynamodb/batch_get_item.rb +43 -0
- data/lib/fog/aws/requests/dynamodb/create_table.rb +55 -0
- data/lib/fog/aws/requests/dynamodb/delete_item.rb +45 -0
- data/lib/fog/aws/requests/dynamodb/delete_table.rb +42 -0
- data/lib/fog/aws/requests/dynamodb/describe_table.rb +44 -0
- data/lib/fog/aws/requests/dynamodb/get_item.rb +43 -0
- data/lib/fog/aws/requests/dynamodb/list_tables.rb +29 -0
- data/lib/fog/aws/requests/dynamodb/put_item.rb +41 -0
- data/lib/fog/aws/requests/dynamodb/query.rb +44 -0
- data/lib/fog/aws/requests/dynamodb/scan.rb +45 -0
- data/lib/fog/aws/requests/dynamodb/update_item.rb +49 -0
- data/lib/fog/aws/requests/dynamodb/update_table.rb +46 -0
- data/lib/fog/aws/requests/elasticache/create_cache_cluster.rb +2 -2
- data/lib/fog/aws/requests/elasticache/modify_cache_cluster.rb +2 -2
- data/lib/fog/aws/requests/elb/create_app_cookie_stickiness_policy.rb +2 -0
- data/lib/fog/aws/requests/elb/create_lb_cookie_stickiness_policy.rb +3 -1
- data/lib/fog/aws/requests/elb/create_load_balancer.rb +7 -2
- data/lib/fog/aws/requests/elb/create_load_balancer_listeners.rb +10 -1
- data/lib/fog/aws/requests/elb/create_load_balancer_policy.rb +79 -0
- data/lib/fog/aws/requests/elb/delete_load_balancer_policy.rb +1 -1
- data/lib/fog/aws/requests/elb/describe_load_balancer_policies.rb +71 -0
- data/lib/fog/aws/requests/elb/describe_load_balancer_policy_types.rb +68 -0
- data/lib/fog/aws/requests/elb/describe_load_balancers.rb +5 -1
- data/lib/fog/aws/requests/elb/set_load_balancer_policies_of_listener.rb +1 -1
- data/lib/fog/aws/requests/emr/run_job_flow.rb +9 -7
- data/lib/fog/aws/requests/iam/add_user_to_group.rb +24 -0
- data/lib/fog/aws/requests/iam/create_access_key.rb +24 -0
- data/lib/fog/aws/requests/iam/create_group.rb +21 -0
- data/lib/fog/aws/requests/iam/create_user.rb +21 -0
- data/lib/fog/aws/requests/iam/delete_access_key.rb +17 -0
- data/lib/fog/aws/requests/iam/delete_group.rb +19 -0
- data/lib/fog/aws/requests/iam/delete_user.rb +17 -0
- data/lib/fog/aws/requests/iam/delete_user_policy.rb +16 -0
- data/lib/fog/aws/requests/iam/list_access_keys.rb +21 -0
- data/lib/fog/aws/requests/iam/list_groups.rb +18 -0
- data/lib/fog/aws/requests/iam/list_groups_for_user.rb +24 -0
- data/lib/fog/aws/requests/iam/list_user_policies.rb +18 -0
- data/lib/fog/aws/requests/iam/list_users.rb +17 -0
- data/lib/fog/aws/requests/iam/put_user_policy.rb +18 -0
- data/lib/fog/aws/requests/iam/remove_user_from_group.rb +19 -0
- data/lib/fog/aws/requests/iam/upload_server_certificate.rb +4 -1
- data/lib/fog/aws/requests/rds/authorize_db_security_group_ingress.rb +30 -1
- data/lib/fog/aws/requests/rds/create_db_instance.rb +18 -15
- data/lib/fog/aws/requests/rds/create_db_parameter_group.rb +19 -1
- data/lib/fog/aws/requests/rds/create_db_security_group.rb +19 -1
- data/lib/fog/aws/requests/rds/create_db_snapshot.rb +38 -2
- data/lib/fog/aws/requests/rds/delete_db_instance.rb +1 -2
- data/lib/fog/aws/requests/rds/delete_db_parameter_group.rb +11 -1
- data/lib/fog/aws/requests/rds/delete_db_security_group.rb +11 -1
- data/lib/fog/aws/requests/rds/delete_db_snapshot.rb +15 -4
- data/lib/fog/aws/requests/rds/describe_db_instances.rb +25 -9
- data/lib/fog/aws/requests/rds/describe_db_parameter_groups.rb +19 -1
- data/lib/fog/aws/requests/rds/describe_db_parameters.rb +0 -1
- data/lib/fog/aws/requests/rds/describe_db_security_groups.rb +49 -3
- data/lib/fog/aws/requests/rds/describe_db_snapshots.rb +28 -1
- data/lib/fog/aws/requests/rds/modify_db_instance.rb +10 -8
- data/lib/fog/aws/requests/rds/reboot_db_instance.rb +6 -6
- data/lib/fog/aws/requests/rds/revoke_db_security_group_ingress.rb +27 -1
- data/lib/fog/aws/requests/sns/confirm_subscription.rb +1 -1
- data/lib/fog/aws/requests/sns/delete_topic.rb +1 -1
- data/lib/fog/aws/requests/sns/get_topic_attributes.rb +1 -1
- data/lib/fog/aws/requests/sns/list_subscriptions_by_topic.rb +1 -1
- data/lib/fog/aws/requests/sns/publish.rb +1 -1
- data/lib/fog/aws/requests/sns/set_topic_attributes.rb +1 -1
- data/lib/fog/aws/requests/sns/subscribe.rb +1 -1
- data/lib/fog/aws/requests/sns/unsubscribe.rb +1 -1
- data/lib/fog/aws/requests/sqs/change_message_visibility.rb +1 -1
- data/lib/fog/aws/requests/sqs/delete_message.rb +1 -1
- data/lib/fog/aws/requests/sqs/receive_message.rb +13 -14
- data/lib/fog/aws/requests/storage/copy_object.rb +3 -5
- data/lib/fog/aws/requests/storage/delete_bucket_lifecycle.rb +30 -0
- data/lib/fog/aws/requests/storage/delete_object.rb +73 -2
- data/lib/fog/aws/requests/storage/get_bucket.rb +3 -2
- data/lib/fog/aws/requests/storage/get_bucket_lifecycle.rb +41 -0
- data/lib/fog/aws/requests/storage/get_bucket_object_versions.rb +95 -2
- data/lib/fog/aws/requests/storage/get_bucket_versioning.rb +32 -0
- data/lib/fog/aws/requests/storage/get_object.rb +42 -12
- data/lib/fog/aws/requests/storage/get_object_http_url.rb +7 -2
- data/lib/fog/aws/requests/storage/get_object_https_url.rb +7 -2
- data/lib/fog/aws/requests/storage/head_object.rb +7 -6
- data/lib/fog/aws/requests/storage/put_bucket_lifecycle.rb +48 -0
- data/lib/fog/aws/requests/storage/put_bucket_versioning.rb +41 -0
- data/lib/fog/aws/requests/storage/put_bucket_website.rb +17 -0
- data/lib/fog/aws/requests/storage/put_object.rb +26 -10
- data/lib/fog/aws/requests/storage/sync_clock.rb +1 -1
- data/lib/fog/aws/requests/sts/get_federation_token.rb +1 -0
- data/lib/fog/aws/requests/sts/get_session_token.rb +1 -0
- data/lib/fog/aws/ses.rb +2 -7
- data/lib/fog/aws/simpledb.rb +1 -18
- data/lib/fog/aws/sns.rb +1 -16
- data/lib/fog/aws/sqs.rb +2 -12
- data/lib/fog/aws/storage.rb +7 -29
- data/lib/fog/{new_servers.rb → bare_metal_cloud.rb} +2 -2
- data/lib/fog/{new_servers → bare_metal_cloud}/compute.rb +14 -14
- data/lib/fog/{new_servers → bare_metal_cloud}/requests/compute/add_server.rb +1 -1
- data/lib/fog/{new_servers → bare_metal_cloud}/requests/compute/cancel_server.rb +1 -1
- data/lib/fog/{new_servers → bare_metal_cloud}/requests/compute/get_server.rb +1 -1
- data/lib/fog/{new_servers → bare_metal_cloud}/requests/compute/list_images.rb +1 -1
- data/lib/fog/{new_servers → bare_metal_cloud}/requests/compute/list_plans.rb +1 -1
- data/lib/fog/{new_servers → bare_metal_cloud}/requests/compute/list_servers.rb +1 -1
- data/lib/fog/{new_servers → bare_metal_cloud}/requests/compute/reboot_server.rb +1 -1
- data/lib/fog/bin.rb +4 -1
- data/lib/fog/bin/aws.rb +9 -1
- data/lib/fog/bin/{new_servers.rb → bare_metal_cloud.rb} +5 -5
- data/lib/fog/bin/cloudstack.rb +30 -0
- data/lib/fog/bin/joyent.rb +31 -0
- data/lib/fog/bin/ovirt.rb +30 -0
- data/lib/fog/bin/voxel.rb +1 -1
- data/lib/fog/bluebox/compute.rb +4 -0
- data/lib/fog/bluebox/models/compute/location.rb +17 -0
- data/lib/fog/bluebox/models/compute/locations.rb +28 -0
- data/lib/fog/bluebox/models/compute/server.rb +12 -5
- data/lib/fog/bluebox/requests/compute/create_block.rb +2 -2
- data/lib/fog/bluebox/requests/compute/get_location.rb +26 -0
- data/lib/fog/bluebox/requests/compute/get_locations.rb +24 -0
- data/lib/fog/brightbox/compute.rb +1 -0
- data/lib/fog/brightbox/requests/compute/update_firewall_rule.rb +13 -0
- data/lib/fog/cloudstack.rb +28 -0
- data/lib/fog/cloudstack/compute.rb +254 -0
- data/lib/fog/cloudstack/requests/compute/acquire_ip_address.rb +21 -0
- data/lib/fog/cloudstack/requests/compute/assign_to_load_balancer_rule.rb +25 -0
- data/lib/fog/cloudstack/requests/compute/attach_volume.rb +23 -0
- data/lib/fog/cloudstack/requests/compute/authorize_security_group_ingress.rb +22 -0
- data/lib/fog/cloudstack/requests/compute/change_service_for_virtual_machine.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/create_account.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/create_domain.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/create_load_balancer_rule.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/create_network.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/create_port_forwarding_rule.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/create_security_group.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/create_snapshot.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/create_snapshot_policy.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/create_ssh_key_pair.rb +22 -0
- data/lib/fog/cloudstack/requests/compute/create_user.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/create_volume.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/delete_account.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/delete_domain.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/delete_load_balancer_rule.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/delete_port_forwarding_rule.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/delete_security_group.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/delete_snapshot.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/delete_snapshot_policies.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/delete_ssh_key_pair.rb +21 -0
- data/lib/fog/cloudstack/requests/compute/delete_user.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/delete_volume.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/deploy_virtual_machine.rb +33 -0
- data/lib/fog/cloudstack/requests/compute/destroy_virtual_machine.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/detach_volume.rb +21 -0
- data/lib/fog/cloudstack/requests/compute/disable_account.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/disable_user.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/enable_account.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/enable_user.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/generate_usage_records.rb +28 -0
- data/lib/fog/cloudstack/requests/compute/get_vm_password.rb +21 -0
- data/lib/fog/cloudstack/requests/compute/list_accounts.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_alerts.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_async_jobs.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_capabilities.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_capacity.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_clusters.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_configurations.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_disk_offerings.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_domain_children.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_domains.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_events.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_external_firewalls.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_external_load_balancers.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_hosts.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_hypervisors.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_instance_groups.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_isos.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_load_balancer_rule_instances.rb +23 -0
- data/lib/fog/cloudstack/requests/compute/list_load_balancer_rules.rb +22 -0
- data/lib/fog/cloudstack/requests/compute/list_network_offerings.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_networks.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_os_categories.rb +22 -0
- data/lib/fog/cloudstack/requests/compute/list_os_types.rb +22 -0
- data/lib/fog/cloudstack/requests/compute/list_pods.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_port_forwarding_rules.rb +22 -0
- data/lib/fog/cloudstack/requests/compute/list_public_ip_addresses.rb +22 -0
- data/lib/fog/cloudstack/requests/compute/list_resource_limits.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_security_groups.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_service_offerings.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_snapshot_policies.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_snapshots.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_ssh_key_pairs.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_storage_pools.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_templates.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_usage_records.rb +28 -0
- data/lib/fog/cloudstack/requests/compute/list_users.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_virtual_machines.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_volumes.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/list_zones.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/migrate_virtual_machine.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/query_async_job_result.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/reboot_virtual_machine.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/recover_virtual_machine.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/register_ssh_key_pair.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/register_user_keys.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/remove_from_load_balancer_rule.rb +25 -0
- data/lib/fog/cloudstack/requests/compute/reset_password_for_virtual_machine.rb +21 -0
- data/lib/fog/cloudstack/requests/compute/revoke_security_group_ingress.rb +21 -0
- data/lib/fog/cloudstack/requests/compute/start_virtual_machine.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/stop_virtual_machine.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/update_account.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/update_domain.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/update_resource_count.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/update_user.rb +20 -0
- data/lib/fog/cloudstack/requests/compute/update_virtual_machine.rb +20 -0
- data/lib/fog/compute.rb +17 -3
- data/lib/fog/compute/models/server.rb +11 -0
- data/lib/fog/core.rb +1 -3
- data/lib/fog/core/connection.rb +2 -2
- data/lib/fog/core/errors.rb +8 -2
- data/lib/fog/core/model.rb +8 -0
- data/lib/fog/core/scp.rb +18 -2
- data/lib/fog/dns.rb +1 -0
- data/lib/fog/dnsimple/dns.rb +1 -1
- data/lib/fog/dynect/models/dns/records.rb +2 -2
- data/lib/fog/dynect/requests/dns/get_node_list.rb +2 -1
- data/lib/fog/ecloud/compute.rb +1 -1
- data/lib/fog/ecloud/requests/compute/add_backup_internet_service.rb +1 -1
- data/lib/fog/ecloud/requests/compute/add_internet_service.rb +2 -2
- data/lib/fog/ecloud/requests/compute/add_node.rb +1 -1
- data/lib/fog/ecloud/requests/compute/clone_vapp.rb +1 -1
- data/lib/fog/ecloud/requests/compute/configure_internet_service.rb +1 -1
- data/lib/fog/ecloud/requests/compute/configure_network.rb +1 -1
- data/lib/fog/ecloud/requests/compute/configure_network_ip.rb +1 -1
- data/lib/fog/ecloud/requests/compute/configure_vapp.rb +1 -1
- data/lib/fog/ecloud/requests/compute/instantiate_vapp_template.rb +1 -1
- data/lib/fog/glesys/compute.rb +4 -2
- data/lib/fog/glesys/models/compute/server.rb +14 -14
- data/lib/fog/google/requests/storage/get_object.rb +22 -14
- data/lib/fog/joyent.rb +8 -0
- data/lib/fog/joyent/compute.rb +228 -0
- data/lib/fog/joyent/errors.rb +90 -0
- data/lib/fog/joyent/models/compute/flavor.rb +17 -0
- data/lib/fog/joyent/models/compute/flavors.rb +25 -0
- data/lib/fog/joyent/models/compute/image.rb +18 -0
- data/lib/fog/joyent/models/compute/images.rb +25 -0
- data/lib/fog/joyent/models/compute/key.rb +19 -0
- data/lib/fog/joyent/models/compute/keys.rb +34 -0
- data/lib/fog/joyent/models/compute/server.rb +117 -0
- data/lib/fog/joyent/models/compute/servers.rb +35 -0
- data/lib/fog/joyent/models/compute/snapshot.rb +45 -0
- data/lib/fog/joyent/models/compute/snapshots.rb +37 -0
- data/lib/fog/joyent/requests/compute/add_machine_tags.rb +20 -0
- data/lib/fog/joyent/requests/compute/create_key.rb +56 -0
- data/lib/fog/joyent/requests/compute/create_machine.rb +16 -0
- data/lib/fog/joyent/requests/compute/create_machine_snapshot.rb +18 -0
- data/lib/fog/joyent/requests/compute/delete_all_machine_metadata.rb +16 -0
- data/lib/fog/joyent/requests/compute/delete_all_machine_tags.rb +15 -0
- data/lib/fog/joyent/requests/compute/delete_key.rb +29 -0
- data/lib/fog/joyent/requests/compute/delete_machine.rb +15 -0
- data/lib/fog/joyent/requests/compute/delete_machine_metadata.rb +18 -0
- data/lib/fog/joyent/requests/compute/delete_machine_snapshot.rb +21 -0
- data/lib/fog/joyent/requests/compute/delete_machine_tag.rb +15 -0
- data/lib/fog/joyent/requests/compute/get_dataset.rb +28 -0
- data/lib/fog/joyent/requests/compute/get_key.rb +29 -0
- data/lib/fog/joyent/requests/compute/get_machine.rb +29 -0
- data/lib/fog/joyent/requests/compute/get_machine_metadata.rb +25 -0
- data/lib/fog/joyent/requests/compute/get_machine_snapshot.rb +14 -0
- data/lib/fog/joyent/requests/compute/get_machine_tag.rb +19 -0
- data/lib/fog/joyent/requests/compute/get_package.rb +33 -0
- data/lib/fog/joyent/requests/compute/list_datasets.rb +24 -0
- data/lib/fog/joyent/requests/compute/list_keys.rb +25 -0
- data/lib/fog/joyent/requests/compute/list_machine_snapshots.rb +14 -0
- data/lib/fog/joyent/requests/compute/list_machine_tags.rb +20 -0
- data/lib/fog/joyent/requests/compute/list_machines.rb +25 -0
- data/lib/fog/joyent/requests/compute/list_packages.rb +36 -0
- data/lib/fog/joyent/requests/compute/reboot_machine.rb +15 -0
- data/lib/fog/joyent/requests/compute/resize_machine.rb +13 -0
- data/lib/fog/joyent/requests/compute/start_machine.rb +16 -0
- data/lib/fog/joyent/requests/compute/start_machine_from_snapshot.rb +15 -0
- data/lib/fog/joyent/requests/compute/stop_machine.rb +16 -0
- data/lib/fog/joyent/requests/compute/update_machine_metadata.rb +15 -0
- data/lib/fog/libvirt/compute.rb +5 -3
- data/lib/fog/libvirt/models/compute/server.rb +89 -102
- data/lib/fog/libvirt/models/compute/servers.rb +2 -1
- data/lib/fog/libvirt/models/compute/util.rb +1 -2
- data/lib/fog/local/models/storage/file.rb +8 -1
- data/lib/fog/local/storage.rb +8 -0
- data/lib/fog/ninefold/models/storage/file.rb +8 -0
- data/lib/fog/openstack.rb +9 -7
- data/lib/fog/openstack/compute.rb +0 -2
- data/lib/fog/ovirt.rb +17 -0
- data/lib/fog/ovirt/compute.rb +106 -0
- data/lib/fog/ovirt/models/compute/cluster.rb +24 -0
- data/lib/fog/ovirt/models/compute/clusters.rb +23 -0
- data/lib/fog/ovirt/models/compute/interface.rb +22 -0
- data/lib/fog/ovirt/models/compute/interfaces.rb +32 -0
- data/lib/fog/ovirt/models/compute/server.rb +112 -0
- data/lib/fog/ovirt/models/compute/servers.rb +30 -0
- data/lib/fog/ovirt/models/compute/template.rb +53 -0
- data/lib/fog/ovirt/models/compute/templates.rb +23 -0
- data/lib/fog/ovirt/requests/compute/add_interface.rb +23 -0
- data/lib/fog/ovirt/requests/compute/create_vm.rb +20 -0
- data/lib/fog/ovirt/requests/compute/datacenters.rb +22 -0
- data/lib/fog/ovirt/requests/compute/destroy_interface.rb +25 -0
- data/lib/fog/ovirt/requests/compute/destroy_vm.rb +22 -0
- data/lib/fog/ovirt/requests/compute/get_cluster.rb +18 -0
- data/lib/fog/ovirt/requests/compute/get_template.rb +18 -0
- data/lib/fog/ovirt/requests/compute/get_virtual_machine.rb +18 -0
- data/lib/fog/ovirt/requests/compute/list_clusters.rb +20 -0
- data/lib/fog/ovirt/requests/compute/list_networks.rb +17 -0
- data/lib/fog/ovirt/requests/compute/list_template_interfaces.rb +20 -0
- data/lib/fog/ovirt/requests/compute/list_templates.rb +20 -0
- data/lib/fog/ovirt/requests/compute/list_virtual_machines.rb +20 -0
- data/lib/fog/ovirt/requests/compute/list_vm_interfaces.rb +20 -0
- data/lib/fog/ovirt/requests/compute/mock_files/cluster.xml +20 -0
- data/lib/fog/ovirt/requests/compute/mock_files/clusters.xml +39 -0
- data/lib/fog/ovirt/requests/compute/mock_files/data_centers.xml +17 -0
- data/lib/fog/ovirt/requests/compute/mock_files/nics.xml +10 -0
- data/lib/fog/ovirt/requests/compute/mock_files/storage_domains.xml +36 -0
- data/lib/fog/ovirt/requests/compute/mock_files/template.xml +39 -0
- data/lib/fog/ovirt/requests/compute/mock_files/templates.xml +110 -0
- data/lib/fog/ovirt/requests/compute/mock_files/vm.xml +54 -0
- data/lib/fog/ovirt/requests/compute/mock_files/vms.xml +152 -0
- data/lib/fog/ovirt/requests/compute/storage_domains.rb +22 -0
- data/lib/fog/ovirt/requests/compute/update_interface.rb +25 -0
- data/lib/fog/ovirt/requests/compute/update_vm.rb +20 -0
- data/lib/fog/ovirt/requests/compute/vm_action.rb +26 -0
- data/lib/fog/providers.rb +4 -1
- data/lib/fog/rackspace/models/compute/flavor.rb +2 -0
- data/lib/fog/rackspace/models/storage/directory.rb +5 -1
- data/lib/fog/rackspace/models/storage/file.rb +7 -0
- data/lib/fog/rackspace/requests/compute/create_image.rb +1 -3
- data/lib/fog/rackspace/requests/storage/copy_object.rb +27 -0
- data/lib/fog/rackspace/requests/storage/get_object.rb +8 -2
- data/lib/fog/rackspace/requests/storage/put_object.rb +6 -5
- data/lib/fog/rackspace/storage.rb +1 -0
- data/lib/fog/storm_on_demand/compute.rb +1 -1
- data/lib/fog/vcloud/compute.rb +85 -30
- data/lib/fog/vcloud/models/compute/catalog.rb +1 -1
- data/lib/fog/vcloud/models/compute/catalog_item.rb +1 -1
- data/lib/fog/vcloud/models/compute/catalogs.rb +2 -4
- data/lib/fog/vcloud/models/compute/ip.rb +2 -2
- data/lib/fog/vcloud/models/compute/network.rb +3 -9
- data/lib/fog/vcloud/models/compute/networks.rb +13 -8
- data/lib/fog/vcloud/models/compute/organization.rb +3 -4
- data/lib/fog/vcloud/models/compute/organizations.rb +7 -4
- data/lib/fog/vcloud/models/compute/server.rb +5 -4
- data/lib/fog/vcloud/models/compute/servers.rb +1 -5
- data/lib/fog/vcloud/models/compute/task.rb +1 -1
- data/lib/fog/vcloud/models/compute/tasks.rb +1 -3
- data/lib/fog/vcloud/models/compute/vapp.rb +6 -4
- data/lib/fog/vcloud/models/compute/vapps.rb +2 -6
- data/lib/fog/vcloud/models/compute/vdc.rb +5 -5
- data/lib/fog/vcloud/models/compute/vdcs.rb +2 -5
- data/lib/fog/vcloud/requests/compute/clone_vapp.rb +1 -1
- data/lib/fog/vcloud/requests/compute/configure_network.rb +1 -1
- data/lib/fog/vcloud/requests/compute/configure_network_ip.rb +1 -1
- data/lib/fog/vcloud/requests/compute/configure_vapp.rb +1 -1
- data/lib/fog/vcloud/requests/compute/configure_vm.rb +1 -1
- data/lib/fog/vcloud/requests/compute/instantiate_vapp_template.rb +1 -1
- data/lib/fog/vcloud/requests/compute/login.rb +8 -4
- data/lib/fog/virtual_box/compute.rb +4 -0
- data/lib/fog/vmfusion/models/compute/server.rb +120 -52
- data/lib/fog/vmfusion/models/compute/servers.rb +11 -7
- data/lib/fog/voxel/compute.rb +1 -1
- data/lib/fog/vsphere/compute.rb +5 -0
- data/lib/fog/vsphere/models/compute/server.rb +25 -0
- data/lib/fog/vsphere/requests/compute/list_virtual_machines.rb +1 -1
- data/lib/fog/vsphere/requests/compute/vm_clone.rb +43 -8
- data/lib/fog/vsphere/requests/compute/vm_create.rb +97 -0
- data/lib/fog/vsphere/requests/compute/vm_migrate.rb +37 -0
- data/lib/fog/vsphere/requests/compute/vm_reconfig_cpus.rb +23 -0
- data/lib/fog/vsphere/requests/compute/vm_reconfig_hardware.rb +25 -0
- data/lib/fog/vsphere/requests/compute/vm_reconfig_memory.rb +23 -0
- data/lib/fog/zerigo/models/dns/record.rb +7 -5
- data/lib/fog/zerigo/parsers/dns/create_host.rb +3 -1
- data/lib/fog/zerigo/parsers/dns/find_hosts.rb +3 -1
- data/lib/fog/zerigo/parsers/dns/get_host.rb +3 -1
- data/lib/fog/zerigo/parsers/dns/get_zone.rb +3 -1
- data/lib/fog/zerigo/parsers/dns/list_hosts.rb +3 -1
- data/lib/fog/zerigo/requests/dns/update_host.rb +2 -2
- data/spec/ecloud/spec_helper.rb +1 -1
- data/tests/aws/models/beanstalk/application_tests.rb +70 -0
- data/tests/aws/models/beanstalk/applications_tests.rb +7 -0
- data/tests/aws/models/beanstalk/environment_tests.rb +132 -0
- data/tests/aws/models/beanstalk/environments_tests.rb +34 -0
- data/tests/aws/models/beanstalk/template_tests.rb +47 -0
- data/tests/aws/models/beanstalk/templates_tests.rb +62 -0
- data/tests/aws/models/beanstalk/version_tests.rb +66 -0
- data/tests/aws/models/beanstalk/versions_tests.rb +61 -0
- data/tests/aws/models/compute/subnet_tests.rb +5 -0
- data/tests/aws/models/compute/subnets_tests.rb +6 -0
- data/tests/aws/models/compute/vpc_tests.rb +4 -0
- data/tests/aws/models/compute/vpcs_tests.rb +6 -0
- data/tests/aws/models/dns/record_tests.rb +23 -0
- data/tests/aws/models/dns/records_tests.rb +23 -0
- data/tests/aws/models/dns/zone_tests.rb +4 -0
- data/tests/aws/models/dns/zones_tests.rb +4 -0
- data/tests/aws/models/elb/model_tests.rb +11 -7
- data/tests/aws/models/rds/security_group_tests.rb +6 -3
- data/tests/aws/models/rds/security_groups_tests.rb +1 -2
- data/tests/aws/models/rds/server_tests.rb +5 -3
- data/tests/aws/models/rds/servers_tests.rb +1 -3
- data/tests/aws/models/rds/snapshot_tests.rb +1 -3
- data/tests/aws/models/rds/snapshots_tests.rb +1 -3
- data/tests/aws/models/storage/directory_tests.rb +51 -0
- data/tests/aws/models/storage/file_tests.rb +80 -0
- data/tests/aws/models/storage/files_tests.rb +56 -0
- data/tests/aws/models/storage/version_tests.rb +52 -0
- data/tests/aws/models/storage/versions_tests.rb +56 -0
- data/tests/aws/requests/auto_scaling/helper.rb +2 -2
- data/tests/aws/requests/beanstalk/application_tests.rb +140 -0
- data/tests/aws/requests/beanstalk/solution_stack_tests.rb +22 -0
- data/tests/aws/requests/compute/address_tests.rb +7 -5
- data/tests/aws/requests/compute/instance_tests.rb +16 -2
- data/tests/aws/requests/compute/security_group_tests.rb +77 -4
- data/tests/aws/requests/compute/subnet_tests.rb +36 -0
- data/tests/aws/requests/compute/volume_tests.rb +4 -0
- data/tests/aws/requests/compute/vpc_tests.rb +34 -0
- data/tests/aws/requests/dns/dns_tests.rb +106 -99
- data/tests/aws/requests/dns/helper.rb +21 -0
- data/tests/aws/requests/dynamodb/item_tests.rb +117 -0
- data/tests/aws/requests/dynamodb/table_tests.rb +99 -0
- data/tests/aws/requests/elb/helper.rb +33 -0
- data/tests/aws/requests/elb/listener_tests.rb +18 -4
- data/tests/aws/requests/elb/policy_tests.rb +13 -0
- data/tests/aws/requests/iam/access_key_tests.rb +2 -7
- data/tests/aws/requests/iam/group_tests.rb +1 -4
- data/tests/aws/requests/iam/helper.rb +19 -0
- data/tests/aws/requests/iam/server_certificate_tests.rb +5 -0
- data/tests/aws/requests/iam/user_policy_tests.rb +4 -11
- data/tests/aws/requests/iam/user_tests.rb +19 -12
- data/tests/aws/requests/rds/helper.rb +45 -11
- data/tests/aws/requests/rds/instance_tests.rb +2 -3
- data/tests/aws/requests/rds/parameter_group_tests.rb +1 -7
- data/tests/aws/requests/rds/security_group_tests.rb +101 -0
- data/tests/aws/requests/storage/bucket_tests.rb +66 -1
- data/tests/aws/requests/storage/versioning_tests.rb +188 -0
- data/tests/bluebox/requests/compute/block_tests.rb +9 -8
- data/tests/bluebox/requests/compute/helper.rb +5 -0
- data/tests/bluebox/requests/compute/location_tests.rb +32 -0
- data/tests/bluebox/requests/compute/product_tests.rb +10 -4
- data/tests/bluebox/requests/compute/template_tests.rb +4 -2
- data/tests/brightbox/requests/compute/account_tests.rb +3 -3
- data/tests/brightbox/requests/compute/api_client_tests.rb +6 -6
- data/tests/brightbox/requests/compute/cloud_ip_tests.rb +7 -7
- data/tests/brightbox/requests/compute/helper.rb +33 -8
- data/tests/brightbox/requests/compute/image_tests.rb +2 -2
- data/tests/brightbox/requests/compute/interface_tests.rb +1 -1
- data/tests/brightbox/requests/compute/load_balancer_tests.rb +9 -9
- data/tests/brightbox/requests/compute/server_group_tests.rb +8 -8
- data/tests/brightbox/requests/compute/server_tests.rb +13 -11
- data/tests/brightbox/requests/compute/server_type_tests.rb +2 -2
- data/tests/brightbox/requests/compute/user_tests.rb +3 -3
- data/tests/brightbox/requests/compute/zone_tests.rb +2 -2
- data/tests/cloudstack/requests/disk_offering_tests.rb +29 -0
- data/tests/cloudstack/requests/os_type_tests.rb +38 -0
- data/tests/cloudstack/requests/security_group_tests.rb +29 -0
- data/tests/cloudstack/requests/service_offering_tests.rb +38 -0
- data/tests/cloudstack/requests/snapshot_tests.rb +32 -0
- data/tests/cloudstack/requests/ssh_key_pair_tests.rb +23 -0
- data/tests/cloudstack/requests/template_tests.rb +53 -0
- data/tests/cloudstack/requests/virtual_machine_tests.rb +71 -0
- data/tests/cloudstack/requests/volume_tests.rb +48 -0
- data/tests/cloudstack/requests/zone_tests.rb +33 -0
- data/tests/cloudstack/signed_params_tests.rb +12 -0
- data/tests/compute/helper.rb +7 -2
- data/tests/glesys/requests/compute/helper.rb +146 -123
- data/tests/glesys/requests/compute/ip_tests.rb +3 -3
- data/tests/glesys/requests/compute/server_tests.rb +50 -12
- data/tests/helper.rb +1 -1
- data/tests/helpers/formats_helper.rb +1 -1
- data/tests/helpers/mock_helper.rb +7 -2
- data/tests/joyent/requests/compute/datasets_tests.rb +49 -0
- data/tests/joyent/requests/compute/keys_tests.rb +47 -0
- data/tests/joyent/requests/compute/machines_tests.rb +67 -0
- data/tests/joyent/requests/compute/packages_tests.rb +68 -0
- data/tests/ovirt/compute_tests.rb +24 -0
- data/tests/ovirt/models/compute/cluster_tests.rb +31 -0
- data/tests/ovirt/models/compute/clusters_tests.rb +9 -0
- data/tests/ovirt/models/compute/interface_tests.rb +27 -0
- data/tests/ovirt/models/compute/interfaces_tests.rb +9 -0
- data/tests/ovirt/models/compute/server_tests.rb +51 -0
- data/tests/ovirt/models/compute/servers_tests.rb +14 -0
- data/tests/ovirt/models/compute/template_tests.rb +28 -0
- data/tests/ovirt/models/compute/templates_tests.rb +9 -0
- data/tests/ovirt/requests/compute/create_vm_tests.rb +26 -0
- data/tests/ovirt/requests/compute/destroy_vm_tests.rb +18 -0
- data/tests/ovirt/requests/compute/list_datacenters_tests.rb +13 -0
- data/tests/ovirt/requests/compute/list_storage_domains_tests.rb +13 -0
- data/tests/ovirt/requests/compute/update_vm_tests.rb +18 -0
- data/tests/vcloud/data/api_+_admin_+_network_+_2 +110 -0
- data/tests/vcloud/data/api_+_network_+_1 +44 -0
- data/tests/vcloud/data/api_+_org_+_ +5 -0
- data/tests/vcloud/data/api_+_org_+_1 +17 -0
- data/tests/vcloud/data/api_+_sessions +8 -0
- data/tests/vcloud/data/api_+_v1.0_+_vApp_+_vapp-1 +1 -1
- data/tests/vcloud/data/api_+_v1.0_+_vApp_+_vm-1 +1 -1
- data/tests/vcloud/data/api_+_v1.0_+_vApp_+_vm-2 +1 -1
- data/tests/vcloud/data/api_+_vApp_+_vapp-1 +369 -0
- data/tests/vcloud/data/api_+_vApp_+_vm-2 +155 -0
- data/tests/vcloud/data/api_+_vdc_+_1 +61 -0
- data/tests/vcloud/models/compute/conn_helper.rb +2 -2
- data/tests/vcloud/models/compute/network_tests.rb +54 -52
- data/tests/vcloud/models/compute/networks_tests.rb +54 -35
- data/tests/vcloud/models/compute/organization_tests.rb +17 -10
- data/tests/vcloud/models/compute/organizations_tests.rb +10 -8
- data/tests/vcloud/models/compute/server_tests.rb +45 -39
- data/tests/vcloud/models/compute/servers_tests.rb +17 -10
- data/tests/vcloud/models/compute/vapp_tests.rb +26 -21
- data/tests/vcloud/models/compute/vapps_tests.rb +13 -11
- data/tests/vcloud/models/compute/vdc_tests.rb +40 -34
- data/tests/vcloud/models/compute/vdcs_tests.rb +17 -10
- data/tests/vsphere/requests/compute/vm_clone_tests.rb +16 -4
- data/tests/vsphere/requests/compute/vm_create_tests.rb +20 -0
- data/tests/vsphere/requests/compute/vm_migrate_tests.rb +16 -0
- data/tests/vsphere/requests/compute/vm_power_on_tests.rb +1 -1
- data/tests/vsphere/requests/compute/vm_reconfig_cpus_tests.rb +19 -0
- data/tests/vsphere/requests/compute/vm_reconfig_hardware_tests.rb +19 -0
- data/tests/vsphere/requests/compute/vm_reconfig_memory_tests.rb +19 -0
- metadata +519 -50
- data/examples/compute_tests.rb +0 -71
- data/examples/dns_tests.rb +0 -78
- data/examples/storage_tests.rb +0 -105
@@ -3,25 +3,30 @@ require 'fog/vcloud/models/compute/vapp'
|
|
3
3
|
|
4
4
|
Shindo.tests("Vcloud::Compute | vapp", ['vcloud']) do
|
5
5
|
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
6
|
+
Fog::Vcloud::Compute::SUPPORTED_VERSIONS.each do |version|
|
7
|
+
tests("api version #{version}") do
|
8
|
+
pending if Fog.mocking?
|
9
|
+
instance = Fog::Vcloud::Compute.new(
|
10
|
+
:vcloud_host => 'vcloud.example.com',
|
11
|
+
:vcloud_username => 'username',
|
12
|
+
:vcloud_password => 'password',
|
13
|
+
:vcloud_version => version
|
14
|
+
).get_vapp("https://vcloud.example.com/api#{(version == '1.0') ? '/v1.0' : ''}/vApp/vapp-1")
|
15
|
+
instance.reload
|
16
|
+
|
17
|
+
tests("#href").returns("https://vcloud.example.com/api#{(version == '1.0') ? '/v1.0' : ''}/vApp/vapp-1") { instance.href }
|
18
|
+
tests("#name").returns("vApp1") { instance.name }
|
19
|
+
tests("#vdc").returns("vDC1"){ instance.vdc.name }
|
20
|
+
tests("#description").returns("Some Description of a vApp") { instance.description }
|
21
|
+
tests("#status").returns('8') { instance.status }
|
22
|
+
tests("#deployed").returns(true) { instance.deployed }
|
23
|
+
|
24
|
+
tests("#children").returns(2) { instance.children.size }
|
25
|
+
tests("#servers").returns(2) { instance.servers.size }
|
26
|
+
|
27
|
+
tests("#friendly_status").returns('off') { instance.friendly_status }
|
28
|
+
tests("#on?").returns(false) { instance.on? }
|
29
|
+
tests("#off?").returns(true) { instance.off? }
|
30
|
+
end
|
31
|
+
end
|
27
32
|
end
|
@@ -2,16 +2,18 @@ require 'fog/vcloud/models/compute/vapps'
|
|
2
2
|
|
3
3
|
Shindo.tests("Vcloud::Compute | vapps", ['vcloud']) do
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
)
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
5
|
+
Fog::Vcloud::Compute::SUPPORTED_VERSIONS.each do |version|
|
6
|
+
tests("api version #{version}") do
|
7
|
+
pending if Fog.mocking?
|
8
|
+
instance = Fog::Vcloud::Compute::Vapps.new(
|
9
|
+
:connection => Fog::Vcloud::Compute.new(:vcloud_host => 'vcloud.example.com', :vcloud_username => 'username', :vcloud_password => 'password'),
|
10
|
+
:href => "https://vcloud.example.com/api#{(version == '1.0') ? '/v1.0' : ''}/vdc/1"
|
11
|
+
)
|
12
|
+
|
13
|
+
tests("collection") do
|
14
|
+
returns(2) { instance.size }
|
15
|
+
returns("https://vcloud.example.com/api#{(version == '1.0') ? '/v1.0' : ''}/vApp/vapp-1") { instance.first.href }
|
16
|
+
end
|
17
|
+
end
|
15
18
|
end
|
16
|
-
|
17
19
|
end
|
@@ -3,40 +3,46 @@ require 'fog/vcloud/models/compute/vdc'
|
|
3
3
|
|
4
4
|
Shindo.tests("Vcloud::Compute | vdc", ['vcloud']) do
|
5
5
|
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
6
|
+
Fog::Vcloud::Compute::SUPPORTED_VERSIONS.each do |version|
|
7
|
+
tests("api version #{version}") do
|
8
|
+
pending if Fog.mocking?
|
9
|
+
instance = Fog::Vcloud::Compute.new(
|
10
|
+
:vcloud_host => 'vcloud.example.com',
|
11
|
+
:vcloud_username => 'username',
|
12
|
+
:vcloud_password => 'password',
|
13
|
+
:vcloud_version => version
|
14
|
+
).get_vdc("https://vcloud.example.com/api#{(version == '1.0') ? '/v1.0' : ''}/vdc/1")
|
15
|
+
|
16
|
+
instance.reload
|
17
|
+
|
18
|
+
tests("#href").returns("https://vcloud.example.com/api#{(version == '1.0') ? '/v1.0' : ''}/vdc/1") { instance.href }
|
19
|
+
tests("#name").returns("vDC1") { instance.name }
|
20
|
+
tests('#organization').returns("Org1") { instance.organization.name }
|
21
|
+
tests("#description").returns("Some Description") { instance.description }
|
22
|
+
tests("#network_quota").returns(10) { instance.network_quota }
|
23
|
+
tests("#nic_quota").returns(10) { instance.nic_quota }
|
24
|
+
tests("#vm_quota").returns(10) { instance.vm_quota }
|
25
|
+
tests("#is_enabled").returns(true) { instance.is_enabled }
|
26
|
+
|
27
|
+
tests("#available_networks") do
|
28
|
+
tests("#size").returns(2) { instance.available_networks.size }
|
29
|
+
end
|
30
|
+
|
31
|
+
tests("#storage_capacity") do
|
32
|
+
tests("units").returns("MB") { instance.storage_capacity[:Units] }
|
33
|
+
tests("allocated").returns("10240") { instance.storage_capacity[:Allocated] }
|
34
|
+
end
|
35
|
+
|
36
|
+
tests("#compute_capacity") do
|
37
|
+
tests("cpu") do
|
38
|
+
tests("allocated").returns("20000") { instance.compute_capacity[:Cpu][:Allocated] }
|
39
|
+
tests("units").returns("MHz") { instance.compute_capacity[:Cpu][:Units] }
|
40
|
+
end
|
41
|
+
tests("memory") do
|
42
|
+
tests("allocated").returns("1024") { instance.compute_capacity[:Memory][:Allocated] }
|
43
|
+
tests("units").returns("MB") { instance.compute_capacity[:Memory][:Units] }
|
44
|
+
end
|
45
|
+
end
|
35
46
|
end
|
36
|
-
tests("memory") do
|
37
|
-
tests("allocated").returns("1024") { instance.compute_capacity[:Memory][:Allocated] }
|
38
|
-
tests("units").returns("MB") { instance.compute_capacity[:Memory][:Units] }
|
39
|
-
end
|
40
|
-
|
41
47
|
end
|
42
48
|
end
|
@@ -2,16 +2,23 @@ require 'fog/vcloud/models/compute/vdcs'
|
|
2
2
|
|
3
3
|
Shindo.tests("Vcloud::Compute | vdcs", ['vcloud']) do
|
4
4
|
|
5
|
-
|
5
|
+
Fog::Vcloud::Compute::SUPPORTED_VERSIONS.each do |version|
|
6
|
+
tests("api version #{version}") do
|
7
|
+
pending if Fog.mocking?
|
6
8
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
9
|
+
instance = Fog::Vcloud::Compute::Vdcs.new(
|
10
|
+
:connection => Fog::Vcloud::Compute.new(
|
11
|
+
:vcloud_host => 'vcloud.example.com',
|
12
|
+
:vcloud_username => 'username',
|
13
|
+
:vcloud_password => 'password',
|
14
|
+
:vcloud_version => version),
|
15
|
+
:href => "https://vcloud.example.com/api#{(version == '1.0') ? '/v1.0' : ''}/org/1"
|
16
|
+
)
|
17
|
+
|
18
|
+
tests("collection") do
|
19
|
+
returns(1) { instance.size }
|
20
|
+
returns("https://vcloud.example.com/api#{(version == '1.0') ? '/v1.0' : ''}/vdc/1") { instance.first.href }
|
21
|
+
end
|
22
|
+
end
|
15
23
|
end
|
16
|
-
|
17
24
|
end
|
@@ -1,15 +1,27 @@
|
|
1
1
|
Shindo.tests("Fog::Compute[:vsphere] | vm_clone request", 'vsphere') do
|
2
|
-
#require 'guid'
|
3
|
-
template = "/Datacenters/Solutions/vm/Jeff/Templates/centos56gm2"
|
2
|
+
# require 'guid'
|
4
3
|
compute = Fog::Compute[:vsphere]
|
4
|
+
response = nil
|
5
|
+
response_linked = nil
|
6
|
+
|
7
|
+
template = "/Datacenters/Solutions/vm/Jeff/Templates/centos56gm2"
|
8
|
+
tests("Standard Clone | The return value should") do
|
9
|
+
response = compute.vm_clone('path' => template, 'name' => 'cloning_vm', 'wait' => 1)
|
10
|
+
test("be a kind of Hash") { response.kind_of? Hash }
|
11
|
+
%w{ vm_ref task_ref }.each do |key|
|
12
|
+
test("have a #{key} key") { response.has_key? key }
|
13
|
+
end
|
14
|
+
end
|
5
15
|
|
6
|
-
|
7
|
-
|
16
|
+
template = "/Datacenters/Solutions/vm/Jeff/Templates/centos56gm2"
|
17
|
+
tests("Linked Clone | The return value should") do
|
18
|
+
response = compute.vm_clone('path' => template, 'name' => 'cloning_vm_linked', 'wait' => 1, 'linked_clone' => true)
|
8
19
|
test("be a kind of Hash") { response.kind_of? Hash }
|
9
20
|
%w{ vm_ref task_ref }.each do |key|
|
10
21
|
test("have a #{key} key") { response.has_key? key }
|
11
22
|
end
|
12
23
|
end
|
24
|
+
|
13
25
|
tests("When invalid input is presented") do
|
14
26
|
raises(ArgumentError, 'it should raise ArgumentError') { compute.vm_clone(:foo => 1) }
|
15
27
|
raises(Fog::Compute::Vsphere::NotFound, 'it should raise Fog::Compute::Vsphere::NotFound when the UUID is not a string') do
|
@@ -0,0 +1,20 @@
|
|
1
|
+
Shindo.tests("Fog::Compute[:vsphere] | vm_create request", 'vsphere') do
|
2
|
+
#require 'guid'
|
3
|
+
path = "/Datacenters/Solutions"
|
4
|
+
compute = Fog::Compute[:vsphere]
|
5
|
+
|
6
|
+
tests("The return value should") do
|
7
|
+
response = compute.vm_create('path' => path, 'name' => 'fog_test_vm', 'cluster' => 'cluster01')
|
8
|
+
test("be a kind of Hash") { response.kind_of? Hash }
|
9
|
+
%w{ vm_ref task_ref }.each do |key|
|
10
|
+
test("have a #{key} key") { response.has_key? key }
|
11
|
+
end
|
12
|
+
end
|
13
|
+
tests("When invalid input is presented") do
|
14
|
+
raises(ArgumentError, 'it should raise ArgumentError') { compute.vm_create(:foo => 1) }
|
15
|
+
raises(Fog::Compute::Vsphere::NotFound, 'it should raise Fog::Compute::Vsphere::NotFound when the UUID is not a string') do
|
16
|
+
pending # require 'guid'
|
17
|
+
compute.vm_create('instance_uuid' => Guid.from_s(template), 'name' => 'jefftestfoo')
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
Shindo.tests('Fog::Compute[:vsphere] | vm_migrate request', ['vsphere']) do
|
2
|
+
|
3
|
+
compute = Fog::Compute[:vsphere]
|
4
|
+
|
5
|
+
powered_on_vm = '50137835-88a1-436e-768e-9b2677076e67'
|
6
|
+
|
7
|
+
tests('The response should') do
|
8
|
+
response = compute.vm_migrate('instance_uuid' => powered_on_vm)
|
9
|
+
test('be a kind of Hash') { response.kind_of? Hash }
|
10
|
+
test('should have a task_state key') { response.has_key? 'task_state' }
|
11
|
+
end
|
12
|
+
|
13
|
+
tests('The expected options') do
|
14
|
+
raises(ArgumentError, 'raises ArgumentError when instance_uuid option is missing') { compute.vm_migrate }
|
15
|
+
end
|
16
|
+
end
|
@@ -5,7 +5,7 @@ Shindo.tests('Fog::Compute[:vsphere] | vm_power_on request', ['vsphere']) do
|
|
5
5
|
powered_off_vm = nil
|
6
6
|
|
7
7
|
tests('The response should') do
|
8
|
-
response = compute.
|
8
|
+
response = compute.vm_power_on('instance_uuid' => powered_off_vm)
|
9
9
|
test('be a kind of Hash') { response.kind_of? Hash }
|
10
10
|
test('should have a task_state key') { response.has_key? 'task_state' }
|
11
11
|
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
Shindo.tests('Fog::Compute[:vsphere] | vm_reconfig_cpus request', ['vsphere']) do
|
2
|
+
|
3
|
+
compute = Fog::Compute[:vsphere]
|
4
|
+
|
5
|
+
reconfig_target = '50137835-88a1-436e-768e-9b2677076e67'
|
6
|
+
reconfig_spec = 2
|
7
|
+
|
8
|
+
tests('The response should') do
|
9
|
+
response = compute.vm_reconfig_cpus('instance_uuid' => reconfig_target, 'cpus' => reconfig_spec)
|
10
|
+
test('be a kind of Hash') { response.kind_of? Hash }
|
11
|
+
test('should have a task_state key') { response.has_key? 'task_state' }
|
12
|
+
end
|
13
|
+
|
14
|
+
tests('The expected options') do
|
15
|
+
raises(ArgumentError, 'raises ArgumentError when instance_uuid option is missing') { compute.vm_reconfig_cpus('cpus' => reconfig_spec) }
|
16
|
+
raises(ArgumentError, 'raises ArgumentError when cpus option is missing') { compute.vm_reconfig_cpus('instance_uuid' => reconfig_target) }
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
Shindo.tests('Fog::Compute[:vsphere] | vm_reconfig_hardware request', ['vsphere']) do
|
2
|
+
|
3
|
+
compute = Fog::Compute[:vsphere]
|
4
|
+
|
5
|
+
reconfig_target = '50137835-88a1-436e-768e-9b2677076e67'
|
6
|
+
reconfig_spec = {'guestId' => 'rhel5_64Guest'}
|
7
|
+
|
8
|
+
tests('The response should') do
|
9
|
+
response = compute.vm_reconfig_hardware('instance_uuid' => reconfig_target, 'hardware_spec' => reconfig_spec)
|
10
|
+
test('be a kind of Hash') { response.kind_of? Hash }
|
11
|
+
test('should have a task_state key') { response.has_key? 'task_state' }
|
12
|
+
end
|
13
|
+
|
14
|
+
tests('The expected options') do
|
15
|
+
raises(ArgumentError, 'raises ArgumentError when instance_uuid option is missing') { compute.vm_reconfig_hardware('hardware_spec' => reconfig_spec) }
|
16
|
+
raises(ArgumentError, 'raises ArgumentError when hardware_spec option is missing') { compute.vm_reconfig_hardware('instance_uuid' => reconfig_target) }
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
Shindo.tests('Fog::Compute[:vsphere] | vm_reconfig_memory request', ['vsphere']) do
|
2
|
+
|
3
|
+
compute = Fog::Compute[:vsphere]
|
4
|
+
|
5
|
+
reconfig_target = '50137835-88a1-436e-768e-9b2677076e67'
|
6
|
+
reconfig_spec = 4096
|
7
|
+
|
8
|
+
tests('The response should') do
|
9
|
+
response = compute.vm_reconfig_memory('instance_uuid' => reconfig_target, 'memory' => reconfig_spec)
|
10
|
+
test('be a kind of Hash') { response.kind_of? Hash }
|
11
|
+
test('should have a task_state key') { response.has_key? 'task_state' }
|
12
|
+
end
|
13
|
+
|
14
|
+
tests('The expected options') do
|
15
|
+
raises(ArgumentError, 'raises ArgumentError when instance_uuid option is missing') { compute.vm_reconfig_memory('memory' => reconfig_spec) }
|
16
|
+
raises(ArgumentError, 'raises ArgumentError when memory option is missing') { compute.vm_reconfig_memory('instance_uuid' => reconfig_target) }
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2012-03-19 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: builder
|
16
|
-
requirement: &
|
16
|
+
requirement: &9669270 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,21 +21,21 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *9669270
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: excon
|
27
|
-
requirement: &
|
27
|
+
requirement: &9669000 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ~>
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 0.
|
32
|
+
version: 0.12.0
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *9669000
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: formatador
|
38
|
-
requirement: &
|
38
|
+
requirement: &9668750 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ~>
|
@@ -43,21 +43,21 @@ dependencies:
|
|
43
43
|
version: 0.2.0
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *9668750
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: multi_json
|
49
|
-
requirement: &
|
49
|
+
requirement: &9668520 !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
52
52
|
- - ~>
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 1.0
|
54
|
+
version: '1.0'
|
55
55
|
type: :runtime
|
56
56
|
prerelease: false
|
57
|
-
version_requirements: *
|
57
|
+
version_requirements: *9668520
|
58
58
|
- !ruby/object:Gem::Dependency
|
59
59
|
name: mime-types
|
60
|
-
requirement: &
|
60
|
+
requirement: &9668320 !ruby/object:Gem::Requirement
|
61
61
|
none: false
|
62
62
|
requirements:
|
63
63
|
- - ! '>='
|
@@ -65,10 +65,10 @@ dependencies:
|
|
65
65
|
version: '0'
|
66
66
|
type: :runtime
|
67
67
|
prerelease: false
|
68
|
-
version_requirements: *
|
68
|
+
version_requirements: *9668320
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: net-scp
|
71
|
-
requirement: &
|
71
|
+
requirement: &9668000 !ruby/object:Gem::Requirement
|
72
72
|
none: false
|
73
73
|
requirements:
|
74
74
|
- - ~>
|
@@ -76,10 +76,10 @@ dependencies:
|
|
76
76
|
version: 1.0.4
|
77
77
|
type: :runtime
|
78
78
|
prerelease: false
|
79
|
-
version_requirements: *
|
79
|
+
version_requirements: *9668000
|
80
80
|
- !ruby/object:Gem::Dependency
|
81
81
|
name: net-ssh
|
82
|
-
requirement: &
|
82
|
+
requirement: &9667710 !ruby/object:Gem::Requirement
|
83
83
|
none: false
|
84
84
|
requirements:
|
85
85
|
- - ! '>='
|
@@ -87,10 +87,10 @@ dependencies:
|
|
87
87
|
version: 2.1.3
|
88
88
|
type: :runtime
|
89
89
|
prerelease: false
|
90
|
-
version_requirements: *
|
90
|
+
version_requirements: *9667710
|
91
91
|
- !ruby/object:Gem::Dependency
|
92
92
|
name: nokogiri
|
93
|
-
requirement: &
|
93
|
+
requirement: &9667330 !ruby/object:Gem::Requirement
|
94
94
|
none: false
|
95
95
|
requirements:
|
96
96
|
- - ~>
|
@@ -98,10 +98,10 @@ dependencies:
|
|
98
98
|
version: 1.5.0
|
99
99
|
type: :runtime
|
100
100
|
prerelease: false
|
101
|
-
version_requirements: *
|
101
|
+
version_requirements: *9667330
|
102
102
|
- !ruby/object:Gem::Dependency
|
103
103
|
name: ruby-hmac
|
104
|
-
requirement: &
|
104
|
+
requirement: &9666740 !ruby/object:Gem::Requirement
|
105
105
|
none: false
|
106
106
|
requirements:
|
107
107
|
- - ! '>='
|
@@ -109,10 +109,10 @@ dependencies:
|
|
109
109
|
version: '0'
|
110
110
|
type: :runtime
|
111
111
|
prerelease: false
|
112
|
-
version_requirements: *
|
112
|
+
version_requirements: *9666740
|
113
113
|
- !ruby/object:Gem::Dependency
|
114
114
|
name: jekyll
|
115
|
-
requirement: &
|
115
|
+
requirement: &9666510 !ruby/object:Gem::Requirement
|
116
116
|
none: false
|
117
117
|
requirements:
|
118
118
|
- - ! '>='
|
@@ -120,10 +120,10 @@ dependencies:
|
|
120
120
|
version: '0'
|
121
121
|
type: :development
|
122
122
|
prerelease: false
|
123
|
-
version_requirements: *
|
123
|
+
version_requirements: *9666510
|
124
124
|
- !ruby/object:Gem::Dependency
|
125
125
|
name: rake
|
126
|
-
requirement: &
|
126
|
+
requirement: &9666290 !ruby/object:Gem::Requirement
|
127
127
|
none: false
|
128
128
|
requirements:
|
129
129
|
- - ! '>='
|
@@ -131,10 +131,10 @@ dependencies:
|
|
131
131
|
version: '0'
|
132
132
|
type: :development
|
133
133
|
prerelease: false
|
134
|
-
version_requirements: *
|
134
|
+
version_requirements: *9666290
|
135
135
|
- !ruby/object:Gem::Dependency
|
136
136
|
name: rbvmomi
|
137
|
-
requirement: &
|
137
|
+
requirement: &9665980 !ruby/object:Gem::Requirement
|
138
138
|
none: false
|
139
139
|
requirements:
|
140
140
|
- - ! '>='
|
@@ -142,10 +142,10 @@ dependencies:
|
|
142
142
|
version: '0'
|
143
143
|
type: :development
|
144
144
|
prerelease: false
|
145
|
-
version_requirements: *
|
145
|
+
version_requirements: *9665980
|
146
146
|
- !ruby/object:Gem::Dependency
|
147
147
|
name: rdoc
|
148
|
-
requirement: &
|
148
|
+
requirement: &9665670 !ruby/object:Gem::Requirement
|
149
149
|
none: false
|
150
150
|
requirements:
|
151
151
|
- - ! '>='
|
@@ -153,10 +153,21 @@ dependencies:
|
|
153
153
|
version: '0'
|
154
154
|
type: :development
|
155
155
|
prerelease: false
|
156
|
-
version_requirements: *
|
156
|
+
version_requirements: *9665670
|
157
|
+
- !ruby/object:Gem::Dependency
|
158
|
+
name: thor
|
159
|
+
requirement: &9665360 !ruby/object:Gem::Requirement
|
160
|
+
none: false
|
161
|
+
requirements:
|
162
|
+
- - ! '>='
|
163
|
+
- !ruby/object:Gem::Version
|
164
|
+
version: '0'
|
165
|
+
type: :development
|
166
|
+
prerelease: false
|
167
|
+
version_requirements: *9665360
|
157
168
|
- !ruby/object:Gem::Dependency
|
158
169
|
name: rspec
|
159
|
-
requirement: &
|
170
|
+
requirement: &9665080 !ruby/object:Gem::Requirement
|
160
171
|
none: false
|
161
172
|
requirements:
|
162
173
|
- - ~>
|
@@ -164,10 +175,21 @@ dependencies:
|
|
164
175
|
version: 1.3.1
|
165
176
|
type: :development
|
166
177
|
prerelease: false
|
167
|
-
version_requirements: *
|
178
|
+
version_requirements: *9665080
|
179
|
+
- !ruby/object:Gem::Dependency
|
180
|
+
name: rbovirt
|
181
|
+
requirement: &9664830 !ruby/object:Gem::Requirement
|
182
|
+
none: false
|
183
|
+
requirements:
|
184
|
+
- - ! '>='
|
185
|
+
- !ruby/object:Gem::Version
|
186
|
+
version: 0.0.8
|
187
|
+
type: :development
|
188
|
+
prerelease: false
|
189
|
+
version_requirements: *9664830
|
168
190
|
- !ruby/object:Gem::Dependency
|
169
191
|
name: shindo
|
170
|
-
requirement: &
|
192
|
+
requirement: &9664580 !ruby/object:Gem::Requirement
|
171
193
|
none: false
|
172
194
|
requirements:
|
173
195
|
- - ~>
|
@@ -175,10 +197,10 @@ dependencies:
|
|
175
197
|
version: 0.3.4
|
176
198
|
type: :development
|
177
199
|
prerelease: false
|
178
|
-
version_requirements: *
|
200
|
+
version_requirements: *9664580
|
179
201
|
- !ruby/object:Gem::Dependency
|
180
202
|
name: virtualbox
|
181
|
-
requirement: &
|
203
|
+
requirement: &9664310 !ruby/object:Gem::Requirement
|
182
204
|
none: false
|
183
205
|
requirements:
|
184
206
|
- - ~>
|
@@ -186,7 +208,18 @@ dependencies:
|
|
186
208
|
version: 0.9.1
|
187
209
|
type: :development
|
188
210
|
prerelease: false
|
189
|
-
version_requirements: *
|
211
|
+
version_requirements: *9664310
|
212
|
+
- !ruby/object:Gem::Dependency
|
213
|
+
name: fission
|
214
|
+
requirement: &9664120 !ruby/object:Gem::Requirement
|
215
|
+
none: false
|
216
|
+
requirements:
|
217
|
+
- - ! '>='
|
218
|
+
- !ruby/object:Gem::Version
|
219
|
+
version: '0'
|
220
|
+
type: :development
|
221
|
+
prerelease: false
|
222
|
+
version_requirements: *9664120
|
190
223
|
description: The Ruby cloud services library. Supports all major cloud providers including
|
191
224
|
AWS, Rackspace, Linode, Blue Box, StormOnDemand, and many others. Full support for
|
192
225
|
most AWS services including EC2, S3, CloudWatch, SimpleDB, ELB, and RDS.
|
@@ -237,20 +270,20 @@ files:
|
|
237
270
|
- docs/public/js/script.js
|
238
271
|
- docs/public/robots.txt
|
239
272
|
- docs/storage/index.markdown
|
240
|
-
- examples/compute_tests.rb
|
241
|
-
- examples/dns_tests.rb
|
242
|
-
- examples/storage_tests.rb
|
243
273
|
- fog.gemspec
|
244
274
|
- lib/fog.rb
|
245
275
|
- lib/fog/aws.rb
|
246
276
|
- lib/fog/aws/auto_scaling.rb
|
277
|
+
- lib/fog/aws/beanstalk.rb
|
247
278
|
- lib/fog/aws/cdn.rb
|
248
279
|
- lib/fog/aws/cloud_formation.rb
|
249
280
|
- lib/fog/aws/cloud_watch.rb
|
250
281
|
- lib/fog/aws/compute.rb
|
251
282
|
- lib/fog/aws/dns.rb
|
283
|
+
- lib/fog/aws/dynamodb.rb
|
252
284
|
- lib/fog/aws/elasticache.rb
|
253
285
|
- lib/fog/aws/elb.rb
|
286
|
+
- lib/fog/aws/elb/policy_types.rb
|
254
287
|
- lib/fog/aws/emr.rb
|
255
288
|
- lib/fog/aws/iam.rb
|
256
289
|
- lib/fog/aws/models/auto_scaling/activities.rb
|
@@ -261,6 +294,16 @@ files:
|
|
261
294
|
- lib/fog/aws/models/auto_scaling/groups.rb
|
262
295
|
- lib/fog/aws/models/auto_scaling/instance.rb
|
263
296
|
- lib/fog/aws/models/auto_scaling/instances.rb
|
297
|
+
- lib/fog/aws/models/beanstalk/application.rb
|
298
|
+
- lib/fog/aws/models/beanstalk/applications.rb
|
299
|
+
- lib/fog/aws/models/beanstalk/environment.rb
|
300
|
+
- lib/fog/aws/models/beanstalk/environments.rb
|
301
|
+
- lib/fog/aws/models/beanstalk/event.rb
|
302
|
+
- lib/fog/aws/models/beanstalk/events.rb
|
303
|
+
- lib/fog/aws/models/beanstalk/template.rb
|
304
|
+
- lib/fog/aws/models/beanstalk/templates.rb
|
305
|
+
- lib/fog/aws/models/beanstalk/version.rb
|
306
|
+
- lib/fog/aws/models/beanstalk/versions.rb
|
264
307
|
- lib/fog/aws/models/cloud_watch/alarm.rb
|
265
308
|
- lib/fog/aws/models/cloud_watch/alarm_data.rb
|
266
309
|
- lib/fog/aws/models/cloud_watch/alarm_datum.rb
|
@@ -287,10 +330,14 @@ files:
|
|
287
330
|
- lib/fog/aws/models/compute/snapshots.rb
|
288
331
|
- lib/fog/aws/models/compute/spot_request.rb
|
289
332
|
- lib/fog/aws/models/compute/spot_requests.rb
|
333
|
+
- lib/fog/aws/models/compute/subnet.rb
|
334
|
+
- lib/fog/aws/models/compute/subnets.rb
|
290
335
|
- lib/fog/aws/models/compute/tag.rb
|
291
336
|
- lib/fog/aws/models/compute/tags.rb
|
292
337
|
- lib/fog/aws/models/compute/volume.rb
|
293
338
|
- lib/fog/aws/models/compute/volumes.rb
|
339
|
+
- lib/fog/aws/models/compute/vpc.rb
|
340
|
+
- lib/fog/aws/models/compute/vpcs.rb
|
294
341
|
- lib/fog/aws/models/dns/record.rb
|
295
342
|
- lib/fog/aws/models/dns/records.rb
|
296
343
|
- lib/fog/aws/models/dns/zone.rb
|
@@ -321,6 +368,8 @@ files:
|
|
321
368
|
- lib/fog/aws/models/storage/directory.rb
|
322
369
|
- lib/fog/aws/models/storage/file.rb
|
323
370
|
- lib/fog/aws/models/storage/files.rb
|
371
|
+
- lib/fog/aws/models/storage/version.rb
|
372
|
+
- lib/fog/aws/models/storage/versions.rb
|
324
373
|
- lib/fog/aws/parsers/auto_scaling/basic.rb
|
325
374
|
- lib/fog/aws/parsers/auto_scaling/describe_adjustment_types.rb
|
326
375
|
- lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb
|
@@ -333,6 +382,29 @@ files:
|
|
333
382
|
- lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
|
334
383
|
- lib/fog/aws/parsers/auto_scaling/put_scaling_policy.rb
|
335
384
|
- lib/fog/aws/parsers/auto_scaling/terminate_instance_in_auto_scaling_group.rb
|
385
|
+
- lib/fog/aws/parsers/beanstalk/check_dns_availability.rb
|
386
|
+
- lib/fog/aws/parsers/beanstalk/create_application.rb
|
387
|
+
- lib/fog/aws/parsers/beanstalk/create_application_version.rb
|
388
|
+
- lib/fog/aws/parsers/beanstalk/create_configuration_template.rb
|
389
|
+
- lib/fog/aws/parsers/beanstalk/create_environment.rb
|
390
|
+
- lib/fog/aws/parsers/beanstalk/create_storage_location.rb
|
391
|
+
- lib/fog/aws/parsers/beanstalk/describe_application_versions.rb
|
392
|
+
- lib/fog/aws/parsers/beanstalk/describe_applications.rb
|
393
|
+
- lib/fog/aws/parsers/beanstalk/describe_configuration_options.rb
|
394
|
+
- lib/fog/aws/parsers/beanstalk/describe_configuration_settings.rb
|
395
|
+
- lib/fog/aws/parsers/beanstalk/describe_environment_resources.rb
|
396
|
+
- lib/fog/aws/parsers/beanstalk/describe_environments.rb
|
397
|
+
- lib/fog/aws/parsers/beanstalk/describe_events.rb
|
398
|
+
- lib/fog/aws/parsers/beanstalk/empty.rb
|
399
|
+
- lib/fog/aws/parsers/beanstalk/list_available_solution_stacks.rb
|
400
|
+
- lib/fog/aws/parsers/beanstalk/parser.rb
|
401
|
+
- lib/fog/aws/parsers/beanstalk/retrieve_environment_info.rb
|
402
|
+
- lib/fog/aws/parsers/beanstalk/terminate_environment.rb
|
403
|
+
- lib/fog/aws/parsers/beanstalk/update_application.rb
|
404
|
+
- lib/fog/aws/parsers/beanstalk/update_application_version.rb
|
405
|
+
- lib/fog/aws/parsers/beanstalk/update_configuration_template.rb
|
406
|
+
- lib/fog/aws/parsers/beanstalk/update_environment.rb
|
407
|
+
- lib/fog/aws/parsers/beanstalk/validate_configuration_settings.rb
|
336
408
|
- lib/fog/aws/parsers/cdn/distribution.rb
|
337
409
|
- lib/fog/aws/parsers/cdn/get_distribution_list.rb
|
338
410
|
- lib/fog/aws/parsers/cdn/get_invalidation_list.rb
|
@@ -359,13 +431,18 @@ files:
|
|
359
431
|
- lib/fog/aws/parsers/cloud_watch/put_metric_data.rb
|
360
432
|
- lib/fog/aws/parsers/cloud_watch/set_alarm_state.rb
|
361
433
|
- lib/fog/aws/parsers/compute/allocate_address.rb
|
434
|
+
- lib/fog/aws/parsers/compute/associate_address.rb
|
362
435
|
- lib/fog/aws/parsers/compute/attach_volume.rb
|
363
436
|
- lib/fog/aws/parsers/compute/basic.rb
|
364
437
|
- lib/fog/aws/parsers/compute/cancel_spot_instance_requests.rb
|
365
438
|
- lib/fog/aws/parsers/compute/create_image.rb
|
366
439
|
- lib/fog/aws/parsers/compute/create_key_pair.rb
|
367
440
|
- lib/fog/aws/parsers/compute/create_snapshot.rb
|
441
|
+
- lib/fog/aws/parsers/compute/create_subnet.rb
|
368
442
|
- lib/fog/aws/parsers/compute/create_volume.rb
|
443
|
+
- lib/fog/aws/parsers/compute/create_vpc.rb
|
444
|
+
- lib/fog/aws/parsers/compute/delete_subnet.rb
|
445
|
+
- lib/fog/aws/parsers/compute/delete_vpc.rb
|
369
446
|
- lib/fog/aws/parsers/compute/deregister_image.rb
|
370
447
|
- lib/fog/aws/parsers/compute/describe_addresses.rb
|
371
448
|
- lib/fog/aws/parsers/compute/describe_availability_zones.rb
|
@@ -380,8 +457,11 @@ files:
|
|
380
457
|
- lib/fog/aws/parsers/compute/describe_security_groups.rb
|
381
458
|
- lib/fog/aws/parsers/compute/describe_snapshots.rb
|
382
459
|
- lib/fog/aws/parsers/compute/describe_spot_price_history.rb
|
460
|
+
- lib/fog/aws/parsers/compute/describe_subnets.rb
|
383
461
|
- lib/fog/aws/parsers/compute/describe_tags.rb
|
462
|
+
- lib/fog/aws/parsers/compute/describe_volume_status.rb
|
384
463
|
- lib/fog/aws/parsers/compute/describe_volumes.rb
|
464
|
+
- lib/fog/aws/parsers/compute/describe_vpcs.rb
|
385
465
|
- lib/fog/aws/parsers/compute/detach_volume.rb
|
386
466
|
- lib/fog/aws/parsers/compute/get_console_output.rb
|
387
467
|
- lib/fog/aws/parsers/compute/get_password_data.rb
|
@@ -423,6 +503,8 @@ files:
|
|
423
503
|
- lib/fog/aws/parsers/elb/delete_load_balancer.rb
|
424
504
|
- lib/fog/aws/parsers/elb/deregister_instances_from_load_balancer.rb
|
425
505
|
- lib/fog/aws/parsers/elb/describe_instance_health.rb
|
506
|
+
- lib/fog/aws/parsers/elb/describe_load_balancer_policies.rb
|
507
|
+
- lib/fog/aws/parsers/elb/describe_load_balancer_policy_types.rb
|
426
508
|
- lib/fog/aws/parsers/elb/describe_load_balancers.rb
|
427
509
|
- lib/fog/aws/parsers/elb/disable_availability_zones_for_load_balancer.rb
|
428
510
|
- lib/fog/aws/parsers/elb/empty.rb
|
@@ -517,6 +599,7 @@ files:
|
|
517
599
|
- lib/fog/aws/parsers/storage/complete_multipart_upload.rb
|
518
600
|
- lib/fog/aws/parsers/storage/copy_object.rb
|
519
601
|
- lib/fog/aws/parsers/storage/get_bucket.rb
|
602
|
+
- lib/fog/aws/parsers/storage/get_bucket_lifecycle.rb
|
520
603
|
- lib/fog/aws/parsers/storage/get_bucket_location.rb
|
521
604
|
- lib/fog/aws/parsers/storage/get_bucket_logging.rb
|
522
605
|
- lib/fog/aws/parsers/storage/get_bucket_object_versions.rb
|
@@ -555,6 +638,35 @@ files:
|
|
555
638
|
- lib/fog/aws/requests/auto_scaling/suspend_processes.rb
|
556
639
|
- lib/fog/aws/requests/auto_scaling/terminate_instance_in_auto_scaling_group.rb
|
557
640
|
- lib/fog/aws/requests/auto_scaling/update_auto_scaling_group.rb
|
641
|
+
- lib/fog/aws/requests/beanstalk/check_dns_availability.rb
|
642
|
+
- lib/fog/aws/requests/beanstalk/create_application.rb
|
643
|
+
- lib/fog/aws/requests/beanstalk/create_application_version.rb
|
644
|
+
- lib/fog/aws/requests/beanstalk/create_configuration_template.rb
|
645
|
+
- lib/fog/aws/requests/beanstalk/create_environment.rb
|
646
|
+
- lib/fog/aws/requests/beanstalk/create_storage_location.rb
|
647
|
+
- lib/fog/aws/requests/beanstalk/delete_application.rb
|
648
|
+
- lib/fog/aws/requests/beanstalk/delete_application_version.rb
|
649
|
+
- lib/fog/aws/requests/beanstalk/delete_configuration_template.rb
|
650
|
+
- lib/fog/aws/requests/beanstalk/delete_environment_configuration.rb
|
651
|
+
- lib/fog/aws/requests/beanstalk/describe_application_versions.rb
|
652
|
+
- lib/fog/aws/requests/beanstalk/describe_applications.rb
|
653
|
+
- lib/fog/aws/requests/beanstalk/describe_configuration_options.rb
|
654
|
+
- lib/fog/aws/requests/beanstalk/describe_configuration_settings.rb
|
655
|
+
- lib/fog/aws/requests/beanstalk/describe_environment_resources.rb
|
656
|
+
- lib/fog/aws/requests/beanstalk/describe_environments.rb
|
657
|
+
- lib/fog/aws/requests/beanstalk/describe_events.rb
|
658
|
+
- lib/fog/aws/requests/beanstalk/list_available_solution_stacks.rb
|
659
|
+
- lib/fog/aws/requests/beanstalk/rebuild_environment.rb
|
660
|
+
- lib/fog/aws/requests/beanstalk/request_environment_info.rb
|
661
|
+
- lib/fog/aws/requests/beanstalk/restart_app_server.rb
|
662
|
+
- lib/fog/aws/requests/beanstalk/retrieve_environment_info.rb
|
663
|
+
- lib/fog/aws/requests/beanstalk/swap_environment_cnames.rb
|
664
|
+
- lib/fog/aws/requests/beanstalk/terminate_environment.rb
|
665
|
+
- lib/fog/aws/requests/beanstalk/update_application.rb
|
666
|
+
- lib/fog/aws/requests/beanstalk/update_application_version.rb
|
667
|
+
- lib/fog/aws/requests/beanstalk/update_configuration_template.rb
|
668
|
+
- lib/fog/aws/requests/beanstalk/update_environment.rb
|
669
|
+
- lib/fog/aws/requests/beanstalk/validate_configuration_settings.rb
|
558
670
|
- lib/fog/aws/requests/cdn/delete_distribution.rb
|
559
671
|
- lib/fog/aws/requests/cdn/delete_streaming_distribution.rb
|
560
672
|
- lib/fog/aws/requests/cdn/get_distribution.rb
|
@@ -597,15 +709,19 @@ files:
|
|
597
709
|
- lib/fog/aws/requests/compute/create_security_group.rb
|
598
710
|
- lib/fog/aws/requests/compute/create_snapshot.rb
|
599
711
|
- lib/fog/aws/requests/compute/create_spot_datafeed_subscription.rb
|
712
|
+
- lib/fog/aws/requests/compute/create_subnet.rb
|
600
713
|
- lib/fog/aws/requests/compute/create_tags.rb
|
601
714
|
- lib/fog/aws/requests/compute/create_volume.rb
|
715
|
+
- lib/fog/aws/requests/compute/create_vpc.rb
|
602
716
|
- lib/fog/aws/requests/compute/delete_key_pair.rb
|
603
717
|
- lib/fog/aws/requests/compute/delete_placement_group.rb
|
604
718
|
- lib/fog/aws/requests/compute/delete_security_group.rb
|
605
719
|
- lib/fog/aws/requests/compute/delete_snapshot.rb
|
606
720
|
- lib/fog/aws/requests/compute/delete_spot_datafeed_subscription.rb
|
721
|
+
- lib/fog/aws/requests/compute/delete_subnet.rb
|
607
722
|
- lib/fog/aws/requests/compute/delete_tags.rb
|
608
723
|
- lib/fog/aws/requests/compute/delete_volume.rb
|
724
|
+
- lib/fog/aws/requests/compute/delete_vpc.rb
|
609
725
|
- lib/fog/aws/requests/compute/deregister_image.rb
|
610
726
|
- lib/fog/aws/requests/compute/describe_addresses.rb
|
611
727
|
- lib/fog/aws/requests/compute/describe_availability_zones.rb
|
@@ -622,8 +738,11 @@ files:
|
|
622
738
|
- lib/fog/aws/requests/compute/describe_spot_datafeed_subscription.rb
|
623
739
|
- lib/fog/aws/requests/compute/describe_spot_instance_requests.rb
|
624
740
|
- lib/fog/aws/requests/compute/describe_spot_price_history.rb
|
741
|
+
- lib/fog/aws/requests/compute/describe_subnets.rb
|
625
742
|
- lib/fog/aws/requests/compute/describe_tags.rb
|
743
|
+
- lib/fog/aws/requests/compute/describe_volume_status.rb
|
626
744
|
- lib/fog/aws/requests/compute/describe_volumes.rb
|
745
|
+
- lib/fog/aws/requests/compute/describe_vpcs.rb
|
627
746
|
- lib/fog/aws/requests/compute/detach_volume.rb
|
628
747
|
- lib/fog/aws/requests/compute/disassociate_address.rb
|
629
748
|
- lib/fog/aws/requests/compute/get_console_output.rb
|
@@ -651,6 +770,18 @@ files:
|
|
651
770
|
- lib/fog/aws/requests/dns/get_hosted_zone.rb
|
652
771
|
- lib/fog/aws/requests/dns/list_hosted_zones.rb
|
653
772
|
- lib/fog/aws/requests/dns/list_resource_record_sets.rb
|
773
|
+
- lib/fog/aws/requests/dynamodb/batch_get_item.rb
|
774
|
+
- lib/fog/aws/requests/dynamodb/create_table.rb
|
775
|
+
- lib/fog/aws/requests/dynamodb/delete_item.rb
|
776
|
+
- lib/fog/aws/requests/dynamodb/delete_table.rb
|
777
|
+
- lib/fog/aws/requests/dynamodb/describe_table.rb
|
778
|
+
- lib/fog/aws/requests/dynamodb/get_item.rb
|
779
|
+
- lib/fog/aws/requests/dynamodb/list_tables.rb
|
780
|
+
- lib/fog/aws/requests/dynamodb/put_item.rb
|
781
|
+
- lib/fog/aws/requests/dynamodb/query.rb
|
782
|
+
- lib/fog/aws/requests/dynamodb/scan.rb
|
783
|
+
- lib/fog/aws/requests/dynamodb/update_item.rb
|
784
|
+
- lib/fog/aws/requests/dynamodb/update_table.rb
|
654
785
|
- lib/fog/aws/requests/elasticache/authorize_cache_security_group_ingress.rb
|
655
786
|
- lib/fog/aws/requests/elasticache/create_cache_cluster.rb
|
656
787
|
- lib/fog/aws/requests/elasticache/create_cache_parameter_group.rb
|
@@ -674,11 +805,14 @@ files:
|
|
674
805
|
- lib/fog/aws/requests/elb/create_lb_cookie_stickiness_policy.rb
|
675
806
|
- lib/fog/aws/requests/elb/create_load_balancer.rb
|
676
807
|
- lib/fog/aws/requests/elb/create_load_balancer_listeners.rb
|
808
|
+
- lib/fog/aws/requests/elb/create_load_balancer_policy.rb
|
677
809
|
- lib/fog/aws/requests/elb/delete_load_balancer.rb
|
678
810
|
- lib/fog/aws/requests/elb/delete_load_balancer_listeners.rb
|
679
811
|
- lib/fog/aws/requests/elb/delete_load_balancer_policy.rb
|
680
812
|
- lib/fog/aws/requests/elb/deregister_instances_from_load_balancer.rb
|
681
813
|
- lib/fog/aws/requests/elb/describe_instance_health.rb
|
814
|
+
- lib/fog/aws/requests/elb/describe_load_balancer_policies.rb
|
815
|
+
- lib/fog/aws/requests/elb/describe_load_balancer_policy_types.rb
|
682
816
|
- lib/fog/aws/requests/elb/describe_load_balancers.rb
|
683
817
|
- lib/fog/aws/requests/elb/disable_availability_zones_for_load_balancer.rb
|
684
818
|
- lib/fog/aws/requests/elb/enable_availability_zones_for_load_balancer.rb
|
@@ -799,11 +933,13 @@ files:
|
|
799
933
|
- lib/fog/aws/requests/storage/complete_multipart_upload.rb
|
800
934
|
- lib/fog/aws/requests/storage/copy_object.rb
|
801
935
|
- lib/fog/aws/requests/storage/delete_bucket.rb
|
936
|
+
- lib/fog/aws/requests/storage/delete_bucket_lifecycle.rb
|
802
937
|
- lib/fog/aws/requests/storage/delete_bucket_policy.rb
|
803
938
|
- lib/fog/aws/requests/storage/delete_bucket_website.rb
|
804
939
|
- lib/fog/aws/requests/storage/delete_object.rb
|
805
940
|
- lib/fog/aws/requests/storage/get_bucket.rb
|
806
941
|
- lib/fog/aws/requests/storage/get_bucket_acl.rb
|
942
|
+
- lib/fog/aws/requests/storage/get_bucket_lifecycle.rb
|
807
943
|
- lib/fog/aws/requests/storage/get_bucket_location.rb
|
808
944
|
- lib/fog/aws/requests/storage/get_bucket_logging.rb
|
809
945
|
- lib/fog/aws/requests/storage/get_bucket_object_versions.rb
|
@@ -825,6 +961,7 @@ files:
|
|
825
961
|
- lib/fog/aws/requests/storage/post_object_hidden_fields.rb
|
826
962
|
- lib/fog/aws/requests/storage/put_bucket.rb
|
827
963
|
- lib/fog/aws/requests/storage/put_bucket_acl.rb
|
964
|
+
- lib/fog/aws/requests/storage/put_bucket_lifecycle.rb
|
828
965
|
- lib/fog/aws/requests/storage/put_bucket_logging.rb
|
829
966
|
- lib/fog/aws/requests/storage/put_bucket_policy.rb
|
830
967
|
- lib/fog/aws/requests/storage/put_bucket_versioning.rb
|
@@ -843,11 +980,22 @@ files:
|
|
843
980
|
- lib/fog/aws/sqs.rb
|
844
981
|
- lib/fog/aws/storage.rb
|
845
982
|
- lib/fog/aws/sts.rb
|
983
|
+
- lib/fog/bare_metal_cloud.rb
|
984
|
+
- lib/fog/bare_metal_cloud/compute.rb
|
985
|
+
- lib/fog/bare_metal_cloud/requests/compute/add_server.rb
|
986
|
+
- lib/fog/bare_metal_cloud/requests/compute/cancel_server.rb
|
987
|
+
- lib/fog/bare_metal_cloud/requests/compute/get_server.rb
|
988
|
+
- lib/fog/bare_metal_cloud/requests/compute/list_images.rb
|
989
|
+
- lib/fog/bare_metal_cloud/requests/compute/list_plans.rb
|
990
|
+
- lib/fog/bare_metal_cloud/requests/compute/list_servers.rb
|
991
|
+
- lib/fog/bare_metal_cloud/requests/compute/reboot_server.rb
|
846
992
|
- lib/fog/bin.rb
|
847
993
|
- lib/fog/bin/aws.rb
|
994
|
+
- lib/fog/bin/bare_metal_cloud.rb
|
848
995
|
- lib/fog/bin/bluebox.rb
|
849
996
|
- lib/fog/bin/brightbox.rb
|
850
997
|
- lib/fog/bin/clodo.rb
|
998
|
+
- lib/fog/bin/cloudstack.rb
|
851
999
|
- lib/fog/bin/dnsimple.rb
|
852
1000
|
- lib/fog/bin/dnsmadeeasy.rb
|
853
1001
|
- lib/fog/bin/dynect.rb
|
@@ -855,12 +1003,13 @@ files:
|
|
855
1003
|
- lib/fog/bin/glesys.rb
|
856
1004
|
- lib/fog/bin/go_grid.rb
|
857
1005
|
- lib/fog/bin/google.rb
|
1006
|
+
- lib/fog/bin/joyent.rb
|
858
1007
|
- lib/fog/bin/libvirt.rb
|
859
1008
|
- lib/fog/bin/linode.rb
|
860
1009
|
- lib/fog/bin/local.rb
|
861
|
-
- lib/fog/bin/new_servers.rb
|
862
1010
|
- lib/fog/bin/ninefold.rb
|
863
1011
|
- lib/fog/bin/openstack.rb
|
1012
|
+
- lib/fog/bin/ovirt.rb
|
864
1013
|
- lib/fog/bin/rackspace.rb
|
865
1014
|
- lib/fog/bin/slicehost.rb
|
866
1015
|
- lib/fog/bin/stormondemand.rb
|
@@ -878,6 +1027,8 @@ files:
|
|
878
1027
|
- lib/fog/bluebox/models/compute/flavors.rb
|
879
1028
|
- lib/fog/bluebox/models/compute/image.rb
|
880
1029
|
- lib/fog/bluebox/models/compute/images.rb
|
1030
|
+
- lib/fog/bluebox/models/compute/location.rb
|
1031
|
+
- lib/fog/bluebox/models/compute/locations.rb
|
881
1032
|
- lib/fog/bluebox/models/compute/server.rb
|
882
1033
|
- lib/fog/bluebox/models/compute/servers.rb
|
883
1034
|
- lib/fog/bluebox/models/dns/record.rb
|
@@ -896,6 +1047,8 @@ files:
|
|
896
1047
|
- lib/fog/bluebox/requests/compute/destroy_template.rb
|
897
1048
|
- lib/fog/bluebox/requests/compute/get_block.rb
|
898
1049
|
- lib/fog/bluebox/requests/compute/get_blocks.rb
|
1050
|
+
- lib/fog/bluebox/requests/compute/get_location.rb
|
1051
|
+
- lib/fog/bluebox/requests/compute/get_locations.rb
|
899
1052
|
- lib/fog/bluebox/requests/compute/get_product.rb
|
900
1053
|
- lib/fog/bluebox/requests/compute/get_products.rb
|
901
1054
|
- lib/fog/bluebox/requests/compute/get_template.rb
|
@@ -995,6 +1148,7 @@ files:
|
|
995
1148
|
- lib/fog/brightbox/requests/compute/update_account.rb
|
996
1149
|
- lib/fog/brightbox/requests/compute/update_api_client.rb
|
997
1150
|
- lib/fog/brightbox/requests/compute/update_cloud_ip.rb
|
1151
|
+
- lib/fog/brightbox/requests/compute/update_firewall_rule.rb
|
998
1152
|
- lib/fog/brightbox/requests/compute/update_image.rb
|
999
1153
|
- lib/fog/brightbox/requests/compute/update_load_balancer.rb
|
1000
1154
|
- lib/fog/brightbox/requests/compute/update_server.rb
|
@@ -1023,6 +1177,98 @@ files:
|
|
1023
1177
|
- lib/fog/clodo/requests/compute/server_action.rb
|
1024
1178
|
- lib/fog/clodo/requests/compute/start_server.rb
|
1025
1179
|
- lib/fog/clodo/requests/compute/stop_server.rb
|
1180
|
+
- lib/fog/cloudstack.rb
|
1181
|
+
- lib/fog/cloudstack/compute.rb
|
1182
|
+
- lib/fog/cloudstack/requests/compute/acquire_ip_address.rb
|
1183
|
+
- lib/fog/cloudstack/requests/compute/assign_to_load_balancer_rule.rb
|
1184
|
+
- lib/fog/cloudstack/requests/compute/attach_volume.rb
|
1185
|
+
- lib/fog/cloudstack/requests/compute/authorize_security_group_ingress.rb
|
1186
|
+
- lib/fog/cloudstack/requests/compute/change_service_for_virtual_machine.rb
|
1187
|
+
- lib/fog/cloudstack/requests/compute/create_account.rb
|
1188
|
+
- lib/fog/cloudstack/requests/compute/create_domain.rb
|
1189
|
+
- lib/fog/cloudstack/requests/compute/create_load_balancer_rule.rb
|
1190
|
+
- lib/fog/cloudstack/requests/compute/create_network.rb
|
1191
|
+
- lib/fog/cloudstack/requests/compute/create_port_forwarding_rule.rb
|
1192
|
+
- lib/fog/cloudstack/requests/compute/create_security_group.rb
|
1193
|
+
- lib/fog/cloudstack/requests/compute/create_snapshot.rb
|
1194
|
+
- lib/fog/cloudstack/requests/compute/create_snapshot_policy.rb
|
1195
|
+
- lib/fog/cloudstack/requests/compute/create_ssh_key_pair.rb
|
1196
|
+
- lib/fog/cloudstack/requests/compute/create_user.rb
|
1197
|
+
- lib/fog/cloudstack/requests/compute/create_volume.rb
|
1198
|
+
- lib/fog/cloudstack/requests/compute/delete_account.rb
|
1199
|
+
- lib/fog/cloudstack/requests/compute/delete_domain.rb
|
1200
|
+
- lib/fog/cloudstack/requests/compute/delete_load_balancer_rule.rb
|
1201
|
+
- lib/fog/cloudstack/requests/compute/delete_port_forwarding_rule.rb
|
1202
|
+
- lib/fog/cloudstack/requests/compute/delete_security_group.rb
|
1203
|
+
- lib/fog/cloudstack/requests/compute/delete_snapshot.rb
|
1204
|
+
- lib/fog/cloudstack/requests/compute/delete_snapshot_policies.rb
|
1205
|
+
- lib/fog/cloudstack/requests/compute/delete_ssh_key_pair.rb
|
1206
|
+
- lib/fog/cloudstack/requests/compute/delete_user.rb
|
1207
|
+
- lib/fog/cloudstack/requests/compute/delete_volume.rb
|
1208
|
+
- lib/fog/cloudstack/requests/compute/deploy_virtual_machine.rb
|
1209
|
+
- lib/fog/cloudstack/requests/compute/destroy_virtual_machine.rb
|
1210
|
+
- lib/fog/cloudstack/requests/compute/detach_volume.rb
|
1211
|
+
- lib/fog/cloudstack/requests/compute/disable_account.rb
|
1212
|
+
- lib/fog/cloudstack/requests/compute/disable_user.rb
|
1213
|
+
- lib/fog/cloudstack/requests/compute/enable_account.rb
|
1214
|
+
- lib/fog/cloudstack/requests/compute/enable_user.rb
|
1215
|
+
- lib/fog/cloudstack/requests/compute/generate_usage_records.rb
|
1216
|
+
- lib/fog/cloudstack/requests/compute/get_vm_password.rb
|
1217
|
+
- lib/fog/cloudstack/requests/compute/list_accounts.rb
|
1218
|
+
- lib/fog/cloudstack/requests/compute/list_alerts.rb
|
1219
|
+
- lib/fog/cloudstack/requests/compute/list_async_jobs.rb
|
1220
|
+
- lib/fog/cloudstack/requests/compute/list_capabilities.rb
|
1221
|
+
- lib/fog/cloudstack/requests/compute/list_capacity.rb
|
1222
|
+
- lib/fog/cloudstack/requests/compute/list_clusters.rb
|
1223
|
+
- lib/fog/cloudstack/requests/compute/list_configurations.rb
|
1224
|
+
- lib/fog/cloudstack/requests/compute/list_disk_offerings.rb
|
1225
|
+
- lib/fog/cloudstack/requests/compute/list_domain_children.rb
|
1226
|
+
- lib/fog/cloudstack/requests/compute/list_domains.rb
|
1227
|
+
- lib/fog/cloudstack/requests/compute/list_events.rb
|
1228
|
+
- lib/fog/cloudstack/requests/compute/list_external_firewalls.rb
|
1229
|
+
- lib/fog/cloudstack/requests/compute/list_external_load_balancers.rb
|
1230
|
+
- lib/fog/cloudstack/requests/compute/list_hosts.rb
|
1231
|
+
- lib/fog/cloudstack/requests/compute/list_hypervisors.rb
|
1232
|
+
- lib/fog/cloudstack/requests/compute/list_instance_groups.rb
|
1233
|
+
- lib/fog/cloudstack/requests/compute/list_isos.rb
|
1234
|
+
- lib/fog/cloudstack/requests/compute/list_load_balancer_rule_instances.rb
|
1235
|
+
- lib/fog/cloudstack/requests/compute/list_load_balancer_rules.rb
|
1236
|
+
- lib/fog/cloudstack/requests/compute/list_network_offerings.rb
|
1237
|
+
- lib/fog/cloudstack/requests/compute/list_networks.rb
|
1238
|
+
- lib/fog/cloudstack/requests/compute/list_os_categories.rb
|
1239
|
+
- lib/fog/cloudstack/requests/compute/list_os_types.rb
|
1240
|
+
- lib/fog/cloudstack/requests/compute/list_pods.rb
|
1241
|
+
- lib/fog/cloudstack/requests/compute/list_port_forwarding_rules.rb
|
1242
|
+
- lib/fog/cloudstack/requests/compute/list_public_ip_addresses.rb
|
1243
|
+
- lib/fog/cloudstack/requests/compute/list_resource_limits.rb
|
1244
|
+
- lib/fog/cloudstack/requests/compute/list_security_groups.rb
|
1245
|
+
- lib/fog/cloudstack/requests/compute/list_service_offerings.rb
|
1246
|
+
- lib/fog/cloudstack/requests/compute/list_snapshot_policies.rb
|
1247
|
+
- lib/fog/cloudstack/requests/compute/list_snapshots.rb
|
1248
|
+
- lib/fog/cloudstack/requests/compute/list_ssh_key_pairs.rb
|
1249
|
+
- lib/fog/cloudstack/requests/compute/list_storage_pools.rb
|
1250
|
+
- lib/fog/cloudstack/requests/compute/list_templates.rb
|
1251
|
+
- lib/fog/cloudstack/requests/compute/list_usage_records.rb
|
1252
|
+
- lib/fog/cloudstack/requests/compute/list_users.rb
|
1253
|
+
- lib/fog/cloudstack/requests/compute/list_virtual_machines.rb
|
1254
|
+
- lib/fog/cloudstack/requests/compute/list_volumes.rb
|
1255
|
+
- lib/fog/cloudstack/requests/compute/list_zones.rb
|
1256
|
+
- lib/fog/cloudstack/requests/compute/migrate_virtual_machine.rb
|
1257
|
+
- lib/fog/cloudstack/requests/compute/query_async_job_result.rb
|
1258
|
+
- lib/fog/cloudstack/requests/compute/reboot_virtual_machine.rb
|
1259
|
+
- lib/fog/cloudstack/requests/compute/recover_virtual_machine.rb
|
1260
|
+
- lib/fog/cloudstack/requests/compute/register_ssh_key_pair.rb
|
1261
|
+
- lib/fog/cloudstack/requests/compute/register_user_keys.rb
|
1262
|
+
- lib/fog/cloudstack/requests/compute/remove_from_load_balancer_rule.rb
|
1263
|
+
- lib/fog/cloudstack/requests/compute/reset_password_for_virtual_machine.rb
|
1264
|
+
- lib/fog/cloudstack/requests/compute/revoke_security_group_ingress.rb
|
1265
|
+
- lib/fog/cloudstack/requests/compute/start_virtual_machine.rb
|
1266
|
+
- lib/fog/cloudstack/requests/compute/stop_virtual_machine.rb
|
1267
|
+
- lib/fog/cloudstack/requests/compute/update_account.rb
|
1268
|
+
- lib/fog/cloudstack/requests/compute/update_domain.rb
|
1269
|
+
- lib/fog/cloudstack/requests/compute/update_resource_count.rb
|
1270
|
+
- lib/fog/cloudstack/requests/compute/update_user.rb
|
1271
|
+
- lib/fog/cloudstack/requests/compute/update_virtual_machine.rb
|
1026
1272
|
- lib/fog/compute.rb
|
1027
1273
|
- lib/fog/compute/models/server.rb
|
1028
1274
|
- lib/fog/core.rb
|
@@ -1236,6 +1482,49 @@ files:
|
|
1236
1482
|
- lib/fog/google/requests/storage/put_object.rb
|
1237
1483
|
- lib/fog/google/requests/storage/put_object_url.rb
|
1238
1484
|
- lib/fog/google/storage.rb
|
1485
|
+
- lib/fog/joyent.rb
|
1486
|
+
- lib/fog/joyent/compute.rb
|
1487
|
+
- lib/fog/joyent/errors.rb
|
1488
|
+
- lib/fog/joyent/models/compute/flavor.rb
|
1489
|
+
- lib/fog/joyent/models/compute/flavors.rb
|
1490
|
+
- lib/fog/joyent/models/compute/image.rb
|
1491
|
+
- lib/fog/joyent/models/compute/images.rb
|
1492
|
+
- lib/fog/joyent/models/compute/key.rb
|
1493
|
+
- lib/fog/joyent/models/compute/keys.rb
|
1494
|
+
- lib/fog/joyent/models/compute/server.rb
|
1495
|
+
- lib/fog/joyent/models/compute/servers.rb
|
1496
|
+
- lib/fog/joyent/models/compute/snapshot.rb
|
1497
|
+
- lib/fog/joyent/models/compute/snapshots.rb
|
1498
|
+
- lib/fog/joyent/requests/compute/add_machine_tags.rb
|
1499
|
+
- lib/fog/joyent/requests/compute/create_key.rb
|
1500
|
+
- lib/fog/joyent/requests/compute/create_machine.rb
|
1501
|
+
- lib/fog/joyent/requests/compute/create_machine_snapshot.rb
|
1502
|
+
- lib/fog/joyent/requests/compute/delete_all_machine_metadata.rb
|
1503
|
+
- lib/fog/joyent/requests/compute/delete_all_machine_tags.rb
|
1504
|
+
- lib/fog/joyent/requests/compute/delete_key.rb
|
1505
|
+
- lib/fog/joyent/requests/compute/delete_machine.rb
|
1506
|
+
- lib/fog/joyent/requests/compute/delete_machine_metadata.rb
|
1507
|
+
- lib/fog/joyent/requests/compute/delete_machine_snapshot.rb
|
1508
|
+
- lib/fog/joyent/requests/compute/delete_machine_tag.rb
|
1509
|
+
- lib/fog/joyent/requests/compute/get_dataset.rb
|
1510
|
+
- lib/fog/joyent/requests/compute/get_key.rb
|
1511
|
+
- lib/fog/joyent/requests/compute/get_machine.rb
|
1512
|
+
- lib/fog/joyent/requests/compute/get_machine_metadata.rb
|
1513
|
+
- lib/fog/joyent/requests/compute/get_machine_snapshot.rb
|
1514
|
+
- lib/fog/joyent/requests/compute/get_machine_tag.rb
|
1515
|
+
- lib/fog/joyent/requests/compute/get_package.rb
|
1516
|
+
- lib/fog/joyent/requests/compute/list_datasets.rb
|
1517
|
+
- lib/fog/joyent/requests/compute/list_keys.rb
|
1518
|
+
- lib/fog/joyent/requests/compute/list_machine_snapshots.rb
|
1519
|
+
- lib/fog/joyent/requests/compute/list_machine_tags.rb
|
1520
|
+
- lib/fog/joyent/requests/compute/list_machines.rb
|
1521
|
+
- lib/fog/joyent/requests/compute/list_packages.rb
|
1522
|
+
- lib/fog/joyent/requests/compute/reboot_machine.rb
|
1523
|
+
- lib/fog/joyent/requests/compute/resize_machine.rb
|
1524
|
+
- lib/fog/joyent/requests/compute/start_machine.rb
|
1525
|
+
- lib/fog/joyent/requests/compute/start_machine_from_snapshot.rb
|
1526
|
+
- lib/fog/joyent/requests/compute/stop_machine.rb
|
1527
|
+
- lib/fog/joyent/requests/compute/update_machine_metadata.rb
|
1239
1528
|
- lib/fog/libvirt.rb
|
1240
1529
|
- lib/fog/libvirt/compute.rb
|
1241
1530
|
- lib/fog/libvirt/models/compute/README.md
|
@@ -1316,15 +1605,6 @@ files:
|
|
1316
1605
|
- lib/fog/local/models/storage/file.rb
|
1317
1606
|
- lib/fog/local/models/storage/files.rb
|
1318
1607
|
- lib/fog/local/storage.rb
|
1319
|
-
- lib/fog/new_servers.rb
|
1320
|
-
- lib/fog/new_servers/compute.rb
|
1321
|
-
- lib/fog/new_servers/requests/compute/add_server.rb
|
1322
|
-
- lib/fog/new_servers/requests/compute/cancel_server.rb
|
1323
|
-
- lib/fog/new_servers/requests/compute/get_server.rb
|
1324
|
-
- lib/fog/new_servers/requests/compute/list_images.rb
|
1325
|
-
- lib/fog/new_servers/requests/compute/list_plans.rb
|
1326
|
-
- lib/fog/new_servers/requests/compute/list_servers.rb
|
1327
|
-
- lib/fog/new_servers/requests/compute/reboot_server.rb
|
1328
1608
|
- lib/fog/ninefold.rb
|
1329
1609
|
- lib/fog/ninefold/compute.rb
|
1330
1610
|
- lib/fog/ninefold/models/compute/address.rb
|
@@ -1418,6 +1698,43 @@ files:
|
|
1418
1698
|
- lib/fog/openstack/requests/compute/update_meta.rb
|
1419
1699
|
- lib/fog/openstack/requests/compute/update_metadata.rb
|
1420
1700
|
- lib/fog/openstack/requests/compute/update_server.rb
|
1701
|
+
- lib/fog/ovirt.rb
|
1702
|
+
- lib/fog/ovirt/compute.rb
|
1703
|
+
- lib/fog/ovirt/models/compute/cluster.rb
|
1704
|
+
- lib/fog/ovirt/models/compute/clusters.rb
|
1705
|
+
- lib/fog/ovirt/models/compute/interface.rb
|
1706
|
+
- lib/fog/ovirt/models/compute/interfaces.rb
|
1707
|
+
- lib/fog/ovirt/models/compute/server.rb
|
1708
|
+
- lib/fog/ovirt/models/compute/servers.rb
|
1709
|
+
- lib/fog/ovirt/models/compute/template.rb
|
1710
|
+
- lib/fog/ovirt/models/compute/templates.rb
|
1711
|
+
- lib/fog/ovirt/requests/compute/add_interface.rb
|
1712
|
+
- lib/fog/ovirt/requests/compute/create_vm.rb
|
1713
|
+
- lib/fog/ovirt/requests/compute/datacenters.rb
|
1714
|
+
- lib/fog/ovirt/requests/compute/destroy_interface.rb
|
1715
|
+
- lib/fog/ovirt/requests/compute/destroy_vm.rb
|
1716
|
+
- lib/fog/ovirt/requests/compute/get_cluster.rb
|
1717
|
+
- lib/fog/ovirt/requests/compute/get_template.rb
|
1718
|
+
- lib/fog/ovirt/requests/compute/get_virtual_machine.rb
|
1719
|
+
- lib/fog/ovirt/requests/compute/list_clusters.rb
|
1720
|
+
- lib/fog/ovirt/requests/compute/list_networks.rb
|
1721
|
+
- lib/fog/ovirt/requests/compute/list_template_interfaces.rb
|
1722
|
+
- lib/fog/ovirt/requests/compute/list_templates.rb
|
1723
|
+
- lib/fog/ovirt/requests/compute/list_virtual_machines.rb
|
1724
|
+
- lib/fog/ovirt/requests/compute/list_vm_interfaces.rb
|
1725
|
+
- lib/fog/ovirt/requests/compute/mock_files/cluster.xml
|
1726
|
+
- lib/fog/ovirt/requests/compute/mock_files/clusters.xml
|
1727
|
+
- lib/fog/ovirt/requests/compute/mock_files/data_centers.xml
|
1728
|
+
- lib/fog/ovirt/requests/compute/mock_files/nics.xml
|
1729
|
+
- lib/fog/ovirt/requests/compute/mock_files/storage_domains.xml
|
1730
|
+
- lib/fog/ovirt/requests/compute/mock_files/template.xml
|
1731
|
+
- lib/fog/ovirt/requests/compute/mock_files/templates.xml
|
1732
|
+
- lib/fog/ovirt/requests/compute/mock_files/vm.xml
|
1733
|
+
- lib/fog/ovirt/requests/compute/mock_files/vms.xml
|
1734
|
+
- lib/fog/ovirt/requests/compute/storage_domains.rb
|
1735
|
+
- lib/fog/ovirt/requests/compute/update_interface.rb
|
1736
|
+
- lib/fog/ovirt/requests/compute/update_vm.rb
|
1737
|
+
- lib/fog/ovirt/requests/compute/vm_action.rb
|
1421
1738
|
- lib/fog/providers.rb
|
1422
1739
|
- lib/fog/rackspace.rb
|
1423
1740
|
- lib/fog/rackspace/cdn.rb
|
@@ -1523,6 +1840,7 @@ files:
|
|
1523
1840
|
- lib/fog/rackspace/requests/load_balancers/set_session_persistence.rb
|
1524
1841
|
- lib/fog/rackspace/requests/load_balancers/update_load_balancer.rb
|
1525
1842
|
- lib/fog/rackspace/requests/load_balancers/update_node.rb
|
1843
|
+
- lib/fog/rackspace/requests/storage/copy_object.rb
|
1526
1844
|
- lib/fog/rackspace/requests/storage/delete_container.rb
|
1527
1845
|
- lib/fog/rackspace/requests/storage/delete_object.rb
|
1528
1846
|
- lib/fog/rackspace/requests/storage/get_container.rb
|
@@ -1773,10 +2091,15 @@ files:
|
|
1773
2091
|
- lib/fog/vsphere/requests/compute/find_vm_by_ref.rb
|
1774
2092
|
- lib/fog/vsphere/requests/compute/list_virtual_machines.rb
|
1775
2093
|
- lib/fog/vsphere/requests/compute/vm_clone.rb
|
2094
|
+
- lib/fog/vsphere/requests/compute/vm_create.rb
|
1776
2095
|
- lib/fog/vsphere/requests/compute/vm_destroy.rb
|
2096
|
+
- lib/fog/vsphere/requests/compute/vm_migrate.rb
|
1777
2097
|
- lib/fog/vsphere/requests/compute/vm_power_off.rb
|
1778
2098
|
- lib/fog/vsphere/requests/compute/vm_power_on.rb
|
1779
2099
|
- lib/fog/vsphere/requests/compute/vm_reboot.rb
|
2100
|
+
- lib/fog/vsphere/requests/compute/vm_reconfig_cpus.rb
|
2101
|
+
- lib/fog/vsphere/requests/compute/vm_reconfig_hardware.rb
|
2102
|
+
- lib/fog/vsphere/requests/compute/vm_reconfig_memory.rb
|
1780
2103
|
- lib/fog/zerigo.rb
|
1781
2104
|
- lib/fog/zerigo/dns.rb
|
1782
2105
|
- lib/fog/zerigo/models/dns/record.rb
|
@@ -1862,6 +2185,14 @@ files:
|
|
1862
2185
|
- tests/aws/models/auto_scaling/configurations_tests.rb
|
1863
2186
|
- tests/aws/models/auto_scaling/helper.rb
|
1864
2187
|
- tests/aws/models/auto_scaling/instances_tests.rb
|
2188
|
+
- tests/aws/models/beanstalk/application_tests.rb
|
2189
|
+
- tests/aws/models/beanstalk/applications_tests.rb
|
2190
|
+
- tests/aws/models/beanstalk/environment_tests.rb
|
2191
|
+
- tests/aws/models/beanstalk/environments_tests.rb
|
2192
|
+
- tests/aws/models/beanstalk/template_tests.rb
|
2193
|
+
- tests/aws/models/beanstalk/templates_tests.rb
|
2194
|
+
- tests/aws/models/beanstalk/version_tests.rb
|
2195
|
+
- tests/aws/models/beanstalk/versions_tests.rb
|
1865
2196
|
- tests/aws/models/cloud_watch/alarm_data_tests.rb
|
1866
2197
|
- tests/aws/models/cloud_watch/alarm_history_tests.rb
|
1867
2198
|
- tests/aws/models/cloud_watch/metric_statistics_tests.rb
|
@@ -1875,8 +2206,16 @@ files:
|
|
1875
2206
|
- tests/aws/models/compute/server_tests.rb
|
1876
2207
|
- tests/aws/models/compute/snapshot_tests.rb
|
1877
2208
|
- tests/aws/models/compute/snapshots_tests.rb
|
2209
|
+
- tests/aws/models/compute/subnet_tests.rb
|
2210
|
+
- tests/aws/models/compute/subnets_tests.rb
|
1878
2211
|
- tests/aws/models/compute/volume_tests.rb
|
1879
2212
|
- tests/aws/models/compute/volumes_tests.rb
|
2213
|
+
- tests/aws/models/compute/vpc_tests.rb
|
2214
|
+
- tests/aws/models/compute/vpcs_tests.rb
|
2215
|
+
- tests/aws/models/dns/record_tests.rb
|
2216
|
+
- tests/aws/models/dns/records_tests.rb
|
2217
|
+
- tests/aws/models/dns/zone_tests.rb
|
2218
|
+
- tests/aws/models/dns/zones_tests.rb
|
1880
2219
|
- tests/aws/models/elasticache/cluster_tests.rb
|
1881
2220
|
- tests/aws/models/elasticache/parameter_groups_tests.rb
|
1882
2221
|
- tests/aws/models/elasticache/security_groups_tests.rb
|
@@ -1890,9 +2229,16 @@ files:
|
|
1890
2229
|
- tests/aws/models/rds/servers_tests.rb
|
1891
2230
|
- tests/aws/models/rds/snapshot_tests.rb
|
1892
2231
|
- tests/aws/models/rds/snapshots_tests.rb
|
2232
|
+
- tests/aws/models/storage/directory_tests.rb
|
2233
|
+
- tests/aws/models/storage/file_tests.rb
|
2234
|
+
- tests/aws/models/storage/files_tests.rb
|
2235
|
+
- tests/aws/models/storage/version_tests.rb
|
2236
|
+
- tests/aws/models/storage/versions_tests.rb
|
1893
2237
|
- tests/aws/requests/auto_scaling/auto_scaling_tests.rb
|
1894
2238
|
- tests/aws/requests/auto_scaling/helper.rb
|
1895
2239
|
- tests/aws/requests/auto_scaling/model_tests.rb
|
2240
|
+
- tests/aws/requests/beanstalk/application_tests.rb
|
2241
|
+
- tests/aws/requests/beanstalk/solution_stack_tests.rb
|
1896
2242
|
- tests/aws/requests/cloud_formation/stack_tests.rb
|
1897
2243
|
- tests/aws/requests/cloud_watch/get_metric_statistics_tests.rb
|
1898
2244
|
- tests/aws/requests/cloud_watch/list_metrics_test.rb
|
@@ -1910,9 +2256,14 @@ files:
|
|
1910
2256
|
- tests/aws/requests/compute/spot_datafeed_subscription_tests.rb
|
1911
2257
|
- tests/aws/requests/compute/spot_instance_tests.rb
|
1912
2258
|
- tests/aws/requests/compute/spot_price_history_tests.rb
|
2259
|
+
- tests/aws/requests/compute/subnet_tests.rb
|
1913
2260
|
- tests/aws/requests/compute/tag_tests.rb
|
1914
2261
|
- tests/aws/requests/compute/volume_tests.rb
|
2262
|
+
- tests/aws/requests/compute/vpc_tests.rb
|
1915
2263
|
- tests/aws/requests/dns/dns_tests.rb
|
2264
|
+
- tests/aws/requests/dns/helper.rb
|
2265
|
+
- tests/aws/requests/dynamodb/item_tests.rb
|
2266
|
+
- tests/aws/requests/dynamodb/table_tests.rb
|
1916
2267
|
- tests/aws/requests/elasticache/cache_cluster_tests.rb
|
1917
2268
|
- tests/aws/requests/elasticache/describe_events.rb
|
1918
2269
|
- tests/aws/requests/elasticache/helper.rb
|
@@ -1937,6 +2288,7 @@ files:
|
|
1937
2288
|
- tests/aws/requests/rds/instance_tests.rb
|
1938
2289
|
- tests/aws/requests/rds/parameter_group_tests.rb
|
1939
2290
|
- tests/aws/requests/rds/parameter_request_tests.rb
|
2291
|
+
- tests/aws/requests/rds/security_group_tests.rb
|
1940
2292
|
- tests/aws/requests/ses/helper.rb
|
1941
2293
|
- tests/aws/requests/ses/verified_email_address_tests.rb
|
1942
2294
|
- tests/aws/requests/simpledb/attributes_tests.rb
|
@@ -1952,11 +2304,13 @@ files:
|
|
1952
2304
|
- tests/aws/requests/storage/bucket_tests.rb
|
1953
2305
|
- tests/aws/requests/storage/multipart_upload_tests.rb
|
1954
2306
|
- tests/aws/requests/storage/object_tests.rb
|
2307
|
+
- tests/aws/requests/storage/versioning_tests.rb
|
1955
2308
|
- tests/aws/requests/sts/get_federation_token_tests.rb
|
1956
2309
|
- tests/aws/requests/sts/session_token_tests.rb
|
1957
2310
|
- tests/aws/signed_params_tests.rb
|
1958
2311
|
- tests/bluebox/requests/compute/block_tests.rb
|
1959
2312
|
- tests/bluebox/requests/compute/helper.rb
|
2313
|
+
- tests/bluebox/requests/compute/location_tests.rb
|
1960
2314
|
- tests/bluebox/requests/compute/product_tests.rb
|
1961
2315
|
- tests/bluebox/requests/compute/template_tests.rb
|
1962
2316
|
- tests/bluebox/requests/dns/dns_tests.rb
|
@@ -1974,6 +2328,17 @@ files:
|
|
1974
2328
|
- tests/brightbox/requests/compute/zone_tests.rb
|
1975
2329
|
- tests/clodo/requests/compute/image_tests.rb
|
1976
2330
|
- tests/clodo/requests/compute/server_tests.rb
|
2331
|
+
- tests/cloudstack/requests/disk_offering_tests.rb
|
2332
|
+
- tests/cloudstack/requests/os_type_tests.rb
|
2333
|
+
- tests/cloudstack/requests/security_group_tests.rb
|
2334
|
+
- tests/cloudstack/requests/service_offering_tests.rb
|
2335
|
+
- tests/cloudstack/requests/snapshot_tests.rb
|
2336
|
+
- tests/cloudstack/requests/ssh_key_pair_tests.rb
|
2337
|
+
- tests/cloudstack/requests/template_tests.rb
|
2338
|
+
- tests/cloudstack/requests/virtual_machine_tests.rb
|
2339
|
+
- tests/cloudstack/requests/volume_tests.rb
|
2340
|
+
- tests/cloudstack/requests/zone_tests.rb
|
2341
|
+
- tests/cloudstack/signed_params_tests.rb
|
1977
2342
|
- tests/compute/helper.rb
|
1978
2343
|
- tests/compute/models/flavors_tests.rb
|
1979
2344
|
- tests/compute/models/server_tests.rb
|
@@ -2009,6 +2374,10 @@ files:
|
|
2009
2374
|
- tests/helpers/model_helper.rb
|
2010
2375
|
- tests/helpers/responds_to_helper.rb
|
2011
2376
|
- tests/helpers/succeeds_helper.rb
|
2377
|
+
- tests/joyent/requests/compute/datasets_tests.rb
|
2378
|
+
- tests/joyent/requests/compute/keys_tests.rb
|
2379
|
+
- tests/joyent/requests/compute/machines_tests.rb
|
2380
|
+
- tests/joyent/requests/compute/packages_tests.rb
|
2012
2381
|
- tests/linode/requests/compute/datacenter_tests.rb
|
2013
2382
|
- tests/linode/requests/compute/distribution_tests.rb
|
2014
2383
|
- tests/linode/requests/compute/helper.rb
|
@@ -2032,6 +2401,20 @@ files:
|
|
2032
2401
|
- tests/openstack/requests/compute/helper.rb
|
2033
2402
|
- tests/openstack/requests/compute/image_tests.rb
|
2034
2403
|
- tests/openstack/requests/compute/server_tests.rb
|
2404
|
+
- tests/ovirt/compute_tests.rb
|
2405
|
+
- tests/ovirt/models/compute/cluster_tests.rb
|
2406
|
+
- tests/ovirt/models/compute/clusters_tests.rb
|
2407
|
+
- tests/ovirt/models/compute/interface_tests.rb
|
2408
|
+
- tests/ovirt/models/compute/interfaces_tests.rb
|
2409
|
+
- tests/ovirt/models/compute/server_tests.rb
|
2410
|
+
- tests/ovirt/models/compute/servers_tests.rb
|
2411
|
+
- tests/ovirt/models/compute/template_tests.rb
|
2412
|
+
- tests/ovirt/models/compute/templates_tests.rb
|
2413
|
+
- tests/ovirt/requests/compute/create_vm_tests.rb
|
2414
|
+
- tests/ovirt/requests/compute/destroy_vm_tests.rb
|
2415
|
+
- tests/ovirt/requests/compute/list_datacenters_tests.rb
|
2416
|
+
- tests/ovirt/requests/compute/list_storage_domains_tests.rb
|
2417
|
+
- tests/ovirt/requests/compute/update_vm_tests.rb
|
2035
2418
|
- tests/rackspace/helper.rb
|
2036
2419
|
- tests/rackspace/load_balancer_tests.rb
|
2037
2420
|
- tests/rackspace/models/dns/zone_tests.rb
|
@@ -2081,6 +2464,11 @@ files:
|
|
2081
2464
|
- tests/storage/models/file_tests.rb
|
2082
2465
|
- tests/storage/models/files_tests.rb
|
2083
2466
|
- tests/storm_on_demand/requests/compute/server_tests.rb
|
2467
|
+
- tests/vcloud/data/api_+_admin_+_network_+_2
|
2468
|
+
- tests/vcloud/data/api_+_network_+_1
|
2469
|
+
- tests/vcloud/data/api_+_org_+_
|
2470
|
+
- tests/vcloud/data/api_+_org_+_1
|
2471
|
+
- tests/vcloud/data/api_+_sessions
|
2084
2472
|
- tests/vcloud/data/api_+_v1.0_+_admin_+_network_+_2
|
2085
2473
|
- tests/vcloud/data/api_+_v1.0_+_login
|
2086
2474
|
- tests/vcloud/data/api_+_v1.0_+_network_+_1
|
@@ -2090,6 +2478,9 @@ files:
|
|
2090
2478
|
- tests/vcloud/data/api_+_v1.0_+_vApp_+_vm-1
|
2091
2479
|
- tests/vcloud/data/api_+_v1.0_+_vApp_+_vm-2
|
2092
2480
|
- tests/vcloud/data/api_+_v1.0_+_vdc_+_1
|
2481
|
+
- tests/vcloud/data/api_+_vApp_+_vapp-1
|
2482
|
+
- tests/vcloud/data/api_+_vApp_+_vm-2
|
2483
|
+
- tests/vcloud/data/api_+_vdc_+_1
|
2093
2484
|
- tests/vcloud/models/compute/conn_helper.rb
|
2094
2485
|
- tests/vcloud/models/compute/helper.rb
|
2095
2486
|
- tests/vcloud/models/compute/network_tests.rb
|
@@ -2112,10 +2503,15 @@ files:
|
|
2112
2503
|
- tests/vsphere/requests/compute/find_vm_by_ref_tests.rb
|
2113
2504
|
- tests/vsphere/requests/compute/list_virtual_machines_tests.rb
|
2114
2505
|
- tests/vsphere/requests/compute/vm_clone_tests.rb
|
2506
|
+
- tests/vsphere/requests/compute/vm_create_tests.rb
|
2115
2507
|
- tests/vsphere/requests/compute/vm_destroy_tests.rb
|
2508
|
+
- tests/vsphere/requests/compute/vm_migrate_tests.rb
|
2116
2509
|
- tests/vsphere/requests/compute/vm_power_off_tests.rb
|
2117
2510
|
- tests/vsphere/requests/compute/vm_power_on_tests.rb
|
2118
2511
|
- tests/vsphere/requests/compute/vm_reboot_tests.rb
|
2512
|
+
- tests/vsphere/requests/compute/vm_reconfig_cpus_tests.rb
|
2513
|
+
- tests/vsphere/requests/compute/vm_reconfig_hardware_tests.rb
|
2514
|
+
- tests/vsphere/requests/compute/vm_reconfig_memory_tests.rb
|
2119
2515
|
- tests/watchr.rb
|
2120
2516
|
- tests/zerigo/requests/dns/dns_tests.rb
|
2121
2517
|
homepage: http://github.com/fog/fog
|
@@ -2133,7 +2529,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
2133
2529
|
version: '0'
|
2134
2530
|
segments:
|
2135
2531
|
- 0
|
2136
|
-
hash: -
|
2532
|
+
hash: -379421229
|
2137
2533
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
2138
2534
|
none: false
|
2139
2535
|
requirements:
|
@@ -2202,6 +2598,14 @@ test_files:
|
|
2202
2598
|
- tests/aws/models/auto_scaling/configurations_tests.rb
|
2203
2599
|
- tests/aws/models/auto_scaling/helper.rb
|
2204
2600
|
- tests/aws/models/auto_scaling/instances_tests.rb
|
2601
|
+
- tests/aws/models/beanstalk/application_tests.rb
|
2602
|
+
- tests/aws/models/beanstalk/applications_tests.rb
|
2603
|
+
- tests/aws/models/beanstalk/environment_tests.rb
|
2604
|
+
- tests/aws/models/beanstalk/environments_tests.rb
|
2605
|
+
- tests/aws/models/beanstalk/template_tests.rb
|
2606
|
+
- tests/aws/models/beanstalk/templates_tests.rb
|
2607
|
+
- tests/aws/models/beanstalk/version_tests.rb
|
2608
|
+
- tests/aws/models/beanstalk/versions_tests.rb
|
2205
2609
|
- tests/aws/models/cloud_watch/alarm_data_tests.rb
|
2206
2610
|
- tests/aws/models/cloud_watch/alarm_history_tests.rb
|
2207
2611
|
- tests/aws/models/cloud_watch/metric_statistics_tests.rb
|
@@ -2215,8 +2619,16 @@ test_files:
|
|
2215
2619
|
- tests/aws/models/compute/server_tests.rb
|
2216
2620
|
- tests/aws/models/compute/snapshot_tests.rb
|
2217
2621
|
- tests/aws/models/compute/snapshots_tests.rb
|
2622
|
+
- tests/aws/models/compute/subnet_tests.rb
|
2623
|
+
- tests/aws/models/compute/subnets_tests.rb
|
2218
2624
|
- tests/aws/models/compute/volume_tests.rb
|
2219
2625
|
- tests/aws/models/compute/volumes_tests.rb
|
2626
|
+
- tests/aws/models/compute/vpc_tests.rb
|
2627
|
+
- tests/aws/models/compute/vpcs_tests.rb
|
2628
|
+
- tests/aws/models/dns/record_tests.rb
|
2629
|
+
- tests/aws/models/dns/records_tests.rb
|
2630
|
+
- tests/aws/models/dns/zone_tests.rb
|
2631
|
+
- tests/aws/models/dns/zones_tests.rb
|
2220
2632
|
- tests/aws/models/elasticache/cluster_tests.rb
|
2221
2633
|
- tests/aws/models/elasticache/parameter_groups_tests.rb
|
2222
2634
|
- tests/aws/models/elasticache/security_groups_tests.rb
|
@@ -2230,9 +2642,16 @@ test_files:
|
|
2230
2642
|
- tests/aws/models/rds/servers_tests.rb
|
2231
2643
|
- tests/aws/models/rds/snapshot_tests.rb
|
2232
2644
|
- tests/aws/models/rds/snapshots_tests.rb
|
2645
|
+
- tests/aws/models/storage/directory_tests.rb
|
2646
|
+
- tests/aws/models/storage/file_tests.rb
|
2647
|
+
- tests/aws/models/storage/files_tests.rb
|
2648
|
+
- tests/aws/models/storage/version_tests.rb
|
2649
|
+
- tests/aws/models/storage/versions_tests.rb
|
2233
2650
|
- tests/aws/requests/auto_scaling/auto_scaling_tests.rb
|
2234
2651
|
- tests/aws/requests/auto_scaling/helper.rb
|
2235
2652
|
- tests/aws/requests/auto_scaling/model_tests.rb
|
2653
|
+
- tests/aws/requests/beanstalk/application_tests.rb
|
2654
|
+
- tests/aws/requests/beanstalk/solution_stack_tests.rb
|
2236
2655
|
- tests/aws/requests/cloud_formation/stack_tests.rb
|
2237
2656
|
- tests/aws/requests/cloud_watch/get_metric_statistics_tests.rb
|
2238
2657
|
- tests/aws/requests/cloud_watch/list_metrics_test.rb
|
@@ -2250,9 +2669,14 @@ test_files:
|
|
2250
2669
|
- tests/aws/requests/compute/spot_datafeed_subscription_tests.rb
|
2251
2670
|
- tests/aws/requests/compute/spot_instance_tests.rb
|
2252
2671
|
- tests/aws/requests/compute/spot_price_history_tests.rb
|
2672
|
+
- tests/aws/requests/compute/subnet_tests.rb
|
2253
2673
|
- tests/aws/requests/compute/tag_tests.rb
|
2254
2674
|
- tests/aws/requests/compute/volume_tests.rb
|
2675
|
+
- tests/aws/requests/compute/vpc_tests.rb
|
2255
2676
|
- tests/aws/requests/dns/dns_tests.rb
|
2677
|
+
- tests/aws/requests/dns/helper.rb
|
2678
|
+
- tests/aws/requests/dynamodb/item_tests.rb
|
2679
|
+
- tests/aws/requests/dynamodb/table_tests.rb
|
2256
2680
|
- tests/aws/requests/elasticache/cache_cluster_tests.rb
|
2257
2681
|
- tests/aws/requests/elasticache/describe_events.rb
|
2258
2682
|
- tests/aws/requests/elasticache/helper.rb
|
@@ -2277,6 +2701,7 @@ test_files:
|
|
2277
2701
|
- tests/aws/requests/rds/instance_tests.rb
|
2278
2702
|
- tests/aws/requests/rds/parameter_group_tests.rb
|
2279
2703
|
- tests/aws/requests/rds/parameter_request_tests.rb
|
2704
|
+
- tests/aws/requests/rds/security_group_tests.rb
|
2280
2705
|
- tests/aws/requests/ses/helper.rb
|
2281
2706
|
- tests/aws/requests/ses/verified_email_address_tests.rb
|
2282
2707
|
- tests/aws/requests/simpledb/attributes_tests.rb
|
@@ -2292,11 +2717,13 @@ test_files:
|
|
2292
2717
|
- tests/aws/requests/storage/bucket_tests.rb
|
2293
2718
|
- tests/aws/requests/storage/multipart_upload_tests.rb
|
2294
2719
|
- tests/aws/requests/storage/object_tests.rb
|
2720
|
+
- tests/aws/requests/storage/versioning_tests.rb
|
2295
2721
|
- tests/aws/requests/sts/get_federation_token_tests.rb
|
2296
2722
|
- tests/aws/requests/sts/session_token_tests.rb
|
2297
2723
|
- tests/aws/signed_params_tests.rb
|
2298
2724
|
- tests/bluebox/requests/compute/block_tests.rb
|
2299
2725
|
- tests/bluebox/requests/compute/helper.rb
|
2726
|
+
- tests/bluebox/requests/compute/location_tests.rb
|
2300
2727
|
- tests/bluebox/requests/compute/product_tests.rb
|
2301
2728
|
- tests/bluebox/requests/compute/template_tests.rb
|
2302
2729
|
- tests/bluebox/requests/dns/dns_tests.rb
|
@@ -2314,6 +2741,17 @@ test_files:
|
|
2314
2741
|
- tests/brightbox/requests/compute/zone_tests.rb
|
2315
2742
|
- tests/clodo/requests/compute/image_tests.rb
|
2316
2743
|
- tests/clodo/requests/compute/server_tests.rb
|
2744
|
+
- tests/cloudstack/requests/disk_offering_tests.rb
|
2745
|
+
- tests/cloudstack/requests/os_type_tests.rb
|
2746
|
+
- tests/cloudstack/requests/security_group_tests.rb
|
2747
|
+
- tests/cloudstack/requests/service_offering_tests.rb
|
2748
|
+
- tests/cloudstack/requests/snapshot_tests.rb
|
2749
|
+
- tests/cloudstack/requests/ssh_key_pair_tests.rb
|
2750
|
+
- tests/cloudstack/requests/template_tests.rb
|
2751
|
+
- tests/cloudstack/requests/virtual_machine_tests.rb
|
2752
|
+
- tests/cloudstack/requests/volume_tests.rb
|
2753
|
+
- tests/cloudstack/requests/zone_tests.rb
|
2754
|
+
- tests/cloudstack/signed_params_tests.rb
|
2317
2755
|
- tests/compute/helper.rb
|
2318
2756
|
- tests/compute/models/flavors_tests.rb
|
2319
2757
|
- tests/compute/models/server_tests.rb
|
@@ -2349,6 +2787,10 @@ test_files:
|
|
2349
2787
|
- tests/helpers/model_helper.rb
|
2350
2788
|
- tests/helpers/responds_to_helper.rb
|
2351
2789
|
- tests/helpers/succeeds_helper.rb
|
2790
|
+
- tests/joyent/requests/compute/datasets_tests.rb
|
2791
|
+
- tests/joyent/requests/compute/keys_tests.rb
|
2792
|
+
- tests/joyent/requests/compute/machines_tests.rb
|
2793
|
+
- tests/joyent/requests/compute/packages_tests.rb
|
2352
2794
|
- tests/linode/requests/compute/datacenter_tests.rb
|
2353
2795
|
- tests/linode/requests/compute/distribution_tests.rb
|
2354
2796
|
- tests/linode/requests/compute/helper.rb
|
@@ -2372,6 +2814,20 @@ test_files:
|
|
2372
2814
|
- tests/openstack/requests/compute/helper.rb
|
2373
2815
|
- tests/openstack/requests/compute/image_tests.rb
|
2374
2816
|
- tests/openstack/requests/compute/server_tests.rb
|
2817
|
+
- tests/ovirt/compute_tests.rb
|
2818
|
+
- tests/ovirt/models/compute/cluster_tests.rb
|
2819
|
+
- tests/ovirt/models/compute/clusters_tests.rb
|
2820
|
+
- tests/ovirt/models/compute/interface_tests.rb
|
2821
|
+
- tests/ovirt/models/compute/interfaces_tests.rb
|
2822
|
+
- tests/ovirt/models/compute/server_tests.rb
|
2823
|
+
- tests/ovirt/models/compute/servers_tests.rb
|
2824
|
+
- tests/ovirt/models/compute/template_tests.rb
|
2825
|
+
- tests/ovirt/models/compute/templates_tests.rb
|
2826
|
+
- tests/ovirt/requests/compute/create_vm_tests.rb
|
2827
|
+
- tests/ovirt/requests/compute/destroy_vm_tests.rb
|
2828
|
+
- tests/ovirt/requests/compute/list_datacenters_tests.rb
|
2829
|
+
- tests/ovirt/requests/compute/list_storage_domains_tests.rb
|
2830
|
+
- tests/ovirt/requests/compute/update_vm_tests.rb
|
2375
2831
|
- tests/rackspace/helper.rb
|
2376
2832
|
- tests/rackspace/load_balancer_tests.rb
|
2377
2833
|
- tests/rackspace/models/dns/zone_tests.rb
|
@@ -2421,6 +2877,11 @@ test_files:
|
|
2421
2877
|
- tests/storage/models/file_tests.rb
|
2422
2878
|
- tests/storage/models/files_tests.rb
|
2423
2879
|
- tests/storm_on_demand/requests/compute/server_tests.rb
|
2880
|
+
- tests/vcloud/data/api_+_admin_+_network_+_2
|
2881
|
+
- tests/vcloud/data/api_+_network_+_1
|
2882
|
+
- tests/vcloud/data/api_+_org_+_
|
2883
|
+
- tests/vcloud/data/api_+_org_+_1
|
2884
|
+
- tests/vcloud/data/api_+_sessions
|
2424
2885
|
- tests/vcloud/data/api_+_v1.0_+_admin_+_network_+_2
|
2425
2886
|
- tests/vcloud/data/api_+_v1.0_+_login
|
2426
2887
|
- tests/vcloud/data/api_+_v1.0_+_network_+_1
|
@@ -2430,6 +2891,9 @@ test_files:
|
|
2430
2891
|
- tests/vcloud/data/api_+_v1.0_+_vApp_+_vm-1
|
2431
2892
|
- tests/vcloud/data/api_+_v1.0_+_vApp_+_vm-2
|
2432
2893
|
- tests/vcloud/data/api_+_v1.0_+_vdc_+_1
|
2894
|
+
- tests/vcloud/data/api_+_vApp_+_vapp-1
|
2895
|
+
- tests/vcloud/data/api_+_vApp_+_vm-2
|
2896
|
+
- tests/vcloud/data/api_+_vdc_+_1
|
2433
2897
|
- tests/vcloud/models/compute/conn_helper.rb
|
2434
2898
|
- tests/vcloud/models/compute/helper.rb
|
2435
2899
|
- tests/vcloud/models/compute/network_tests.rb
|
@@ -2452,9 +2916,14 @@ test_files:
|
|
2452
2916
|
- tests/vsphere/requests/compute/find_vm_by_ref_tests.rb
|
2453
2917
|
- tests/vsphere/requests/compute/list_virtual_machines_tests.rb
|
2454
2918
|
- tests/vsphere/requests/compute/vm_clone_tests.rb
|
2919
|
+
- tests/vsphere/requests/compute/vm_create_tests.rb
|
2455
2920
|
- tests/vsphere/requests/compute/vm_destroy_tests.rb
|
2921
|
+
- tests/vsphere/requests/compute/vm_migrate_tests.rb
|
2456
2922
|
- tests/vsphere/requests/compute/vm_power_off_tests.rb
|
2457
2923
|
- tests/vsphere/requests/compute/vm_power_on_tests.rb
|
2458
2924
|
- tests/vsphere/requests/compute/vm_reboot_tests.rb
|
2925
|
+
- tests/vsphere/requests/compute/vm_reconfig_cpus_tests.rb
|
2926
|
+
- tests/vsphere/requests/compute/vm_reconfig_hardware_tests.rb
|
2927
|
+
- tests/vsphere/requests/compute/vm_reconfig_memory_tests.rb
|
2459
2928
|
- tests/watchr.rb
|
2460
2929
|
- tests/zerigo/requests/dns/dns_tests.rb
|