misty 0.1.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (83) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +222 -1
  3. data/lib/misty.rb +8 -0
  4. data/lib/misty/auth.rb +60 -0
  5. data/lib/misty/auth/auth_v2.rb +46 -0
  6. data/lib/misty/auth/auth_v3.rb +58 -0
  7. data/lib/misty/autoload.rb +82 -0
  8. data/lib/misty/cloud.rb +133 -0
  9. data/lib/misty/http/client.rb +115 -0
  10. data/lib/misty/http/direct.rb +26 -0
  11. data/lib/misty/http/method_builder.rb +96 -0
  12. data/lib/misty/http/request.rb +75 -0
  13. data/lib/misty/misty.rb +51 -0
  14. data/lib/misty/openstack/aodh/aodh_v2.rb +12 -0
  15. data/lib/misty/openstack/aodh/v2.rb +20 -0
  16. data/lib/misty/openstack/ceilometer/ceilometer_v2.rb +13 -0
  17. data/lib/misty/openstack/ceilometer/v2.rb +20 -0
  18. data/lib/misty/openstack/cinder/cinder_v1.rb +35 -0
  19. data/lib/misty/openstack/cinder/cinder_v3.rb +148 -0
  20. data/lib/misty/openstack/cinder/v1.rb +24 -0
  21. data/lib/misty/openstack/cinder/v3.rb +24 -0
  22. data/lib/misty/openstack/designate/designate_v2.rb +69 -0
  23. data/lib/misty/openstack/designate/v2.rb +20 -0
  24. data/lib/misty/openstack/glance/glance_v1.rb +16 -0
  25. data/lib/misty/openstack/glance/glance_v2.rb +29 -0
  26. data/lib/misty/openstack/glance/v1.rb +20 -0
  27. data/lib/misty/openstack/glance/v2.rb +20 -0
  28. data/lib/misty/openstack/heat/heat_v1.rb +85 -0
  29. data/lib/misty/openstack/heat/v1.rb +24 -0
  30. data/lib/misty/openstack/ironic/ironic_v1.rb +71 -0
  31. data/lib/misty/openstack/ironic/v1.rb +26 -0
  32. data/lib/misty/openstack/karbor/karbor_v1.rb +32 -0
  33. data/lib/misty/openstack/karbor/v1.rb +20 -0
  34. data/lib/misty/openstack/keystone/keystone_v2_0.rb +11 -0
  35. data/lib/misty/openstack/keystone/keystone_v2_0_ext.rb +32 -0
  36. data/lib/misty/openstack/keystone/keystone_v3.rb +147 -0
  37. data/lib/misty/openstack/keystone/keystone_v3_ext.rb +124 -0
  38. data/lib/misty/openstack/keystone/v2_0.rb +23 -0
  39. data/lib/misty/openstack/keystone/v3.rb +23 -0
  40. data/lib/misty/openstack/magnum/magnum_v1.rb +41 -0
  41. data/lib/misty/openstack/magnum/v1.rb +26 -0
  42. data/lib/misty/openstack/manila/manila_v2.rb +143 -0
  43. data/lib/misty/openstack/manila/v2.rb +26 -0
  44. data/lib/misty/openstack/microversion.rb +62 -0
  45. data/lib/misty/openstack/neutron/neutron_v2_0.rb +205 -0
  46. data/lib/misty/openstack/neutron/v2_0.rb +20 -0
  47. data/lib/misty/openstack/nova/nova_v2_1.rb +269 -0
  48. data/lib/misty/openstack/nova/v2_1.rb +40 -0
  49. data/lib/misty/openstack/sahara/sahara_v1_1.rb +77 -0
  50. data/lib/misty/openstack/sahara/v1_1.rb +20 -0
  51. data/lib/misty/openstack/searchlight/searchlight_v1.rb +15 -0
  52. data/lib/misty/openstack/searchlight/v1.rb +20 -0
  53. data/lib/misty/openstack/senlin/senlin_v1.rb +66 -0
  54. data/lib/misty/openstack/senlin/v1.rb +20 -0
  55. data/lib/misty/openstack/swift/swift_v1.rb +23 -0
  56. data/lib/misty/openstack/swift/v1.rb +20 -0
  57. data/lib/misty/openstack/trove/trove_v1_0.rb +51 -0
  58. data/lib/misty/openstack/trove/v1_0.rb +20 -0
  59. data/lib/misty/openstack/zaqar/v2.rb +20 -0
  60. data/lib/misty/openstack/zaqar/zaqar_v2.rb +46 -0
  61. data/lib/misty/version.rb +2 -2
  62. data/test/integration/compute_test.rb +35 -0
  63. data/test/integration/network_test.rb +34 -0
  64. data/test/integration/orchestration_test.rb +92 -0
  65. data/test/integration/test_helper.rb +19 -0
  66. data/test/integration/vcr/compute_using_nova_v2_1.yml +1107 -0
  67. data/test/integration/vcr/network_using_neutron_v2_0.yml +1029 -0
  68. data/test/integration/vcr/orchestration_using_heat_v1.yml +1457 -0
  69. data/test/unit/auth_helper.rb +52 -0
  70. data/test/unit/auth_test.rb +99 -0
  71. data/test/unit/cloud/requests_test.rb +113 -0
  72. data/test/unit/cloud/services_test.rb +171 -0
  73. data/test/unit/cloud_test.rb +145 -0
  74. data/test/unit/http/client_test.rb +74 -0
  75. data/test/unit/http/direct_test.rb +103 -0
  76. data/test/unit/http/method_builder_test.rb +133 -0
  77. data/test/unit/http/request_test.rb +123 -0
  78. data/test/unit/misty_test.rb +36 -0
  79. data/test/unit/openstack/APIs_test.rb +40 -0
  80. data/test/unit/openstack/microversion_test.rb +70 -0
  81. data/test/unit/service_helper.rb +25 -0
  82. data/test/unit/test_helper.rb +8 -0
  83. metadata +170 -5
@@ -0,0 +1,1029 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://192.0.2.21:5000/v3/auth/tokens
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"auth":{"identity":{"methods":["password"],"password":{"user":{"name":"admin","domain":{"id":"default"},"password":"CJk9hb2ZFR96Ypu74KFFGWuhv"}}},"scope":{"project":{"name":"admin","domain":{"id":"default"}}}}}'
9
+ headers:
10
+ Content-Type:
11
+ - application/json
12
+ Accept:
13
+ - application/json
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ User-Agent:
17
+ - Ruby
18
+ response:
19
+ status:
20
+ code: 201
21
+ message: Created
22
+ headers:
23
+ Date:
24
+ - Sat, 10 Dec 2016 00:46:20 GMT
25
+ Server:
26
+ - Apache/2.4.6 (Red Hat Enterprise Linux)
27
+ X-Subject-Token:
28
+ - 1618f30d661d45e28551907a56d94829
29
+ Vary:
30
+ - X-Auth-Token
31
+ X-Openstack-Request-Id:
32
+ - req-a3b2ac41-2364-40b1-9d2e-4e7cc7f51f0d
33
+ Content-Length:
34
+ - '8373'
35
+ Content-Type:
36
+ - application/json
37
+ body:
38
+ encoding: UTF-8
39
+ string: '{"token": {"methods": ["password"], "roles": [{"id": "362084a241d94d56b6371f6cb1c87abf",
40
+ "name": "admin"}], "expires_at": "2016-12-10T01:46:20.928628Z", "project":
41
+ {"domain": {"id": "default", "name": "Default"}, "id": "48985e6b8da145699d411f12a3459fca",
42
+ "name": "admin"}, "catalog": [{"endpoints": [{"region_id": "regionOne", "url":
43
+ "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca", "region":
44
+ "regionOne", "interface": "internal", "id": "09e14aa5f80a4c3d84f20ecef245af13"},
45
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
46
+ "region": "regionOne", "interface": "public", "id": "8beeb2f5570f4e668bb9df77105c396d"},
47
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
48
+ "region": "regionOne", "interface": "admin", "id": "d368b97fae184bba9fdd2213287a327b"}],
49
+ "type": "compute", "id": "1a96b84b844a4c028f22b7da27501c0d", "name": "nova"},
50
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
51
+ "region": "regionOne", "interface": "admin", "id": "3e02c6f778ba4ab38476fff972c269c8"},
52
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
53
+ "region": "regionOne", "interface": "public", "id": "6483567da043458fb0bc734c39908f2f"},
54
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
55
+ "region": "regionOne", "interface": "internal", "id": "ad95dbf1f99a4fbda130bdcc71b81c15"}],
56
+ "type": "volume", "id": "1fb40dbf60ae483f853764381c1c6bab", "name": "cinder"},
57
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9696/",
58
+ "region": "regionOne", "interface": "admin", "id": "029a7263b7e14ebe8f10a0033b636ed9"},
59
+ {"region_id": "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne",
60
+ "interface": "public", "id": "a8e4debb78ed4aef9989ef07780abb46"}, {"region_id":
61
+ "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne", "interface":
62
+ "internal", "id": "b188a6216018481d8b1f6f9f41e69354"}], "type": "network",
63
+ "id": "2358e09f2ee14eca9b047cc3c2ca62f8", "name": "neutron"}, {"endpoints":
64
+ [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v3", "region":
65
+ "regionOne", "interface": "admin", "id": "0ede2537de2644199f649bb566015c2c"},
66
+ {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne",
67
+ "interface": "internal", "id": "2220349ef81d4b8fb678485c81f2a214"}, {"region_id":
68
+ "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne", "interface":
69
+ "public", "id": "9b84ce6363324320af67511b995d6e32"}], "type": "identity",
70
+ "id": "2901e458d8b74d2399a041b5b64cb8d1", "name": "identity_v3"}, {"endpoints":
71
+ [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
72
+ "region": "regionOne", "interface": "public", "id": "45c91d23e63648308e45e05944a530b9"},
73
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
74
+ "region": "regionOne", "interface": "admin", "id": "648693e76f00499289fc77ea6eea12eb"},
75
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
76
+ "region": "regionOne", "interface": "internal", "id": "ca2d606db4694c80802398bea56b8d7c"}],
77
+ "type": "volumev2", "id": "454c392dbb6d44bdb8a736a73628a8c4", "name": "cinderv2"},
78
+ {"endpoints": [], "type": "identity_v3", "id": "6f3b70e1db1b4ce692f558bc7fa2dfd7",
79
+ "name": "keystone_v3"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
80
+ "region": "regionOne", "interface": "internal", "id": "9ee36bdd422c4d04b1737b38079a7160"},
81
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1", "region": "regionOne",
82
+ "interface": "admin", "id": "bc34638cfdae4cc1ae168c283e4e915a"}, {"region_id":
83
+ "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
84
+ "region": "regionOne", "interface": "public", "id": "d41709fb49114560b459300f661bb3ed"}],
85
+ "type": "object-store", "id": "8e795505992141c1b32c1f9138b47b98", "name":
86
+ "swift"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
87
+ "region": "regionOne", "interface": "admin", "id": "04a4bcb47c774cf4b776dd330ec90ac7"},
88
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
89
+ "region": "regionOne", "interface": "internal", "id": "39f306a869084899af052b3d7a85701f"},
90
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
91
+ "region": "regionOne", "interface": "public", "id": "b37cfb8813c649ca932b74717a4924dc"}],
92
+ "type": "orchestration", "id": "a8e72740ce92456ab392a75375ec9df7", "name":
93
+ "heat"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8042/",
94
+ "region": "regionOne", "interface": "internal", "id": "2bd9d0c1fc544f078c2fef39a5f4decd"},
95
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne",
96
+ "interface": "admin", "id": "9c3ac290cf5944e9957f387987a6d7e8"}, {"region_id":
97
+ "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne", "interface":
98
+ "public", "id": "b8345563ada3461a8f871d897bae1c60"}], "type": "alarming",
99
+ "id": "afce35c3b5c640658578063bcb52fe0e", "name": "aodh"}, {"endpoints": [{"region_id":
100
+ "regionOne", "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface":
101
+ "public", "id": "0a8c20af41384e9b94ffbd266e69f8b0"}, {"region_id": "regionOne",
102
+ "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface": "admin",
103
+ "id": "407e04f068d64cc49c8beb612087d60c"}, {"region_id": "regionOne", "url":
104
+ "http://192.0.2.21:8777/", "region": "regionOne", "interface": "internal",
105
+ "id": "5506ecfd12e04e9fae93a16dd7cd473e"}], "type": "metering", "id": "afde6b4f37d1406d83939829e87fbfb9",
106
+ "name": "ceilometer"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9292/",
107
+ "region": "regionOne", "interface": "public", "id": "1b37c9b615634b9ba354acab8e797bd5"},
108
+ {"region_id": "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne",
109
+ "interface": "admin", "id": "24ed5cb4e2104b9796a2529a21de04ac"}, {"region_id":
110
+ "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne", "interface":
111
+ "internal", "id": "8493c76b6a1f400b80e20a11e3ac9e8d"}], "type": "image", "id":
112
+ "be4dfdcf14ef48039edf82ef5ae1629e", "name": "glance"}, {"endpoints": [{"region_id":
113
+ "regionOne", "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface":
114
+ "admin", "id": "709ff9a3f13848209b8934bb1f6dec26"}, {"region_id": "regionOne",
115
+ "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface": "internal",
116
+ "id": "d51d46cd35f941df88f5508b3e879777"}, {"region_id": "regionOne", "url":
117
+ "http://192.0.2.21:8041/", "region": "regionOne", "interface": "public", "id":
118
+ "fd3c88b22fab4df58cd629f174fd2e3b"}], "type": "metric", "id": "c2b4bf300bd84cfba6d9cb8c03874c15",
119
+ "name": "gnocchi"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v2.0",
120
+ "region": "regionOne", "interface": "admin", "id": "9bbbac3ebf04425fbf6f850c61727c36"},
121
+ {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
122
+ "regionOne", "interface": "public", "id": "a4f073188f834e08a541f3172afbf2aa"},
123
+ {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
124
+ "regionOne", "interface": "internal", "id": "fe25750a2f23451186b78cafeb2500c2"}],
125
+ "type": "identity", "id": "dcf4906057004977bdabba7de167c923", "name": "keystone"},
126
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
127
+ "region": "regionOne", "interface": "internal", "id": "09f14e579c22456498293c45deafc29c"},
128
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
129
+ "region": "regionOne", "interface": "public", "id": "39b2796eadd2410295b3f0b1398db694"},
130
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
131
+ "region": "regionOne", "interface": "admin", "id": "7ec9decfbe5b46ee850619c1752bfa67"}],
132
+ "type": "data-processing", "id": "ea7797ce177d4bfd8e360de675c71f35", "name":
133
+ "sahara"}], "user": {"domain": {"id": "default", "name": "Default"}, "id":
134
+ "1e50c2f0995446fd9b135a1a549cabdb", "name": "admin"}, "audit_ids": ["9w1l1eWSRGCcMffFjhynRA"],
135
+ "issued_at": "2016-12-10T00:46:20.928681Z"}}'
136
+ http_version:
137
+ recorded_at: Fri, 17 Feb 2017 05:51:41 GMT
138
+ - request:
139
+ method: post
140
+ uri: http://192.0.2.21:5000/v3/auth/tokens
141
+ body:
142
+ encoding: UTF-8
143
+ string: '{"auth":{"identity":{"methods":["password"],"password":{"user":{"name":"admin","domain":{"id":"default"},"password":"CJk9hb2ZFR96Ypu74KFFGWuhv"}}},"scope":{"project":{"name":"admin","domain":{"id":"default"}}}}}'
144
+ headers:
145
+ Content-Type:
146
+ - application/json
147
+ Accept:
148
+ - application/json
149
+ Accept-Encoding:
150
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
151
+ User-Agent:
152
+ - Ruby
153
+ response:
154
+ status:
155
+ code: 201
156
+ message: Created
157
+ headers:
158
+ Date:
159
+ - Sat, 10 Dec 2016 00:46:20 GMT
160
+ Server:
161
+ - Apache/2.4.6 (Red Hat Enterprise Linux)
162
+ X-Subject-Token:
163
+ - f7b8c5accc134f30b493d55c6e2e8153
164
+ Vary:
165
+ - X-Auth-Token
166
+ X-Openstack-Request-Id:
167
+ - req-7cff51f2-7c6b-4fed-9ea2-7058d3a39603
168
+ Content-Length:
169
+ - '8373'
170
+ Content-Type:
171
+ - application/json
172
+ body:
173
+ encoding: UTF-8
174
+ string: '{"token": {"methods": ["password"], "roles": [{"id": "362084a241d94d56b6371f6cb1c87abf",
175
+ "name": "admin"}], "expires_at": "2016-12-10T01:46:21.066969Z", "project":
176
+ {"domain": {"id": "default", "name": "Default"}, "id": "48985e6b8da145699d411f12a3459fca",
177
+ "name": "admin"}, "catalog": [{"endpoints": [{"region_id": "regionOne", "url":
178
+ "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca", "region":
179
+ "regionOne", "interface": "internal", "id": "09e14aa5f80a4c3d84f20ecef245af13"},
180
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
181
+ "region": "regionOne", "interface": "public", "id": "8beeb2f5570f4e668bb9df77105c396d"},
182
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
183
+ "region": "regionOne", "interface": "admin", "id": "d368b97fae184bba9fdd2213287a327b"}],
184
+ "type": "compute", "id": "1a96b84b844a4c028f22b7da27501c0d", "name": "nova"},
185
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
186
+ "region": "regionOne", "interface": "admin", "id": "3e02c6f778ba4ab38476fff972c269c8"},
187
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
188
+ "region": "regionOne", "interface": "public", "id": "6483567da043458fb0bc734c39908f2f"},
189
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
190
+ "region": "regionOne", "interface": "internal", "id": "ad95dbf1f99a4fbda130bdcc71b81c15"}],
191
+ "type": "volume", "id": "1fb40dbf60ae483f853764381c1c6bab", "name": "cinder"},
192
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9696/",
193
+ "region": "regionOne", "interface": "admin", "id": "029a7263b7e14ebe8f10a0033b636ed9"},
194
+ {"region_id": "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne",
195
+ "interface": "public", "id": "a8e4debb78ed4aef9989ef07780abb46"}, {"region_id":
196
+ "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne", "interface":
197
+ "internal", "id": "b188a6216018481d8b1f6f9f41e69354"}], "type": "network",
198
+ "id": "2358e09f2ee14eca9b047cc3c2ca62f8", "name": "neutron"}, {"endpoints":
199
+ [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v3", "region":
200
+ "regionOne", "interface": "admin", "id": "0ede2537de2644199f649bb566015c2c"},
201
+ {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne",
202
+ "interface": "internal", "id": "2220349ef81d4b8fb678485c81f2a214"}, {"region_id":
203
+ "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne", "interface":
204
+ "public", "id": "9b84ce6363324320af67511b995d6e32"}], "type": "identity",
205
+ "id": "2901e458d8b74d2399a041b5b64cb8d1", "name": "identity_v3"}, {"endpoints":
206
+ [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
207
+ "region": "regionOne", "interface": "public", "id": "45c91d23e63648308e45e05944a530b9"},
208
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
209
+ "region": "regionOne", "interface": "admin", "id": "648693e76f00499289fc77ea6eea12eb"},
210
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
211
+ "region": "regionOne", "interface": "internal", "id": "ca2d606db4694c80802398bea56b8d7c"}],
212
+ "type": "volumev2", "id": "454c392dbb6d44bdb8a736a73628a8c4", "name": "cinderv2"},
213
+ {"endpoints": [], "type": "identity_v3", "id": "6f3b70e1db1b4ce692f558bc7fa2dfd7",
214
+ "name": "keystone_v3"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
215
+ "region": "regionOne", "interface": "internal", "id": "9ee36bdd422c4d04b1737b38079a7160"},
216
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1", "region": "regionOne",
217
+ "interface": "admin", "id": "bc34638cfdae4cc1ae168c283e4e915a"}, {"region_id":
218
+ "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
219
+ "region": "regionOne", "interface": "public", "id": "d41709fb49114560b459300f661bb3ed"}],
220
+ "type": "object-store", "id": "8e795505992141c1b32c1f9138b47b98", "name":
221
+ "swift"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
222
+ "region": "regionOne", "interface": "admin", "id": "04a4bcb47c774cf4b776dd330ec90ac7"},
223
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
224
+ "region": "regionOne", "interface": "internal", "id": "39f306a869084899af052b3d7a85701f"},
225
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
226
+ "region": "regionOne", "interface": "public", "id": "b37cfb8813c649ca932b74717a4924dc"}],
227
+ "type": "orchestration", "id": "a8e72740ce92456ab392a75375ec9df7", "name":
228
+ "heat"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8042/",
229
+ "region": "regionOne", "interface": "internal", "id": "2bd9d0c1fc544f078c2fef39a5f4decd"},
230
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne",
231
+ "interface": "admin", "id": "9c3ac290cf5944e9957f387987a6d7e8"}, {"region_id":
232
+ "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne", "interface":
233
+ "public", "id": "b8345563ada3461a8f871d897bae1c60"}], "type": "alarming",
234
+ "id": "afce35c3b5c640658578063bcb52fe0e", "name": "aodh"}, {"endpoints": [{"region_id":
235
+ "regionOne", "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface":
236
+ "public", "id": "0a8c20af41384e9b94ffbd266e69f8b0"}, {"region_id": "regionOne",
237
+ "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface": "admin",
238
+ "id": "407e04f068d64cc49c8beb612087d60c"}, {"region_id": "regionOne", "url":
239
+ "http://192.0.2.21:8777/", "region": "regionOne", "interface": "internal",
240
+ "id": "5506ecfd12e04e9fae93a16dd7cd473e"}], "type": "metering", "id": "afde6b4f37d1406d83939829e87fbfb9",
241
+ "name": "ceilometer"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9292/",
242
+ "region": "regionOne", "interface": "public", "id": "1b37c9b615634b9ba354acab8e797bd5"},
243
+ {"region_id": "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne",
244
+ "interface": "admin", "id": "24ed5cb4e2104b9796a2529a21de04ac"}, {"region_id":
245
+ "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne", "interface":
246
+ "internal", "id": "8493c76b6a1f400b80e20a11e3ac9e8d"}], "type": "image", "id":
247
+ "be4dfdcf14ef48039edf82ef5ae1629e", "name": "glance"}, {"endpoints": [{"region_id":
248
+ "regionOne", "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface":
249
+ "admin", "id": "709ff9a3f13848209b8934bb1f6dec26"}, {"region_id": "regionOne",
250
+ "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface": "internal",
251
+ "id": "d51d46cd35f941df88f5508b3e879777"}, {"region_id": "regionOne", "url":
252
+ "http://192.0.2.21:8041/", "region": "regionOne", "interface": "public", "id":
253
+ "fd3c88b22fab4df58cd629f174fd2e3b"}], "type": "metric", "id": "c2b4bf300bd84cfba6d9cb8c03874c15",
254
+ "name": "gnocchi"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v2.0",
255
+ "region": "regionOne", "interface": "admin", "id": "9bbbac3ebf04425fbf6f850c61727c36"},
256
+ {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
257
+ "regionOne", "interface": "public", "id": "a4f073188f834e08a541f3172afbf2aa"},
258
+ {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
259
+ "regionOne", "interface": "internal", "id": "fe25750a2f23451186b78cafeb2500c2"}],
260
+ "type": "identity", "id": "dcf4906057004977bdabba7de167c923", "name": "keystone"},
261
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
262
+ "region": "regionOne", "interface": "internal", "id": "09f14e579c22456498293c45deafc29c"},
263
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
264
+ "region": "regionOne", "interface": "public", "id": "39b2796eadd2410295b3f0b1398db694"},
265
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
266
+ "region": "regionOne", "interface": "admin", "id": "7ec9decfbe5b46ee850619c1752bfa67"}],
267
+ "type": "data-processing", "id": "ea7797ce177d4bfd8e360de675c71f35", "name":
268
+ "sahara"}], "user": {"domain": {"id": "default", "name": "Default"}, "id":
269
+ "1e50c2f0995446fd9b135a1a549cabdb", "name": "admin"}, "audit_ids": ["y5wys04uR9Ca95fLM6R-2Q"],
270
+ "issued_at": "2016-12-10T00:46:21.066991Z"}}'
271
+ http_version:
272
+ recorded_at: Fri, 17 Feb 2017 05:51:41 GMT
273
+ - request:
274
+ method: post
275
+ uri: http://192.0.2.21:9696/v2.0/networks
276
+ body:
277
+ encoding: UTF-8
278
+ string: '{"network":{"name":"test_network"}}'
279
+ headers:
280
+ Content-Type:
281
+ - application/json
282
+ Accept:
283
+ - application/json
284
+ X-Auth-Token:
285
+ - 1618f30d661d45e28551907a56d94829
286
+ Accept-Encoding:
287
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
288
+ User-Agent:
289
+ - Ruby
290
+ response:
291
+ status:
292
+ code: 201
293
+ message: Created
294
+ headers:
295
+ Content-Type:
296
+ - application/json; charset=UTF-8
297
+ Content-Length:
298
+ - '620'
299
+ X-Openstack-Request-Id:
300
+ - req-e96735ff-a380-4bf1-9f95-4a078d79bf3e
301
+ Date:
302
+ - Sat, 10 Dec 2016 00:46:21 GMT
303
+ body:
304
+ encoding: UTF-8
305
+ string: '{"network": {"provider:physical_network": null, "ipv6_address_scope":
306
+ null, "port_security_enabled": true, "mtu": 1450, "id": "7896a8ed-592a-4122-b9a6-1ad3cf615899",
307
+ "router:external": false, "availability_zone_hints": [], "availability_zones":
308
+ [], "ipv4_address_scope": null, "shared": false, "provider:segmentation_id":
309
+ 29, "status": "ACTIVE", "subnets": [], "description": "", "tags": [], "updated_at":
310
+ "2016-12-10T00:46:21", "name": "test_network", "qos_policy_id": null, "admin_state_up":
311
+ true, "tenant_id": "48985e6b8da145699d411f12a3459fca", "created_at": "2016-12-10T00:46:21",
312
+ "provider:network_type": "vxlan"}}'
313
+ http_version:
314
+ recorded_at: Fri, 17 Feb 2017 05:51:41 GMT
315
+ - request:
316
+ method: post
317
+ uri: http://192.0.2.21:5000/v3/auth/tokens
318
+ body:
319
+ encoding: UTF-8
320
+ string: '{"auth":{"identity":{"methods":["password"],"password":{"user":{"name":"admin","domain":{"id":"default"},"password":"CJk9hb2ZFR96Ypu74KFFGWuhv"}}},"scope":{"project":{"name":"admin","domain":{"id":"default"}}}}}'
321
+ headers:
322
+ Content-Type:
323
+ - application/json
324
+ Accept:
325
+ - application/json
326
+ Accept-Encoding:
327
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
328
+ User-Agent:
329
+ - Ruby
330
+ response:
331
+ status:
332
+ code: 201
333
+ message: Created
334
+ headers:
335
+ Date:
336
+ - Sat, 10 Dec 2016 00:46:21 GMT
337
+ Server:
338
+ - Apache/2.4.6 (Red Hat Enterprise Linux)
339
+ X-Subject-Token:
340
+ - 4e1f1e38356541a484dd190df9ff09b9
341
+ Vary:
342
+ - X-Auth-Token
343
+ X-Openstack-Request-Id:
344
+ - req-b5a0f67d-e463-4e4f-b6c0-11066ffba928
345
+ Content-Length:
346
+ - '8373'
347
+ Content-Type:
348
+ - application/json
349
+ body:
350
+ encoding: UTF-8
351
+ string: '{"token": {"methods": ["password"], "roles": [{"id": "362084a241d94d56b6371f6cb1c87abf",
352
+ "name": "admin"}], "expires_at": "2016-12-10T01:46:21.366003Z", "project":
353
+ {"domain": {"id": "default", "name": "Default"}, "id": "48985e6b8da145699d411f12a3459fca",
354
+ "name": "admin"}, "catalog": [{"endpoints": [{"region_id": "regionOne", "url":
355
+ "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca", "region":
356
+ "regionOne", "interface": "internal", "id": "09e14aa5f80a4c3d84f20ecef245af13"},
357
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
358
+ "region": "regionOne", "interface": "public", "id": "8beeb2f5570f4e668bb9df77105c396d"},
359
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
360
+ "region": "regionOne", "interface": "admin", "id": "d368b97fae184bba9fdd2213287a327b"}],
361
+ "type": "compute", "id": "1a96b84b844a4c028f22b7da27501c0d", "name": "nova"},
362
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
363
+ "region": "regionOne", "interface": "admin", "id": "3e02c6f778ba4ab38476fff972c269c8"},
364
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
365
+ "region": "regionOne", "interface": "public", "id": "6483567da043458fb0bc734c39908f2f"},
366
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
367
+ "region": "regionOne", "interface": "internal", "id": "ad95dbf1f99a4fbda130bdcc71b81c15"}],
368
+ "type": "volume", "id": "1fb40dbf60ae483f853764381c1c6bab", "name": "cinder"},
369
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9696/",
370
+ "region": "regionOne", "interface": "admin", "id": "029a7263b7e14ebe8f10a0033b636ed9"},
371
+ {"region_id": "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne",
372
+ "interface": "public", "id": "a8e4debb78ed4aef9989ef07780abb46"}, {"region_id":
373
+ "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne", "interface":
374
+ "internal", "id": "b188a6216018481d8b1f6f9f41e69354"}], "type": "network",
375
+ "id": "2358e09f2ee14eca9b047cc3c2ca62f8", "name": "neutron"}, {"endpoints":
376
+ [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v3", "region":
377
+ "regionOne", "interface": "admin", "id": "0ede2537de2644199f649bb566015c2c"},
378
+ {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne",
379
+ "interface": "internal", "id": "2220349ef81d4b8fb678485c81f2a214"}, {"region_id":
380
+ "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne", "interface":
381
+ "public", "id": "9b84ce6363324320af67511b995d6e32"}], "type": "identity",
382
+ "id": "2901e458d8b74d2399a041b5b64cb8d1", "name": "identity_v3"}, {"endpoints":
383
+ [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
384
+ "region": "regionOne", "interface": "public", "id": "45c91d23e63648308e45e05944a530b9"},
385
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
386
+ "region": "regionOne", "interface": "admin", "id": "648693e76f00499289fc77ea6eea12eb"},
387
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
388
+ "region": "regionOne", "interface": "internal", "id": "ca2d606db4694c80802398bea56b8d7c"}],
389
+ "type": "volumev2", "id": "454c392dbb6d44bdb8a736a73628a8c4", "name": "cinderv2"},
390
+ {"endpoints": [], "type": "identity_v3", "id": "6f3b70e1db1b4ce692f558bc7fa2dfd7",
391
+ "name": "keystone_v3"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
392
+ "region": "regionOne", "interface": "internal", "id": "9ee36bdd422c4d04b1737b38079a7160"},
393
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1", "region": "regionOne",
394
+ "interface": "admin", "id": "bc34638cfdae4cc1ae168c283e4e915a"}, {"region_id":
395
+ "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
396
+ "region": "regionOne", "interface": "public", "id": "d41709fb49114560b459300f661bb3ed"}],
397
+ "type": "object-store", "id": "8e795505992141c1b32c1f9138b47b98", "name":
398
+ "swift"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
399
+ "region": "regionOne", "interface": "admin", "id": "04a4bcb47c774cf4b776dd330ec90ac7"},
400
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
401
+ "region": "regionOne", "interface": "internal", "id": "39f306a869084899af052b3d7a85701f"},
402
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
403
+ "region": "regionOne", "interface": "public", "id": "b37cfb8813c649ca932b74717a4924dc"}],
404
+ "type": "orchestration", "id": "a8e72740ce92456ab392a75375ec9df7", "name":
405
+ "heat"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8042/",
406
+ "region": "regionOne", "interface": "internal", "id": "2bd9d0c1fc544f078c2fef39a5f4decd"},
407
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne",
408
+ "interface": "admin", "id": "9c3ac290cf5944e9957f387987a6d7e8"}, {"region_id":
409
+ "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne", "interface":
410
+ "public", "id": "b8345563ada3461a8f871d897bae1c60"}], "type": "alarming",
411
+ "id": "afce35c3b5c640658578063bcb52fe0e", "name": "aodh"}, {"endpoints": [{"region_id":
412
+ "regionOne", "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface":
413
+ "public", "id": "0a8c20af41384e9b94ffbd266e69f8b0"}, {"region_id": "regionOne",
414
+ "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface": "admin",
415
+ "id": "407e04f068d64cc49c8beb612087d60c"}, {"region_id": "regionOne", "url":
416
+ "http://192.0.2.21:8777/", "region": "regionOne", "interface": "internal",
417
+ "id": "5506ecfd12e04e9fae93a16dd7cd473e"}], "type": "metering", "id": "afde6b4f37d1406d83939829e87fbfb9",
418
+ "name": "ceilometer"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9292/",
419
+ "region": "regionOne", "interface": "public", "id": "1b37c9b615634b9ba354acab8e797bd5"},
420
+ {"region_id": "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne",
421
+ "interface": "admin", "id": "24ed5cb4e2104b9796a2529a21de04ac"}, {"region_id":
422
+ "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne", "interface":
423
+ "internal", "id": "8493c76b6a1f400b80e20a11e3ac9e8d"}], "type": "image", "id":
424
+ "be4dfdcf14ef48039edf82ef5ae1629e", "name": "glance"}, {"endpoints": [{"region_id":
425
+ "regionOne", "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface":
426
+ "admin", "id": "709ff9a3f13848209b8934bb1f6dec26"}, {"region_id": "regionOne",
427
+ "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface": "internal",
428
+ "id": "d51d46cd35f941df88f5508b3e879777"}, {"region_id": "regionOne", "url":
429
+ "http://192.0.2.21:8041/", "region": "regionOne", "interface": "public", "id":
430
+ "fd3c88b22fab4df58cd629f174fd2e3b"}], "type": "metric", "id": "c2b4bf300bd84cfba6d9cb8c03874c15",
431
+ "name": "gnocchi"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v2.0",
432
+ "region": "regionOne", "interface": "admin", "id": "9bbbac3ebf04425fbf6f850c61727c36"},
433
+ {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
434
+ "regionOne", "interface": "public", "id": "a4f073188f834e08a541f3172afbf2aa"},
435
+ {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
436
+ "regionOne", "interface": "internal", "id": "fe25750a2f23451186b78cafeb2500c2"}],
437
+ "type": "identity", "id": "dcf4906057004977bdabba7de167c923", "name": "keystone"},
438
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
439
+ "region": "regionOne", "interface": "internal", "id": "09f14e579c22456498293c45deafc29c"},
440
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
441
+ "region": "regionOne", "interface": "public", "id": "39b2796eadd2410295b3f0b1398db694"},
442
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
443
+ "region": "regionOne", "interface": "admin", "id": "7ec9decfbe5b46ee850619c1752bfa67"}],
444
+ "type": "data-processing", "id": "ea7797ce177d4bfd8e360de675c71f35", "name":
445
+ "sahara"}], "user": {"domain": {"id": "default", "name": "Default"}, "id":
446
+ "1e50c2f0995446fd9b135a1a549cabdb", "name": "admin"}, "audit_ids": ["OIrV-oe6TQSoSbP1RLqBKw"],
447
+ "issued_at": "2016-12-10T00:46:21.366026Z"}}'
448
+ http_version:
449
+ recorded_at: Fri, 17 Feb 2017 05:51:41 GMT
450
+ - request:
451
+ method: get
452
+ uri: http://192.0.2.21:9696/v2.0/networks
453
+ body:
454
+ encoding: US-ASCII
455
+ string: ''
456
+ headers:
457
+ Content-Type:
458
+ - application/json
459
+ Accept:
460
+ - application/json
461
+ X-Auth-Token:
462
+ - 1618f30d661d45e28551907a56d94829
463
+ Accept-Encoding:
464
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
465
+ User-Agent:
466
+ - Ruby
467
+ response:
468
+ status:
469
+ code: 200
470
+ message: OK
471
+ headers:
472
+ Content-Type:
473
+ - application/json; charset=UTF-8
474
+ Content-Length:
475
+ - '1941'
476
+ X-Openstack-Request-Id:
477
+ - req-87c8f022-730a-4ff8-8a67-ea1ef80a4d73
478
+ Date:
479
+ - Sat, 10 Dec 2016 00:46:21 GMT
480
+ body:
481
+ encoding: UTF-8
482
+ string: '{"networks": [{"provider:physical_network": null, "ipv6_address_scope":
483
+ null, "port_security_enabled": true, "mtu": 1450, "id": "9c6e43b6-3d1d-4106-ad45-5fc3f5e371ee",
484
+ "router:external": false, "availability_zone_hints": [], "availability_zones":
485
+ ["nova"], "ipv4_address_scope": null, "shared": false, "provider:segmentation_id":
486
+ 73, "status": "ACTIVE", "subnets": ["8dfac369-eb19-4343-8864-6f3d3017f94d"],
487
+ "description": "", "tags": [], "updated_at": "2016-11-14T04:06:24", "qos_policy_id":
488
+ null, "name": "internal", "admin_state_up": true, "tenant_id": "48985e6b8da145699d411f12a3459fca",
489
+ "created_at": "2016-11-14T04:06:24", "provider:network_type": "vxlan"}, {"provider:physical_network":
490
+ null, "ipv6_address_scope": null, "port_security_enabled": true, "mtu": 1450,
491
+ "id": "7896a8ed-592a-4122-b9a6-1ad3cf615899", "router:external": false, "availability_zone_hints":
492
+ [], "availability_zones": [], "ipv4_address_scope": null, "shared": false,
493
+ "provider:segmentation_id": 29, "status": "ACTIVE", "subnets": [], "description":
494
+ "", "tags": [], "updated_at": "2016-12-10T00:46:21", "qos_policy_id": null,
495
+ "name": "test_network", "admin_state_up": true, "tenant_id": "48985e6b8da145699d411f12a3459fca",
496
+ "created_at": "2016-12-10T00:46:21", "provider:network_type": "vxlan"}, {"provider:physical_network":
497
+ null, "ipv6_address_scope": null, "port_security_enabled": true, "mtu": 1450,
498
+ "id": "2df71444-5284-4614-b87c-ecb23cd8161f", "router:external": true, "availability_zone_hints":
499
+ [], "availability_zones": ["nova"], "ipv4_address_scope": null, "shared":
500
+ false, "provider:segmentation_id": 70, "status": "ACTIVE", "subnets": ["9cb0c2ba-3129-4964-a151-63916366c4af"],
501
+ "description": "", "tags": [], "updated_at": "2016-11-14T02:42:24", "is_default":
502
+ false, "qos_policy_id": null, "name": "external", "admin_state_up": true,
503
+ "tenant_id": "48985e6b8da145699d411f12a3459fca", "created_at": "2016-11-14T02:42:24",
504
+ "provider:network_type": "vxlan"}]}'
505
+ http_version:
506
+ recorded_at: Fri, 17 Feb 2017 05:51:41 GMT
507
+ - request:
508
+ method: post
509
+ uri: http://192.0.2.21:5000/v3/auth/tokens
510
+ body:
511
+ encoding: UTF-8
512
+ string: '{"auth":{"identity":{"methods":["password"],"password":{"user":{"name":"admin","domain":{"id":"default"},"password":"CJk9hb2ZFR96Ypu74KFFGWuhv"}}},"scope":{"project":{"name":"admin","domain":{"id":"default"}}}}}'
513
+ headers:
514
+ Content-Type:
515
+ - application/json
516
+ Accept:
517
+ - application/json
518
+ Accept-Encoding:
519
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
520
+ User-Agent:
521
+ - Ruby
522
+ response:
523
+ status:
524
+ code: 201
525
+ message: Created
526
+ headers:
527
+ Date:
528
+ - Sat, 10 Dec 2016 00:46:21 GMT
529
+ Server:
530
+ - Apache/2.4.6 (Red Hat Enterprise Linux)
531
+ X-Subject-Token:
532
+ - d30e79be486446b8813b97ed5929247e
533
+ Vary:
534
+ - X-Auth-Token
535
+ X-Openstack-Request-Id:
536
+ - req-cf2e0112-534d-451a-8065-b3588f27a913
537
+ Content-Length:
538
+ - '8373'
539
+ Content-Type:
540
+ - application/json
541
+ body:
542
+ encoding: UTF-8
543
+ string: '{"token": {"methods": ["password"], "roles": [{"id": "362084a241d94d56b6371f6cb1c87abf",
544
+ "name": "admin"}], "expires_at": "2016-12-10T01:46:21.567435Z", "project":
545
+ {"domain": {"id": "default", "name": "Default"}, "id": "48985e6b8da145699d411f12a3459fca",
546
+ "name": "admin"}, "catalog": [{"endpoints": [{"region_id": "regionOne", "url":
547
+ "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca", "region":
548
+ "regionOne", "interface": "internal", "id": "09e14aa5f80a4c3d84f20ecef245af13"},
549
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
550
+ "region": "regionOne", "interface": "public", "id": "8beeb2f5570f4e668bb9df77105c396d"},
551
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
552
+ "region": "regionOne", "interface": "admin", "id": "d368b97fae184bba9fdd2213287a327b"}],
553
+ "type": "compute", "id": "1a96b84b844a4c028f22b7da27501c0d", "name": "nova"},
554
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
555
+ "region": "regionOne", "interface": "admin", "id": "3e02c6f778ba4ab38476fff972c269c8"},
556
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
557
+ "region": "regionOne", "interface": "public", "id": "6483567da043458fb0bc734c39908f2f"},
558
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
559
+ "region": "regionOne", "interface": "internal", "id": "ad95dbf1f99a4fbda130bdcc71b81c15"}],
560
+ "type": "volume", "id": "1fb40dbf60ae483f853764381c1c6bab", "name": "cinder"},
561
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9696/",
562
+ "region": "regionOne", "interface": "admin", "id": "029a7263b7e14ebe8f10a0033b636ed9"},
563
+ {"region_id": "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne",
564
+ "interface": "public", "id": "a8e4debb78ed4aef9989ef07780abb46"}, {"region_id":
565
+ "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne", "interface":
566
+ "internal", "id": "b188a6216018481d8b1f6f9f41e69354"}], "type": "network",
567
+ "id": "2358e09f2ee14eca9b047cc3c2ca62f8", "name": "neutron"}, {"endpoints":
568
+ [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v3", "region":
569
+ "regionOne", "interface": "admin", "id": "0ede2537de2644199f649bb566015c2c"},
570
+ {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne",
571
+ "interface": "internal", "id": "2220349ef81d4b8fb678485c81f2a214"}, {"region_id":
572
+ "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne", "interface":
573
+ "public", "id": "9b84ce6363324320af67511b995d6e32"}], "type": "identity",
574
+ "id": "2901e458d8b74d2399a041b5b64cb8d1", "name": "identity_v3"}, {"endpoints":
575
+ [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
576
+ "region": "regionOne", "interface": "public", "id": "45c91d23e63648308e45e05944a530b9"},
577
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
578
+ "region": "regionOne", "interface": "admin", "id": "648693e76f00499289fc77ea6eea12eb"},
579
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
580
+ "region": "regionOne", "interface": "internal", "id": "ca2d606db4694c80802398bea56b8d7c"}],
581
+ "type": "volumev2", "id": "454c392dbb6d44bdb8a736a73628a8c4", "name": "cinderv2"},
582
+ {"endpoints": [], "type": "identity_v3", "id": "6f3b70e1db1b4ce692f558bc7fa2dfd7",
583
+ "name": "keystone_v3"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
584
+ "region": "regionOne", "interface": "internal", "id": "9ee36bdd422c4d04b1737b38079a7160"},
585
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1", "region": "regionOne",
586
+ "interface": "admin", "id": "bc34638cfdae4cc1ae168c283e4e915a"}, {"region_id":
587
+ "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
588
+ "region": "regionOne", "interface": "public", "id": "d41709fb49114560b459300f661bb3ed"}],
589
+ "type": "object-store", "id": "8e795505992141c1b32c1f9138b47b98", "name":
590
+ "swift"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
591
+ "region": "regionOne", "interface": "admin", "id": "04a4bcb47c774cf4b776dd330ec90ac7"},
592
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
593
+ "region": "regionOne", "interface": "internal", "id": "39f306a869084899af052b3d7a85701f"},
594
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
595
+ "region": "regionOne", "interface": "public", "id": "b37cfb8813c649ca932b74717a4924dc"}],
596
+ "type": "orchestration", "id": "a8e72740ce92456ab392a75375ec9df7", "name":
597
+ "heat"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8042/",
598
+ "region": "regionOne", "interface": "internal", "id": "2bd9d0c1fc544f078c2fef39a5f4decd"},
599
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne",
600
+ "interface": "admin", "id": "9c3ac290cf5944e9957f387987a6d7e8"}, {"region_id":
601
+ "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne", "interface":
602
+ "public", "id": "b8345563ada3461a8f871d897bae1c60"}], "type": "alarming",
603
+ "id": "afce35c3b5c640658578063bcb52fe0e", "name": "aodh"}, {"endpoints": [{"region_id":
604
+ "regionOne", "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface":
605
+ "public", "id": "0a8c20af41384e9b94ffbd266e69f8b0"}, {"region_id": "regionOne",
606
+ "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface": "admin",
607
+ "id": "407e04f068d64cc49c8beb612087d60c"}, {"region_id": "regionOne", "url":
608
+ "http://192.0.2.21:8777/", "region": "regionOne", "interface": "internal",
609
+ "id": "5506ecfd12e04e9fae93a16dd7cd473e"}], "type": "metering", "id": "afde6b4f37d1406d83939829e87fbfb9",
610
+ "name": "ceilometer"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9292/",
611
+ "region": "regionOne", "interface": "public", "id": "1b37c9b615634b9ba354acab8e797bd5"},
612
+ {"region_id": "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne",
613
+ "interface": "admin", "id": "24ed5cb4e2104b9796a2529a21de04ac"}, {"region_id":
614
+ "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne", "interface":
615
+ "internal", "id": "8493c76b6a1f400b80e20a11e3ac9e8d"}], "type": "image", "id":
616
+ "be4dfdcf14ef48039edf82ef5ae1629e", "name": "glance"}, {"endpoints": [{"region_id":
617
+ "regionOne", "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface":
618
+ "admin", "id": "709ff9a3f13848209b8934bb1f6dec26"}, {"region_id": "regionOne",
619
+ "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface": "internal",
620
+ "id": "d51d46cd35f941df88f5508b3e879777"}, {"region_id": "regionOne", "url":
621
+ "http://192.0.2.21:8041/", "region": "regionOne", "interface": "public", "id":
622
+ "fd3c88b22fab4df58cd629f174fd2e3b"}], "type": "metric", "id": "c2b4bf300bd84cfba6d9cb8c03874c15",
623
+ "name": "gnocchi"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v2.0",
624
+ "region": "regionOne", "interface": "admin", "id": "9bbbac3ebf04425fbf6f850c61727c36"},
625
+ {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
626
+ "regionOne", "interface": "public", "id": "a4f073188f834e08a541f3172afbf2aa"},
627
+ {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
628
+ "regionOne", "interface": "internal", "id": "fe25750a2f23451186b78cafeb2500c2"}],
629
+ "type": "identity", "id": "dcf4906057004977bdabba7de167c923", "name": "keystone"},
630
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
631
+ "region": "regionOne", "interface": "internal", "id": "09f14e579c22456498293c45deafc29c"},
632
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
633
+ "region": "regionOne", "interface": "public", "id": "39b2796eadd2410295b3f0b1398db694"},
634
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
635
+ "region": "regionOne", "interface": "admin", "id": "7ec9decfbe5b46ee850619c1752bfa67"}],
636
+ "type": "data-processing", "id": "ea7797ce177d4bfd8e360de675c71f35", "name":
637
+ "sahara"}], "user": {"domain": {"id": "default", "name": "Default"}, "id":
638
+ "1e50c2f0995446fd9b135a1a549cabdb", "name": "admin"}, "audit_ids": ["orIraq87SieRVksEWWGqLA"],
639
+ "issued_at": "2016-12-10T00:46:21.567459Z"}}'
640
+ http_version:
641
+ recorded_at: Fri, 17 Feb 2017 05:51:41 GMT
642
+ - request:
643
+ method: get
644
+ uri: http://192.0.2.21:9696/v2.0/networks/7896a8ed-592a-4122-b9a6-1ad3cf615899
645
+ body:
646
+ encoding: US-ASCII
647
+ string: ''
648
+ headers:
649
+ Content-Type:
650
+ - application/json
651
+ Accept:
652
+ - application/json
653
+ X-Auth-Token:
654
+ - 1618f30d661d45e28551907a56d94829
655
+ Accept-Encoding:
656
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
657
+ User-Agent:
658
+ - Ruby
659
+ response:
660
+ status:
661
+ code: 200
662
+ message: OK
663
+ headers:
664
+ Content-Type:
665
+ - application/json; charset=UTF-8
666
+ Content-Length:
667
+ - '620'
668
+ X-Openstack-Request-Id:
669
+ - req-008bdbee-2496-4655-8701-b30a5561f87a
670
+ Date:
671
+ - Sat, 10 Dec 2016 00:46:21 GMT
672
+ body:
673
+ encoding: UTF-8
674
+ string: '{"network": {"provider:physical_network": null, "ipv6_address_scope":
675
+ null, "port_security_enabled": true, "mtu": 1450, "id": "7896a8ed-592a-4122-b9a6-1ad3cf615899",
676
+ "router:external": false, "availability_zone_hints": [], "availability_zones":
677
+ [], "ipv4_address_scope": null, "shared": false, "provider:segmentation_id":
678
+ 29, "status": "ACTIVE", "subnets": [], "description": "", "tags": [], "updated_at":
679
+ "2016-12-10T00:46:21", "qos_policy_id": null, "name": "test_network", "admin_state_up":
680
+ true, "tenant_id": "48985e6b8da145699d411f12a3459fca", "created_at": "2016-12-10T00:46:21",
681
+ "provider:network_type": "vxlan"}}'
682
+ http_version:
683
+ recorded_at: Fri, 17 Feb 2017 05:51:41 GMT
684
+ - request:
685
+ method: post
686
+ uri: http://192.0.2.21:5000/v3/auth/tokens
687
+ body:
688
+ encoding: UTF-8
689
+ string: '{"auth":{"identity":{"methods":["password"],"password":{"user":{"name":"admin","domain":{"id":"default"},"password":"CJk9hb2ZFR96Ypu74KFFGWuhv"}}},"scope":{"project":{"name":"admin","domain":{"id":"default"}}}}}'
690
+ headers:
691
+ Content-Type:
692
+ - application/json
693
+ Accept:
694
+ - application/json
695
+ Accept-Encoding:
696
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
697
+ User-Agent:
698
+ - Ruby
699
+ response:
700
+ status:
701
+ code: 201
702
+ message: Created
703
+ headers:
704
+ Date:
705
+ - Sat, 10 Dec 2016 00:46:21 GMT
706
+ Server:
707
+ - Apache/2.4.6 (Red Hat Enterprise Linux)
708
+ X-Subject-Token:
709
+ - 7886d98fe689486fbb1269365d0afc2a
710
+ Vary:
711
+ - X-Auth-Token
712
+ X-Openstack-Request-Id:
713
+ - req-7e01d1a4-29cc-49a3-bb24-56cd5768948f
714
+ Content-Length:
715
+ - '8373'
716
+ Content-Type:
717
+ - application/json
718
+ body:
719
+ encoding: UTF-8
720
+ string: '{"token": {"methods": ["password"], "roles": [{"id": "362084a241d94d56b6371f6cb1c87abf",
721
+ "name": "admin"}], "expires_at": "2016-12-10T01:46:21.786681Z", "project":
722
+ {"domain": {"id": "default", "name": "Default"}, "id": "48985e6b8da145699d411f12a3459fca",
723
+ "name": "admin"}, "catalog": [{"endpoints": [{"region_id": "regionOne", "url":
724
+ "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca", "region":
725
+ "regionOne", "interface": "internal", "id": "09e14aa5f80a4c3d84f20ecef245af13"},
726
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
727
+ "region": "regionOne", "interface": "public", "id": "8beeb2f5570f4e668bb9df77105c396d"},
728
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
729
+ "region": "regionOne", "interface": "admin", "id": "d368b97fae184bba9fdd2213287a327b"}],
730
+ "type": "compute", "id": "1a96b84b844a4c028f22b7da27501c0d", "name": "nova"},
731
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
732
+ "region": "regionOne", "interface": "admin", "id": "3e02c6f778ba4ab38476fff972c269c8"},
733
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
734
+ "region": "regionOne", "interface": "public", "id": "6483567da043458fb0bc734c39908f2f"},
735
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
736
+ "region": "regionOne", "interface": "internal", "id": "ad95dbf1f99a4fbda130bdcc71b81c15"}],
737
+ "type": "volume", "id": "1fb40dbf60ae483f853764381c1c6bab", "name": "cinder"},
738
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9696/",
739
+ "region": "regionOne", "interface": "admin", "id": "029a7263b7e14ebe8f10a0033b636ed9"},
740
+ {"region_id": "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne",
741
+ "interface": "public", "id": "a8e4debb78ed4aef9989ef07780abb46"}, {"region_id":
742
+ "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne", "interface":
743
+ "internal", "id": "b188a6216018481d8b1f6f9f41e69354"}], "type": "network",
744
+ "id": "2358e09f2ee14eca9b047cc3c2ca62f8", "name": "neutron"}, {"endpoints":
745
+ [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v3", "region":
746
+ "regionOne", "interface": "admin", "id": "0ede2537de2644199f649bb566015c2c"},
747
+ {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne",
748
+ "interface": "internal", "id": "2220349ef81d4b8fb678485c81f2a214"}, {"region_id":
749
+ "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne", "interface":
750
+ "public", "id": "9b84ce6363324320af67511b995d6e32"}], "type": "identity",
751
+ "id": "2901e458d8b74d2399a041b5b64cb8d1", "name": "identity_v3"}, {"endpoints":
752
+ [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
753
+ "region": "regionOne", "interface": "public", "id": "45c91d23e63648308e45e05944a530b9"},
754
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
755
+ "region": "regionOne", "interface": "admin", "id": "648693e76f00499289fc77ea6eea12eb"},
756
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
757
+ "region": "regionOne", "interface": "internal", "id": "ca2d606db4694c80802398bea56b8d7c"}],
758
+ "type": "volumev2", "id": "454c392dbb6d44bdb8a736a73628a8c4", "name": "cinderv2"},
759
+ {"endpoints": [], "type": "identity_v3", "id": "6f3b70e1db1b4ce692f558bc7fa2dfd7",
760
+ "name": "keystone_v3"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
761
+ "region": "regionOne", "interface": "internal", "id": "9ee36bdd422c4d04b1737b38079a7160"},
762
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1", "region": "regionOne",
763
+ "interface": "admin", "id": "bc34638cfdae4cc1ae168c283e4e915a"}, {"region_id":
764
+ "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
765
+ "region": "regionOne", "interface": "public", "id": "d41709fb49114560b459300f661bb3ed"}],
766
+ "type": "object-store", "id": "8e795505992141c1b32c1f9138b47b98", "name":
767
+ "swift"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
768
+ "region": "regionOne", "interface": "admin", "id": "04a4bcb47c774cf4b776dd330ec90ac7"},
769
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
770
+ "region": "regionOne", "interface": "internal", "id": "39f306a869084899af052b3d7a85701f"},
771
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
772
+ "region": "regionOne", "interface": "public", "id": "b37cfb8813c649ca932b74717a4924dc"}],
773
+ "type": "orchestration", "id": "a8e72740ce92456ab392a75375ec9df7", "name":
774
+ "heat"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8042/",
775
+ "region": "regionOne", "interface": "internal", "id": "2bd9d0c1fc544f078c2fef39a5f4decd"},
776
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne",
777
+ "interface": "admin", "id": "9c3ac290cf5944e9957f387987a6d7e8"}, {"region_id":
778
+ "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne", "interface":
779
+ "public", "id": "b8345563ada3461a8f871d897bae1c60"}], "type": "alarming",
780
+ "id": "afce35c3b5c640658578063bcb52fe0e", "name": "aodh"}, {"endpoints": [{"region_id":
781
+ "regionOne", "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface":
782
+ "public", "id": "0a8c20af41384e9b94ffbd266e69f8b0"}, {"region_id": "regionOne",
783
+ "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface": "admin",
784
+ "id": "407e04f068d64cc49c8beb612087d60c"}, {"region_id": "regionOne", "url":
785
+ "http://192.0.2.21:8777/", "region": "regionOne", "interface": "internal",
786
+ "id": "5506ecfd12e04e9fae93a16dd7cd473e"}], "type": "metering", "id": "afde6b4f37d1406d83939829e87fbfb9",
787
+ "name": "ceilometer"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9292/",
788
+ "region": "regionOne", "interface": "public", "id": "1b37c9b615634b9ba354acab8e797bd5"},
789
+ {"region_id": "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne",
790
+ "interface": "admin", "id": "24ed5cb4e2104b9796a2529a21de04ac"}, {"region_id":
791
+ "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne", "interface":
792
+ "internal", "id": "8493c76b6a1f400b80e20a11e3ac9e8d"}], "type": "image", "id":
793
+ "be4dfdcf14ef48039edf82ef5ae1629e", "name": "glance"}, {"endpoints": [{"region_id":
794
+ "regionOne", "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface":
795
+ "admin", "id": "709ff9a3f13848209b8934bb1f6dec26"}, {"region_id": "regionOne",
796
+ "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface": "internal",
797
+ "id": "d51d46cd35f941df88f5508b3e879777"}, {"region_id": "regionOne", "url":
798
+ "http://192.0.2.21:8041/", "region": "regionOne", "interface": "public", "id":
799
+ "fd3c88b22fab4df58cd629f174fd2e3b"}], "type": "metric", "id": "c2b4bf300bd84cfba6d9cb8c03874c15",
800
+ "name": "gnocchi"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v2.0",
801
+ "region": "regionOne", "interface": "admin", "id": "9bbbac3ebf04425fbf6f850c61727c36"},
802
+ {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
803
+ "regionOne", "interface": "public", "id": "a4f073188f834e08a541f3172afbf2aa"},
804
+ {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
805
+ "regionOne", "interface": "internal", "id": "fe25750a2f23451186b78cafeb2500c2"}],
806
+ "type": "identity", "id": "dcf4906057004977bdabba7de167c923", "name": "keystone"},
807
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
808
+ "region": "regionOne", "interface": "internal", "id": "09f14e579c22456498293c45deafc29c"},
809
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
810
+ "region": "regionOne", "interface": "public", "id": "39b2796eadd2410295b3f0b1398db694"},
811
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
812
+ "region": "regionOne", "interface": "admin", "id": "7ec9decfbe5b46ee850619c1752bfa67"}],
813
+ "type": "data-processing", "id": "ea7797ce177d4bfd8e360de675c71f35", "name":
814
+ "sahara"}], "user": {"domain": {"id": "default", "name": "Default"}, "id":
815
+ "1e50c2f0995446fd9b135a1a549cabdb", "name": "admin"}, "audit_ids": ["Mae40mhhTka1i1By8f4iqQ"],
816
+ "issued_at": "2016-12-10T00:46:21.786736Z"}}'
817
+ http_version:
818
+ recorded_at: Fri, 17 Feb 2017 05:51:41 GMT
819
+ - request:
820
+ method: put
821
+ uri: http://192.0.2.21:9696/v2.0/networks/7896a8ed-592a-4122-b9a6-1ad3cf615899
822
+ body:
823
+ encoding: UTF-8
824
+ string: '{"network":{"name":"test_updated_network"}}'
825
+ headers:
826
+ Content-Type:
827
+ - application/json
828
+ Accept:
829
+ - application/json
830
+ X-Auth-Token:
831
+ - 1618f30d661d45e28551907a56d94829
832
+ Accept-Encoding:
833
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
834
+ User-Agent:
835
+ - Ruby
836
+ response:
837
+ status:
838
+ code: 200
839
+ message: OK
840
+ headers:
841
+ Content-Type:
842
+ - application/json; charset=UTF-8
843
+ Content-Length:
844
+ - '628'
845
+ X-Openstack-Request-Id:
846
+ - req-9b17355b-90fc-4d49-b351-2dea7cf70795
847
+ Date:
848
+ - Sat, 10 Dec 2016 00:46:21 GMT
849
+ body:
850
+ encoding: UTF-8
851
+ string: '{"network": {"provider:physical_network": null, "ipv6_address_scope":
852
+ null, "port_security_enabled": true, "mtu": 1450, "id": "7896a8ed-592a-4122-b9a6-1ad3cf615899",
853
+ "router:external": false, "availability_zone_hints": [], "availability_zones":
854
+ [], "ipv4_address_scope": null, "shared": false, "provider:segmentation_id":
855
+ 29, "status": "ACTIVE", "subnets": [], "description": "", "tags": [], "updated_at":
856
+ "2016-12-10T00:46:21", "qos_policy_id": null, "name": "test_updated_network",
857
+ "admin_state_up": true, "tenant_id": "48985e6b8da145699d411f12a3459fca", "created_at":
858
+ "2016-12-10T00:46:21", "provider:network_type": "vxlan"}}'
859
+ http_version:
860
+ recorded_at: Fri, 17 Feb 2017 05:51:42 GMT
861
+ - request:
862
+ method: post
863
+ uri: http://192.0.2.21:5000/v3/auth/tokens
864
+ body:
865
+ encoding: UTF-8
866
+ string: '{"auth":{"identity":{"methods":["password"],"password":{"user":{"name":"admin","domain":{"id":"default"},"password":"CJk9hb2ZFR96Ypu74KFFGWuhv"}}},"scope":{"project":{"name":"admin","domain":{"id":"default"}}}}}'
867
+ headers:
868
+ Content-Type:
869
+ - application/json
870
+ Accept:
871
+ - application/json
872
+ Accept-Encoding:
873
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
874
+ User-Agent:
875
+ - Ruby
876
+ response:
877
+ status:
878
+ code: 201
879
+ message: Created
880
+ headers:
881
+ Date:
882
+ - Sat, 10 Dec 2016 00:46:21 GMT
883
+ Server:
884
+ - Apache/2.4.6 (Red Hat Enterprise Linux)
885
+ X-Subject-Token:
886
+ - fb8a1dfac5a44777a4579673369a5a23
887
+ Vary:
888
+ - X-Auth-Token
889
+ X-Openstack-Request-Id:
890
+ - req-f3c79ef4-1862-4ae5-b694-ce61d702d300
891
+ Content-Length:
892
+ - '8373'
893
+ Content-Type:
894
+ - application/json
895
+ body:
896
+ encoding: UTF-8
897
+ string: '{"token": {"methods": ["password"], "roles": [{"id": "362084a241d94d56b6371f6cb1c87abf",
898
+ "name": "admin"}], "expires_at": "2016-12-10T01:46:22.111977Z", "project":
899
+ {"domain": {"id": "default", "name": "Default"}, "id": "48985e6b8da145699d411f12a3459fca",
900
+ "name": "admin"}, "catalog": [{"endpoints": [{"region_id": "regionOne", "url":
901
+ "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca", "region":
902
+ "regionOne", "interface": "internal", "id": "09e14aa5f80a4c3d84f20ecef245af13"},
903
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
904
+ "region": "regionOne", "interface": "public", "id": "8beeb2f5570f4e668bb9df77105c396d"},
905
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8774/v2.1/48985e6b8da145699d411f12a3459fca",
906
+ "region": "regionOne", "interface": "admin", "id": "d368b97fae184bba9fdd2213287a327b"}],
907
+ "type": "compute", "id": "1a96b84b844a4c028f22b7da27501c0d", "name": "nova"},
908
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
909
+ "region": "regionOne", "interface": "admin", "id": "3e02c6f778ba4ab38476fff972c269c8"},
910
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
911
+ "region": "regionOne", "interface": "public", "id": "6483567da043458fb0bc734c39908f2f"},
912
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v1/48985e6b8da145699d411f12a3459fca",
913
+ "region": "regionOne", "interface": "internal", "id": "ad95dbf1f99a4fbda130bdcc71b81c15"}],
914
+ "type": "volume", "id": "1fb40dbf60ae483f853764381c1c6bab", "name": "cinder"},
915
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9696/",
916
+ "region": "regionOne", "interface": "admin", "id": "029a7263b7e14ebe8f10a0033b636ed9"},
917
+ {"region_id": "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne",
918
+ "interface": "public", "id": "a8e4debb78ed4aef9989ef07780abb46"}, {"region_id":
919
+ "regionOne", "url": "http://192.0.2.21:9696/", "region": "regionOne", "interface":
920
+ "internal", "id": "b188a6216018481d8b1f6f9f41e69354"}], "type": "network",
921
+ "id": "2358e09f2ee14eca9b047cc3c2ca62f8", "name": "neutron"}, {"endpoints":
922
+ [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v3", "region":
923
+ "regionOne", "interface": "admin", "id": "0ede2537de2644199f649bb566015c2c"},
924
+ {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne",
925
+ "interface": "internal", "id": "2220349ef81d4b8fb678485c81f2a214"}, {"region_id":
926
+ "regionOne", "url": "http://192.0.2.21:5000/v3", "region": "regionOne", "interface":
927
+ "public", "id": "9b84ce6363324320af67511b995d6e32"}], "type": "identity",
928
+ "id": "2901e458d8b74d2399a041b5b64cb8d1", "name": "identity_v3"}, {"endpoints":
929
+ [{"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
930
+ "region": "regionOne", "interface": "public", "id": "45c91d23e63648308e45e05944a530b9"},
931
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
932
+ "region": "regionOne", "interface": "admin", "id": "648693e76f00499289fc77ea6eea12eb"},
933
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8776/v2/48985e6b8da145699d411f12a3459fca",
934
+ "region": "regionOne", "interface": "internal", "id": "ca2d606db4694c80802398bea56b8d7c"}],
935
+ "type": "volumev2", "id": "454c392dbb6d44bdb8a736a73628a8c4", "name": "cinderv2"},
936
+ {"endpoints": [], "type": "identity_v3", "id": "6f3b70e1db1b4ce692f558bc7fa2dfd7",
937
+ "name": "keystone_v3"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
938
+ "region": "regionOne", "interface": "internal", "id": "9ee36bdd422c4d04b1737b38079a7160"},
939
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8080/v1", "region": "regionOne",
940
+ "interface": "admin", "id": "bc34638cfdae4cc1ae168c283e4e915a"}, {"region_id":
941
+ "regionOne", "url": "http://192.0.2.21:8080/v1/AUTH_48985e6b8da145699d411f12a3459fca",
942
+ "region": "regionOne", "interface": "public", "id": "d41709fb49114560b459300f661bb3ed"}],
943
+ "type": "object-store", "id": "8e795505992141c1b32c1f9138b47b98", "name":
944
+ "swift"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
945
+ "region": "regionOne", "interface": "admin", "id": "04a4bcb47c774cf4b776dd330ec90ac7"},
946
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
947
+ "region": "regionOne", "interface": "internal", "id": "39f306a869084899af052b3d7a85701f"},
948
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8004/v1/48985e6b8da145699d411f12a3459fca",
949
+ "region": "regionOne", "interface": "public", "id": "b37cfb8813c649ca932b74717a4924dc"}],
950
+ "type": "orchestration", "id": "a8e72740ce92456ab392a75375ec9df7", "name":
951
+ "heat"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8042/",
952
+ "region": "regionOne", "interface": "internal", "id": "2bd9d0c1fc544f078c2fef39a5f4decd"},
953
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne",
954
+ "interface": "admin", "id": "9c3ac290cf5944e9957f387987a6d7e8"}, {"region_id":
955
+ "regionOne", "url": "http://192.0.2.21:8042/", "region": "regionOne", "interface":
956
+ "public", "id": "b8345563ada3461a8f871d897bae1c60"}], "type": "alarming",
957
+ "id": "afce35c3b5c640658578063bcb52fe0e", "name": "aodh"}, {"endpoints": [{"region_id":
958
+ "regionOne", "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface":
959
+ "public", "id": "0a8c20af41384e9b94ffbd266e69f8b0"}, {"region_id": "regionOne",
960
+ "url": "http://192.0.2.21:8777/", "region": "regionOne", "interface": "admin",
961
+ "id": "407e04f068d64cc49c8beb612087d60c"}, {"region_id": "regionOne", "url":
962
+ "http://192.0.2.21:8777/", "region": "regionOne", "interface": "internal",
963
+ "id": "5506ecfd12e04e9fae93a16dd7cd473e"}], "type": "metering", "id": "afde6b4f37d1406d83939829e87fbfb9",
964
+ "name": "ceilometer"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:9292/",
965
+ "region": "regionOne", "interface": "public", "id": "1b37c9b615634b9ba354acab8e797bd5"},
966
+ {"region_id": "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne",
967
+ "interface": "admin", "id": "24ed5cb4e2104b9796a2529a21de04ac"}, {"region_id":
968
+ "regionOne", "url": "http://192.0.2.21:9292/", "region": "regionOne", "interface":
969
+ "internal", "id": "8493c76b6a1f400b80e20a11e3ac9e8d"}], "type": "image", "id":
970
+ "be4dfdcf14ef48039edf82ef5ae1629e", "name": "glance"}, {"endpoints": [{"region_id":
971
+ "regionOne", "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface":
972
+ "admin", "id": "709ff9a3f13848209b8934bb1f6dec26"}, {"region_id": "regionOne",
973
+ "url": "http://192.0.2.21:8041/", "region": "regionOne", "interface": "internal",
974
+ "id": "d51d46cd35f941df88f5508b3e879777"}, {"region_id": "regionOne", "url":
975
+ "http://192.0.2.21:8041/", "region": "regionOne", "interface": "public", "id":
976
+ "fd3c88b22fab4df58cd629f174fd2e3b"}], "type": "metric", "id": "c2b4bf300bd84cfba6d9cb8c03874c15",
977
+ "name": "gnocchi"}, {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:35357/v2.0",
978
+ "region": "regionOne", "interface": "admin", "id": "9bbbac3ebf04425fbf6f850c61727c36"},
979
+ {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
980
+ "regionOne", "interface": "public", "id": "a4f073188f834e08a541f3172afbf2aa"},
981
+ {"region_id": "regionOne", "url": "http://192.0.2.21:5000/v2.0", "region":
982
+ "regionOne", "interface": "internal", "id": "fe25750a2f23451186b78cafeb2500c2"}],
983
+ "type": "identity", "id": "dcf4906057004977bdabba7de167c923", "name": "keystone"},
984
+ {"endpoints": [{"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
985
+ "region": "regionOne", "interface": "internal", "id": "09f14e579c22456498293c45deafc29c"},
986
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
987
+ "region": "regionOne", "interface": "public", "id": "39b2796eadd2410295b3f0b1398db694"},
988
+ {"region_id": "regionOne", "url": "http://192.0.2.21:8386/v1.1/48985e6b8da145699d411f12a3459fca",
989
+ "region": "regionOne", "interface": "admin", "id": "7ec9decfbe5b46ee850619c1752bfa67"}],
990
+ "type": "data-processing", "id": "ea7797ce177d4bfd8e360de675c71f35", "name":
991
+ "sahara"}], "user": {"domain": {"id": "default", "name": "Default"}, "id":
992
+ "1e50c2f0995446fd9b135a1a549cabdb", "name": "admin"}, "audit_ids": ["fJoNAl2SRSekqdy_vsiZqQ"],
993
+ "issued_at": "2016-12-10T00:46:22.112017Z"}}'
994
+ http_version:
995
+ recorded_at: Fri, 17 Feb 2017 05:51:42 GMT
996
+ - request:
997
+ method: delete
998
+ uri: http://192.0.2.21:9696/v2.0/networks/7896a8ed-592a-4122-b9a6-1ad3cf615899
999
+ body:
1000
+ encoding: US-ASCII
1001
+ string: ''
1002
+ headers:
1003
+ Content-Type:
1004
+ - application/json
1005
+ Accept:
1006
+ - application/json
1007
+ X-Auth-Token:
1008
+ - 1618f30d661d45e28551907a56d94829
1009
+ Accept-Encoding:
1010
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1011
+ User-Agent:
1012
+ - Ruby
1013
+ response:
1014
+ status:
1015
+ code: 204
1016
+ message: No Content
1017
+ headers:
1018
+ Content-Length:
1019
+ - '0'
1020
+ X-Openstack-Request-Id:
1021
+ - req-29010607-2fd1-4ba1-8a19-5c1a839a89e0
1022
+ Date:
1023
+ - Sat, 10 Dec 2016 00:46:22 GMT
1024
+ body:
1025
+ encoding: UTF-8
1026
+ string: ''
1027
+ http_version:
1028
+ recorded_at: Fri, 17 Feb 2017 05:51:42 GMT
1029
+ recorded_with: VCR 3.0.3