@maxim_mazurok/gapi.client.sqladmin-v1 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=v1
12
- // Revision: 20240618
12
+ // Revision: 20240622
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -424,6 +424,13 @@ declare namespace gapi.client {
424
424
  };
425
425
  /** Optional. Whether or not the export should be parallel. */
426
426
  parallel?: boolean;
427
+ /** Options for exporting from a Cloud SQL for PostgreSQL instance. */
428
+ postgresExportOptions?: {
429
+ /** Optional. Use this option to include DROP SQL statements. These statements are used to delete database objects before running the import operation. */
430
+ clean?: boolean;
431
+ /** Optional. Option to include an IF EXISTS SQL statement with each DROP statement produced by clean. */
432
+ ifExists?: boolean;
433
+ };
427
434
  /** Export only schemas. */
428
435
  schemaOnly?: boolean;
429
436
  /** 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. */
@@ -547,6 +554,13 @@ declare namespace gapi.client {
547
554
  sqlImportOptions?: {
548
555
  /** Optional. Whether or not the import should be parallel. */
549
556
  parallel?: boolean;
557
+ /** Optional. Options for importing from a Cloud SQL for PostgreSQL instance. */
558
+ postgresImportOptions?: {
559
+ /** Optional. The --clean flag for the pg_restore utility. This flag applies only if you enabled Cloud SQL to import files in parallel. */
560
+ clean?: boolean;
561
+ /** Optional. The --if-exists flag for the pg_restore utility. This flag applies only if you enabled Cloud SQL to import files in parallel. */
562
+ ifExists?: boolean;
563
+ };
550
564
  /** Optional. The number of threads to use for parallel import. */
551
565
  threads?: number;
552
566
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.sqladmin-v1",
3
- "version": "0.0.20240618",
3
+ "version": "0.0.20240622",
4
4
  "description": "TypeScript typings for Cloud SQL Admin API v1",
5
5
  "repository": {
6
6
  "type": "git",