@maxim_mazurok/gapi.client.spanner-v1 0.0.20240410 → 0.0.20240422
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +3 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://spanner.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240422
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -93,7 +93,7 @@ declare namespace gapi.client {
|
|
|
93
93
|
session?: Session[];
|
|
94
94
|
}
|
|
95
95
|
interface BatchWriteRequest {
|
|
96
|
-
/** Optional. When `exclude_txn_from_change_streams` is set to `true`: *
|
|
96
|
+
/** 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. */
|
|
97
97
|
excludeTxnFromChangeStreams?: boolean;
|
|
98
98
|
/** Required. The groups of mutations to be applied. */
|
|
99
99
|
mutationGroups?: MutationGroup[];
|
|
@@ -1073,7 +1073,7 @@ declare namespace gapi.client {
|
|
|
1073
1073
|
readTimestamp?: string;
|
|
1074
1074
|
}
|
|
1075
1075
|
interface TransactionOptions {
|
|
1076
|
-
/** When `exclude_txn_from_change_streams` is set to `true`: *
|
|
1076
|
+
/** When `exclude_txn_from_change_streams` is set to `true`: * Modifications from this transaction will not be recorded in change streams with DDL option `allow_txn_exclusion=true` that are tracking columns modified by these transactions. * Modifications from this transaction 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 this transaction will be recorded in all change streams that are tracking columns modified by these transactions. `exclude_txn_from_change_streams` may only be specified for read-write or partitioned-dml transactions, otherwise the API will return an `INVALID_ARGUMENT` error. */
|
|
1077
1077
|
excludeTxnFromChangeStreams?: boolean;
|
|
1078
1078
|
/** Partitioned DML transaction. Authorization to begin a Partitioned DML transaction requires `spanner.databases.beginPartitionedDmlTransaction` permission on the `session` resource. */
|
|
1079
1079
|
partitionedDml?: any;
|