@maxim_mazurok/gapi.client.spanner-v1 0.0.20240223 → 0.0.20240307
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 +7 -1
- 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: 20240307
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -93,6 +93,8 @@ 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`: * Mutations 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. * Mutations 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, mutations from all transactions in this batch write operation will be recorded in all change streams that are tracking columns modified by these transactions. */
|
|
97
|
+
excludeTxnFromChangeStreams?: boolean;
|
|
96
98
|
/** Required. The groups of mutations to be applied. */
|
|
97
99
|
mutationGroups?: MutationGroup[];
|
|
98
100
|
/** Common options for this request. */
|
|
@@ -961,6 +963,8 @@ declare namespace gapi.client {
|
|
|
961
963
|
creatorRole?: string;
|
|
962
964
|
/** The labels for the session. * Label keys must be between 1 and 63 characters long and must conform to the following regular expression: `[a-z]([-a-z0-9]*[a-z0-9])?`. * Label values must be between 0 and 63 characters long and must conform to the regular expression `([a-z]([-a-z0-9]*[a-z0-9])?)?`. * No more than 64 labels can be associated with a given session. See https://goo.gl/xmQnxf for more information on and examples of labels. */
|
|
963
965
|
labels?: {[P in string]: string};
|
|
966
|
+
/** Optional. If true, specifies a multiplexed session. A multiplexed session may be used for multiple, concurrent read-only operations but can not be used for read-write transactions, partitioned reads, or partitioned queries. Multiplexed sessions can be created via CreateSession but not via BatchCreateSessions. Multiplexed sessions may not be deleted nor listed. */
|
|
967
|
+
multiplexed?: boolean;
|
|
964
968
|
/** Output only. The name of the session. This is always system-assigned. */
|
|
965
969
|
name?: string;
|
|
966
970
|
}
|
|
@@ -1009,6 +1013,8 @@ declare namespace gapi.client {
|
|
|
1009
1013
|
readTimestamp?: string;
|
|
1010
1014
|
}
|
|
1011
1015
|
interface TransactionOptions {
|
|
1016
|
+
/** When `exclude_txn_from_change_streams` is set to `true`: * Mutations 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. * Mutations 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, mutations 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. */
|
|
1017
|
+
excludeTxnFromChangeStreams?: boolean;
|
|
1012
1018
|
/** Partitioned DML transaction. Authorization to begin a Partitioned DML transaction requires `spanner.databases.beginPartitionedDmlTransaction` permission on the `session` resource. */
|
|
1013
1019
|
partitionedDml?: any;
|
|
1014
1020
|
/** Transaction will not write. Authorization to begin a read-only transaction requires `spanner.databases.beginReadOnlyTransaction` permission on the `session` resource. */
|