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

ScansListOptions

import type { ScansListOptions } from "https://googleapis.deno.dev/v1/spanner:v1.ts";

Additional options for Spanner#scansList.

interface ScansListOptions {
filter?: string;
pageSize?: number;
pageToken?: string;
view?: "VIEW_UNSPECIFIED" | "SUMMARY" | "FULL";
}

§Properties

§
filter?: string
[src]

A filter expression to restrict the results based on information present in the available Scan collection. The filter applies to all fields within the Scan message except for data.

§
pageSize?: number
[src]

The maximum number of items to return.

§
pageToken?: string
[src]

The next_page_token value returned from a previous List request, if any.

§
view?: "VIEW_UNSPECIFIED" | "SUMMARY" | "FULL"
[src]

Specifies which parts of the Scan should be returned in the response. Note, only the SUMMARY view (the default) is currently supported for ListScans.