Class ActivityLogAlertActionGroup
- java.lang.Object
-
- com.microsoft.azure.management.monitor.ActivityLogAlertActionGroup
-
public class ActivityLogAlertActionGroup extends Object
A pointer to an Azure Action Group.
-
-
Constructor Summary
Constructors Constructor Description ActivityLogAlertActionGroup()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringactionGroupId()Get the resourceId of the action group.Map<String,String>webhookProperties()Get the dictionary of custom properties to include with the post operation.ActivityLogAlertActionGroupwithActionGroupId(String actionGroupId)Set the resourceId of the action group.ActivityLogAlertActionGroupwithWebhookProperties(Map<String,String> webhookProperties)Set the dictionary of custom properties to include with the post operation.
-
-
-
Method Detail
-
actionGroupId
public String actionGroupId()
Get the resourceId of the action group. This cannot be null or empty.- Returns:
- the actionGroupId value
-
withActionGroupId
public ActivityLogAlertActionGroup withActionGroupId(String actionGroupId)
Set the resourceId of the action group. This cannot be null or empty.- Parameters:
actionGroupId- the actionGroupId value to set- Returns:
- the ActivityLogAlertActionGroup object itself.
-
webhookProperties
public Map<String,String> webhookProperties()
Get the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload.- Returns:
- the webhookProperties value
-
withWebhookProperties
public ActivityLogAlertActionGroup withWebhookProperties(Map<String,String> webhookProperties)
Set the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload.- Parameters:
webhookProperties- the webhookProperties value to set- Returns:
- the ActivityLogAlertActionGroup object itself.
-
-