@maxim_mazurok/gapi.client.datamigration-v1 0.0.20250430 → 0.0.20250514
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 +6 -1
- 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: 20250514
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -43,6 +43,7 @@ declare namespace gapi.client {
|
|
|
43
43
|
initialUser?: UserPassword;
|
|
44
44
|
/** Labels for the AlloyDB cluster created by DMS. An object containing a list of 'key', 'value' pairs. */
|
|
45
45
|
labels?: {[P in string]: string};
|
|
46
|
+
/** Settings for the cluster's primary instance */
|
|
46
47
|
primaryInstanceSettings?: PrimaryInstanceSettings;
|
|
47
48
|
/** Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: "projects/{project_number}/global/networks/{network_id}". This is required to create a cluster. */
|
|
48
49
|
vpcNetwork?: string;
|
|
@@ -297,6 +298,8 @@ declare namespace gapi.client {
|
|
|
297
298
|
createTime?: string;
|
|
298
299
|
/** Required. The destination engine details. */
|
|
299
300
|
destination?: DatabaseEngineInfo;
|
|
301
|
+
/** Optional. The provider for the destination database. */
|
|
302
|
+
destinationProvider?: string;
|
|
300
303
|
/** Optional. The display name for the workspace. */
|
|
301
304
|
displayName?: string;
|
|
302
305
|
/** Optional. A generic list of settings for the workspace. The settings are database pair dependant and can indicate default behavior for the mapping rules engine or turn on or off specific features. Such examples can be: convert_foreign_key_to_interleave=true, skip_triggers=false, ignore_non_table_synonyms=true */
|
|
@@ -311,6 +314,8 @@ declare namespace gapi.client {
|
|
|
311
314
|
name?: string;
|
|
312
315
|
/** Required. The source engine details. */
|
|
313
316
|
source?: DatabaseEngineInfo;
|
|
317
|
+
/** Optional. The provider for the source database. */
|
|
318
|
+
sourceProvider?: string;
|
|
314
319
|
/** Output only. The timestamp when the workspace resource was last updated. */
|
|
315
320
|
updateTime?: string;
|
|
316
321
|
}
|