@maxim_mazurok/gapi.client.datamigration-v1 0.0.20241202 → 0.0.20241231
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 +18 -4
- 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://datamigration.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20241231
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -259,6 +259,10 @@ declare namespace gapi.client {
|
|
|
259
259
|
provider?: string;
|
|
260
260
|
/** Optional. The connection profile role. */
|
|
261
261
|
role?: string;
|
|
262
|
+
/** Output only. Zone Isolation compliance state of the resource. */
|
|
263
|
+
satisfiesPzi?: boolean;
|
|
264
|
+
/** Output only. Zone Separation compliance state of the resource. */
|
|
265
|
+
satisfiesPzs?: boolean;
|
|
262
266
|
/** Connection profile for a SQL Server data source. */
|
|
263
267
|
sqlserver?: SqlServerConnectionProfile;
|
|
264
268
|
/** The current connection profile state (e.g. DRAFT, READY, or FAILED). */
|
|
@@ -772,6 +776,10 @@ declare namespace gapi.client {
|
|
|
772
776
|
phase?: string;
|
|
773
777
|
/** The details needed to communicate to the source over Reverse SSH tunnel connectivity. */
|
|
774
778
|
reverseSshConnectivity?: ReverseSshConnectivity;
|
|
779
|
+
/** Output only. Zone Isolation compliance state of the resource. */
|
|
780
|
+
satisfiesPzi?: boolean;
|
|
781
|
+
/** Output only. Zone Separation compliance state of the resource. */
|
|
782
|
+
satisfiesPzs?: boolean;
|
|
775
783
|
/** Required. The resource name (URI) of the source connection profile. */
|
|
776
784
|
source?: string;
|
|
777
785
|
/** The database engine type and provider of the source. */
|
|
@@ -1023,6 +1031,10 @@ declare namespace gapi.client {
|
|
|
1023
1031
|
labels?: {[P in string]: string};
|
|
1024
1032
|
/** The name of the resource. */
|
|
1025
1033
|
name?: string;
|
|
1034
|
+
/** Output only. Zone Isolation compliance state of the resource. */
|
|
1035
|
+
satisfiesPzi?: boolean;
|
|
1036
|
+
/** Output only. Zone Separation compliance state of the resource. */
|
|
1037
|
+
satisfiesPzs?: boolean;
|
|
1026
1038
|
/** Output only. The state of the private connection. */
|
|
1027
1039
|
state?: string;
|
|
1028
1040
|
/** Output only. The last update time of the resource. */
|
|
@@ -1045,6 +1057,8 @@ declare namespace gapi.client {
|
|
|
1045
1057
|
interface RestartMigrationJobRequest {
|
|
1046
1058
|
/** Optional. The object filter to apply to the migration job. */
|
|
1047
1059
|
objectsFilter?: MigrationJobObjectsConfig;
|
|
1060
|
+
/** Optional. If true, only failed objects will be restarted. */
|
|
1061
|
+
restartFailedObjects?: boolean;
|
|
1048
1062
|
/** Optional. Restart the migration job without running prior configuration verification. Defaults to `false`. */
|
|
1049
1063
|
skipValidation?: boolean;
|
|
1050
1064
|
}
|
|
@@ -1176,17 +1190,17 @@ declare namespace gapi.client {
|
|
|
1176
1190
|
sourceMinScaleFilter?: number;
|
|
1177
1191
|
}
|
|
1178
1192
|
interface SourceObjectConfig {
|
|
1179
|
-
/** The object identifier. */
|
|
1193
|
+
/** Optional. The object identifier. */
|
|
1180
1194
|
objectIdentifier?: SourceObjectIdentifier;
|
|
1181
1195
|
}
|
|
1182
1196
|
interface SourceObjectIdentifier {
|
|
1183
|
-
/** The database name. This will be required only if the object uses a database name as part of its unique identifier. */
|
|
1197
|
+
/** Optional. The database name. This will be required only if the object uses a database name as part of its unique identifier. */
|
|
1184
1198
|
database?: string;
|
|
1185
1199
|
/** Required. The type of the migration job object. */
|
|
1186
1200
|
type?: string;
|
|
1187
1201
|
}
|
|
1188
1202
|
interface SourceObjectsConfig {
|
|
1189
|
-
/** The list of the objects to be migrated. */
|
|
1203
|
+
/** Optional. The list of the objects to be migrated. */
|
|
1190
1204
|
objectConfigs?: SourceObjectConfig[];
|
|
1191
1205
|
/** Optional. The objects selection type of the migration job. */
|
|
1192
1206
|
objectsSelectionType?: string;
|