-
Notifications
You must be signed in to change notification settings - Fork 5.6k
stable 2020-11-20 workbooktemplates #13793
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
Merged
Merged
Changes from 15 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
184d85d
stable 2020-11-20 workbooktemplates
vutran01 d6da370
ref examples in readme
vutran01 b458d12
fix path
vutran01 34d3125
add swagger 2.0
vutran01 3c2c8b6
fix lintdiff failures
vutran01 e41cf1f
update name
vutran01 19565d7
Merge branch 'master' into vutran/workbooktemplates
kairu-ms fc73650
Update readme.python.md
kairu-ms 03a5bef
Update readme.md
kairu-ms f444d05
Update readme.md
kairu-ms d692a11
Update readme.python.md
kairu-ms c7d7d15
Update readme.python.md
kairu-ms 14f7246
update WorkbookError to WorkbookTemplateError
vutran01 06a751d
Merge branch 'master' into vutran/workbooktemplates
vutran01 add35e2
Merge branch 'vutran/workbooktemplates' of https://github.com/vutran0…
vutran01 376df90
Merge branch 'master' into vutran/workbooktemplates
kairu-ms fb2e744
Update readme.md
kairu-ms 036595d
add templateData examples
vutran01 8991cdd
Merge branch 'vutran/workbooktemplates' of https://github.com/vutran0…
vutran01 b9de983
Update specification/applicationinsights/resource-manager/Microsoft.I…
vutran01 4fa0cd6
Update specification/applicationinsights/resource-manager/Microsoft.I…
vutran01 f9c9fe5
updated errorfiledcontract name
vutran01 1f762ed
Merge branch 'vutran/workbooktemplates' of https://github.com/vutran0…
vutran01 dd05975
Merge branch 'master' into vutran/workbooktemplates
vutran01 e7eefa9
make prettier
vutran01 90f81e6
added templateData samples
vutran01 bff2e67
update to only workbooktemplates
vutran01 bf22747
rename package-2020-11-20 to package-2020-11-only
vutran01 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
76 changes: 76 additions & 0 deletions
76
...s/resource-manager/Microsoft.Insights/stable/2020-11-20/examples/WorkbookTemplateAdd.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,76 @@ | ||
| { | ||
| "parameters": { | ||
| "api-version": "2020-11-20", | ||
| "resourceGroupName": "my-resource-group", | ||
| "resourceName": "testtemplate2", | ||
| "subscriptionId": "subid", | ||
| "workbookTemplateProperties": { | ||
| "location": "west us", | ||
| "properties": { | ||
| "priority": 1, | ||
| "author": "Contoso", | ||
| "galleries": [ | ||
| { | ||
| "name": "Simple Template", | ||
| "category": "Failures", | ||
| "type": "tsg", | ||
| "resourceType": "microsoft.insights/components", | ||
| "order": 100 | ||
| } | ||
| ], | ||
| "templateData": {} | ||
| }, | ||
| "tags": null | ||
| } | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "name": "testtemplate2", | ||
| "location": "westeurope", | ||
| "tags": null, | ||
| "type": "microsoft.insights/workbooktemplates", | ||
| "id": "/subscriptions/50359d91-7b9d-4823-85af-eb298a61ba95/resourceGroups/testrg/providers/microsoft.insights/workbooktemplates/testtemplate2", | ||
| "properties": { | ||
| "priority": 1, | ||
| "author": "Contoso", | ||
| "templateData": {}, | ||
| "galleries": [ | ||
| { | ||
| "name": "Simple Template", | ||
| "category": "Failures", | ||
| "order": 100, | ||
| "type": "tsg", | ||
| "resourceType": "microsoft.insights/components" | ||
| } | ||
| ], | ||
| "localized": null | ||
| } | ||
| } | ||
| }, | ||
| "201": { | ||
| "body": { | ||
| "name": "testtemplate2", | ||
| "location": "westeurope", | ||
| "tags": null, | ||
| "type": "microsoft.insights/workbooktemplates", | ||
| "id": "/subscriptions/50359d91-7b9d-4823-85af-eb298a61ba95/resourceGroups/testrg/providers/microsoft.insights/workbooktemplates/testtemplate2", | ||
| "properties": { | ||
| "priority": 1, | ||
| "author": "Contoso", | ||
| "templateData": {}, | ||
| "galleries": [ | ||
| { | ||
| "name": "Simple Template", | ||
| "category": "Failures", | ||
| "order": 100, | ||
| "type": "tsg", | ||
| "resourceType": "microsoft.insights/components" | ||
| } | ||
| ], | ||
| "localized": null | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } | ||
12 changes: 12 additions & 0 deletions
12
...esource-manager/Microsoft.Insights/stable/2020-11-20/examples/WorkbookTemplateDelete.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "parameters": { | ||
| "api-version": "2020-11-20", | ||
| "subscriptionId": "subid", | ||
| "resourceGroupName": "my-resource-group", | ||
| "resourceName": "my-template-resource" | ||
| }, | ||
| "responses": { | ||
| "200": {}, | ||
| "204": {} | ||
| } | ||
| } |
33 changes: 33 additions & 0 deletions
33
...s/resource-manager/Microsoft.Insights/stable/2020-11-20/examples/WorkbookTemplateGet.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| { | ||
| "parameters": { | ||
| "api-version": "2020-11-20", | ||
| "subscriptionId": "6b643656-33eb-422f-aee8-3ac145d124af", | ||
| "resourceGroupName": "my-resource-group", | ||
| "resourceName": "my-resource-name" | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "name": "my-resource-name", | ||
| "type": "microsoft.insights/workbooktemplate", | ||
| "location": "westus", | ||
| "id": "/subscriptions/6b643656-33eb-422f-aee8-3ac145d124af/resourceGroups/my-resource-group/providers/microsoft.insights/workbooktemplates/my-resource-name", | ||
| "properties": { | ||
| "priority": 1, | ||
| "author": "Contoso", | ||
| "galleries": [ | ||
| { | ||
| "name": "Simple Template", | ||
| "category": "Failures", | ||
| "type": "tsg", | ||
| "resourceType": "microsoft.insights/components", | ||
| "order": 100 | ||
| } | ||
| ], | ||
| "templateData": {} | ||
| }, | ||
| "tags": null | ||
| } | ||
| } | ||
| } | ||
| } |
54 changes: 54 additions & 0 deletions
54
...esource-manager/Microsoft.Insights/stable/2020-11-20/examples/WorkbookTemplateUpdate.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| { | ||
| "parameters": { | ||
| "api-version": "2020-11-20", | ||
| "subscriptionId": "6b643656-33eb-422f-aee8-3ac145d124af", | ||
| "resourceGroupName": "my-resource-group", | ||
| "resourceName": "my-template-resource", | ||
| "workbookTemplateProperties": { | ||
| "name": "display-name-of-template", | ||
| "location": "west us", | ||
| "type": "microsoft.insights/workbooktemplates", | ||
| "properties": { | ||
| "priority": 1, | ||
| "author": "Contoso", | ||
| "galleries": [ | ||
| { | ||
| "name": "Simple Template", | ||
| "category": "Failures", | ||
| "type": "tsg", | ||
| "resourceType": "microsoft.insights/components", | ||
| "order": 100 | ||
| } | ||
| ], | ||
| "templateData": {} | ||
| }, | ||
| "tags": null | ||
| } | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "name": "testtemplate2", | ||
| "location": "westeurope", | ||
| "tags": null, | ||
| "type": "microsoft.insights/workbooktemplates", | ||
| "id": "/subscriptions/50359d91-7b9d-4823-85af-eb298a61ba95/resourceGroups/testrg/providers/microsoft.insights/workbooktemplates/testtemplate2", | ||
| "properties": { | ||
| "priority": 1, | ||
| "author": "Contoso", | ||
| "templateData": {}, | ||
| "galleries": [ | ||
| { | ||
| "name": "Simple Template", | ||
| "category": "Failures", | ||
| "order": 100, | ||
| "type": "tsg", | ||
| "resourceType": "microsoft.insights/components" | ||
| } | ||
| ], | ||
| "localized": null | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } |
55 changes: 55 additions & 0 deletions
55
...resource-manager/Microsoft.Insights/stable/2020-11-20/examples/WorkbookTemplatesList.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| { | ||
| "parameters": { | ||
| "api-version": "2020-11-20", | ||
| "subscriptionId": "6b643656-33eb-422f-aee8-3ac145d124af", | ||
| "resourceGroupName": "my-resource-group" | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": [ | ||
| { | ||
| "name": "my-resource-name", | ||
| "type": "microsoft.insights/workbooktemplate", | ||
| "location": "westus", | ||
| "id": "/subscriptions/6b643656-33eb-422f-aee8-3ac145d124af/resourceGroups/my-resource-group/providers/microsoft.insights/workbooktemplates/my-resource-name", | ||
| "properties": { | ||
| "priority": 1, | ||
| "author": "Contoso", | ||
| "galleries": [ | ||
| { | ||
| "name": "Simple Template", | ||
| "category": "Failures", | ||
| "type": "tsg", | ||
| "resourceType": "microsoft.insights/components", | ||
| "order": 100 | ||
| } | ||
| ], | ||
| "templateData": {} | ||
| }, | ||
| "tags": null | ||
| }, | ||
| { | ||
| "name": "my-resource-name2", | ||
| "type": "microsoft.insights/workbooktemplate", | ||
| "location": "westus", | ||
| "id": "/subscriptions/6b643656-33eb-422f-aee8-3ac145d124af/resourceGroups/my-resource-group/providers/microsoft.insights/workbooktemplates/my-resource-name2", | ||
| "properties": { | ||
| "priority": 1, | ||
| "author": "Contoso", | ||
| "galleries": [ | ||
| { | ||
| "name": "Simple Template 2", | ||
| "category": "Failures", | ||
| "type": "tsg", | ||
| "resourceType": "microsoft.insights/components", | ||
| "order": 100 | ||
| } | ||
| ], | ||
| "templateData": {} | ||
| }, | ||
| "tags": null | ||
| } | ||
| ] | ||
| } | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.