summaryrefslogtreecommitdiffstats
path: root/azure/multicloud_azure/swagger/views/multivim.swagger.json
diff options
context:
space:
mode:
Diffstat (limited to 'azure/multicloud_azure/swagger/views/multivim.swagger.json')
-rw-r--r--azure/multicloud_azure/swagger/views/multivim.swagger.json51
1 files changed, 51 insertions, 0 deletions
diff --git a/azure/multicloud_azure/swagger/views/multivim.swagger.json b/azure/multicloud_azure/swagger/views/multivim.swagger.json
new file mode 100644
index 0000000..de3419f
--- /dev/null
+++ b/azure/multicloud_azure/swagger/views/multivim.swagger.json
@@ -0,0 +1,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"
+ }
+ }
+ }
+ }
+ }
+}