Get-OMAlertSubType

This cmdlet retrieves alert subtypes from the specified vRealize Operations Manager server. The alert subtype helps you categorize the alerts by areas specific to vRealize Operations Manager, so that you can assign certain types of alerts to specific system administrators.

Syntax

[-AlertType  <OMAlertType[]>]
[-Name  <String[]>]
[-Server  <OMServer[]>]
[CommonParameters]

Parameters

Required Parameter Name Type Position Features Description
optional
AlertType
OMAlertType[] named Filters the alert subtypes by the type of the alert.
optional
Name
String[] named
  • wildcards
  • Filters the alert subtypes by name.
    optional
    Server
    OMServer[] named Specifies the vRealize Operations Manager server from which you want to retrieve alerts. The value can be the connection object returned by the Connect-OMServer cmdlet or the object's name, which can be the IP or DNS address of the server machine.

    -Id  <String[]>
    [-Server  <OMServer[]>]
    [CommonParameters]

    Parameters

    Required Parameter Name Type Position Features Description
    required
    Id
    String[] named Filters the alert subtypes by ID.
    optional
    Server
    OMServer[] named Specifies the vRealize Operations Manager server from which you want to retrieve alerts. The value can be the connection object returned by the Connect-OMServer cmdlet or the object's name, which can be the IP or DNS address of the server machine.

    Output

    VMware.VimAutomation.vROps.Types.V1.OMAlertSubtype

    Examples


    Example 1

    Get-OMAlertSubType

    Lists all available alert subtypes.

    Example 2

    Get-OMAlertSubType -Name 'Performance'

    Retrieves all alert subtypes named 'Performance'.

    Example 3

    $alertType = Get-OMAlertType -Name 'Network Alerts'
    Get-OMAlertSubType -AlertType $alertType

    Retrieves all applicable alert subtypes for an alert type.

    Related Commands

    Feedback

    Was this page helpful?