acquia_toolbelt 2.3.0 → 2.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +7 -0
- data/.ruby-version +1 -0
- data/.travis.yml +7 -0
- data/CONTRIBUTING.md +11 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +55 -0
- data/Guardfile +5 -0
- data/LICENSE +19 -0
- data/README.md +149 -0
- data/Rakefile +1 -0
- data/acquia_toolbelt.gemspec +34 -0
- data/bin/acquia +9 -0
- data/lib/acquia_toolbelt/cli/api.rb +164 -0
- data/lib/acquia_toolbelt/cli/auth.rb +31 -0
- data/lib/acquia_toolbelt/cli/database.rb +237 -0
- data/lib/acquia_toolbelt/cli/deploy.rb +36 -0
- data/lib/acquia_toolbelt/cli/domain.rb +177 -0
- data/lib/acquia_toolbelt/cli/environment.rb +71 -0
- data/lib/acquia_toolbelt/cli/file.rb +31 -0
- data/lib/acquia_toolbelt/cli/server.rb +67 -0
- data/lib/acquia_toolbelt/cli/site.rb +28 -0
- data/lib/acquia_toolbelt/cli/ssh.rb +78 -0
- data/lib/acquia_toolbelt/cli/svn.rb +73 -0
- data/lib/acquia_toolbelt/cli/task.rb +74 -0
- data/lib/acquia_toolbelt/cli/ui.rb +44 -0
- data/lib/acquia_toolbelt/cli.rb +103 -0
- data/lib/acquia_toolbelt/error.rb +4 -0
- data/lib/acquia_toolbelt/thor.rb +95 -0
- data/lib/acquia_toolbelt/version.rb +3 -0
- data/lib/acquia_toolbelt.rb +4 -0
- data/lib/vendor/thor/CHANGELOG.md +139 -0
- data/lib/vendor/thor/Gemfile +20 -0
- data/lib/vendor/thor/LICENSE.md +20 -0
- data/lib/vendor/thor/README.md +35 -0
- data/lib/vendor/thor/lib/thor/actions/create_file.rb +105 -0
- data/lib/vendor/thor/lib/thor/actions/create_link.rb +60 -0
- data/lib/vendor/thor/lib/thor/actions/directory.rb +119 -0
- data/lib/vendor/thor/lib/thor/actions/empty_directory.rb +137 -0
- data/lib/vendor/thor/lib/thor/actions/file_manipulation.rb +317 -0
- data/lib/vendor/thor/lib/thor/actions/inject_into_file.rb +109 -0
- data/lib/vendor/thor/lib/thor/actions.rb +318 -0
- data/lib/vendor/thor/lib/thor/base.rb +654 -0
- data/lib/vendor/thor/lib/thor/command.rb +136 -0
- data/lib/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +80 -0
- data/lib/vendor/thor/lib/thor/core_ext/io_binary_read.rb +12 -0
- data/lib/vendor/thor/lib/thor/core_ext/ordered_hash.rb +100 -0
- data/lib/vendor/thor/lib/thor/error.rb +32 -0
- data/lib/vendor/thor/lib/thor/group.rb +282 -0
- data/lib/vendor/thor/lib/thor/invocation.rb +172 -0
- data/lib/vendor/thor/lib/thor/parser/argument.rb +74 -0
- data/lib/vendor/thor/lib/thor/parser/arguments.rb +171 -0
- data/lib/vendor/thor/lib/thor/parser/option.rb +121 -0
- data/lib/vendor/thor/lib/thor/parser/options.rb +218 -0
- data/lib/vendor/thor/lib/thor/parser.rb +4 -0
- data/lib/vendor/thor/lib/thor/rake_compat.rb +72 -0
- data/lib/vendor/thor/lib/thor/runner.rb +322 -0
- data/lib/vendor/thor/lib/thor/shell/basic.rb +422 -0
- data/lib/vendor/thor/lib/thor/shell/color.rb +148 -0
- data/lib/vendor/thor/lib/thor/shell/html.rb +127 -0
- data/lib/vendor/thor/lib/thor/shell.rb +88 -0
- data/lib/vendor/thor/lib/thor/util.rb +270 -0
- data/lib/vendor/thor/lib/thor/version.rb +3 -0
- data/lib/vendor/thor/lib/thor.rb +474 -0
- data/lib/vendor/thor/spec/actions/create_file_spec.rb +170 -0
- data/lib/vendor/thor/spec/actions/create_link_spec.rb +95 -0
- data/lib/vendor/thor/spec/actions/directory_spec.rb +169 -0
- data/lib/vendor/thor/spec/actions/empty_directory_spec.rb +129 -0
- data/lib/vendor/thor/spec/actions/file_manipulation_spec.rb +382 -0
- data/lib/vendor/thor/spec/actions/inject_into_file_spec.rb +135 -0
- data/lib/vendor/thor/spec/actions_spec.rb +331 -0
- data/lib/vendor/thor/spec/base_spec.rb +291 -0
- data/lib/vendor/thor/spec/command_spec.rb +80 -0
- data/lib/vendor/thor/spec/core_ext/hash_with_indifferent_access_spec.rb +48 -0
- data/lib/vendor/thor/spec/core_ext/ordered_hash_spec.rb +115 -0
- data/lib/vendor/thor/spec/exit_condition_spec.rb +19 -0
- data/lib/vendor/thor/spec/fixtures/application.rb +2 -0
- data/lib/vendor/thor/spec/fixtures/app{1}/README +3 -0
- data/lib/vendor/thor/spec/fixtures/bundle/execute.rb +6 -0
- data/lib/vendor/thor/spec/fixtures/bundle/main.thor +1 -0
- data/lib/vendor/thor/spec/fixtures/command.thor +10 -0
- data/lib/vendor/thor/spec/fixtures/doc/%file_name%.rb.tt +1 -0
- data/lib/vendor/thor/spec/fixtures/doc/COMMENTER +11 -0
- data/lib/vendor/thor/spec/fixtures/doc/README +3 -0
- data/lib/vendor/thor/spec/fixtures/doc/block_helper.rb +3 -0
- data/lib/vendor/thor/spec/fixtures/doc/components/.empty_directory +0 -0
- data/lib/vendor/thor/spec/fixtures/doc/config.rb +1 -0
- data/lib/vendor/thor/spec/fixtures/doc/config.yaml.tt +1 -0
- data/lib/vendor/thor/spec/fixtures/doc/excluding/%file_name%.rb.tt +1 -0
- data/lib/vendor/thor/spec/fixtures/enum.thor +10 -0
- data/lib/vendor/thor/spec/fixtures/group.thor +128 -0
- data/lib/vendor/thor/spec/fixtures/invoke.thor +118 -0
- data/lib/vendor/thor/spec/fixtures/path with spaces +0 -0
- data/lib/vendor/thor/spec/fixtures/preserve/script.sh +3 -0
- data/lib/vendor/thor/spec/fixtures/script.thor +220 -0
- data/lib/vendor/thor/spec/fixtures/subcommand.thor +17 -0
- data/lib/vendor/thor/spec/group_spec.rb +222 -0
- data/lib/vendor/thor/spec/helper.rb +67 -0
- data/lib/vendor/thor/spec/invocation_spec.rb +108 -0
- data/lib/vendor/thor/spec/parser/argument_spec.rb +53 -0
- data/lib/vendor/thor/spec/parser/arguments_spec.rb +66 -0
- data/lib/vendor/thor/spec/parser/option_spec.rb +202 -0
- data/lib/vendor/thor/spec/parser/options_spec.rb +400 -0
- data/lib/vendor/thor/spec/rake_compat_spec.rb +72 -0
- data/lib/vendor/thor/spec/register_spec.rb +197 -0
- data/lib/vendor/thor/spec/runner_spec.rb +241 -0
- data/lib/vendor/thor/spec/shell/basic_spec.rb +330 -0
- data/lib/vendor/thor/spec/shell/color_spec.rb +95 -0
- data/lib/vendor/thor/spec/shell/html_spec.rb +31 -0
- data/lib/vendor/thor/spec/shell_spec.rb +47 -0
- data/lib/vendor/thor/spec/subcommand_spec.rb +30 -0
- data/lib/vendor/thor/spec/thor_spec.rb +499 -0
- data/lib/vendor/thor/spec/util_spec.rb +196 -0
- data/lib/vendor/thor/thor.gemspec +24 -0
- data/script/release +50 -0
- data/script/setup_build +6 -0
- data/script/test +23 -0
- data/spec/auth_spec.rb +15 -0
- data/spec/cassettes/databases/all_databases.json +1 -0
- data/spec/cassettes/databases/copy_database_from_dev_to_stage.json +1 -0
- data/spec/cassettes/databases/create_a_database_backup.json +1 -0
- data/spec/cassettes/databases/create_a_new_database.json +1 -0
- data/spec/cassettes/databases/delete_a_database.json +1 -0
- data/spec/cassettes/databases/get_all_existing_databases.json +1 -0
- data/spec/cassettes/databases/list_all_database_backups.json +1 -0
- data/spec/cassettes/databases/view_database_instance_details.json +1 -0
- data/spec/cassettes/deploy/release_vcs_branch.json +1 -0
- data/spec/cassettes/domains/create_new_domain.json +1 -0
- data/spec/cassettes/domains/delete_a_domain.json +1 -0
- data/spec/cassettes/domains/get_all_existing_domains.json +1 -0
- data/spec/cassettes/domains/list_all_dev_domains.json +1 -0
- data/spec/cassettes/domains/move_from_dev_to_stage.json +1 -0
- data/spec/cassettes/domains/purge_varnish_cache.json +1 -0
- data/spec/cassettes/environments/all_environments.json +1 -0
- data/spec/cassettes/environments/disable_live_development.json +1 -0
- data/spec/cassettes/environments/enable_live_development.json +1 -0
- data/spec/cassettes/files/copy_from_dev_to_stage.json +1 -0
- data/spec/cassettes/servers/all_dev_servers.json +1 -0
- data/spec/cassettes/servers/all_prod_servers.json +1 -0
- data/spec/cassettes/sites/all_sites.json +1 -0
- data/spec/cassettes/ssh/all_sshkeys.json +1 -0
- data/spec/cassettes/svn/all_svnusers.json +1 -0
- data/spec/cassettes/tasks/all_tasks.json +1 -0
- data/spec/databases_spec.rb +78 -0
- data/spec/deploy_spec.rb +12 -0
- data/spec/domains_spec.rb +59 -0
- data/spec/environments_spec.rb +35 -0
- data/spec/files_spec.rb +11 -0
- data/spec/helper.rb +104 -0
- data/spec/servers_spec.rb +59 -0
- data/spec/sites_spec.rb +19 -0
- data/spec/ssh_spec.rb +19 -0
- data/spec/svn_spec.rb +11 -0
- data/spec/tasks_spec.rb +11 -0
- metadata +158 -4
@@ -0,0 +1,24 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib/', __FILE__)
|
3
|
+
$:.unshift lib unless $:.include?(lib)
|
4
|
+
require 'thor/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.add_development_dependency 'bundler', '~> 1.0'
|
8
|
+
spec.authors = ['Yehuda Katz', 'José Valim']
|
9
|
+
spec.description = %q{Thor is a toolkit for building powerful command-line interfaces.}
|
10
|
+
spec.email = 'ruby-thor@googlegroups.com'
|
11
|
+
spec.executables = %w(thor)
|
12
|
+
spec.files = %w(.document CHANGELOG.md LICENSE.md README.md Thorfile thor.gemspec)
|
13
|
+
spec.files += Dir.glob("bin/**/*")
|
14
|
+
spec.files += Dir.glob("lib/**/*.rb")
|
15
|
+
spec.files += Dir.glob("spec/**/*")
|
16
|
+
spec.homepage = 'http://whatisthor.com/'
|
17
|
+
spec.licenses = ['MIT']
|
18
|
+
spec.name = 'thor'
|
19
|
+
spec.require_paths = ['lib']
|
20
|
+
spec.required_rubygems_version = '>= 1.3.5'
|
21
|
+
spec.summary = spec.description
|
22
|
+
spec.test_files = Dir.glob("spec/**/*")
|
23
|
+
spec.version = Thor::VERSION
|
24
|
+
end
|
data/script/release
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
#
|
3
|
+
# Create a new release and push it to the world.
|
4
|
+
|
5
|
+
set -e
|
6
|
+
|
7
|
+
# Handy indentation function to line it all up.
|
8
|
+
indent() {
|
9
|
+
sed "s/^/ /"
|
10
|
+
}
|
11
|
+
|
12
|
+
# Make sure we are building from the project root.
|
13
|
+
echo "---> Running setup checks"
|
14
|
+
if [[ ! -f "README.md" ]] ; then
|
15
|
+
echo " The release must be created from the project root."
|
16
|
+
echo " Please swap before continuing."
|
17
|
+
exit 1
|
18
|
+
fi
|
19
|
+
echo "---> Project root found"
|
20
|
+
|
21
|
+
# Only create releases from the master branch.
|
22
|
+
(git branch | grep -q '* master') || {
|
23
|
+
echo " You are currently on a branch other than master."
|
24
|
+
echo " However, only master can be used to create a release branch."
|
25
|
+
exit 1
|
26
|
+
}
|
27
|
+
echo "---> Running on the correct release branch"
|
28
|
+
echo "---> Pre-checks all passed"
|
29
|
+
|
30
|
+
# Bundle it all up.
|
31
|
+
echo "---> Fetching all dependencies"
|
32
|
+
bundle install | indent
|
33
|
+
echo "---> Bundling completed"
|
34
|
+
|
35
|
+
# Clean up the previous gem builds.
|
36
|
+
echo "---> Cleaning up previous gem builds"
|
37
|
+
bundle install | indent
|
38
|
+
rm -rf acquia_toolbelt-*.gem
|
39
|
+
|
40
|
+
# Create the new gem build.
|
41
|
+
echo "---> Creating a fresh gem build"
|
42
|
+
gem build -q acquia_toolbelt.gemspec | indent
|
43
|
+
|
44
|
+
# Push out the new version to RubyGems and git.
|
45
|
+
echo "---> Pushing out the new version"
|
46
|
+
TAG=v`ls acquia_toolbelt-*.gem | sed 's/^acquia_toolbelt-\(.*\)\.gem$/\1/'`
|
47
|
+
gem push acquia_toolbelt-*.gem | indent
|
48
|
+
git push origin master | indent
|
49
|
+
|
50
|
+
echo "---> Release for $TAG has been completed. Good work!"
|
data/script/setup_build
ADDED
@@ -0,0 +1,6 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
# Create the temporary netrc with some mocked data.
|
4
|
+
`touch ~/.netrc`
|
5
|
+
`chmod 0600 ~/.netrc`
|
6
|
+
`echo "# This entry was added for connecting to the Acquia Cloud API\nmachine cloudapi.acquia.com\n login me@acquia.com\n password t0ps3cret" > ~/.netrc`
|
data/script/test
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
|
3
|
+
set -e
|
4
|
+
|
5
|
+
# Ensure that we are running this from the root of the project. If the script is
|
6
|
+
# run from anywhere else, the cassettes end up in the wrong directory.
|
7
|
+
echo "---> Running setup checks"
|
8
|
+
if [[ ! -f "README.md" ]] ; then
|
9
|
+
echo " Test suite is not being run from the project root."
|
10
|
+
echo " Please change to the root and re-run the test suite."
|
11
|
+
exit 1
|
12
|
+
fi
|
13
|
+
echo "---> Pre-checks all passed"
|
14
|
+
|
15
|
+
# Bundle it all up.
|
16
|
+
echo "---> Fetching all dependencies"
|
17
|
+
bundle install | sed "s/^/ /"
|
18
|
+
echo "---> Bundling completed"
|
19
|
+
|
20
|
+
# Run the test suite.
|
21
|
+
echo "---> Starting test suite"
|
22
|
+
bundle exec rspec spec | sed "s/^/ /"
|
23
|
+
echo "---> Test suite completed"
|
data/spec/auth_spec.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
require_relative './helper'
|
2
|
+
|
3
|
+
describe "netrc authentication" do
|
4
|
+
it "should be able to read login values" do
|
5
|
+
n = Netrc.read
|
6
|
+
n["cloudapi.acquia.com"].should_not be_nil
|
7
|
+
end
|
8
|
+
|
9
|
+
it "should have valid users credentials using netrc" do
|
10
|
+
setup_authentication
|
11
|
+
|
12
|
+
@acquia_username.should_not be_nil
|
13
|
+
@acquia_password.should_not be_nil
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"get","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/dbs.json","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Accept-Encoding":["gzip;q=1.0,deflate;q=0.6,identity;q=0.3"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Sun, 17 Nov 2013 19:48:47 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["662"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"[{\"name\":\"eeamalone\"},{\"name\":\"test-suite-db-B6oYr2De\"},{\"name\":\"test-suite-db-cR8jTZjR\"},{\"name\":\"test-suite-db-BZEz0VIM\"},{\"name\":\"test-suite-db-0db6rf\"},{\"name\":\"test-suite-db-53vd0j\"},{\"name\":\"test-suite-db-waZ6rNLq\"},{\"name\":\"test-suite-db-pAftG0vT\"},{\"name\":\"test-suite-db-3gd49h\"},{\"name\":\"test-suite-db-usjinpYa\"},{\"name\":\"test-suite-db-dSx7fvjn\"},{\"name\":\"test-suite-db-i0aMSILH\"},{\"name\":\"test-suite-db-XpL78Euz\"},{\"name\":\"test-suite-db-W9lcVpk4\"},{\"name\":\"test-suite-db-Y1GyuHRy\"},{\"name\":\"test-suite-db-VLds8KkU\"},{\"name\":\"test-suite-db-ymQQRUeM\"},{\"name\":\"test-suite-db-00j2me4I\"},{\"name\":\"test-suite-db-XCIB7yzu\"},{\"name\":\"test-suite-db-wM4J4noo\"}]"},"http_version":null},"recorded_at":"Sun, 17 Nov 2013 19:48:48 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/dbs/<%= database %>/db-copy/dev/test.json","body":{"encoding":"UTF-8","string":"{}"},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Content-Type":["application/x-www-form-urlencoded"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Sun, 17 Nov 2013 19:49:00 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["357"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"{\"created\":\"1384717740\",\"description\":\"Copy database <%= database %> from dev to test\",\"sender\":\"cloud_api\",\"started\":null,\"id\":\"11019492\",\"completed\":null,\"percentage\":null,\"queue\":\"db-migrate\",\"recipient\":null,\"result\":null,\"cookie\":null,\"hidden\":\"0\",\"state\":\"waiting\",\"body\":\"eeamalonedb18984:eeamalonedb18983:<%= database %>:dev:eeamalonestg\"}"},"http_version":null},"recorded_at":"Sun, 17 Nov 2013 19:49:01 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/envs/dev/dbs/<%= database %>/backups.json","body":{"encoding":"UTF-8","string":"{}"},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Content-Type":["application/x-www-form-urlencoded"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Sun, 17 Nov 2013 19:50:25 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["358"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"{\"created\":\"1384717825\",\"description\":\"Backup database <%= database %> in dev environment.\",\"sender\":\"cloud_api\",\"started\":null,\"id\":\"11019499\",\"completed\":null,\"percentage\":null,\"queue\":\"create-db-backup-ondemand\",\"recipient\":null,\"result\":null,\"cookie\":null,\"hidden\":\"0\",\"state\":\"waiting\",\"body\":\"[\\\"eeamalone\\\",\\\"dev\\\",\\\"<%= database %>\\\"]\"}"},"http_version":null},"recorded_at":"Sun, 17 Nov 2013 19:50:27 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/dbs.json","body":{"encoding":"UTF-8","string":"{\"db\":\"test-suite-db-yZ2dlMUN\"}"},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Content-Type":["application/x-www-form-urlencoded"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Sun, 17 Nov 2013 19:48:50 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["360"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"{\"created\":\"1384717730\",\"description\":\"Add database test-suite-db-yZ2dlMUN.\",\"sender\":\"cloud_api\",\"started\":null,\"id\":\"11019488\",\"completed\":null,\"percentage\":null,\"queue\":\"database-action\",\"recipient\":null,\"result\":null,\"cookie\":null,\"hidden\":\"0\",\"state\":\"waiting\",\"body\":\"{\\\"role\\\":\\\"test-suite-db-yZ2dlMUN\\\",\\\"action\\\":\\\"add\\\",\\\"sitegroup\\\":\\\"eeamalone\\\"}\"}"},"http_version":null},"recorded_at":"Sun, 17 Nov 2013 19:48:51 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"delete","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/dbs/<%= database %>.json","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Sun, 17 Nov 2013 19:50:22 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["379"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"{\"created\":\"1384717822\",\"result\":null,\"description\":\"Delete database <%= database %>.\",\"hidden\":\"0\",\"id\":\"11019498\",\"percentage\":null,\"started\":null,\"state\":\"waiting\",\"cookie\":null,\"sender\":\"cloud_api\",\"recipient\":null,\"queue\":\"database-action\",\"body\":\"{\\\"role\\\":\\\"<%= database %>\\\",\\\"action\\\":\\\"delete\\\",\\\"backup\\\":1,\\\"sitegroup\\\":\\\"eeamalone\\\"}\",\"completed\":null}"},"http_version":null},"recorded_at":"Sun, 17 Nov 2013 19:50:24 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"get","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/dbs.json","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Accept-Encoding":["gzip;q=1.0,deflate;q=0.6,identity;q=0.3"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Sun, 17 Nov 2013 19:48:55 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["696"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"[{\"name\":\"eeamalone\"},{\"name\":\"test-suite-db-B6oYr2De\"},{\"name\":\"test-suite-db-cR8jTZjR\"},{\"name\":\"test-suite-db-BZEz0VIM\"},{\"name\":\"test-suite-db-0db6rf\"},{\"name\":\"test-suite-db-53vd0j\"},{\"name\":\"test-suite-db-waZ6rNLq\"},{\"name\":\"test-suite-db-pAftG0vT\"},{\"name\":\"test-suite-db-3gd49h\"},{\"name\":\"test-suite-db-usjinpYa\"},{\"name\":\"test-suite-db-dSx7fvjn\"},{\"name\":\"test-suite-db-i0aMSILH\"},{\"name\":\"test-suite-db-XpL78Euz\"},{\"name\":\"test-suite-db-W9lcVpk4\"},{\"name\":\"test-suite-db-Y1GyuHRy\"},{\"name\":\"test-suite-db-VLds8KkU\"},{\"name\":\"test-suite-db-ymQQRUeM\"},{\"name\":\"test-suite-db-00j2me4I\"},{\"name\":\"test-suite-db-XCIB7yzu\"},{\"name\":\"test-suite-db-wM4J4noo\"},{\"name\":\"test-suite-db-yZ2dlMUN\"}]"},"http_version":null},"recorded_at":"Sun, 17 Nov 2013 19:48:56 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"get","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/envs/dev/dbs/<%= database %>/backups.json","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Accept-Encoding":["gzip;q=1.0,deflate;q=0.6,identity;q=0.3"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Sun, 17 Nov 2013 19:51:18 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["483"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"[{\"link\":\"http://eeamalonedev.prod.acquia-sites.com/AH_DOWNLOAD?dev=38bc046f6bbf6c6fe6a8236df0c355333128ddc4af91940d9e4ba95027cfb30f&d=/mnt/files/eeamalone.dev/backups/on-demand/backup-<%= database %>-5611027.sql.gz&t=1384717878\",\"deleted\":\"0\",\"id\":\"5611027\",\"checksum\":\"06b760eab1e6ab11c8e78ef900d3303e\",\"started\":\"1384662739\",\"type\":\"ondemand\",\"path\":\"backups/on-demand/backup-<%= database %>-5611027.sql.gz\",\"name\":\"<%= database %>\",\"completed\":\"1384662752\"}]"},"http_version":null},"recorded_at":"Sun, 17 Nov 2013 19:51:19 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"get","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/envs/dev/dbs/<%= database %>.json","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Accept-Encoding":["gzip;q=1.0,deflate;q=0.6,identity;q=0.3"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Sun, 17 Nov 2013 20:26:14 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["164"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"{\"username\":\"eeamalonedev\",\"instance_name\":\"eeamalonedb18887\",\"password\":\"j2UFarZHdeBipEm\",\"db_cluster\":\"534\",\"name\":\"<%= database %>\",\"host\":\"staging-2416\"}"},"http_version":null},"recorded_at":"Sun, 17 Nov 2013 20:26:19 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/envs/dev/code-deploy.json?path=master","body":{"encoding":"UTF-8","string":"{\"key\":\"path\",\"value\":\"master\"}"},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Content-Type":["application/x-www-form-urlencoded"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Tue, 12 Nov 2013 20:35:13 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["464"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"{\"body\":\"{\\\"from_path\\\":\\\"master\\\",\\\"from_vcs_type\\\":\\\"git\\\",\\\"to_site\\\":\\\"eeamalonedev\\\",\\\"repo\\\":\\\"eeamalone@svn-2411.prod.hosting.acquia.com:eeamalone.git\\\",\\\"to_stage\\\":\\\"dev\\\",\\\"no_create\\\":true,\\\"repo_id\\\":\\\"3959\\\"}\",\"result\":null,\"started\":null,\"completed\":null,\"queue\":\"code-push\",\"id\":\"10917558\",\"cookie\":null,\"recipient\":null,\"sender\":\"cloud_api\",\"hidden\":\"0\",\"percentage\":null,\"created\":\"1384288513\",\"description\":\"Deploy code to dev\",\"state\":\"waiting\"}"},"http_version":null},"recorded_at":"Tue, 12 Nov 2013 20:35:17 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/envs/dev/domains/<%= domain %>.json","body":{"encoding":"UTF-8","string":"{}"},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Content-Type":["application/x-www-form-urlencoded"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Sun, 17 Nov 2013 20:14:20 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["414"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"{\"created\":\"1384719260\",\"result\":null,\"description\":\"Add domain <%= domain %> to dev\",\"hidden\":\"0\",\"id\":\"11019608\",\"percentage\":null,\"started\":null,\"state\":\"waiting\",\"cookie\":null,\"sender\":\"cloud_api\",\"recipient\":null,\"queue\":\"site-update\",\"body\":\"{\\\"types\\\":[\\\"web_servers\\\",\\\"balancers\\\"],\\\"result\\\":{\\\"domain\\\":\\\"<%= domain %>\\\"},\\\"sitegroup\\\":\\\"eeamalone\\\"}\",\"completed\":null}"},"http_version":null},"recorded_at":"Sun, 17 Nov 2013 20:14:22 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"delete","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/envs/dev/domains/<%= domain %>.json","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Sun, 17 Nov 2013 20:14:25 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["419"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"{\"created\":\"1384719265\",\"result\":null,\"description\":\"Remove domain <%= domain %> from dev\",\"hidden\":\"0\",\"id\":\"11019609\",\"percentage\":null,\"started\":null,\"state\":\"waiting\",\"cookie\":null,\"sender\":\"cloud_api\",\"recipient\":null,\"queue\":\"site-update\",\"body\":\"{\\\"types\\\":[\\\"web_servers\\\",\\\"balancers\\\"],\\\"result\\\":{\\\"domain\\\":\\\"<%= domain %>\\\"},\\\"sitegroup\\\":\\\"eeamalone\\\"}\",\"completed\":null}"},"http_version":null},"recorded_at":"Sun, 17 Nov 2013 20:14:26 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"get","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/envs/dev/domains.json","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Accept-Encoding":["gzip;q=1.0,deflate;q=0.6,identity;q=0.3"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Sun, 17 Nov 2013 20:14:22 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["329"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"[{\"name\":\"*.stalkerspace.com\"},{\"name\":\"stalkerspace.com\"},{\"name\":\"dev-to-stage-move-sb728b.com\"},{\"name\":\"a-test-domain-7es22r.com\"},{\"name\":\"test-suite-domain-0FYkpyun.com\"},{\"name\":\"test-suite-domain-nYQBU9YY.com\"},{\"name\":\"test-suite-domain-TEerbHYe.com\"},{\"name\":\"testly.com\"},{\"name\":\"eeamalonedev.prod.acquia-sites.com\"}]"},"http_version":null},"recorded_at":"Sun, 17 Nov 2013 20:14:24 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"get","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/envs/dev/domains.json","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Accept-Encoding":["gzip;q=1.0,deflate;q=0.6,identity;q=0.3"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Sun, 17 Nov 2013 20:16:11 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["245"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"[{\"name\":\"*.stalkerspace.com\"},{\"name\":\"stalkerspace.com\"},{\"name\":\"testly.com\"},{\"name\":\"test-suite-domain-TEerbHYe.com\"},{\"name\":\"dev-to-stage-move-sb728b.com\"},{\"name\":\"a-test-domain-7es22r.com\"},{\"name\":\"eeamalonedev.prod.acquia-sites.com\"}]"},"http_version":null},"recorded_at":"Sun, 17 Nov 2013 20:16:12 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/domain-move/dev/test.json","body":{"encoding":"UTF-8","string":"{\"domains\":\"test-suite-domain-0FYkpyun.com\"}"},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Content-Type":["application/x-www-form-urlencoded"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Sun, 17 Nov 2013 20:14:30 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["354"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"{\"created\":\"1384719270\",\"result\":null,\"description\":\"Move domains from dev to test.\",\"hidden\":\"0\",\"site_id\":\"5291\",\"id\":\"11019611\",\"percentage\":null,\"started\":null,\"state\":\"waiting\",\"cookie\":null,\"sender\":\"cloud_api\",\"recipient\":null,\"queue\":\"site-update\",\"body\":\"{\\\"types\\\":[\\\"web_servers\\\",\\\"balancers\\\"],\\\"sitegroup\\\":\\\"eeamalone\\\"}\",\"completed\":null}"},"http_version":null},"recorded_at":"Sun, 17 Nov 2013 20:14:32 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"delete","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/envs/dev/domains/<%= domain %>/cache.json","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Sun, 17 Nov 2013 20:14:27 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["337"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"{\"percentage\":null,\"started\":null,\"queue\":\"purge-domain\",\"cookie\":null,\"result\":null,\"description\":\"Clear web cache for domain <%= domain %>\",\"state\":\"waiting\",\"completed\":null,\"hidden\":\"0\",\"sender\":\"cloud_api\",\"created\":\"1384719267\",\"body\":\"eeamalonedev <%= domain %>\",\"id\":\"11019610\",\"recipient\":null}"},"http_version":null},"recorded_at":"Sun, 17 Nov 2013 20:14:29 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"get","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/envs.json","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Accept-Encoding":["gzip;q=1.0,deflate;q=0.6,identity;q=0.3"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Tue, 12 Nov 2013 20:35:33 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["559"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"[{\"db_clusters\":[\"534\"],\"name\":\"test\",\"livedev\":\"disabled\",\"default_domain\":\"eeamalonestg.prod.acquia-sites.com\",\"vcs_path\":\"tags/WELCOME\",\"ssh_host\":\"staging-2416.prod.hosting.acquia.com\"},{\"db_clusters\":[\"534\"],\"name\":\"dev\",\"livedev\":\"disabled\",\"default_domain\":\"eeamalonedev.prod.acquia-sites.com\",\"vcs_path\":\"master\",\"ssh_host\":\"staging-2416.prod.hosting.acquia.com\"},{\"db_clusters\":[\"619\"],\"name\":\"prod\",\"livedev\":\"disabled\",\"default_domain\":\"eeamalone.prod.acquia-sites.com\",\"vcs_path\":\"tags/2013-09-24.0\",\"ssh_host\":\"ded-2922.prod.hosting.acquia.com\"}]"},"http_version":null},"recorded_at":"Tue, 12 Nov 2013 20:35:37 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/envs/dev/livedev/disable.json","body":{"encoding":"UTF-8","string":"{}"},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Content-Type":["application/x-www-form-urlencoded"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Tue, 12 Nov 2013 20:35:39 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["341"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"{\"body\":\"{\\\"types\\\":[\\\"web_servers\\\"],\\\"sitegroup\\\":\\\"eeamalone\\\"}\",\"result\":null,\"started\":null,\"site_id\":\"5291\",\"completed\":null,\"queue\":\"site-update\",\"id\":\"10917606\",\"cookie\":null,\"recipient\":null,\"sender\":\"cloud_api\",\"hidden\":\"0\",\"percentage\":null,\"created\":\"1384288539\",\"description\":\"Disable Live Development on dev\",\"state\":\"waiting\"}"},"http_version":null},"recorded_at":"Tue, 12 Nov 2013 20:35:42 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/envs/dev/livedev/enable.json","body":{"encoding":"UTF-8","string":"{}"},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Content-Type":["application/x-www-form-urlencoded"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Tue, 12 Nov 2013 20:35:36 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["340"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"{\"body\":\"{\\\"types\\\":[\\\"web_servers\\\"],\\\"sitegroup\\\":\\\"eeamalone\\\"}\",\"result\":null,\"started\":null,\"site_id\":\"5291\",\"completed\":null,\"queue\":\"site-update\",\"id\":\"10917600\",\"cookie\":null,\"recipient\":null,\"sender\":\"cloud_api\",\"hidden\":\"0\",\"percentage\":null,\"created\":\"1384288536\",\"description\":\"Enable Live Development on dev\",\"state\":\"waiting\"}"},"http_version":null},"recorded_at":"Tue, 12 Nov 2013 20:35:40 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"post","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/files-copy/dev/test.json","body":{"encoding":"UTF-8","string":"{}"},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Content-Type":["application/x-www-form-urlencoded"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Tue, 12 Nov 2013 20:35:41 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["463"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"{\"body\":\"{\\\"dst_stage\\\":\\\"test\\\",\\\"dst_srv\\\":\\\"staging-2416\\\",\\\"src_stage\\\":\\\"dev\\\",\\\"src_srv\\\":\\\"staging-2416\\\",\\\"src_site\\\":\\\"eeamalonedev\\\",\\\"dst_site\\\":\\\"eeamalonestg\\\"}\",\"result\":null,\"started\":null,\"completed\":null,\"queue\":\"files-migrate\",\"id\":\"10917607\",\"cookie\":null,\"recipient\":\"backup-5786.prod.hosting.acquia.com\",\"sender\":\"cloud_api\",\"hidden\":\"0\",\"percentage\":null,\"created\":\"1384288541\",\"description\":\"Copy files from dev to test\",\"state\":\"received\"}"},"http_version":null},"recorded_at":"Tue, 12 Nov 2013 20:35:45 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"get","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/envs/dev/servers.json","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["AcquiaToolbelt/2.2.1"],"Accept-Encoding":["gzip;q=1.0,deflate;q=0.6,identity;q=0.3"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Mon, 16 Dec 2013 08:09:52 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"X-Rate-Limit-Limit":["360"],"X-Rate-Limit-Remaining":["359"],"X-Rate-Limit-Reset":["1387184400"],"Content-Length":["976"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"[{\"services\":{\"varnish\":{\"status\":\"hot_spare\"}},\"fqdn\":\"bal-2412.prod.hosting.acquia.com\",\"name\":\"bal-2412\",\"ec2_availability_zone\":\"ap-southeast-1a\",\"ami_type\":\"m2.xlarge\",\"ec2_region\":\"ap-southeast-1\"},{\"services\":{\"external_ip\":\"175.41.140.106\",\"varnish\":{\"status\":\"active\"}},\"fqdn\":\"bal-2414.prod.hosting.acquia.com\",\"name\":\"bal-2414\",\"ec2_availability_zone\":\"ap-southeast-1b\",\"ami_type\":\"m2.xlarge\",\"ec2_region\":\"ap-southeast-1\"},{\"services\":{\"web\":{\"env_status\":\"active\",\"status\":\"online\",\"php_max_procs\":2},\"database\":{}},\"fqdn\":\"staging-2416.prod.hosting.acquia.com\",\"name\":\"staging-2416\",\"ec2_availability_zone\":\"ap-southeast-1a\",\"ami_type\":\"m2.xlarge\",\"ec2_region\":\"ap-southeast-1\"},{\"services\":{\"vcs\":{\"vcs_url\":\"eeamalone@svn-2411.prod.hosting.acquia.com:eeamalone.git\",\"vcs_type\":\"git\",\"vcs_path\":\"master\"}},\"fqdn\":\"svn-2411.prod.hosting.acquia.com\",\"name\":\"svn-2411\",\"ec2_availability_zone\":\"ap-southeast-1a\",\"ami_type\":\"m1.large\",\"ec2_region\":\"ap-southeast-1\"}]"},"http_version":null},"recorded_at":"Mon, 16 Dec 2013 08:09:52 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"get","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/envs/prod/servers.json","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["AcquiaToolbelt/2.2.1"],"Accept-Encoding":["gzip;q=1.0,deflate;q=0.6,identity;q=0.3"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Mon, 16 Dec 2013 08:09:55 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"X-Rate-Limit-Limit":["360"],"X-Rate-Limit-Remaining":["358"],"X-Rate-Limit-Reset":["1387184400"],"Content-Length":["1335"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"[{\"services\":{\"elb_domain_name\":\"mc-5289-422752757.ap-southeast-1.elb.amazonaws.com\",\"varnish\":{\"status\":\"active\"}},\"ec2_region\":\"ap-southeast-1\",\"ami_type\":\"m2.xlarge\",\"fqdn\":\"bal-2413.prod.hosting.acquia.com\",\"name\":\"bal-2413\",\"ec2_availability_zone\":\"ap-southeast-1a\"},{\"services\":{\"elb_domain_name\":\"mc-5289-422752757.ap-southeast-1.elb.amazonaws.com\",\"varnish\":{\"status\":\"active\"}},\"ec2_region\":\"ap-southeast-1\",\"ami_type\":\"m2.xlarge\",\"fqdn\":\"bal-2415.prod.hosting.acquia.com\",\"name\":\"bal-2415\",\"ec2_availability_zone\":\"ap-southeast-1b\"},{\"services\":{\"web\":{\"status\":\"online\",\"env_status\":\"active\",\"php_max_procs\":2},\"database\":{}},\"ec2_region\":\"ap-southeast-1\",\"ami_type\":\"m1.large\",\"fqdn\":\"ded-2922.prod.hosting.acquia.com\",\"name\":\"ded-2922\",\"ec2_availability_zone\":\"ap-southeast-1a\"},{\"services\":{\"web\":{\"status\":\"online\",\"env_status\":\"active\",\"php_max_procs\":2},\"database\":{}},\"ec2_region\":\"ap-southeast-1\",\"ami_type\":\"m1.large\",\"fqdn\":\"ded-2923.prod.hosting.acquia.com\",\"name\":\"ded-2923\",\"ec2_availability_zone\":\"ap-southeast-1b\"},{\"services\":{\"vcs\":{\"vcs_url\":\"eeamalone@svn-2411.prod.hosting.acquia.com:eeamalone.git\",\"vcs_path\":\"tags/2013-09-24.0\",\"vcs_type\":\"git\"}},\"ec2_region\":\"ap-southeast-1\",\"ami_type\":\"m1.large\",\"fqdn\":\"svn-2411.prod.hosting.acquia.com\",\"name\":\"svn-2411\",\"ec2_availability_zone\":\"ap-southeast-1a\"}]"},"http_version":null},"recorded_at":"Mon, 16 Dec 2013 08:09:55 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"get","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites.json","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Accept-Encoding":["gzip;q=1.0,deflate;q=0.6,identity;q=0.3"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Tue, 12 Nov 2013 20:35:49 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["91"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"[\"prod:eeamalone\",\"devcloud:jacobbednarz\",\"devcloud:acquiatoolbeltdev\"]"},"http_version":null},"recorded_at":"Tue, 12 Nov 2013 20:35:49 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"get","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/sshkeys.json","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Accept-Encoding":["gzip;q=1.0,deflate;q=0.6,identity;q=0.3"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Tue, 12 Nov 2013 20:35:52 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["820"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"[{\"nickname\":\"acquiamac\",\"ssh_pub_key\":\"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDCeMGVosn2JB/RBWXQ+zVngRCHp9vGcoPiL9yh8xFd9mRTwt7Q5BWSneANU7odpYTHQZRWETxvqzuxCwqMLGgOLzi7xBBfguMj3oRzrYKXTOPRyfF/fjtzr0LEYdHL6RiYEfRmIW70fm5jAGj32DBcIiEMF69dv9AeOuXic4HaEAQxHahuvA1m4DYhCycBGay3wOjMAMFeVN2yQqYSvLKsp4kASHunssLsiEiHzUhClqlUQ3E8oEWc3BbJenkmjSDtOLKgOQs23ZZR7x1EnVtCX0rzRIHGkmPvi7W8RIDD9qWfa3RKf9jxnw53MGH4p4R3PkZPFgv9d9igUG2ntQkoD2bxRzzJtWVlCnFWtu2MaU3KcKXLV6mvxDbH2oPGEn1Qyr/z+cIcoLZ5bkZw1bIKNOxb0fuazLUlMgdzck39YJJkOG+SJPc1FZLT4Ew+R48oDe63gDI4vMp2uuvN4auiMhTX0Xzk/Xnu5tbH8rQyfFKWNxDkti1O87IhoAsjKvvxijkQWDO4zbNMtSjenQMpcPmi09ZSEu00nW7um6rCZNXiKztje0Ln7L2fe2EgAnM6CAd6Bd8DowypdHGF0F7dpzF2PPaRDQl+EXwUKI+NfPCgrKlRXgiH23RThYi0/Nz87w6Q2lm5Avv4xWP3zLdHjg/3FrAjHB+UuXDhe0Fryw== adam.malone@MacBookAir-AdamMalone.local\",\"id\":\"19817\"}]"},"http_version":null},"recorded_at":"Tue, 12 Nov 2013 20:35:52 GMT"}],"recorded_with":"VCR 2.7.0"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"http_interactions":[{"request":{"method":"get","uri":"https://<ACQUIA_USERNAME>:<ACQUIA_PASSWORD>@cloudapi.acquia.com/v1/sites/prod:eeamalone/svnusers.json","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["AcquiaToolbelt/2.0.1"],"Accept-Encoding":["gzip;q=1.0,deflate;q=0.6,identity;q=0.3"],"Accept":["*/*"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json;charset=utf-8"],"Date":["Tue, 12 Nov 2013 20:35:54 GMT"],"Server":["nginx"],"Status":["200 OK"],"X-Ah-Environment":["prod"],"X-Content-Type-Options":["nosniff"],"Content-Length":["2"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"[]"},"http_version":null},"recorded_at":"Tue, 12 Nov 2013 20:35:54 GMT"}],"recorded_with":"VCR 2.7.0"}
|