@@ -15,67 +15,65 @@ Creates an new action group receiver.
15
15
16
16
### NewEmailReceiver (Default)
17
17
```
18
- New-AzActionGroupReceiver -Name <String> [-UseCommonAlertSchema <Boolean> ] [-EmailReceiver]
19
- -EmailAddress <String> [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
18
+ New-AzActionGroupReceiver -Name <String> [-UseCommonAlertSchema] [-EmailReceiver] -EmailAddress <String>
19
+ [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
20
20
```
21
21
22
22
### NewSmsReceiver
23
23
```
24
- New-AzActionGroupReceiver -Name <String> [-UseCommonAlertSchema <Boolean> ] [-SmsReceiver]
25
- [-CountryCode <String>] -PhoneNumber <String> [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
24
+ New-AzActionGroupReceiver -Name <String> [-UseCommonAlertSchema] [-SmsReceiver] [-CountryCode <String> ]
25
+ -PhoneNumber <String> [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
26
26
```
27
27
28
28
### NewWebhookReceiver
29
29
```
30
- New-AzActionGroupReceiver -Name <String> [-UseCommonAlertSchema <Boolean> ] [-WebhookReceiver]
31
- -ServiceUri <String> [-UseAadAuth <Boolean >] [-ObjectId <String>] [-IdentifierUri <String>]
32
- [-TenantId <String>] [- DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
30
+ New-AzActionGroupReceiver -Name <String> [-UseCommonAlertSchema] [-WebhookReceiver] -ServiceUri <String>
31
+ [-UseAadAuth] [-ObjectId <String >] [-IdentifierUri <String>] [-TenantId <String>]
32
+ [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
33
33
```
34
34
35
35
### NewItsmReceiver
36
36
```
37
- New-AzActionGroupReceiver -Name <String> [-UseCommonAlertSchema <Boolean> ] [-ItsmReceiver]
38
- -WorkspaceId <String> - ConnectionId <String> -TicketConfiguration <String> -Region <String>
37
+ New-AzActionGroupReceiver -Name <String> [-UseCommonAlertSchema] [-ItsmReceiver] -WorkspaceId <String>
38
+ -ConnectionId <String> -TicketConfiguration <String> -Region <String>
39
39
[-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
40
40
```
41
41
42
42
### NewVoiceReceiver
43
43
```
44
- New-AzActionGroupReceiver -Name <String> [-UseCommonAlertSchema <Boolean>] [-VoiceReceiver]
45
- [-VoiceCountryCode <String>] -VoicePhoneNumber <String> [-DefaultProfile <IAzureContextContainer>]
46
- [<CommonParameters>]
44
+ New-AzActionGroupReceiver -Name <String> [-UseCommonAlertSchema] [-VoiceReceiver] [-VoiceCountryCode <String>]
45
+ -VoicePhoneNumber <String> [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
47
46
```
48
47
49
48
### NewArmRoleReceiver
50
49
```
51
- New-AzActionGroupReceiver -Name <String> [-UseCommonAlertSchema <Boolean> ] [-ArmRoleReceiver] -RoleId <String>
50
+ New-AzActionGroupReceiver -Name <String> [-UseCommonAlertSchema] [-ArmRoleReceiver] -RoleId <String>
52
51
[-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
53
52
```
54
53
55
54
### NewAzureFunctionReceiver
56
55
```
57
- New-AzActionGroupReceiver -Name <String> [-UseCommonAlertSchema <Boolean> ] [-AzureFunctionReceiver]
56
+ New-AzActionGroupReceiver -Name <String> [-UseCommonAlertSchema] [-AzureFunctionReceiver]
58
57
-FunctionAppResourceId <String> -HttpTriggerUrl <String> -FunctionName <String>
59
58
[-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
60
59
```
61
60
62
61
### NewLogicAppReceiver
63
62
```
64
- New-AzActionGroupReceiver -Name <String> [-UseCommonAlertSchema <Boolean> ] [-LogicAppReceiver]
65
- -ResourceId <String> - CallbackUrl <String> [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
63
+ New-AzActionGroupReceiver -Name <String> [-UseCommonAlertSchema] [-LogicAppReceiver] -ResourceId <String>
64
+ -CallbackUrl <String> [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
66
65
```
67
66
68
67
### NewAutomationRunbookReceiver
69
68
```
70
- New-AzActionGroupReceiver -Name <String> [-UseCommonAlertSchema <Boolean>] [-AutomationRunbookReceiver]
71
- -AutomationAccountId <String> -RunbookName <String> [-IsGlobalRunbook <Boolean>]
72
- -AutomationRunbookServiceUri <String> -WebhookResourceId <String> [-DefaultProfile <IAzureContextContainer>]
73
- [<CommonParameters>]
69
+ New-AzActionGroupReceiver -Name <String> [-UseCommonAlertSchema] [-AutomationRunbookReceiver]
70
+ -AutomationAccountId <String> -RunbookName <String> [-IsGlobalRunbook] -AutomationRunbookServiceUri <String>
71
+ -WebhookResourceId <String> [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
74
72
```
75
73
76
74
### NewAzureAppPushReceiver
77
75
```
78
- New-AzActionGroupReceiver -Name <String> [-UseCommonAlertSchema <Boolean> ] [-AzureAppPushReceiver]
76
+ New-AzActionGroupReceiver -Name <String> [-UseCommonAlertSchema] [-AzureAppPushReceiver]
79
77
-AzureAppPushEmailAddress <String> [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
80
78
```
81
79
@@ -366,7 +364,7 @@ Accept wildcard characters: False
366
364
indicating whether this instance is global runbook
367
365
368
366
` ` ` yaml
369
- Type : System.Boolean
367
+ Type : System.Management.Automation.SwitchParameter
370
368
Parameter Sets : NewAutomationRunbookReceiver
371
369
Aliases :
372
370
@@ -576,7 +574,7 @@ Accept wildcard characters: False
576
574
the flag to use add auth
577
575
578
576
` ` ` yaml
579
- Type : System.Boolean
577
+ Type : System.Management.Automation.SwitchParameter
580
578
Parameter Sets : NewWebhookReceiver
581
579
Aliases :
582
580
@@ -591,7 +589,7 @@ Accept wildcard characters: False
591
589
The flag whether to use common alert schema . This value will be neglectedfor SMS, Azure App push , ITSM and Voice recievers.
592
590
593
591
` ` ` yaml
594
- Type : System.Boolean
592
+ Type : System.Management.Automation.SwitchParameter
595
593
Parameter Sets : (All)
596
594
Aliases :
597
595
0 commit comments