Skip to content

Commit

Permalink
[Merge-on-date: (TBA)] Add container log APIs to WebApps.json (Azure#…
Browse files Browse the repository at this point in the history
…1681)

* Add container log APIs to WebApps.json

* Update signatures of container logging APIs

* Change schema types for container logging APIs

* Fix container log APIs
  • Loading branch information
michimune authored and fearthecowboy committed Dec 8, 2017
1 parent e3b273a commit 58b5052
Showing 1 changed file with 15 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1728,6 +1728,9 @@
"summary": "Gets the last lines of docker logs for the given site",
"description": "Gets the last lines of docker logs for the given site",
"operationId": "WebApps_GetWebSiteContainerLogs",
"produces": [
"application/octet-stream"
],
"parameters": [
{
"$ref": "#/parameters/resourceGroupNameParameter"
Expand Down Expand Up @@ -1766,7 +1769,10 @@
],
"summary": "Gets the ZIP archived docker log files for the given site",
"description": "Gets the ZIP archived docker log files for the given site",
"operationId": "WebApps_GetContainerLogsZip",
"operationId": "WebApps_GetWebSiteContainerLogsZip",
"produces": [
"application/zip"
],
"parameters": [
{
"$ref": "#/parameters/resourceGroupNameParameter"
Expand Down Expand Up @@ -7621,6 +7627,9 @@
"summary": "Gets the last lines of docker logs for the given site",
"description": "Gets the last lines of docker logs for the given site",
"operationId": "WebApps_GetWebSiteContainerLogsSlot",
"produces": [
"application/octet-stream"
],
"parameters": [
{
"$ref": "#/parameters/resourceGroupNameParameter"
Expand Down Expand Up @@ -7666,7 +7675,10 @@
],
"summary": "Gets the ZIP archived docker log files for the given site",
"description": "Gets the ZIP archived docker log files for the given site",
"operationId": "WebApps_GetContainerLogsZipSlot",
"operationId": "WebApps_GetWebSiteContainerLogsZipSlot",
"produces": [
"application/zip"
],
"parameters": [
{
"$ref": "#/parameters/resourceGroupNameParameter"
Expand Down Expand Up @@ -18339,4 +18351,4 @@
]
}
]
}
}

0 comments on commit 58b5052

Please sign in to comment.