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 provide either the input_type or state_type, and reads always return the state_type .

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

§Properties

§

HyperLogLogPlusPlusUniqueCount aggregator.

§
inputType?: Type
[src]

Type of the inputs that are accumulated by this Aggregate. 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.