Skip to content

Commit

Permalink
return a resource from patch (Azure#15754)
Browse files Browse the repository at this point in the history
Co-authored-by: Geoffrey Troyer <geoffreymtroyer@gmail.com>
  • Loading branch information
getroyer and geoffreymtroyer authored Aug 25, 2021
1 parent e1eca38 commit f4aeebb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,18 @@
}
},
"responses": {
"200": {},
"200": {
"body": {
"id": "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRP/providers/Microsoft.Notebooks/NotebookProxies/testResource",
"name": "testResource",
"type": "Microsoft.Notebooks/NotebookProxies",
"properties": {
"resourceId": "acc07b62291e4a4a800f71ff252e0654",
"hostname": "Azure Notebooks",
"publicNetworkAccess": "Enabled"
}
}
},
"404": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,10 @@
],
"responses": {
"200": {
"description": "OK"
"description": "OK",
"schema": {
"$ref": "#/definitions/NotebookProxy"
}
},
"404": {
"description": "NotFound"
Expand Down

0 comments on commit f4aeebb

Please sign in to comment.