Skip to content
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 @@ -287,9 +287,25 @@
"workspaceResourceId": {
"description": "The Azure Monitor workspace ARM Resource ID. The resource ID should be in the following format: /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}",
"type": "string"
},
"includeChangeDetails": {
"$ref": "#/definitions/ChangeDetailsMode"
}
}
},
"ChangeDetailsMode": {
"description": "The mode of includeChangeDetails feature. The flag configures whether to include or exclude content of the change before and after values.",
"enum": [
"None",
"Include",
"Exclude"
],
"type": "string",
"x-ms-enum": {
"name": "ChangeDetailsMode",
"modelAsString": true
}
},
"NotificationsState": {
"description": "The state of notifications feature.",
"enum": [
Expand Down Expand Up @@ -376,6 +392,10 @@
},
"properties": {
"$ref": "#/definitions/ConfigurationProfileResourceProperties"
},
"location": {
"description": "The location where the resource is to be deployed.",
"type": "string"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
"subscriptionId": "c80fb759-c965-4c6a-9110-9b2b2d038882",
"profileName": "default",
"api-version": "2020-04-01-preview",
"resource": {}
"resource": {
"location": "centralus"
}
},
"responses": {
"200": {
Expand All @@ -13,11 +15,13 @@
"notifications": {
"azureMonitorWorkspaceProperties": {
"workspaceId": null,
"workspaceResourceId": null
"workspaceResourceId": null,
"includeChangeDetails": "None"
},
"activationState": "None"
}
},
"location": "centralus",
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/providers/Microsoft.ChangeAnalysis/profile/default",
"name": "default"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"resource": {
"identity": {
"type": "SystemAssigned"
}
},
"location": "centralus"
}
},
"responses": {
Expand All @@ -17,7 +18,8 @@
"notifications": {
"azureMonitorWorkspaceProperties": {
"workspaceId": null,
"workspaceResourceId": null
"workspaceResourceId": null,
"includeChangeDetails": "None"
},
"activationState": "None"
}
Expand All @@ -27,6 +29,7 @@
"tenantId": "BBBBBBBB-BBBB-BBBB-BBBB-BBBBBBBBBBBB",
"type": "SystemAssigned"
},
"location": "centralus",
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/providers/Microsoft.ChangeAnalysis/profile/default",
"name": "default"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"notifications": {
"azureMonitorWorkspaceProperties": {
"workspaceId": null,
"workspaceResourceId": null
"workspaceResourceId": null,
"includeChangeDetails": "None"
},
"activationState": "None"
}
Expand All @@ -22,6 +23,7 @@
"tenantId": "BBBBBBBB-BBBB-BBBB-BBBB-BBBBBBBBBBBB",
"type": "SystemAssigned"
},
"location": "centralus",
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/providers/Microsoft.ChangeAnalysis/profile/default",
"name": "default"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@
"notifications": {
"azureMonitorWorkspaceProperties": {
"workspaceId": "workspaceIdValue",
"workspaceResourceId": "workspace resource Id"
"workspaceResourceId": "workspace resource Id",
"includeChangeDetails": "None"
},
"activationState": "Enabled"
}
}
},
"location": "centralus"
}
},
"responses": {
Expand All @@ -23,12 +25,14 @@
"notifications": {
"azureMonitorWorkspaceProperties": {
"workspaceId": "workspaceIdValue",
"workspaceResourceId": "workspace resource Id"
"workspaceResourceId": "workspace resource Id",
"includeChangeDetails": "None"
},
"activationState": "Enabled"
}
}
},
"location": "centralus",
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/providers/Microsoft.ChangeAnalysis/profile/default",
"name": "default"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
},
"identity": {
"type": "SystemAssigned"
}
},
"location": "centralus"
}
},
"responses": {
Expand All @@ -26,7 +27,8 @@
"notifications": {
"azureMonitorWorkspaceProperties": {
"workspaceId": "workspaceIdValue",
"workspaceResourceId": "workspace resource Id"
"workspaceResourceId": "workspace resource Id",
"includeChangeDetails": "None"
},
"activationState": "Enabled"
}
Expand All @@ -36,6 +38,7 @@
"tenantId": "BBBBBBBB-BBBB-BBBB-BBBB-BBBBBBBBBBBB",
"type": "SystemAssigned"
},
"location": "centralus",
"id": "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/providers/Microsoft.ChangeAnalysis/profile/default",
"name": "default"
}
Expand Down