From c9c16dfa65c93968b635ec6a33b2ac101f07089a Mon Sep 17 00:00:00 2001 From: Anne Gentle Date: Mon, 22 Jun 2015 18:18:44 -0500 Subject: [PATCH] Updates Identity v3 endpoints list response JSON Change-Id: Ice0191717a5848747f19ca7c7f6e23620917afed Closes-bug:1467509 --- .../src/v3/samples/EndpointsListResponse.json | 46 +++++++++---------- 1 file changed, 21 insertions(+), 25 deletions(-) diff --git a/api-ref/src/wadls/identity-api/src/v3/samples/EndpointsListResponse.json b/api-ref/src/wadls/identity-api/src/v3/samples/EndpointsListResponse.json index 90d59fee7..1068ee94b 100644 --- a/api-ref/src/wadls/identity-api/src/v3/samples/EndpointsListResponse.json +++ b/api-ref/src/wadls/identity-api/src/v3/samples/EndpointsListResponse.json @@ -1,26 +1,22 @@ -[ - { - "enabled": true, - "id": "828384", - "interface": "public", - "links": { - "self": "http://identity:35357/v3/endpoints/828384" +{ + "endpoints": [ + { + "id": "828384", + "interface": "public", + "links": { + "self": "http://identity:35357/v3/endpoints/828384" + }, + "name": "the public volume endpoint", + "service_id": "686766" }, - "region": "RegionOne", - "region_id": "RegionOne", - "service_id": "686766", - "url": "http://identity:8776/v2/$(tenant_id)s" - }, - { - "enabled": true, - "id": "828384", - "interface": "internal", - "links": { - "self": "http://identity:35357/v3/endpoints/828384" - }, - "region": "RegionOne", - "region_id": "RegionOne", - "service_id": "686766", - "url": "http://identity:8776/v2/$(tenant_id)s" - } -] + { + "id": "828384", + "interface": "internal", + "links": { + "self": "http://identity:35357/v3/endpoints/828384" + }, + "name": "the internal volume endpoint", + "service_id": "686766" + } + ] +}