@maxim_mazurok/gapi.client.sqladmin-v1beta4 0.0.20230607 → 0.0.20230621

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.
Files changed (3) hide show
  1. package/index.d.ts +12 -1
  2. package/package.json +1 -1
  3. package/tests.ts +13 -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://sqladmin.googleapis.com/$discovery/rest?version=v1beta4
12
- // Revision: 20230607
12
+ // Revision: 20230621
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -426,6 +426,11 @@ declare namespace gapi.client {
426
426
  kind?:
427
427
  string;
428
428
  }
429
+ interface DataCacheConfig {
430
+ /** Whether data cache is enabled for the instance. */
431
+ dataCacheEnabled?:
432
+ boolean;
433
+ }
429
434
  interface DemoteMasterConfiguration {
430
435
  /** This is always `sql#demoteMasterConfiguration`. */
431
436
  kind?:
@@ -1246,6 +1251,9 @@ declare namespace gapi.client {
1246
1251
  /** Configuration specific to read replica instances. Indicates whether replication is enabled or not. WARNING: Changing this restarts the instance. */
1247
1252
  databaseReplicationEnabled?:
1248
1253
  boolean;
1254
+ /** Configuration for data cache. */
1255
+ dataCacheConfig?:
1256
+ DataCacheConfig;
1249
1257
  /** The size of data disk, in GB. The data disk size minimum is 10GB. */
1250
1258
  dataDiskSizeGb?:
1251
1259
  string;
@@ -1258,6 +1266,9 @@ declare namespace gapi.client {
1258
1266
  /** Deny maintenance periods */
1259
1267
  denyMaintenancePeriods?:
1260
1268
  DenyMaintenancePeriod[];
1269
+ /** Optional. The edition of the instance. */
1270
+ edition?:
1271
+ string;
1261
1272
  /** Insights configuration, for now relevant only for Postgres. */
1262
1273
  insightsConfig?:
1263
1274
  InsightsConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.sqladmin-v1beta4",
3
- "version": "0.0.20230607",
3
+ "version": "0.0.20230621",
4
4
  "description": "TypeScript typings for Cloud SQL Admin API v1beta4",
5
5
  "license": "MIT",
6
6
  "author": {
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: 20230607
6
+ // Revision: 20230621
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */
@@ -468,6 +468,9 @@ gapi.load('client', async () => {
468
468
  }
469
469
  ],
470
470
  databaseReplicationEnabled: true,
471
+ dataCacheConfig: {
472
+ dataCacheEnabled: true,
473
+ },
471
474
  dataDiskSizeGb: "Test string",
472
475
  dataDiskType: "Test string",
473
476
  deletionProtectionEnabled: true,
@@ -478,6 +481,7 @@ gapi.load('client', async () => {
478
481
  time: "Test string",
479
482
  }
480
483
  ],
484
+ edition: "Test string",
481
485
  insightsConfig: {
482
486
  queryInsightsEnabled: true,
483
487
  queryPlansPerMinute: 42,
@@ -700,6 +704,9 @@ gapi.load('client', async () => {
700
704
  }
701
705
  ],
702
706
  databaseReplicationEnabled: true,
707
+ dataCacheConfig: {
708
+ dataCacheEnabled: true,
709
+ },
703
710
  dataDiskSizeGb: "Test string",
704
711
  dataDiskType: "Test string",
705
712
  deletionProtectionEnabled: true,
@@ -710,6 +717,7 @@ gapi.load('client', async () => {
710
717
  time: "Test string",
711
718
  }
712
719
  ],
720
+ edition: "Test string",
713
721
  insightsConfig: {
714
722
  queryInsightsEnabled: true,
715
723
  queryPlansPerMinute: 42,
@@ -984,6 +992,9 @@ gapi.load('client', async () => {
984
992
  }
985
993
  ],
986
994
  databaseReplicationEnabled: true,
995
+ dataCacheConfig: {
996
+ dataCacheEnabled: true,
997
+ },
987
998
  dataDiskSizeGb: "Test string",
988
999
  dataDiskType: "Test string",
989
1000
  deletionProtectionEnabled: true,
@@ -994,6 +1005,7 @@ gapi.load('client', async () => {
994
1005
  time: "Test string",
995
1006
  }
996
1007
  ],
1008
+ edition: "Test string",
997
1009
  insightsConfig: {
998
1010
  queryInsightsEnabled: true,
999
1011
  queryPlansPerMinute: 42,