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

ProjectsLocationsJobsMessagesListOptions

import type { ProjectsLocationsJobsMessagesListOptions } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

Additional options for Dataflow#projectsLocationsJobsMessagesList.

interface ProjectsLocationsJobsMessagesListOptions {
endTime?: Date;
minimumImportance?:
| "JOB_MESSAGE_IMPORTANCE_UNKNOWN"
| "JOB_MESSAGE_DEBUG"
| "JOB_MESSAGE_DETAILED"
| "JOB_MESSAGE_BASIC"
| "JOB_MESSAGE_WARNING"
| "JOB_MESSAGE_ERROR";
pageSize?: number;
pageToken?: string;
startTime?: Date;
}

§Properties

§
endTime?: Date
[src]

Return only messages with timestamps < end_time. The default is now (i.e. return up to the latest messages available).

§
minimumImportance?: "JOB_MESSAGE_IMPORTANCE_UNKNOWN" | "JOB_MESSAGE_DEBUG" | "JOB_MESSAGE_DETAILED" | "JOB_MESSAGE_BASIC" | "JOB_MESSAGE_WARNING" | "JOB_MESSAGE_ERROR"
[src]

Filter to only get messages with importance >= level

§
pageSize?: number
[src]

If specified, determines the maximum number of messages to return. If unspecified, the service may choose an appropriate default, or may return an arbitrarily large number of results.

§
pageToken?: string
[src]

If supplied, this should be the value of next_page_token returned by an earlier call. This will cause the next page of results to be returned.

§
startTime?: Date
[src]

If specified, return only messages with timestamps >= start_time. The default is the job creation time (i.e. beginning of messages).