diff --git a/sdk/monitor/Microsoft.Azure.Management.Monitor/src/Generated/Models/MetricAlertAction.cs b/sdk/monitor/Microsoft.Azure.Management.Monitor/src/Generated/Models/MetricAlertAction.cs index 8341e8e002b0..b350094e1de4 100644 --- a/sdk/monitor/Microsoft.Azure.Management.Monitor/src/Generated/Models/MetricAlertAction.cs +++ b/sdk/monitor/Microsoft.Azure.Management.Monitor/src/Generated/Models/MetricAlertAction.cs @@ -33,12 +33,12 @@ public MetricAlertAction() /// /// the id of the action group to /// use. - /// The properties of a webhook + /// The properties of a webhook /// object. - public MetricAlertAction(string actionGroupId = default(string), IDictionary webhookProperties = default(IDictionary)) + public MetricAlertAction(string actionGroupId = default(string), IDictionary webHookProperties = default(IDictionary)) { ActionGroupId = actionGroupId; - WebhookProperties = webhookProperties; + WebHookProperties = webHookProperties; CustomInit(); } @@ -56,8 +56,8 @@ public MetricAlertAction() /// /// Gets or sets the properties of a webhook object. /// - [JsonProperty(PropertyName = "webhookProperties")] - public IDictionary WebhookProperties { get; set; } + [JsonProperty(PropertyName = "webHookProperties")] + public IDictionary WebHookProperties { get; set; } } }