@maxim_mazurok/gapi.client.sqladmin-v1beta4 0.0.20240507 → 0.0.20240521
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 -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: 20240521
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -60,6 +60,14 @@ declare namespace gapi.client {
|
|
|
60
60
|
/** The region name for REGION_UNREACHABLE warning. */
|
|
61
61
|
region?: string;
|
|
62
62
|
}
|
|
63
|
+
interface AvailableDatabaseVersion {
|
|
64
|
+
/** The database version's display name. */
|
|
65
|
+
displayName?: string;
|
|
66
|
+
/** The version's major version name. */
|
|
67
|
+
majorVersion?: string;
|
|
68
|
+
/** The database version name. For MySQL 8.0, this string provides the database major and minor version. */
|
|
69
|
+
name?: string;
|
|
70
|
+
}
|
|
63
71
|
interface BackupConfiguration {
|
|
64
72
|
/** Backup retention settings. */
|
|
65
73
|
backupRetentionSettings?: BackupRetentionSettings;
|
|
@@ -167,7 +175,9 @@ declare namespace gapi.client {
|
|
|
167
175
|
pitrTimestampMs?: string;
|
|
168
176
|
/** Timestamp, if specified, identifies the time to which the source instance is cloned. */
|
|
169
177
|
pointInTime?: string;
|
|
170
|
-
/** Optional.
|
|
178
|
+
/** Optional. Copy clone and point-in-time recovery clone of a regional instance in the specified zones. If not specified, clone to the same secondary zone as the source instance. This value cannot be the same as the preferred_zone field. */
|
|
179
|
+
preferredSecondaryZone?: string;
|
|
180
|
+
/** Optional. Copy clone and point-in-time recovery clone of an instance to the specified zone. If no zone is specified, clone to the same primary zone as the source instance. */
|
|
171
181
|
preferredZone?: string;
|
|
172
182
|
}
|
|
173
183
|
interface ConnectSettings {
|
|
@@ -303,6 +313,8 @@ declare namespace gapi.client {
|
|
|
303
313
|
state?: string;
|
|
304
314
|
/** If the instance state is SUSPENDED, the reason for the suspension. */
|
|
305
315
|
suspensionReason?: string[];
|
|
316
|
+
/** Output only. All database versions that are available for upgrade. */
|
|
317
|
+
upgradableDatabaseVersions?: AvailableDatabaseVersion[];
|
|
306
318
|
/** Output only. The dns name of the primary instance in a replication group. */
|
|
307
319
|
writeEndpoint?: string;
|
|
308
320
|
}
|
|
@@ -875,7 +887,7 @@ declare namespace gapi.client {
|
|
|
875
887
|
activationPolicy?: string;
|
|
876
888
|
/** Active Directory configuration, relevant only for Cloud SQL for SQL Server. */
|
|
877
889
|
activeDirectoryConfig?: SqlActiveDirectoryConfig;
|
|
878
|
-
/** Specifies
|
|
890
|
+
/** Specifies advanced machine configuration for the instances relevant only for SQL Server. */
|
|
879
891
|
advancedMachineFeatures?: AdvancedMachineFeatures;
|
|
880
892
|
/** The App Engine app IDs that can access this instance. (Deprecated) Applied to First Generation instances only. */
|
|
881
893
|
authorizedGaeApplications?: string[];
|