@maxim_mazurok/gapi.client.sqladmin-v1beta4 0.0.20240618 → 0.0.20240622

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 (2) hide show
  1. package/index.d.ts +15 -1
  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://sqladmin.googleapis.com/$discovery/rest?version=v1beta4
12
- // Revision: 20240618
12
+ // Revision: 20240622
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -429,6 +429,13 @@ declare namespace gapi.client {
429
429
  };
430
430
  /** Optional. Whether or not the export should be parallel. */
431
431
  parallel?: boolean;
432
+ /** Options for exporting from a Cloud SQL for PostgreSQL instance. */
433
+ postgresExportOptions?: {
434
+ /** Optional. Use this option to include DROP SQL statements. These statements are used to delete database objects before running the import operation. */
435
+ clean?: boolean;
436
+ /** Optional. Option to include an IF EXISTS SQL statement with each DROP statement produced by clean. */
437
+ ifExists?: boolean;
438
+ };
432
439
  /** Export only schemas. */
433
440
  schemaOnly?: boolean;
434
441
  /** Tables to export, or that were exported, from the specified database. If you specify tables, specify one and only one database. For PostgreSQL instances, you can specify only one table. */
@@ -552,6 +559,13 @@ declare namespace gapi.client {
552
559
  sqlImportOptions?: {
553
560
  /** Optional. Whether or not the import should be parallel. */
554
561
  parallel?: boolean;
562
+ /** Optional. Options for importing from a Cloud SQL for PostgreSQL instance. */
563
+ postgresImportOptions?: {
564
+ /** Optional. The --clean flag for the pg_restore utility. This flag applies only if you enabled Cloud SQL to import files in parallel. */
565
+ clean?: boolean;
566
+ /** Optional. The --if-exists flag for the pg_restore utility. This flag applies only if you enabled Cloud SQL to import files in parallel. */
567
+ ifExists?: boolean;
568
+ };
555
569
  /** Optional. The number of threads to use for parallel import. */
556
570
  threads?: number;
557
571
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.sqladmin-v1beta4",
3
- "version": "0.0.20240618",
3
+ "version": "0.0.20240622",
4
4
  "description": "TypeScript typings for Cloud SQL Admin API v1beta4",
5
5
  "repository": {
6
6
  "type": "git",