ey-core 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +23 -0
- data/.ruby-version +1 -0
- data/.travis.yml +22 -0
- data/CHANGELOG.md +167 -0
- data/Gemfile +28 -0
- data/Guardfile +15 -0
- data/LICENSE.txt +19 -0
- data/README.md +82 -0
- data/Rakefile +15 -0
- data/bin/ey-core +4 -0
- data/ey-core.gemspec +28 -0
- data/lib/ey-core.rb +59 -0
- data/lib/ey-core/associations.rb +155 -0
- data/lib/ey-core/cli.rb +118 -0
- data/lib/ey-core/client.rb +402 -0
- data/lib/ey-core/client/mock.rb +288 -0
- data/lib/ey-core/client/real.rb +93 -0
- data/lib/ey-core/collection.rb +131 -0
- data/lib/ey-core/collections/account_cancellations.rb +6 -0
- data/lib/ey-core/collections/account_referrals.rb +10 -0
- data/lib/ey-core/collections/accounts.rb +8 -0
- data/lib/ey-core/collections/addons.rb +16 -0
- data/lib/ey-core/collections/addresses.rb +9 -0
- data/lib/ey-core/collections/alerts.rb +9 -0
- data/lib/ey-core/collections/application_archives.rb +9 -0
- data/lib/ey-core/collections/application_deployments.rb +9 -0
- data/lib/ey-core/collections/applications.rb +9 -0
- data/lib/ey-core/collections/backup_files.rb +9 -0
- data/lib/ey-core/collections/components.rb +9 -0
- data/lib/ey-core/collections/contacts.rb +9 -0
- data/lib/ey-core/collections/costs.rb +8 -0
- data/lib/ey-core/collections/database_plan_usages.rb +7 -0
- data/lib/ey-core/collections/database_server_revisions.rb +7 -0
- data/lib/ey-core/collections/database_server_snapshots.rb +17 -0
- data/lib/ey-core/collections/database_server_usages.rb +7 -0
- data/lib/ey-core/collections/database_servers.rb +9 -0
- data/lib/ey-core/collections/database_services.rb +9 -0
- data/lib/ey-core/collections/environment_plan_usages.rb +7 -0
- data/lib/ey-core/collections/environments.rb +15 -0
- data/lib/ey-core/collections/features.rb +9 -0
- data/lib/ey-core/collections/firewall_rules.rb +9 -0
- data/lib/ey-core/collections/firewalls.rb +9 -0
- data/lib/ey-core/collections/gems.rb +6 -0
- data/lib/ey-core/collections/keypair_deployments.rb +9 -0
- data/lib/ey-core/collections/keypairs.rb +9 -0
- data/lib/ey-core/collections/legacy_alerts.rb +9 -0
- data/lib/ey-core/collections/load_balancer_nodes.rb +9 -0
- data/lib/ey-core/collections/load_balancer_services.rb +9 -0
- data/lib/ey-core/collections/load_balancers.rb +16 -0
- data/lib/ey-core/collections/logical_databases.rb +16 -0
- data/lib/ey-core/collections/logs.rb +9 -0
- data/lib/ey-core/collections/memberships.rb +9 -0
- data/lib/ey-core/collections/messages.rb +9 -0
- data/lib/ey-core/collections/plan_usages.rb +7 -0
- data/lib/ey-core/collections/provider_locations.rb +13 -0
- data/lib/ey-core/collections/providers.rb +15 -0
- data/lib/ey-core/collections/requests.rb +10 -0
- data/lib/ey-core/collections/server_events.rb +9 -0
- data/lib/ey-core/collections/server_usages.rb +7 -0
- data/lib/ey-core/collections/servers.rb +9 -0
- data/lib/ey-core/collections/services.rb +14 -0
- data/lib/ey-core/collections/ssl_certificates.rb +9 -0
- data/lib/ey-core/collections/storage_users.rb +10 -0
- data/lib/ey-core/collections/storages.rb +9 -0
- data/lib/ey-core/collections/tasks.rb +9 -0
- data/lib/ey-core/collections/tokens.rb +8 -0
- data/lib/ey-core/collections/untracked_addresses.rb +4 -0
- data/lib/ey-core/collections/untracked_servers.rb +9 -0
- data/lib/ey-core/collections/users.rb +12 -0
- data/lib/ey-core/collections/volumes.rb +9 -0
- data/lib/ey-core/logger.rb +31 -0
- data/lib/ey-core/memory_cache.rb +17 -0
- data/lib/ey-core/mock/helper.rb +104 -0
- data/lib/ey-core/mock/params.rb +31 -0
- data/lib/ey-core/mock/resources.rb +92 -0
- data/lib/ey-core/mock/searching.rb +111 -0
- data/lib/ey-core/mock/util.rb +23 -0
- data/lib/ey-core/model.rb +39 -0
- data/lib/ey-core/models/account.rb +65 -0
- data/lib/ey-core/models/account_cancellation.rb +6 -0
- data/lib/ey-core/models/account_referral.rb +8 -0
- data/lib/ey-core/models/account_trial.rb +15 -0
- data/lib/ey-core/models/addon.rb +37 -0
- data/lib/ey-core/models/address.rb +57 -0
- data/lib/ey-core/models/alert.rb +94 -0
- data/lib/ey-core/models/application.rb +32 -0
- data/lib/ey-core/models/application_archive.rb +67 -0
- data/lib/ey-core/models/application_deployment.rb +18 -0
- data/lib/ey-core/models/backup_file.rb +52 -0
- data/lib/ey-core/models/billing.rb +27 -0
- data/lib/ey-core/models/component.rb +11 -0
- data/lib/ey-core/models/contact.rb +14 -0
- data/lib/ey-core/models/cost.rb +16 -0
- data/lib/ey-core/models/database_plan_usage.rb +10 -0
- data/lib/ey-core/models/database_server.rb +56 -0
- data/lib/ey-core/models/database_server_revision.rb +10 -0
- data/lib/ey-core/models/database_server_snapshot.rb +43 -0
- data/lib/ey-core/models/database_server_usage.rb +15 -0
- data/lib/ey-core/models/database_service.rb +52 -0
- data/lib/ey-core/models/environment.rb +143 -0
- data/lib/ey-core/models/environment_plan_usage.rb +10 -0
- data/lib/ey-core/models/feature.rb +33 -0
- data/lib/ey-core/models/firewall.rb +46 -0
- data/lib/ey-core/models/firewall_rule.rb +41 -0
- data/lib/ey-core/models/gem.rb +5 -0
- data/lib/ey-core/models/keypair.rb +38 -0
- data/lib/ey-core/models/keypair_deployment.rb +26 -0
- data/lib/ey-core/models/legacy_alert.rb +12 -0
- data/lib/ey-core/models/load_balancer.rb +43 -0
- data/lib/ey-core/models/load_balancer_node.rb +17 -0
- data/lib/ey-core/models/load_balancer_service.rb +22 -0
- data/lib/ey-core/models/log.rb +33 -0
- data/lib/ey-core/models/logical_database.rb +40 -0
- data/lib/ey-core/models/membership.rb +49 -0
- data/lib/ey-core/models/message.rb +27 -0
- data/lib/ey-core/models/plan_usage.rb +14 -0
- data/lib/ey-core/models/provider.rb +59 -0
- data/lib/ey-core/models/provider_location.rb +11 -0
- data/lib/ey-core/models/request.rb +93 -0
- data/lib/ey-core/models/server.rb +76 -0
- data/lib/ey-core/models/server_event.rb +11 -0
- data/lib/ey-core/models/server_usage.rb +15 -0
- data/lib/ey-core/models/service.rb +10 -0
- data/lib/ey-core/models/ssl_certificate.rb +44 -0
- data/lib/ey-core/models/storage.rb +38 -0
- data/lib/ey-core/models/storage_user.rb +44 -0
- data/lib/ey-core/models/support_trial.rb +10 -0
- data/lib/ey-core/models/task.rb +35 -0
- data/lib/ey-core/models/token.rb +20 -0
- data/lib/ey-core/models/untracked_address.rb +24 -0
- data/lib/ey-core/models/untracked_server.rb +45 -0
- data/lib/ey-core/models/user.rb +35 -0
- data/lib/ey-core/models/volume.rb +20 -0
- data/lib/ey-core/request.rb +21 -0
- data/lib/ey-core/request_failure.rb +11 -0
- data/lib/ey-core/requests/attach_address.rb +53 -0
- data/lib/ey-core/requests/authorized_channel.rb +22 -0
- data/lib/ey-core/requests/boot_environment.rb +131 -0
- data/lib/ey-core/requests/bootstrap_logical_database.rb +80 -0
- data/lib/ey-core/requests/cancel_account.rb +33 -0
- data/lib/ey-core/requests/create_account.rb +33 -0
- data/lib/ey-core/requests/create_addon.rb +35 -0
- data/lib/ey-core/requests/create_address.rb +53 -0
- data/lib/ey-core/requests/create_alert.rb +63 -0
- data/lib/ey-core/requests/create_application.rb +72 -0
- data/lib/ey-core/requests/create_application_archive.rb +44 -0
- data/lib/ey-core/requests/create_backup_file.rb +52 -0
- data/lib/ey-core/requests/create_database_server.rb +72 -0
- data/lib/ey-core/requests/create_database_service.rb +57 -0
- data/lib/ey-core/requests/create_database_service_snapshot.rb +69 -0
- data/lib/ey-core/requests/create_environment.rb +69 -0
- data/lib/ey-core/requests/create_firewall.rb +62 -0
- data/lib/ey-core/requests/create_firewall_rule.rb +60 -0
- data/lib/ey-core/requests/create_keypair.rb +42 -0
- data/lib/ey-core/requests/create_keypair_deployment.rb +36 -0
- data/lib/ey-core/requests/create_load_balancer.rb +62 -0
- data/lib/ey-core/requests/create_log.rb +53 -0
- data/lib/ey-core/requests/create_logical_database.rb +56 -0
- data/lib/ey-core/requests/create_membership.rb +47 -0
- data/lib/ey-core/requests/create_message.rb +35 -0
- data/lib/ey-core/requests/create_password_reset.rb +38 -0
- data/lib/ey-core/requests/create_provider.rb +90 -0
- data/lib/ey-core/requests/create_ssl_certificate.rb +83 -0
- data/lib/ey-core/requests/create_storage.rb +64 -0
- data/lib/ey-core/requests/create_storage_user.rb +64 -0
- data/lib/ey-core/requests/create_task.rb +55 -0
- data/lib/ey-core/requests/create_token.rb +24 -0
- data/lib/ey-core/requests/create_untracked_address.rb +48 -0
- data/lib/ey-core/requests/create_untracked_server.rb +39 -0
- data/lib/ey-core/requests/create_user.rb +43 -0
- data/lib/ey-core/requests/deploy_environment_application.rb +43 -0
- data/lib/ey-core/requests/deprovision_environment.rb +17 -0
- data/lib/ey-core/requests/destroy_addon.rb +24 -0
- data/lib/ey-core/requests/destroy_database_server.rb +41 -0
- data/lib/ey-core/requests/destroy_database_server_snapshot.rb +42 -0
- data/lib/ey-core/requests/destroy_database_service.rb +57 -0
- data/lib/ey-core/requests/destroy_environment.rb +43 -0
- data/lib/ey-core/requests/destroy_firewall.rb +41 -0
- data/lib/ey-core/requests/destroy_firewall_rule.rb +41 -0
- data/lib/ey-core/requests/destroy_load_balancer.rb +30 -0
- data/lib/ey-core/requests/destroy_logical_database.rb +41 -0
- data/lib/ey-core/requests/destroy_provider.rb +34 -0
- data/lib/ey-core/requests/destroy_server.rb +46 -0
- data/lib/ey-core/requests/destroy_ssl_certificate.rb +28 -0
- data/lib/ey-core/requests/destroy_storage.rb +33 -0
- data/lib/ey-core/requests/destroy_storage_user.rb +38 -0
- data/lib/ey-core/requests/destroy_user.rb +29 -0
- data/lib/ey-core/requests/detach_address.rb +48 -0
- data/lib/ey-core/requests/disable_feature.rb +30 -0
- data/lib/ey-core/requests/discover_database_server.rb +66 -0
- data/lib/ey-core/requests/discover_database_server_snapshots.rb +69 -0
- data/lib/ey-core/requests/discover_provider_location.rb +57 -0
- data/lib/ey-core/requests/download_file.rb +25 -0
- data/lib/ey-core/requests/enable_feature.rb +35 -0
- data/lib/ey-core/requests/get_account.rb +29 -0
- data/lib/ey-core/requests/get_account_cancellation.rb +21 -0
- data/lib/ey-core/requests/get_account_referrals.rb +28 -0
- data/lib/ey-core/requests/get_account_trial.rb +31 -0
- data/lib/ey-core/requests/get_accounts.rb +42 -0
- data/lib/ey-core/requests/get_addon.rb +25 -0
- data/lib/ey-core/requests/get_addons.rb +24 -0
- data/lib/ey-core/requests/get_address.rb +25 -0
- data/lib/ey-core/requests/get_addresses.rb +27 -0
- data/lib/ey-core/requests/get_alert.rb +21 -0
- data/lib/ey-core/requests/get_alerting_environments.rb +37 -0
- data/lib/ey-core/requests/get_alerts.rb +44 -0
- data/lib/ey-core/requests/get_api_token.rb +19 -0
- data/lib/ey-core/requests/get_application.rb +21 -0
- data/lib/ey-core/requests/get_application_archive.rb +32 -0
- data/lib/ey-core/requests/get_application_archives.rb +29 -0
- data/lib/ey-core/requests/get_application_deployment.rb +21 -0
- data/lib/ey-core/requests/get_application_deployments.rb +28 -0
- data/lib/ey-core/requests/get_applications.rb +28 -0
- data/lib/ey-core/requests/get_backup_file.rb +21 -0
- data/lib/ey-core/requests/get_backup_files.rb +28 -0
- data/lib/ey-core/requests/get_billing.rb +24 -0
- data/lib/ey-core/requests/get_component.rb +21 -0
- data/lib/ey-core/requests/get_components.rb +29 -0
- data/lib/ey-core/requests/get_contacts.rb +34 -0
- data/lib/ey-core/requests/get_costs.rb +25 -0
- data/lib/ey-core/requests/get_current_user.rb +19 -0
- data/lib/ey-core/requests/get_database_plan_usages.rb +24 -0
- data/lib/ey-core/requests/get_database_server.rb +21 -0
- data/lib/ey-core/requests/get_database_server_revisions.rb +27 -0
- data/lib/ey-core/requests/get_database_server_snapshot.rb +20 -0
- data/lib/ey-core/requests/get_database_server_snapshots.rb +39 -0
- data/lib/ey-core/requests/get_database_server_usages.rb +24 -0
- data/lib/ey-core/requests/get_database_servers.rb +30 -0
- data/lib/ey-core/requests/get_database_servers_firewalls.rb +30 -0
- data/lib/ey-core/requests/get_database_service.rb +20 -0
- data/lib/ey-core/requests/get_database_services.rb +55 -0
- data/lib/ey-core/requests/get_environment.rb +21 -0
- data/lib/ey-core/requests/get_environment_database_services.rb +21 -0
- data/lib/ey-core/requests/get_environment_logical_databases.rb +20 -0
- data/lib/ey-core/requests/get_environment_plan_usages.rb +24 -0
- data/lib/ey-core/requests/get_environments.rb +29 -0
- data/lib/ey-core/requests/get_feature.rb +21 -0
- data/lib/ey-core/requests/get_features.rb +28 -0
- data/lib/ey-core/requests/get_firewall.rb +21 -0
- data/lib/ey-core/requests/get_firewall_rule.rb +21 -0
- data/lib/ey-core/requests/get_firewall_rules.rb +29 -0
- data/lib/ey-core/requests/get_firewalls.rb +45 -0
- data/lib/ey-core/requests/get_gem.rb +24 -0
- data/lib/ey-core/requests/get_keypair.rb +21 -0
- data/lib/ey-core/requests/get_keypair_deployment.rb +21 -0
- data/lib/ey-core/requests/get_keypair_deployments.rb +29 -0
- data/lib/ey-core/requests/get_keypairs.rb +34 -0
- data/lib/ey-core/requests/get_legacy_alert.rb +21 -0
- data/lib/ey-core/requests/get_legacy_alerts.rb +29 -0
- data/lib/ey-core/requests/get_load_balancer.rb +21 -0
- data/lib/ey-core/requests/get_load_balancer_node.rb +21 -0
- data/lib/ey-core/requests/get_load_balancer_nodes.rb +30 -0
- data/lib/ey-core/requests/get_load_balancer_service.rb +21 -0
- data/lib/ey-core/requests/get_load_balancer_services.rb +30 -0
- data/lib/ey-core/requests/get_load_balancers.rb +29 -0
- data/lib/ey-core/requests/get_log.rb +21 -0
- data/lib/ey-core/requests/get_logical_database.rb +23 -0
- data/lib/ey-core/requests/get_logical_databases.rb +36 -0
- data/lib/ey-core/requests/get_logs.rb +37 -0
- data/lib/ey-core/requests/get_membership.rb +21 -0
- data/lib/ey-core/requests/get_memberships.rb +29 -0
- data/lib/ey-core/requests/get_message.rb +28 -0
- data/lib/ey-core/requests/get_messages.rb +27 -0
- data/lib/ey-core/requests/get_metadata.rb +22 -0
- data/lib/ey-core/requests/get_operational_contact.rb +21 -0
- data/lib/ey-core/requests/get_operational_contacts.rb +20 -0
- data/lib/ey-core/requests/get_plan_usages.rb +24 -0
- data/lib/ey-core/requests/get_possible_provider_locations.rb +19 -0
- data/lib/ey-core/requests/get_provider.rb +21 -0
- data/lib/ey-core/requests/get_provider_location.rb +29 -0
- data/lib/ey-core/requests/get_provider_locations.rb +28 -0
- data/lib/ey-core/requests/get_providers.rb +28 -0
- data/lib/ey-core/requests/get_request.rb +71 -0
- data/lib/ey-core/requests/get_requests.rb +29 -0
- data/lib/ey-core/requests/get_server.rb +34 -0
- data/lib/ey-core/requests/get_server_event.rb +20 -0
- data/lib/ey-core/requests/get_server_events.rb +28 -0
- data/lib/ey-core/requests/get_server_usages.rb +24 -0
- data/lib/ey-core/requests/get_servers.rb +25 -0
- data/lib/ey-core/requests/get_ssl_certificate.rb +23 -0
- data/lib/ey-core/requests/get_ssl_certificates.rb +28 -0
- data/lib/ey-core/requests/get_storage.rb +21 -0
- data/lib/ey-core/requests/get_storage_user.rb +21 -0
- data/lib/ey-core/requests/get_storage_users.rb +28 -0
- data/lib/ey-core/requests/get_storages.rb +28 -0
- data/lib/ey-core/requests/get_support_trial.rb +51 -0
- data/lib/ey-core/requests/get_task.rb +21 -0
- data/lib/ey-core/requests/get_tasks.rb +28 -0
- data/lib/ey-core/requests/get_untracked_server.rb +18 -0
- data/lib/ey-core/requests/get_untracked_servers.rb +24 -0
- data/lib/ey-core/requests/get_user.rb +21 -0
- data/lib/ey-core/requests/get_users.rb +42 -0
- data/lib/ey-core/requests/get_volume.rb +21 -0
- data/lib/ey-core/requests/get_volumes.rb +28 -0
- data/lib/ey-core/requests/reboot_server.rb +39 -0
- data/lib/ey-core/requests/request_callback.rb +26 -0
- data/lib/ey-core/requests/reset_password.rb +31 -0
- data/lib/ey-core/requests/run_cluster_application_action.rb +28 -0
- data/lib/ey-core/requests/run_environment_application_action.rb +29 -0
- data/lib/ey-core/requests/signup.rb +56 -0
- data/lib/ey-core/requests/update_addon.rb +28 -0
- data/lib/ey-core/requests/update_address.rb +29 -0
- data/lib/ey-core/requests/update_alert.rb +32 -0
- data/lib/ey-core/requests/update_application_archive.rb +23 -0
- data/lib/ey-core/requests/update_billing.rb +26 -0
- data/lib/ey-core/requests/update_connector.rb +32 -0
- data/lib/ey-core/requests/update_membership.rb +29 -0
- data/lib/ey-core/requests/update_server.rb +29 -0
- data/lib/ey-core/requests/update_ssl_certificate.rb +25 -0
- data/lib/ey-core/requests/update_untracked_server.rb +24 -0
- data/lib/ey-core/requests/upload_file.rb +44 -0
- data/lib/ey-core/response.rb +55 -0
- data/lib/ey-core/response_cache.rb +29 -0
- data/lib/ey-core/subscribable.rb +49 -0
- data/lib/ey-core/token_authentication.rb +13 -0
- data/lib/ey-core/version.rb +5 -0
- data/spec/account_trial_spec.rb +17 -0
- data/spec/accounts_referrals_spec.rb +20 -0
- data/spec/accounts_spec.rb +113 -0
- data/spec/addons_and_vars_spec.rb +62 -0
- data/spec/addresses_spec.rb +56 -0
- data/spec/alerts_spec.rb +148 -0
- data/spec/application_archives_spec.rb +39 -0
- data/spec/applications_spec.rb +65 -0
- data/spec/billing_spec.rb +31 -0
- data/spec/client_spec.rb +16 -0
- data/spec/collection_spec.rb +43 -0
- data/spec/costs_spec.rb +22 -0
- data/spec/database_plan_usage_spec.rb +39 -0
- data/spec/database_server_snapshots_spec.rb +41 -0
- data/spec/database_server_usage_spec.rb +49 -0
- data/spec/database_servers_spec.rb +61 -0
- data/spec/database_services_spec.rb +76 -0
- data/spec/environment_plan_usage_spec.rb +38 -0
- data/spec/environments_spec.rb +106 -0
- data/spec/features_spec.rb +79 -0
- data/spec/firewalls_spec.rb +84 -0
- data/spec/gems_spec.rb +11 -0
- data/spec/keypair_deployments_spec.rb +33 -0
- data/spec/keypairs_spec.rb +51 -0
- data/spec/legacy_alerts_spec.rb +44 -0
- data/spec/load_balancers_spec.rb +31 -0
- data/spec/logical_databases_spec.rb +38 -0
- data/spec/logs_spec.rb +44 -0
- data/spec/memberships_spec.rb +70 -0
- data/spec/messages_spec.rb +27 -0
- data/spec/metadata_spec.rb +11 -0
- data/spec/plan_usage_spec.rb +65 -0
- data/spec/provider_locations_spec.rb +64 -0
- data/spec/providers_spec.rb +105 -0
- data/spec/requests/upload_file_spec.rb +25 -0
- data/spec/requests_spec.rb +23 -0
- data/spec/reset_password_spec.rb +22 -0
- data/spec/server_events_spec.rb +31 -0
- data/spec/server_usage_spec.rb +70 -0
- data/spec/servers_spec.rb +55 -0
- data/spec/services_spec.rb +9 -0
- data/spec/signups_spec.rb +45 -0
- data/spec/spec_helper.rb +13 -0
- data/spec/ssl_certificates_spec.rb +94 -0
- data/spec/storages_spec.rb +57 -0
- data/spec/support/account_helper.rb +71 -0
- data/spec/support/alert_helper.rb +14 -0
- data/spec/support/client_helper.rb +38 -0
- data/spec/support/core.rb +23 -0
- data/spec/support/coverage.rb +43 -0
- data/spec/support/resource_helper.rb +190 -0
- data/spec/support/timecop.rb +8 -0
- data/spec/support_trial_spec.rb +33 -0
- data/spec/tokens_spec.rb +19 -0
- data/spec/untracked_servers_spec.rb +59 -0
- data/spec/users_spec.rb +82 -0
- metadata +574 -0
@@ -0,0 +1,33 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe "account_trial" do
|
4
|
+
let!(:client) { create_client }
|
5
|
+
|
6
|
+
context "with an account", :mock_only do
|
7
|
+
let!(:account) { create_account(client: client) }
|
8
|
+
|
9
|
+
it "has no support trial" do
|
10
|
+
expect(account.support_trial).to be_nil
|
11
|
+
end
|
12
|
+
|
13
|
+
it "returns support_trial if it has one" do
|
14
|
+
Ey::Core::Client::Mock.support_trial_elibigle(client, account.id)
|
15
|
+
account.reload
|
16
|
+
trial = account.support_trial
|
17
|
+
expect(trial).to be
|
18
|
+
expect(trial.started_at).to be_nil
|
19
|
+
expect(trial.expires_at).to be_nil
|
20
|
+
expect(trial.account).to eq(account)
|
21
|
+
end
|
22
|
+
|
23
|
+
it "returns support_trial if it has one" do
|
24
|
+
Ey::Core::Client::Mock.support_trial_active(client, account.id)
|
25
|
+
account.reload
|
26
|
+
trial = account.support_trial
|
27
|
+
expect(trial).to be
|
28
|
+
expect(trial.started_at).to be
|
29
|
+
expect(trial.expires_at).to be
|
30
|
+
expect(trial.account).to eq(account)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
data/spec/tokens_spec.rb
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'tokens' do
|
4
|
+
context "with a hmac client" do
|
5
|
+
let!(:client) { create_client }
|
6
|
+
|
7
|
+
context "with a user" do
|
8
|
+
let!(:user) { client.users.create!(name: Faker::Name.name, email: Faker::Internet.email) }
|
9
|
+
|
10
|
+
it "should generate a token" do
|
11
|
+
token = client.tokens.create!(on_behalf_of: user)
|
12
|
+
expect(token.auth_id).not_to be_nil
|
13
|
+
end
|
14
|
+
|
15
|
+
# other endpoint: upgrade, which takes a limited token and upgrades to full_access.
|
16
|
+
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe Ey::Core::Client do
|
4
|
+
let!(:client) { create_client }
|
5
|
+
let!(:account) { create_account(client: client) }
|
6
|
+
let!(:provider) { create_provider(account: account) }
|
7
|
+
|
8
|
+
# @note private
|
9
|
+
it "creates an untracked server" do
|
10
|
+
provisioner_id = SecureRandom.uuid
|
11
|
+
location = "us-west-2b"
|
12
|
+
provisioned_id = "i-#{SecureRandom.hex(4)}"
|
13
|
+
state = "found"
|
14
|
+
|
15
|
+
untracked_server = provider.untracked_servers.create(
|
16
|
+
:provisioner_id => provisioner_id,
|
17
|
+
:location => location,
|
18
|
+
:provisioned_id => provisioned_id,
|
19
|
+
:state => state,
|
20
|
+
)
|
21
|
+
|
22
|
+
expect(untracked_server.provisioner_id).to eq(provisioner_id)
|
23
|
+
expect(untracked_server.provisioned_id).to eq(provisioned_id)
|
24
|
+
expect(untracked_server.location).to eq(location)
|
25
|
+
expect(untracked_server.provider).to eq(provider)
|
26
|
+
expect(untracked_server.state).to eq(state)
|
27
|
+
|
28
|
+
untracked_server.reload
|
29
|
+
|
30
|
+
expect(untracked_server.provisioner_id).to eq(provisioner_id)
|
31
|
+
expect(untracked_server.provisioned_id).to eq(provisioned_id)
|
32
|
+
expect(untracked_server.location).to eq(location)
|
33
|
+
expect(untracked_server.provider).to eq(provider)
|
34
|
+
expect(untracked_server.state).to eq(state)
|
35
|
+
|
36
|
+
untracked_server = client.untracked_servers.get!(untracked_server.identity)
|
37
|
+
|
38
|
+
expect(untracked_server.provisioner_id).to eq(provisioner_id)
|
39
|
+
expect(untracked_server.provisioned_id).to eq(provisioned_id)
|
40
|
+
expect(untracked_server.location).to eq(location)
|
41
|
+
expect(untracked_server.provider).to eq(provider)
|
42
|
+
expect(untracked_server.state).to eq(state)
|
43
|
+
end
|
44
|
+
|
45
|
+
context "with an untracked server" do
|
46
|
+
let!(:untracked_server) { create_untracked_server(provider: provider) }
|
47
|
+
|
48
|
+
it "should update server" do
|
49
|
+
expect {
|
50
|
+
untracked_server.update(state: "killed")
|
51
|
+
}.to change { untracked_server.reload.state }.to("killed")
|
52
|
+
end
|
53
|
+
|
54
|
+
it "lists untracked servers" do
|
55
|
+
expect(client.untracked_servers.all).to contain_exactly(untracked_server)
|
56
|
+
expect(provider.untracked_servers.all).to contain_exactly(untracked_server)
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
data/spec/users_spec.rb
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'users' do
|
4
|
+
context "without authentication" do
|
5
|
+
let(:client) { create_unauthenticated_client }
|
6
|
+
|
7
|
+
it "gets an api token", :mock_only do
|
8
|
+
username = ENV["EMAIL"] || "email"
|
9
|
+
password = ENV["PASSWORD"] || "password"
|
10
|
+
expect(client.get_api_token(username, password).body["api_token"]).not_to be_nil
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
context "when authenticated" do
|
15
|
+
let!(:client) { create_client }
|
16
|
+
|
17
|
+
it "should create a user" do
|
18
|
+
name = Faker::Name.name
|
19
|
+
email = Faker::Internet.email
|
20
|
+
|
21
|
+
user = client.users.create!(name: name, email: email)
|
22
|
+
user.name = name
|
23
|
+
user.email = email
|
24
|
+
expect(user.identity).not_to be_nil
|
25
|
+
expect(user.staff).to be_falsy
|
26
|
+
expect(user.password).to be_nil
|
27
|
+
|
28
|
+
expect(user.accounts).to be_empty
|
29
|
+
|
30
|
+
refetched = client.users.get(user.id)
|
31
|
+
expect(refetched.name).to eq name
|
32
|
+
expect(refetched.staff).to be_falsey
|
33
|
+
|
34
|
+
if Ey::Core::Client.mocking?
|
35
|
+
#Can't actually set users as staff in real core API, but apps that use core API may need to test behavior based on a user being staff
|
36
|
+
client.find(:users, user.id).merge!(:staff => true)
|
37
|
+
refetched_again = client.users.get(user.id)
|
38
|
+
expect(refetched_again.staff).to be true
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
context 'when email address is not available' do
|
43
|
+
it 'should raise an error' do
|
44
|
+
name = Faker::Name.name
|
45
|
+
email = Faker::Internet.email
|
46
|
+
|
47
|
+
client.users.create!(name: name, email: email)
|
48
|
+
|
49
|
+
expect {
|
50
|
+
client.users.create!(name: name, email: email)
|
51
|
+
}.to raise_exception(Ey::Core::Response::Unprocessable, /Email has already been taken/)
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
it "should get current user" do
|
56
|
+
expect(client.users.current).to be_a(Ey::Core::Client::User)
|
57
|
+
|
58
|
+
if Ey::Core::Client.mocking?
|
59
|
+
expect(client.users.current.id).to eq(client.current_user["id"])
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
it "should destroy a user" do
|
64
|
+
name = Faker::Name.name
|
65
|
+
email = Faker::Internet.email
|
66
|
+
|
67
|
+
user = create_client.users.create!(name: name, email: email)
|
68
|
+
user = client.users.get(user.identity)
|
69
|
+
expect(user.deleted_at).to be_nil
|
70
|
+
|
71
|
+
expect {
|
72
|
+
user.destroy
|
73
|
+
}.to change {client.users.all.size}.by(-1)
|
74
|
+
|
75
|
+
expect(user.reload.deleted_at).not_to be_nil
|
76
|
+
|
77
|
+
expect(client.users.all).not_to include(user)
|
78
|
+
expect(client.users.all(deleted: true)).to include(user)
|
79
|
+
expect(client.users.all(with_deleted: true)).to include(user)
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
metadata
ADDED
@@ -0,0 +1,574 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ey-core
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 3.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Josh Lane
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-11-24 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: addressable
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2.2'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '2.2'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: cistern
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0.12'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0.12'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: ey-hmac
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2.0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: sshkey
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.6'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '1.6'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: faraday
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.9'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0.9'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: faraday_middleware
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0.9'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0.9'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: mime-types
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '2.99'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '2.99'
|
111
|
+
description: Engine Yard Core API Ruby Client
|
112
|
+
email:
|
113
|
+
- jlane@engineyard.com
|
114
|
+
- engineering@engineyard.com
|
115
|
+
executables:
|
116
|
+
- ey-core
|
117
|
+
extensions: []
|
118
|
+
extra_rdoc_files: []
|
119
|
+
files:
|
120
|
+
- ".gitignore"
|
121
|
+
- ".ruby-version"
|
122
|
+
- ".travis.yml"
|
123
|
+
- CHANGELOG.md
|
124
|
+
- Gemfile
|
125
|
+
- Guardfile
|
126
|
+
- LICENSE.txt
|
127
|
+
- README.md
|
128
|
+
- Rakefile
|
129
|
+
- bin/ey-core
|
130
|
+
- ey-core.gemspec
|
131
|
+
- lib/ey-core.rb
|
132
|
+
- lib/ey-core/associations.rb
|
133
|
+
- lib/ey-core/cli.rb
|
134
|
+
- lib/ey-core/client.rb
|
135
|
+
- lib/ey-core/client/mock.rb
|
136
|
+
- lib/ey-core/client/real.rb
|
137
|
+
- lib/ey-core/collection.rb
|
138
|
+
- lib/ey-core/collections/account_cancellations.rb
|
139
|
+
- lib/ey-core/collections/account_referrals.rb
|
140
|
+
- lib/ey-core/collections/accounts.rb
|
141
|
+
- lib/ey-core/collections/addons.rb
|
142
|
+
- lib/ey-core/collections/addresses.rb
|
143
|
+
- lib/ey-core/collections/alerts.rb
|
144
|
+
- lib/ey-core/collections/application_archives.rb
|
145
|
+
- lib/ey-core/collections/application_deployments.rb
|
146
|
+
- lib/ey-core/collections/applications.rb
|
147
|
+
- lib/ey-core/collections/backup_files.rb
|
148
|
+
- lib/ey-core/collections/components.rb
|
149
|
+
- lib/ey-core/collections/contacts.rb
|
150
|
+
- lib/ey-core/collections/costs.rb
|
151
|
+
- lib/ey-core/collections/database_plan_usages.rb
|
152
|
+
- lib/ey-core/collections/database_server_revisions.rb
|
153
|
+
- lib/ey-core/collections/database_server_snapshots.rb
|
154
|
+
- lib/ey-core/collections/database_server_usages.rb
|
155
|
+
- lib/ey-core/collections/database_servers.rb
|
156
|
+
- lib/ey-core/collections/database_services.rb
|
157
|
+
- lib/ey-core/collections/environment_plan_usages.rb
|
158
|
+
- lib/ey-core/collections/environments.rb
|
159
|
+
- lib/ey-core/collections/features.rb
|
160
|
+
- lib/ey-core/collections/firewall_rules.rb
|
161
|
+
- lib/ey-core/collections/firewalls.rb
|
162
|
+
- lib/ey-core/collections/gems.rb
|
163
|
+
- lib/ey-core/collections/keypair_deployments.rb
|
164
|
+
- lib/ey-core/collections/keypairs.rb
|
165
|
+
- lib/ey-core/collections/legacy_alerts.rb
|
166
|
+
- lib/ey-core/collections/load_balancer_nodes.rb
|
167
|
+
- lib/ey-core/collections/load_balancer_services.rb
|
168
|
+
- lib/ey-core/collections/load_balancers.rb
|
169
|
+
- lib/ey-core/collections/logical_databases.rb
|
170
|
+
- lib/ey-core/collections/logs.rb
|
171
|
+
- lib/ey-core/collections/memberships.rb
|
172
|
+
- lib/ey-core/collections/messages.rb
|
173
|
+
- lib/ey-core/collections/plan_usages.rb
|
174
|
+
- lib/ey-core/collections/provider_locations.rb
|
175
|
+
- lib/ey-core/collections/providers.rb
|
176
|
+
- lib/ey-core/collections/requests.rb
|
177
|
+
- lib/ey-core/collections/server_events.rb
|
178
|
+
- lib/ey-core/collections/server_usages.rb
|
179
|
+
- lib/ey-core/collections/servers.rb
|
180
|
+
- lib/ey-core/collections/services.rb
|
181
|
+
- lib/ey-core/collections/ssl_certificates.rb
|
182
|
+
- lib/ey-core/collections/storage_users.rb
|
183
|
+
- lib/ey-core/collections/storages.rb
|
184
|
+
- lib/ey-core/collections/tasks.rb
|
185
|
+
- lib/ey-core/collections/tokens.rb
|
186
|
+
- lib/ey-core/collections/untracked_addresses.rb
|
187
|
+
- lib/ey-core/collections/untracked_servers.rb
|
188
|
+
- lib/ey-core/collections/users.rb
|
189
|
+
- lib/ey-core/collections/volumes.rb
|
190
|
+
- lib/ey-core/logger.rb
|
191
|
+
- lib/ey-core/memory_cache.rb
|
192
|
+
- lib/ey-core/mock/helper.rb
|
193
|
+
- lib/ey-core/mock/params.rb
|
194
|
+
- lib/ey-core/mock/resources.rb
|
195
|
+
- lib/ey-core/mock/searching.rb
|
196
|
+
- lib/ey-core/mock/util.rb
|
197
|
+
- lib/ey-core/model.rb
|
198
|
+
- lib/ey-core/models/account.rb
|
199
|
+
- lib/ey-core/models/account_cancellation.rb
|
200
|
+
- lib/ey-core/models/account_referral.rb
|
201
|
+
- lib/ey-core/models/account_trial.rb
|
202
|
+
- lib/ey-core/models/addon.rb
|
203
|
+
- lib/ey-core/models/address.rb
|
204
|
+
- lib/ey-core/models/alert.rb
|
205
|
+
- lib/ey-core/models/application.rb
|
206
|
+
- lib/ey-core/models/application_archive.rb
|
207
|
+
- lib/ey-core/models/application_deployment.rb
|
208
|
+
- lib/ey-core/models/backup_file.rb
|
209
|
+
- lib/ey-core/models/billing.rb
|
210
|
+
- lib/ey-core/models/component.rb
|
211
|
+
- lib/ey-core/models/contact.rb
|
212
|
+
- lib/ey-core/models/cost.rb
|
213
|
+
- lib/ey-core/models/database_plan_usage.rb
|
214
|
+
- lib/ey-core/models/database_server.rb
|
215
|
+
- lib/ey-core/models/database_server_revision.rb
|
216
|
+
- lib/ey-core/models/database_server_snapshot.rb
|
217
|
+
- lib/ey-core/models/database_server_usage.rb
|
218
|
+
- lib/ey-core/models/database_service.rb
|
219
|
+
- lib/ey-core/models/environment.rb
|
220
|
+
- lib/ey-core/models/environment_plan_usage.rb
|
221
|
+
- lib/ey-core/models/feature.rb
|
222
|
+
- lib/ey-core/models/firewall.rb
|
223
|
+
- lib/ey-core/models/firewall_rule.rb
|
224
|
+
- lib/ey-core/models/gem.rb
|
225
|
+
- lib/ey-core/models/keypair.rb
|
226
|
+
- lib/ey-core/models/keypair_deployment.rb
|
227
|
+
- lib/ey-core/models/legacy_alert.rb
|
228
|
+
- lib/ey-core/models/load_balancer.rb
|
229
|
+
- lib/ey-core/models/load_balancer_node.rb
|
230
|
+
- lib/ey-core/models/load_balancer_service.rb
|
231
|
+
- lib/ey-core/models/log.rb
|
232
|
+
- lib/ey-core/models/logical_database.rb
|
233
|
+
- lib/ey-core/models/membership.rb
|
234
|
+
- lib/ey-core/models/message.rb
|
235
|
+
- lib/ey-core/models/plan_usage.rb
|
236
|
+
- lib/ey-core/models/provider.rb
|
237
|
+
- lib/ey-core/models/provider_location.rb
|
238
|
+
- lib/ey-core/models/request.rb
|
239
|
+
- lib/ey-core/models/server.rb
|
240
|
+
- lib/ey-core/models/server_event.rb
|
241
|
+
- lib/ey-core/models/server_usage.rb
|
242
|
+
- lib/ey-core/models/service.rb
|
243
|
+
- lib/ey-core/models/ssl_certificate.rb
|
244
|
+
- lib/ey-core/models/storage.rb
|
245
|
+
- lib/ey-core/models/storage_user.rb
|
246
|
+
- lib/ey-core/models/support_trial.rb
|
247
|
+
- lib/ey-core/models/task.rb
|
248
|
+
- lib/ey-core/models/token.rb
|
249
|
+
- lib/ey-core/models/untracked_address.rb
|
250
|
+
- lib/ey-core/models/untracked_server.rb
|
251
|
+
- lib/ey-core/models/user.rb
|
252
|
+
- lib/ey-core/models/volume.rb
|
253
|
+
- lib/ey-core/request.rb
|
254
|
+
- lib/ey-core/request_failure.rb
|
255
|
+
- lib/ey-core/requests/attach_address.rb
|
256
|
+
- lib/ey-core/requests/authorized_channel.rb
|
257
|
+
- lib/ey-core/requests/boot_environment.rb
|
258
|
+
- lib/ey-core/requests/bootstrap_logical_database.rb
|
259
|
+
- lib/ey-core/requests/cancel_account.rb
|
260
|
+
- lib/ey-core/requests/create_account.rb
|
261
|
+
- lib/ey-core/requests/create_addon.rb
|
262
|
+
- lib/ey-core/requests/create_address.rb
|
263
|
+
- lib/ey-core/requests/create_alert.rb
|
264
|
+
- lib/ey-core/requests/create_application.rb
|
265
|
+
- lib/ey-core/requests/create_application_archive.rb
|
266
|
+
- lib/ey-core/requests/create_backup_file.rb
|
267
|
+
- lib/ey-core/requests/create_database_server.rb
|
268
|
+
- lib/ey-core/requests/create_database_service.rb
|
269
|
+
- lib/ey-core/requests/create_database_service_snapshot.rb
|
270
|
+
- lib/ey-core/requests/create_environment.rb
|
271
|
+
- lib/ey-core/requests/create_firewall.rb
|
272
|
+
- lib/ey-core/requests/create_firewall_rule.rb
|
273
|
+
- lib/ey-core/requests/create_keypair.rb
|
274
|
+
- lib/ey-core/requests/create_keypair_deployment.rb
|
275
|
+
- lib/ey-core/requests/create_load_balancer.rb
|
276
|
+
- lib/ey-core/requests/create_log.rb
|
277
|
+
- lib/ey-core/requests/create_logical_database.rb
|
278
|
+
- lib/ey-core/requests/create_membership.rb
|
279
|
+
- lib/ey-core/requests/create_message.rb
|
280
|
+
- lib/ey-core/requests/create_password_reset.rb
|
281
|
+
- lib/ey-core/requests/create_provider.rb
|
282
|
+
- lib/ey-core/requests/create_ssl_certificate.rb
|
283
|
+
- lib/ey-core/requests/create_storage.rb
|
284
|
+
- lib/ey-core/requests/create_storage_user.rb
|
285
|
+
- lib/ey-core/requests/create_task.rb
|
286
|
+
- lib/ey-core/requests/create_token.rb
|
287
|
+
- lib/ey-core/requests/create_untracked_address.rb
|
288
|
+
- lib/ey-core/requests/create_untracked_server.rb
|
289
|
+
- lib/ey-core/requests/create_user.rb
|
290
|
+
- lib/ey-core/requests/deploy_environment_application.rb
|
291
|
+
- lib/ey-core/requests/deprovision_environment.rb
|
292
|
+
- lib/ey-core/requests/destroy_addon.rb
|
293
|
+
- lib/ey-core/requests/destroy_database_server.rb
|
294
|
+
- lib/ey-core/requests/destroy_database_server_snapshot.rb
|
295
|
+
- lib/ey-core/requests/destroy_database_service.rb
|
296
|
+
- lib/ey-core/requests/destroy_environment.rb
|
297
|
+
- lib/ey-core/requests/destroy_firewall.rb
|
298
|
+
- lib/ey-core/requests/destroy_firewall_rule.rb
|
299
|
+
- lib/ey-core/requests/destroy_load_balancer.rb
|
300
|
+
- lib/ey-core/requests/destroy_logical_database.rb
|
301
|
+
- lib/ey-core/requests/destroy_provider.rb
|
302
|
+
- lib/ey-core/requests/destroy_server.rb
|
303
|
+
- lib/ey-core/requests/destroy_ssl_certificate.rb
|
304
|
+
- lib/ey-core/requests/destroy_storage.rb
|
305
|
+
- lib/ey-core/requests/destroy_storage_user.rb
|
306
|
+
- lib/ey-core/requests/destroy_user.rb
|
307
|
+
- lib/ey-core/requests/detach_address.rb
|
308
|
+
- lib/ey-core/requests/disable_feature.rb
|
309
|
+
- lib/ey-core/requests/discover_database_server.rb
|
310
|
+
- lib/ey-core/requests/discover_database_server_snapshots.rb
|
311
|
+
- lib/ey-core/requests/discover_provider_location.rb
|
312
|
+
- lib/ey-core/requests/download_file.rb
|
313
|
+
- lib/ey-core/requests/enable_feature.rb
|
314
|
+
- lib/ey-core/requests/get_account.rb
|
315
|
+
- lib/ey-core/requests/get_account_cancellation.rb
|
316
|
+
- lib/ey-core/requests/get_account_referrals.rb
|
317
|
+
- lib/ey-core/requests/get_account_trial.rb
|
318
|
+
- lib/ey-core/requests/get_accounts.rb
|
319
|
+
- lib/ey-core/requests/get_addon.rb
|
320
|
+
- lib/ey-core/requests/get_addons.rb
|
321
|
+
- lib/ey-core/requests/get_address.rb
|
322
|
+
- lib/ey-core/requests/get_addresses.rb
|
323
|
+
- lib/ey-core/requests/get_alert.rb
|
324
|
+
- lib/ey-core/requests/get_alerting_environments.rb
|
325
|
+
- lib/ey-core/requests/get_alerts.rb
|
326
|
+
- lib/ey-core/requests/get_api_token.rb
|
327
|
+
- lib/ey-core/requests/get_application.rb
|
328
|
+
- lib/ey-core/requests/get_application_archive.rb
|
329
|
+
- lib/ey-core/requests/get_application_archives.rb
|
330
|
+
- lib/ey-core/requests/get_application_deployment.rb
|
331
|
+
- lib/ey-core/requests/get_application_deployments.rb
|
332
|
+
- lib/ey-core/requests/get_applications.rb
|
333
|
+
- lib/ey-core/requests/get_backup_file.rb
|
334
|
+
- lib/ey-core/requests/get_backup_files.rb
|
335
|
+
- lib/ey-core/requests/get_billing.rb
|
336
|
+
- lib/ey-core/requests/get_component.rb
|
337
|
+
- lib/ey-core/requests/get_components.rb
|
338
|
+
- lib/ey-core/requests/get_contacts.rb
|
339
|
+
- lib/ey-core/requests/get_costs.rb
|
340
|
+
- lib/ey-core/requests/get_current_user.rb
|
341
|
+
- lib/ey-core/requests/get_database_plan_usages.rb
|
342
|
+
- lib/ey-core/requests/get_database_server.rb
|
343
|
+
- lib/ey-core/requests/get_database_server_revisions.rb
|
344
|
+
- lib/ey-core/requests/get_database_server_snapshot.rb
|
345
|
+
- lib/ey-core/requests/get_database_server_snapshots.rb
|
346
|
+
- lib/ey-core/requests/get_database_server_usages.rb
|
347
|
+
- lib/ey-core/requests/get_database_servers.rb
|
348
|
+
- lib/ey-core/requests/get_database_servers_firewalls.rb
|
349
|
+
- lib/ey-core/requests/get_database_service.rb
|
350
|
+
- lib/ey-core/requests/get_database_services.rb
|
351
|
+
- lib/ey-core/requests/get_environment.rb
|
352
|
+
- lib/ey-core/requests/get_environment_database_services.rb
|
353
|
+
- lib/ey-core/requests/get_environment_logical_databases.rb
|
354
|
+
- lib/ey-core/requests/get_environment_plan_usages.rb
|
355
|
+
- lib/ey-core/requests/get_environments.rb
|
356
|
+
- lib/ey-core/requests/get_feature.rb
|
357
|
+
- lib/ey-core/requests/get_features.rb
|
358
|
+
- lib/ey-core/requests/get_firewall.rb
|
359
|
+
- lib/ey-core/requests/get_firewall_rule.rb
|
360
|
+
- lib/ey-core/requests/get_firewall_rules.rb
|
361
|
+
- lib/ey-core/requests/get_firewalls.rb
|
362
|
+
- lib/ey-core/requests/get_gem.rb
|
363
|
+
- lib/ey-core/requests/get_keypair.rb
|
364
|
+
- lib/ey-core/requests/get_keypair_deployment.rb
|
365
|
+
- lib/ey-core/requests/get_keypair_deployments.rb
|
366
|
+
- lib/ey-core/requests/get_keypairs.rb
|
367
|
+
- lib/ey-core/requests/get_legacy_alert.rb
|
368
|
+
- lib/ey-core/requests/get_legacy_alerts.rb
|
369
|
+
- lib/ey-core/requests/get_load_balancer.rb
|
370
|
+
- lib/ey-core/requests/get_load_balancer_node.rb
|
371
|
+
- lib/ey-core/requests/get_load_balancer_nodes.rb
|
372
|
+
- lib/ey-core/requests/get_load_balancer_service.rb
|
373
|
+
- lib/ey-core/requests/get_load_balancer_services.rb
|
374
|
+
- lib/ey-core/requests/get_load_balancers.rb
|
375
|
+
- lib/ey-core/requests/get_log.rb
|
376
|
+
- lib/ey-core/requests/get_logical_database.rb
|
377
|
+
- lib/ey-core/requests/get_logical_databases.rb
|
378
|
+
- lib/ey-core/requests/get_logs.rb
|
379
|
+
- lib/ey-core/requests/get_membership.rb
|
380
|
+
- lib/ey-core/requests/get_memberships.rb
|
381
|
+
- lib/ey-core/requests/get_message.rb
|
382
|
+
- lib/ey-core/requests/get_messages.rb
|
383
|
+
- lib/ey-core/requests/get_metadata.rb
|
384
|
+
- lib/ey-core/requests/get_operational_contact.rb
|
385
|
+
- lib/ey-core/requests/get_operational_contacts.rb
|
386
|
+
- lib/ey-core/requests/get_plan_usages.rb
|
387
|
+
- lib/ey-core/requests/get_possible_provider_locations.rb
|
388
|
+
- lib/ey-core/requests/get_provider.rb
|
389
|
+
- lib/ey-core/requests/get_provider_location.rb
|
390
|
+
- lib/ey-core/requests/get_provider_locations.rb
|
391
|
+
- lib/ey-core/requests/get_providers.rb
|
392
|
+
- lib/ey-core/requests/get_request.rb
|
393
|
+
- lib/ey-core/requests/get_requests.rb
|
394
|
+
- lib/ey-core/requests/get_server.rb
|
395
|
+
- lib/ey-core/requests/get_server_event.rb
|
396
|
+
- lib/ey-core/requests/get_server_events.rb
|
397
|
+
- lib/ey-core/requests/get_server_usages.rb
|
398
|
+
- lib/ey-core/requests/get_servers.rb
|
399
|
+
- lib/ey-core/requests/get_ssl_certificate.rb
|
400
|
+
- lib/ey-core/requests/get_ssl_certificates.rb
|
401
|
+
- lib/ey-core/requests/get_storage.rb
|
402
|
+
- lib/ey-core/requests/get_storage_user.rb
|
403
|
+
- lib/ey-core/requests/get_storage_users.rb
|
404
|
+
- lib/ey-core/requests/get_storages.rb
|
405
|
+
- lib/ey-core/requests/get_support_trial.rb
|
406
|
+
- lib/ey-core/requests/get_task.rb
|
407
|
+
- lib/ey-core/requests/get_tasks.rb
|
408
|
+
- lib/ey-core/requests/get_untracked_server.rb
|
409
|
+
- lib/ey-core/requests/get_untracked_servers.rb
|
410
|
+
- lib/ey-core/requests/get_user.rb
|
411
|
+
- lib/ey-core/requests/get_users.rb
|
412
|
+
- lib/ey-core/requests/get_volume.rb
|
413
|
+
- lib/ey-core/requests/get_volumes.rb
|
414
|
+
- lib/ey-core/requests/reboot_server.rb
|
415
|
+
- lib/ey-core/requests/request_callback.rb
|
416
|
+
- lib/ey-core/requests/reset_password.rb
|
417
|
+
- lib/ey-core/requests/run_cluster_application_action.rb
|
418
|
+
- lib/ey-core/requests/run_environment_application_action.rb
|
419
|
+
- lib/ey-core/requests/signup.rb
|
420
|
+
- lib/ey-core/requests/update_addon.rb
|
421
|
+
- lib/ey-core/requests/update_address.rb
|
422
|
+
- lib/ey-core/requests/update_alert.rb
|
423
|
+
- lib/ey-core/requests/update_application_archive.rb
|
424
|
+
- lib/ey-core/requests/update_billing.rb
|
425
|
+
- lib/ey-core/requests/update_connector.rb
|
426
|
+
- lib/ey-core/requests/update_membership.rb
|
427
|
+
- lib/ey-core/requests/update_server.rb
|
428
|
+
- lib/ey-core/requests/update_ssl_certificate.rb
|
429
|
+
- lib/ey-core/requests/update_untracked_server.rb
|
430
|
+
- lib/ey-core/requests/upload_file.rb
|
431
|
+
- lib/ey-core/response.rb
|
432
|
+
- lib/ey-core/response_cache.rb
|
433
|
+
- lib/ey-core/subscribable.rb
|
434
|
+
- lib/ey-core/token_authentication.rb
|
435
|
+
- lib/ey-core/version.rb
|
436
|
+
- spec/account_trial_spec.rb
|
437
|
+
- spec/accounts_referrals_spec.rb
|
438
|
+
- spec/accounts_spec.rb
|
439
|
+
- spec/addons_and_vars_spec.rb
|
440
|
+
- spec/addresses_spec.rb
|
441
|
+
- spec/alerts_spec.rb
|
442
|
+
- spec/application_archives_spec.rb
|
443
|
+
- spec/applications_spec.rb
|
444
|
+
- spec/billing_spec.rb
|
445
|
+
- spec/client_spec.rb
|
446
|
+
- spec/collection_spec.rb
|
447
|
+
- spec/costs_spec.rb
|
448
|
+
- spec/database_plan_usage_spec.rb
|
449
|
+
- spec/database_server_snapshots_spec.rb
|
450
|
+
- spec/database_server_usage_spec.rb
|
451
|
+
- spec/database_servers_spec.rb
|
452
|
+
- spec/database_services_spec.rb
|
453
|
+
- spec/environment_plan_usage_spec.rb
|
454
|
+
- spec/environments_spec.rb
|
455
|
+
- spec/features_spec.rb
|
456
|
+
- spec/firewalls_spec.rb
|
457
|
+
- spec/gems_spec.rb
|
458
|
+
- spec/keypair_deployments_spec.rb
|
459
|
+
- spec/keypairs_spec.rb
|
460
|
+
- spec/legacy_alerts_spec.rb
|
461
|
+
- spec/load_balancers_spec.rb
|
462
|
+
- spec/logical_databases_spec.rb
|
463
|
+
- spec/logs_spec.rb
|
464
|
+
- spec/memberships_spec.rb
|
465
|
+
- spec/messages_spec.rb
|
466
|
+
- spec/metadata_spec.rb
|
467
|
+
- spec/plan_usage_spec.rb
|
468
|
+
- spec/provider_locations_spec.rb
|
469
|
+
- spec/providers_spec.rb
|
470
|
+
- spec/requests/upload_file_spec.rb
|
471
|
+
- spec/requests_spec.rb
|
472
|
+
- spec/reset_password_spec.rb
|
473
|
+
- spec/server_events_spec.rb
|
474
|
+
- spec/server_usage_spec.rb
|
475
|
+
- spec/servers_spec.rb
|
476
|
+
- spec/services_spec.rb
|
477
|
+
- spec/signups_spec.rb
|
478
|
+
- spec/spec_helper.rb
|
479
|
+
- spec/ssl_certificates_spec.rb
|
480
|
+
- spec/storages_spec.rb
|
481
|
+
- spec/support/account_helper.rb
|
482
|
+
- spec/support/alert_helper.rb
|
483
|
+
- spec/support/client_helper.rb
|
484
|
+
- spec/support/core.rb
|
485
|
+
- spec/support/coverage.rb
|
486
|
+
- spec/support/resource_helper.rb
|
487
|
+
- spec/support/timecop.rb
|
488
|
+
- spec/support_trial_spec.rb
|
489
|
+
- spec/tokens_spec.rb
|
490
|
+
- spec/untracked_servers_spec.rb
|
491
|
+
- spec/users_spec.rb
|
492
|
+
homepage: ''
|
493
|
+
licenses:
|
494
|
+
- MIT
|
495
|
+
metadata: {}
|
496
|
+
post_install_message:
|
497
|
+
rdoc_options: []
|
498
|
+
require_paths:
|
499
|
+
- lib
|
500
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
501
|
+
requirements:
|
502
|
+
- - ">="
|
503
|
+
- !ruby/object:Gem::Version
|
504
|
+
version: '0'
|
505
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
506
|
+
requirements:
|
507
|
+
- - ">="
|
508
|
+
- !ruby/object:Gem::Version
|
509
|
+
version: '0'
|
510
|
+
requirements: []
|
511
|
+
rubyforge_project:
|
512
|
+
rubygems_version: 2.4.5
|
513
|
+
signing_key:
|
514
|
+
specification_version: 4
|
515
|
+
summary: Client library providing real and mock functionality for accessing Engine
|
516
|
+
Yard's Core API
|
517
|
+
test_files:
|
518
|
+
- spec/account_trial_spec.rb
|
519
|
+
- spec/accounts_referrals_spec.rb
|
520
|
+
- spec/accounts_spec.rb
|
521
|
+
- spec/addons_and_vars_spec.rb
|
522
|
+
- spec/addresses_spec.rb
|
523
|
+
- spec/alerts_spec.rb
|
524
|
+
- spec/application_archives_spec.rb
|
525
|
+
- spec/applications_spec.rb
|
526
|
+
- spec/billing_spec.rb
|
527
|
+
- spec/client_spec.rb
|
528
|
+
- spec/collection_spec.rb
|
529
|
+
- spec/costs_spec.rb
|
530
|
+
- spec/database_plan_usage_spec.rb
|
531
|
+
- spec/database_server_snapshots_spec.rb
|
532
|
+
- spec/database_server_usage_spec.rb
|
533
|
+
- spec/database_servers_spec.rb
|
534
|
+
- spec/database_services_spec.rb
|
535
|
+
- spec/environment_plan_usage_spec.rb
|
536
|
+
- spec/environments_spec.rb
|
537
|
+
- spec/features_spec.rb
|
538
|
+
- spec/firewalls_spec.rb
|
539
|
+
- spec/gems_spec.rb
|
540
|
+
- spec/keypair_deployments_spec.rb
|
541
|
+
- spec/keypairs_spec.rb
|
542
|
+
- spec/legacy_alerts_spec.rb
|
543
|
+
- spec/load_balancers_spec.rb
|
544
|
+
- spec/logical_databases_spec.rb
|
545
|
+
- spec/logs_spec.rb
|
546
|
+
- spec/memberships_spec.rb
|
547
|
+
- spec/messages_spec.rb
|
548
|
+
- spec/metadata_spec.rb
|
549
|
+
- spec/plan_usage_spec.rb
|
550
|
+
- spec/provider_locations_spec.rb
|
551
|
+
- spec/providers_spec.rb
|
552
|
+
- spec/requests/upload_file_spec.rb
|
553
|
+
- spec/requests_spec.rb
|
554
|
+
- spec/reset_password_spec.rb
|
555
|
+
- spec/server_events_spec.rb
|
556
|
+
- spec/server_usage_spec.rb
|
557
|
+
- spec/servers_spec.rb
|
558
|
+
- spec/services_spec.rb
|
559
|
+
- spec/signups_spec.rb
|
560
|
+
- spec/spec_helper.rb
|
561
|
+
- spec/ssl_certificates_spec.rb
|
562
|
+
- spec/storages_spec.rb
|
563
|
+
- spec/support/account_helper.rb
|
564
|
+
- spec/support/alert_helper.rb
|
565
|
+
- spec/support/client_helper.rb
|
566
|
+
- spec/support/core.rb
|
567
|
+
- spec/support/coverage.rb
|
568
|
+
- spec/support/resource_helper.rb
|
569
|
+
- spec/support/timecop.rb
|
570
|
+
- spec/support_trial_spec.rb
|
571
|
+
- spec/tokens_spec.rb
|
572
|
+
- spec/untracked_servers_spec.rb
|
573
|
+
- spec/users_spec.rb
|
574
|
+
has_rdoc:
|