你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-AzAlertRuleWebhook
创建警报规则 Webhook。
语法
New-AzAlertRuleWebhook
[-ServiceUri] <String>
[[-Property] <Hashtable>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
New-AzAlertRuleWebhook cmdlet 创建警报规则 Webhook。
示例
示例 1:创建警报规则 Webhook
PS C:\>New-AzAlertRuleWebhook -ServiceUri "http://contoso.com"
此命令通过仅指定服务 URI 来创建警报规则 Webhook。
示例 2:使用一个属性创建 Webhook
PS C:\>$Actual = New-AzAlertRuleWebhook -ServiceUri "http://contoso.com" -Property @{prop1 = 'value1'}
此命令为具有一个属性的 Contoso.com 创建警报规则 Webhook,然后将其存储在$Actual变量中。
参数
-DefaultProfile
用于与 azure 通信的凭据、帐户、租户和订阅
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Property
以 @(property1 = 'value1',.... 格式指定属性列表)。
类型: | Hashtable |
Position: | 1 |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-ServiceUri
指定服务 URI。
类型: | String |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |