Interface SystemAlerts
- All Known Implementing Classes:
SystemAlertsImpl
public interface SystemAlerts
Client interface for querying IBX SmartView system alerts. Provides methods to search
for alerts generated by monitored assets in Equinix data centers using either query
parameters or a structured filter body.
-
Method Summary
Modifier and TypeMethodDescriptionSearches for system alerts matching the specified filter criteria.searchPost(Object filterBody) Searches for system alerts using a structured filter body submitted via POST.
-
Method Details
-
search
PaginatedList<SystemAlert> search(String status, String assetClassification, String edgeCollectedOn, int offset, int limit) Searches for system alerts matching the specified filter criteria.- Parameters:
status- the alert status to filter byassetClassification- the asset classification to filter byedgeCollectedOn- the edge collection date to filter byoffset- the zero-based offset for paginationlimit- the maximum number of results to return- Returns:
- a paginated list of matching system alerts
-
searchPost
Searches for system alerts using a structured filter body submitted via POST.- Parameters:
filterBody- the filter criteria as a request body object- Returns:
- a paginated list of matching system alerts
-