@maxim_mazurok/gapi.client.sqladmin-v1beta4 0.0.20240110 → 0.0.20240123
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 +7 -3
- 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:
|
|
12
|
+
// Revision: 20240123
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -259,7 +259,7 @@ declare namespace gapi.client {
|
|
|
259
259
|
project?: string;
|
|
260
260
|
/** Output only. The link to service attachment of PSC instance. */
|
|
261
261
|
pscServiceAttachmentLink?: string;
|
|
262
|
-
/** The geographical region.
|
|
262
|
+
/** The geographical region of the Cloud SQL instance. It can be one of the [regions](https://cloud.google.com/sql/docs/mysql/locations#location-r) where Cloud SQL operates: For example, `asia-east1`, `europe-west1`, and `us-central1`. The default value is `us-central1`. */
|
|
263
263
|
region?: string;
|
|
264
264
|
/** Configuration specific to failover replicas and read replicas. */
|
|
265
265
|
replicaConfiguration?: ReplicaConfiguration;
|
|
@@ -401,10 +401,14 @@ declare namespace gapi.client {
|
|
|
401
401
|
/** Option to include SQL statement required to set up replication. If set to `1`, the dump file includes a CHANGE MASTER TO statement with the binary log coordinates, and --set-gtid-purged is set to ON. If set to `2`, the CHANGE MASTER TO statement is written as a SQL comment and has no effect. If set to any value other than `1`, --set-gtid-purged is set to OFF. */
|
|
402
402
|
masterData?: number;
|
|
403
403
|
};
|
|
404
|
+
/** Optional. Whether or not the export should be parallel. */
|
|
405
|
+
parallel?: boolean;
|
|
404
406
|
/** Export only schemas. */
|
|
405
407
|
schemaOnly?: boolean;
|
|
406
408
|
/** 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. */
|
|
407
409
|
tables?: string[];
|
|
410
|
+
/** Optional. The number of threads to use for parallel export. */
|
|
411
|
+
threads?: number;
|
|
408
412
|
};
|
|
409
413
|
/** The path to the file in Google Cloud Storage where the export will be stored. The URI is in the form `gs://bucketName/fileName`. If the file already exists, the request succeeds, but the operation fails. If `fileType` is `SQL` and the filename ends with .gz, the contents are compressed. */
|
|
410
414
|
uri?: string;
|
|
@@ -760,7 +764,7 @@ declare namespace gapi.client {
|
|
|
760
764
|
interface PasswordValidationPolicy {
|
|
761
765
|
/** The complexity of the password. */
|
|
762
766
|
complexity?: string;
|
|
763
|
-
/**
|
|
767
|
+
/** This field is deprecated and will be removed in a future version of the API. */
|
|
764
768
|
disallowCompromisedCredentials?: boolean;
|
|
765
769
|
/** Disallow username as a part of the password. */
|
|
766
770
|
disallowUsernameSubstring?: boolean;
|