@maxim_mazurok/gapi.client.spanner-v1 0.0.20220811 → 0.0.20220812
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 -8
- package/package.json +1 -1
- package/tests.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
11
11
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
12
12
|
// Generated from: https://spanner.googleapis.com/$discovery/rest?version=v1
|
|
13
|
-
// Revision:
|
|
13
|
+
// Revision: 20220812
|
|
14
14
|
|
|
15
15
|
/// <reference types="gapi.client" />
|
|
16
16
|
|
|
@@ -309,9 +309,9 @@ declare namespace gapi.client {
|
|
|
309
309
|
*/
|
|
310
310
|
encryptionConfig?: EncryptionConfig;
|
|
311
311
|
/**
|
|
312
|
-
* Output only. For databases that are using customer managed encryption, this field contains the encryption information for the database, such as
|
|
313
|
-
*
|
|
314
|
-
* might be a delay from when a key version is being used and when it appears in this field.
|
|
312
|
+
* Output only. For databases that are using customer managed encryption, this field contains the encryption information for the database, such as all Cloud KMS key versions that are
|
|
313
|
+
* in use. The `encryption_status' field inside of each `EncryptionInfo` is not populated. For databases that are using Google default or other types of encryption, this field is
|
|
314
|
+
* empty. This field is propagated lazily from the backend. There might be a delay from when a key version is being used and when it appears in this field.
|
|
315
315
|
*/
|
|
316
316
|
encryptionInfo?: EncryptionInfo[];
|
|
317
317
|
/**
|
|
@@ -330,10 +330,7 @@ declare namespace gapi.client {
|
|
|
330
330
|
versionRetentionPeriod?: string;
|
|
331
331
|
}
|
|
332
332
|
interface DatabaseRole {
|
|
333
|
-
/**
|
|
334
|
-
* Required. The name of the database role. Values are of the form `projects//instances//databases//databaseRoles/ {role}`, where `` is as specified in the `CREATE ROLE` DDL statement.
|
|
335
|
-
* This name can be passed to Get/Set IAMPolicy methods to identify the database role.
|
|
336
|
-
*/
|
|
333
|
+
/** Required. The name of the database role. Values are of the form `projects//instances//databases//databaseRoles/ `, where `` is as specified in the `CREATE ROLE` DDL statement. */
|
|
337
334
|
name?: string;
|
|
338
335
|
}
|
|
339
336
|
interface Delete {
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20220812
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|