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

GetReleaseExecutableResponse

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

The response for FirebaseRulesService.GetReleaseExecutable

interface GetReleaseExecutableResponse {
executable?: Uint8Array;
executableVersion?: "RELEASE_EXECUTABLE_VERSION_UNSPECIFIED" | "FIREBASE_RULES_EXECUTABLE_V1" | "FIREBASE_RULES_EXECUTABLE_V2";
language?: "LANGUAGE_UNSPECIFIED" | "FIREBASE_RULES" | "EVENT_FLOW_TRIGGERS";
rulesetName?: string;
syncTime?: Date;
updateTime?: Date;
}

§Properties

§
executable?: Uint8Array
[src]

Executable view of the Ruleset referenced by the Release.

§
executableVersion?: "RELEASE_EXECUTABLE_VERSION_UNSPECIFIED" | "FIREBASE_RULES_EXECUTABLE_V1" | "FIREBASE_RULES_EXECUTABLE_V2"
[src]

The Rules runtime version of the executable.

§
language?: "LANGUAGE_UNSPECIFIED" | "FIREBASE_RULES" | "EVENT_FLOW_TRIGGERS"
[src]

Language used to generate the executable bytes.

§
rulesetName?: string
[src]

Ruleset name associated with the Release executable.

§
syncTime?: Date
[src]

Optional, indicates the freshness of the result. The response is guaranteed to be the latest within an interval up to the sync_time (inclusive).

§
updateTime?: Date
[src]

Timestamp for the most recent Release.update_time.