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

GoogleBigtableAdminV2TypeAggregate

import type { GoogleBigtableAdminV2TypeAggregate } from "https://googleapis.deno.dev/v1/bigtableadmin:v2.ts";

A value that combines incremental updates into a summarized value. Data is never directly written or read using type Aggregate. Writes will provide either the input_type or state_type, and reads will always return the state_type .

interface GoogleBigtableAdminV2TypeAggregate {
inputType?: Type;
readonly stateType?: Type;
}

§Properties

§
inputType?: Type
[src]

Type of the inputs that are accumulated by this Aggregate, which must specify a full encoding. Use AddInput mutations to accumulate new inputs.

§
readonly stateType?: Type
[src]

Output only. Type that holds the internal accumulator state for the Aggregate. This is a function of the input_type and aggregator chosen, and will always specify a full encoding.