Skip to content

Commit

Permalink
Add return types to kudu key api's
Browse files Browse the repository at this point in the history
  • Loading branch information
ejizba committed Dec 5, 2017
1 parent 4da7342 commit 3c691cd
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 4 deletions.
2 changes: 1 addition & 1 deletion kudu/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-azurekudu",
"author": "Microsoft Corporation",
"version": "0.1.3",
"version": "0.1.4",
"description": "Client used to interact with Kudu.",
"tags": [
"azure",
Expand Down
25 changes: 22 additions & 3 deletions kudu/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,7 @@
"200": {
"description": "OK",
"schema": {
"type": "object"
"$ref": "#/definitions/FunctionSecrets"
}
}
}
Expand All @@ -1142,7 +1142,7 @@
"200": {
"description": "OK",
"schema": {
"type": "object"
"$ref": "#/definitions/MasterKey"
}
}
}
Expand All @@ -1163,7 +1163,7 @@
"200": {
"description": "OK",
"schema": {
"type": "object"
"type": "string"
}
}
}
Expand Down Expand Up @@ -7090,6 +7090,25 @@
}
}
},
"FunctionSecrets": {
"type": "object",
"properties": {
"key": {
"type": "string"
},
"trigger_url": {
"type": "string"
}
}
},
"MasterKey": {
"type": "object",
"properties": {
"masterKey": {
"type": "string"
}
}
},
"RepositoryInfo": {
"type": "object",
"properties": {
Expand Down

0 comments on commit 3c691cd

Please sign in to comment.