@maxim_mazurok/gapi.client.sqladmin-v1 0.0.20241023 → 0.0.20241108
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 +13 -1
- 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: 20241108
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -455,6 +455,10 @@ declare namespace gapi.client {
|
|
|
455
455
|
/** 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. */
|
|
456
456
|
uri?: string;
|
|
457
457
|
}
|
|
458
|
+
interface ExternalSyncSelectedObject {
|
|
459
|
+
/** The name of the database that Cloud SQL migrates. */
|
|
460
|
+
database?: string;
|
|
461
|
+
}
|
|
458
462
|
interface FailoverContext {
|
|
459
463
|
/** This is always `sql#failoverContext`. */
|
|
460
464
|
kind?: string;
|
|
@@ -767,6 +771,8 @@ declare namespace gapi.client {
|
|
|
767
771
|
kind?: string;
|
|
768
772
|
/** The password for connecting to on-premises instance. */
|
|
769
773
|
password?: string;
|
|
774
|
+
/** Optional. A list of objects that the user selects for replication from an external source instance. */
|
|
775
|
+
selectedObjects?: SelectedObjects[];
|
|
770
776
|
/** The reference to Cloud SQL instance if the source is Cloud SQL. */
|
|
771
777
|
sourceInstance?: InstanceReference;
|
|
772
778
|
/** Optional. SSL option for replica connection to the on-premises source. */
|
|
@@ -941,6 +947,10 @@ declare namespace gapi.client {
|
|
|
941
947
|
/** The fingerprint of the next version to be rotated to. If left unspecified, will be rotated to the most recently added server certificate version. */
|
|
942
948
|
nextVersion?: string;
|
|
943
949
|
}
|
|
950
|
+
interface SelectedObjects {
|
|
951
|
+
/** Required. The name of the database to migrate. */
|
|
952
|
+
database?: string;
|
|
953
|
+
}
|
|
944
954
|
interface Settings {
|
|
945
955
|
/** The activation policy specifies when the instance is activated; it is applicable only when the instance state is RUNNABLE. Valid values: * `ALWAYS`: The instance is on, and remains so even in the absence of connection requests. * `NEVER`: The instance is off; it is not activated, even if a connection request arrives. */
|
|
946
956
|
activationPolicy?: string;
|
|
@@ -1069,6 +1079,8 @@ declare namespace gapi.client {
|
|
|
1069
1079
|
migrationType?: string;
|
|
1070
1080
|
/** Optional. MySQL-specific settings for start external sync. */
|
|
1071
1081
|
mysqlSyncConfig?: MySqlSyncConfig;
|
|
1082
|
+
/** Optional. Migrate only the specified objects from the source instance. If this field is empty, then migrate all objects. */
|
|
1083
|
+
selectedObjects?: ExternalSyncSelectedObject[];
|
|
1072
1084
|
/** External sync mode */
|
|
1073
1085
|
syncMode?: string;
|
|
1074
1086
|
/** Optional. Parallel level for initial data sync. Only applicable for PostgreSQL. */
|