@maxim_mazurok/gapi.client.spanner-v1 0.37.20251112 → 0.37.20251121
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 +5 -2
- 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: 20251121
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -239,6 +239,7 @@ declare namespace gapi.client {
|
|
|
239
239
|
/** Only present if the child node is SCALAR and corresponds to an output variable of the parent node. The field carries the name of the output variable. For example, a `TableScan` operator that reads rows from a table will have child links to the `SCALAR` nodes representing the output variables created for each column that is read by the operator. The corresponding `variable` fields will be set to the variable names assigned to the columns. */
|
|
240
240
|
variable?: string;
|
|
241
241
|
}
|
|
242
|
+
interface ClientContext {}
|
|
242
243
|
interface ColumnMetadata {
|
|
243
244
|
/** Indicates whether the column is a primary key column. */
|
|
244
245
|
isPrimaryKey?: boolean;
|
|
@@ -1241,6 +1242,8 @@ declare namespace gapi.client {
|
|
|
1241
1242
|
type?: string;
|
|
1242
1243
|
}
|
|
1243
1244
|
interface RequestOptions {
|
|
1245
|
+
/** Optional. Optional context that may be needed for some requests. */
|
|
1246
|
+
clientContext?: any;
|
|
1244
1247
|
/** Priority for the request. */
|
|
1245
1248
|
priority?: string;
|
|
1246
1249
|
/** A per-request tag which can be applied to queries or reads, used for statistics collection. Both `request_tag` and `transaction_tag` can be specified for a read or query that belongs to a transaction. This field is ignored for requests where it's not applicable (for example, `CommitRequest`). Legal characters for `request_tag` values are all printable characters (ASCII 32 - 126) and the length of a request_tag is limited to 50 characters. Values that exceed this limit are truncated. Any leading underscore (_) characters are removed from the string. */
|
|
@@ -1345,7 +1348,7 @@ declare namespace gapi.client {
|
|
|
1345
1348
|
creatorRole?: string;
|
|
1346
1349
|
/** 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. */
|
|
1347
1350
|
labels?: {[P in string]: string};
|
|
1348
|
-
/** Optional. If `true`, specifies a multiplexed session. Use a multiplexed session for multiple, concurrent
|
|
1351
|
+
/** Optional. If `true`, specifies a multiplexed session. Use a multiplexed session for multiple, concurrent operations including any combination of read-only and read-write transactions. Use `sessions.create` to create multiplexed sessions. Don't use BatchCreateSessions to create a multiplexed session. You can't delete or list multiplexed sessions. */
|
|
1349
1352
|
multiplexed?: boolean;
|
|
1350
1353
|
/** Output only. The name of the session. This is always system-assigned. */
|
|
1351
1354
|
name?: string;
|