fog 1.31.0 → 1.32.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +53 -0
- data/Rakefile +5 -5
- data/fog.gemspec +6 -5
- data/lib/fog/cloudstack/models/compute/network.rb +1 -0
- data/lib/fog/openstack/compute.rb +41 -98
- data/lib/fog/openstack/core.rb +257 -118
- data/lib/fog/openstack/identity.rb +4 -0
- data/lib/fog/openstack/identity_v3.rb +10 -41
- data/lib/fog/openstack/models/baremetal/chassis_collection.rb +10 -4
- data/lib/fog/openstack/models/baremetal/drivers.rb +4 -2
- data/lib/fog/openstack/models/baremetal/nodes.rb +10 -4
- data/lib/fog/openstack/models/baremetal/ports.rb +10 -4
- data/lib/fog/openstack/models/compute/addresses.rb +4 -2
- data/lib/fog/openstack/models/compute/aggregate.rb +64 -0
- data/lib/fog/openstack/models/compute/aggregates.rb +28 -0
- data/lib/fog/openstack/models/compute/flavors.rb +5 -0
- data/lib/fog/openstack/models/compute/hosts.rb +4 -2
- data/lib/fog/openstack/models/compute/images.rb +2 -0
- data/lib/fog/openstack/models/compute/key_pairs.rb +4 -2
- data/lib/fog/openstack/models/compute/security_groups.rb +4 -2
- data/lib/fog/openstack/models/compute/servers.rb +2 -0
- data/lib/fog/openstack/models/compute/services.rb +7 -4
- data/lib/fog/openstack/models/compute/snapshots.rb +15 -2
- data/lib/fog/openstack/models/compute/volumes.rb +15 -2
- data/lib/fog/openstack/models/identity_v2/ec2_credentials.rb +6 -3
- data/lib/fog/openstack/models/identity_v2/roles.rb +5 -3
- data/lib/fog/openstack/models/identity_v2/tenants.rb +5 -3
- data/lib/fog/openstack/models/identity_v2/users.rb +7 -3
- data/lib/fog/openstack/models/identity_v3/domains.rb +7 -6
- data/lib/fog/openstack/models/identity_v3/endpoints.rb +5 -4
- data/lib/fog/openstack/models/identity_v3/groups.rb +5 -3
- data/lib/fog/openstack/models/identity_v3/os_credentials.rb +5 -3
- data/lib/fog/openstack/models/identity_v3/policies.rb +5 -3
- data/lib/fog/openstack/models/identity_v3/project.rb +1 -0
- data/lib/fog/openstack/models/identity_v3/projects.rb +7 -5
- data/lib/fog/openstack/models/identity_v3/role_assignments.rb +10 -5
- data/lib/fog/openstack/models/identity_v3/roles.rb +11 -5
- data/lib/fog/openstack/models/identity_v3/services.rb +5 -3
- data/lib/fog/openstack/models/identity_v3/users.rb +4 -2
- data/lib/fog/openstack/models/image/images.rb +10 -4
- data/lib/fog/openstack/models/network/floating_ips.rb +2 -0
- data/lib/fog/openstack/models/network/lb_health_monitors.rb +2 -0
- data/lib/fog/openstack/models/network/lb_members.rb +2 -0
- data/lib/fog/openstack/models/network/lb_pools.rb +2 -0
- data/lib/fog/openstack/models/network/lb_vips.rb +2 -0
- data/lib/fog/openstack/models/network/networks.rb +2 -0
- data/lib/fog/openstack/models/network/port.rb +1 -0
- data/lib/fog/openstack/models/network/ports.rb +2 -0
- data/lib/fog/openstack/models/network/routers.rb +2 -0
- data/lib/fog/openstack/models/network/security_group_rules.rb +2 -0
- data/lib/fog/openstack/models/network/security_groups.rb +2 -0
- data/lib/fog/openstack/models/network/subnets.rb +2 -0
- data/lib/fog/openstack/models/orchestration/events.rb +10 -6
- data/lib/fog/openstack/models/orchestration/resources.rb +4 -2
- data/lib/fog/openstack/models/orchestration/stack.rb +1 -1
- data/lib/fog/openstack/models/orchestration/stacks.rb +9 -1
- data/lib/fog/openstack/models/planning/plans.rb +4 -2
- data/lib/fog/openstack/models/planning/roles.rb +5 -2
- data/lib/fog/openstack/models/storage/directories.rb +4 -2
- data/lib/fog/openstack/models/storage/files.rb +2 -0
- data/lib/fog/openstack/models/volume/volume.rb +1 -0
- data/lib/fog/openstack/models/volume/volume_types.rb +2 -0
- data/lib/fog/openstack/models/volume/volumes.rb +13 -2
- data/lib/fog/openstack/network.rb +18 -97
- data/lib/fog/openstack/orchestration.rb +2 -0
- data/lib/fog/openstack/requests/baremetal/list_chassis.rb +2 -8
- data/lib/fog/openstack/requests/baremetal/list_chassis_detailed.rb +3 -9
- data/lib/fog/openstack/requests/baremetal/list_drivers.rb +4 -3
- data/lib/fog/openstack/requests/baremetal/list_nodes.rb +3 -9
- data/lib/fog/openstack/requests/baremetal/list_nodes_detailed.rb +3 -9
- data/lib/fog/openstack/requests/baremetal/list_ports.rb +3 -9
- data/lib/fog/openstack/requests/baremetal/list_ports_detailed.rb +3 -9
- data/lib/fog/openstack/requests/compute/add_aggregate_host.rb +30 -0
- data/lib/fog/openstack/requests/compute/create_aggregate.rb +42 -0
- data/lib/fog/openstack/requests/compute/delete_aggregate.rb +28 -0
- data/lib/fog/openstack/requests/compute/get_aggregate.rb +26 -0
- data/lib/fog/openstack/requests/compute/list_aggregates.rb +36 -0
- data/lib/fog/openstack/requests/compute/list_all_addresses.rb +4 -3
- data/lib/fog/openstack/requests/compute/list_flavors.rb +6 -5
- data/lib/fog/openstack/requests/compute/list_hosts.rb +4 -3
- data/lib/fog/openstack/requests/compute/list_key_pairs.rb +4 -3
- data/lib/fog/openstack/requests/compute/list_security_groups.rb +15 -2
- data/lib/fog/openstack/requests/compute/list_snapshots.rb +18 -4
- data/lib/fog/openstack/requests/compute/list_snapshots_detail.rb +27 -0
- data/lib/fog/openstack/requests/compute/list_volumes.rb +18 -4
- data/lib/fog/openstack/requests/compute/list_volumes_detail.rb +25 -0
- data/lib/fog/openstack/requests/compute/remove_aggregate_host.rb +30 -0
- data/lib/fog/openstack/requests/compute/update_aggregate.rb +37 -0
- data/lib/fog/openstack/requests/compute/update_aggregate_metadata.rb +30 -0
- data/lib/fog/openstack/requests/identity_v2/list_ec2_credentials.rb +23 -7
- data/lib/fog/openstack/requests/identity_v2/list_roles.rb +5 -4
- data/lib/fog/openstack/requests/identity_v2/list_tenants.rb +14 -8
- data/lib/fog/openstack/requests/identity_v2/list_users.rb +16 -4
- data/lib/fog/openstack/requests/identity_v3/auth_domains.rb +2 -7
- data/lib/fog/openstack/requests/identity_v3/auth_projects.rb +6 -11
- data/lib/fog/openstack/requests/identity_v3/list_domains.rb +7 -14
- data/lib/fog/openstack/requests/identity_v3/list_endpoints.rb +7 -14
- data/lib/fog/openstack/requests/identity_v3/list_group_users.rb +5 -13
- data/lib/fog/openstack/requests/identity_v3/list_groups.rb +14 -24
- data/lib/fog/openstack/requests/identity_v3/list_os_credentials.rb +7 -12
- data/lib/fog/openstack/requests/identity_v3/list_policies.rb +7 -11
- data/lib/fog/openstack/requests/identity_v3/list_projects.rb +14 -25
- data/lib/fog/openstack/requests/identity_v3/list_role_assignments.rb +21 -17
- data/lib/fog/openstack/requests/identity_v3/list_roles.rb +7 -25
- data/lib/fog/openstack/requests/identity_v3/list_services.rb +7 -13
- data/lib/fog/openstack/requests/identity_v3/list_users.rb +7 -15
- data/lib/fog/openstack/requests/image/list_public_images.rb +4 -3
- data/lib/fog/openstack/requests/image/list_public_images_detailed.rb +9 -6
- data/lib/fog/openstack/requests/network/create_port.rb +12 -11
- data/lib/fog/openstack/requests/network/create_subnet.rb +7 -7
- data/lib/fog/openstack/requests/network/get_port.rb +1 -0
- data/lib/fog/openstack/requests/network/update_port.rb +7 -6
- data/lib/fog/openstack/requests/orchestration/list_events.rb +46 -0
- data/lib/fog/openstack/requests/orchestration/list_resource_events.rb +7 -2
- data/lib/fog/openstack/requests/orchestration/list_resource_types.rb +3 -2
- data/lib/fog/openstack/requests/orchestration/list_resources.rb +27 -4
- data/lib/fog/openstack/requests/orchestration/list_stack_data.rb +2 -2
- data/lib/fog/openstack/requests/orchestration/list_stack_data_detailed.rb +49 -0
- data/lib/fog/openstack/requests/orchestration/list_stack_events.rb +6 -2
- data/lib/fog/openstack/requests/planning/list_plans.rb +4 -3
- data/lib/fog/openstack/requests/planning/list_roles.rb +3 -9
- data/lib/fog/openstack/requests/volume/create_volume.rb +2 -1
- data/lib/fog/openstack/requests/volume/list_snapshots.rb +16 -3
- data/lib/fog/openstack/requests/volume/list_snapshots_detailed.rb +27 -0
- data/lib/fog/openstack/requests/volume/list_volume_types.rb +6 -6
- data/lib/fog/openstack/requests/volume/list_volumes.rb +20 -7
- data/lib/fog/openstack/requests/volume/list_volumes_detailed.rb +49 -0
- data/lib/fog/openstack/volume.rb +1 -0
- data/lib/fog/ovirt/models/compute/server.rb +1 -0
- data/lib/fog/ovirt/models/compute/template.rb +1 -0
- data/lib/fog/rackspace/docs/queues.md +2 -2
- data/lib/fog/rackspace/models/block_storage/snapshot.rb +5 -1
- data/lib/fog/version.rb +1 -1
- data/lib/fog/vsphere/requests/compute/vm_clone.rb +1 -1
- data/lib/tasks/changelog_task.rb +1 -0
- data/spec/fog/openstack/identity_v3/authv3_a.yml +55 -35
- data/spec/fog/openstack/identity_v3/authv3_b.yml +55 -35
- data/spec/fog/openstack/identity_v3/authv3_c.yml +159 -33
- data/spec/fog/openstack/identity_v3/authv3_project.yml +79 -35
- data/spec/fog/openstack/identity_v3/authv3_token.yml +377 -76
- data/spec/fog/openstack/identity_v3/authv3_unscoped.yml +298 -155
- data/spec/fog/openstack/identity_v3/authv3_unscoped_reauth.yml +371 -0
- data/spec/fog/openstack/identity_v3/idv3.yml +456 -41
- data/spec/fog/openstack/identity_v3/idv3_credential.yml +36 -30
- data/spec/fog/openstack/identity_v3/idv3_credential_crud.yml +223 -190
- data/spec/fog/openstack/identity_v3/idv3_domain.yml +64 -58
- data/spec/fog/openstack/identity_v3/idv3_domain_crud.yml +176 -393
- data/spec/fog/openstack/identity_v3/idv3_domain_group_roles_mutation.yml +277 -379
- data/spec/fog/openstack/identity_v3/idv3_domain_roles_mutation.yml +177 -204
- data/spec/fog/openstack/identity_v3/idv3_endpoint.yml +492 -174
- data/spec/fog/openstack/identity_v3/idv3_endpoints_crud.yml +669 -435
- data/spec/fog/openstack/identity_v3/idv3_group_crud_mutation.yml +378 -298
- data/spec/fog/openstack/identity_v3/idv3_other_region.yml +187 -0
- data/spec/fog/openstack/identity_v3/idv3_policy.yml +54 -46
- data/spec/fog/openstack/identity_v3/idv3_policy_crud.yml +137 -117
- data/spec/fog/openstack/identity_v3/idv3_project.yml +116 -86
- data/spec/fog/openstack/identity_v3/idv3_project_crud.yml +179 -387
- data/spec/fog/openstack/identity_v3/idv3_project_group_user_roles_mutation.yml +415 -556
- data/spec/fog/openstack/identity_v3/idv3_role.yml +108 -74
- data/spec/fog/openstack/identity_v3/idv3_role_crud.yml +160 -368
- data/spec/fog/openstack/identity_v3/idv3_service.yml +156 -94
- data/spec/fog/openstack/identity_v3/idv3_services_crud.yml +250 -306
- data/spec/fog/openstack/identity_v3/idv3_token.yml +195 -101
- data/spec/fog/openstack/identity_v3/idv3_user_crud.yml +276 -193
- data/spec/fog/openstack/identity_v3/idv3_users.yml +149 -219
- data/spec/fog/openstack/identity_v3_spec.rb +502 -474
- data/spec/fog/openstack/volume/volume_common_setup.yml +76 -0
- data/spec/fog/openstack/volume/volume_crud.yml +561 -0
- data/spec/fog/openstack/volume/volume_type_read.yml +120 -0
- data/spec/fog/openstack/volume_spec.rb +165 -0
- data/tests/openstack/requests/compute/aggregate_tests.rb +59 -0
- data/tests/openstack/requests/network/port_tests.rb +12 -11
- data/tests/openstack/requests/orchestration/stack_tests.rb +25 -0
- metadata +56 -14
- 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-
|
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.
|
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
|
-
-
|
17
|
+
- 0c4458de5ba5446885c65b1dedfb2404
|
18
18
|
response:
|
19
19
|
status:
|
20
|
-
code:
|
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
|
-
-
|
35
|
-
|
36
|
-
|
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-
|
62
|
-
-
|
63
|
-
Content-Type:
|
64
|
-
- application/json
|
29
|
+
X-Openstack-Request-Id:
|
30
|
+
- req-1daefc8f-d2bc-420b-8295-cc2be2e73352
|
65
31
|
Content-Length:
|
66
|
-
- '
|
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:
|
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-
|
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.
|
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
|
-
-
|
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-
|
158
|
-
-
|
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:
|
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-
|
84
|
+
string: ! '{"project":{"name":"p-foobar69"}}'
|
177
85
|
headers:
|
178
86
|
User-Agent:
|
179
|
-
- fog/1.
|
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
|
-
-
|
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-
|
194
|
-
-
|
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/
|
204
|
-
"enabled": true, "id": "
|
205
|
-
"name": "p-
|
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:
|
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
|
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.
|
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
|
-
-
|
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-
|
231
|
-
-
|
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:
|
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":"
|
161
|
+
string: ! '{"role":{"name":"baz69"}}'
|
250
162
|
headers:
|
251
163
|
User-Agent:
|
252
|
-
- fog/1.
|
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
|
-
-
|
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
|
-
-
|
274
|
-
|
275
|
-
|
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-
|
304
|
-
-
|
305
|
-
Content-Type:
|
306
|
-
- application/json
|
182
|
+
X-Openstack-Request-Id:
|
183
|
+
- req-d468ed8c-5fa0-4e29-b999-15740ba5597c
|
307
184
|
Content-Length:
|
308
|
-
- '
|
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:
|
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-
|
200
|
+
string: ! '{"user":{"name":"u-foobar69","email":"foobar@example.com","password":"s3cret!"}}'
|
358
201
|
headers:
|
359
202
|
User-Agent:
|
360
|
-
- fog/1.
|
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
|
-
-
|
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
|
-
-
|
382
|
-
|
383
|
-
|
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-
|
412
|
-
-
|
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/
|
422
|
-
"
|
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:
|
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-
|
239
|
+
string: ! '{"group":{"name":"g-foobar69","description":"Group of Foobar users"}}'
|
431
240
|
headers:
|
432
241
|
User-Agent:
|
433
|
-
- fog/1.
|
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
|
-
-
|
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-
|
448
|
-
-
|
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": "
|
459
|
-
"name": "g-
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
485
|
-
-
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
518
|
-
-
|
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/
|
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:
|
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&
|
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.
|
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
|
-
-
|
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-
|
554
|
-
-
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
590
|
-
-
|
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/
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
626
|
-
-
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
659
|
-
-
|
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/
|
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/
|
671
|
-
"enabled": true, "id": "
|
672
|
-
"name": "p-
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
698
|
-
-
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
731
|
-
-
|
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/
|
741
|
-
"previous": null, "next": null}, "roles": [{"id": "
|
742
|
-
"links": {"self": "http://devstack.openstack.stack:35357/v3/roles/
|
743
|
-
"name": "
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
769
|
-
-
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
802
|
-
-
|
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/
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
838
|
-
-
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
873
|
-
-
|
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/
|
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:
|
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&
|
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.
|
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
|
-
-
|
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-
|
909
|
-
-
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
945
|
-
-
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
978
|
-
-
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
1011
|
-
-
|
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/
|
1021
|
-
"previous": null, "next": null}, "roles": [{"id": "
|
1022
|
-
"links": {"self": "http://devstack.openstack.stack:35357/v3/roles/
|
1023
|
-
"name": "
|
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:
|
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&
|
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.
|
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
|
-
-
|
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-
|
1049
|
-
-
|
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": "
|
1059
|
-
"role": {"id": "
|
1060
|
-
"links": {"assignment": "http://devstack.openstack.stack:35357/v3/projects/
|
1061
|
-
"membership": "http://devstack.openstack.stack:35357/v3/groups/
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
1089
|
-
-
|
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/
|
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/
|
1101
|
-
"enabled": true, "id": "
|
1102
|
-
"name": "p-
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
1128
|
-
-
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
1161
|
-
-
|
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/
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
1197
|
-
-
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
1232
|
-
-
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
1265
|
-
-
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
1298
|
-
-
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
1331
|
-
-
|
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/
|
1341
|
-
"extra": {}, "enabled": false, "id": "
|
1342
|
-
"default", "name": "p-
|
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:
|
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/
|
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.
|
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
|
-
-
|
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-
|
1368
|
-
-
|
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:
|
1236
|
+
recorded_at: Tue, 23 Jun 2015 15:09:38 GMT
|
1378
1237
|
recorded_with: VCR 2.9.3
|