summaryrefslogtreecommitdiffstats
path: root/azure/multicloud_azure/swagger/views/multivim.swagger.json
blob: de3419f067b6b55b8b9468ea23667979f85c0238 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
    "swagger": "2.0",
    "info": {
        "version": "1.0.0",
        "title": "MultiVIM Service rest API"
    },
    "basePath": "/api/multicloud-azure/v0/",
    "tags": [
        {
            "name": "MultiVIM Azure services"
        }
    ],
    "paths": {
        "/{vimid}/registry": {
            "post": {
                "tags": [
                    "vim registration"
                ],
                "summary": "vim registration API",
                "description": "vim registration API",
                "operationId": "vim_registration",
                "consumes": [
                    "application/json"
                ],
                "produces": [
                    "application/json"
                ],
                "parameters": [
                    {
                        "name": "vimid",
                        "in": "path",
                        "description": "vim instance id",
                        "required": true,
                        "type": "string"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "successful operation"
                    },
                    "404": {
                        "description": "the vim id is wrong"
                    },
                    "500": {
                        "description": "error occured during the process"
                    }
                }
            }
        }
    }
}