@maxim_mazurok/gapi.client.sqladmin-v1 0.0.20240520 → 0.0.20240529
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 -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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240529
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -56,6 +56,14 @@ declare namespace gapi.client {
|
|
|
56
56
|
/** The region name for REGION_UNREACHABLE warning. */
|
|
57
57
|
region?: string;
|
|
58
58
|
}
|
|
59
|
+
interface AvailableDatabaseVersion {
|
|
60
|
+
/** The database version's display name. */
|
|
61
|
+
displayName?: string;
|
|
62
|
+
/** The version's major version name. */
|
|
63
|
+
majorVersion?: string;
|
|
64
|
+
/** The database version name. For MySQL 8.0, this string provides the database major and minor version. */
|
|
65
|
+
name?: string;
|
|
66
|
+
}
|
|
59
67
|
interface BackupConfiguration {
|
|
60
68
|
/** Backup retention settings. */
|
|
61
69
|
backupRetentionSettings?: BackupRetentionSettings;
|
|
@@ -163,7 +171,7 @@ declare namespace gapi.client {
|
|
|
163
171
|
pitrTimestampMs?: string;
|
|
164
172
|
/** Timestamp, if specified, identifies the time to which the source instance is cloned. */
|
|
165
173
|
pointInTime?: string;
|
|
166
|
-
/** Optional.
|
|
174
|
+
/** 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. This field applies to all DB types. */
|
|
167
175
|
preferredZone?: string;
|
|
168
176
|
}
|
|
169
177
|
interface ConnectSettings {
|
|
@@ -298,6 +306,8 @@ declare namespace gapi.client {
|
|
|
298
306
|
state?: string;
|
|
299
307
|
/** If the instance state is SUSPENDED, the reason for the suspension. */
|
|
300
308
|
suspensionReason?: string[];
|
|
309
|
+
/** Output only. All database versions that are available for upgrade. */
|
|
310
|
+
upgradableDatabaseVersions?: AvailableDatabaseVersion[];
|
|
301
311
|
/** Output only. The dns name of the primary instance in a replication group. */
|
|
302
312
|
writeEndpoint?: string;
|
|
303
313
|
}
|
|
@@ -870,7 +880,7 @@ declare namespace gapi.client {
|
|
|
870
880
|
activationPolicy?: string;
|
|
871
881
|
/** Active Directory configuration, relevant only for Cloud SQL for SQL Server. */
|
|
872
882
|
activeDirectoryConfig?: SqlActiveDirectoryConfig;
|
|
873
|
-
/** Specifies
|
|
883
|
+
/** Specifies advanced machine configuration for the instances relevant only for SQL Server. */
|
|
874
884
|
advancedMachineFeatures?: AdvancedMachineFeatures;
|
|
875
885
|
/** The App Engine app IDs that can access this instance. (Deprecated) Applied to First Generation instances only. */
|
|
876
886
|
authorizedGaeApplications?: string[];
|