Get-LXCAEventExclusionFilter
This cmdlet retrieves information about one or more event exclusion filters.
Note
You cannot pipe objects to this cmdlet.
Syntax
Get-LXCAEventExclusionFilter [-Connection LXCAConnection]
[-FilterID String]
[CommonParameter]
Get-LXCAEventExclusionFilter [-Connection LXCAConnection]
[-SourceID String]
[CommonParameter]
Parameters
- -Connection LXCAConnection
- Specifies the connection to the Lenovo XClarity Administrator server. If no connection is specified, the result from the last Connect-LXCA cmdlet is used.
- -FilterID String
- Specifies the ID of the exclusion filter. If no ID is specified, the cmdlet returns all exclusion filters.
- -SourceID String
- Specifies the UUID of the target device. If no UUID is specified, the cmdlet returns all exclusion filters.
- CommonParameters
- This cmdlet supports the following common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -WarningAction, -WarningVariable, -OutBuffer, -PipelineVariable, -OutVariable. For detailed information about each common parameter, see the Microsoft PowerShell Common Parameters webpage.
Results
This cmdlet returns one or more EventExclusionFilter objects.
Examples
The following example retrieves all event exclusion filters in place for a specified server:
$cred = Get-Credential
Connect-LXCA -Host 192.0.2.0 -Credential $cred
Get-LXCAEventExclusionFilter -SourceID AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
Disconnect-LXCA
Give documentation feedback