Fix yamllint errors in functest/api
[functest.git] / functest / api / swagger / creds.yaml
1 ---
2 Show credentials
3
4 This api offers the interface to show credentials.
5 The credentials dict will be returned.
6 ---
7 tags:
8     - Creds
9 definitions:
10     Credentials:
11         type: object
12         properties:
13             creds_name:
14                 $ref: '#/definitions/Name'
15     Name:
16         type: dict
17 responses:
18     200:
19         description: Show credentials
20         schema:
21             $ref: '#/definitions/Credentials'
22         examples:
23             "OS_AUTH_URL": "https://192.16.1.222:5000/v3"
24             "OS_AUTH_VERSION": "3"
25             "OS_CACERT": "/home/opnfv/functest/conf/os_cacert"
26             "OS_ENDPOINT_TYPE": "publicURL"
27             "OS_IDENTITY_API_VERSION": "3"
28             "OS_INTERFACE": "publicURL"
29             "OS_NO_CACHE": "1"
30             "OS_PASSWORD": "990232e0885da343ac805528522d"
31             "OS_PROJECT_DOMAIN_NAME": "Default"
32             "OS_PROJECT_NAME": "admin"
33             "OS_REGION_NAME": "RegionOne"
34             "OS_TENANT_NAME": "admin"
35             "OS_USERNAME": "admin"
36             "OS_USER_DOMAIN_NAME": "Default"