Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

QueryTimeSeriesResponse

import type { QueryTimeSeriesResponse } from "https://googleapis.deno.dev/v1/monitoring:v3.ts";

The QueryTimeSeries response. For information about the status of Monitoring Query Language (MQL), see the MQL deprecation notice (https://cloud.google.com/stackdriver/docs/deprecations/mql).

interface QueryTimeSeriesResponse {
nextPageToken?: string;
partialErrors?: Status[];
timeSeriesData?: TimeSeriesData[];
timeSeriesDescriptor?: TimeSeriesDescriptor;
}

§Properties

§
nextPageToken?: string
[src]

If there are more results than have been returned, then this field is set to a non-empty value. To see the additional results, use that value as page_token in the next call to this method.

§
partialErrors?: Status[]
[src]

Query execution errors that may have caused the time series data returned to be incomplete. The available data will be available in the response.

§
timeSeriesData?: TimeSeriesData[]
[src]

The time series data.

§
timeSeriesDescriptor?: TimeSeriesDescriptor
[src]

The descriptor for the time series data.