PowerCLI Reference

New-AlarmActionTrigger

Synopsis

This cmdlet creates a new action trigger for the specified alarm action.

Syntax

New-AlarmActionTrigger [-StartStatus] <InventoryItemStatus> [-EndStatus] <InventoryItemStatus> -AlarmAction <AlarmAction> [-Repeat] [-WhatIf] [-Confirm] [<CommonParameters>]

Related Commands

Online version
Get-AlarmAction
Get-AlarmActionTrigger
Get-AlarmDefinition
New-AlarmAction
Remove-AlarmAction
Remove-AlarmActionTrigger
Set-AlarmDefinition

Detailed Description

This cmdlet creates a new action trigger for the specified alarm action.

Parameters

NameTypeDescriptionRequired?Pipeline InputDefault Value
StartStatusInventoryItemStatusSpecifies the start status for the alarm action. The valid values are Green, Yellow, and Red.truefalse
EndStatusInventoryItemStatusSpecifies the end status for the alarm action. The valid values are Green, Yellow, and Red.truefalse
AlarmActionAlarmActionSpecifies the alarm action for which you want to create an action trigger.truetrue (ByValue)
ConfirmSwitchParameterIf the value is $true, indicates that the cmdlet asks for confirmation before running. If the value is $false, the cmdlet runs without asking for user confirmation.falsefalse
RepeatSwitchParameterIndicates whether you want the alarm action to repeat until the alarm is acknowledged.falsefalse
WhatIfSwitchParameterIndicates that the cmdlet is run only to display the changes that would be made and actually no objects are modified.falsefalse

Return Type

The newly created AlarmActionTrigger object

Notes

Examples

-------------- Example 1 --------------

Get-AlarmDefinition -Name "Alarm1" | Get-AlarmAction | New-AlarmActionTrigger -StartStatus 'Red' -EndStatus 'Yellow' -Repeat

Creates an action trigger for all actions for the specified alarm definition.


Copyright © VMware, Inc. All rights reserved.