@alicloud/dts20200101 1.5.2 → 1.5.4

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.
@@ -9,8 +9,6 @@ export class ModifySubscriptionRequest extends $dara.Model {
9
9
  *
10
10
  * > You can call the [DescribeDtsJobDetail](https://help.aliyun.com/document_detail/208925.html) operation to query the original objects of the task.
11
11
  *
12
- * This parameter is required.
13
- *
14
12
  * @example
15
13
  * {"dtstest":{"name":"dtstest","all":true}}
16
14
  */
@@ -31,6 +29,7 @@ export class ModifySubscriptionRequest extends $dara.Model {
31
29
  * boss6pn1w******
32
30
  */
33
31
  dtsJobId?: string;
32
+ modifyType?: string;
34
33
  /**
35
34
  * @remarks
36
35
  * The ID of the region where the change tracking instance resides. For more information, see [List of supported regions](https://help.aliyun.com/document_detail/141033.html).
@@ -39,6 +38,7 @@ export class ModifySubscriptionRequest extends $dara.Model {
39
38
  * cn-hangzhou
40
39
  */
41
40
  regionId?: string;
41
+ reserved?: string;
42
42
  /**
43
43
  * @remarks
44
44
  * Resource group ID.
@@ -54,8 +54,6 @@ export class ModifySubscriptionRequest extends $dara.Model {
54
54
  * * **true**: yes
55
55
  * * **false**: no
56
56
  *
57
- * This parameter is required.
58
- *
59
57
  * @example
60
58
  * true
61
59
  */
@@ -67,8 +65,6 @@ export class ModifySubscriptionRequest extends $dara.Model {
67
65
  * * **true**: yes
68
66
  * * **false**: no
69
67
  *
70
- * This parameter is required.
71
- *
72
68
  * @example
73
69
  * true
74
70
  */
@@ -78,7 +74,9 @@ export class ModifySubscriptionRequest extends $dara.Model {
78
74
  dbList: 'DbList',
79
75
  dtsInstanceId: 'DtsInstanceId',
80
76
  dtsJobId: 'DtsJobId',
77
+ modifyType: 'ModifyType',
81
78
  regionId: 'RegionId',
79
+ reserved: 'Reserved',
82
80
  resourceGroupId: 'ResourceGroupId',
83
81
  subscriptionDataTypeDDL: 'SubscriptionDataTypeDDL',
84
82
  subscriptionDataTypeDML: 'SubscriptionDataTypeDML',
@@ -90,7 +88,9 @@ export class ModifySubscriptionRequest extends $dara.Model {
90
88
  dbList: 'string',
91
89
  dtsInstanceId: 'string',
92
90
  dtsJobId: 'string',
91
+ modifyType: 'string',
93
92
  regionId: 'string',
93
+ reserved: 'string',
94
94
  resourceGroupId: 'string',
95
95
  subscriptionDataTypeDDL: 'boolean',
96
96
  subscriptionDataTypeDML: 'boolean',
@@ -8,6 +8,10 @@ export class PreCheckCreateGadOrderRequest extends $dara.Model {
8
8
  * gad-bp1i99e8l7913****
9
9
  */
10
10
  instanceId?: string;
11
+ masterDatabaseName?: string;
12
+ masterEngineArchType?: string;
13
+ masterShardAccountName?: string;
14
+ masterShardAccountPassword?: string;
11
15
  ownerId?: string;
12
16
  /**
13
17
  * @example
@@ -19,6 +23,7 @@ export class PreCheckCreateGadOrderRequest extends $dara.Model {
19
23
  * rg-acfntftbiobqyky
20
24
  */
21
25
  resourceGroupId?: string;
26
+ slaveDatabaseName?: string;
22
27
  /**
23
28
  * @example
24
29
  * rm-bp17562h64****
@@ -29,25 +34,38 @@ export class PreCheckCreateGadOrderRequest extends $dara.Model {
29
34
  * cn-hangzhou
30
35
  */
31
36
  slaveDbInstanceRegion?: string;
37
+ slaveEngineArchType?: string;
32
38
  static names(): { [key: string]: string } {
33
39
  return {
34
40
  instanceId: 'InstanceId',
41
+ masterDatabaseName: 'MasterDatabaseName',
42
+ masterEngineArchType: 'MasterEngineArchType',
43
+ masterShardAccountName: 'MasterShardAccountName',
44
+ masterShardAccountPassword: 'MasterShardAccountPassword',
35
45
  ownerId: 'OwnerId',
36
46
  regionId: 'RegionId',
37
47
  resourceGroupId: 'ResourceGroupId',
48
+ slaveDatabaseName: 'SlaveDatabaseName',
38
49
  slaveDbInstanceId: 'SlaveDbInstanceId',
39
50
  slaveDbInstanceRegion: 'SlaveDbInstanceRegion',
51
+ slaveEngineArchType: 'SlaveEngineArchType',
40
52
  };
41
53
  }
42
54
 
43
55
  static types(): { [key: string]: any } {
44
56
  return {
45
57
  instanceId: 'string',
58
+ masterDatabaseName: 'string',
59
+ masterEngineArchType: 'string',
60
+ masterShardAccountName: 'string',
61
+ masterShardAccountPassword: 'string',
46
62
  ownerId: 'string',
47
63
  regionId: 'string',
48
64
  resourceGroupId: 'string',
65
+ slaveDatabaseName: 'string',
49
66
  slaveDbInstanceId: 'string',
50
67
  slaveDbInstanceRegion: 'string',
68
+ slaveEngineArchType: 'string',
51
69
  };
52
70
  }
53
71