@alicloud/dts20200101 1.3.2 → 1.3.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/dts20200101",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
@@ -12,11 +12,11 @@
12
12
  "author": "Alibaba Cloud SDK",
13
13
  "license": "Apache-2.0",
14
14
  "devDependencies": {
15
- "@types/node": "^12.12.26",
15
+ "@types/node": "^16.0.0",
16
16
  "nyc": "^15.0.0",
17
17
  "source-map-support": "^0.5.16",
18
- "ts-node": "^8.6.2",
19
- "typescript": "^3.7.5"
18
+ "ts-node": "^10.0.0",
19
+ "typescript": "^5"
20
20
  },
21
21
  "dependencies": {
22
22
  "@alicloud/tea-typescript": "^1.7.1",
package/src/client.ts CHANGED
@@ -11742,6 +11742,8 @@ export class TransferPayTypeRequest extends $tea.Model {
11742
11742
  buyCount?: string;
11743
11743
  chargeType?: string;
11744
11744
  dtsJobId?: string;
11745
+ maxDu?: number;
11746
+ minDu?: number;
11745
11747
  period?: string;
11746
11748
  regionId?: string;
11747
11749
  resourceGroupId?: string;
@@ -11750,6 +11752,8 @@ export class TransferPayTypeRequest extends $tea.Model {
11750
11752
  buyCount: 'BuyCount',
11751
11753
  chargeType: 'ChargeType',
11752
11754
  dtsJobId: 'DtsJobId',
11755
+ maxDu: 'MaxDu',
11756
+ minDu: 'MinDu',
11753
11757
  period: 'Period',
11754
11758
  regionId: 'RegionId',
11755
11759
  resourceGroupId: 'ResourceGroupId',
@@ -11761,6 +11765,8 @@ export class TransferPayTypeRequest extends $tea.Model {
11761
11765
  buyCount: 'string',
11762
11766
  chargeType: 'string',
11763
11767
  dtsJobId: 'string',
11768
+ maxDu: 'number',
11769
+ minDu: 'number',
11764
11770
  period: 'string',
11765
11771
  regionId: 'string',
11766
11772
  resourceGroupId: 'string',
@@ -28225,6 +28231,14 @@ export default class Client extends OpenApi {
28225
28231
  query["DtsJobId"] = request.dtsJobId;
28226
28232
  }
28227
28233
 
28234
+ if (!Util.isUnset(request.maxDu)) {
28235
+ query["MaxDu"] = request.maxDu;
28236
+ }
28237
+
28238
+ if (!Util.isUnset(request.minDu)) {
28239
+ query["MinDu"] = request.minDu;
28240
+ }
28241
+
28228
28242
  if (!Util.isUnset(request.period)) {
28229
28243
  query["Period"] = request.period;
28230
28244
  }