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

ServicesListOptions

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

Additional options for ServiceUsage#servicesList.

interface ServicesListOptions {
filter?: string;
pageSize?: number;
pageToken?: string;
}

§Properties

§
filter?: string
[src]

Only list services that conform to the given filter. The allowed filter strings are state:ENABLED and state:DISABLED.

§
pageSize?: number
[src]

Requested size of the next page of data. Requested page size cannot exceed 200. If not set, the default page size is 50.

§
pageToken?: string
[src]

Token identifying which result to start with, which is returned by a previous list call.