Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Container Instance - Update Fields For Easier to Understand Documentation #3241

Merged
merged 3 commits into from
Jun 14, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -318,10 +318,10 @@
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}/containers/{containerName}/logs": {
"get": {
"operationId": "ContainerLogs_List",
"operationId": "Container_ListLogs",
"x-ms-examples": {
"ContainerLogsList": {
"$ref": "./examples/ContainerLogsList.json"
"ContainerListLogs": {
"$ref": "./examples/ContainerListLogs.json"
}
},
"summary": "Get the logs for a specified container instance.",
Expand Down Expand Up @@ -365,14 +365,14 @@
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}/containers/{containerName}/exec": {
"post": {
"operationId": "StartContainer_LaunchExec",
"operationId": "Container_ExecuteCommand",
"x-ms-examples": {
"ContainerExecStart": {
"$ref": "./examples/ContainerExecStart.json"
"ContainerExec": {
"$ref": "./examples/ContainerExec.json"
}
},
"summary": "Starts the exec command for a specific container instance.",
"description": "Starts the exec command for a specified container instance in a specified resource group and container group.",
"summary": "Executes a command in a specific container instance.",
"description": "Executes a command for a specific container instance in a specified resource group and container group.",
"parameters": [
{
"$ref": "#/parameters/SubscriptionIdParameter"
Expand Down Expand Up @@ -1231,7 +1231,7 @@
}
},
"ContainerExecRequest": {
"description": "The start container exec request.",
"description": "The container exec request.",
"type": "object",
"properties": {
"command": {
Expand Down