-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Monitor] DataCollectionRules 2021-04-01 stable API version
- Loading branch information
Showing
20 changed files
with
891 additions
and
13 deletions.
There are no files selected for viewing
576 changes: 576 additions & 0 deletions
576
...or/resource-manager/Microsoft.Insights/stable/2021-04-01/dataCollectionEndpoints_API.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
This file contains 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
66 changes: 66 additions & 0 deletions
66
...-manager/Microsoft.Insights/stable/2021-04-01/examples/DataCollectionEndpointsCreate.json
This file contains 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,66 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "703362b3-f278-4e4b-9179-c76eaf41ffc2", | ||
"resourceGroupName": "myResourceGroup", | ||
"dataCollectionEndpointName": "myCollectionEndpoint", | ||
"api-version": "2021-04-01", | ||
"body": { | ||
"location": "eastus", | ||
"properties": { | ||
"networkAcls": { | ||
"publicNetworkAccess": "Enabled" | ||
} | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/703362b3-f278-4e4b-9179-c76eaf41ffc2/resourceGroups/myResourceGroup/providers/Microsoft.Insights/dataCollectionEndpoints/myCollectionEndpoint", | ||
"name": "myCollectionEndpoint", | ||
"type": "Microsoft.Insights/dataCollectionEndpoints", | ||
"location": "eastus", | ||
"tags": { | ||
"tag1": "A", | ||
"tag2": "B" | ||
}, | ||
"properties": { | ||
"configurationAccess": { | ||
"endpoint": "https://mycollectionendpoint-abcd.eastus-1.control.monitor.azure.com" | ||
}, | ||
"logsIngestion": { | ||
"endpoint": "https://mycollectionendpoint-abcd.eastus-1.ingest.monitor.azure.com" | ||
}, | ||
"networkAcls": { | ||
"publicNetworkAccess": "Enabled" | ||
} | ||
}, | ||
"etag": "070057da-0000-0000-0000-5ba70d6c0000" | ||
} | ||
}, | ||
"201": { | ||
"body": { | ||
"id": "/subscriptions/703362b3-f278-4e4b-9179-c76eaf41ffc2/resourceGroups/myResourceGroup/providers/Microsoft.Insights/dataCollectionEndpoints/myCollectionEndpoint", | ||
"name": "myCollectionEndpoint", | ||
"type": "Microsoft.Insights/dataCollectionEndpoints", | ||
"location": "eastus", | ||
"tags": { | ||
"tag1": "A", | ||
"tag2": "B" | ||
}, | ||
"properties": { | ||
"configurationAccess": { | ||
"endpoint": "https://mycollectionendpoint-abcd.eastus-1.control.monitor.azure.com" | ||
}, | ||
"logsIngestion": { | ||
"endpoint": "https://mycollectionendpoint-abcd.eastus-1.ingest.monitor.azure.com" | ||
}, | ||
"networkAcls": { | ||
"publicNetworkAccess": "Enabled" | ||
} | ||
}, | ||
"etag": "070057da-0000-0000-0000-5ba70d6c0000" | ||
} | ||
} | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
...-manager/Microsoft.Insights/stable/2021-04-01/examples/DataCollectionEndpointsDelete.json
This file contains 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": { | ||
"subscriptionId": "703362b3-f278-4e4b-9179-c76eaf41ffc2", | ||
"resourceGroupName": "myResourceGroup", | ||
"dataCollectionEndpointName": "myCollectionEndpoint", | ||
"api-version": "2021-04-01" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"204": {} | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
...rce-manager/Microsoft.Insights/stable/2021-04-01/examples/DataCollectionEndpointsGet.json
This file contains 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,34 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "703362b3-f278-4e4b-9179-c76eaf41ffc2", | ||
"resourceGroupName": "myResourceGroup", | ||
"dataCollectionEndpointName": "myCollectionEndpoint", | ||
"api-version": "2021-04-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/703362b3-f278-4e4b-9179-c76eaf41ffc2/resourceGroups/myResourceGroup/providers/Microsoft.Insights/dataCollectionEndpoints/myCollectionEndpoint", | ||
"name": "myCollectionEndpoint", | ||
"type": "Microsoft.Insights/dataCollectionEndpoints", | ||
"location": "eastus", | ||
"tags": { | ||
"tag1": "A", | ||
"tag2": "B" | ||
}, | ||
"properties": { | ||
"configurationAccess": { | ||
"endpoint": "https://mycollectionendpoint-abcd.eastus-1.control.monitor.azure.com" | ||
}, | ||
"logsIngestion": { | ||
"endpoint": "https://mycollectionendpoint-abcd.eastus-1.ingest.monitor.azure.com" | ||
}, | ||
"networkAcls": { | ||
"publicNetworkAccess": "Enabled" | ||
} | ||
}, | ||
"etag": "070057da-0000-0000-0000-5ba70d6c0000" | ||
} | ||
} | ||
} | ||
} |
60 changes: 60 additions & 0 deletions
60
...osoft.Insights/stable/2021-04-01/examples/DataCollectionEndpointsListByResourceGroup.json
This file contains 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,60 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "703362b3-f278-4e4b-9179-c76eaf41ffc2", | ||
"resourceGroupName": "myResourceGroup", | ||
"api-version": "2021-04-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/703362b3-f278-4e4b-9179-c76eaf41ffc2/resourceGroups/myResourceGroup/providers/Microsoft.Insights/dataCollectionEndpoints/myCollectionEndpoint", | ||
"name": "myCollectionEndpoint", | ||
"type": "Microsoft.Insights/dataCollectionEndpoints", | ||
"location": "eastus", | ||
"tags": { | ||
"tag1": "A", | ||
"tag2": "B" | ||
}, | ||
"properties": { | ||
"configurationAccess": { | ||
"endpoint": "https://mycollectionendpoint-abcd.eastus-1.control.monitor.azure.com" | ||
}, | ||
"logsIngestion": { | ||
"endpoint": "https://mycollectionendpoint-abcd.eastus-1.ingest.monitor.azure.com" | ||
}, | ||
"networkAcls": { | ||
"publicNetworkAccess": "Enabled" | ||
} | ||
}, | ||
"etag": "070057da-0000-0000-0000-5ba70d6c0000" | ||
}, | ||
{ | ||
"id": "/subscriptions/703362b3-f278-4e4b-9179-c76eaf41ffc2/resourceGroups/myResourceGroup/providers/Microsoft.Insights/dataCollectionEndpoints/herCollectionEndpoint", | ||
"name": "herCollectionEndpoint", | ||
"type": "Microsoft.Insights/dataCollectionEndpoints", | ||
"location": "westus", | ||
"tags": { | ||
"tag1": "A", | ||
"tag2": "B" | ||
}, | ||
"properties": { | ||
"configurationAccess": { | ||
"endpoint": "https://hercollectionendpoint-xywz.eastus-1.control.monitor.azure.com" | ||
}, | ||
"logsIngestion": { | ||
"endpoint": "https://hercollectionendpoint-xywz.eastus-1.ingest.monitor.azure.com" | ||
}, | ||
"networkAcls": { | ||
"publicNetworkAccess": "Disabled" | ||
} | ||
}, | ||
"etag": "070057da-0000-0000-0000-5ba70d6c0000" | ||
} | ||
], | ||
"nextLink": null | ||
} | ||
} | ||
} | ||
} |
59 changes: 59 additions & 0 deletions
59
...rosoft.Insights/stable/2021-04-01/examples/DataCollectionEndpointsListBySubscription.json
This file contains 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,59 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "703362b3-f278-4e4b-9179-c76eaf41ffc2", | ||
"api-version": "2021-04-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/703362b3-f278-4e4b-9179-c76eaf41ffc2/resourceGroups/myResourceGroup/providers/Microsoft.Insights/dataCollectionEndpoints/myCollectionEndpoint", | ||
"name": "myCollectionEndpoint", | ||
"type": "Microsoft.Insights/dataCollectionEndpoints", | ||
"location": "eastus", | ||
"tags": { | ||
"tag1": "A", | ||
"tag2": "B" | ||
}, | ||
"properties": { | ||
"configurationAccess": { | ||
"endpoint": "https://mycollectionendpoint-abcd.eastus-1.control.monitor.azure.com" | ||
}, | ||
"logsIngestion": { | ||
"endpoint": "https://mycollectionendpoint-abcd.eastus-1.ingest.monitor.azure.com" | ||
}, | ||
"networkAcls": { | ||
"publicNetworkAccess": "Enabled" | ||
} | ||
}, | ||
"etag": "070057da-0000-0000-0000-5ba70d6c0000" | ||
}, | ||
{ | ||
"id": "/subscriptions/703362b3-f278-4e4b-9179-c76eaf41ffc2/resourceGroups/herResourceGroup/providers/Microsoft.Insights/dataCollectionEndpoints/herCollectionEndpoint", | ||
"name": "herCollectionEndpoint", | ||
"type": "Microsoft.Insights/dataCollectionEndpoints", | ||
"location": "westus", | ||
"tags": { | ||
"tag1": "A", | ||
"tag2": "B" | ||
}, | ||
"properties": { | ||
"configurationAccess": { | ||
"endpoint": "https://hercollectionendpoint-xywz.eastus-1.control.monitor.azure.com" | ||
}, | ||
"logsIngestion": { | ||
"endpoint": "https://hercollectionendpoint-xywz.eastus-1.ingest.monitor.azure.com" | ||
}, | ||
"networkAcls": { | ||
"publicNetworkAccess": "Disabled" | ||
} | ||
}, | ||
"etag": "070057da-0000-0000-0000-5ba70d6c0000" | ||
} | ||
], | ||
"nextLink": null | ||
} | ||
} | ||
} | ||
} |
42 changes: 42 additions & 0 deletions
42
...-manager/Microsoft.Insights/stable/2021-04-01/examples/DataCollectionEndpointsUpdate.json
This file contains 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,42 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "703362b3-f278-4e4b-9179-c76eaf41ffc2", | ||
"resourceGroupName": "myResourceGroup", | ||
"dataCollectionEndpointName": "myCollectionEndpoint", | ||
"api-version": "2021-04-01", | ||
"body": { | ||
"tags": { | ||
"tag1": "A", | ||
"tag2": "B", | ||
"tag3": "C" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/703362b3-f278-4e4b-9179-c76eaf41ffc2/resourceGroups/myResourceGroup/providers/Microsoft.Insights/dataCollectionEndpoints/myCollectionEndpoint", | ||
"name": "myCollectionEndpoint", | ||
"type": "Microsoft.Insights/dataCollectionEndpoints", | ||
"location": "eastus", | ||
"tags": { | ||
"tag1": "A", | ||
"tag2": "B", | ||
"tag3": "C" | ||
}, | ||
"properties": { | ||
"configurationAccess": { | ||
"endpoint": "https://mycollectionendpoint-abcd.eastus-1.control.monitor.azure.com" | ||
}, | ||
"logsIngestion": { | ||
"endpoint": "https://mycollectionendpoint-abcd.eastus-1.ingest.monitor.azure.com" | ||
}, | ||
"networkAcls": { | ||
"publicNetworkAccess": "Enabled" | ||
} | ||
}, | ||
"etag": "070057da-0000-0000-0000-5ba70d6c0000" | ||
} | ||
} | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
2 changes: 1 addition & 1 deletion
2
...oft.Insights/stable/2021-04-01/examples/DataCollectionRuleAssociationsListByResource.json
This file contains 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
This file contains 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
Oops, something went wrong.