@maxim_mazurok/gapi.client.sqladmin-v1beta4 0.0.20230405 → 0.0.20230505
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 +3008 -1509
- package/package.json +1 -1
- package/readme.md +1 -1
- package/tests.ts +9 -2
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -110,7 +110,7 @@ Retrieves a resource containing information about a database inside a Cloud SQL
|
|
|
110
110
|
await gapi.client.sql.databases.get({ database: "database", instance: "instance", project: "project", });
|
|
111
111
|
|
|
112
112
|
/*
|
|
113
|
-
Inserts a resource containing information about a database inside a Cloud SQL instance.
|
|
113
|
+
Inserts a resource containing information about a database inside a Cloud SQL instance. **Note:** You can't modify the default character set and collation.
|
|
114
114
|
*/
|
|
115
115
|
await gapi.client.sql.databases.insert({ instance: "instance", project: "project", });
|
|
116
116
|
|
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: 20230505
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -114,7 +114,7 @@ gapi.load('client', async () => {
|
|
|
114
114
|
instance: "Test string",
|
|
115
115
|
project: "Test string",
|
|
116
116
|
});
|
|
117
|
-
/** Inserts a resource containing information about a database inside a Cloud SQL instance. */
|
|
117
|
+
/** Inserts a resource containing information about a database inside a Cloud SQL instance. **Note:** You can't modify the default character set and collation. */
|
|
118
118
|
await gapi.client.sql.databases.insert({
|
|
119
119
|
instance: "Test string",
|
|
120
120
|
project: "Test string",
|
|
@@ -206,6 +206,7 @@ gapi.load('client', async () => {
|
|
|
206
206
|
kind: "Test string",
|
|
207
207
|
pitrTimestampMs: "Test string",
|
|
208
208
|
pointInTime: "Test string",
|
|
209
|
+
preferredZone: "Test string",
|
|
209
210
|
},
|
|
210
211
|
});
|
|
211
212
|
/** Deletes a Cloud SQL instance. */
|
|
@@ -243,6 +244,9 @@ gapi.load('client', async () => {
|
|
|
243
244
|
}, {
|
|
244
245
|
exportContext: {
|
|
245
246
|
bakExportOptions: {
|
|
247
|
+
bakType: "Test string",
|
|
248
|
+
copyOnly: true,
|
|
249
|
+
differentialBase: true,
|
|
246
250
|
stripeCount: 42,
|
|
247
251
|
striped: true,
|
|
248
252
|
},
|
|
@@ -297,11 +301,14 @@ gapi.load('client', async () => {
|
|
|
297
301
|
}, {
|
|
298
302
|
importContext: {
|
|
299
303
|
bakImportOptions: {
|
|
304
|
+
bakType: "Test string",
|
|
300
305
|
encryptionOptions: {
|
|
301
306
|
certPath: "Test string",
|
|
302
307
|
pvkPassword: "Test string",
|
|
303
308
|
pvkPath: "Test string",
|
|
304
309
|
},
|
|
310
|
+
noRecovery: true,
|
|
311
|
+
recoveryOnly: true,
|
|
305
312
|
striped: true,
|
|
306
313
|
},
|
|
307
314
|
csvImportOptions: {
|