@maxim_mazurok/gapi.client.sqladmin-v1 0.0.20240613 → 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.
- package/index.d.ts +18 -4
- 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:
|
|
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
|
};
|
|
@@ -671,13 +685,13 @@ declare namespace gapi.client {
|
|
|
671
685
|
zone?: string;
|
|
672
686
|
}
|
|
673
687
|
interface MaintenanceWindow {
|
|
674
|
-
/**
|
|
688
|
+
/** Day of week - `MONDAY`, `TUESDAY`, `WEDNESDAY`, `THURSDAY`, `FRIDAY`, `SATURDAY`, or `SUNDAY`. Specify in the UTC time zone. Returned in output as an integer, 1 to 7, where `1` equals Monday. */
|
|
675
689
|
day?: number;
|
|
676
|
-
/**
|
|
690
|
+
/** Hour of day - 0 to 23. Specify in the UTC time zone. */
|
|
677
691
|
hour?: number;
|
|
678
692
|
/** This is always `sql#maintenanceWindow`. */
|
|
679
693
|
kind?: string;
|
|
680
|
-
/** Maintenance timing
|
|
694
|
+
/** Maintenance timing settings: `canary`, `stable`, or `week5`. For more information, see [About maintenance on Cloud SQL instances](https://cloud.google.com/sql/docs/mysql/maintenance). */
|
|
681
695
|
updateTrack?: string;
|
|
682
696
|
}
|
|
683
697
|
interface MySqlReplicaConfiguration {
|