@alicloud/dts20200101 1.5.0 → 1.5.1
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/dist/client.d.ts +3 -0
- package/dist/client.js +9 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +13 -0
package/dist/client.d.ts
CHANGED
|
@@ -1585,6 +1585,7 @@ export declare class DescribeDtsJobDetailResponseBodyDataSynchronizationStatus e
|
|
|
1585
1585
|
});
|
|
1586
1586
|
}
|
|
1587
1587
|
export declare class DescribeDtsJobDetailResponseBodyDestinationEndpoint extends $dara.Model {
|
|
1588
|
+
aliyunUid?: string;
|
|
1588
1589
|
/**
|
|
1589
1590
|
* @remarks
|
|
1590
1591
|
* Indicates whether the password can be modified. Valid values:
|
|
@@ -1662,6 +1663,7 @@ export declare class DescribeDtsJobDetailResponseBodyDestinationEndpoint extends
|
|
|
1662
1663
|
* cn-hangzhou
|
|
1663
1664
|
*/
|
|
1664
1665
|
region?: string;
|
|
1666
|
+
roleName?: string;
|
|
1665
1667
|
/**
|
|
1666
1668
|
* @remarks
|
|
1667
1669
|
* Indicates whether SSL encryption is enabled. Valid values:
|
|
@@ -34743,6 +34745,7 @@ export declare class ModifyDtsJobEndpointRequest extends $dara.Model {
|
|
|
34743
34745
|
* dtstest
|
|
34744
34746
|
*/
|
|
34745
34747
|
username?: string;
|
|
34748
|
+
zeroEtlJob?: boolean;
|
|
34746
34749
|
static names(): {
|
|
34747
34750
|
[key: string]: string;
|
|
34748
34751
|
};
|
package/dist/client.js
CHANGED
|
@@ -744,6 +744,7 @@ exports.DescribeDtsJobDetailResponseBodyDataSynchronizationStatus = DescribeDtsJ
|
|
|
744
744
|
class DescribeDtsJobDetailResponseBodyDestinationEndpoint extends $dara.Model {
|
|
745
745
|
static names() {
|
|
746
746
|
return {
|
|
747
|
+
aliyunUid: 'AliyunUid',
|
|
747
748
|
canModifyPassword: 'CanModifyPassword',
|
|
748
749
|
databaseName: 'DatabaseName',
|
|
749
750
|
engineName: 'EngineName',
|
|
@@ -753,12 +754,14 @@ class DescribeDtsJobDetailResponseBodyDestinationEndpoint extends $dara.Model {
|
|
|
753
754
|
oracleSID: 'OracleSID',
|
|
754
755
|
port: 'Port',
|
|
755
756
|
region: 'Region',
|
|
757
|
+
roleName: 'RoleName',
|
|
756
758
|
sslSolutionEnum: 'SslSolutionEnum',
|
|
757
759
|
userName: 'UserName',
|
|
758
760
|
};
|
|
759
761
|
}
|
|
760
762
|
static types() {
|
|
761
763
|
return {
|
|
764
|
+
aliyunUid: 'string',
|
|
762
765
|
canModifyPassword: 'boolean',
|
|
763
766
|
databaseName: 'string',
|
|
764
767
|
engineName: 'string',
|
|
@@ -768,6 +771,7 @@ class DescribeDtsJobDetailResponseBodyDestinationEndpoint extends $dara.Model {
|
|
|
768
771
|
oracleSID: 'string',
|
|
769
772
|
port: 'string',
|
|
770
773
|
region: 'string',
|
|
774
|
+
roleName: 'string',
|
|
771
775
|
sslSolutionEnum: 'string',
|
|
772
776
|
userName: 'string',
|
|
773
777
|
};
|
|
@@ -17159,6 +17163,7 @@ class ModifyDtsJobEndpointRequest extends $dara.Model {
|
|
|
17159
17163
|
shardUsername: 'ShardUsername',
|
|
17160
17164
|
synchronizationDirection: 'SynchronizationDirection',
|
|
17161
17165
|
username: 'Username',
|
|
17166
|
+
zeroEtlJob: 'ZeroEtlJob',
|
|
17162
17167
|
};
|
|
17163
17168
|
}
|
|
17164
17169
|
static types() {
|
|
@@ -17183,6 +17188,7 @@ class ModifyDtsJobEndpointRequest extends $dara.Model {
|
|
|
17183
17188
|
shardUsername: 'string',
|
|
17184
17189
|
synchronizationDirection: 'string',
|
|
17185
17190
|
username: 'string',
|
|
17191
|
+
zeroEtlJob: 'boolean',
|
|
17186
17192
|
};
|
|
17187
17193
|
}
|
|
17188
17194
|
validate() {
|
|
@@ -26701,6 +26707,9 @@ class Client extends openapi_core_1.default {
|
|
|
26701
26707
|
if (!$dara.isNull(request.username)) {
|
|
26702
26708
|
query["Username"] = request.username;
|
|
26703
26709
|
}
|
|
26710
|
+
if (!$dara.isNull(request.zeroEtlJob)) {
|
|
26711
|
+
query["ZeroEtlJob"] = request.zeroEtlJob;
|
|
26712
|
+
}
|
|
26704
26713
|
let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
|
|
26705
26714
|
query: openapi_core_2.OpenApiUtil.query(query),
|
|
26706
26715
|
});
|