knife-rackspace 0.8.4 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +9 -9
- data/CHANGELOG.md +7 -0
- data/README.rdoc +2 -0
- data/knife-rackspace.gemspec +1 -1
- data/lib/chef/knife/rackspace_base.rb +8 -4
- data/lib/chef/knife/rackspace_server_create.rb +12 -1
- data/lib/knife-rackspace/version.rb +1 -1
- data/spec/cassettes/v1/should_list_images.yml +35 -35
- data/spec/cassettes/v1/should_list_server_flavors.yml +246 -248
- data/spec/cassettes/v2/should_list_images.yml +1269 -879
- data/spec/cassettes/v2/should_list_server_flavors.yml +1289 -287
- data/spec/integration/integration_spec.rb +19 -9
- data/spec/integration_spec_helper.rb +6 -4
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NGE0OTU0MGU2M2E5YTJiOGM1NGQxYzcxYmU2MDI4ZDEyNTE3NDQ5Yw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
7
|
-
|
6
|
+
MjA2MjJlMGU3MTM4N2Q3ZmQ0ZTdjZjU4MDU4MTczNTg5NTgyNmQ0Yg==
|
7
|
+
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NGQyMmUzZGJkYThiOGU1MTRlM2NlNTMwNWYwMzI4MzU0ZmFkMTYwODMwYzU0
|
10
|
+
NWVlOWYwNTExMWU0YzUyN2VhNGNkM2Y5NjNkOTI4MzMwNDEzMGM4ZDgwZTc5
|
11
|
+
OTJiMzE3Y2I1N2E5YjMyZTE4Y2E1ZTU1ZWQ1MzI2ZDhjZjM2YTY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MTNjYjEwNGE1ZDc1OTZmOGM3NzdmMjIxZTJhZGI0Njk5M2MxMTFiYTEyM2Ex
|
14
|
+
M2FiOTBhNDc4NTQxNzg3MDE3N2QyNmFmOTE4Mzg5Y2JmZjI0MjkwODY0YjY3
|
15
|
+
YzRhZTc0MmZhNDNhMzllMzNmZDE0ZmMyYWIzZWRmNzQ2NjVlMjg=
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
## v0.9.0
|
2
|
+
* KNIFE-398 support secret/secret_file in knife.rb
|
3
|
+
* KNIFE-420 Add --ssh-keypair for using ssh keys already registered with nova.
|
4
|
+
* KNIFE-437 remove default region and make region required
|
5
|
+
* replace static.cloud-ips with xip (cloud-ips was deprecated https://community.rackspace.com/general/f/34/t/623)
|
6
|
+
* updated Fog dependency to 1.16
|
7
|
+
|
1
8
|
## v0.8.4
|
2
9
|
* KNIFE-408 TypeError: wrong argument type Symbol (expected Module)
|
3
10
|
|
data/README.rdoc
CHANGED
@@ -92,6 +92,8 @@ http://docs.openstack.org/essex/openstack-compute/starter/content/Launch_and_man
|
|
92
92
|
|
93
93
|
You may specify a custom network using the <tt>--network [LABEL_OR_ID]</tt> option. You can also remove the default internal ServiceNet and PublicNet networks by specifying the <tt>--no-default-networks</tt> switch. To use a network other than PublicNet for the bootstrap connection, specify the <tt>--bootstrap-network LABEL</tt> option.
|
94
94
|
|
95
|
+
Note: If you are using one of the `performanceX-X` machines, you need to put `-f` or `--flavor` in quotes.
|
96
|
+
|
95
97
|
== knife rackspace server delete
|
96
98
|
|
97
99
|
Deletes an existing server in the currently configured Rackspace Cloud account by the server/instance id. You can find the instance id by entering <tt>knife rackspace server list</tt>. Please note - this does not delete the associated node and client objects from the Chef server unless you pass the <tt>-P</tt> or <tt>--purge</tt> command option. Using the <tt>--purge</tt> option with v2 nodes will attempt to delete the node and client by the name of the node.
|
data/knife-rackspace.gemspec
CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
|
|
17
17
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
18
18
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
19
19
|
s.add_dependency "knife-windows"
|
20
|
-
s.add_dependency "fog",
|
20
|
+
s.add_dependency "fog", '~> 1.16'
|
21
21
|
s.add_dependency "chef", ">= 0.10.10"
|
22
22
|
s.require_paths = ["lib"]
|
23
23
|
|
@@ -62,7 +62,6 @@ class Chef
|
|
62
62
|
option :rackspace_region,
|
63
63
|
:long => "--rackspace-region REGION",
|
64
64
|
:description => "Your rackspace region",
|
65
|
-
:default => "dfw",
|
66
65
|
:proc => Proc.new { |region| Chef::Config[:knife][:rackspace_region] = region }
|
67
66
|
|
68
67
|
option :file,
|
@@ -86,7 +85,7 @@ class Chef
|
|
86
85
|
Chef::Log.debug("rackspace_auth_url #{auth_endpoint} (using)")
|
87
86
|
Chef::Log.debug("rackspace_region #{Chef::Config[:knife][:rackspace_region]}")
|
88
87
|
Chef::Log.debug("rackspace_region #{config[:rackspace_region]}")
|
89
|
-
|
88
|
+
|
90
89
|
if version_one?
|
91
90
|
Chef::Log.debug("rackspace v1")
|
92
91
|
region_warning_for_v1
|
@@ -104,7 +103,7 @@ class Chef
|
|
104
103
|
end
|
105
104
|
end
|
106
105
|
end
|
107
|
-
|
106
|
+
|
108
107
|
def region_warning_for_v1
|
109
108
|
if Chef::Config[:knife][:rackspace_region] || config[:rackspace_region]
|
110
109
|
Chef::Log.warn("Ignoring the rackspace_region parameter as it is only supported for Next Gen Cloud Servers (v2)")
|
@@ -112,6 +111,11 @@ class Chef
|
|
112
111
|
end
|
113
112
|
|
114
113
|
def connection_params(options={})
|
114
|
+
unless locate_config_value(:rackspace_region)
|
115
|
+
ui.error "Please specify region via the command line using the --rackpace-region switch oradd a knife[:rackspace_region] = REGION to your knife file."
|
116
|
+
exit 1
|
117
|
+
end
|
118
|
+
|
115
119
|
hash = options.merge({
|
116
120
|
:provider => 'Rackspace',
|
117
121
|
:rackspace_api_key => Chef::Config[:knife][:rackspace_api_key],
|
@@ -171,7 +175,7 @@ class Chef
|
|
171
175
|
@public_dns_name ||= begin
|
172
176
|
Resolv.getname(public_ip_address)
|
173
177
|
rescue
|
174
|
-
"#{public_ip_address.
|
178
|
+
"#{public_ip_address}.rs-cloud.xip.io"
|
175
179
|
end
|
176
180
|
end
|
177
181
|
end
|
@@ -203,6 +203,12 @@ class Chef
|
|
203
203
|
:proc => Proc.new { |k| Chef::Config[:knife][:rackspace_disk_config] = k },
|
204
204
|
:default => "AUTO"
|
205
205
|
|
206
|
+
option :ssh_keypair,
|
207
|
+
:long => "--ssh-keypair KEYPAIR_NAME",
|
208
|
+
:description => "Name of existing nova SSH keypair. Public key will be injected into the instance.",
|
209
|
+
:proc => Proc.new { |v| Chef::Config[:knife][:rackspace_ssh_keypair] = v },
|
210
|
+
:default => nil
|
211
|
+
|
206
212
|
|
207
213
|
def load_winrm_deps
|
208
214
|
require 'winrm'
|
@@ -324,7 +330,8 @@ class Chef
|
|
324
330
|
:flavor_id => locate_config_value(:flavor),
|
325
331
|
:metadata => Chef::Config[:knife][:rackspace_metadata],
|
326
332
|
:disk_config => Chef::Config[:knife][:rackspace_disk_config],
|
327
|
-
:personality => files
|
333
|
+
:personality => files,
|
334
|
+
:keypair => Chef::Config[:knife][:rackspace_ssh_keypair]
|
328
335
|
)
|
329
336
|
|
330
337
|
if version_one?
|
@@ -341,6 +348,7 @@ class Chef
|
|
341
348
|
msg_pair("Metadata", server.metadata.all)
|
342
349
|
msg_pair("RackConnect Wait", rackconnect_wait ? 'yes' : 'no')
|
343
350
|
msg_pair("ServiceLevel Wait", rackspace_servicelevel_wait ? 'yes' : 'no')
|
351
|
+
msg_pair("SSH Key", Chef::Config[:knife][:rackspace_ssh_keypair])
|
344
352
|
|
345
353
|
# wait for it to be ready to do stuff
|
346
354
|
begin
|
@@ -450,6 +458,9 @@ class Chef
|
|
450
458
|
bootstrap.config[:bootstrap_proxy] = locate_config_value(:bootstrap_proxy)
|
451
459
|
bootstrap.config[:encrypted_data_bag_secret] = config[:encrypted_data_bag_secret]
|
452
460
|
bootstrap.config[:encrypted_data_bag_secret_file] = config[:encrypted_data_bag_secret_file]
|
461
|
+
bootstrap.config[:secret] = locate_config_value(:secret)
|
462
|
+
bootstrap.config[:secret_file] = locate_config_value(:secret_file)
|
463
|
+
|
453
464
|
Chef::Config[:knife][:hints] ||= {}
|
454
465
|
Chef::Config[:knife][:hints]["rackspace"] ||= {}
|
455
466
|
bootstrap
|
@@ -8,7 +8,7 @@ http_interactions:
|
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- fog/1.
|
11
|
+
- fog/1.15.0
|
12
12
|
Content-Type:
|
13
13
|
- application/json
|
14
14
|
Accept:
|
@@ -19,12 +19,12 @@ http_interactions:
|
|
19
19
|
code: 200
|
20
20
|
message:
|
21
21
|
headers:
|
22
|
-
Cache-Control:
|
23
|
-
- s-maxage=1800
|
24
22
|
Content-Type:
|
25
23
|
- application/json
|
24
|
+
Cache-Control:
|
25
|
+
- s-maxage=1800
|
26
26
|
Via:
|
27
|
-
- 1.1 Repose (Repose/2.
|
27
|
+
- 1.1 Repose (Repose/2.11.0), 1.1 varnish
|
28
28
|
Last-Modified:
|
29
29
|
- Mon, 09 Jul 2012 17:15:23 GMT
|
30
30
|
x-purge-key:
|
@@ -36,14 +36,14 @@ http_interactions:
|
|
36
36
|
Content-Length:
|
37
37
|
- '2547'
|
38
38
|
Date:
|
39
|
-
-
|
39
|
+
- Fri, 17 Jan 2014 17:22:13 GMT
|
40
40
|
X-Varnish: _VARNISH-REQUEST-ID_
|
41
41
|
Age:
|
42
42
|
- '0'
|
43
43
|
Connection:
|
44
44
|
- keep-alive
|
45
45
|
body:
|
46
|
-
encoding:
|
46
|
+
encoding: US-ASCII
|
47
47
|
string: ! '{"images":[{"id":118,"status":"ACTIVE","updated":"2011-08-17T05:11:30-05:00","name":"CentOS
|
48
48
|
6.0"},{"id":104,"status":"ACTIVE","updated":"2011-08-17T05:11:30-05:00","name":"Debian
|
49
49
|
6 (Squeeze)"},{"id":125,"status":"ACTIVE","updated":"2012-05-03T07:21:06-05:00","name":"Ubuntu
|
@@ -71,7 +71,7 @@ http_interactions:
|
|
71
71
|
5.8"},{"id":89,"status":"ACTIVE","updated":"2011-10-04T08:39:34-05:00","name":"Windows
|
72
72
|
Server 2008 R2 x64 + SQL Server 2008 R2 Web"}]}'
|
73
73
|
http_version:
|
74
|
-
recorded_at:
|
74
|
+
recorded_at: Fri, 17 Jan 2014 17:22:13 GMT
|
75
75
|
- request:
|
76
76
|
method: post
|
77
77
|
uri: https://identity.api.rackspacecloud.com/v2.0/tokens
|
@@ -80,7 +80,7 @@ http_interactions:
|
|
80
80
|
string: ! '{"auth":{"RAX-KSKEY:apiKeyCredentials":{"username":"_RAX_USERNAME_","apiKey":"_RAX_PASSWORD_"}}}'
|
81
81
|
headers:
|
82
82
|
User-Agent:
|
83
|
-
- fog/1.
|
83
|
+
- fog/1.19.0
|
84
84
|
Content-Type:
|
85
85
|
- application/json
|
86
86
|
Accept:
|
@@ -94,28 +94,28 @@ http_interactions:
|
|
94
94
|
Server:
|
95
95
|
- nginx/0.8.55
|
96
96
|
Date:
|
97
|
-
-
|
97
|
+
- Fri, 17 Jan 2014 19:13:25 GMT
|
98
98
|
Content-Type:
|
99
99
|
- application/json
|
100
|
+
Transfer-Encoding:
|
101
|
+
- ''
|
100
102
|
Connection:
|
101
|
-
-
|
103
|
+
- close
|
102
104
|
vary:
|
103
105
|
- Accept, Accept-Encoding, X-Auth-Token
|
104
106
|
VIA:
|
105
107
|
- 1.0 Repose (Repose/2.3.5)
|
106
|
-
Content-Length:
|
107
|
-
- '6671'
|
108
108
|
Front-End-Https:
|
109
109
|
- 'on'
|
110
110
|
body:
|
111
|
-
encoding:
|
112
|
-
string: ! '{"access":{"token":{"id":"
|
111
|
+
encoding: US-ASCII
|
112
|
+
string: ! '{"access":{"token":{"id":"2f2a19a96d84414799147bbb8b7ae765","expires":"2014-01-18T14:51:11.824Z","tenant":{"id":"000000","name":"000000"},"RAX-AUTH:authenticatedBy":["APIKEY"]},"serviceCatalog":[{"name":"cloudFilesCDN","endpoints":[{"region":"SYD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn4.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"DFW","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn1.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"ORD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn2.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"IAD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn5.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"HKG","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn6.clouddrive.com\/v1\/_CDN-TENANT-NAME_"}],"type":"rax:object-cdn"},{"name":"cloudFiles","endpoints":[{"region":"DFW","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.dfw1.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.dfw1.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"ORD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.ord1.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.ord1.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"SYD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.syd2.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.syd2.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"IAD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.iad3.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.iad3.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"HKG","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.hkg1.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.hkg1.clouddrive.com\/v1\/_CDN-TENANT-NAME_"}],"type":"object-store"},{"name":"cloudBlockStorage","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.blockstorage.api.rackspacecloud.com\/v1\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.blockstorage.api.rackspacecloud.com\/v1\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.blockstorage.api.rackspacecloud.com\/v1\/000000"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.blockstorage.api.rackspacecloud.com\/v1\/000000"},{"region":"HKG","tenantId":"000000","publicURL":"https:\/\/hkg.blockstorage.api.rackspacecloud.com\/v1\/000000"}],"type":"volume"},{"name":"cloudDatabases","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.databases.api.rackspacecloud.com\/v1.0\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.databases.api.rackspacecloud.com\/v1.0\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.databases.api.rackspacecloud.com\/v1.0\/000000"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.databases.api.rackspacecloud.com\/v1.0\/000000"},{"region":"HKG","tenantId":"000000","publicURL":"https:\/\/hkg.databases.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:database"},{"name":"cloudLoadBalancers","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"},{"region":"HKG","tenantId":"000000","publicURL":"https:\/\/hkg.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:load-balancer"},{"name":"cloudServersOpenStack","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/syd.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/syd.servers.api.rackspacecloud.com\/","versionId":"2"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/ord.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/ord.servers.api.rackspacecloud.com\/","versionId":"2"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/dfw.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/dfw.servers.api.rackspacecloud.com\/","versionId":"2"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/iad.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/iad.servers.api.rackspacecloud.com\/","versionId":"2"},{"region":"HKG","tenantId":"000000","publicURL":"https:\/\/hkg.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/hkg.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/hkg.servers.api.rackspacecloud.com\/","versionId":"2"}],"type":"compute"},{"name":"cloudQueues","endpoints":[{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.queues.api.rackspacecloud.com\/v1\/000000","internalURL":"https:\/\/snet-iad.queues.api.rackspacecloud.com\/v1\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.queues.api.rackspacecloud.com\/v1\/000000","internalURL":"https:\/\/snet-ord.queues.api.rackspacecloud.com\/v1\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.queues.api.rackspacecloud.com\/v1\/000000","internalURL":"https:\/\/snet-dfw.queues.api.rackspacecloud.com\/v1\/000000"},{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.queues.api.rackspacecloud.com\/v1\/000000","internalURL":"https:\/\/snet-syd.queues.api.rackspacecloud.com\/v1\/000000"},{"region":"HKG","tenantId":"000000","publicURL":"https:\/\/hkg.queues.api.rackspacecloud.com\/v1\/000000","internalURL":"https:\/\/snet-hkg.queues.api.rackspacecloud.com\/v1\/000000"}],"type":"rax:queues"},{"name":"autoscale","endpoints":[{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.autoscale.api.rackspacecloud.com\/v1.0\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.autoscale.api.rackspacecloud.com\/v1.0\/000000"},{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.autoscale.api.rackspacecloud.com\/v1.0\/000000"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.autoscale.api.rackspacecloud.com\/v1.0\/000000"},{"region":"HKG","tenantId":"000000","publicURL":"https:\/\/hkg.autoscale.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:autoscale"},{"name":"cloudOrchestration","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.orchestration.api.rackspacecloud.com\/v1\/000000"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.orchestration.api.rackspacecloud.com\/v1\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.orchestration.api.rackspacecloud.com\/v1\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.orchestration.api.rackspacecloud.com\/v1\/000000"}],"type":"orchestration"},{"name":"cloudBackup","endpoints":[{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.backup.api.rackspacecloud.com\/v1.0\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.backup.api.rackspacecloud.com\/v1.0\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.backup.api.rackspacecloud.com\/v1.0\/000000"},{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.backup.api.rackspacecloud.com\/v1.0\/000000"},{"region":"HKG","tenantId":"000000","publicURL":"https:\/\/hkg.backup.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:backup"},{"name":"cloudImages","endpoints":[{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.images.api.rackspacecloud.com\/v2\/000000"}],"type":"image"},{"name":"cloudDNS","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/dns.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:dns"},{"name":"cloudMonitoring","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/monitoring.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:monitor"},{"name":"cloudServers","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/servers.api.rackspacecloud.com\/v1.0\/000000","versionInfo":"https:\/\/servers.api.rackspacecloud.com\/v1.0","versionList":"https:\/\/servers.api.rackspacecloud.com\/","versionId":"1.0"}],"type":"compute"}],"user":{"id":"296063","roles":[{"id":"10000150","description":"Checkmate
|
113
113
|
Access role","name":"checkmate"},{"tenantId":"_CDN-TENANT-NAME_","id":"5","description":"A
|
114
114
|
Role that allows a user access to keystone Service methods","name":"object-store:default"},{"tenantId":"000000","id":"6","description":"A
|
115
115
|
Role that allows a user access to keystone Service methods","name":"compute:default"},{"id":"3","description":"User
|
116
|
-
Admin Role.","name":"identity:user-admin"}],"name":"_RAX_USERNAME_","RAX-AUTH:defaultRegion":"
|
116
|
+
Admin Role.","name":"identity:user-admin"}],"name":"_RAX_USERNAME_","RAX-AUTH:defaultRegion":"DFW"}}}'
|
117
117
|
http_version:
|
118
|
-
recorded_at:
|
118
|
+
recorded_at: Fri, 17 Jan 2014 19:13:25 GMT
|
119
119
|
- request:
|
120
120
|
method: get
|
121
121
|
uri: https://servers.api.rackspacecloud.com/v1.0/000000/images/detail.json
|
@@ -124,7 +124,7 @@ http_interactions:
|
|
124
124
|
string: ''
|
125
125
|
headers:
|
126
126
|
User-Agent:
|
127
|
-
- fog/1.
|
127
|
+
- fog/1.19.0
|
128
128
|
Content-Type:
|
129
129
|
- application/json
|
130
130
|
Accept:
|
@@ -132,34 +132,34 @@ http_interactions:
|
|
132
132
|
X-Auth-Token: _ONE-TIME-TOKEN_
|
133
133
|
response:
|
134
134
|
status:
|
135
|
-
code:
|
135
|
+
code: 200
|
136
136
|
message:
|
137
137
|
headers:
|
138
|
+
Server:
|
139
|
+
- Jetty(8.0.y.z-SNAPSHOT)
|
140
|
+
X-Varnish: _VARNISH-REQUEST-ID_
|
141
|
+
Vary:
|
142
|
+
- Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
|
138
143
|
Cache-Control:
|
139
144
|
- s-maxage=1800
|
140
145
|
Content-Type:
|
141
146
|
- application/json
|
147
|
+
x-purge-key:
|
148
|
+
- /000000/images
|
149
|
+
Date:
|
150
|
+
- Fri, 17 Jan 2014 19:13:27 GMT
|
142
151
|
Via:
|
143
|
-
- 1.1 Repose (Repose/2.
|
152
|
+
- 1.1 Repose (Repose/2.11.0), 1.1 varnish
|
153
|
+
Connection:
|
154
|
+
- close
|
144
155
|
Last-Modified:
|
145
156
|
- Mon, 09 Jul 2012 17:15:23 GMT
|
146
|
-
|
147
|
-
-
|
148
|
-
Vary:
|
149
|
-
- Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
|
150
|
-
Server:
|
151
|
-
- Jetty(8.0.y.z-SNAPSHOT)
|
157
|
+
Age:
|
158
|
+
- '0'
|
152
159
|
Content-Length:
|
153
160
|
- '2547'
|
154
|
-
Date:
|
155
|
-
- Tue, 22 Oct 2013 20:17:04 GMT
|
156
|
-
X-Varnish: _VARNISH-REQUEST-ID_
|
157
|
-
Age:
|
158
|
-
- '29'
|
159
|
-
Connection:
|
160
|
-
- keep-alive
|
161
161
|
body:
|
162
|
-
encoding:
|
162
|
+
encoding: US-ASCII
|
163
163
|
string: ! '{"images":[{"id":118,"status":"ACTIVE","updated":"2011-08-17T05:11:30-05:00","name":"CentOS
|
164
164
|
6.0"},{"id":104,"status":"ACTIVE","updated":"2011-08-17T05:11:30-05:00","name":"Debian
|
165
165
|
6 (Squeeze)"},{"id":125,"status":"ACTIVE","updated":"2012-05-03T07:21:06-05:00","name":"Ubuntu
|
@@ -187,5 +187,5 @@ http_interactions:
|
|
187
187
|
5.8"},{"id":89,"status":"ACTIVE","updated":"2011-10-04T08:39:34-05:00","name":"Windows
|
188
188
|
Server 2008 R2 x64 + SQL Server 2008 R2 Web"}]}'
|
189
189
|
http_version:
|
190
|
-
recorded_at:
|
191
|
-
recorded_with: VCR 2.
|
190
|
+
recorded_at: Fri, 17 Jan 2014 19:13:27 GMT
|
191
|
+
recorded_with: VCR 2.8.0
|
@@ -8,7 +8,7 @@ http_interactions:
|
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- fog/1.
|
11
|
+
- fog/1.15.0
|
12
12
|
Content-Type:
|
13
13
|
- application/json
|
14
14
|
Accept:
|
@@ -19,12 +19,12 @@ http_interactions:
|
|
19
19
|
code: 200
|
20
20
|
message:
|
21
21
|
headers:
|
22
|
-
Cache-Control:
|
23
|
-
- s-maxage=1800
|
24
22
|
Content-Type:
|
25
23
|
- application/json
|
24
|
+
Cache-Control:
|
25
|
+
- s-maxage=1800
|
26
26
|
Via:
|
27
|
-
- 1.1 Repose (Repose/2.
|
27
|
+
- 1.1 Repose (Repose/2.11.0), 1.1 varnish
|
28
28
|
Last-Modified:
|
29
29
|
- Tue, 06 Dec 2011 17:31:55 GMT
|
30
30
|
x-purge-key:
|
@@ -36,21 +36,21 @@ http_interactions:
|
|
36
36
|
Content-Length:
|
37
37
|
- '422'
|
38
38
|
Date:
|
39
|
-
-
|
39
|
+
- Fri, 17 Jan 2014 17:22:03 GMT
|
40
40
|
X-Varnish: _VARNISH-REQUEST-ID_
|
41
41
|
Age:
|
42
42
|
- '0'
|
43
43
|
Connection:
|
44
44
|
- keep-alive
|
45
45
|
body:
|
46
|
-
encoding:
|
46
|
+
encoding: US-ASCII
|
47
47
|
string: ! '{"flavors":[{"id":1,"ram":256,"disk":10,"name":"256 server"},{"id":2,"ram":512,"disk":20,"name":"512
|
48
48
|
server"},{"id":3,"ram":1024,"disk":40,"name":"1GB server"},{"id":4,"ram":2048,"disk":80,"name":"2GB
|
49
49
|
server"},{"id":5,"ram":4096,"disk":160,"name":"4GB server"},{"id":6,"ram":8192,"disk":320,"name":"8GB
|
50
50
|
server"},{"id":7,"ram":15872,"disk":620,"name":"15.5GB server"},{"id":8,"ram":30720,"disk":1200,"name":"30GB
|
51
51
|
server"}]}'
|
52
52
|
http_version:
|
53
|
-
recorded_at:
|
53
|
+
recorded_at: Fri, 17 Jan 2014 17:22:03 GMT
|
54
54
|
- request:
|
55
55
|
method: get
|
56
56
|
uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/1.json
|
@@ -59,7 +59,7 @@ http_interactions:
|
|
59
59
|
string: ''
|
60
60
|
headers:
|
61
61
|
User-Agent:
|
62
|
-
- fog/1.
|
62
|
+
- fog/1.15.0
|
63
63
|
Content-Type:
|
64
64
|
- application/json
|
65
65
|
Accept:
|
@@ -67,15 +67,15 @@ http_interactions:
|
|
67
67
|
X-Auth-Token: _ONE-TIME-TOKEN_
|
68
68
|
response:
|
69
69
|
status:
|
70
|
-
code:
|
70
|
+
code: 200
|
71
71
|
message:
|
72
72
|
headers:
|
73
|
-
Cache-Control:
|
74
|
-
- s-maxage=1800
|
75
73
|
Content-Type:
|
76
74
|
- application/json
|
75
|
+
Cache-Control:
|
76
|
+
- s-maxage=1800
|
77
77
|
Via:
|
78
|
-
- 1.1 Repose (Repose/2.
|
78
|
+
- 1.1 Repose (Repose/2.11.0), 1.1 varnish
|
79
79
|
Last-Modified:
|
80
80
|
- Wed, 19 Sep 2007 18:24:59 GMT
|
81
81
|
x-purge-key:
|
@@ -87,17 +87,17 @@ http_interactions:
|
|
87
87
|
Content-Length:
|
88
88
|
- '59'
|
89
89
|
Date:
|
90
|
-
-
|
90
|
+
- Fri, 17 Jan 2014 17:22:04 GMT
|
91
91
|
X-Varnish: _VARNISH-REQUEST-ID_
|
92
92
|
Age:
|
93
|
-
- '
|
93
|
+
- '0'
|
94
94
|
Connection:
|
95
95
|
- keep-alive
|
96
96
|
body:
|
97
|
-
encoding:
|
97
|
+
encoding: US-ASCII
|
98
98
|
string: ! '{"flavor":{"id":1,"ram":256,"disk":10,"name":"256 server"}}'
|
99
99
|
http_version:
|
100
|
-
recorded_at:
|
100
|
+
recorded_at: Fri, 17 Jan 2014 17:22:04 GMT
|
101
101
|
- request:
|
102
102
|
method: get
|
103
103
|
uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/2.json
|
@@ -106,7 +106,7 @@ http_interactions:
|
|
106
106
|
string: ''
|
107
107
|
headers:
|
108
108
|
User-Agent:
|
109
|
-
- fog/1.
|
109
|
+
- fog/1.15.0
|
110
110
|
Content-Type:
|
111
111
|
- application/json
|
112
112
|
Accept:
|
@@ -114,15 +114,15 @@ http_interactions:
|
|
114
114
|
X-Auth-Token: _ONE-TIME-TOKEN_
|
115
115
|
response:
|
116
116
|
status:
|
117
|
-
code:
|
117
|
+
code: 200
|
118
118
|
message:
|
119
119
|
headers:
|
120
|
-
Cache-Control:
|
121
|
-
- s-maxage=1800
|
122
120
|
Content-Type:
|
123
121
|
- application/json
|
122
|
+
Cache-Control:
|
123
|
+
- s-maxage=1800
|
124
124
|
Via:
|
125
|
-
- 1.1 Repose (Repose/2.
|
125
|
+
- 1.1 Repose (Repose/2.11.0), 1.1 varnish
|
126
126
|
Last-Modified:
|
127
127
|
- Wed, 19 Sep 2007 18:25:10 GMT
|
128
128
|
x-purge-key:
|
@@ -134,17 +134,17 @@ http_interactions:
|
|
134
134
|
Content-Length:
|
135
135
|
- '59'
|
136
136
|
Date:
|
137
|
-
-
|
137
|
+
- Fri, 17 Jan 2014 17:22:06 GMT
|
138
138
|
X-Varnish: _VARNISH-REQUEST-ID_
|
139
139
|
Age:
|
140
|
-
- '
|
140
|
+
- '0'
|
141
141
|
Connection:
|
142
142
|
- keep-alive
|
143
143
|
body:
|
144
|
-
encoding:
|
144
|
+
encoding: US-ASCII
|
145
145
|
string: ! '{"flavor":{"id":2,"ram":512,"disk":20,"name":"512 server"}}'
|
146
146
|
http_version:
|
147
|
-
recorded_at:
|
147
|
+
recorded_at: Fri, 17 Jan 2014 17:22:06 GMT
|
148
148
|
- request:
|
149
149
|
method: get
|
150
150
|
uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/3.json
|
@@ -153,7 +153,7 @@ http_interactions:
|
|
153
153
|
string: ''
|
154
154
|
headers:
|
155
155
|
User-Agent:
|
156
|
-
- fog/1.
|
156
|
+
- fog/1.15.0
|
157
157
|
Content-Type:
|
158
158
|
- application/json
|
159
159
|
Accept:
|
@@ -161,15 +161,15 @@ http_interactions:
|
|
161
161
|
X-Auth-Token: _ONE-TIME-TOKEN_
|
162
162
|
response:
|
163
163
|
status:
|
164
|
-
code:
|
164
|
+
code: 200
|
165
165
|
message:
|
166
166
|
headers:
|
167
|
-
Cache-Control:
|
168
|
-
- s-maxage=1800
|
169
167
|
Content-Type:
|
170
168
|
- application/json
|
169
|
+
Cache-Control:
|
170
|
+
- s-maxage=1800
|
171
171
|
Via:
|
172
|
-
- 1.1 Repose (Repose/2.
|
172
|
+
- 1.1 Repose (Repose/2.11.0), 1.1 varnish
|
173
173
|
Last-Modified:
|
174
174
|
- Fri, 21 Sep 2007 23:11:39 GMT
|
175
175
|
x-purge-key:
|
@@ -181,17 +181,17 @@ http_interactions:
|
|
181
181
|
Content-Length:
|
182
182
|
- '60'
|
183
183
|
Date:
|
184
|
-
-
|
184
|
+
- Fri, 17 Jan 2014 17:22:06 GMT
|
185
185
|
X-Varnish: _VARNISH-REQUEST-ID_
|
186
186
|
Age:
|
187
|
-
- '
|
187
|
+
- '0'
|
188
188
|
Connection:
|
189
189
|
- keep-alive
|
190
190
|
body:
|
191
|
-
encoding:
|
191
|
+
encoding: US-ASCII
|
192
192
|
string: ! '{"flavor":{"id":3,"ram":1024,"disk":40,"name":"1GB server"}}'
|
193
193
|
http_version:
|
194
|
-
recorded_at:
|
194
|
+
recorded_at: Fri, 17 Jan 2014 17:22:06 GMT
|
195
195
|
- request:
|
196
196
|
method: get
|
197
197
|
uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/4.json
|
@@ -200,7 +200,7 @@ http_interactions:
|
|
200
200
|
string: ''
|
201
201
|
headers:
|
202
202
|
User-Agent:
|
203
|
-
- fog/1.
|
203
|
+
- fog/1.15.0
|
204
204
|
Content-Type:
|
205
205
|
- application/json
|
206
206
|
Accept:
|
@@ -208,15 +208,15 @@ http_interactions:
|
|
208
208
|
X-Auth-Token: _ONE-TIME-TOKEN_
|
209
209
|
response:
|
210
210
|
status:
|
211
|
-
code:
|
211
|
+
code: 200
|
212
212
|
message:
|
213
213
|
headers:
|
214
|
-
Cache-Control:
|
215
|
-
- s-maxage=1800
|
216
214
|
Content-Type:
|
217
215
|
- application/json
|
216
|
+
Cache-Control:
|
217
|
+
- s-maxage=1800
|
218
218
|
Via:
|
219
|
-
- 1.1 Repose (Repose/2.
|
219
|
+
- 1.1 Repose (Repose/2.11.0), 1.1 varnish
|
220
220
|
Last-Modified:
|
221
221
|
- Wed, 19 Sep 2007 18:25:33 GMT
|
222
222
|
x-purge-key:
|
@@ -228,17 +228,17 @@ http_interactions:
|
|
228
228
|
Content-Length:
|
229
229
|
- '60'
|
230
230
|
Date:
|
231
|
-
-
|
231
|
+
- Fri, 17 Jan 2014 17:22:07 GMT
|
232
232
|
X-Varnish: _VARNISH-REQUEST-ID_
|
233
233
|
Age:
|
234
|
-
- '
|
234
|
+
- '0'
|
235
235
|
Connection:
|
236
236
|
- keep-alive
|
237
237
|
body:
|
238
|
-
encoding:
|
238
|
+
encoding: US-ASCII
|
239
239
|
string: ! '{"flavor":{"id":4,"ram":2048,"disk":80,"name":"2GB server"}}'
|
240
240
|
http_version:
|
241
|
-
recorded_at:
|
241
|
+
recorded_at: Fri, 17 Jan 2014 17:22:07 GMT
|
242
242
|
- request:
|
243
243
|
method: get
|
244
244
|
uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/5.json
|
@@ -247,7 +247,7 @@ http_interactions:
|
|
247
247
|
string: ''
|
248
248
|
headers:
|
249
249
|
User-Agent:
|
250
|
-
- fog/1.
|
250
|
+
- fog/1.15.0
|
251
251
|
Content-Type:
|
252
252
|
- application/json
|
253
253
|
Accept:
|
@@ -255,15 +255,15 @@ http_interactions:
|
|
255
255
|
X-Auth-Token: _ONE-TIME-TOKEN_
|
256
256
|
response:
|
257
257
|
status:
|
258
|
-
code:
|
258
|
+
code: 200
|
259
259
|
message:
|
260
260
|
headers:
|
261
|
-
Cache-Control:
|
262
|
-
- s-maxage=1800
|
263
261
|
Content-Type:
|
264
262
|
- application/json
|
263
|
+
Cache-Control:
|
264
|
+
- s-maxage=1800
|
265
265
|
Via:
|
266
|
-
- 1.1 Repose (Repose/2.
|
266
|
+
- 1.1 Repose (Repose/2.11.0), 1.1 varnish
|
267
267
|
Last-Modified:
|
268
268
|
- Tue, 18 Mar 2008 17:54:15 GMT
|
269
269
|
x-purge-key:
|
@@ -275,17 +275,17 @@ http_interactions:
|
|
275
275
|
Content-Length:
|
276
276
|
- '61'
|
277
277
|
Date:
|
278
|
-
-
|
278
|
+
- Fri, 17 Jan 2014 17:22:08 GMT
|
279
279
|
X-Varnish: _VARNISH-REQUEST-ID_
|
280
280
|
Age:
|
281
|
-
- '
|
281
|
+
- '0'
|
282
282
|
Connection:
|
283
283
|
- keep-alive
|
284
284
|
body:
|
285
|
-
encoding:
|
285
|
+
encoding: US-ASCII
|
286
286
|
string: ! '{"flavor":{"id":5,"ram":4096,"disk":160,"name":"4GB server"}}'
|
287
287
|
http_version:
|
288
|
-
recorded_at:
|
288
|
+
recorded_at: Fri, 17 Jan 2014 17:22:08 GMT
|
289
289
|
- request:
|
290
290
|
method: get
|
291
291
|
uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/6.json
|
@@ -294,7 +294,7 @@ http_interactions:
|
|
294
294
|
string: ''
|
295
295
|
headers:
|
296
296
|
User-Agent:
|
297
|
-
- fog/1.
|
297
|
+
- fog/1.15.0
|
298
298
|
Content-Type:
|
299
299
|
- application/json
|
300
300
|
Accept:
|
@@ -305,12 +305,12 @@ http_interactions:
|
|
305
305
|
code: 200
|
306
306
|
message:
|
307
307
|
headers:
|
308
|
-
Cache-Control:
|
309
|
-
- s-maxage=1800
|
310
308
|
Content-Type:
|
311
309
|
- application/json
|
310
|
+
Cache-Control:
|
311
|
+
- s-maxage=1800
|
312
312
|
Via:
|
313
|
-
- 1.1 Repose (Repose/2.
|
313
|
+
- 1.1 Repose (Repose/2.11.0), 1.1 varnish
|
314
314
|
Last-Modified:
|
315
315
|
- Mon, 28 Jan 2008 13:35:30 GMT
|
316
316
|
x-purge-key:
|
@@ -322,17 +322,17 @@ http_interactions:
|
|
322
322
|
Content-Length:
|
323
323
|
- '61'
|
324
324
|
Date:
|
325
|
-
-
|
325
|
+
- Fri, 17 Jan 2014 17:22:09 GMT
|
326
326
|
X-Varnish: _VARNISH-REQUEST-ID_
|
327
327
|
Age:
|
328
328
|
- '0'
|
329
329
|
Connection:
|
330
330
|
- keep-alive
|
331
331
|
body:
|
332
|
-
encoding:
|
332
|
+
encoding: US-ASCII
|
333
333
|
string: ! '{"flavor":{"id":6,"ram":8192,"disk":320,"name":"8GB server"}}'
|
334
334
|
http_version:
|
335
|
-
recorded_at:
|
335
|
+
recorded_at: Fri, 17 Jan 2014 17:22:09 GMT
|
336
336
|
- request:
|
337
337
|
method: get
|
338
338
|
uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/7.json
|
@@ -341,7 +341,7 @@ http_interactions:
|
|
341
341
|
string: ''
|
342
342
|
headers:
|
343
343
|
User-Agent:
|
344
|
-
- fog/1.
|
344
|
+
- fog/1.15.0
|
345
345
|
Content-Type:
|
346
346
|
- application/json
|
347
347
|
Accept:
|
@@ -349,15 +349,15 @@ http_interactions:
|
|
349
349
|
X-Auth-Token: _ONE-TIME-TOKEN_
|
350
350
|
response:
|
351
351
|
status:
|
352
|
-
code:
|
352
|
+
code: 200
|
353
353
|
message:
|
354
354
|
headers:
|
355
|
-
Cache-Control:
|
356
|
-
- s-maxage=1800
|
357
355
|
Content-Type:
|
358
356
|
- application/json
|
357
|
+
Cache-Control:
|
358
|
+
- s-maxage=1800
|
359
359
|
Via:
|
360
|
-
- 1.1 Repose (Repose/2.
|
360
|
+
- 1.1 Repose (Repose/2.11.0), 1.1 varnish
|
361
361
|
Last-Modified:
|
362
362
|
- Fri, 01 Apr 2011 00:02:01 GMT
|
363
363
|
x-purge-key:
|
@@ -369,17 +369,17 @@ http_interactions:
|
|
369
369
|
Content-Length:
|
370
370
|
- '65'
|
371
371
|
Date:
|
372
|
-
-
|
372
|
+
- Fri, 17 Jan 2014 17:22:09 GMT
|
373
373
|
X-Varnish: _VARNISH-REQUEST-ID_
|
374
374
|
Age:
|
375
|
-
- '
|
375
|
+
- '0'
|
376
376
|
Connection:
|
377
377
|
- keep-alive
|
378
378
|
body:
|
379
|
-
encoding:
|
379
|
+
encoding: US-ASCII
|
380
380
|
string: ! '{"flavor":{"id":7,"ram":15872,"disk":620,"name":"15.5GB server"}}'
|
381
381
|
http_version:
|
382
|
-
recorded_at:
|
382
|
+
recorded_at: Fri, 17 Jan 2014 17:22:09 GMT
|
383
383
|
- request:
|
384
384
|
method: get
|
385
385
|
uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/8.json
|
@@ -388,7 +388,7 @@ http_interactions:
|
|
388
388
|
string: ''
|
389
389
|
headers:
|
390
390
|
User-Agent:
|
391
|
-
- fog/1.
|
391
|
+
- fog/1.15.0
|
392
392
|
Content-Type:
|
393
393
|
- application/json
|
394
394
|
Accept:
|
@@ -396,15 +396,15 @@ http_interactions:
|
|
396
396
|
X-Auth-Token: _ONE-TIME-TOKEN_
|
397
397
|
response:
|
398
398
|
status:
|
399
|
-
code:
|
399
|
+
code: 200
|
400
400
|
message:
|
401
401
|
headers:
|
402
|
-
Cache-Control:
|
403
|
-
- s-maxage=1800
|
404
402
|
Content-Type:
|
405
403
|
- application/json
|
404
|
+
Cache-Control:
|
405
|
+
- s-maxage=1800
|
406
406
|
Via:
|
407
|
-
- 1.1 Repose (Repose/2.
|
407
|
+
- 1.1 Repose (Repose/2.11.0), 1.1 varnish
|
408
408
|
Last-Modified:
|
409
409
|
- Tue, 06 Dec 2011 17:31:55 GMT
|
410
410
|
x-purge-key:
|
@@ -416,17 +416,17 @@ http_interactions:
|
|
416
416
|
Content-Length:
|
417
417
|
- '64'
|
418
418
|
Date:
|
419
|
-
-
|
419
|
+
- Fri, 17 Jan 2014 17:22:10 GMT
|
420
420
|
X-Varnish: _VARNISH-REQUEST-ID_
|
421
421
|
Age:
|
422
|
-
- '
|
422
|
+
- '0'
|
423
423
|
Connection:
|
424
424
|
- keep-alive
|
425
425
|
body:
|
426
|
-
encoding:
|
426
|
+
encoding: US-ASCII
|
427
427
|
string: ! '{"flavor":{"id":8,"ram":30720,"disk":1200,"name":"30GB server"}}'
|
428
428
|
http_version:
|
429
|
-
recorded_at:
|
429
|
+
recorded_at: Fri, 17 Jan 2014 17:22:10 GMT
|
430
430
|
- request:
|
431
431
|
method: post
|
432
432
|
uri: https://identity.api.rackspacecloud.com/v2.0/tokens
|
@@ -435,7 +435,7 @@ http_interactions:
|
|
435
435
|
string: ! '{"auth":{"RAX-KSKEY:apiKeyCredentials":{"username":"_RAX_USERNAME_","apiKey":"_RAX_PASSWORD_"}}}'
|
436
436
|
headers:
|
437
437
|
User-Agent:
|
438
|
-
- fog/1.
|
438
|
+
- fog/1.19.0
|
439
439
|
Content-Type:
|
440
440
|
- application/json
|
441
441
|
Accept:
|
@@ -449,30 +449,28 @@ http_interactions:
|
|
449
449
|
Server:
|
450
450
|
- nginx/0.8.55
|
451
451
|
Date:
|
452
|
-
-
|
452
|
+
- Fri, 17 Jan 2014 19:13:18 GMT
|
453
453
|
Content-Type:
|
454
454
|
- application/json
|
455
|
+
Transfer-Encoding:
|
456
|
+
- ''
|
455
457
|
Connection:
|
456
|
-
-
|
457
|
-
X-NewRelic-App-Data:
|
458
|
-
- PxQGUF9aDwETVlhSBQgFVUYdFGQHBDcQUQxLA1tMXV1dORYyVBNFDgFCa04sBkpAVR1BMUdDXggDEWFWAEYiEkAOUQFZTF1dXUcVUR9RH1JKBAdRVlMICglIUFIAHRVeUFRTBlNXVwZUAVkBDgtVEG4=
|
458
|
+
- close
|
459
459
|
vary:
|
460
460
|
- Accept, Accept-Encoding, X-Auth-Token
|
461
461
|
VIA:
|
462
462
|
- 1.0 Repose (Repose/2.3.5)
|
463
|
-
Content-Length:
|
464
|
-
- '6671'
|
465
463
|
Front-End-Https:
|
466
464
|
- 'on'
|
467
465
|
body:
|
468
|
-
encoding:
|
469
|
-
string: ! '{"access":{"token":{"id":"
|
466
|
+
encoding: US-ASCII
|
467
|
+
string: ! '{"access":{"token":{"id":"000000","expires":"2014-01-18T14:51:11.824Z","tenant":{"id":"000000","name":"000000"},"RAX-AUTH:authenticatedBy":["APIKEY"]},"serviceCatalog":[{"name":"cloudFiles","endpoints":[{"region":"DFW","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.dfw1.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.dfw1.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"ORD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.ord1.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.ord1.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"SYD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.syd2.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.syd2.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"IAD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.iad3.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.iad3.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"HKG","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/storage101.hkg1.clouddrive.com\/v1\/_CDN-TENANT-NAME_","internalURL":"https:\/\/snet-storage101.hkg1.clouddrive.com\/v1\/_CDN-TENANT-NAME_"}],"type":"object-store"},{"name":"cloudFilesCDN","endpoints":[{"region":"DFW","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn1.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"ORD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn2.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"SYD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn4.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"IAD","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn5.clouddrive.com\/v1\/_CDN-TENANT-NAME_"},{"region":"HKG","tenantId":"_CDN-TENANT-NAME_","publicURL":"https:\/\/cdn6.clouddrive.com\/v1\/_CDN-TENANT-NAME_"}],"type":"rax:object-cdn"},{"name":"autoscale","endpoints":[{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.autoscale.api.rackspacecloud.com\/v1.0\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.autoscale.api.rackspacecloud.com\/v1.0\/000000"},{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.autoscale.api.rackspacecloud.com\/v1.0\/000000"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.autoscale.api.rackspacecloud.com\/v1.0\/000000"},{"region":"HKG","tenantId":"000000","publicURL":"https:\/\/hkg.autoscale.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:autoscale"},{"name":"cloudBlockStorage","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.blockstorage.api.rackspacecloud.com\/v1\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.blockstorage.api.rackspacecloud.com\/v1\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.blockstorage.api.rackspacecloud.com\/v1\/000000"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.blockstorage.api.rackspacecloud.com\/v1\/000000"},{"region":"HKG","tenantId":"000000","publicURL":"https:\/\/hkg.blockstorage.api.rackspacecloud.com\/v1\/000000"}],"type":"volume"},{"name":"cloudDatabases","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.databases.api.rackspacecloud.com\/v1.0\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.databases.api.rackspacecloud.com\/v1.0\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.databases.api.rackspacecloud.com\/v1.0\/000000"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.databases.api.rackspacecloud.com\/v1.0\/000000"},{"region":"HKG","tenantId":"000000","publicURL":"https:\/\/hkg.databases.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:database"},{"name":"cloudLoadBalancers","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"},{"region":"HKG","tenantId":"000000","publicURL":"https:\/\/hkg.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.loadbalancers.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:load-balancer"},{"name":"cloudServersOpenStack","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/syd.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/syd.servers.api.rackspacecloud.com\/","versionId":"2"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/ord.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/ord.servers.api.rackspacecloud.com\/","versionId":"2"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/dfw.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/dfw.servers.api.rackspacecloud.com\/","versionId":"2"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/iad.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/iad.servers.api.rackspacecloud.com\/","versionId":"2"},{"region":"HKG","tenantId":"000000","publicURL":"https:\/\/hkg.servers.api.rackspacecloud.com\/v2\/000000","versionInfo":"https:\/\/hkg.servers.api.rackspacecloud.com\/v2","versionList":"https:\/\/hkg.servers.api.rackspacecloud.com\/","versionId":"2"}],"type":"compute"},{"name":"cloudQueues","endpoints":[{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.queues.api.rackspacecloud.com\/v1\/000000","internalURL":"https:\/\/snet-ord.queues.api.rackspacecloud.com\/v1\/000000"},{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.queues.api.rackspacecloud.com\/v1\/000000","internalURL":"https:\/\/snet-syd.queues.api.rackspacecloud.com\/v1\/000000"},{"region":"HKG","tenantId":"000000","publicURL":"https:\/\/hkg.queues.api.rackspacecloud.com\/v1\/000000","internalURL":"https:\/\/snet-hkg.queues.api.rackspacecloud.com\/v1\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.queues.api.rackspacecloud.com\/v1\/000000","internalURL":"https:\/\/snet-dfw.queues.api.rackspacecloud.com\/v1\/000000"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.queues.api.rackspacecloud.com\/v1\/000000","internalURL":"https:\/\/snet-iad.queues.api.rackspacecloud.com\/v1\/000000"}],"type":"rax:queues"},{"name":"cloudOrchestration","endpoints":[{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.orchestration.api.rackspacecloud.com\/v1\/000000"},{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.orchestration.api.rackspacecloud.com\/v1\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.orchestration.api.rackspacecloud.com\/v1\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.orchestration.api.rackspacecloud.com\/v1\/000000"}],"type":"orchestration"},{"name":"cloudBackup","endpoints":[{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.backup.api.rackspacecloud.com\/v1.0\/000000"},{"region":"DFW","tenantId":"000000","publicURL":"https:\/\/dfw.backup.api.rackspacecloud.com\/v1.0\/000000"},{"region":"ORD","tenantId":"000000","publicURL":"https:\/\/ord.backup.api.rackspacecloud.com\/v1.0\/000000"},{"region":"SYD","tenantId":"000000","publicURL":"https:\/\/syd.backup.api.rackspacecloud.com\/v1.0\/000000"},{"region":"HKG","tenantId":"000000","publicURL":"https:\/\/hkg.backup.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:backup"},{"name":"cloudImages","endpoints":[{"region":"IAD","tenantId":"000000","publicURL":"https:\/\/iad.images.api.rackspacecloud.com\/v2\/000000"}],"type":"image"},{"name":"cloudDNS","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/dns.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:dns"},{"name":"cloudMonitoring","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/monitoring.api.rackspacecloud.com\/v1.0\/000000"}],"type":"rax:monitor"},{"name":"cloudServers","endpoints":[{"tenantId":"000000","publicURL":"https:\/\/servers.api.rackspacecloud.com\/v1.0\/000000","versionInfo":"https:\/\/servers.api.rackspacecloud.com\/v1.0","versionList":"https:\/\/servers.api.rackspacecloud.com\/","versionId":"1.0"}],"type":"compute"}],"user":{"id":"296063","roles":[{"id":"10000150","description":"Checkmate
|
470
468
|
Access role","name":"checkmate"},{"tenantId":"_CDN-TENANT-NAME_","id":"5","description":"A
|
471
469
|
Role that allows a user access to keystone Service methods","name":"object-store:default"},{"tenantId":"000000","id":"6","description":"A
|
472
470
|
Role that allows a user access to keystone Service methods","name":"compute:default"},{"id":"3","description":"User
|
473
|
-
Admin Role.","name":"identity:user-admin"}],"name":"_RAX_USERNAME_","RAX-AUTH:defaultRegion":"
|
471
|
+
Admin Role.","name":"identity:user-admin"}],"name":"_RAX_USERNAME_","RAX-AUTH:defaultRegion":"DFW"}}}'
|
474
472
|
http_version:
|
475
|
-
recorded_at:
|
473
|
+
recorded_at: Fri, 17 Jan 2014 19:13:18 GMT
|
476
474
|
- request:
|
477
475
|
method: get
|
478
476
|
uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/detail.json
|
@@ -481,7 +479,7 @@ http_interactions:
|
|
481
479
|
string: ''
|
482
480
|
headers:
|
483
481
|
User-Agent:
|
484
|
-
- fog/1.
|
482
|
+
- fog/1.19.0
|
485
483
|
Content-Type:
|
486
484
|
- application/json
|
487
485
|
Accept:
|
@@ -489,41 +487,41 @@ http_interactions:
|
|
489
487
|
X-Auth-Token: _ONE-TIME-TOKEN_
|
490
488
|
response:
|
491
489
|
status:
|
492
|
-
code:
|
490
|
+
code: 200
|
493
491
|
message:
|
494
492
|
headers:
|
493
|
+
Server:
|
494
|
+
- Jetty(8.0.y.z-SNAPSHOT)
|
495
|
+
X-Varnish: _VARNISH-REQUEST-ID_
|
496
|
+
Vary:
|
497
|
+
- Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
|
495
498
|
Cache-Control:
|
496
499
|
- s-maxage=1800
|
497
500
|
Content-Type:
|
498
501
|
- application/json
|
502
|
+
x-purge-key:
|
503
|
+
- /flavors
|
504
|
+
Date:
|
505
|
+
- Fri, 17 Jan 2014 19:13:19 GMT
|
499
506
|
Via:
|
500
|
-
- 1.1 Repose (Repose/2.
|
507
|
+
- 1.1 Repose (Repose/2.11.0), 1.1 varnish
|
508
|
+
Connection:
|
509
|
+
- close
|
501
510
|
Last-Modified:
|
502
511
|
- Tue, 06 Dec 2011 17:31:55 GMT
|
503
|
-
|
504
|
-
-
|
505
|
-
Vary:
|
506
|
-
- Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
|
507
|
-
Server:
|
508
|
-
- Jetty(8.0.y.z-SNAPSHOT)
|
512
|
+
Age:
|
513
|
+
- '0'
|
509
514
|
Content-Length:
|
510
515
|
- '422'
|
511
|
-
Date:
|
512
|
-
- Tue, 22 Oct 2013 20:16:57 GMT
|
513
|
-
X-Varnish: _VARNISH-REQUEST-ID_
|
514
|
-
Age:
|
515
|
-
- '462'
|
516
|
-
Connection:
|
517
|
-
- keep-alive
|
518
516
|
body:
|
519
|
-
encoding:
|
517
|
+
encoding: US-ASCII
|
520
518
|
string: ! '{"flavors":[{"id":1,"ram":256,"disk":10,"name":"256 server"},{"id":2,"ram":512,"disk":20,"name":"512
|
521
519
|
server"},{"id":3,"ram":1024,"disk":40,"name":"1GB server"},{"id":4,"ram":2048,"disk":80,"name":"2GB
|
522
520
|
server"},{"id":5,"ram":4096,"disk":160,"name":"4GB server"},{"id":6,"ram":8192,"disk":320,"name":"8GB
|
523
521
|
server"},{"id":7,"ram":15872,"disk":620,"name":"15.5GB server"},{"id":8,"ram":30720,"disk":1200,"name":"30GB
|
524
522
|
server"}]}'
|
525
523
|
http_version:
|
526
|
-
recorded_at:
|
524
|
+
recorded_at: Fri, 17 Jan 2014 19:13:19 GMT
|
527
525
|
- request:
|
528
526
|
method: get
|
529
527
|
uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/1.json
|
@@ -532,7 +530,7 @@ http_interactions:
|
|
532
530
|
string: ''
|
533
531
|
headers:
|
534
532
|
User-Agent:
|
535
|
-
- fog/1.
|
533
|
+
- fog/1.19.0
|
536
534
|
Content-Type:
|
537
535
|
- application/json
|
538
536
|
Accept:
|
@@ -540,37 +538,37 @@ http_interactions:
|
|
540
538
|
X-Auth-Token: _ONE-TIME-TOKEN_
|
541
539
|
response:
|
542
540
|
status:
|
543
|
-
code:
|
541
|
+
code: 200
|
544
542
|
message:
|
545
543
|
headers:
|
544
|
+
Server:
|
545
|
+
- Jetty(8.0.y.z-SNAPSHOT)
|
546
|
+
X-Varnish: _VARNISH-REQUEST-ID_
|
547
|
+
Vary:
|
548
|
+
- Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
|
546
549
|
Cache-Control:
|
547
550
|
- s-maxage=1800
|
548
551
|
Content-Type:
|
549
552
|
- application/json
|
553
|
+
x-purge-key:
|
554
|
+
- /flavors
|
555
|
+
Date:
|
556
|
+
- Fri, 17 Jan 2014 19:13:19 GMT
|
550
557
|
Via:
|
551
|
-
- 1.1 Repose (Repose/2.
|
558
|
+
- 1.1 Repose (Repose/2.11.0), 1.1 varnish
|
559
|
+
Connection:
|
560
|
+
- close
|
552
561
|
Last-Modified:
|
553
562
|
- Wed, 19 Sep 2007 18:24:59 GMT
|
554
|
-
|
555
|
-
-
|
556
|
-
Vary:
|
557
|
-
- Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
|
558
|
-
Server:
|
559
|
-
- Jetty(8.0.y.z-SNAPSHOT)
|
563
|
+
Age:
|
564
|
+
- '0'
|
560
565
|
Content-Length:
|
561
566
|
- '59'
|
562
|
-
Date:
|
563
|
-
- Tue, 22 Oct 2013 20:16:58 GMT
|
564
|
-
X-Varnish: _VARNISH-REQUEST-ID_
|
565
|
-
Age:
|
566
|
-
- '461'
|
567
|
-
Connection:
|
568
|
-
- keep-alive
|
569
567
|
body:
|
570
|
-
encoding:
|
568
|
+
encoding: US-ASCII
|
571
569
|
string: ! '{"flavor":{"id":1,"ram":256,"disk":10,"name":"256 server"}}'
|
572
570
|
http_version:
|
573
|
-
recorded_at:
|
571
|
+
recorded_at: Fri, 17 Jan 2014 19:13:19 GMT
|
574
572
|
- request:
|
575
573
|
method: get
|
576
574
|
uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/2.json
|
@@ -579,7 +577,7 @@ http_interactions:
|
|
579
577
|
string: ''
|
580
578
|
headers:
|
581
579
|
User-Agent:
|
582
|
-
- fog/1.
|
580
|
+
- fog/1.19.0
|
583
581
|
Content-Type:
|
584
582
|
- application/json
|
585
583
|
Accept:
|
@@ -590,34 +588,34 @@ http_interactions:
|
|
590
588
|
code: 200
|
591
589
|
message:
|
592
590
|
headers:
|
591
|
+
Server:
|
592
|
+
- Jetty(8.0.y.z-SNAPSHOT)
|
593
|
+
X-Varnish: _VARNISH-REQUEST-ID_
|
594
|
+
Vary:
|
595
|
+
- Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
|
593
596
|
Cache-Control:
|
594
597
|
- s-maxage=1800
|
595
598
|
Content-Type:
|
596
599
|
- application/json
|
597
|
-
Via:
|
598
|
-
- 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
|
599
|
-
Last-Modified:
|
600
|
-
- Wed, 19 Sep 2007 18:25:10 GMT
|
601
600
|
x-purge-key:
|
602
601
|
- /flavors
|
603
|
-
Vary:
|
604
|
-
- Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
|
605
|
-
Server:
|
606
|
-
- Jetty(8.0.y.z-SNAPSHOT)
|
607
|
-
Content-Length:
|
608
|
-
- '59'
|
609
602
|
Date:
|
610
|
-
-
|
611
|
-
|
603
|
+
- Fri, 17 Jan 2014 19:13:20 GMT
|
604
|
+
Via:
|
605
|
+
- 1.1 Repose (Repose/2.11.0), 1.1 varnish
|
606
|
+
Connection:
|
607
|
+
- close
|
608
|
+
Last-Modified:
|
609
|
+
- Wed, 19 Sep 2007 18:25:10 GMT
|
612
610
|
Age:
|
613
611
|
- '0'
|
614
|
-
|
615
|
-
-
|
612
|
+
Content-Length:
|
613
|
+
- '59'
|
616
614
|
body:
|
617
|
-
encoding:
|
615
|
+
encoding: US-ASCII
|
618
616
|
string: ! '{"flavor":{"id":2,"ram":512,"disk":20,"name":"512 server"}}'
|
619
617
|
http_version:
|
620
|
-
recorded_at:
|
618
|
+
recorded_at: Fri, 17 Jan 2014 19:13:20 GMT
|
621
619
|
- request:
|
622
620
|
method: get
|
623
621
|
uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/3.json
|
@@ -626,7 +624,7 @@ http_interactions:
|
|
626
624
|
string: ''
|
627
625
|
headers:
|
628
626
|
User-Agent:
|
629
|
-
- fog/1.
|
627
|
+
- fog/1.19.0
|
630
628
|
Content-Type:
|
631
629
|
- application/json
|
632
630
|
Accept:
|
@@ -634,37 +632,37 @@ http_interactions:
|
|
634
632
|
X-Auth-Token: _ONE-TIME-TOKEN_
|
635
633
|
response:
|
636
634
|
status:
|
637
|
-
code:
|
635
|
+
code: 200
|
638
636
|
message:
|
639
637
|
headers:
|
638
|
+
Server:
|
639
|
+
- Jetty(8.0.y.z-SNAPSHOT)
|
640
|
+
X-Varnish: _VARNISH-REQUEST-ID_
|
641
|
+
Vary:
|
642
|
+
- Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
|
640
643
|
Cache-Control:
|
641
644
|
- s-maxage=1800
|
642
645
|
Content-Type:
|
643
646
|
- application/json
|
647
|
+
x-purge-key:
|
648
|
+
- /flavors
|
649
|
+
Date:
|
650
|
+
- Fri, 17 Jan 2014 19:13:21 GMT
|
644
651
|
Via:
|
645
|
-
- 1.1 Repose (Repose/2.
|
652
|
+
- 1.1 Repose (Repose/2.11.0), 1.1 varnish
|
653
|
+
Connection:
|
654
|
+
- close
|
646
655
|
Last-Modified:
|
647
656
|
- Fri, 21 Sep 2007 23:11:39 GMT
|
648
|
-
|
649
|
-
-
|
650
|
-
Vary:
|
651
|
-
- Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
|
652
|
-
Server:
|
653
|
-
- Jetty(8.0.y.z-SNAPSHOT)
|
657
|
+
Age:
|
658
|
+
- '0'
|
654
659
|
Content-Length:
|
655
660
|
- '60'
|
656
|
-
Date:
|
657
|
-
- Tue, 22 Oct 2013 20:16:59 GMT
|
658
|
-
X-Varnish: _VARNISH-REQUEST-ID_
|
659
|
-
Age:
|
660
|
-
- '461'
|
661
|
-
Connection:
|
662
|
-
- keep-alive
|
663
661
|
body:
|
664
|
-
encoding:
|
662
|
+
encoding: US-ASCII
|
665
663
|
string: ! '{"flavor":{"id":3,"ram":1024,"disk":40,"name":"1GB server"}}'
|
666
664
|
http_version:
|
667
|
-
recorded_at:
|
665
|
+
recorded_at: Fri, 17 Jan 2014 19:13:21 GMT
|
668
666
|
- request:
|
669
667
|
method: get
|
670
668
|
uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/4.json
|
@@ -673,7 +671,7 @@ http_interactions:
|
|
673
671
|
string: ''
|
674
672
|
headers:
|
675
673
|
User-Agent:
|
676
|
-
- fog/1.
|
674
|
+
- fog/1.19.0
|
677
675
|
Content-Type:
|
678
676
|
- application/json
|
679
677
|
Accept:
|
@@ -684,34 +682,34 @@ http_interactions:
|
|
684
682
|
code: 200
|
685
683
|
message:
|
686
684
|
headers:
|
685
|
+
Server:
|
686
|
+
- Jetty(8.0.y.z-SNAPSHOT)
|
687
|
+
X-Varnish: _VARNISH-REQUEST-ID_
|
688
|
+
Vary:
|
689
|
+
- Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
|
687
690
|
Cache-Control:
|
688
691
|
- s-maxage=1800
|
689
692
|
Content-Type:
|
690
693
|
- application/json
|
691
|
-
Via:
|
692
|
-
- 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
|
693
|
-
Last-Modified:
|
694
|
-
- Wed, 19 Sep 2007 18:25:33 GMT
|
695
694
|
x-purge-key:
|
696
695
|
- /flavors
|
697
|
-
Vary:
|
698
|
-
- Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
|
699
|
-
Server:
|
700
|
-
- Jetty(8.0.y.z-SNAPSHOT)
|
701
|
-
Content-Length:
|
702
|
-
- '60'
|
703
696
|
Date:
|
704
|
-
-
|
705
|
-
|
697
|
+
- Fri, 17 Jan 2014 19:13:21 GMT
|
698
|
+
Via:
|
699
|
+
- 1.1 Repose (Repose/2.11.0), 1.1 varnish
|
700
|
+
Connection:
|
701
|
+
- close
|
702
|
+
Last-Modified:
|
703
|
+
- Wed, 19 Sep 2007 18:25:33 GMT
|
706
704
|
Age:
|
707
705
|
- '0'
|
708
|
-
|
709
|
-
-
|
706
|
+
Content-Length:
|
707
|
+
- '60'
|
710
708
|
body:
|
711
|
-
encoding:
|
709
|
+
encoding: US-ASCII
|
712
710
|
string: ! '{"flavor":{"id":4,"ram":2048,"disk":80,"name":"2GB server"}}'
|
713
711
|
http_version:
|
714
|
-
recorded_at:
|
712
|
+
recorded_at: Fri, 17 Jan 2014 19:13:21 GMT
|
715
713
|
- request:
|
716
714
|
method: get
|
717
715
|
uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/5.json
|
@@ -720,7 +718,7 @@ http_interactions:
|
|
720
718
|
string: ''
|
721
719
|
headers:
|
722
720
|
User-Agent:
|
723
|
-
- fog/1.
|
721
|
+
- fog/1.19.0
|
724
722
|
Content-Type:
|
725
723
|
- application/json
|
726
724
|
Accept:
|
@@ -731,34 +729,34 @@ http_interactions:
|
|
731
729
|
code: 200
|
732
730
|
message:
|
733
731
|
headers:
|
732
|
+
Server:
|
733
|
+
- Jetty(8.0.y.z-SNAPSHOT)
|
734
|
+
X-Varnish: _VARNISH-REQUEST-ID_
|
735
|
+
Vary:
|
736
|
+
- Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
|
734
737
|
Cache-Control:
|
735
738
|
- s-maxage=1800
|
736
739
|
Content-Type:
|
737
740
|
- application/json
|
738
|
-
Via:
|
739
|
-
- 1.1 Repose (Repose/2.8.0.2), 1.1 varnish
|
740
|
-
Last-Modified:
|
741
|
-
- Tue, 18 Mar 2008 17:54:15 GMT
|
742
741
|
x-purge-key:
|
743
742
|
- /flavors
|
744
|
-
Vary:
|
745
|
-
- Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
|
746
|
-
Server:
|
747
|
-
- Jetty(8.0.y.z-SNAPSHOT)
|
748
|
-
Content-Length:
|
749
|
-
- '61'
|
750
743
|
Date:
|
751
|
-
-
|
752
|
-
|
744
|
+
- Fri, 17 Jan 2014 19:13:22 GMT
|
745
|
+
Via:
|
746
|
+
- 1.1 Repose (Repose/2.11.0), 1.1 varnish
|
747
|
+
Connection:
|
748
|
+
- close
|
749
|
+
Last-Modified:
|
750
|
+
- Tue, 18 Mar 2008 17:54:15 GMT
|
753
751
|
Age:
|
754
752
|
- '0'
|
755
|
-
|
756
|
-
-
|
753
|
+
Content-Length:
|
754
|
+
- '61'
|
757
755
|
body:
|
758
|
-
encoding:
|
756
|
+
encoding: US-ASCII
|
759
757
|
string: ! '{"flavor":{"id":5,"ram":4096,"disk":160,"name":"4GB server"}}'
|
760
758
|
http_version:
|
761
|
-
recorded_at:
|
759
|
+
recorded_at: Fri, 17 Jan 2014 19:13:22 GMT
|
762
760
|
- request:
|
763
761
|
method: get
|
764
762
|
uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/6.json
|
@@ -767,7 +765,7 @@ http_interactions:
|
|
767
765
|
string: ''
|
768
766
|
headers:
|
769
767
|
User-Agent:
|
770
|
-
- fog/1.
|
768
|
+
- fog/1.19.0
|
771
769
|
Content-Type:
|
772
770
|
- application/json
|
773
771
|
Accept:
|
@@ -775,37 +773,37 @@ http_interactions:
|
|
775
773
|
X-Auth-Token: _ONE-TIME-TOKEN_
|
776
774
|
response:
|
777
775
|
status:
|
778
|
-
code:
|
776
|
+
code: 200
|
779
777
|
message:
|
780
778
|
headers:
|
779
|
+
Server:
|
780
|
+
- Jetty(8.0.y.z-SNAPSHOT)
|
781
|
+
X-Varnish: _VARNISH-REQUEST-ID_
|
782
|
+
Vary:
|
783
|
+
- Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
|
781
784
|
Cache-Control:
|
782
785
|
- s-maxage=1800
|
783
786
|
Content-Type:
|
784
787
|
- application/json
|
788
|
+
x-purge-key:
|
789
|
+
- /flavors
|
790
|
+
Date:
|
791
|
+
- Fri, 17 Jan 2014 19:13:22 GMT
|
785
792
|
Via:
|
786
|
-
- 1.1 Repose (Repose/2.
|
793
|
+
- 1.1 Repose (Repose/2.11.0), 1.1 varnish
|
794
|
+
Connection:
|
795
|
+
- close
|
787
796
|
Last-Modified:
|
788
797
|
- Mon, 28 Jan 2008 13:35:30 GMT
|
789
|
-
|
790
|
-
-
|
791
|
-
Vary:
|
792
|
-
- Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
|
793
|
-
Server:
|
794
|
-
- Jetty(8.0.y.z-SNAPSHOT)
|
798
|
+
Age:
|
799
|
+
- '0'
|
795
800
|
Content-Length:
|
796
801
|
- '61'
|
797
|
-
Date:
|
798
|
-
- Tue, 22 Oct 2013 20:17:01 GMT
|
799
|
-
X-Varnish: _VARNISH-REQUEST-ID_
|
800
|
-
Age:
|
801
|
-
- '30'
|
802
|
-
Connection:
|
803
|
-
- keep-alive
|
804
802
|
body:
|
805
|
-
encoding:
|
803
|
+
encoding: US-ASCII
|
806
804
|
string: ! '{"flavor":{"id":6,"ram":8192,"disk":320,"name":"8GB server"}}'
|
807
805
|
http_version:
|
808
|
-
recorded_at:
|
806
|
+
recorded_at: Fri, 17 Jan 2014 19:13:22 GMT
|
809
807
|
- request:
|
810
808
|
method: get
|
811
809
|
uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/7.json
|
@@ -814,7 +812,7 @@ http_interactions:
|
|
814
812
|
string: ''
|
815
813
|
headers:
|
816
814
|
User-Agent:
|
817
|
-
- fog/1.
|
815
|
+
- fog/1.19.0
|
818
816
|
Content-Type:
|
819
817
|
- application/json
|
820
818
|
Accept:
|
@@ -822,37 +820,37 @@ http_interactions:
|
|
822
820
|
X-Auth-Token: _ONE-TIME-TOKEN_
|
823
821
|
response:
|
824
822
|
status:
|
825
|
-
code:
|
823
|
+
code: 200
|
826
824
|
message:
|
827
825
|
headers:
|
826
|
+
Server:
|
827
|
+
- Jetty(8.0.y.z-SNAPSHOT)
|
828
|
+
X-Varnish: _VARNISH-REQUEST-ID_
|
829
|
+
Vary:
|
830
|
+
- Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
|
828
831
|
Cache-Control:
|
829
832
|
- s-maxage=1800
|
830
833
|
Content-Type:
|
831
834
|
- application/json
|
835
|
+
x-purge-key:
|
836
|
+
- /flavors
|
837
|
+
Date:
|
838
|
+
- Fri, 17 Jan 2014 19:13:23 GMT
|
832
839
|
Via:
|
833
|
-
- 1.1 Repose (Repose/2.
|
840
|
+
- 1.1 Repose (Repose/2.11.0), 1.1 varnish
|
841
|
+
Connection:
|
842
|
+
- close
|
834
843
|
Last-Modified:
|
835
844
|
- Fri, 01 Apr 2011 00:02:01 GMT
|
836
|
-
|
837
|
-
-
|
838
|
-
Vary:
|
839
|
-
- Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
|
840
|
-
Server:
|
841
|
-
- Jetty(8.0.y.z-SNAPSHOT)
|
845
|
+
Age:
|
846
|
+
- '0'
|
842
847
|
Content-Length:
|
843
848
|
- '65'
|
844
|
-
Date:
|
845
|
-
- Tue, 22 Oct 2013 20:17:02 GMT
|
846
|
-
X-Varnish: _VARNISH-REQUEST-ID_
|
847
|
-
Age:
|
848
|
-
- '460'
|
849
|
-
Connection:
|
850
|
-
- keep-alive
|
851
849
|
body:
|
852
|
-
encoding:
|
850
|
+
encoding: US-ASCII
|
853
851
|
string: ! '{"flavor":{"id":7,"ram":15872,"disk":620,"name":"15.5GB server"}}'
|
854
852
|
http_version:
|
855
|
-
recorded_at:
|
853
|
+
recorded_at: Fri, 17 Jan 2014 19:13:23 GMT
|
856
854
|
- request:
|
857
855
|
method: get
|
858
856
|
uri: https://servers.api.rackspacecloud.com/v1.0/000000/flavors/8.json
|
@@ -861,7 +859,7 @@ http_interactions:
|
|
861
859
|
string: ''
|
862
860
|
headers:
|
863
861
|
User-Agent:
|
864
|
-
- fog/1.
|
862
|
+
- fog/1.19.0
|
865
863
|
Content-Type:
|
866
864
|
- application/json
|
867
865
|
Accept:
|
@@ -869,35 +867,35 @@ http_interactions:
|
|
869
867
|
X-Auth-Token: _ONE-TIME-TOKEN_
|
870
868
|
response:
|
871
869
|
status:
|
872
|
-
code:
|
870
|
+
code: 200
|
873
871
|
message:
|
874
872
|
headers:
|
873
|
+
Server:
|
874
|
+
- Jetty(8.0.y.z-SNAPSHOT)
|
875
|
+
X-Varnish: _VARNISH-REQUEST-ID_
|
876
|
+
Vary:
|
877
|
+
- Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
|
875
878
|
Cache-Control:
|
876
879
|
- s-maxage=1800
|
877
880
|
Content-Type:
|
878
881
|
- application/json
|
882
|
+
x-purge-key:
|
883
|
+
- /flavors
|
884
|
+
Date:
|
885
|
+
- Fri, 17 Jan 2014 19:13:23 GMT
|
879
886
|
Via:
|
880
|
-
- 1.1 Repose (Repose/2.
|
887
|
+
- 1.1 Repose (Repose/2.11.0), 1.1 varnish
|
888
|
+
Connection:
|
889
|
+
- close
|
881
890
|
Last-Modified:
|
882
891
|
- Tue, 06 Dec 2011 17:31:55 GMT
|
883
|
-
|
884
|
-
-
|
885
|
-
Vary:
|
886
|
-
- Accept-Encoding, Accept, Accept-Encoding, X-Auth-Token
|
887
|
-
Server:
|
888
|
-
- Jetty(8.0.y.z-SNAPSHOT)
|
892
|
+
Age:
|
893
|
+
- '0'
|
889
894
|
Content-Length:
|
890
895
|
- '64'
|
891
|
-
Date:
|
892
|
-
- Tue, 22 Oct 2013 20:17:02 GMT
|
893
|
-
X-Varnish: _VARNISH-REQUEST-ID_
|
894
|
-
Age:
|
895
|
-
- '459'
|
896
|
-
Connection:
|
897
|
-
- keep-alive
|
898
896
|
body:
|
899
|
-
encoding:
|
897
|
+
encoding: US-ASCII
|
900
898
|
string: ! '{"flavor":{"id":8,"ram":30720,"disk":1200,"name":"30GB server"}}'
|
901
899
|
http_version:
|
902
|
-
recorded_at:
|
903
|
-
recorded_with: VCR 2.
|
900
|
+
recorded_at: Fri, 17 Jan 2014 19:13:23 GMT
|
901
|
+
recorded_with: VCR 2.8.0
|