tencentcloud-sdk-nodejs 4.0.547 → 4.0.548
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/CHANGELOG.md +192 -0
- package/SERVICE_CHANGELOG.md +260 -87
- package/package.json +1 -1
- package/products.md +18 -18
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cdc/v20201214/cdc_models.ts +14 -14
- package/src/services/cdn/v20180606/cdn_client.ts +32 -19
- package/src/services/cdn/v20180606/cdn_models.ts +163 -10
- package/src/services/cfw/v20190904/cfw_client.ts +44 -7
- package/src/services/cfw/v20190904/cfw_models.ts +117 -6
- package/src/services/dasb/v20191018/dasb_client.ts +279 -60
- package/src/services/dasb/v20191018/dasb_models.ts +1314 -714
- package/src/services/eb/v20210416/eb_client.ts +3 -1
- package/src/services/eb/v20210416/eb_models.ts +105 -25
- package/src/services/essbasic/v20210526/essbasic_models.ts +1 -1
- package/src/services/lcic/v20220817/lcic_client.ts +16 -2
- package/src/services/lcic/v20220817/lcic_models.ts +129 -16
- package/src/services/lighthouse/v20200324/lighthouse_client.ts +2 -3
- package/src/services/lighthouse/v20200324/lighthouse_models.ts +5 -5
- package/src/services/postgres/v20170312/postgres_models.ts +1 -1
- package/src/services/teo/v20220901/teo_models.ts +3 -1
- package/src/services/thpc/v20220401/thpc_models.ts +3 -2
- package/src/services/vpc/v20170312/vpc_client.ts +4 -3
- package/src/services/vpc/v20170312/vpc_models.ts +18 -8
- package/src/services/wedata/v20210820/wedata_models.ts +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cdc/v20201214/cdc_models.d.ts +14 -14
- package/tencentcloud/services/cdn/v20180606/cdn_client.d.ts +11 -7
- package/tencentcloud/services/cdn/v20180606/cdn_client.js +15 -9
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +137 -10
- package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +15 -3
- package/tencentcloud/services/cfw/v20190904/cfw_client.js +21 -3
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +102 -6
- package/tencentcloud/services/dasb/v20191018/dasb_client.d.ts +81 -9
- package/tencentcloud/services/dasb/v20191018/dasb_client.js +120 -12
- package/tencentcloud/services/dasb/v20191018/dasb_models.d.ts +1183 -664
- package/tencentcloud/services/eb/v20210416/eb_models.d.ts +91 -24
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +1 -1
- package/tencentcloud/services/lcic/v20220817/lcic_client.d.ts +5 -1
- package/tencentcloud/services/lcic/v20220817/lcic_client.js +6 -0
- package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +112 -16
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_client.d.ts +2 -3
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_client.js +2 -3
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +5 -5
- package/tencentcloud/services/postgres/v20170312/postgres_models.d.ts +1 -1
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +3 -1
- package/tencentcloud/services/thpc/v20220401/thpc_models.d.ts +2 -1
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +2 -1
- package/tencentcloud/services/vpc/v20170312/vpc_client.js +2 -1
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +16 -8
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +1 -1
- package/test/cdn.v20180606.test.js +16 -6
- package/test/cfw.v20190904.test.js +32 -2
- package/test/dasb.v20191018.test.js +188 -8
- package/test/lcic.v20220817.test.js +10 -0
|
@@ -1493,11 +1493,11 @@ export interface DescribeIpGeolocationInfosResponse {
|
|
|
1493
1493
|
/**
|
|
1494
1494
|
* IP地址信息列表。
|
|
1495
1495
|
*/
|
|
1496
|
-
AddressInfo
|
|
1496
|
+
AddressInfo?: Array<IpGeolocationInfo>;
|
|
1497
1497
|
/**
|
|
1498
1498
|
* IP地址信息个数。
|
|
1499
1499
|
*/
|
|
1500
|
-
Total
|
|
1500
|
+
Total?: number;
|
|
1501
1501
|
/**
|
|
1502
1502
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1503
1503
|
*/
|
|
@@ -1916,11 +1916,11 @@ export interface DescribeIpGeolocationDatabaseUrlResponse {
|
|
|
1916
1916
|
/**
|
|
1917
1917
|
* IP地理位置库下载链接地址。
|
|
1918
1918
|
*/
|
|
1919
|
-
DownLoadUrl
|
|
1919
|
+
DownLoadUrl?: string;
|
|
1920
1920
|
/**
|
|
1921
1921
|
* 链接到期时间。按照`ISO8601`标准表示,并且使用`UTC`时间。
|
|
1922
1922
|
*/
|
|
1923
|
-
ExpiredAt
|
|
1923
|
+
ExpiredAt?: string;
|
|
1924
1924
|
/**
|
|
1925
1925
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1926
1926
|
*/
|
|
@@ -7984,13 +7984,21 @@ export interface AssociateDirectConnectGatewayNatGatewayRequest {
|
|
|
7984
7984
|
*/
|
|
7985
7985
|
export interface AddressTemplateItem {
|
|
7986
7986
|
/**
|
|
7987
|
-
*
|
|
7987
|
+
* ipm-xxxxxxxx
|
|
7988
|
+
*/
|
|
7989
|
+
AddressTemplateId?: string;
|
|
7990
|
+
/**
|
|
7991
|
+
* IP模板名称
|
|
7992
|
+
*/
|
|
7993
|
+
AddressTemplateName?: string;
|
|
7994
|
+
/**
|
|
7995
|
+
* 废弃字段
|
|
7988
7996
|
*/
|
|
7989
|
-
From
|
|
7997
|
+
From?: string;
|
|
7990
7998
|
/**
|
|
7991
|
-
*
|
|
7999
|
+
* 废弃字段
|
|
7992
8000
|
*/
|
|
7993
|
-
To
|
|
8001
|
+
To?: string;
|
|
7994
8002
|
}
|
|
7995
8003
|
/**
|
|
7996
8004
|
* ModifyAddressAttribute返回参数结构体
|
|
@@ -11682,7 +11682,7 @@ export interface DescribeInLongTkeClusterListRequest {
|
|
|
11682
11682
|
*/
|
|
11683
11683
|
ClusterName?: string;
|
|
11684
11684
|
/**
|
|
11685
|
-
* TKE集群状态 (Running 运行中 Creating 创建中
|
|
11685
|
+
* TKE集群状态 (Running 运行中 Creating 创建中 Idling 闲置中 Abnormal 异常 Failed 异常 Deleting 删除中 Scaling 规模调整中 Upgrading 升级中 Isolated 欠费隔离中 NodeUpgrading 节点升级中 Recovering 唤醒中 Activating 激活中 MasterScaling Master扩缩容中 Waiting 等待注册 ClusterLevelUpgrading 调整规格中 ResourceIsolate 隔离中 ResourceIsolated 已隔离 ResourceReverse 冲正中 Trading 集群开通中 ResourceReversal 集群冲正 ClusterLevelTrading 集群变配交易中)
|
|
11686
11686
|
多个状态用逗号连接。
|
|
11687
11687
|
*/
|
|
11688
11688
|
Status?: string;
|
|
@@ -158,9 +158,9 @@ it("cdn.v20180606.DescribeCdnData", async function () {
|
|
|
158
158
|
}
|
|
159
159
|
})
|
|
160
160
|
|
|
161
|
-
it("cdn.v20180606.
|
|
161
|
+
it("cdn.v20180606.DescribeHttpsPackages", async function () {
|
|
162
162
|
try {
|
|
163
|
-
const data = await client.
|
|
163
|
+
const data = await client.DescribeHttpsPackages({})
|
|
164
164
|
expect(data).to.be.ok
|
|
165
165
|
} catch(error) {
|
|
166
166
|
expect(error.requestId).to.be.ok
|
|
@@ -268,9 +268,9 @@ it("cdn.v20180606.DescribeDDoSData", async function () {
|
|
|
268
268
|
}
|
|
269
269
|
})
|
|
270
270
|
|
|
271
|
-
it("cdn.v20180606.
|
|
271
|
+
it("cdn.v20180606.DisableCaches", async function () {
|
|
272
272
|
try {
|
|
273
|
-
const data = await client.
|
|
273
|
+
const data = await client.DisableCaches({})
|
|
274
274
|
expect(data).to.be.ok
|
|
275
275
|
} catch(error) {
|
|
276
276
|
expect(error.requestId).to.be.ok
|
|
@@ -458,6 +458,16 @@ it("cdn.v20180606.DescribePurgeTasks", async function () {
|
|
|
458
458
|
}
|
|
459
459
|
})
|
|
460
460
|
|
|
461
|
+
it("cdn.v20180606.ListTopClsLogData", async function () {
|
|
462
|
+
try {
|
|
463
|
+
const data = await client.ListTopClsLogData({})
|
|
464
|
+
expect(data).to.be.ok
|
|
465
|
+
} catch(error) {
|
|
466
|
+
expect(error.requestId).to.be.ok
|
|
467
|
+
expect(error.code).to.be.ok
|
|
468
|
+
}
|
|
469
|
+
})
|
|
470
|
+
|
|
461
471
|
it("cdn.v20180606.DescribeUrlViolations", async function () {
|
|
462
472
|
try {
|
|
463
473
|
const data = await client.DescribeUrlViolations({})
|
|
@@ -798,9 +808,9 @@ it("cdn.v20180606.EnableCaches", async function () {
|
|
|
798
808
|
}
|
|
799
809
|
})
|
|
800
810
|
|
|
801
|
-
it("cdn.v20180606.
|
|
811
|
+
it("cdn.v20180606.ListScdnTopBotData", async function () {
|
|
802
812
|
try {
|
|
803
|
-
const data = await client.
|
|
813
|
+
const data = await client.ListScdnTopBotData({})
|
|
804
814
|
expect(data).to.be.ok
|
|
805
815
|
} catch(error) {
|
|
806
816
|
expect(error.requestId).to.be.ok
|
|
@@ -308,6 +308,16 @@ it("cfw.v20190904.DescribeIPStatusList", async function () {
|
|
|
308
308
|
}
|
|
309
309
|
})
|
|
310
310
|
|
|
311
|
+
it("cfw.v20190904.ModifyEnterpriseSecurityGroupRule", async function () {
|
|
312
|
+
try {
|
|
313
|
+
const data = await client.ModifyEnterpriseSecurityGroupRule({})
|
|
314
|
+
expect(data).to.be.ok
|
|
315
|
+
} catch(error) {
|
|
316
|
+
expect(error.requestId).to.be.ok
|
|
317
|
+
expect(error.code).to.be.ok
|
|
318
|
+
}
|
|
319
|
+
})
|
|
320
|
+
|
|
311
321
|
it("cfw.v20190904.DescribeDefenseSwitch", async function () {
|
|
312
322
|
try {
|
|
313
323
|
const data = await client.DescribeDefenseSwitch({})
|
|
@@ -338,6 +348,16 @@ it("cfw.v20190904.ModifyRunSyncAsset", async function () {
|
|
|
338
348
|
}
|
|
339
349
|
})
|
|
340
350
|
|
|
351
|
+
it("cfw.v20190904.ModifyNatSequenceRules", async function () {
|
|
352
|
+
try {
|
|
353
|
+
const data = await client.ModifyNatSequenceRules({})
|
|
354
|
+
expect(data).to.be.ok
|
|
355
|
+
} catch(error) {
|
|
356
|
+
expect(error.requestId).to.be.ok
|
|
357
|
+
expect(error.code).to.be.ok
|
|
358
|
+
}
|
|
359
|
+
})
|
|
360
|
+
|
|
341
361
|
it("cfw.v20190904.ModifyNatFwVpcDnsSwitch", async function () {
|
|
342
362
|
try {
|
|
343
363
|
const data = await client.ModifyNatFwVpcDnsSwitch({})
|
|
@@ -418,6 +438,16 @@ it("cfw.v20190904.DescribeUnHandleEventTabList", async function () {
|
|
|
418
438
|
}
|
|
419
439
|
})
|
|
420
440
|
|
|
441
|
+
it("cfw.v20190904.ModifyNatFwSwitch", async function () {
|
|
442
|
+
try {
|
|
443
|
+
const data = await client.ModifyNatFwSwitch({})
|
|
444
|
+
expect(data).to.be.ok
|
|
445
|
+
} catch(error) {
|
|
446
|
+
expect(error.requestId).to.be.ok
|
|
447
|
+
expect(error.code).to.be.ok
|
|
448
|
+
}
|
|
449
|
+
})
|
|
450
|
+
|
|
421
451
|
it("cfw.v20190904.DescribeSourceAsset", async function () {
|
|
422
452
|
try {
|
|
423
453
|
const data = await client.DescribeSourceAsset({})
|
|
@@ -588,9 +618,9 @@ it("cfw.v20190904.ModifySecurityGroupSequenceRules", async function () {
|
|
|
588
618
|
}
|
|
589
619
|
})
|
|
590
620
|
|
|
591
|
-
it("cfw.v20190904.
|
|
621
|
+
it("cfw.v20190904.ModifyEnterpriseSecurityDispatchStatus", async function () {
|
|
592
622
|
try {
|
|
593
|
-
const data = await client.
|
|
623
|
+
const data = await client.ModifyEnterpriseSecurityDispatchStatus({})
|
|
594
624
|
expect(data).to.be.ok
|
|
595
625
|
} catch(error) {
|
|
596
626
|
expect(error.requestId).to.be.ok
|
|
@@ -18,6 +18,16 @@ const client = new tencentcloud.dasb.v20191018.Client({
|
|
|
18
18
|
})
|
|
19
19
|
describe("dasb.v20191018.test.js", function () {
|
|
20
20
|
|
|
21
|
+
it("dasb.v20191018.ModifyDeviceGroup", async function () {
|
|
22
|
+
try {
|
|
23
|
+
const data = await client.ModifyDeviceGroup({})
|
|
24
|
+
expect(data).to.be.ok
|
|
25
|
+
} catch(error) {
|
|
26
|
+
expect(error.requestId).to.be.ok
|
|
27
|
+
expect(error.code).to.be.ok
|
|
28
|
+
}
|
|
29
|
+
})
|
|
30
|
+
|
|
21
31
|
it("dasb.v20191018.DescribeDeviceGroupMembers", async function () {
|
|
22
32
|
try {
|
|
23
33
|
const data = await client.DescribeDeviceGroupMembers({})
|
|
@@ -38,6 +48,36 @@ it("dasb.v20191018.CreateDeviceGroup", async function () {
|
|
|
38
48
|
}
|
|
39
49
|
})
|
|
40
50
|
|
|
51
|
+
it("dasb.v20191018.DescribeDeviceAccounts", async function () {
|
|
52
|
+
try {
|
|
53
|
+
const data = await client.DescribeDeviceAccounts({})
|
|
54
|
+
expect(data).to.be.ok
|
|
55
|
+
} catch(error) {
|
|
56
|
+
expect(error.requestId).to.be.ok
|
|
57
|
+
expect(error.code).to.be.ok
|
|
58
|
+
}
|
|
59
|
+
})
|
|
60
|
+
|
|
61
|
+
it("dasb.v20191018.ResetUser", async function () {
|
|
62
|
+
try {
|
|
63
|
+
const data = await client.ResetUser({})
|
|
64
|
+
expect(data).to.be.ok
|
|
65
|
+
} catch(error) {
|
|
66
|
+
expect(error.requestId).to.be.ok
|
|
67
|
+
expect(error.code).to.be.ok
|
|
68
|
+
}
|
|
69
|
+
})
|
|
70
|
+
|
|
71
|
+
it("dasb.v20191018.DeleteDevices", async function () {
|
|
72
|
+
try {
|
|
73
|
+
const data = await client.DeleteDevices({})
|
|
74
|
+
expect(data).to.be.ok
|
|
75
|
+
} catch(error) {
|
|
76
|
+
expect(error.requestId).to.be.ok
|
|
77
|
+
expect(error.code).to.be.ok
|
|
78
|
+
}
|
|
79
|
+
})
|
|
80
|
+
|
|
41
81
|
it("dasb.v20191018.AddUserGroupMembers", async function () {
|
|
42
82
|
try {
|
|
43
83
|
const data = await client.AddUserGroupMembers({})
|
|
@@ -48,9 +88,29 @@ it("dasb.v20191018.AddUserGroupMembers", async function () {
|
|
|
48
88
|
}
|
|
49
89
|
})
|
|
50
90
|
|
|
51
|
-
it("dasb.v20191018.
|
|
91
|
+
it("dasb.v20191018.DescribeUserGroups", async function () {
|
|
52
92
|
try {
|
|
53
|
-
const data = await client.
|
|
93
|
+
const data = await client.DescribeUserGroups({})
|
|
94
|
+
expect(data).to.be.ok
|
|
95
|
+
} catch(error) {
|
|
96
|
+
expect(error.requestId).to.be.ok
|
|
97
|
+
expect(error.code).to.be.ok
|
|
98
|
+
}
|
|
99
|
+
})
|
|
100
|
+
|
|
101
|
+
it("dasb.v20191018.DeployResource", async function () {
|
|
102
|
+
try {
|
|
103
|
+
const data = await client.DeployResource({})
|
|
104
|
+
expect(data).to.be.ok
|
|
105
|
+
} catch(error) {
|
|
106
|
+
expect(error.requestId).to.be.ok
|
|
107
|
+
expect(error.code).to.be.ok
|
|
108
|
+
}
|
|
109
|
+
})
|
|
110
|
+
|
|
111
|
+
it("dasb.v20191018.ModifyDevice", async function () {
|
|
112
|
+
try {
|
|
113
|
+
const data = await client.ModifyDevice({})
|
|
54
114
|
expect(data).to.be.ok
|
|
55
115
|
} catch(error) {
|
|
56
116
|
expect(error.requestId).to.be.ok
|
|
@@ -68,9 +128,9 @@ it("dasb.v20191018.BindDeviceResource", async function () {
|
|
|
68
128
|
}
|
|
69
129
|
})
|
|
70
130
|
|
|
71
|
-
it("dasb.v20191018.
|
|
131
|
+
it("dasb.v20191018.BindDeviceAccountPassword", async function () {
|
|
72
132
|
try {
|
|
73
|
-
const data = await client.
|
|
133
|
+
const data = await client.BindDeviceAccountPassword({})
|
|
74
134
|
expect(data).to.be.ok
|
|
75
135
|
} catch(error) {
|
|
76
136
|
expect(error.requestId).to.be.ok
|
|
@@ -78,9 +138,9 @@ it("dasb.v20191018.DeleteAcls", async function () {
|
|
|
78
138
|
}
|
|
79
139
|
})
|
|
80
140
|
|
|
81
|
-
it("dasb.v20191018.
|
|
141
|
+
it("dasb.v20191018.DeleteAcls", async function () {
|
|
82
142
|
try {
|
|
83
|
-
const data = await client.
|
|
143
|
+
const data = await client.DeleteAcls({})
|
|
84
144
|
expect(data).to.be.ok
|
|
85
145
|
} catch(error) {
|
|
86
146
|
expect(error.requestId).to.be.ok
|
|
@@ -108,6 +168,36 @@ it("dasb.v20191018.DeleteUserGroupMembers", async function () {
|
|
|
108
168
|
}
|
|
109
169
|
})
|
|
110
170
|
|
|
171
|
+
it("dasb.v20191018.CreateAssetSyncJob", async function () {
|
|
172
|
+
try {
|
|
173
|
+
const data = await client.CreateAssetSyncJob({})
|
|
174
|
+
expect(data).to.be.ok
|
|
175
|
+
} catch(error) {
|
|
176
|
+
expect(error.requestId).to.be.ok
|
|
177
|
+
expect(error.code).to.be.ok
|
|
178
|
+
}
|
|
179
|
+
})
|
|
180
|
+
|
|
181
|
+
it("dasb.v20191018.DescribeAcls", async function () {
|
|
182
|
+
try {
|
|
183
|
+
const data = await client.DescribeAcls({})
|
|
184
|
+
expect(data).to.be.ok
|
|
185
|
+
} catch(error) {
|
|
186
|
+
expect(error.requestId).to.be.ok
|
|
187
|
+
expect(error.code).to.be.ok
|
|
188
|
+
}
|
|
189
|
+
})
|
|
190
|
+
|
|
191
|
+
it("dasb.v20191018.ResetDeviceAccountPassword", async function () {
|
|
192
|
+
try {
|
|
193
|
+
const data = await client.ResetDeviceAccountPassword({})
|
|
194
|
+
expect(data).to.be.ok
|
|
195
|
+
} catch(error) {
|
|
196
|
+
expect(error.requestId).to.be.ok
|
|
197
|
+
expect(error.code).to.be.ok
|
|
198
|
+
}
|
|
199
|
+
})
|
|
200
|
+
|
|
111
201
|
it("dasb.v20191018.DeleteDeviceGroups", async function () {
|
|
112
202
|
try {
|
|
113
203
|
const data = await client.DeleteDeviceGroups({})
|
|
@@ -158,9 +248,9 @@ it("dasb.v20191018.DescribeDasbImageIds", async function () {
|
|
|
158
248
|
}
|
|
159
249
|
})
|
|
160
250
|
|
|
161
|
-
it("dasb.v20191018.
|
|
251
|
+
it("dasb.v20191018.CreateDeviceAccount", async function () {
|
|
162
252
|
try {
|
|
163
|
-
const data = await client.
|
|
253
|
+
const data = await client.CreateDeviceAccount({})
|
|
164
254
|
expect(data).to.be.ok
|
|
165
255
|
} catch(error) {
|
|
166
256
|
expect(error.requestId).to.be.ok
|
|
@@ -178,6 +268,16 @@ it("dasb.v20191018.DeleteDeviceGroupMembers", async function () {
|
|
|
178
268
|
}
|
|
179
269
|
})
|
|
180
270
|
|
|
271
|
+
it("dasb.v20191018.DeleteDeviceAccounts", async function () {
|
|
272
|
+
try {
|
|
273
|
+
const data = await client.DeleteDeviceAccounts({})
|
|
274
|
+
expect(data).to.be.ok
|
|
275
|
+
} catch(error) {
|
|
276
|
+
expect(error.requestId).to.be.ok
|
|
277
|
+
expect(error.code).to.be.ok
|
|
278
|
+
}
|
|
279
|
+
})
|
|
280
|
+
|
|
181
281
|
it("dasb.v20191018.DeleteUserGroups", async function () {
|
|
182
282
|
try {
|
|
183
283
|
const data = await client.DeleteUserGroups({})
|
|
@@ -188,6 +288,16 @@ it("dasb.v20191018.DeleteUserGroups", async function () {
|
|
|
188
288
|
}
|
|
189
289
|
})
|
|
190
290
|
|
|
291
|
+
it("dasb.v20191018.CreateCmdTemplate", async function () {
|
|
292
|
+
try {
|
|
293
|
+
const data = await client.CreateCmdTemplate({})
|
|
294
|
+
expect(data).to.be.ok
|
|
295
|
+
} catch(error) {
|
|
296
|
+
expect(error.requestId).to.be.ok
|
|
297
|
+
expect(error.code).to.be.ok
|
|
298
|
+
}
|
|
299
|
+
})
|
|
300
|
+
|
|
191
301
|
it("dasb.v20191018.ModifyUser", async function () {
|
|
192
302
|
try {
|
|
193
303
|
const data = await client.ModifyUser({})
|
|
@@ -198,6 +308,36 @@ it("dasb.v20191018.ModifyUser", async function () {
|
|
|
198
308
|
}
|
|
199
309
|
})
|
|
200
310
|
|
|
311
|
+
it("dasb.v20191018.DescribeCmdTemplates", async function () {
|
|
312
|
+
try {
|
|
313
|
+
const data = await client.DescribeCmdTemplates({})
|
|
314
|
+
expect(data).to.be.ok
|
|
315
|
+
} catch(error) {
|
|
316
|
+
expect(error.requestId).to.be.ok
|
|
317
|
+
expect(error.code).to.be.ok
|
|
318
|
+
}
|
|
319
|
+
})
|
|
320
|
+
|
|
321
|
+
it("dasb.v20191018.DeleteCmdTemplates", async function () {
|
|
322
|
+
try {
|
|
323
|
+
const data = await client.DeleteCmdTemplates({})
|
|
324
|
+
expect(data).to.be.ok
|
|
325
|
+
} catch(error) {
|
|
326
|
+
expect(error.requestId).to.be.ok
|
|
327
|
+
expect(error.code).to.be.ok
|
|
328
|
+
}
|
|
329
|
+
})
|
|
330
|
+
|
|
331
|
+
it("dasb.v20191018.DescribeAssetSyncStatus", async function () {
|
|
332
|
+
try {
|
|
333
|
+
const data = await client.DescribeAssetSyncStatus({})
|
|
334
|
+
expect(data).to.be.ok
|
|
335
|
+
} catch(error) {
|
|
336
|
+
expect(error.requestId).to.be.ok
|
|
337
|
+
expect(error.code).to.be.ok
|
|
338
|
+
}
|
|
339
|
+
})
|
|
340
|
+
|
|
201
341
|
it("dasb.v20191018.DescribeDeviceGroups", async function () {
|
|
202
342
|
try {
|
|
203
343
|
const data = await client.DescribeDeviceGroups({})
|
|
@@ -208,6 +348,16 @@ it("dasb.v20191018.DescribeDeviceGroups", async function () {
|
|
|
208
348
|
}
|
|
209
349
|
})
|
|
210
350
|
|
|
351
|
+
it("dasb.v20191018.DescribeUsers", async function () {
|
|
352
|
+
try {
|
|
353
|
+
const data = await client.DescribeUsers({})
|
|
354
|
+
expect(data).to.be.ok
|
|
355
|
+
} catch(error) {
|
|
356
|
+
expect(error.requestId).to.be.ok
|
|
357
|
+
expect(error.code).to.be.ok
|
|
358
|
+
}
|
|
359
|
+
})
|
|
360
|
+
|
|
211
361
|
it("dasb.v20191018.DescribeDevices", async function () {
|
|
212
362
|
try {
|
|
213
363
|
const data = await client.DescribeDevices({})
|
|
@@ -228,6 +378,16 @@ it("dasb.v20191018.DescribeUserGroupMembers", async function () {
|
|
|
228
378
|
}
|
|
229
379
|
})
|
|
230
380
|
|
|
381
|
+
it("dasb.v20191018.ImportExternalDevice", async function () {
|
|
382
|
+
try {
|
|
383
|
+
const data = await client.ImportExternalDevice({})
|
|
384
|
+
expect(data).to.be.ok
|
|
385
|
+
} catch(error) {
|
|
386
|
+
expect(error.requestId).to.be.ok
|
|
387
|
+
expect(error.code).to.be.ok
|
|
388
|
+
}
|
|
389
|
+
})
|
|
390
|
+
|
|
231
391
|
it("dasb.v20191018.AddDeviceGroupMembers", async function () {
|
|
232
392
|
try {
|
|
233
393
|
const data = await client.AddDeviceGroupMembers({})
|
|
@@ -248,6 +408,16 @@ it("dasb.v20191018.CreateUserGroup", async function () {
|
|
|
248
408
|
}
|
|
249
409
|
})
|
|
250
410
|
|
|
411
|
+
it("dasb.v20191018.ResetDeviceAccountPrivateKey", async function () {
|
|
412
|
+
try {
|
|
413
|
+
const data = await client.ResetDeviceAccountPrivateKey({})
|
|
414
|
+
expect(data).to.be.ok
|
|
415
|
+
} catch(error) {
|
|
416
|
+
expect(error.requestId).to.be.ok
|
|
417
|
+
expect(error.code).to.be.ok
|
|
418
|
+
}
|
|
419
|
+
})
|
|
420
|
+
|
|
251
421
|
it("dasb.v20191018.CreateUser", async function () {
|
|
252
422
|
try {
|
|
253
423
|
const data = await client.CreateUser({})
|
|
@@ -258,4 +428,14 @@ it("dasb.v20191018.CreateUser", async function () {
|
|
|
258
428
|
}
|
|
259
429
|
})
|
|
260
430
|
|
|
431
|
+
it("dasb.v20191018.BindDeviceAccountPrivateKey", async function () {
|
|
432
|
+
try {
|
|
433
|
+
const data = await client.BindDeviceAccountPrivateKey({})
|
|
434
|
+
expect(data).to.be.ok
|
|
435
|
+
} catch(error) {
|
|
436
|
+
expect(error.requestId).to.be.ok
|
|
437
|
+
expect(error.code).to.be.ok
|
|
438
|
+
}
|
|
439
|
+
})
|
|
440
|
+
|
|
261
441
|
})
|
|
@@ -28,6 +28,16 @@ it("lcic.v20220817.AddGroupMember", async function () {
|
|
|
28
28
|
}
|
|
29
29
|
})
|
|
30
30
|
|
|
31
|
+
it("lcic.v20220817.GetRoomMessage", async function () {
|
|
32
|
+
try {
|
|
33
|
+
const data = await client.GetRoomMessage({})
|
|
34
|
+
expect(data).to.be.ok
|
|
35
|
+
} catch(error) {
|
|
36
|
+
expect(error.requestId).to.be.ok
|
|
37
|
+
expect(error.code).to.be.ok
|
|
38
|
+
}
|
|
39
|
+
})
|
|
40
|
+
|
|
31
41
|
it("lcic.v20220817.SetWatermark", async function () {
|
|
32
42
|
try {
|
|
33
43
|
const data = await client.SetWatermark({})
|