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

BatchWriteRequest

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

The request for BatchWrite.

interface BatchWriteRequest {
excludeTxnFromChangeStreams?: boolean;
mutationGroups?: MutationGroup[];
requestOptions?: RequestOptions;
}

§Properties

§
excludeTxnFromChangeStreams?: boolean
[src]

Optional. When exclude_txn_from_change_streams is set to true: * Modifications from all transactions in this batch write operation will not be recorded in change streams with DDL option allow_txn_exclusion=true that are tracking columns modified by these transactions. * Modifications from all transactions in this batch write operation will be recorded in change streams with DDL option allow_txn_exclusion=false or not set that are tracking columns modified by these transactions. When exclude_txn_from_change_streams is set to false or not set, Modifications from all transactions in this batch write operation will be recorded in all change streams that are tracking columns modified by these transactions.

§
mutationGroups?: MutationGroup[]
[src]

Required. The groups of mutations to be applied.

§
requestOptions?: RequestOptions
[src]

Common options for this request.