ProjectsAlertsListOptions
import type { ProjectsAlertsListOptions } from "https://googleapis.deno.dev/v1/monitoring:v3.ts";
Additional options for Monitoring#projectsAlertsList.
interface ProjectsAlertsListOptions {
filter?: string;
orderBy?: string;
pageSize?: number;
pageToken?: string;
}§Properties
§
filter?: string
[src]Optional. An alert is returned if there is a match on any fields belonging to the alert or its subfields.
§
orderBy?: string
[src]Optional. A comma-separated list of fields in Alert to use for sorting. The default sort direction is ascending. To specify descending order for a field, add a desc modifier. The following fields are supported: open_time close_timeFor example, close_time desc, open_time will return the alerts closed most recently, with ties broken in the order of older alerts listed first.If the field is not set, the results are sorted by open_time desc.