Class ActivityLogAlertActionGroup
A pointer to an Azure Action Group.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Monitor.dll
Syntax
public class ActivityLogAlertActionGroup
Constructors
ActivityLogAlertActionGroup()
Initializes a new instance of the ActivityLogAlertActionGroup class.
Declaration
public ActivityLogAlertActionGroup ();
ActivityLogAlertActionGroup(String, IDictionary<String,String>)
Initializes a new instance of the ActivityLogAlertActionGroup class.
Declaration
public ActivityLogAlertActionGroup (string actionGroupId, System.Collections.Generic.IDictionary<string,string> webhookProperties = null);
Parameters
|
String
actionGroupId
The resourceId of the action group. This cannot be null or empty. |
|
IDictionary<String,String>
webhookProperties
the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload. |
Properties
ActionGroupId
Gets or sets the resourceId of the action group. This cannot be null or empty.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="actionGroupId")]
public string ActionGroupId { get; set; }
Property Value
|
String
|
WebhookProperties
Gets or sets the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="webhookProperties")]
public System.Collections.Generic.IDictionary<string,string> WebhookProperties { get; set; }
Property Value
|
IDictionary<String,String>
|
Methods
Validate()
Validate the object.
Declaration
public virtual void Validate ();
Exceptions
|
ValidationException
Thrown if validation fails |