@maxim_mazurok/gapi.client.sqladmin-v1beta4 0.0.20241011 → 0.0.20241102
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 +15 -5
- 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: 20241102
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -460,6 +460,10 @@ declare namespace gapi.client {
|
|
|
460
460
|
/** 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. */
|
|
461
461
|
uri?: string;
|
|
462
462
|
}
|
|
463
|
+
interface ExternalSyncSelectedObject {
|
|
464
|
+
/** The name of the database that Cloud SQL migrates. */
|
|
465
|
+
database?: string;
|
|
466
|
+
}
|
|
463
467
|
interface FailoverContext {
|
|
464
468
|
/** This is always `sql#failoverContext`. */
|
|
465
469
|
kind?: string;
|
|
@@ -772,8 +776,12 @@ declare namespace gapi.client {
|
|
|
772
776
|
kind?: string;
|
|
773
777
|
/** The password for connecting to on-premises instance. */
|
|
774
778
|
password?: string;
|
|
779
|
+
/** Optional. A list of objects that the user selects for replication from an external source instance. */
|
|
780
|
+
selectedObjects?: SelectedObjects[];
|
|
775
781
|
/** The reference to Cloud SQL instance if the source is Cloud SQL. */
|
|
776
782
|
sourceInstance?: InstanceReference;
|
|
783
|
+
/** Optional. SslOption for replica connection to the on-premises source. */
|
|
784
|
+
sslOption?: string;
|
|
777
785
|
/** The username for connecting to on-premises instance. */
|
|
778
786
|
username?: string;
|
|
779
787
|
}
|
|
@@ -944,6 +952,10 @@ declare namespace gapi.client {
|
|
|
944
952
|
/** Optional. The fingerprint of the next version to be rotated to. If left unspecified, will be rotated to the most recently added server certificate version. */
|
|
945
953
|
nextVersion?: string;
|
|
946
954
|
}
|
|
955
|
+
interface SelectedObjects {
|
|
956
|
+
/** Required. The name of the database to migrate. */
|
|
957
|
+
database?: string;
|
|
958
|
+
}
|
|
947
959
|
interface Settings {
|
|
948
960
|
/** 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. */
|
|
949
961
|
activationPolicy?: string;
|
|
@@ -1072,6 +1084,8 @@ declare namespace gapi.client {
|
|
|
1072
1084
|
migrationType?: string;
|
|
1073
1085
|
/** Optional. MySQL-specific settings for start external sync. */
|
|
1074
1086
|
mysqlSyncConfig?: MySqlSyncConfig;
|
|
1087
|
+
/** Optional. Migrate only the specified objects from the source instance. If this field is empty, then migrate all objects. */
|
|
1088
|
+
selectedObjects?: ExternalSyncSelectedObject[];
|
|
1075
1089
|
/** External sync mode */
|
|
1076
1090
|
syncMode?: string;
|
|
1077
1091
|
/** Optional. Parallel level for initial data sync. Only applicable for PostgreSQL. */
|
|
@@ -2016,10 +2030,6 @@ declare namespace gapi.client {
|
|
|
2016
2030
|
callback?: string;
|
|
2017
2031
|
/** Selector specifying which fields to include in a partial response. */
|
|
2018
2032
|
fields?: string;
|
|
2019
|
-
/** Optional. Final Backup expiration time. Timestamp in UTC of when this resource is considered expired. */
|
|
2020
|
-
finalBackupExpiryTime?: string;
|
|
2021
|
-
/** Optional. Retention period of the final backup. */
|
|
2022
|
-
finalBackupTtlDays?: string;
|
|
2023
2033
|
/** Cloud SQL instance ID. This does not include the project ID. */
|
|
2024
2034
|
instance: string;
|
|
2025
2035
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|