fog 1.31.0 → 1.32.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (176) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +53 -0
  3. data/Rakefile +5 -5
  4. data/fog.gemspec +6 -5
  5. data/lib/fog/cloudstack/models/compute/network.rb +1 -0
  6. data/lib/fog/openstack/compute.rb +41 -98
  7. data/lib/fog/openstack/core.rb +257 -118
  8. data/lib/fog/openstack/identity.rb +4 -0
  9. data/lib/fog/openstack/identity_v3.rb +10 -41
  10. data/lib/fog/openstack/models/baremetal/chassis_collection.rb +10 -4
  11. data/lib/fog/openstack/models/baremetal/drivers.rb +4 -2
  12. data/lib/fog/openstack/models/baremetal/nodes.rb +10 -4
  13. data/lib/fog/openstack/models/baremetal/ports.rb +10 -4
  14. data/lib/fog/openstack/models/compute/addresses.rb +4 -2
  15. data/lib/fog/openstack/models/compute/aggregate.rb +64 -0
  16. data/lib/fog/openstack/models/compute/aggregates.rb +28 -0
  17. data/lib/fog/openstack/models/compute/flavors.rb +5 -0
  18. data/lib/fog/openstack/models/compute/hosts.rb +4 -2
  19. data/lib/fog/openstack/models/compute/images.rb +2 -0
  20. data/lib/fog/openstack/models/compute/key_pairs.rb +4 -2
  21. data/lib/fog/openstack/models/compute/security_groups.rb +4 -2
  22. data/lib/fog/openstack/models/compute/servers.rb +2 -0
  23. data/lib/fog/openstack/models/compute/services.rb +7 -4
  24. data/lib/fog/openstack/models/compute/snapshots.rb +15 -2
  25. data/lib/fog/openstack/models/compute/volumes.rb +15 -2
  26. data/lib/fog/openstack/models/identity_v2/ec2_credentials.rb +6 -3
  27. data/lib/fog/openstack/models/identity_v2/roles.rb +5 -3
  28. data/lib/fog/openstack/models/identity_v2/tenants.rb +5 -3
  29. data/lib/fog/openstack/models/identity_v2/users.rb +7 -3
  30. data/lib/fog/openstack/models/identity_v3/domains.rb +7 -6
  31. data/lib/fog/openstack/models/identity_v3/endpoints.rb +5 -4
  32. data/lib/fog/openstack/models/identity_v3/groups.rb +5 -3
  33. data/lib/fog/openstack/models/identity_v3/os_credentials.rb +5 -3
  34. data/lib/fog/openstack/models/identity_v3/policies.rb +5 -3
  35. data/lib/fog/openstack/models/identity_v3/project.rb +1 -0
  36. data/lib/fog/openstack/models/identity_v3/projects.rb +7 -5
  37. data/lib/fog/openstack/models/identity_v3/role_assignments.rb +10 -5
  38. data/lib/fog/openstack/models/identity_v3/roles.rb +11 -5
  39. data/lib/fog/openstack/models/identity_v3/services.rb +5 -3
  40. data/lib/fog/openstack/models/identity_v3/users.rb +4 -2
  41. data/lib/fog/openstack/models/image/images.rb +10 -4
  42. data/lib/fog/openstack/models/network/floating_ips.rb +2 -0
  43. data/lib/fog/openstack/models/network/lb_health_monitors.rb +2 -0
  44. data/lib/fog/openstack/models/network/lb_members.rb +2 -0
  45. data/lib/fog/openstack/models/network/lb_pools.rb +2 -0
  46. data/lib/fog/openstack/models/network/lb_vips.rb +2 -0
  47. data/lib/fog/openstack/models/network/networks.rb +2 -0
  48. data/lib/fog/openstack/models/network/port.rb +1 -0
  49. data/lib/fog/openstack/models/network/ports.rb +2 -0
  50. data/lib/fog/openstack/models/network/routers.rb +2 -0
  51. data/lib/fog/openstack/models/network/security_group_rules.rb +2 -0
  52. data/lib/fog/openstack/models/network/security_groups.rb +2 -0
  53. data/lib/fog/openstack/models/network/subnets.rb +2 -0
  54. data/lib/fog/openstack/models/orchestration/events.rb +10 -6
  55. data/lib/fog/openstack/models/orchestration/resources.rb +4 -2
  56. data/lib/fog/openstack/models/orchestration/stack.rb +1 -1
  57. data/lib/fog/openstack/models/orchestration/stacks.rb +9 -1
  58. data/lib/fog/openstack/models/planning/plans.rb +4 -2
  59. data/lib/fog/openstack/models/planning/roles.rb +5 -2
  60. data/lib/fog/openstack/models/storage/directories.rb +4 -2
  61. data/lib/fog/openstack/models/storage/files.rb +2 -0
  62. data/lib/fog/openstack/models/volume/volume.rb +1 -0
  63. data/lib/fog/openstack/models/volume/volume_types.rb +2 -0
  64. data/lib/fog/openstack/models/volume/volumes.rb +13 -2
  65. data/lib/fog/openstack/network.rb +18 -97
  66. data/lib/fog/openstack/orchestration.rb +2 -0
  67. data/lib/fog/openstack/requests/baremetal/list_chassis.rb +2 -8
  68. data/lib/fog/openstack/requests/baremetal/list_chassis_detailed.rb +3 -9
  69. data/lib/fog/openstack/requests/baremetal/list_drivers.rb +4 -3
  70. data/lib/fog/openstack/requests/baremetal/list_nodes.rb +3 -9
  71. data/lib/fog/openstack/requests/baremetal/list_nodes_detailed.rb +3 -9
  72. data/lib/fog/openstack/requests/baremetal/list_ports.rb +3 -9
  73. data/lib/fog/openstack/requests/baremetal/list_ports_detailed.rb +3 -9
  74. data/lib/fog/openstack/requests/compute/add_aggregate_host.rb +30 -0
  75. data/lib/fog/openstack/requests/compute/create_aggregate.rb +42 -0
  76. data/lib/fog/openstack/requests/compute/delete_aggregate.rb +28 -0
  77. data/lib/fog/openstack/requests/compute/get_aggregate.rb +26 -0
  78. data/lib/fog/openstack/requests/compute/list_aggregates.rb +36 -0
  79. data/lib/fog/openstack/requests/compute/list_all_addresses.rb +4 -3
  80. data/lib/fog/openstack/requests/compute/list_flavors.rb +6 -5
  81. data/lib/fog/openstack/requests/compute/list_hosts.rb +4 -3
  82. data/lib/fog/openstack/requests/compute/list_key_pairs.rb +4 -3
  83. data/lib/fog/openstack/requests/compute/list_security_groups.rb +15 -2
  84. data/lib/fog/openstack/requests/compute/list_snapshots.rb +18 -4
  85. data/lib/fog/openstack/requests/compute/list_snapshots_detail.rb +27 -0
  86. data/lib/fog/openstack/requests/compute/list_volumes.rb +18 -4
  87. data/lib/fog/openstack/requests/compute/list_volumes_detail.rb +25 -0
  88. data/lib/fog/openstack/requests/compute/remove_aggregate_host.rb +30 -0
  89. data/lib/fog/openstack/requests/compute/update_aggregate.rb +37 -0
  90. data/lib/fog/openstack/requests/compute/update_aggregate_metadata.rb +30 -0
  91. data/lib/fog/openstack/requests/identity_v2/list_ec2_credentials.rb +23 -7
  92. data/lib/fog/openstack/requests/identity_v2/list_roles.rb +5 -4
  93. data/lib/fog/openstack/requests/identity_v2/list_tenants.rb +14 -8
  94. data/lib/fog/openstack/requests/identity_v2/list_users.rb +16 -4
  95. data/lib/fog/openstack/requests/identity_v3/auth_domains.rb +2 -7
  96. data/lib/fog/openstack/requests/identity_v3/auth_projects.rb +6 -11
  97. data/lib/fog/openstack/requests/identity_v3/list_domains.rb +7 -14
  98. data/lib/fog/openstack/requests/identity_v3/list_endpoints.rb +7 -14
  99. data/lib/fog/openstack/requests/identity_v3/list_group_users.rb +5 -13
  100. data/lib/fog/openstack/requests/identity_v3/list_groups.rb +14 -24
  101. data/lib/fog/openstack/requests/identity_v3/list_os_credentials.rb +7 -12
  102. data/lib/fog/openstack/requests/identity_v3/list_policies.rb +7 -11
  103. data/lib/fog/openstack/requests/identity_v3/list_projects.rb +14 -25
  104. data/lib/fog/openstack/requests/identity_v3/list_role_assignments.rb +21 -17
  105. data/lib/fog/openstack/requests/identity_v3/list_roles.rb +7 -25
  106. data/lib/fog/openstack/requests/identity_v3/list_services.rb +7 -13
  107. data/lib/fog/openstack/requests/identity_v3/list_users.rb +7 -15
  108. data/lib/fog/openstack/requests/image/list_public_images.rb +4 -3
  109. data/lib/fog/openstack/requests/image/list_public_images_detailed.rb +9 -6
  110. data/lib/fog/openstack/requests/network/create_port.rb +12 -11
  111. data/lib/fog/openstack/requests/network/create_subnet.rb +7 -7
  112. data/lib/fog/openstack/requests/network/get_port.rb +1 -0
  113. data/lib/fog/openstack/requests/network/update_port.rb +7 -6
  114. data/lib/fog/openstack/requests/orchestration/list_events.rb +46 -0
  115. data/lib/fog/openstack/requests/orchestration/list_resource_events.rb +7 -2
  116. data/lib/fog/openstack/requests/orchestration/list_resource_types.rb +3 -2
  117. data/lib/fog/openstack/requests/orchestration/list_resources.rb +27 -4
  118. data/lib/fog/openstack/requests/orchestration/list_stack_data.rb +2 -2
  119. data/lib/fog/openstack/requests/orchestration/list_stack_data_detailed.rb +49 -0
  120. data/lib/fog/openstack/requests/orchestration/list_stack_events.rb +6 -2
  121. data/lib/fog/openstack/requests/planning/list_plans.rb +4 -3
  122. data/lib/fog/openstack/requests/planning/list_roles.rb +3 -9
  123. data/lib/fog/openstack/requests/volume/create_volume.rb +2 -1
  124. data/lib/fog/openstack/requests/volume/list_snapshots.rb +16 -3
  125. data/lib/fog/openstack/requests/volume/list_snapshots_detailed.rb +27 -0
  126. data/lib/fog/openstack/requests/volume/list_volume_types.rb +6 -6
  127. data/lib/fog/openstack/requests/volume/list_volumes.rb +20 -7
  128. data/lib/fog/openstack/requests/volume/list_volumes_detailed.rb +49 -0
  129. data/lib/fog/openstack/volume.rb +1 -0
  130. data/lib/fog/ovirt/models/compute/server.rb +1 -0
  131. data/lib/fog/ovirt/models/compute/template.rb +1 -0
  132. data/lib/fog/rackspace/docs/queues.md +2 -2
  133. data/lib/fog/rackspace/models/block_storage/snapshot.rb +5 -1
  134. data/lib/fog/version.rb +1 -1
  135. data/lib/fog/vsphere/requests/compute/vm_clone.rb +1 -1
  136. data/lib/tasks/changelog_task.rb +1 -0
  137. data/spec/fog/openstack/identity_v3/authv3_a.yml +55 -35
  138. data/spec/fog/openstack/identity_v3/authv3_b.yml +55 -35
  139. data/spec/fog/openstack/identity_v3/authv3_c.yml +159 -33
  140. data/spec/fog/openstack/identity_v3/authv3_project.yml +79 -35
  141. data/spec/fog/openstack/identity_v3/authv3_token.yml +377 -76
  142. data/spec/fog/openstack/identity_v3/authv3_unscoped.yml +298 -155
  143. data/spec/fog/openstack/identity_v3/authv3_unscoped_reauth.yml +371 -0
  144. data/spec/fog/openstack/identity_v3/idv3.yml +456 -41
  145. data/spec/fog/openstack/identity_v3/idv3_credential.yml +36 -30
  146. data/spec/fog/openstack/identity_v3/idv3_credential_crud.yml +223 -190
  147. data/spec/fog/openstack/identity_v3/idv3_domain.yml +64 -58
  148. data/spec/fog/openstack/identity_v3/idv3_domain_crud.yml +176 -393
  149. data/spec/fog/openstack/identity_v3/idv3_domain_group_roles_mutation.yml +277 -379
  150. data/spec/fog/openstack/identity_v3/idv3_domain_roles_mutation.yml +177 -204
  151. data/spec/fog/openstack/identity_v3/idv3_endpoint.yml +492 -174
  152. data/spec/fog/openstack/identity_v3/idv3_endpoints_crud.yml +669 -435
  153. data/spec/fog/openstack/identity_v3/idv3_group_crud_mutation.yml +378 -298
  154. data/spec/fog/openstack/identity_v3/idv3_other_region.yml +187 -0
  155. data/spec/fog/openstack/identity_v3/idv3_policy.yml +54 -46
  156. data/spec/fog/openstack/identity_v3/idv3_policy_crud.yml +137 -117
  157. data/spec/fog/openstack/identity_v3/idv3_project.yml +116 -86
  158. data/spec/fog/openstack/identity_v3/idv3_project_crud.yml +179 -387
  159. data/spec/fog/openstack/identity_v3/idv3_project_group_user_roles_mutation.yml +415 -556
  160. data/spec/fog/openstack/identity_v3/idv3_role.yml +108 -74
  161. data/spec/fog/openstack/identity_v3/idv3_role_crud.yml +160 -368
  162. data/spec/fog/openstack/identity_v3/idv3_service.yml +156 -94
  163. data/spec/fog/openstack/identity_v3/idv3_services_crud.yml +250 -306
  164. data/spec/fog/openstack/identity_v3/idv3_token.yml +195 -101
  165. data/spec/fog/openstack/identity_v3/idv3_user_crud.yml +276 -193
  166. data/spec/fog/openstack/identity_v3/idv3_users.yml +149 -219
  167. data/spec/fog/openstack/identity_v3_spec.rb +502 -474
  168. data/spec/fog/openstack/volume/volume_common_setup.yml +76 -0
  169. data/spec/fog/openstack/volume/volume_crud.yml +561 -0
  170. data/spec/fog/openstack/volume/volume_type_read.yml +120 -0
  171. data/spec/fog/openstack/volume_spec.rb +165 -0
  172. data/tests/openstack/requests/compute/aggregate_tests.rb +59 -0
  173. data/tests/openstack/requests/network/port_tests.rb +12 -11
  174. data/tests/openstack/requests/orchestration/stack_tests.rb +25 -0
  175. metadata +56 -14
  176. data/spec/fog/openstack/identity_v3/idv2_unscoped_token_v3.yml +0 -467
@@ -2,1377 +2,1236 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://devstack.openstack.stack:35357/v3/projects?name=p-foobar&page=1&per_page=30
5
+ uri: http://devstack.openstack.stack:35357/v3/projects?name=p-foobar69
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - fog/1.28.0 fog-core/1.29.0
11
+ - fog/1.31.0 fog-core/1.31.1
12
12
  Content-Type:
13
13
  - application/json
14
14
  Accept:
15
15
  - application/json
16
16
  X-Auth-Token:
17
- - d8291e2a2a2046259316f7c2d4253e92
17
+ - 0c4458de5ba5446885c65b1dedfb2404
18
18
  response:
19
19
  status:
20
- code: 401
20
+ code: 200
21
21
  message: ''
22
22
  headers:
23
- Www-Authenticate:
24
- - Keystone uri="http://devstack.openstack.stack:35357"
25
- Vary:
26
- - X-Auth-Token
27
- X-Distribution:
28
- - Ubuntu
29
- Content-Type:
30
- - application/json
31
- Content-Length:
32
- - '114'
33
23
  Date:
34
- - Mon, 23 Mar 2015 09:25:31 GMT
35
- body:
36
- encoding: US-ASCII
37
- string: ! '{"error": {"message": "The request you have made requires authentication.",
38
- "code": 401, "title": "Unauthorized"}}'
39
- http_version:
40
- recorded_at: Mon, 23 Mar 2015 09:25:31 GMT
41
- - request:
42
- method: post
43
- uri: http://devstack.openstack.stack:5000/v3/auth/tokens
44
- body:
45
- encoding: UTF-8
46
- string: ! '{"auth":{"identity":{"methods":["password"],"password":{"user":{"password":"openstack","id":"8d5732a0ebd9485396351d74e24c9647"}}},"scope":{"project":{"name":"admin","domain":{"id":"default"}}}}}'
47
- headers:
48
- User-Agent:
49
- - fog/1.28.0 fog-core/1.29.0
50
- Content-Type:
51
- - application/json
52
- response:
53
- status:
54
- code: 201
55
- message: ''
56
- headers:
57
- X-Subject-Token:
58
- - 09fa2fc6e9f04f7f99aff28e13b19f51
24
+ - Tue, 23 Jun 2015 15:09:34 GMT
25
+ Server:
26
+ - Apache/2.4.7 (Ubuntu)
59
27
  Vary:
60
28
  - X-Auth-Token
61
- X-Distribution:
62
- - Ubuntu
63
- Content-Type:
64
- - application/json
29
+ X-Openstack-Request-Id:
30
+ - req-1daefc8f-d2bc-420b-8295-cc2be2e73352
65
31
  Content-Length:
66
- - '2254'
67
- Date:
68
- - Mon, 23 Mar 2015 09:25:32 GMT
69
- body:
70
- encoding: US-ASCII
71
- string: ! '{"token": {"methods": ["password"], "roles": [{"id": "7ebef8a2837246eda8f83f96ffb82b2f",
72
- "name": "admin"}], "expires_at": "2015-03-23T10:25:32.124999Z", "project":
73
- {"domain": {"id": "default", "name": "Default"}, "id": "c7767afa57b74f33863a420daba5f57f",
74
- "name": "admin"}, "catalog": [{"endpoints": [{"url": "http://devstack.openstack.stack:35357/v2.0",
75
- "region": "europe", "interface": "public", "id": "0b4b1e907e184880a1c3f32f00cd676f"},
76
- {"url": "http://devstack.openstack.stack:35357/v2.0", "region": "europe",
77
- "interface": "admin", "id": "53d872f1c5d04f35ac69509e41600c0b"}, {"url": "http://devstack.openstack.stack:35357/v2.0",
78
- "region": "europe", "interface": "internal", "id": "67aa3eedc510444faadb9ef3c7e8b2e4"}],
79
- "type": "identity", "id": "8e53f1d389df4059aeab1acfece2fc66", "name": "keystone"},
80
- {"endpoints": [{"url": "http://devstack.openstack.stack:35357/v3", "region":
81
- "europe", "interface": "internal", "id": "7002cfd6dbe74512b0b817d3b7380abb"},
82
- {"url": "http://devstack.openstack.stack:35357/v3", "region": "europe", "interface":
83
- "public", "id": "a7c634aa7f034284b62ddf974ddc04eb"}, {"url": "http://devstack.openstack.stack:35357/v3",
84
- "region": "europe", "interface": "admin", "id": "cba56e3e7a9c4ddfb39e1e4053bd04ab"}],
85
- "type": "identity_v3", "id": "a47e0f0014fa409993cef0bd984a5ac6", "name": "identity_v3"},
86
- {"endpoints": [{"url": "http://localhost/testurl/c7767afa57b74f33863a420daba5f57f",
87
- "region": "europe", "interface": "public", "id": "3387dfbf7bc440728e7aa1488f6ca96e"}],
88
- "type": "test_stefan", "id": "d36a1f72832b428688b7dae7d0ab8a39", "name": "test_stefan"},
89
- {"endpoints": [{"url": "http://devstack.openstack.stack:9292", "region": "europe",
90
- "interface": "public", "id": "0dabc688a031422381d3c92b7dfdfe4c"}, {"url":
91
- "http://devstack.openstack.stack:9292", "region": "europe", "interface": "admin",
92
- "id": "768f3eb8b29d49a19c4d50a85541d42e"}, {"url": "http://devstack.openstack.stack:9292",
93
- "region": "europe", "interface": "internal", "id": "a0c5556c80e448aca907a3ee785bd602"}],
94
- "type": "image", "id": "ee073ec39e804cca96d2440d8f109932", "name": "glance"}],
95
- "extras": {}, "user": {"domain": {"id": "default", "name": "Default"}, "id":
96
- "8d5732a0ebd9485396351d74e24c9647", "name": "admin"}, "issued_at": "2015-03-23T09:25:32.125027Z"}}'
97
- http_version:
98
- recorded_at: Mon, 23 Mar 2015 09:25:32 GMT
99
- - request:
100
- method: get
101
- uri: http://devstack.openstack.stack:35357/v3/projects?name=p-foobar&page=1&per_page=30
102
- body:
103
- encoding: US-ASCII
104
- string: ''
105
- headers:
106
- User-Agent:
107
- - fog/1.28.0 fog-core/1.29.0
32
+ - '126'
108
33
  Content-Type:
109
34
  - application/json
110
- Accept:
111
- - application/json
112
- X-Auth-Token:
113
- - 09fa2fc6e9f04f7f99aff28e13b19f51
114
- response:
115
- status:
116
- code: 200
117
- message: ''
118
- headers:
119
- Vary:
120
- - X-Auth-Token
121
- X-Distribution:
122
- - Ubuntu
123
- Content-Type:
124
- - application/json
125
- Content-Length:
126
- - '120'
127
- Date:
128
- - Mon, 23 Mar 2015 09:25:32 GMT
129
35
  body:
130
36
  encoding: US-ASCII
131
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects",
37
+ string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects?name=p-foobar69",
132
38
  "previous": null, "next": null}, "projects": []}'
133
39
  http_version:
134
- recorded_at: Mon, 23 Mar 2015 09:25:32 GMT
40
+ recorded_at: Tue, 23 Jun 2015 15:09:34 GMT
135
41
  - request:
136
42
  method: get
137
- uri: http://devstack.openstack.stack:35357/v3/projects?name=p-foobar&page=1&per_page=30
43
+ uri: http://devstack.openstack.stack:35357/v3/projects?name=p-foobar69
138
44
  body:
139
45
  encoding: US-ASCII
140
46
  string: ''
141
47
  headers:
142
48
  User-Agent:
143
- - fog/1.28.0 fog-core/1.29.0
49
+ - fog/1.31.0 fog-core/1.31.1
144
50
  Content-Type:
145
51
  - application/json
146
52
  Accept:
147
53
  - application/json
148
54
  X-Auth-Token:
149
- - 09fa2fc6e9f04f7f99aff28e13b19f51
55
+ - 0c4458de5ba5446885c65b1dedfb2404
150
56
  response:
151
57
  status:
152
58
  code: 200
153
59
  message: ''
154
60
  headers:
61
+ Date:
62
+ - Tue, 23 Jun 2015 15:09:34 GMT
63
+ Server:
64
+ - Apache/2.4.7 (Ubuntu)
155
65
  Vary:
156
66
  - X-Auth-Token
157
- X-Distribution:
158
- - Ubuntu
67
+ X-Openstack-Request-Id:
68
+ - req-42f9755e-e94e-4764-9888-7d5833bbb244
69
+ Content-Length:
70
+ - '126'
159
71
  Content-Type:
160
72
  - application/json
161
- Content-Length:
162
- - '120'
163
- Date:
164
- - Mon, 23 Mar 2015 09:25:32 GMT
165
73
  body:
166
74
  encoding: US-ASCII
167
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects",
75
+ string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects?name=p-foobar69",
168
76
  "previous": null, "next": null}, "projects": []}'
169
77
  http_version:
170
- recorded_at: Mon, 23 Mar 2015 09:25:32 GMT
78
+ recorded_at: Tue, 23 Jun 2015 15:09:34 GMT
171
79
  - request:
172
80
  method: post
173
81
  uri: http://devstack.openstack.stack:35357/v3/projects
174
82
  body:
175
83
  encoding: UTF-8
176
- string: ! '{"project":{"name":"p-foobar"}}'
84
+ string: ! '{"project":{"name":"p-foobar69"}}'
177
85
  headers:
178
86
  User-Agent:
179
- - fog/1.28.0 fog-core/1.29.0
87
+ - fog/1.31.0 fog-core/1.31.1
180
88
  Content-Type:
181
89
  - application/json
182
90
  Accept:
183
91
  - application/json
184
92
  X-Auth-Token:
185
- - 09fa2fc6e9f04f7f99aff28e13b19f51
93
+ - 0c4458de5ba5446885c65b1dedfb2404
186
94
  response:
187
95
  status:
188
96
  code: 201
189
97
  message: ''
190
98
  headers:
99
+ Date:
100
+ - Tue, 23 Jun 2015 15:09:34 GMT
101
+ Server:
102
+ - Apache/2.4.7 (Ubuntu)
191
103
  Vary:
192
104
  - X-Auth-Token
193
- X-Distribution:
194
- - Ubuntu
105
+ X-Openstack-Request-Id:
106
+ - req-cc4f0600-ace8-4454-89dc-257438612b62
107
+ Content-Length:
108
+ - '251'
195
109
  Content-Type:
196
110
  - application/json
197
- Content-Length:
198
- - '240'
199
- Date:
200
- - Mon, 23 Mar 2015 09:25:32 GMT
201
111
  body:
202
112
  encoding: US-ASCII
203
- string: ! '{"project": {"description": "", "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4"},
204
- "enabled": true, "id": "bbcb7e7ab8af4911aced6d47d885a4a4", "domain_id": "default",
205
- "name": "p-foobar"}}'
113
+ string: ! '{"project": {"description": "", "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560"},
114
+ "enabled": true, "id": "d07e7028f83649c6857a3ee9368cf560", "parent_id": null,
115
+ "domain_id": "default", "name": "p-foobar69"}}'
206
116
  http_version:
207
- recorded_at: Mon, 23 Mar 2015 09:25:32 GMT
117
+ recorded_at: Tue, 23 Jun 2015 15:09:34 GMT
208
118
  - request:
209
119
  method: get
210
- uri: http://devstack.openstack.stack:35357/v3/roles?name=baz&page=1&per_page=30
120
+ uri: http://devstack.openstack.stack:35357/v3/roles?name=baz
211
121
  body:
212
122
  encoding: US-ASCII
213
123
  string: ''
214
124
  headers:
215
125
  User-Agent:
216
- - fog/1.28.0 fog-core/1.29.0
126
+ - fog/1.31.0 fog-core/1.31.1
217
127
  Content-Type:
218
128
  - application/json
219
129
  Accept:
220
130
  - application/json
221
131
  X-Auth-Token:
222
- - 09fa2fc6e9f04f7f99aff28e13b19f51
132
+ - 0c4458de5ba5446885c65b1dedfb2404
223
133
  response:
224
134
  status:
225
135
  code: 200
226
136
  message: ''
227
137
  headers:
138
+ Date:
139
+ - Tue, 23 Jun 2015 15:09:34 GMT
140
+ Server:
141
+ - Apache/2.4.7 (Ubuntu)
228
142
  Vary:
229
143
  - X-Auth-Token
230
- X-Distribution:
231
- - Ubuntu
144
+ X-Openstack-Request-Id:
145
+ - req-56a91b14-df8f-4e8c-b0d9-7c9fdeb57324
146
+ Content-Length:
147
+ - '113'
232
148
  Content-Type:
233
149
  - application/json
234
- Content-Length:
235
- - '114'
236
- Date:
237
- - Mon, 23 Mar 2015 09:25:32 GMT
238
150
  body:
239
151
  encoding: US-ASCII
240
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/roles",
152
+ string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/roles?name=baz",
241
153
  "previous": null, "next": null}, "roles": []}'
242
154
  http_version:
243
- recorded_at: Mon, 23 Mar 2015 09:25:32 GMT
155
+ recorded_at: Tue, 23 Jun 2015 15:09:35 GMT
244
156
  - request:
245
157
  method: post
246
158
  uri: http://devstack.openstack.stack:35357/v3/roles
247
159
  body:
248
160
  encoding: UTF-8
249
- string: ! '{"role":{"name":"baz"}}'
161
+ string: ! '{"role":{"name":"baz69"}}'
250
162
  headers:
251
163
  User-Agent:
252
- - fog/1.28.0 fog-core/1.29.0
164
+ - fog/1.31.0 fog-core/1.31.1
253
165
  Content-Type:
254
166
  - application/json
255
167
  Accept:
256
168
  - application/json
257
169
  X-Auth-Token:
258
- - 09fa2fc6e9f04f7f99aff28e13b19f51
170
+ - 0c4458de5ba5446885c65b1dedfb2404
259
171
  response:
260
172
  status:
261
173
  code: 201
262
174
  message: ''
263
175
  headers:
264
- Vary:
265
- - X-Auth-Token
266
- X-Distribution:
267
- - Ubuntu
268
- Content-Type:
269
- - application/json
270
- Content-Length:
271
- - '169'
272
176
  Date:
273
- - Mon, 23 Mar 2015 09:25:32 GMT
274
- body:
275
- encoding: US-ASCII
276
- string: ! '{"role": {"id": "a9a762f8001c48a392e1be2899a4e2d7", "links": {"self":
277
- "http://devstack.openstack.stack:35357/v3/roles/a9a762f8001c48a392e1be2899a4e2d7"},
278
- "name": "baz"}}'
279
- http_version:
280
- recorded_at: Mon, 23 Mar 2015 09:25:32 GMT
281
- - request:
282
- method: get
283
- uri: http://devstack.openstack.stack:35357/v3/users?name=u-foobar&page=1&per_page=30
284
- body:
285
- encoding: US-ASCII
286
- string: ''
287
- headers:
288
- User-Agent:
289
- - fog/1.28.0 fog-core/1.29.0
290
- Content-Type:
291
- - application/json
292
- Accept:
293
- - application/json
294
- X-Auth-Token:
295
- - 09fa2fc6e9f04f7f99aff28e13b19f51
296
- response:
297
- status:
298
- code: 200
299
- message: ''
300
- headers:
177
+ - Tue, 23 Jun 2015 15:09:34 GMT
178
+ Server:
179
+ - Apache/2.4.7 (Ubuntu)
301
180
  Vary:
302
181
  - X-Auth-Token
303
- X-Distribution:
304
- - Ubuntu
305
- Content-Type:
306
- - application/json
182
+ X-Openstack-Request-Id:
183
+ - req-d468ed8c-5fa0-4e29-b999-15740ba5597c
307
184
  Content-Length:
308
- - '350'
309
- Date:
310
- - Mon, 23 Mar 2015 09:25:33 GMT
311
- body:
312
- encoding: US-ASCII
313
- string: ! '{"users": [{"name": "u-foobar", "links": {"self": "http://devstack.openstack.stack:35357/v3/users/660d8086a1db41078c0d64fa568db135"},
314
- "domain_id": "default", "enabled": true, "email": "foobar@example.com", "id":
315
- "660d8086a1db41078c0d64fa568db135"}], "links": {"self": "http://devstack.openstack.stack:35357/v3/users",
316
- "previous": null, "next": null}}'
317
- http_version:
318
- recorded_at: Mon, 23 Mar 2015 09:25:33 GMT
319
- - request:
320
- method: delete
321
- uri: http://devstack.openstack.stack:35357/v3/users/660d8086a1db41078c0d64fa568db135
322
- body:
323
- encoding: US-ASCII
324
- string: ''
325
- headers:
326
- User-Agent:
327
- - fog/1.28.0 fog-core/1.29.0
185
+ - '161'
328
186
  Content-Type:
329
187
  - application/json
330
- Accept:
331
- - application/json
332
- X-Auth-Token:
333
- - 09fa2fc6e9f04f7f99aff28e13b19f51
334
- response:
335
- status:
336
- code: 204
337
- message: ''
338
- headers:
339
- Vary:
340
- - X-Auth-Token
341
- X-Distribution:
342
- - Ubuntu
343
- Content-Length:
344
- - '0'
345
- Date:
346
- - Mon, 23 Mar 2015 09:25:33 GMT
347
188
  body:
348
189
  encoding: US-ASCII
349
- string: ''
190
+ string: ! '{"role": {"id": "3a270450bbc14749be4593a849b19eed", "links": {"self":
191
+ "http://devstack.openstack.stack:35357/v3/roles/3a270450bbc14749be4593a849b19eed"},
192
+ "name": "baz69"}}'
350
193
  http_version:
351
- recorded_at: Mon, 23 Mar 2015 09:25:33 GMT
194
+ recorded_at: Tue, 23 Jun 2015 15:09:35 GMT
352
195
  - request:
353
196
  method: post
354
197
  uri: http://devstack.openstack.stack:35357/v3/users
355
198
  body:
356
199
  encoding: UTF-8
357
- string: ! '{"user":{"name":"u-foobar","email":"foobar@example.com","password":"s3cret!"}}'
200
+ string: ! '{"user":{"name":"u-foobar69","email":"foobar@example.com","password":"s3cret!"}}'
358
201
  headers:
359
202
  User-Agent:
360
- - fog/1.28.0 fog-core/1.29.0
203
+ - fog/1.31.0 fog-core/1.31.1
361
204
  Content-Type:
362
205
  - application/json
363
206
  Accept:
364
207
  - application/json
365
208
  X-Auth-Token:
366
- - 09fa2fc6e9f04f7f99aff28e13b19f51
209
+ - 0c4458de5ba5446885c65b1dedfb2404
367
210
  response:
368
211
  status:
369
212
  code: 201
370
213
  message: ''
371
214
  headers:
372
- Vary:
373
- - X-Auth-Token
374
- X-Distribution:
375
- - Ubuntu
376
- Content-Type:
377
- - application/json
378
- Content-Length:
379
- - '246'
380
215
  Date:
381
- - Mon, 23 Mar 2015 09:25:33 GMT
382
- body:
383
- encoding: US-ASCII
384
- string: ! '{"user": {"name": "u-foobar", "links": {"self": "http://devstack.openstack.stack:35357/v3/users/0f30d9da31aa47d59633d522cc6857ba"},
385
- "domain_id": "default", "enabled": true, "email": "foobar@example.com", "id":
386
- "0f30d9da31aa47d59633d522cc6857ba"}}'
387
- http_version:
388
- recorded_at: Mon, 23 Mar 2015 09:25:33 GMT
389
- - request:
390
- method: get
391
- uri: http://devstack.openstack.stack:35357/v3/groups?page=1&per_page=30
392
- body:
393
- encoding: US-ASCII
394
- string: ''
395
- headers:
396
- User-Agent:
397
- - fog/1.28.0 fog-core/1.29.0
398
- Content-Type:
399
- - application/json
400
- Accept:
401
- - application/json
402
- X-Auth-Token:
403
- - 09fa2fc6e9f04f7f99aff28e13b19f51
404
- response:
405
- status:
406
- code: 200
407
- message: ''
408
- headers:
216
+ - Tue, 23 Jun 2015 15:09:34 GMT
217
+ Server:
218
+ - Apache/2.4.7 (Ubuntu)
409
219
  Vary:
410
220
  - X-Auth-Token
411
- X-Distribution:
412
- - Ubuntu
221
+ X-Openstack-Request-Id:
222
+ - req-1057b84b-a4fe-4b9d-bad6-0d0981c47c8c
223
+ Content-Length:
224
+ - '238'
413
225
  Content-Type:
414
226
  - application/json
415
- Content-Length:
416
- - '116'
417
- Date:
418
- - Mon, 23 Mar 2015 09:25:33 GMT
419
227
  body:
420
228
  encoding: US-ASCII
421
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/groups",
422
- "previous": null, "next": null}, "groups": []}'
229
+ string: ! '{"user": {"name": "u-foobar69", "links": {"self": "http://devstack.openstack.stack:35357/v3/users/5acef369a39a4be395cc0845e52c801c"},
230
+ "domain_id": "default", "enabled": true, "email": "foobar@example.com", "id":
231
+ "5acef369a39a4be395cc0845e52c801c"}}'
423
232
  http_version:
424
- recorded_at: Mon, 23 Mar 2015 09:25:33 GMT
233
+ recorded_at: Tue, 23 Jun 2015 15:09:35 GMT
425
234
  - request:
426
235
  method: post
427
236
  uri: http://devstack.openstack.stack:35357/v3/groups
428
237
  body:
429
238
  encoding: UTF-8
430
- string: ! '{"group":{"name":"g-foobar","description":"Group of Foobar users"}}'
239
+ string: ! '{"group":{"name":"g-foobar69","description":"Group of Foobar users"}}'
431
240
  headers:
432
241
  User-Agent:
433
- - fog/1.28.0 fog-core/1.29.0
242
+ - fog/1.31.0 fog-core/1.31.1
434
243
  Content-Type:
435
244
  - application/json
436
245
  Accept:
437
246
  - application/json
438
247
  X-Auth-Token:
439
- - 09fa2fc6e9f04f7f99aff28e13b19f51
248
+ - 0c4458de5ba5446885c65b1dedfb2404
440
249
  response:
441
250
  status:
442
251
  code: 201
443
252
  message: ''
444
253
  headers:
254
+ Date:
255
+ - Tue, 23 Jun 2015 15:09:35 GMT
256
+ Server:
257
+ - Apache/2.4.7 (Ubuntu)
445
258
  Vary:
446
259
  - X-Auth-Token
447
- X-Distribution:
448
- - Ubuntu
260
+ X-Openstack-Request-Id:
261
+ - req-e471c720-182c-4cc5-af21-0a707b2155c2
262
+ Content-Length:
263
+ - '232'
449
264
  Content-Type:
450
265
  - application/json
451
- Content-Length:
452
- - '240'
453
- Date:
454
- - Mon, 23 Mar 2015 09:25:33 GMT
455
266
  body:
456
267
  encoding: US-ASCII
457
268
  string: ! '{"group": {"domain_id": "default", "description": "Group of Foobar
458
- users", "id": "44e4c1c97bde4f20a86c21ecc7f94ee7", "links": {"self": "http://devstack.openstack.stack:35357/v3/groups/44e4c1c97bde4f20a86c21ecc7f94ee7"},
459
- "name": "g-foobar"}}'
269
+ users", "id": "1f0c437e1b714db28c7109e602c12ba1", "links": {"self": "http://devstack.openstack.stack:35357/v3/groups/1f0c437e1b714db28c7109e602c12ba1"},
270
+ "name": "g-foobar69"}}'
460
271
  http_version:
461
- recorded_at: Mon, 23 Mar 2015 09:25:33 GMT
272
+ recorded_at: Tue, 23 Jun 2015 15:09:35 GMT
462
273
  - request:
463
274
  method: put
464
- uri: http://devstack.openstack.stack:35357/v3/groups/44e4c1c97bde4f20a86c21ecc7f94ee7/users/0f30d9da31aa47d59633d522cc6857ba
275
+ uri: http://devstack.openstack.stack:35357/v3/groups/1f0c437e1b714db28c7109e602c12ba1/users/5acef369a39a4be395cc0845e52c801c
465
276
  body:
466
277
  encoding: US-ASCII
467
278
  string: ''
468
279
  headers:
469
280
  User-Agent:
470
- - fog/1.28.0 fog-core/1.29.0
281
+ - fog/1.31.0 fog-core/1.31.1
471
282
  Content-Type:
472
283
  - application/json
473
284
  Accept:
474
285
  - application/json
475
286
  X-Auth-Token:
476
- - 09fa2fc6e9f04f7f99aff28e13b19f51
287
+ - 0c4458de5ba5446885c65b1dedfb2404
477
288
  response:
478
289
  status:
479
290
  code: 204
480
291
  message: ''
481
292
  headers:
293
+ Date:
294
+ - Tue, 23 Jun 2015 15:09:35 GMT
295
+ Server:
296
+ - Apache/2.4.7 (Ubuntu)
482
297
  Vary:
483
298
  - X-Auth-Token
484
- X-Distribution:
485
- - Ubuntu
299
+ X-Openstack-Request-Id:
300
+ - req-1bb569eb-18af-40ec-a1c6-570aee546b67
486
301
  Content-Length:
487
302
  - '0'
488
- Date:
489
- - Mon, 23 Mar 2015 09:25:34 GMT
490
303
  body:
491
304
  encoding: US-ASCII
492
305
  string: ''
493
306
  http_version:
494
- recorded_at: Mon, 23 Mar 2015 09:25:33 GMT
307
+ recorded_at: Tue, 23 Jun 2015 15:09:35 GMT
495
308
  - request:
496
309
  method: get
497
- uri: http://devstack.openstack.stack:35357/v3/users/0f30d9da31aa47d59633d522cc6857ba/projects
310
+ uri: http://devstack.openstack.stack:35357/v3/users/5acef369a39a4be395cc0845e52c801c/projects
498
311
  body:
499
312
  encoding: US-ASCII
500
313
  string: ''
501
314
  headers:
502
315
  User-Agent:
503
- - fog/1.28.0 fog-core/1.29.0
316
+ - fog/1.31.0 fog-core/1.31.1
504
317
  Content-Type:
505
318
  - application/json
506
319
  Accept:
507
320
  - application/json
508
321
  X-Auth-Token:
509
- - 09fa2fc6e9f04f7f99aff28e13b19f51
322
+ - 0c4458de5ba5446885c65b1dedfb2404
510
323
  response:
511
324
  status:
512
325
  code: 200
513
326
  message: ''
514
327
  headers:
328
+ Date:
329
+ - Tue, 23 Jun 2015 15:09:35 GMT
330
+ Server:
331
+ - Apache/2.4.7 (Ubuntu)
515
332
  Vary:
516
333
  - X-Auth-Token
517
- X-Distribution:
518
- - Ubuntu
334
+ X-Openstack-Request-Id:
335
+ - req-bcc194b1-85c1-4b14-829b-4f7c03c13bc2
336
+ Content-Length:
337
+ - '149'
519
338
  Content-Type:
520
339
  - application/json
521
- Content-Length:
522
- - '159'
523
- Date:
524
- - Mon, 23 Mar 2015 09:25:34 GMT
525
340
  body:
526
341
  encoding: US-ASCII
527
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/users/0f30d9da31aa47d59633d522cc6857ba/projects",
342
+ string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/users/5acef369a39a4be395cc0845e52c801c/projects",
528
343
  "previous": null, "next": null}, "projects": []}'
529
344
  http_version:
530
- recorded_at: Mon, 23 Mar 2015 09:25:34 GMT
345
+ recorded_at: Tue, 23 Jun 2015 15:09:35 GMT
531
346
  - request:
532
347
  method: get
533
- uri: http://devstack.openstack.stack:35357/v3/role_assignments?effective=true&page=1&per_page=30&scope.project.id=bbcb7e7ab8af4911aced6d47d885a4a4&user.id=0f30d9da31aa47d59633d522cc6857ba
348
+ uri: http://devstack.openstack.stack:35357/v3/role_assignments?effective=true&scope.project.id=d07e7028f83649c6857a3ee9368cf560&user.id=5acef369a39a4be395cc0845e52c801c
534
349
  body:
535
350
  encoding: US-ASCII
536
351
  string: ''
537
352
  headers:
538
353
  User-Agent:
539
- - fog/1.28.0 fog-core/1.29.0
354
+ - fog/1.31.0 fog-core/1.31.1
540
355
  Content-Type:
541
356
  - application/json
542
357
  Accept:
543
358
  - application/json
544
359
  X-Auth-Token:
545
- - 09fa2fc6e9f04f7f99aff28e13b19f51
360
+ - 0c4458de5ba5446885c65b1dedfb2404
546
361
  response:
547
362
  status:
548
363
  code: 200
549
364
  message: ''
550
365
  headers:
366
+ Date:
367
+ - Tue, 23 Jun 2015 15:09:35 GMT
368
+ Server:
369
+ - Apache/2.4.7 (Ubuntu)
551
370
  Vary:
552
371
  - X-Auth-Token
553
- X-Distribution:
554
- - Ubuntu
372
+ X-Openstack-Request-Id:
373
+ - req-dde7465f-2a0c-47dc-8c7f-a68d12b8e6a3
374
+ Content-Length:
375
+ - '232'
555
376
  Content-Type:
556
377
  - application/json
557
- Content-Length:
558
- - '136'
559
- Date:
560
- - Mon, 23 Mar 2015 09:25:34 GMT
561
378
  body:
562
379
  encoding: US-ASCII
563
- string: ! '{"role_assignments": [], "links": {"self": "http://devstack.openstack.stack:35357/v3/role_assignments",
380
+ string: ! '{"role_assignments": [], "links": {"self": "http://devstack.openstack.stack:35357/v3/role_assignments?effective=true&scope.project.id=d07e7028f83649c6857a3ee9368cf560&user.id=5acef369a39a4be395cc0845e52c801c",
564
381
  "previous": null, "next": null}}'
565
382
  http_version:
566
- recorded_at: Mon, 23 Mar 2015 09:25:34 GMT
383
+ recorded_at: Tue, 23 Jun 2015 15:09:35 GMT
567
384
  - request:
568
385
  method: get
569
- uri: http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4/users/0f30d9da31aa47d59633d522cc6857ba/roles
386
+ uri: http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560/users/5acef369a39a4be395cc0845e52c801c/roles
570
387
  body:
571
388
  encoding: US-ASCII
572
389
  string: ''
573
390
  headers:
574
391
  User-Agent:
575
- - fog/1.28.0 fog-core/1.29.0
392
+ - fog/1.31.0 fog-core/1.31.1
576
393
  Content-Type:
577
394
  - application/json
578
395
  Accept:
579
396
  - application/json
580
397
  X-Auth-Token:
581
- - 09fa2fc6e9f04f7f99aff28e13b19f51
398
+ - 0c4458de5ba5446885c65b1dedfb2404
582
399
  response:
583
400
  status:
584
401
  code: 200
585
402
  message: ''
586
403
  headers:
404
+ Date:
405
+ - Tue, 23 Jun 2015 15:09:35 GMT
406
+ Server:
407
+ - Apache/2.4.7 (Ubuntu)
587
408
  Vary:
588
409
  - X-Auth-Token
589
- X-Distribution:
590
- - Ubuntu
410
+ X-Openstack-Request-Id:
411
+ - req-fef962b6-82a3-4b34-8c46-9ec2742d6ca1
412
+ Content-Length:
413
+ - '185'
591
414
  Content-Type:
592
415
  - application/json
593
- Content-Length:
594
- - '195'
595
- Date:
596
- - Mon, 23 Mar 2015 09:25:34 GMT
597
416
  body:
598
417
  encoding: US-ASCII
599
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4/users/0f30d9da31aa47d59633d522cc6857ba/roles",
418
+ string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560/users/5acef369a39a4be395cc0845e52c801c/roles",
600
419
  "previous": null, "next": null}, "roles": []}'
601
420
  http_version:
602
- recorded_at: Mon, 23 Mar 2015 09:25:34 GMT
421
+ recorded_at: Tue, 23 Jun 2015 15:09:35 GMT
603
422
  - request:
604
423
  method: put
605
- uri: http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4/users/0f30d9da31aa47d59633d522cc6857ba/roles/a9a762f8001c48a392e1be2899a4e2d7
424
+ uri: http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560/users/5acef369a39a4be395cc0845e52c801c/roles/3a270450bbc14749be4593a849b19eed
606
425
  body:
607
426
  encoding: US-ASCII
608
427
  string: ''
609
428
  headers:
610
429
  User-Agent:
611
- - fog/1.28.0 fog-core/1.29.0
430
+ - fog/1.31.0 fog-core/1.31.1
612
431
  Content-Type:
613
432
  - application/json
614
433
  Accept:
615
434
  - application/json
616
435
  X-Auth-Token:
617
- - 09fa2fc6e9f04f7f99aff28e13b19f51
436
+ - 0c4458de5ba5446885c65b1dedfb2404
618
437
  response:
619
438
  status:
620
439
  code: 204
621
440
  message: ''
622
441
  headers:
442
+ Date:
443
+ - Tue, 23 Jun 2015 15:09:35 GMT
444
+ Server:
445
+ - Apache/2.4.7 (Ubuntu)
623
446
  Vary:
624
447
  - X-Auth-Token
625
- X-Distribution:
626
- - Ubuntu
448
+ X-Openstack-Request-Id:
449
+ - req-5632a8de-ee9f-4733-bf68-55403909211e
627
450
  Content-Length:
628
451
  - '0'
629
- Date:
630
- - Mon, 23 Mar 2015 09:25:34 GMT
631
452
  body:
632
453
  encoding: US-ASCII
633
454
  string: ''
634
455
  http_version:
635
- recorded_at: Mon, 23 Mar 2015 09:25:34 GMT
456
+ recorded_at: Tue, 23 Jun 2015 15:09:35 GMT
636
457
  - request:
637
458
  method: get
638
- uri: http://devstack.openstack.stack:35357/v3/users/0f30d9da31aa47d59633d522cc6857ba/projects
459
+ uri: http://devstack.openstack.stack:35357/v3/users/5acef369a39a4be395cc0845e52c801c/projects
639
460
  body:
640
461
  encoding: US-ASCII
641
462
  string: ''
642
463
  headers:
643
464
  User-Agent:
644
- - fog/1.28.0 fog-core/1.29.0
465
+ - fog/1.31.0 fog-core/1.31.1
645
466
  Content-Type:
646
467
  - application/json
647
468
  Accept:
648
469
  - application/json
649
470
  X-Auth-Token:
650
- - 09fa2fc6e9f04f7f99aff28e13b19f51
471
+ - 0c4458de5ba5446885c65b1dedfb2404
651
472
  response:
652
473
  status:
653
474
  code: 200
654
475
  message: ''
655
476
  headers:
477
+ Date:
478
+ - Tue, 23 Jun 2015 15:09:35 GMT
479
+ Server:
480
+ - Apache/2.4.7 (Ubuntu)
656
481
  Vary:
657
482
  - X-Auth-Token
658
- X-Distribution:
659
- - Ubuntu
483
+ X-Openstack-Request-Id:
484
+ - req-9fe705ac-5740-47e7-8a39-03877e6a3dbd
485
+ Content-Length:
486
+ - '387'
660
487
  Content-Type:
661
488
  - application/json
662
- Content-Length:
663
- - '386'
664
- Date:
665
- - Mon, 23 Mar 2015 09:25:34 GMT
666
489
  body:
667
490
  encoding: US-ASCII
668
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/users/0f30d9da31aa47d59633d522cc6857ba/projects",
491
+ string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/users/5acef369a39a4be395cc0845e52c801c/projects",
669
492
  "previous": null, "next": null}, "projects": [{"description": "", "links":
670
- {"self": "http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4"},
671
- "enabled": true, "id": "bbcb7e7ab8af4911aced6d47d885a4a4", "domain_id": "default",
672
- "name": "p-foobar"}]}'
493
+ {"self": "http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560"},
494
+ "enabled": true, "id": "d07e7028f83649c6857a3ee9368cf560", "parent_id": null,
495
+ "domain_id": "default", "name": "p-foobar69"}]}'
673
496
  http_version:
674
- recorded_at: Mon, 23 Mar 2015 09:25:34 GMT
497
+ recorded_at: Tue, 23 Jun 2015 15:09:36 GMT
675
498
  - request:
676
499
  method: head
677
- uri: http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4/users/0f30d9da31aa47d59633d522cc6857ba/roles/a9a762f8001c48a392e1be2899a4e2d7
500
+ uri: http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560/users/5acef369a39a4be395cc0845e52c801c/roles/3a270450bbc14749be4593a849b19eed
678
501
  body:
679
502
  encoding: US-ASCII
680
503
  string: ''
681
504
  headers:
682
505
  User-Agent:
683
- - fog/1.28.0 fog-core/1.29.0
506
+ - fog/1.31.0 fog-core/1.31.1
684
507
  Content-Type:
685
508
  - application/json
686
509
  Accept:
687
510
  - application/json
688
511
  X-Auth-Token:
689
- - 09fa2fc6e9f04f7f99aff28e13b19f51
512
+ - 0c4458de5ba5446885c65b1dedfb2404
690
513
  response:
691
514
  status:
692
515
  code: 204
693
516
  message: ''
694
517
  headers:
518
+ Date:
519
+ - Tue, 23 Jun 2015 15:09:35 GMT
520
+ Server:
521
+ - Apache/2.4.7 (Ubuntu)
695
522
  Vary:
696
523
  - X-Auth-Token
697
- X-Distribution:
698
- - Ubuntu
699
- Content-Length:
700
- - '0'
701
- Date:
702
- - Mon, 23 Mar 2015 09:25:35 GMT
524
+ X-Openstack-Request-Id:
525
+ - req-9485906e-8d0f-445c-8a26-4baa04c70273
703
526
  body:
704
527
  encoding: US-ASCII
705
528
  string: ''
706
529
  http_version:
707
- recorded_at: Mon, 23 Mar 2015 09:25:35 GMT
530
+ recorded_at: Tue, 23 Jun 2015 15:09:36 GMT
708
531
  - request:
709
532
  method: get
710
- uri: http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4/users/0f30d9da31aa47d59633d522cc6857ba/roles
533
+ uri: http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560/users/5acef369a39a4be395cc0845e52c801c/roles
711
534
  body:
712
535
  encoding: US-ASCII
713
536
  string: ''
714
537
  headers:
715
538
  User-Agent:
716
- - fog/1.28.0 fog-core/1.29.0
539
+ - fog/1.31.0 fog-core/1.31.1
717
540
  Content-Type:
718
541
  - application/json
719
542
  Accept:
720
543
  - application/json
721
544
  X-Auth-Token:
722
- - 09fa2fc6e9f04f7f99aff28e13b19f51
545
+ - 0c4458de5ba5446885c65b1dedfb2404
723
546
  response:
724
547
  status:
725
548
  code: 200
726
549
  message: ''
727
550
  headers:
551
+ Date:
552
+ - Tue, 23 Jun 2015 15:09:36 GMT
553
+ Server:
554
+ - Apache/2.4.7 (Ubuntu)
728
555
  Vary:
729
556
  - X-Auth-Token
730
- X-Distribution:
731
- - Ubuntu
557
+ X-Openstack-Request-Id:
558
+ - req-a881d949-2a7d-4753-990a-88031d615f80
559
+ Content-Length:
560
+ - '336'
732
561
  Content-Type:
733
562
  - application/json
734
- Content-Length:
735
- - '354'
736
- Date:
737
- - Mon, 23 Mar 2015 09:25:35 GMT
738
563
  body:
739
564
  encoding: US-ASCII
740
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4/users/0f30d9da31aa47d59633d522cc6857ba/roles",
741
- "previous": null, "next": null}, "roles": [{"id": "a9a762f8001c48a392e1be2899a4e2d7",
742
- "links": {"self": "http://devstack.openstack.stack:35357/v3/roles/a9a762f8001c48a392e1be2899a4e2d7"},
743
- "name": "baz"}]}'
565
+ string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560/users/5acef369a39a4be395cc0845e52c801c/roles",
566
+ "previous": null, "next": null}, "roles": [{"id": "3a270450bbc14749be4593a849b19eed",
567
+ "links": {"self": "http://devstack.openstack.stack:35357/v3/roles/3a270450bbc14749be4593a849b19eed"},
568
+ "name": "baz69"}]}'
744
569
  http_version:
745
- recorded_at: Mon, 23 Mar 2015 09:25:35 GMT
570
+ recorded_at: Tue, 23 Jun 2015 15:09:36 GMT
746
571
  - request:
747
572
  method: delete
748
- uri: http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4/users/0f30d9da31aa47d59633d522cc6857ba/roles/a9a762f8001c48a392e1be2899a4e2d7
573
+ uri: http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560/users/5acef369a39a4be395cc0845e52c801c/roles/3a270450bbc14749be4593a849b19eed
749
574
  body:
750
575
  encoding: US-ASCII
751
576
  string: ''
752
577
  headers:
753
578
  User-Agent:
754
- - fog/1.28.0 fog-core/1.29.0
579
+ - fog/1.31.0 fog-core/1.31.1
755
580
  Content-Type:
756
581
  - application/json
757
582
  Accept:
758
583
  - application/json
759
584
  X-Auth-Token:
760
- - 09fa2fc6e9f04f7f99aff28e13b19f51
585
+ - 0c4458de5ba5446885c65b1dedfb2404
761
586
  response:
762
587
  status:
763
588
  code: 204
764
589
  message: ''
765
590
  headers:
591
+ Date:
592
+ - Tue, 23 Jun 2015 15:09:36 GMT
593
+ Server:
594
+ - Apache/2.4.7 (Ubuntu)
766
595
  Vary:
767
596
  - X-Auth-Token
768
- X-Distribution:
769
- - Ubuntu
597
+ X-Openstack-Request-Id:
598
+ - req-a7ca063a-46c4-41e4-8812-7e8be2ada7cb
770
599
  Content-Length:
771
600
  - '0'
772
- Date:
773
- - Mon, 23 Mar 2015 09:25:35 GMT
774
601
  body:
775
602
  encoding: US-ASCII
776
603
  string: ''
777
604
  http_version:
778
- recorded_at: Mon, 23 Mar 2015 09:25:35 GMT
605
+ recorded_at: Tue, 23 Jun 2015 15:09:36 GMT
779
606
  - request:
780
607
  method: get
781
- uri: http://devstack.openstack.stack:35357/v3/users/0f30d9da31aa47d59633d522cc6857ba/projects
608
+ uri: http://devstack.openstack.stack:35357/v3/users/5acef369a39a4be395cc0845e52c801c/projects
782
609
  body:
783
610
  encoding: US-ASCII
784
611
  string: ''
785
612
  headers:
786
613
  User-Agent:
787
- - fog/1.28.0 fog-core/1.29.0
614
+ - fog/1.31.0 fog-core/1.31.1
788
615
  Content-Type:
789
616
  - application/json
790
617
  Accept:
791
618
  - application/json
792
619
  X-Auth-Token:
793
- - 09fa2fc6e9f04f7f99aff28e13b19f51
620
+ - 0c4458de5ba5446885c65b1dedfb2404
794
621
  response:
795
622
  status:
796
623
  code: 200
797
624
  message: ''
798
625
  headers:
626
+ Date:
627
+ - Tue, 23 Jun 2015 15:09:36 GMT
628
+ Server:
629
+ - Apache/2.4.7 (Ubuntu)
799
630
  Vary:
800
631
  - X-Auth-Token
801
- X-Distribution:
802
- - Ubuntu
632
+ X-Openstack-Request-Id:
633
+ - req-db4ae22b-a2e7-43a2-be58-eefcec23d923
634
+ Content-Length:
635
+ - '149'
803
636
  Content-Type:
804
637
  - application/json
805
- Content-Length:
806
- - '159'
807
- Date:
808
- - Mon, 23 Mar 2015 09:25:35 GMT
809
638
  body:
810
639
  encoding: US-ASCII
811
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/users/0f30d9da31aa47d59633d522cc6857ba/projects",
640
+ string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/users/5acef369a39a4be395cc0845e52c801c/projects",
812
641
  "previous": null, "next": null}, "projects": []}'
813
642
  http_version:
814
- recorded_at: Mon, 23 Mar 2015 09:25:35 GMT
643
+ recorded_at: Tue, 23 Jun 2015 15:09:36 GMT
815
644
  - request:
816
645
  method: head
817
- uri: http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4/users/0f30d9da31aa47d59633d522cc6857ba/roles/a9a762f8001c48a392e1be2899a4e2d7
646
+ uri: http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560/users/5acef369a39a4be395cc0845e52c801c/roles/3a270450bbc14749be4593a849b19eed
818
647
  body:
819
648
  encoding: US-ASCII
820
649
  string: ''
821
650
  headers:
822
651
  User-Agent:
823
- - fog/1.28.0 fog-core/1.29.0
652
+ - fog/1.31.0 fog-core/1.31.1
824
653
  Content-Type:
825
654
  - application/json
826
655
  Accept:
827
656
  - application/json
828
657
  X-Auth-Token:
829
- - 09fa2fc6e9f04f7f99aff28e13b19f51
658
+ - 0c4458de5ba5446885c65b1dedfb2404
830
659
  response:
831
660
  status:
832
661
  code: 404
833
662
  message: ''
834
663
  headers:
664
+ Date:
665
+ - Tue, 23 Jun 2015 15:09:36 GMT
666
+ Server:
667
+ - Apache/2.4.7 (Ubuntu)
835
668
  Vary:
836
669
  - X-Auth-Token
837
- X-Distribution:
838
- - Ubuntu
670
+ X-Openstack-Request-Id:
671
+ - req-abcf0c44-0115-4434-a630-f986d91cc5aa
672
+ Content-Length:
673
+ - '237'
839
674
  Content-Type:
840
675
  - application/json
841
- Content-Length:
842
- - '115'
843
- Date:
844
- - Mon, 23 Mar 2015 09:25:35 GMT
845
676
  body:
846
677
  encoding: US-ASCII
847
678
  string: ''
848
679
  http_version:
849
- recorded_at: Mon, 23 Mar 2015 09:25:35 GMT
680
+ recorded_at: Tue, 23 Jun 2015 15:09:36 GMT
850
681
  - request:
851
682
  method: get
852
- uri: http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4/groups/44e4c1c97bde4f20a86c21ecc7f94ee7/roles
683
+ uri: http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560/groups/1f0c437e1b714db28c7109e602c12ba1/roles
853
684
  body:
854
685
  encoding: US-ASCII
855
686
  string: ''
856
687
  headers:
857
688
  User-Agent:
858
- - fog/1.28.0 fog-core/1.29.0
689
+ - fog/1.31.0 fog-core/1.31.1
859
690
  Content-Type:
860
691
  - application/json
861
692
  Accept:
862
693
  - application/json
863
694
  X-Auth-Token:
864
- - 09fa2fc6e9f04f7f99aff28e13b19f51
695
+ - 0c4458de5ba5446885c65b1dedfb2404
865
696
  response:
866
697
  status:
867
698
  code: 200
868
699
  message: ''
869
700
  headers:
701
+ Date:
702
+ - Tue, 23 Jun 2015 15:09:36 GMT
703
+ Server:
704
+ - Apache/2.4.7 (Ubuntu)
870
705
  Vary:
871
706
  - X-Auth-Token
872
- X-Distribution:
873
- - Ubuntu
707
+ X-Openstack-Request-Id:
708
+ - req-6994b94f-9c7a-4ba4-86b0-60533fe47b5d
709
+ Content-Length:
710
+ - '186'
874
711
  Content-Type:
875
712
  - application/json
876
- Content-Length:
877
- - '196'
878
- Date:
879
- - Mon, 23 Mar 2015 09:25:35 GMT
880
713
  body:
881
714
  encoding: US-ASCII
882
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4/groups/44e4c1c97bde4f20a86c21ecc7f94ee7/roles",
715
+ string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560/groups/1f0c437e1b714db28c7109e602c12ba1/roles",
883
716
  "previous": null, "next": null}, "roles": []}'
884
717
  http_version:
885
- recorded_at: Mon, 23 Mar 2015 09:25:35 GMT
718
+ recorded_at: Tue, 23 Jun 2015 15:09:36 GMT
886
719
  - request:
887
720
  method: get
888
- uri: http://devstack.openstack.stack:35357/v3/role_assignments?effective=true&page=1&per_page=30&scope.project.id=bbcb7e7ab8af4911aced6d47d885a4a4&user.id=0f30d9da31aa47d59633d522cc6857ba
721
+ uri: http://devstack.openstack.stack:35357/v3/role_assignments?effective=true&scope.project.id=d07e7028f83649c6857a3ee9368cf560&user.id=5acef369a39a4be395cc0845e52c801c
889
722
  body:
890
723
  encoding: US-ASCII
891
724
  string: ''
892
725
  headers:
893
726
  User-Agent:
894
- - fog/1.28.0 fog-core/1.29.0
727
+ - fog/1.31.0 fog-core/1.31.1
895
728
  Content-Type:
896
729
  - application/json
897
730
  Accept:
898
731
  - application/json
899
732
  X-Auth-Token:
900
- - 09fa2fc6e9f04f7f99aff28e13b19f51
733
+ - 0c4458de5ba5446885c65b1dedfb2404
901
734
  response:
902
735
  status:
903
736
  code: 200
904
737
  message: ''
905
738
  headers:
739
+ Date:
740
+ - Tue, 23 Jun 2015 15:09:36 GMT
741
+ Server:
742
+ - Apache/2.4.7 (Ubuntu)
906
743
  Vary:
907
744
  - X-Auth-Token
908
- X-Distribution:
909
- - Ubuntu
745
+ X-Openstack-Request-Id:
746
+ - req-a45824fe-b44b-4666-93d4-fe1837acbe87
747
+ Content-Length:
748
+ - '232'
910
749
  Content-Type:
911
750
  - application/json
912
- Content-Length:
913
- - '136'
914
- Date:
915
- - Mon, 23 Mar 2015 09:25:35 GMT
916
751
  body:
917
752
  encoding: US-ASCII
918
- string: ! '{"role_assignments": [], "links": {"self": "http://devstack.openstack.stack:35357/v3/role_assignments",
753
+ string: ! '{"role_assignments": [], "links": {"self": "http://devstack.openstack.stack:35357/v3/role_assignments?effective=true&scope.project.id=d07e7028f83649c6857a3ee9368cf560&user.id=5acef369a39a4be395cc0845e52c801c",
919
754
  "previous": null, "next": null}}'
920
755
  http_version:
921
- recorded_at: Mon, 23 Mar 2015 09:25:35 GMT
756
+ recorded_at: Tue, 23 Jun 2015 15:09:36 GMT
922
757
  - request:
923
758
  method: put
924
- uri: http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4/groups/44e4c1c97bde4f20a86c21ecc7f94ee7/roles/a9a762f8001c48a392e1be2899a4e2d7
759
+ uri: http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560/groups/1f0c437e1b714db28c7109e602c12ba1/roles/3a270450bbc14749be4593a849b19eed
925
760
  body:
926
761
  encoding: US-ASCII
927
762
  string: ''
928
763
  headers:
929
764
  User-Agent:
930
- - fog/1.28.0 fog-core/1.29.0
765
+ - fog/1.31.0 fog-core/1.31.1
931
766
  Content-Type:
932
767
  - application/json
933
768
  Accept:
934
769
  - application/json
935
770
  X-Auth-Token:
936
- - 09fa2fc6e9f04f7f99aff28e13b19f51
771
+ - 0c4458de5ba5446885c65b1dedfb2404
937
772
  response:
938
773
  status:
939
774
  code: 204
940
775
  message: ''
941
776
  headers:
777
+ Date:
778
+ - Tue, 23 Jun 2015 15:09:36 GMT
779
+ Server:
780
+ - Apache/2.4.7 (Ubuntu)
942
781
  Vary:
943
782
  - X-Auth-Token
944
- X-Distribution:
945
- - Ubuntu
783
+ X-Openstack-Request-Id:
784
+ - req-67083a0e-62b6-4624-b0b9-6213342d4675
946
785
  Content-Length:
947
786
  - '0'
948
- Date:
949
- - Mon, 23 Mar 2015 09:25:36 GMT
950
787
  body:
951
788
  encoding: US-ASCII
952
789
  string: ''
953
790
  http_version:
954
- recorded_at: Mon, 23 Mar 2015 09:25:36 GMT
791
+ recorded_at: Tue, 23 Jun 2015 15:09:36 GMT
955
792
  - request:
956
793
  method: head
957
- uri: http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4/groups/44e4c1c97bde4f20a86c21ecc7f94ee7/roles/a9a762f8001c48a392e1be2899a4e2d7
794
+ uri: http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560/groups/1f0c437e1b714db28c7109e602c12ba1/roles/3a270450bbc14749be4593a849b19eed
958
795
  body:
959
796
  encoding: US-ASCII
960
797
  string: ''
961
798
  headers:
962
799
  User-Agent:
963
- - fog/1.28.0 fog-core/1.29.0
800
+ - fog/1.31.0 fog-core/1.31.1
964
801
  Content-Type:
965
802
  - application/json
966
803
  Accept:
967
804
  - application/json
968
805
  X-Auth-Token:
969
- - 09fa2fc6e9f04f7f99aff28e13b19f51
806
+ - 0c4458de5ba5446885c65b1dedfb2404
970
807
  response:
971
808
  status:
972
809
  code: 204
973
810
  message: ''
974
811
  headers:
812
+ Date:
813
+ - Tue, 23 Jun 2015 15:09:36 GMT
814
+ Server:
815
+ - Apache/2.4.7 (Ubuntu)
975
816
  Vary:
976
817
  - X-Auth-Token
977
- X-Distribution:
978
- - Ubuntu
979
- Content-Length:
980
- - '0'
981
- Date:
982
- - Mon, 23 Mar 2015 09:25:36 GMT
818
+ X-Openstack-Request-Id:
819
+ - req-f2a9f0de-4a25-402e-9763-5238f49f77e9
983
820
  body:
984
821
  encoding: US-ASCII
985
822
  string: ''
986
823
  http_version:
987
- recorded_at: Mon, 23 Mar 2015 09:25:36 GMT
824
+ recorded_at: Tue, 23 Jun 2015 15:09:37 GMT
988
825
  - request:
989
826
  method: get
990
- uri: http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4/groups/44e4c1c97bde4f20a86c21ecc7f94ee7/roles
827
+ uri: http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560/groups/1f0c437e1b714db28c7109e602c12ba1/roles
991
828
  body:
992
829
  encoding: US-ASCII
993
830
  string: ''
994
831
  headers:
995
832
  User-Agent:
996
- - fog/1.28.0 fog-core/1.29.0
833
+ - fog/1.31.0 fog-core/1.31.1
997
834
  Content-Type:
998
835
  - application/json
999
836
  Accept:
1000
837
  - application/json
1001
838
  X-Auth-Token:
1002
- - 09fa2fc6e9f04f7f99aff28e13b19f51
839
+ - 0c4458de5ba5446885c65b1dedfb2404
1003
840
  response:
1004
841
  status:
1005
842
  code: 200
1006
843
  message: ''
1007
844
  headers:
845
+ Date:
846
+ - Tue, 23 Jun 2015 15:09:36 GMT
847
+ Server:
848
+ - Apache/2.4.7 (Ubuntu)
1008
849
  Vary:
1009
850
  - X-Auth-Token
1010
- X-Distribution:
1011
- - Ubuntu
851
+ X-Openstack-Request-Id:
852
+ - req-2cbf5c16-2213-41b2-ab64-ecb0828ef034
853
+ Content-Length:
854
+ - '337'
1012
855
  Content-Type:
1013
856
  - application/json
1014
- Content-Length:
1015
- - '355'
1016
- Date:
1017
- - Mon, 23 Mar 2015 09:25:36 GMT
1018
857
  body:
1019
858
  encoding: US-ASCII
1020
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4/groups/44e4c1c97bde4f20a86c21ecc7f94ee7/roles",
1021
- "previous": null, "next": null}, "roles": [{"id": "a9a762f8001c48a392e1be2899a4e2d7",
1022
- "links": {"self": "http://devstack.openstack.stack:35357/v3/roles/a9a762f8001c48a392e1be2899a4e2d7"},
1023
- "name": "baz"}]}'
859
+ string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560/groups/1f0c437e1b714db28c7109e602c12ba1/roles",
860
+ "previous": null, "next": null}, "roles": [{"id": "3a270450bbc14749be4593a849b19eed",
861
+ "links": {"self": "http://devstack.openstack.stack:35357/v3/roles/3a270450bbc14749be4593a849b19eed"},
862
+ "name": "baz69"}]}'
1024
863
  http_version:
1025
- recorded_at: Mon, 23 Mar 2015 09:25:36 GMT
864
+ recorded_at: Tue, 23 Jun 2015 15:09:37 GMT
1026
865
  - request:
1027
866
  method: get
1028
- uri: http://devstack.openstack.stack:35357/v3/role_assignments?effective=true&page=1&per_page=30&scope.project.id=bbcb7e7ab8af4911aced6d47d885a4a4&user.id=0f30d9da31aa47d59633d522cc6857ba
867
+ uri: http://devstack.openstack.stack:35357/v3/role_assignments?effective=true&scope.project.id=d07e7028f83649c6857a3ee9368cf560&user.id=5acef369a39a4be395cc0845e52c801c
1029
868
  body:
1030
869
  encoding: US-ASCII
1031
870
  string: ''
1032
871
  headers:
1033
872
  User-Agent:
1034
- - fog/1.28.0 fog-core/1.29.0
873
+ - fog/1.31.0 fog-core/1.31.1
1035
874
  Content-Type:
1036
875
  - application/json
1037
876
  Accept:
1038
877
  - application/json
1039
878
  X-Auth-Token:
1040
- - 09fa2fc6e9f04f7f99aff28e13b19f51
879
+ - 0c4458de5ba5446885c65b1dedfb2404
1041
880
  response:
1042
881
  status:
1043
882
  code: 200
1044
883
  message: ''
1045
884
  headers:
885
+ Date:
886
+ - Tue, 23 Jun 2015 15:09:37 GMT
887
+ Server:
888
+ - Apache/2.4.7 (Ubuntu)
1046
889
  Vary:
1047
890
  - X-Auth-Token
1048
- X-Distribution:
1049
- - Ubuntu
891
+ X-Openstack-Request-Id:
892
+ - req-dcea5c1c-403f-4047-9b57-1d40571bc0c3
893
+ Content-Length:
894
+ - '709'
1050
895
  Content-Type:
1051
896
  - application/json
1052
- Content-Length:
1053
- - '633'
1054
- Date:
1055
- - Mon, 23 Mar 2015 09:25:36 GMT
1056
897
  body:
1057
898
  encoding: US-ASCII
1058
- string: ! '{"role_assignments": [{"scope": {"project": {"id": "bbcb7e7ab8af4911aced6d47d885a4a4"}},
1059
- "role": {"id": "a9a762f8001c48a392e1be2899a4e2d7"}, "user": {"id": "0f30d9da31aa47d59633d522cc6857ba"},
1060
- "links": {"assignment": "http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4/groups/44e4c1c97bde4f20a86c21ecc7f94ee7/roles/a9a762f8001c48a392e1be2899a4e2d7",
1061
- "membership": "http://devstack.openstack.stack:35357/v3/groups/44e4c1c97bde4f20a86c21ecc7f94ee7/users/0f30d9da31aa47d59633d522cc6857ba"}}],
1062
- "links": {"self": "http://devstack.openstack.stack:35357/v3/role_assignments",
899
+ string: ! '{"role_assignments": [{"scope": {"project": {"id": "d07e7028f83649c6857a3ee9368cf560"}},
900
+ "role": {"id": "3a270450bbc14749be4593a849b19eed"}, "user": {"id": "5acef369a39a4be395cc0845e52c801c"},
901
+ "links": {"assignment": "http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560/groups/1f0c437e1b714db28c7109e602c12ba1/roles/3a270450bbc14749be4593a849b19eed",
902
+ "membership": "http://devstack.openstack.stack:35357/v3/groups/1f0c437e1b714db28c7109e602c12ba1/users/5acef369a39a4be395cc0845e52c801c"}}],
903
+ "links": {"self": "http://devstack.openstack.stack:35357/v3/role_assignments?effective=true&scope.project.id=d07e7028f83649c6857a3ee9368cf560&user.id=5acef369a39a4be395cc0845e52c801c",
1063
904
  "previous": null, "next": null}}'
1064
905
  http_version:
1065
- recorded_at: Mon, 23 Mar 2015 09:25:36 GMT
906
+ recorded_at: Tue, 23 Jun 2015 15:09:37 GMT
1066
907
  - request:
1067
908
  method: get
1068
- uri: http://devstack.openstack.stack:35357/v3/users/0f30d9da31aa47d59633d522cc6857ba/projects
909
+ uri: http://devstack.openstack.stack:35357/v3/users/5acef369a39a4be395cc0845e52c801c/projects
1069
910
  body:
1070
911
  encoding: US-ASCII
1071
912
  string: ''
1072
913
  headers:
1073
914
  User-Agent:
1074
- - fog/1.28.0 fog-core/1.29.0
915
+ - fog/1.31.0 fog-core/1.31.1
1075
916
  Content-Type:
1076
917
  - application/json
1077
918
  Accept:
1078
919
  - application/json
1079
920
  X-Auth-Token:
1080
- - 09fa2fc6e9f04f7f99aff28e13b19f51
921
+ - 0c4458de5ba5446885c65b1dedfb2404
1081
922
  response:
1082
923
  status:
1083
924
  code: 200
1084
925
  message: ''
1085
926
  headers:
927
+ Date:
928
+ - Tue, 23 Jun 2015 15:09:37 GMT
929
+ Server:
930
+ - Apache/2.4.7 (Ubuntu)
1086
931
  Vary:
1087
932
  - X-Auth-Token
1088
- X-Distribution:
1089
- - Ubuntu
933
+ X-Openstack-Request-Id:
934
+ - req-b475a9d0-bd78-4494-bc25-027375afd400
935
+ Content-Length:
936
+ - '387'
1090
937
  Content-Type:
1091
938
  - application/json
1092
- Content-Length:
1093
- - '386'
1094
- Date:
1095
- - Mon, 23 Mar 2015 09:25:36 GMT
1096
939
  body:
1097
940
  encoding: US-ASCII
1098
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/users/0f30d9da31aa47d59633d522cc6857ba/projects",
941
+ string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/users/5acef369a39a4be395cc0845e52c801c/projects",
1099
942
  "previous": null, "next": null}, "projects": [{"description": "", "links":
1100
- {"self": "http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4"},
1101
- "enabled": true, "id": "bbcb7e7ab8af4911aced6d47d885a4a4", "domain_id": "default",
1102
- "name": "p-foobar"}]}'
943
+ {"self": "http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560"},
944
+ "enabled": true, "id": "d07e7028f83649c6857a3ee9368cf560", "parent_id": null,
945
+ "domain_id": "default", "name": "p-foobar69"}]}'
1103
946
  http_version:
1104
- recorded_at: Mon, 23 Mar 2015 09:25:36 GMT
947
+ recorded_at: Tue, 23 Jun 2015 15:09:37 GMT
1105
948
  - request:
1106
949
  method: delete
1107
- uri: http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4/groups/44e4c1c97bde4f20a86c21ecc7f94ee7/roles/a9a762f8001c48a392e1be2899a4e2d7
950
+ uri: http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560/groups/1f0c437e1b714db28c7109e602c12ba1/roles/3a270450bbc14749be4593a849b19eed
1108
951
  body:
1109
952
  encoding: US-ASCII
1110
953
  string: ''
1111
954
  headers:
1112
955
  User-Agent:
1113
- - fog/1.28.0 fog-core/1.29.0
956
+ - fog/1.31.0 fog-core/1.31.1
1114
957
  Content-Type:
1115
958
  - application/json
1116
959
  Accept:
1117
960
  - application/json
1118
961
  X-Auth-Token:
1119
- - 09fa2fc6e9f04f7f99aff28e13b19f51
962
+ - 0c4458de5ba5446885c65b1dedfb2404
1120
963
  response:
1121
964
  status:
1122
965
  code: 204
1123
966
  message: ''
1124
967
  headers:
968
+ Date:
969
+ - Tue, 23 Jun 2015 15:09:37 GMT
970
+ Server:
971
+ - Apache/2.4.7 (Ubuntu)
1125
972
  Vary:
1126
973
  - X-Auth-Token
1127
- X-Distribution:
1128
- - Ubuntu
974
+ X-Openstack-Request-Id:
975
+ - req-0ca36d96-46c9-46ea-a1d8-7072c80ff189
1129
976
  Content-Length:
1130
977
  - '0'
1131
- Date:
1132
- - Mon, 23 Mar 2015 09:25:37 GMT
1133
978
  body:
1134
979
  encoding: US-ASCII
1135
980
  string: ''
1136
981
  http_version:
1137
- recorded_at: Mon, 23 Mar 2015 09:25:36 GMT
982
+ recorded_at: Tue, 23 Jun 2015 15:09:37 GMT
1138
983
  - request:
1139
984
  method: get
1140
- uri: http://devstack.openstack.stack:35357/v3/users/0f30d9da31aa47d59633d522cc6857ba/projects
985
+ uri: http://devstack.openstack.stack:35357/v3/users/5acef369a39a4be395cc0845e52c801c/projects
1141
986
  body:
1142
987
  encoding: US-ASCII
1143
988
  string: ''
1144
989
  headers:
1145
990
  User-Agent:
1146
- - fog/1.28.0 fog-core/1.29.0
991
+ - fog/1.31.0 fog-core/1.31.1
1147
992
  Content-Type:
1148
993
  - application/json
1149
994
  Accept:
1150
995
  - application/json
1151
996
  X-Auth-Token:
1152
- - 09fa2fc6e9f04f7f99aff28e13b19f51
997
+ - 0c4458de5ba5446885c65b1dedfb2404
1153
998
  response:
1154
999
  status:
1155
1000
  code: 200
1156
1001
  message: ''
1157
1002
  headers:
1003
+ Date:
1004
+ - Tue, 23 Jun 2015 15:09:37 GMT
1005
+ Server:
1006
+ - Apache/2.4.7 (Ubuntu)
1158
1007
  Vary:
1159
1008
  - X-Auth-Token
1160
- X-Distribution:
1161
- - Ubuntu
1009
+ X-Openstack-Request-Id:
1010
+ - req-ef8b9e30-92e8-45f3-a330-e804f6f44a93
1011
+ Content-Length:
1012
+ - '149'
1162
1013
  Content-Type:
1163
1014
  - application/json
1164
- Content-Length:
1165
- - '159'
1166
- Date:
1167
- - Mon, 23 Mar 2015 09:25:37 GMT
1168
1015
  body:
1169
1016
  encoding: US-ASCII
1170
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/users/0f30d9da31aa47d59633d522cc6857ba/projects",
1017
+ string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/users/5acef369a39a4be395cc0845e52c801c/projects",
1171
1018
  "previous": null, "next": null}, "projects": []}'
1172
1019
  http_version:
1173
- recorded_at: Mon, 23 Mar 2015 09:25:37 GMT
1020
+ recorded_at: Tue, 23 Jun 2015 15:09:37 GMT
1174
1021
  - request:
1175
1022
  method: head
1176
- uri: http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4/groups/44e4c1c97bde4f20a86c21ecc7f94ee7/roles/a9a762f8001c48a392e1be2899a4e2d7
1023
+ uri: http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560/groups/1f0c437e1b714db28c7109e602c12ba1/roles/3a270450bbc14749be4593a849b19eed
1177
1024
  body:
1178
1025
  encoding: US-ASCII
1179
1026
  string: ''
1180
1027
  headers:
1181
1028
  User-Agent:
1182
- - fog/1.28.0 fog-core/1.29.0
1029
+ - fog/1.31.0 fog-core/1.31.1
1183
1030
  Content-Type:
1184
1031
  - application/json
1185
1032
  Accept:
1186
1033
  - application/json
1187
1034
  X-Auth-Token:
1188
- - 09fa2fc6e9f04f7f99aff28e13b19f51
1035
+ - 0c4458de5ba5446885c65b1dedfb2404
1189
1036
  response:
1190
1037
  status:
1191
1038
  code: 404
1192
1039
  message: ''
1193
1040
  headers:
1041
+ Date:
1042
+ - Tue, 23 Jun 2015 15:09:37 GMT
1043
+ Server:
1044
+ - Apache/2.4.7 (Ubuntu)
1194
1045
  Vary:
1195
1046
  - X-Auth-Token
1196
- X-Distribution:
1197
- - Ubuntu
1047
+ X-Openstack-Request-Id:
1048
+ - req-a16e7c94-e3ad-494d-8503-5580773f3be6
1049
+ Content-Length:
1050
+ - '237'
1198
1051
  Content-Type:
1199
1052
  - application/json
1200
- Content-Length:
1201
- - '115'
1202
- Date:
1203
- - Mon, 23 Mar 2015 09:25:37 GMT
1204
1053
  body:
1205
1054
  encoding: US-ASCII
1206
1055
  string: ''
1207
1056
  http_version:
1208
- recorded_at: Mon, 23 Mar 2015 09:25:37 GMT
1057
+ recorded_at: Tue, 23 Jun 2015 15:09:37 GMT
1209
1058
  - request:
1210
1059
  method: delete
1211
- uri: http://devstack.openstack.stack:35357/v3/users/0f30d9da31aa47d59633d522cc6857ba
1060
+ uri: http://devstack.openstack.stack:35357/v3/users/5acef369a39a4be395cc0845e52c801c
1212
1061
  body:
1213
1062
  encoding: US-ASCII
1214
1063
  string: ''
1215
1064
  headers:
1216
1065
  User-Agent:
1217
- - fog/1.28.0 fog-core/1.29.0
1066
+ - fog/1.31.0 fog-core/1.31.1
1218
1067
  Content-Type:
1219
1068
  - application/json
1220
1069
  Accept:
1221
1070
  - application/json
1222
1071
  X-Auth-Token:
1223
- - 09fa2fc6e9f04f7f99aff28e13b19f51
1072
+ - 0c4458de5ba5446885c65b1dedfb2404
1224
1073
  response:
1225
1074
  status:
1226
1075
  code: 204
1227
1076
  message: ''
1228
1077
  headers:
1078
+ Date:
1079
+ - Tue, 23 Jun 2015 15:09:37 GMT
1080
+ Server:
1081
+ - Apache/2.4.7 (Ubuntu)
1229
1082
  Vary:
1230
1083
  - X-Auth-Token
1231
- X-Distribution:
1232
- - Ubuntu
1084
+ X-Openstack-Request-Id:
1085
+ - req-24d84ff4-d159-4427-ada7-825ca6a81ef6
1233
1086
  Content-Length:
1234
1087
  - '0'
1235
- Date:
1236
- - Mon, 23 Mar 2015 09:25:37 GMT
1237
1088
  body:
1238
1089
  encoding: US-ASCII
1239
1090
  string: ''
1240
1091
  http_version:
1241
- recorded_at: Mon, 23 Mar 2015 09:25:37 GMT
1092
+ recorded_at: Tue, 23 Jun 2015 15:09:38 GMT
1242
1093
  - request:
1243
1094
  method: delete
1244
- uri: http://devstack.openstack.stack:35357/v3/groups/44e4c1c97bde4f20a86c21ecc7f94ee7
1095
+ uri: http://devstack.openstack.stack:35357/v3/groups/1f0c437e1b714db28c7109e602c12ba1
1245
1096
  body:
1246
1097
  encoding: US-ASCII
1247
1098
  string: ''
1248
1099
  headers:
1249
1100
  User-Agent:
1250
- - fog/1.28.0 fog-core/1.29.0
1101
+ - fog/1.31.0 fog-core/1.31.1
1251
1102
  Content-Type:
1252
1103
  - application/json
1253
1104
  Accept:
1254
1105
  - application/json
1255
1106
  X-Auth-Token:
1256
- - 09fa2fc6e9f04f7f99aff28e13b19f51
1107
+ - 0c4458de5ba5446885c65b1dedfb2404
1257
1108
  response:
1258
1109
  status:
1259
1110
  code: 204
1260
1111
  message: ''
1261
1112
  headers:
1113
+ Date:
1114
+ - Tue, 23 Jun 2015 15:09:37 GMT
1115
+ Server:
1116
+ - Apache/2.4.7 (Ubuntu)
1262
1117
  Vary:
1263
1118
  - X-Auth-Token
1264
- X-Distribution:
1265
- - Ubuntu
1119
+ X-Openstack-Request-Id:
1120
+ - req-fe361bc3-3be9-4db1-b0da-311404223f0b
1266
1121
  Content-Length:
1267
1122
  - '0'
1268
- Date:
1269
- - Mon, 23 Mar 2015 09:25:37 GMT
1270
1123
  body:
1271
1124
  encoding: US-ASCII
1272
1125
  string: ''
1273
1126
  http_version:
1274
- recorded_at: Mon, 23 Mar 2015 09:25:37 GMT
1127
+ recorded_at: Tue, 23 Jun 2015 15:09:38 GMT
1275
1128
  - request:
1276
1129
  method: delete
1277
- uri: http://devstack.openstack.stack:35357/v3/roles/a9a762f8001c48a392e1be2899a4e2d7
1130
+ uri: http://devstack.openstack.stack:35357/v3/roles/3a270450bbc14749be4593a849b19eed
1278
1131
  body:
1279
1132
  encoding: US-ASCII
1280
1133
  string: ''
1281
1134
  headers:
1282
1135
  User-Agent:
1283
- - fog/1.28.0 fog-core/1.29.0
1136
+ - fog/1.31.0 fog-core/1.31.1
1284
1137
  Content-Type:
1285
1138
  - application/json
1286
1139
  Accept:
1287
1140
  - application/json
1288
1141
  X-Auth-Token:
1289
- - 09fa2fc6e9f04f7f99aff28e13b19f51
1142
+ - 0c4458de5ba5446885c65b1dedfb2404
1290
1143
  response:
1291
1144
  status:
1292
1145
  code: 204
1293
1146
  message: ''
1294
1147
  headers:
1148
+ Date:
1149
+ - Tue, 23 Jun 2015 15:09:37 GMT
1150
+ Server:
1151
+ - Apache/2.4.7 (Ubuntu)
1295
1152
  Vary:
1296
1153
  - X-Auth-Token
1297
- X-Distribution:
1298
- - Ubuntu
1154
+ X-Openstack-Request-Id:
1155
+ - req-fd03cd39-2474-4a9b-861a-75f823a215f3
1299
1156
  Content-Length:
1300
1157
  - '0'
1301
- Date:
1302
- - Mon, 23 Mar 2015 09:25:37 GMT
1303
1158
  body:
1304
1159
  encoding: US-ASCII
1305
1160
  string: ''
1306
1161
  http_version:
1307
- recorded_at: Mon, 23 Mar 2015 09:25:37 GMT
1162
+ recorded_at: Tue, 23 Jun 2015 15:09:38 GMT
1308
1163
  - request:
1309
1164
  method: patch
1310
- uri: http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4
1165
+ uri: http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560
1311
1166
  body:
1312
1167
  encoding: UTF-8
1313
1168
  string: ! '{"project":{"enabled":false}}'
1314
1169
  headers:
1315
1170
  User-Agent:
1316
- - fog/1.28.0 fog-core/1.29.0
1171
+ - fog/1.31.0 fog-core/1.31.1
1317
1172
  Content-Type:
1318
1173
  - application/json
1319
1174
  Accept:
1320
1175
  - application/json
1321
1176
  X-Auth-Token:
1322
- - 09fa2fc6e9f04f7f99aff28e13b19f51
1177
+ - 0c4458de5ba5446885c65b1dedfb2404
1323
1178
  response:
1324
1179
  status:
1325
1180
  code: 200
1326
1181
  message: ''
1327
1182
  headers:
1183
+ Date:
1184
+ - Tue, 23 Jun 2015 15:09:38 GMT
1185
+ Server:
1186
+ - Apache/2.4.7 (Ubuntu)
1328
1187
  Vary:
1329
1188
  - X-Auth-Token
1330
- X-Distribution:
1331
- - Ubuntu
1189
+ X-Openstack-Request-Id:
1190
+ - req-47eb9868-6be0-4fdf-bdd0-ef10fae290e5
1191
+ Content-Length:
1192
+ - '265'
1332
1193
  Content-Type:
1333
1194
  - application/json
1334
- Content-Length:
1335
- - '254'
1336
- Date:
1337
- - Mon, 23 Mar 2015 09:25:38 GMT
1338
1195
  body:
1339
1196
  encoding: US-ASCII
1340
- string: ! '{"project": {"description": "", "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4"},
1341
- "extra": {}, "enabled": false, "id": "bbcb7e7ab8af4911aced6d47d885a4a4", "domain_id":
1342
- "default", "name": "p-foobar"}}'
1197
+ string: ! '{"project": {"description": "", "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560"},
1198
+ "extra": {}, "enabled": false, "id": "d07e7028f83649c6857a3ee9368cf560", "parent_id":
1199
+ null, "domain_id": "default", "name": "p-foobar69"}}'
1343
1200
  http_version:
1344
- recorded_at: Mon, 23 Mar 2015 09:25:38 GMT
1201
+ recorded_at: Tue, 23 Jun 2015 15:09:38 GMT
1345
1202
  - request:
1346
1203
  method: delete
1347
- uri: http://devstack.openstack.stack:35357/v3/projects/bbcb7e7ab8af4911aced6d47d885a4a4
1204
+ uri: http://devstack.openstack.stack:35357/v3/projects/d07e7028f83649c6857a3ee9368cf560
1348
1205
  body:
1349
1206
  encoding: US-ASCII
1350
1207
  string: ''
1351
1208
  headers:
1352
1209
  User-Agent:
1353
- - fog/1.28.0 fog-core/1.29.0
1210
+ - fog/1.31.0 fog-core/1.31.1
1354
1211
  Content-Type:
1355
1212
  - application/json
1356
1213
  Accept:
1357
1214
  - application/json
1358
1215
  X-Auth-Token:
1359
- - 09fa2fc6e9f04f7f99aff28e13b19f51
1216
+ - 0c4458de5ba5446885c65b1dedfb2404
1360
1217
  response:
1361
1218
  status:
1362
1219
  code: 204
1363
1220
  message: ''
1364
1221
  headers:
1222
+ Date:
1223
+ - Tue, 23 Jun 2015 15:09:38 GMT
1224
+ Server:
1225
+ - Apache/2.4.7 (Ubuntu)
1365
1226
  Vary:
1366
1227
  - X-Auth-Token
1367
- X-Distribution:
1368
- - Ubuntu
1228
+ X-Openstack-Request-Id:
1229
+ - req-3b24a007-bd8d-48a9-a763-2a3d04b15ecf
1369
1230
  Content-Length:
1370
1231
  - '0'
1371
- Date:
1372
- - Mon, 23 Mar 2015 09:25:38 GMT
1373
1232
  body:
1374
1233
  encoding: US-ASCII
1375
1234
  string: ''
1376
1235
  http_version:
1377
- recorded_at: Mon, 23 Mar 2015 09:25:38 GMT
1236
+ recorded_at: Tue, 23 Jun 2015 15:09:38 GMT
1378
1237
  recorded_with: VCR 2.9.3