@googleapis/spanner 9.1.0 → 9.1.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [9.1.1](https://github.com/googleapis/google-api-nodejs-client/compare/spanner-v9.1.0...spanner-v9.1.1) (2025-07-15)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **spanner:** update the API ([d77e9d5](https://github.com/googleapis/google-api-nodejs-client/commit/d77e9d510f53a8fdccd63451191482343ecfdb59))
9
+
3
10
  ## [9.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/spanner-v9.0.0...spanner-v9.1.0) (2025-07-08)
4
11
 
5
12
 
package/build/v1.d.ts CHANGED
@@ -390,7 +390,7 @@ export declare namespace spanner_v1 {
390
390
  */
391
391
  export interface Schema$BatchWriteRequest {
392
392
  /**
393
- * Optional. When `exclude_txn_from_change_streams` is set to `true`: * Modifications from all transactions in this batch write operation are 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 are 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 are recorded in all change streams that are tracking columns modified by these transactions.
393
+ * Optional. If you don't set the `exclude_txn_from_change_streams` option or if it's set to `false`, then any change streams monitoring columns modified by transactions will capture the updates made within that transaction.
394
394
  */
395
395
  excludeTxnFromChangeStreams?: boolean | null;
396
396
  /**
@@ -955,11 +955,11 @@ export declare namespace spanner_v1 {
955
955
  */
956
956
  export interface Schema$DatabaseMoveConfig {
957
957
  /**
958
- * Required. The unique identifier of the database resource in the Instance. For example if the database uri is projects/foo/instances/bar/databases/baz, the id to supply here is baz.
958
+ * Required. The unique identifier of the database resource in the Instance. For example, if the database uri is `projects/foo/instances/bar/databases/baz`, then the id to supply here is baz.
959
959
  */
960
960
  databaseId?: string | null;
961
961
  /**
962
- * Optional. Encryption configuration to be used for the database in target configuration. Should be specified for every database which currently uses CMEK encryption. If a database currently uses GOOGLE_MANAGED encryption and a target encryption config is not specified, it defaults to GOOGLE_MANAGED. If a database currently uses Google-managed encryption and a target encryption config is specified, the request is rejected. If a database currently uses CMEK encryption, a target encryption config must be specified. You cannot move a CMEK database to a Google-managed encryption database by MoveInstance.
962
+ * Optional. Encryption configuration to be used for the database in the target configuration. The encryption configuration must be specified for every database which currently uses CMEK encryption. If a database currently uses Google-managed encryption and a target encryption configuration is not specified, then the database defaults to Google-managed encryption. If a database currently uses Google-managed encryption and a target CMEK encryption is specified, the request is rejected. If a database currently uses CMEK encryption, then a target encryption configuration must be specified. You can't move a CMEK database to a Google-managed encryption database using the MoveInstance API.
963
963
  */
964
964
  encryptionConfig?: Schema$InstanceEncryptionConfig;
965
965
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@googleapis/spanner",
3
- "version": "9.1.0",
3
+ "version": "9.1.1",
4
4
  "description": "spanner",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
package/v1.ts CHANGED
@@ -439,7 +439,7 @@ export namespace spanner_v1 {
439
439
  */
440
440
  export interface Schema$BatchWriteRequest {
441
441
  /**
442
- * Optional. When `exclude_txn_from_change_streams` is set to `true`: * Modifications from all transactions in this batch write operation are 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 are 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 are recorded in all change streams that are tracking columns modified by these transactions.
442
+ * Optional. If you don't set the `exclude_txn_from_change_streams` option or if it's set to `false`, then any change streams monitoring columns modified by transactions will capture the updates made within that transaction.
443
443
  */
444
444
  excludeTxnFromChangeStreams?: boolean | null;
445
445
  /**
@@ -1004,11 +1004,11 @@ export namespace spanner_v1 {
1004
1004
  */
1005
1005
  export interface Schema$DatabaseMoveConfig {
1006
1006
  /**
1007
- * Required. The unique identifier of the database resource in the Instance. For example if the database uri is projects/foo/instances/bar/databases/baz, the id to supply here is baz.
1007
+ * Required. The unique identifier of the database resource in the Instance. For example, if the database uri is `projects/foo/instances/bar/databases/baz`, then the id to supply here is baz.
1008
1008
  */
1009
1009
  databaseId?: string | null;
1010
1010
  /**
1011
- * Optional. Encryption configuration to be used for the database in target configuration. Should be specified for every database which currently uses CMEK encryption. If a database currently uses GOOGLE_MANAGED encryption and a target encryption config is not specified, it defaults to GOOGLE_MANAGED. If a database currently uses Google-managed encryption and a target encryption config is specified, the request is rejected. If a database currently uses CMEK encryption, a target encryption config must be specified. You cannot move a CMEK database to a Google-managed encryption database by MoveInstance.
1011
+ * Optional. Encryption configuration to be used for the database in the target configuration. The encryption configuration must be specified for every database which currently uses CMEK encryption. If a database currently uses Google-managed encryption and a target encryption configuration is not specified, then the database defaults to Google-managed encryption. If a database currently uses Google-managed encryption and a target CMEK encryption is specified, the request is rejected. If a database currently uses CMEK encryption, then a target encryption configuration must be specified. You can't move a CMEK database to a Google-managed encryption database using the MoveInstance API.
1012
1012
  */
1013
1013
  encryptionConfig?: Schema$InstanceEncryptionConfig;
1014
1014
  }