X-Git-Url: https://gerrit.onap.org/r/gitweb?p=multicloud%2Fframework.git;a=blobdiff_plain;f=docs%2FMultiCloud-APIv1-Specification.rst;fp=docs%2FMultiCloud-APIv1-Specification.rst;h=4a9f78e7f57de850a9004df7be70df4987241fdd;hp=dc5c551a382ec25b158b56feabd5a6e77b97191b;hb=cd65ac58bf09b45144f6de2709279a549da4cb4a;hpb=6eefba51d9709d9b39c61bd02b46d83b6be40897 diff --git a/docs/MultiCloud-APIv1-Specification.rst b/docs/MultiCloud-APIv1-Specification.rst index dc5c551..4a9f78e 100644 --- a/docs/MultiCloud-APIv1-Specification.rst +++ b/docs/MultiCloud-APIv1-Specification.rst @@ -2544,3 +2544,103 @@ NA 404: Not Found 500: Internal Server Error + + +15. **Proxied OpenStack APIs** +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +15.1. **Tokens** +------------------------- + ++---------------------+----------------------------------------------------------------------------------------------+ +| **IF Definition** | **Description** | ++=====================+==============================================================================================+ +| URI | http://msb.onap.org:80/api/multicloud/v1/{cloud-owner}/{cloud-region-id}/identity/v3/auth/tokens| ++---------------------+----------------------------------------------------------------------------------------------+ +| Operation | POST | ++---------------------+----------------------------------------------------------------------------------------------+ +| Direction | NSLCM-> MULTICLOUD | ++---------------------+----------------------------------------------------------------------------------------------+ + +15.1.1. **Request** +>>>>>>>>>>>>>>>>>>> + ++-----------------+-----------------+-------------------+---------------+-----------------------+ +| **Parameter** | **Qualifier** | **Cardinality** | **Content** | **Description** | ++=================+=================+===================+===============+=======================+ +| auth | O | 1 | Object | Same as OpenStack Identity Tokens API | ++-----------------+-----------------+-------------------+---------------+-----------------------+ + +:: + + { + + } + +15.1.2. **Response** +>>>>>>>>>>>>>>>>>>>> + + ++-----------------+-----------------+-------------------+---------------------+--------------------------------------------------------------+ +| **Parameter** | **Qualifier** | **Cardinality** | **Content** | **Description** | ++=================+=================+===================+=====================+==============================================================+ +| X-Subject-Token | M | 1 | String | The authentication token in Header | ++-----------------+-----------------+-------------------+---------------------+--------------------------------------------------------------+ +| token | O | 1 | Object | Token response, the same as OpenStack Identity Tokens API | ++-----------------+-----------------+-------------------+---------------------+--------------------------------------------------------------+ + +201: Created + +401: Unauthorized + +403: Forbidden + +500: failed + + +:: + + Header: + X-Subject-Token: a33f3b209e9b471a97fbeab8324a9a45 + + Body: + + { + "token" : { + "user" : { + "domain" : { + "id" : "default", + "name" : "Default" + }, + "id" : "9efb043c7629497a8028d7325ca1afb0", + "name" : "admin" + }, + "catalog" : [ + { + "type" : "network", + "endpoints" : [ + { + "interface" : "public", + "id" : "39583c1508ad4b71b380570a745ee10a", + "url" : "http://172.16.77.10:80/api/multicloud-titaniumcloud/v1/CloudOwner/RegionOne/network", + "region_id" : "RegionOne", + "region" : "RegionOne" + } + ], + "name" : "neutron", + "id" : "99aefcc82a9246f98f8c281e61ffc754" + }, + ... + ] + "project" : { + "name" : "admin", + "id" : "fcca3cc49d5e42caae15459e27103efc", + "domain" : { + "id" : "default", + "name" : "Default" + } + }, + "is_domain" : false, + "expires_at" : "2017-09-11T03:52:29.000000Z" + } + }