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

Fix incorrect url and clarify subscription-level disable (unsure why this came with so many commits) #3886

Merged
merged 33 commits into from
Sep 13, 2018
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
d9da05e
add serial console reference
asinn826 Jul 17, 2018
f6886e6
update version
asinn826 Jul 25, 2018
aa4b2ca
Add readme.md
asinn826 Jul 27, 2018
fb33457
update readme.md
asinn826 Jul 29, 2018
cb35540
add config to readme
asinn826 Jul 29, 2018
42e08bc
update default parameter
asinn826 Jul 30, 2018
7e417b0
fix json
asinn826 Jul 30, 2018
2639409
fix camelcase error
asinn826 Jul 31, 2018
7f302d1
add x-ms-examples
asinn826 Jul 31, 2018
8f30592
add renamed DisableConsoleExample.json
asinn826 Jul 31, 2018
88b7d7d
fix json
asinn826 Jul 31, 2018
3b17d69
add operations, address github comments
asinn826 Aug 2, 2018
9a03d2d
update operations path spec
asinn826 Aug 4, 2018
d9d5339
add more examples, some minor changes
asinn826 Aug 6, 2018
5a83346
Merge branch 'master' into master
asinn826 Aug 6, 2018
abab530
update x-ms-parameter-location
asinn826 Aug 6, 2018
6247c3a
Merge branch 'master' of https://github.com/asinn826/azure-rest-api-s…
asinn826 Aug 6, 2018
fd9b01a
trivial modification to error message to kickstart a new build process
asinn826 Aug 7, 2018
3f1e833
example updates
asinn826 Aug 8, 2018
3bb0482
update example again
asinn826 Aug 8, 2018
d5f34af
update api version
asinn826 Aug 9, 2018
814350e
modify api version reference
asinn826 Aug 9, 2018
259ba89
one more api version reference
asinn826 Aug 9, 2018
502fd90
(hopefully) final api version reference update
asinn826 Aug 9, 2018
7e88b03
update examples and codeowners
asinn826 Aug 10, 2018
d58293d
Merge branch 'master' into master
asinn826 Aug 10, 2018
96b2219
trivial change to kickstart build again
asinn826 Aug 10, 2018
22f537f
add python
asinn826 Aug 11, 2018
50a3e14
trivial change to kickstart build again
asinn826 Aug 11, 2018
2c3686d
Update CODEOWNERS
sergey-shandar Aug 13, 2018
90ad551
clarify the subscription-level disable
asinn826 Sep 12, 2018
ddf58c3
fix incorrect url
asinn826 Sep 12, 2018
ce04539
Merge branch 'master' into master
asinn826 Sep 12, 2018
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 @@ -112,13 +112,13 @@
}
}
},
"/subscriptions/{subscriptionId}/providers/Microsoft.SerialConsole/providers/consoleServices/{default}/enableConsole": {
"/subscriptions/{subscriptionId}/providers/Microsoft.SerialConsole/consoleServices/{default}/enableConsole": {
"post": {
"tags": [
"EnableConsole"
],
"operationId": "Console_EnableConsole",
"description": "Enables Serial Console for a VM",
"description": "Enables Serial Console for a subscription",
"parameters": [
{
"$ref": "#/parameters/ApiVersionParameter"
Expand Down Expand Up @@ -154,13 +154,13 @@
}
}
},
"/subscriptions/{subscriptionId}/providers/Microsoft.SerialConsole/providers/consoleServices/{default}/disableConsole": {
"/subscriptions/{subscriptionId}/providers/Microsoft.SerialConsole/consoleServices/{default}/disableConsole": {
"post": {
"tags": [
"DisableConsole"
],
"operationId": "Console_DisableConsole",
"description": "Disables Serial Console for a VM",
"description": "Disables Serial Console for a subscription",
"parameters": [
{
"$ref": "#/parameters/ApiVersionParameter"
Expand Down