@maxim_mazurok/gapi.client.datamigration-v1 0.0.20241211 → 0.0.20250108
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 +16 -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: 20250108
|
|
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. */
|
|
@@ -1178,17 +1190,17 @@ declare namespace gapi.client {
|
|
|
1178
1190
|
sourceMinScaleFilter?: number;
|
|
1179
1191
|
}
|
|
1180
1192
|
interface SourceObjectConfig {
|
|
1181
|
-
/** The object identifier. */
|
|
1193
|
+
/** Optional. The object identifier. */
|
|
1182
1194
|
objectIdentifier?: SourceObjectIdentifier;
|
|
1183
1195
|
}
|
|
1184
1196
|
interface SourceObjectIdentifier {
|
|
1185
|
-
/** 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. */
|
|
1186
1198
|
database?: string;
|
|
1187
1199
|
/** Required. The type of the migration job object. */
|
|
1188
1200
|
type?: string;
|
|
1189
1201
|
}
|
|
1190
1202
|
interface SourceObjectsConfig {
|
|
1191
|
-
/** The list of the objects to be migrated. */
|
|
1203
|
+
/** Optional. The list of the objects to be migrated. */
|
|
1192
1204
|
objectConfigs?: SourceObjectConfig[];
|
|
1193
1205
|
/** Optional. The objects selection type of the migration job. */
|
|
1194
1206
|
objectsSelectionType?: string;
|