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

ProjectsRulesetsListOptions

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

Additional options for FirebaseRules#projectsRulesetsList.

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

§Properties

§
filter?: string
[src]

Ruleset filter. The list method supports filters with restrictions on Ruleset.name. Filters on Ruleset.create_time should use the date function which parses strings that conform to the RFC 3339 date/time specifications. Example: create_time > date("2017-01-01T00:00:00Z") AND name=UUID-*

§
pageSize?: number
[src]

Page size to load. Maximum of 100. Defaults to 10. Note: page_size is just a hint and the service may choose to load less than page_size due to the size of the output. To traverse all of the releases, caller should iterate until the page_token is empty.

§
pageToken?: string
[src]

Next page token for loading the next batch of Ruleset instances.