@maxim_mazurok/gapi.client.sqladmin-v1 0.0.20221017 → 0.0.20221113
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 +6 -2
- package/package.json +1 -1
- package/tests.ts +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: 20221113
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -373,8 +373,11 @@ declare namespace gapi.client {
|
|
|
373
373
|
kmsKeyVersionName?: string;
|
|
374
374
|
}
|
|
375
375
|
interface ExportContext {
|
|
376
|
+
/** Options for exporting BAK files (SQL Server-only) */
|
|
376
377
|
bakExportOptions?: {
|
|
378
|
+
/** Option for specifying how many stripes to use for the export. If blank, and the value of the striped field is true, the number of stripes is automatically chosen. */
|
|
377
379
|
stripeCount?: number;
|
|
380
|
+
/** Whether or not the export should be striped. */
|
|
378
381
|
striped?: boolean;
|
|
379
382
|
};
|
|
380
383
|
/** Options for exporting data as CSV. `MySQL` and `PostgreSQL` instances only. */
|
|
@@ -495,6 +498,7 @@ declare namespace gapi.client {
|
|
|
495
498
|
*/
|
|
496
499
|
pvkPath?: string;
|
|
497
500
|
};
|
|
501
|
+
/** Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. */
|
|
498
502
|
striped?: boolean;
|
|
499
503
|
};
|
|
500
504
|
/** Options for importing data as CSV. */
|
|
@@ -780,7 +784,7 @@ declare namespace gapi.client {
|
|
|
780
784
|
enablePasswordPolicy?: boolean;
|
|
781
785
|
/** Minimum number of characters allowed. */
|
|
782
786
|
minLength?: number;
|
|
783
|
-
/** Minimum interval after which the password can be changed. This flag is only supported for
|
|
787
|
+
/** Minimum interval after which the password can be changed. This flag is only supported for PostgreSQL. */
|
|
784
788
|
passwordChangeInterval?: string;
|
|
785
789
|
/** Number of previous passwords that cannot be reused. */
|
|
786
790
|
reuseInterval?: number;
|
package/package.json
CHANGED
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: 20221113
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|