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

Ruleset

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

Ruleset is an immutable copy of Source with a globally unique identifier and a creation time.

interface Ruleset {
attachmentPoint?: string;
readonly createTime?: Date;
readonly metadata?: Metadata;
readonly name?: string;
source?: Source;
}

§Properties

§
attachmentPoint?: string
[src]

Immutable. Intended resource to which this Ruleset should be released. May be left blank to signify the resource associated with the default release. Expected format: firestore.googleapis.com/projects//databases/

§
readonly createTime?: Date
[src]

Output only. Time the Ruleset was created.

§
readonly metadata?: Metadata
[src]

Output only. The metadata for this ruleset.

§
readonly name?: string
[src]

Output only. Name of the Ruleset. The ruleset_id is auto generated by the service. Format: projects/{project_id}/rulesets/{ruleset_id}

§
source?: Source
[src]

Required. Source for the Ruleset.