fog 1.35.0 → 1.36.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (96) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +2 -0
  3. data/CHANGELOG.md +50 -0
  4. data/fog.gemspec +6 -6
  5. data/lib/fog/digitalocean/models/compute/server.rb +0 -1
  6. data/lib/fog/digitalocean/requests/compute_v2/create_ssh_key.rb +10 -8
  7. data/lib/fog/digitalocean/requests/compute_v2/delete_ssh_key.rb +5 -1
  8. data/lib/fog/digitalocean/requests/compute_v2/list_ssh_keys.rb +6 -1
  9. data/lib/fog/glesys/models/compute/server.rb +0 -1
  10. data/lib/fog/joyent/compute.rb +6 -1
  11. data/lib/fog/linode/compute.rb +3 -0
  12. data/lib/fog/linode/models/compute/data_center.rb +1 -0
  13. data/lib/fog/linode/models/compute/flavor.rb +3 -0
  14. data/lib/fog/linode/models/compute/flavors.rb +8 -1
  15. data/lib/fog/linode/models/compute/image.rb +2 -0
  16. data/lib/fog/linode/models/compute/images.rb +2 -1
  17. data/lib/fog/linode/models/compute/kernel.rb +3 -0
  18. data/lib/fog/linode/models/compute/kernels.rb +14 -8
  19. data/lib/fog/linode/models/compute/node_balancer_flavor.rb +13 -0
  20. data/lib/fog/linode/models/compute/node_balancer_flavors.rb +27 -0
  21. data/lib/fog/linode/requests/compute/avail_kernels.rb +17 -18
  22. data/lib/fog/linode/requests/compute/avail_linodeplans.rb +4 -2
  23. data/lib/fog/linode/requests/compute/avail_nodebalancers.rb +42 -0
  24. data/lib/fog/linode/requests/compute/avail_stackscripts.rb +6 -11
  25. data/lib/fog/openstack/core.rb +22 -21
  26. data/lib/fog/openstack/models/baremetal/nodes.rb +1 -1
  27. data/lib/fog/openstack/models/identity_v3/domain.rb +6 -0
  28. data/lib/fog/openstack/models/identity_v3/domains.rb +19 -4
  29. data/lib/fog/openstack/models/identity_v3/project.rb +10 -0
  30. data/lib/fog/openstack/models/identity_v3/projects.rb +16 -3
  31. data/lib/fog/openstack/models/identity_v3/tokens.rb +1 -0
  32. data/lib/fog/openstack/models/storage/file.rb +9 -0
  33. data/lib/fog/openstack/requests/baremetal/delete_node.rb +1 -1
  34. data/lib/fog/rackspace/requests/load_balancers/create_node.rb +1 -1
  35. data/lib/fog/version.rb +1 -1
  36. data/lib/fog/vsphere/compute.rb +8 -0
  37. data/lib/fog/vsphere/models/compute/network.rb +1 -0
  38. data/lib/fog/vsphere/models/compute/process.rb +18 -0
  39. data/lib/fog/vsphere/models/compute/server.rb +29 -0
  40. data/lib/fog/vsphere/models/compute/snapshot.rb +35 -0
  41. data/lib/fog/vsphere/models/compute/snapshots.rb +27 -0
  42. data/lib/fog/vsphere/requests/compute/create_vm.rb +65 -2
  43. data/lib/fog/vsphere/requests/compute/list_child_snapshots.rb +71 -0
  44. data/lib/fog/vsphere/requests/compute/list_networks.rb +5 -4
  45. data/lib/fog/vsphere/requests/compute/list_processes.rb +41 -0
  46. data/lib/fog/vsphere/requests/compute/list_vm_snapshots.rb +66 -0
  47. data/lib/fog/vsphere/requests/compute/revert_to_snapshot.rb +30 -0
  48. data/lib/fog/vsphere/requests/compute/vm_clone.rb +2 -5
  49. data/lib/fog/vsphere/requests/compute/vm_take_snapshot.rb +37 -0
  50. data/lib/tasks/changelog_task.rb +1 -0
  51. data/spec/fog/openstack/identity_v3/authv3_a.yml +18 -18
  52. data/spec/fog/openstack/identity_v3/authv3_b.yml +18 -18
  53. data/spec/fog/openstack/identity_v3/authv3_c.yml +293 -55
  54. data/spec/fog/openstack/identity_v3/authv3_token.yml +89 -89
  55. data/spec/fog/openstack/identity_v3/authv3_unscoped.yml +325 -222
  56. data/spec/fog/openstack/identity_v3/authv3_unscoped_reauth.yml +587 -111
  57. data/spec/fog/openstack/identity_v3/common_setup.yml +30 -30
  58. data/spec/fog/openstack/identity_v3/idv3_credential.yml +17 -17
  59. data/spec/fog/openstack/identity_v3/idv3_credential_crud.yml +343 -106
  60. data/spec/fog/openstack/identity_v3/idv3_domain.yml +27 -122
  61. data/spec/fog/openstack/identity_v3/idv3_domain_crud.yml +75 -128
  62. data/spec/fog/openstack/identity_v3/idv3_domain_group_roles_mutation.yml +141 -141
  63. data/spec/fog/openstack/identity_v3/idv3_domain_roles_mutation.yml +326 -86
  64. data/spec/fog/openstack/identity_v3/idv3_endpoint.yml +221 -221
  65. data/spec/fog/openstack/identity_v3/idv3_endpoints_crud.yml +314 -314
  66. data/spec/fog/openstack/identity_v3/idv3_group_crud_mutation.yml +191 -188
  67. data/spec/fog/openstack/identity_v3/idv3_policy.yml +23 -23
  68. data/spec/fog/openstack/identity_v3/idv3_policy_crud.yml +67 -67
  69. data/spec/fog/openstack/identity_v3/idv3_project.yml +267 -161
  70. data/spec/fog/openstack/identity_v3/idv3_project_crud.yml +70 -145
  71. data/spec/fog/openstack/identity_v3/idv3_project_group_user_roles_mutation.yml +195 -243
  72. data/spec/fog/openstack/identity_v3/idv3_project_hier_crud_list.yml +203 -553
  73. data/spec/fog/openstack/identity_v3/idv3_role.yml +49 -49
  74. data/spec/fog/openstack/identity_v3/idv3_role_crud.yml +92 -92
  75. data/spec/fog/openstack/identity_v3/idv3_service.yml +61 -61
  76. data/spec/fog/openstack/identity_v3/idv3_services_crud.yml +111 -111
  77. data/spec/fog/openstack/identity_v3/idv3_token.yml +84 -84
  78. data/spec/fog/openstack/identity_v3/idv3_user_crud.yml +140 -125
  79. data/spec/fog/openstack/identity_v3/idv3_users.yml +98 -78
  80. data/spec/fog/openstack/network/common_setup.yml +84 -75
  81. data/spec/fog/openstack/network/subnets_crud.yml +75 -35
  82. data/spec/fog/openstack/shared_context.rb +5 -1
  83. data/tests/helper.rb +1 -0
  84. data/tests/linode/requests/compute/datacenter_tests.rb +2 -1
  85. data/tests/linode/requests/compute/kernel_tests.rb +2 -10
  86. data/tests/linode/requests/compute/linodeplans_tests.rb +10 -7
  87. data/tests/linode/requests/compute/nodebalancers_tests.rb +20 -0
  88. data/tests/openstack/models/storage/file_tests.rb +29 -0
  89. data/tests/rackspace/requests/load_balancers/node_tests.rb +7 -0
  90. data/tests/vsphere/models/compute/server_tests.rb +27 -1
  91. data/tests/vsphere/requests/compute/list_child_snapshots_tests.rb +10 -0
  92. data/tests/vsphere/requests/compute/list_vm_snapshots_tests.rb +10 -0
  93. data/tests/vsphere/requests/compute/revert_to_snapshot_tests.rb +15 -0
  94. data/tests/vsphere/requests/compute/vm_take_snapshot_tests.rb +19 -0
  95. metadata +41 -16
  96. data/spec/fog/openstack/identity_v3/authv3_project.yml +0 -98
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://10.97.17.84:35357/v3/domains
5
+ uri: http://devstack.openstack.stack:35357/v3/domains
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: '{"domain":{"name":"d-foobar"}}'
@@ -16,20 +16,20 @@ http_interactions:
16
16
  Accept:
17
17
  - application/json
18
18
  X-Auth-Token:
19
- - f6af15c0332e4d3ab7716b51d8fedfff
19
+ - e6b2788de4cb4562b55c8a7bb05e8444
20
20
  response:
21
21
  status:
22
22
  code: 201
23
23
  message: ''
24
24
  headers:
25
25
  Date:
26
- - Fri, 02 Oct 2015 11:41:27 GMT
26
+ - Wed, 28 Oct 2015 16:05:46 GMT
27
27
  Server:
28
28
  - Apache/2.4.7 (Ubuntu)
29
29
  Vary:
30
30
  - X-Auth-Token
31
31
  X-Openstack-Request-Id:
32
- - req-a715fe2a-b689-42c2-957c-ea77d543dd2c
32
+ - req-710fc238-256c-40aa-ba75-40fc2289f072
33
33
  Content-Length:
34
34
  - '182'
35
35
  Content-Type:
@@ -44,17 +44,17 @@ http_interactions:
44
44
  - keep-alive
45
45
  body:
46
46
  encoding: UTF-8
47
- string: '{"domain": {"enabled": true, "id": "3834b66a17c94d8d9a609cedd26535a8",
48
- "links": {"self": "http://10.97.17.84:35357/v3/domains/3834b66a17c94d8d9a609cedd26535a8"},
47
+ string: '{"domain": {"enabled": true, "id": "93f5a068606843259eec03e016d8d724",
48
+ "links": {"self": "http://devstack.openstack.stack:35357/v3/domains/93f5a068606843259eec03e016d8d724"},
49
49
  "name": "d-foobar"}}'
50
50
  http_version:
51
- recorded_at: Fri, 02 Oct 2015 11:41:15 GMT
51
+ recorded_at: Wed, 28 Oct 2015 16:05:27 GMT
52
52
  - request:
53
53
  method: post
54
- uri: http://10.97.17.84:35357/v3/groups
54
+ uri: http://devstack.openstack.stack:35357/v3/groups
55
55
  body:
56
56
  encoding: UTF-8
57
- string: '{"group":{"name":"g-foobar","description":"Group of Foobar users","domain_id":"3834b66a17c94d8d9a609cedd26535a8"}}'
57
+ string: '{"group":{"name":"g-foobar","description":"Group of Foobar users","domain_id":"93f5a068606843259eec03e016d8d724"}}'
58
58
  headers:
59
59
  User-Agent:
60
60
  - fog-core/1.32.1
@@ -65,20 +65,20 @@ http_interactions:
65
65
  Accept:
66
66
  - application/json
67
67
  X-Auth-Token:
68
- - f6af15c0332e4d3ab7716b51d8fedfff
68
+ - e6b2788de4cb4562b55c8a7bb05e8444
69
69
  response:
70
70
  status:
71
71
  code: 201
72
72
  message: ''
73
73
  headers:
74
74
  Date:
75
- - Fri, 02 Oct 2015 11:41:27 GMT
75
+ - Wed, 28 Oct 2015 16:05:46 GMT
76
76
  Server:
77
77
  - Apache/2.4.7 (Ubuntu)
78
78
  Vary:
79
79
  - X-Auth-Token
80
80
  X-Openstack-Request-Id:
81
- - req-fc85fb17-aae0-46d4-9a05-feb2560ec984
81
+ - req-ca73f9ce-6106-42ce-bfe7-e96d03e7da7d
82
82
  Content-Length:
83
83
  - '252'
84
84
  Content-Type:
@@ -93,18 +93,18 @@ http_interactions:
93
93
  - keep-alive
94
94
  body:
95
95
  encoding: UTF-8
96
- string: '{"group": {"domain_id": "3834b66a17c94d8d9a609cedd26535a8", "description":
97
- "Group of Foobar users", "id": "74d2824e9fd54f90b14ec844fedb6838", "links":
98
- {"self": "http://10.97.17.84:35357/v3/groups/74d2824e9fd54f90b14ec844fedb6838"},
96
+ string: '{"group": {"domain_id": "93f5a068606843259eec03e016d8d724", "description":
97
+ "Group of Foobar users", "id": "c5980f5c3c484058964c4c6fc36996a4", "links":
98
+ {"self": "http://devstack.openstack.stack:35357/v3/groups/c5980f5c3c484058964c4c6fc36996a4"},
99
99
  "name": "g-foobar"}}'
100
100
  http_version:
101
- recorded_at: Fri, 02 Oct 2015 11:41:15 GMT
101
+ recorded_at: Wed, 28 Oct 2015 16:05:27 GMT
102
102
  - request:
103
103
  method: post
104
- uri: http://10.97.17.84:35357/v3/users
104
+ uri: http://devstack.openstack.stack:35357/v3/users
105
105
  body:
106
106
  encoding: UTF-8
107
- string: '{"user":{"name":"u-foobar_foobar","email":"foobar@example.com","password":"s3cret!","domain_id":"3834b66a17c94d8d9a609cedd26535a8"}}'
107
+ string: '{"user":{"name":"u-foobar_foobar","email":"foobar@example.com","password":"s3cret!","domain_id":"93f5a068606843259eec03e016d8d724"}}'
108
108
  headers:
109
109
  User-Agent:
110
110
  - fog-core/1.32.1
@@ -115,20 +115,20 @@ http_interactions:
115
115
  Accept:
116
116
  - application/json
117
117
  X-Auth-Token:
118
- - f6af15c0332e4d3ab7716b51d8fedfff
118
+ - e6b2788de4cb4562b55c8a7bb05e8444
119
119
  response:
120
120
  status:
121
121
  code: 201
122
122
  message: ''
123
123
  headers:
124
124
  Date:
125
- - Fri, 02 Oct 2015 11:41:27 GMT
125
+ - Wed, 28 Oct 2015 16:05:47 GMT
126
126
  Server:
127
127
  - Apache/2.4.7 (Ubuntu)
128
128
  Vary:
129
129
  - X-Auth-Token
130
130
  X-Openstack-Request-Id:
131
- - req-ee95e73b-5a6e-4ab0-a258-1a5bbf1eb9d6
131
+ - req-0ff960e4-2324-411e-b6ad-a6a3f8773615
132
132
  Content-Length:
133
133
  - '265'
134
134
  Content-Type:
@@ -143,14 +143,14 @@ http_interactions:
143
143
  - keep-alive
144
144
  body:
145
145
  encoding: UTF-8
146
- string: '{"user": {"name": "u-foobar_foobar", "links": {"self": "http://10.97.17.84:35357/v3/users/e812ca56c6d64af49a7b5d4816c59ff4"},
147
- "domain_id": "3834b66a17c94d8d9a609cedd26535a8", "enabled": true, "email":
148
- "foobar@example.com", "id": "e812ca56c6d64af49a7b5d4816c59ff4"}}'
146
+ string: '{"user": {"name": "u-foobar_foobar", "links": {"self": "http://devstack.openstack.stack:35357/v3/users/86e691fe1c1d41aeb800425b7796379a"},
147
+ "domain_id": "93f5a068606843259eec03e016d8d724", "enabled": true, "email":
148
+ "foobar@example.com", "id": "86e691fe1c1d41aeb800425b7796379a"}}'
149
149
  http_version:
150
- recorded_at: Fri, 02 Oct 2015 11:41:16 GMT
150
+ recorded_at: Wed, 28 Oct 2015 16:05:27 GMT
151
151
  - request:
152
152
  method: get
153
- uri: http://10.97.17.84:35357/v3/domains/3834b66a17c94d8d9a609cedd26535a8/users/e812ca56c6d64af49a7b5d4816c59ff4/roles
153
+ uri: http://devstack.openstack.stack:35357/v3/domains/93f5a068606843259eec03e016d8d724/users/86e691fe1c1d41aeb800425b7796379a/roles
154
154
  body:
155
155
  encoding: US-ASCII
156
156
  string: ''
@@ -164,20 +164,20 @@ http_interactions:
164
164
  Accept:
165
165
  - application/json
166
166
  X-Auth-Token:
167
- - f6af15c0332e4d3ab7716b51d8fedfff
167
+ - e6b2788de4cb4562b55c8a7bb05e8444
168
168
  response:
169
169
  status:
170
170
  code: 200
171
171
  message: ''
172
172
  headers:
173
173
  Date:
174
- - Fri, 02 Oct 2015 11:41:28 GMT
174
+ - Wed, 28 Oct 2015 16:05:47 GMT
175
175
  Server:
176
176
  - Apache/2.4.7 (Ubuntu)
177
177
  Vary:
178
178
  - X-Auth-Token
179
179
  X-Openstack-Request-Id:
180
- - req-e314c1a2-269c-4a68-911e-564cd11a311d
180
+ - req-b23df189-b780-449c-b0bd-0ce2a34d0293
181
181
  Content-Length:
182
182
  - '181'
183
183
  Content-Type:
@@ -192,13 +192,13 @@ http_interactions:
192
192
  - keep-alive
193
193
  body:
194
194
  encoding: UTF-8
195
- string: '{"links": {"self": "http://10.97.17.84:35357/v3/domains/3834b66a17c94d8d9a609cedd26535a8/users/e812ca56c6d64af49a7b5d4816c59ff4/roles",
195
+ string: '{"links": {"self": "http://devstack.openstack.stack:35357/v3/domains/93f5a068606843259eec03e016d8d724/users/86e691fe1c1d41aeb800425b7796379a/roles",
196
196
  "previous": null, "next": null}, "roles": []}'
197
197
  http_version:
198
- recorded_at: Fri, 02 Oct 2015 11:41:16 GMT
198
+ recorded_at: Wed, 28 Oct 2015 16:05:27 GMT
199
199
  - request:
200
200
  method: get
201
- uri: http://10.97.17.84:35357/v3/roles
201
+ uri: http://devstack.openstack.stack:35357/v3/roles
202
202
  body:
203
203
  encoding: US-ASCII
204
204
  string: ''
@@ -212,20 +212,20 @@ http_interactions:
212
212
  Accept:
213
213
  - application/json
214
214
  X-Auth-Token:
215
- - f6af15c0332e4d3ab7716b51d8fedfff
215
+ - e6b2788de4cb4562b55c8a7bb05e8444
216
216
  response:
217
217
  status:
218
218
  code: 200
219
219
  message: ''
220
220
  headers:
221
221
  Date:
222
- - Fri, 02 Oct 2015 11:41:28 GMT
222
+ - Wed, 28 Oct 2015 16:05:47 GMT
223
223
  Server:
224
224
  - Apache/2.4.7 (Ubuntu)
225
225
  Vary:
226
226
  - X-Auth-Token
227
227
  X-Openstack-Request-Id:
228
- - req-4fbff9f3-43c8-4d5c-8a2e-130de0cdddf2
228
+ - req-7c5f33a7-a17e-461a-9123-8c0bb5dc9a60
229
229
  Content-Length:
230
230
  - '866'
231
231
  Content-Type:
@@ -240,22 +240,22 @@ http_interactions:
240
240
  - keep-alive
241
241
  body:
242
242
  encoding: UTF-8
243
- string: '{"links": {"self": "http://10.97.17.84:35357/v3/roles", "previous":
243
+ string: '{"links": {"self": "http://devstack.openstack.stack:35357/v3/roles", "previous":
244
244
  null, "next": null}, "roles": [{"id": "5a571a620acb4365a0697755861a4e0b",
245
- "links": {"self": "http://10.97.17.84:35357/v3/roles/5a571a620acb4365a0697755861a4e0b"},
245
+ "links": {"self": "http://devstack.openstack.stack:35357/v3/roles/5a571a620acb4365a0697755861a4e0b"},
246
246
  "name": "ResellerAdmin"}, {"id": "693bf84201c446d19272c24aa4492c37", "links":
247
- {"self": "http://10.97.17.84:35357/v3/roles/693bf84201c446d19272c24aa4492c37"},
247
+ {"self": "http://devstack.openstack.stack:35357/v3/roles/693bf84201c446d19272c24aa4492c37"},
248
248
  "name": "anotherrole"}, {"id": "d98e5f87050646f194c8c23b9e3f2bca", "links":
249
- {"self": "http://10.97.17.84:35357/v3/roles/d98e5f87050646f194c8c23b9e3f2bca"},
249
+ {"self": "http://devstack.openstack.stack:35357/v3/roles/d98e5f87050646f194c8c23b9e3f2bca"},
250
250
  "name": "admin"}, {"id": "f6ca227446954afdb745b5fa83166c00", "links": {"self":
251
- "http://10.97.17.84:35357/v3/roles/f6ca227446954afdb745b5fa83166c00"}, "name":
252
- "service"}, {"id": "f7f01056a1b04631be460a3b0c07c59f", "links": {"self": "http://10.97.17.84:35357/v3/roles/f7f01056a1b04631be460a3b0c07c59f"},
251
+ "http://devstack.openstack.stack:35357/v3/roles/f6ca227446954afdb745b5fa83166c00"}, "name":
252
+ "service"}, {"id": "f7f01056a1b04631be460a3b0c07c59f", "links": {"self": "http://devstack.openstack.stack:35357/v3/roles/f7f01056a1b04631be460a3b0c07c59f"},
253
253
  "name": "Member"}]}'
254
254
  http_version:
255
- recorded_at: Fri, 02 Oct 2015 11:41:16 GMT
255
+ recorded_at: Wed, 28 Oct 2015 16:05:27 GMT
256
256
  - request:
257
257
  method: post
258
- uri: http://10.97.17.84:35357/v3/roles
258
+ uri: http://devstack.openstack.stack:35357/v3/roles
259
259
  body:
260
260
  encoding: UTF-8
261
261
  string: '{"role":{"name":"foobar_role"}}'
@@ -269,20 +269,20 @@ http_interactions:
269
269
  Accept:
270
270
  - application/json
271
271
  X-Auth-Token:
272
- - f6af15c0332e4d3ab7716b51d8fedfff
272
+ - e6b2788de4cb4562b55c8a7bb05e8444
273
273
  response:
274
274
  status:
275
275
  code: 201
276
276
  message: ''
277
277
  headers:
278
278
  Date:
279
- - Fri, 02 Oct 2015 11:41:28 GMT
279
+ - Wed, 28 Oct 2015 16:05:47 GMT
280
280
  Server:
281
281
  - Apache/2.4.7 (Ubuntu)
282
282
  Vary:
283
283
  - X-Auth-Token
284
284
  X-Openstack-Request-Id:
285
- - req-13d4a664-e6e9-4f9e-b5d1-c7579358351e
285
+ - req-e4cc5a38-5435-44d2-913c-8c9b2ae318fe
286
286
  Content-Length:
287
287
  - '164'
288
288
  Content-Type:
@@ -297,14 +297,14 @@ http_interactions:
297
297
  - keep-alive
298
298
  body:
299
299
  encoding: UTF-8
300
- string: '{"role": {"id": "c37c2c90ad984810a665bd7d0d49766c", "links": {"self":
301
- "http://10.97.17.84:35357/v3/roles/c37c2c90ad984810a665bd7d0d49766c"}, "name":
300
+ string: '{"role": {"id": "6a6b513c3c72446dabb430ff36796466", "links": {"self":
301
+ "http://devstack.openstack.stack:35357/v3/roles/6a6b513c3c72446dabb430ff36796466"}, "name":
302
302
  "foobar_role"}}'
303
303
  http_version:
304
- recorded_at: Fri, 02 Oct 2015 11:41:16 GMT
304
+ recorded_at: Wed, 28 Oct 2015 16:05:27 GMT
305
305
  - request:
306
306
  method: put
307
- uri: http://10.97.17.84:35357/v3/domains/3834b66a17c94d8d9a609cedd26535a8/groups/74d2824e9fd54f90b14ec844fedb6838/roles/c37c2c90ad984810a665bd7d0d49766c
307
+ uri: http://devstack.openstack.stack:35357/v3/domains/93f5a068606843259eec03e016d8d724/groups/c5980f5c3c484058964c4c6fc36996a4/roles/6a6b513c3c72446dabb430ff36796466
308
308
  body:
309
309
  encoding: US-ASCII
310
310
  string: ''
@@ -318,20 +318,20 @@ http_interactions:
318
318
  Accept:
319
319
  - application/json
320
320
  X-Auth-Token:
321
- - f6af15c0332e4d3ab7716b51d8fedfff
321
+ - e6b2788de4cb4562b55c8a7bb05e8444
322
322
  response:
323
323
  status:
324
324
  code: 204
325
325
  message: ''
326
326
  headers:
327
327
  Date:
328
- - Fri, 02 Oct 2015 11:41:28 GMT
328
+ - Wed, 28 Oct 2015 16:05:47 GMT
329
329
  Server:
330
330
  - Apache/2.4.7 (Ubuntu)
331
331
  Vary:
332
332
  - X-Auth-Token
333
333
  X-Openstack-Request-Id:
334
- - req-070f102a-3374-4176-b5df-8df58a88dd71
334
+ - req-fc0d4220-67d4-448c-9bfc-ca1a3ccd2450
335
335
  Content-Length:
336
336
  - '0'
337
337
  X-Cache:
@@ -346,10 +346,10 @@ http_interactions:
346
346
  encoding: UTF-8
347
347
  string: ''
348
348
  http_version:
349
- recorded_at: Fri, 02 Oct 2015 11:41:16 GMT
349
+ recorded_at: Wed, 28 Oct 2015 16:05:27 GMT
350
350
  - request:
351
351
  method: get
352
- uri: http://10.97.17.84:35357/v3/domains/3834b66a17c94d8d9a609cedd26535a8/groups/74d2824e9fd54f90b14ec844fedb6838/roles
352
+ uri: http://devstack.openstack.stack:35357/v3/domains/93f5a068606843259eec03e016d8d724/groups/c5980f5c3c484058964c4c6fc36996a4/roles
353
353
  body:
354
354
  encoding: US-ASCII
355
355
  string: ''
@@ -363,20 +363,20 @@ http_interactions:
363
363
  Accept:
364
364
  - application/json
365
365
  X-Auth-Token:
366
- - f6af15c0332e4d3ab7716b51d8fedfff
366
+ - e6b2788de4cb4562b55c8a7bb05e8444
367
367
  response:
368
368
  status:
369
369
  code: 200
370
370
  message: ''
371
371
  headers:
372
372
  Date:
373
- - Fri, 02 Oct 2015 11:41:28 GMT
373
+ - Wed, 28 Oct 2015 16:05:47 GMT
374
374
  Server:
375
375
  - Apache/2.4.7 (Ubuntu)
376
376
  Vary:
377
377
  - X-Auth-Token
378
378
  X-Openstack-Request-Id:
379
- - req-758c0e36-31be-47d3-93ae-db3689972404
379
+ - req-82fa0d46-d1cd-45dc-9053-09e6b15312eb
380
380
  Content-Length:
381
381
  - '336'
382
382
  Content-Type:
@@ -391,15 +391,15 @@ http_interactions:
391
391
  - keep-alive
392
392
  body:
393
393
  encoding: UTF-8
394
- string: '{"links": {"self": "http://10.97.17.84:35357/v3/domains/3834b66a17c94d8d9a609cedd26535a8/groups/74d2824e9fd54f90b14ec844fedb6838/roles",
395
- "previous": null, "next": null}, "roles": [{"id": "c37c2c90ad984810a665bd7d0d49766c",
396
- "links": {"self": "http://10.97.17.84:35357/v3/roles/c37c2c90ad984810a665bd7d0d49766c"},
394
+ string: '{"links": {"self": "http://devstack.openstack.stack:35357/v3/domains/93f5a068606843259eec03e016d8d724/groups/c5980f5c3c484058964c4c6fc36996a4/roles",
395
+ "previous": null, "next": null}, "roles": [{"id": "6a6b513c3c72446dabb430ff36796466",
396
+ "links": {"self": "http://devstack.openstack.stack:35357/v3/roles/6a6b513c3c72446dabb430ff36796466"},
397
397
  "name": "foobar_role"}]}'
398
398
  http_version:
399
- recorded_at: Fri, 02 Oct 2015 11:41:16 GMT
399
+ recorded_at: Wed, 28 Oct 2015 16:05:27 GMT
400
400
  - request:
401
401
  method: head
402
- uri: http://10.97.17.84:35357/v3/domains/3834b66a17c94d8d9a609cedd26535a8/users/e812ca56c6d64af49a7b5d4816c59ff4/roles/c37c2c90ad984810a665bd7d0d49766c
402
+ uri: http://devstack.openstack.stack:35357/v3/domains/93f5a068606843259eec03e016d8d724/users/86e691fe1c1d41aeb800425b7796379a/roles/6a6b513c3c72446dabb430ff36796466
403
403
  body:
404
404
  encoding: US-ASCII
405
405
  string: ''
@@ -413,20 +413,20 @@ http_interactions:
413
413
  Accept:
414
414
  - application/json
415
415
  X-Auth-Token:
416
- - f6af15c0332e4d3ab7716b51d8fedfff
416
+ - e6b2788de4cb4562b55c8a7bb05e8444
417
417
  response:
418
418
  status:
419
419
  code: 404
420
420
  message: ''
421
421
  headers:
422
422
  Date:
423
- - Fri, 02 Oct 2015 11:41:28 GMT
423
+ - Wed, 28 Oct 2015 16:05:47 GMT
424
424
  Server:
425
425
  - Apache/2.4.7 (Ubuntu)
426
426
  Vary:
427
427
  - X-Auth-Token
428
428
  X-Openstack-Request-Id:
429
- - req-d98f3d8a-bef3-434a-8f55-b63f229b8aad
429
+ - req-bb6db037-7577-4a37-846e-2e4f519561c8
430
430
  Content-Length:
431
431
  - '237'
432
432
  Content-Type:
@@ -443,10 +443,10 @@ http_interactions:
443
443
  encoding: UTF-8
444
444
  string: ''
445
445
  http_version:
446
- recorded_at: Fri, 02 Oct 2015 11:41:16 GMT
446
+ recorded_at: Wed, 28 Oct 2015 16:05:27 GMT
447
447
  - request:
448
448
  method: get
449
- uri: http://10.97.17.84:35357/v3/role_assignments?effective=true&user.id=e812ca56c6d64af49a7b5d4816c59ff4
449
+ uri: http://devstack.openstack.stack:35357/v3/role_assignments?effective=true&user.id=86e691fe1c1d41aeb800425b7796379a
450
450
  body:
451
451
  encoding: US-ASCII
452
452
  string: ''
@@ -460,20 +460,20 @@ http_interactions:
460
460
  Accept:
461
461
  - application/json
462
462
  X-Auth-Token:
463
- - f6af15c0332e4d3ab7716b51d8fedfff
463
+ - e6b2788de4cb4562b55c8a7bb05e8444
464
464
  response:
465
465
  status:
466
466
  code: 200
467
467
  message: ''
468
468
  headers:
469
469
  Date:
470
- - Fri, 02 Oct 2015 11:41:28 GMT
470
+ - Wed, 28 Oct 2015 16:05:47 GMT
471
471
  Server:
472
472
  - Apache/2.4.7 (Ubuntu)
473
473
  Vary:
474
474
  - X-Auth-Token
475
475
  X-Openstack-Request-Id:
476
- - req-95bbfb3a-9ff9-47a7-9742-7f16c67ccf49
476
+ - req-4f5e795b-b5d4-4c73-8fba-5d5daad71f11
477
477
  Content-Length:
478
478
  - '179'
479
479
  Content-Type:
@@ -488,13 +488,13 @@ http_interactions:
488
488
  - keep-alive
489
489
  body:
490
490
  encoding: UTF-8
491
- string: '{"role_assignments": [], "links": {"self": "http://10.97.17.84:35357/v3/role_assignments?effective=true&user.id=e812ca56c6d64af49a7b5d4816c59ff4",
491
+ string: '{"role_assignments": [], "links": {"self": "http://devstack.openstack.stack:35357/v3/role_assignments?effective=true&user.id=86e691fe1c1d41aeb800425b7796379a",
492
492
  "previous": null, "next": null}}'
493
493
  http_version:
494
- recorded_at: Fri, 02 Oct 2015 11:41:16 GMT
494
+ recorded_at: Wed, 28 Oct 2015 16:05:28 GMT
495
495
  - request:
496
496
  method: put
497
- uri: http://10.97.17.84:35357/v3/groups/74d2824e9fd54f90b14ec844fedb6838/users/e812ca56c6d64af49a7b5d4816c59ff4
497
+ uri: http://devstack.openstack.stack:35357/v3/groups/c5980f5c3c484058964c4c6fc36996a4/users/86e691fe1c1d41aeb800425b7796379a
498
498
  body:
499
499
  encoding: US-ASCII
500
500
  string: ''
@@ -508,20 +508,20 @@ http_interactions:
508
508
  Accept:
509
509
  - application/json
510
510
  X-Auth-Token:
511
- - f6af15c0332e4d3ab7716b51d8fedfff
511
+ - e6b2788de4cb4562b55c8a7bb05e8444
512
512
  response:
513
513
  status:
514
514
  code: 204
515
515
  message: ''
516
516
  headers:
517
517
  Date:
518
- - Fri, 02 Oct 2015 11:41:28 GMT
518
+ - Wed, 28 Oct 2015 16:05:47 GMT
519
519
  Server:
520
520
  - Apache/2.4.7 (Ubuntu)
521
521
  Vary:
522
522
  - X-Auth-Token
523
523
  X-Openstack-Request-Id:
524
- - req-fa50c798-e59c-48d4-9f5c-53cb8edf6212
524
+ - req-5dc88e0e-a90e-4b71-bb62-4e74e377e337
525
525
  Content-Length:
526
526
  - '0'
527
527
  X-Cache:
@@ -536,10 +536,10 @@ http_interactions:
536
536
  encoding: UTF-8
537
537
  string: ''
538
538
  http_version:
539
- recorded_at: Fri, 02 Oct 2015 11:41:16 GMT
539
+ recorded_at: Wed, 28 Oct 2015 16:05:28 GMT
540
540
  - request:
541
541
  method: head
542
- uri: http://10.97.17.84:35357/v3/domains/3834b66a17c94d8d9a609cedd26535a8/users/e812ca56c6d64af49a7b5d4816c59ff4/roles/c37c2c90ad984810a665bd7d0d49766c
542
+ uri: http://devstack.openstack.stack:35357/v3/domains/93f5a068606843259eec03e016d8d724/users/86e691fe1c1d41aeb800425b7796379a/roles/6a6b513c3c72446dabb430ff36796466
543
543
  body:
544
544
  encoding: US-ASCII
545
545
  string: ''
@@ -553,20 +553,20 @@ http_interactions:
553
553
  Accept:
554
554
  - application/json
555
555
  X-Auth-Token:
556
- - f6af15c0332e4d3ab7716b51d8fedfff
556
+ - e6b2788de4cb4562b55c8a7bb05e8444
557
557
  response:
558
558
  status:
559
559
  code: 404
560
560
  message: ''
561
561
  headers:
562
562
  Date:
563
- - Fri, 02 Oct 2015 11:41:28 GMT
563
+ - Wed, 28 Oct 2015 16:05:47 GMT
564
564
  Server:
565
565
  - Apache/2.4.7 (Ubuntu)
566
566
  Vary:
567
567
  - X-Auth-Token
568
568
  X-Openstack-Request-Id:
569
- - req-65570765-dbe8-4bae-9703-312746a96f9c
569
+ - req-7cc8ad17-cea9-4bec-bfa7-fa9ed220c2e8
570
570
  Content-Length:
571
571
  - '237'
572
572
  Content-Type:
@@ -583,10 +583,10 @@ http_interactions:
583
583
  encoding: UTF-8
584
584
  string: ''
585
585
  http_version:
586
- recorded_at: Fri, 02 Oct 2015 11:41:17 GMT
586
+ recorded_at: Wed, 28 Oct 2015 16:05:28 GMT
587
587
  - request:
588
588
  method: get
589
- uri: http://10.97.17.84:35357/v3/role_assignments?effective=true&user.id=e812ca56c6d64af49a7b5d4816c59ff4
589
+ uri: http://devstack.openstack.stack:35357/v3/role_assignments?effective=true&user.id=86e691fe1c1d41aeb800425b7796379a
590
590
  body:
591
591
  encoding: US-ASCII
592
592
  string: ''
@@ -600,20 +600,20 @@ http_interactions:
600
600
  Accept:
601
601
  - application/json
602
602
  X-Auth-Token:
603
- - f6af15c0332e4d3ab7716b51d8fedfff
603
+ - e6b2788de4cb4562b55c8a7bb05e8444
604
604
  response:
605
605
  status:
606
606
  code: 200
607
607
  message: ''
608
608
  headers:
609
609
  Date:
610
- - Fri, 02 Oct 2015 11:41:29 GMT
610
+ - Wed, 28 Oct 2015 16:05:47 GMT
611
611
  Server:
612
612
  - Apache/2.4.7 (Ubuntu)
613
613
  Vary:
614
614
  - X-Auth-Token
615
615
  X-Openstack-Request-Id:
616
- - req-ba9effd0-7a2e-410c-99b3-72a7c873d301
616
+ - req-943595d4-7983-447f-970f-2e2ef0360850
617
617
  Content-Length:
618
618
  - '648'
619
619
  Content-Type:
@@ -628,17 +628,17 @@ http_interactions:
628
628
  - keep-alive
629
629
  body:
630
630
  encoding: UTF-8
631
- string: '{"role_assignments": [{"scope": {"domain": {"id": "3834b66a17c94d8d9a609cedd26535a8"}},
632
- "role": {"id": "c37c2c90ad984810a665bd7d0d49766c"}, "user": {"id": "e812ca56c6d64af49a7b5d4816c59ff4"},
633
- "links": {"assignment": "http://10.97.17.84:35357/v3/domains/3834b66a17c94d8d9a609cedd26535a8/groups/74d2824e9fd54f90b14ec844fedb6838/roles/c37c2c90ad984810a665bd7d0d49766c",
634
- "membership": "http://10.97.17.84:35357/v3/groups/74d2824e9fd54f90b14ec844fedb6838/users/e812ca56c6d64af49a7b5d4816c59ff4"}}],
635
- "links": {"self": "http://10.97.17.84:35357/v3/role_assignments?effective=true&user.id=e812ca56c6d64af49a7b5d4816c59ff4",
631
+ string: '{"role_assignments": [{"scope": {"domain": {"id": "93f5a068606843259eec03e016d8d724"}},
632
+ "role": {"id": "6a6b513c3c72446dabb430ff36796466"}, "user": {"id": "86e691fe1c1d41aeb800425b7796379a"},
633
+ "links": {"assignment": "http://devstack.openstack.stack:35357/v3/domains/93f5a068606843259eec03e016d8d724/groups/c5980f5c3c484058964c4c6fc36996a4/roles/6a6b513c3c72446dabb430ff36796466",
634
+ "membership": "http://devstack.openstack.stack:35357/v3/groups/c5980f5c3c484058964c4c6fc36996a4/users/86e691fe1c1d41aeb800425b7796379a"}}],
635
+ "links": {"self": "http://devstack.openstack.stack:35357/v3/role_assignments?effective=true&user.id=86e691fe1c1d41aeb800425b7796379a",
636
636
  "previous": null, "next": null}}'
637
637
  http_version:
638
- recorded_at: Fri, 02 Oct 2015 11:41:17 GMT
638
+ recorded_at: Wed, 28 Oct 2015 16:05:28 GMT
639
639
  - request:
640
640
  method: get
641
- uri: http://10.97.17.84:35357/v3/role_assignments?group.id=74d2824e9fd54f90b14ec844fedb6838
641
+ uri: http://devstack.openstack.stack:35357/v3/role_assignments?group.id=c5980f5c3c484058964c4c6fc36996a4
642
642
  body:
643
643
  encoding: US-ASCII
644
644
  string: ''
@@ -652,20 +652,20 @@ http_interactions:
652
652
  Accept:
653
653
  - application/json
654
654
  X-Auth-Token:
655
- - f6af15c0332e4d3ab7716b51d8fedfff
655
+ - e6b2788de4cb4562b55c8a7bb05e8444
656
656
  response:
657
657
  status:
658
658
  code: 200
659
659
  message: ''
660
660
  headers:
661
661
  Date:
662
- - Fri, 02 Oct 2015 11:41:29 GMT
662
+ - Wed, 28 Oct 2015 16:05:48 GMT
663
663
  Server:
664
664
  - Apache/2.4.7 (Ubuntu)
665
665
  Vary:
666
666
  - X-Auth-Token
667
667
  X-Openstack-Request-Id:
668
- - req-41b71440-df2c-4d8b-87b4-4b90b4010ee7
668
+ - req-02a24bf9-9924-40a0-911a-4f451fb0a442
669
669
  Content-Length:
670
670
  - '511'
671
671
  Content-Type:
@@ -680,17 +680,17 @@ http_interactions:
680
680
  - keep-alive
681
681
  body:
682
682
  encoding: UTF-8
683
- string: '{"role_assignments": [{"role": {"id": "c37c2c90ad984810a665bd7d0d49766c"},
684
- "group": {"id": "74d2824e9fd54f90b14ec844fedb6838"}, "links": {"assignment":
685
- "http://10.97.17.84:35357/v3/domains/3834b66a17c94d8d9a609cedd26535a8/groups/74d2824e9fd54f90b14ec844fedb6838/roles/c37c2c90ad984810a665bd7d0d49766c"},
686
- "scope": {"domain": {"id": "3834b66a17c94d8d9a609cedd26535a8"}}}], "links":
687
- {"self": "http://10.97.17.84:35357/v3/role_assignments?group.id=74d2824e9fd54f90b14ec844fedb6838",
683
+ string: '{"role_assignments": [{"role": {"id": "6a6b513c3c72446dabb430ff36796466"},
684
+ "group": {"id": "c5980f5c3c484058964c4c6fc36996a4"}, "links": {"assignment":
685
+ "http://devstack.openstack.stack:35357/v3/domains/93f5a068606843259eec03e016d8d724/groups/c5980f5c3c484058964c4c6fc36996a4/roles/6a6b513c3c72446dabb430ff36796466"},
686
+ "scope": {"domain": {"id": "93f5a068606843259eec03e016d8d724"}}}], "links":
687
+ {"self": "http://devstack.openstack.stack:35357/v3/role_assignments?group.id=c5980f5c3c484058964c4c6fc36996a4",
688
688
  "previous": null, "next": null}}'
689
689
  http_version:
690
- recorded_at: Fri, 02 Oct 2015 11:41:17 GMT
690
+ recorded_at: Wed, 28 Oct 2015 16:05:28 GMT
691
691
  - request:
692
692
  method: delete
693
- uri: http://10.97.17.84:35357/v3/domains/3834b66a17c94d8d9a609cedd26535a8/groups/74d2824e9fd54f90b14ec844fedb6838/roles/c37c2c90ad984810a665bd7d0d49766c
693
+ uri: http://devstack.openstack.stack:35357/v3/domains/93f5a068606843259eec03e016d8d724/groups/c5980f5c3c484058964c4c6fc36996a4/roles/6a6b513c3c72446dabb430ff36796466
694
694
  body:
695
695
  encoding: US-ASCII
696
696
  string: ''
@@ -704,20 +704,20 @@ http_interactions:
704
704
  Accept:
705
705
  - application/json
706
706
  X-Auth-Token:
707
- - f6af15c0332e4d3ab7716b51d8fedfff
707
+ - e6b2788de4cb4562b55c8a7bb05e8444
708
708
  response:
709
709
  status:
710
710
  code: 204
711
711
  message: ''
712
712
  headers:
713
713
  Date:
714
- - Fri, 02 Oct 2015 11:41:29 GMT
714
+ - Wed, 28 Oct 2015 16:05:48 GMT
715
715
  Server:
716
716
  - Apache/2.4.7 (Ubuntu)
717
717
  Vary:
718
718
  - X-Auth-Token
719
719
  X-Openstack-Request-Id:
720
- - req-1b11c65b-b6dd-4734-8cbd-fb2631fed81f
720
+ - req-56f01b15-b737-4ff8-b555-3660f25da468
721
721
  Content-Length:
722
722
  - '0'
723
723
  X-Cache:
@@ -732,10 +732,10 @@ http_interactions:
732
732
  encoding: UTF-8
733
733
  string: ''
734
734
  http_version:
735
- recorded_at: Fri, 02 Oct 2015 11:41:17 GMT
735
+ recorded_at: Wed, 28 Oct 2015 16:05:28 GMT
736
736
  - request:
737
737
  method: get
738
- uri: http://10.97.17.84:35357/v3/role_assignments?effective=true&user.id=e812ca56c6d64af49a7b5d4816c59ff4
738
+ uri: http://devstack.openstack.stack:35357/v3/role_assignments?effective=true&user.id=86e691fe1c1d41aeb800425b7796379a
739
739
  body:
740
740
  encoding: US-ASCII
741
741
  string: ''
@@ -749,20 +749,20 @@ http_interactions:
749
749
  Accept:
750
750
  - application/json
751
751
  X-Auth-Token:
752
- - f6af15c0332e4d3ab7716b51d8fedfff
752
+ - e6b2788de4cb4562b55c8a7bb05e8444
753
753
  response:
754
754
  status:
755
755
  code: 200
756
756
  message: ''
757
757
  headers:
758
758
  Date:
759
- - Fri, 02 Oct 2015 11:41:29 GMT
759
+ - Wed, 28 Oct 2015 16:05:48 GMT
760
760
  Server:
761
761
  - Apache/2.4.7 (Ubuntu)
762
762
  Vary:
763
763
  - X-Auth-Token
764
764
  X-Openstack-Request-Id:
765
- - req-abc270d2-1cf1-48fe-9013-572b89560ff3
765
+ - req-7fd7fc38-0cb2-43be-947c-2d17e50748c9
766
766
  Content-Length:
767
767
  - '179'
768
768
  Content-Type:
@@ -777,13 +777,13 @@ http_interactions:
777
777
  - keep-alive
778
778
  body:
779
779
  encoding: UTF-8
780
- string: '{"role_assignments": [], "links": {"self": "http://10.97.17.84:35357/v3/role_assignments?effective=true&user.id=e812ca56c6d64af49a7b5d4816c59ff4",
780
+ string: '{"role_assignments": [], "links": {"self": "http://devstack.openstack.stack:35357/v3/role_assignments?effective=true&user.id=86e691fe1c1d41aeb800425b7796379a",
781
781
  "previous": null, "next": null}}'
782
782
  http_version:
783
- recorded_at: Fri, 02 Oct 2015 11:41:17 GMT
783
+ recorded_at: Wed, 28 Oct 2015 16:05:28 GMT
784
784
  - request:
785
785
  method: delete
786
- uri: http://10.97.17.84:35357/v3/users/e812ca56c6d64af49a7b5d4816c59ff4
786
+ uri: http://devstack.openstack.stack:35357/v3/users/86e691fe1c1d41aeb800425b7796379a
787
787
  body:
788
788
  encoding: US-ASCII
789
789
  string: ''
@@ -797,20 +797,20 @@ http_interactions:
797
797
  Accept:
798
798
  - application/json
799
799
  X-Auth-Token:
800
- - f6af15c0332e4d3ab7716b51d8fedfff
800
+ - e6b2788de4cb4562b55c8a7bb05e8444
801
801
  response:
802
802
  status:
803
803
  code: 204
804
804
  message: ''
805
805
  headers:
806
806
  Date:
807
- - Fri, 02 Oct 2015 11:41:29 GMT
807
+ - Wed, 28 Oct 2015 16:05:48 GMT
808
808
  Server:
809
809
  - Apache/2.4.7 (Ubuntu)
810
810
  Vary:
811
811
  - X-Auth-Token
812
812
  X-Openstack-Request-Id:
813
- - req-ca4b0e6b-22cc-423b-ab6c-e3bfd4f1fb75
813
+ - req-433ad8e4-dfc8-4341-bdce-2dcdd9fc7a6b
814
814
  Content-Length:
815
815
  - '0'
816
816
  X-Cache:
@@ -825,10 +825,10 @@ http_interactions:
825
825
  encoding: UTF-8
826
826
  string: ''
827
827
  http_version:
828
- recorded_at: Fri, 02 Oct 2015 11:41:17 GMT
828
+ recorded_at: Wed, 28 Oct 2015 16:05:28 GMT
829
829
  - request:
830
830
  method: delete
831
- uri: http://10.97.17.84:35357/v3/groups/74d2824e9fd54f90b14ec844fedb6838
831
+ uri: http://devstack.openstack.stack:35357/v3/groups/c5980f5c3c484058964c4c6fc36996a4
832
832
  body:
833
833
  encoding: US-ASCII
834
834
  string: ''
@@ -842,20 +842,20 @@ http_interactions:
842
842
  Accept:
843
843
  - application/json
844
844
  X-Auth-Token:
845
- - f6af15c0332e4d3ab7716b51d8fedfff
845
+ - e6b2788de4cb4562b55c8a7bb05e8444
846
846
  response:
847
847
  status:
848
848
  code: 204
849
849
  message: ''
850
850
  headers:
851
851
  Date:
852
- - Fri, 02 Oct 2015 11:41:29 GMT
852
+ - Wed, 28 Oct 2015 16:05:48 GMT
853
853
  Server:
854
854
  - Apache/2.4.7 (Ubuntu)
855
855
  Vary:
856
856
  - X-Auth-Token
857
857
  X-Openstack-Request-Id:
858
- - req-d2ff5f41-c5ea-4ef9-9563-da5bb66742fe
858
+ - req-16535c29-c8cf-4ac5-ae91-dfbef29d2cba
859
859
  Content-Length:
860
860
  - '0'
861
861
  X-Cache:
@@ -870,10 +870,10 @@ http_interactions:
870
870
  encoding: UTF-8
871
871
  string: ''
872
872
  http_version:
873
- recorded_at: Fri, 02 Oct 2015 11:41:17 GMT
873
+ recorded_at: Wed, 28 Oct 2015 16:05:28 GMT
874
874
  - request:
875
875
  method: delete
876
- uri: http://10.97.17.84:35357/v3/roles/c37c2c90ad984810a665bd7d0d49766c
876
+ uri: http://devstack.openstack.stack:35357/v3/roles/6a6b513c3c72446dabb430ff36796466
877
877
  body:
878
878
  encoding: US-ASCII
879
879
  string: ''
@@ -887,20 +887,20 @@ http_interactions:
887
887
  Accept:
888
888
  - application/json
889
889
  X-Auth-Token:
890
- - f6af15c0332e4d3ab7716b51d8fedfff
890
+ - e6b2788de4cb4562b55c8a7bb05e8444
891
891
  response:
892
892
  status:
893
893
  code: 204
894
894
  message: ''
895
895
  headers:
896
896
  Date:
897
- - Fri, 02 Oct 2015 11:41:29 GMT
897
+ - Wed, 28 Oct 2015 16:05:48 GMT
898
898
  Server:
899
899
  - Apache/2.4.7 (Ubuntu)
900
900
  Vary:
901
901
  - X-Auth-Token
902
902
  X-Openstack-Request-Id:
903
- - req-e2b39ffb-e1b2-4acf-ab35-2dde16cc7886
903
+ - req-c7b0ac49-9db1-4b18-b07f-6cb0bb3b9028
904
904
  Content-Length:
905
905
  - '0'
906
906
  X-Cache:
@@ -915,10 +915,10 @@ http_interactions:
915
915
  encoding: UTF-8
916
916
  string: ''
917
917
  http_version:
918
- recorded_at: Fri, 02 Oct 2015 11:41:17 GMT
918
+ recorded_at: Wed, 28 Oct 2015 16:05:28 GMT
919
919
  - request:
920
920
  method: patch
921
- uri: http://10.97.17.84:35357/v3/domains/3834b66a17c94d8d9a609cedd26535a8
921
+ uri: http://devstack.openstack.stack:35357/v3/domains/93f5a068606843259eec03e016d8d724
922
922
  body:
923
923
  encoding: UTF-8
924
924
  string: '{"domain":{"enabled":false}}'
@@ -932,20 +932,20 @@ http_interactions:
932
932
  Accept:
933
933
  - application/json
934
934
  X-Auth-Token:
935
- - f6af15c0332e4d3ab7716b51d8fedfff
935
+ - e6b2788de4cb4562b55c8a7bb05e8444
936
936
  response:
937
937
  status:
938
938
  code: 200
939
939
  message: ''
940
940
  headers:
941
941
  Date:
942
- - Fri, 02 Oct 2015 11:41:29 GMT
942
+ - Wed, 28 Oct 2015 16:05:48 GMT
943
943
  Server:
944
944
  - Apache/2.4.7 (Ubuntu)
945
945
  Vary:
946
946
  - X-Auth-Token
947
947
  X-Openstack-Request-Id:
948
- - req-e64f990a-3c4a-4cba-b043-0910a3ff3b49
948
+ - req-9d01d21c-3f84-406b-a89d-501c2f0f61f1
949
949
  Content-Length:
950
950
  - '183'
951
951
  Content-Type:
@@ -960,14 +960,14 @@ http_interactions:
960
960
  - keep-alive
961
961
  body:
962
962
  encoding: UTF-8
963
- string: '{"domain": {"enabled": false, "id": "3834b66a17c94d8d9a609cedd26535a8",
964
- "links": {"self": "http://10.97.17.84:35357/v3/domains/3834b66a17c94d8d9a609cedd26535a8"},
963
+ string: '{"domain": {"enabled": false, "id": "93f5a068606843259eec03e016d8d724",
964
+ "links": {"self": "http://devstack.openstack.stack:35357/v3/domains/93f5a068606843259eec03e016d8d724"},
965
965
  "name": "d-foobar"}}'
966
966
  http_version:
967
- recorded_at: Fri, 02 Oct 2015 11:41:17 GMT
967
+ recorded_at: Wed, 28 Oct 2015 16:05:28 GMT
968
968
  - request:
969
969
  method: delete
970
- uri: http://10.97.17.84:35357/v3/domains/3834b66a17c94d8d9a609cedd26535a8
970
+ uri: http://devstack.openstack.stack:35357/v3/domains/93f5a068606843259eec03e016d8d724
971
971
  body:
972
972
  encoding: US-ASCII
973
973
  string: ''
@@ -981,20 +981,20 @@ http_interactions:
981
981
  Accept:
982
982
  - application/json
983
983
  X-Auth-Token:
984
- - f6af15c0332e4d3ab7716b51d8fedfff
984
+ - e6b2788de4cb4562b55c8a7bb05e8444
985
985
  response:
986
986
  status:
987
987
  code: 204
988
988
  message: ''
989
989
  headers:
990
990
  Date:
991
- - Fri, 02 Oct 2015 11:41:29 GMT
991
+ - Wed, 28 Oct 2015 16:05:48 GMT
992
992
  Server:
993
993
  - Apache/2.4.7 (Ubuntu)
994
994
  Vary:
995
995
  - X-Auth-Token
996
996
  X-Openstack-Request-Id:
997
- - req-02eeadab-1752-479a-a594-628efc6fc81d
997
+ - req-6150ae99-cdaf-46f8-b9ef-c3d80a2c5751
998
998
  Content-Length:
999
999
  - '0'
1000
1000
  X-Cache:
@@ -1009,5 +1009,5 @@ http_interactions:
1009
1009
  encoding: UTF-8
1010
1010
  string: ''
1011
1011
  http_version:
1012
- recorded_at: Fri, 02 Oct 2015 11:41:18 GMT
1012
+ recorded_at: Wed, 28 Oct 2015 16:05:29 GMT
1013
1013
  recorded_with: VCR 2.9.3