tencentcloud-sdk-nodejs 4.0.450 → 4.0.451

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.
Files changed (40) hide show
  1. package/CHANGELOG.md +132 -0
  2. package/SERVICE_CHANGELOG.md +165 -68
  3. package/package.json +1 -1
  4. package/products.md +9 -9
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/ciam/v20220331/ciam_client.ts +1 -0
  7. package/src/services/ciam/v20220331/ciam_models.ts +130 -2
  8. package/src/services/ckafka/v20190819/ckafka_models.ts +1 -1
  9. package/src/services/cloudstudio/v20210524/cloudstudio_client.ts +4 -4
  10. package/src/services/cloudstudio/v20210524/cloudstudio_models.ts +5 -5
  11. package/src/services/cpdp/v20190820/cpdp_client.ts +24 -12
  12. package/src/services/cpdp/v20190820/cpdp_models.ts +48 -0
  13. package/src/services/oceanus/v20190422/oceanus_models.ts +6 -0
  14. package/src/services/ocr/v20181119/ocr_client.ts +1 -0
  15. package/src/services/ocr/v20181119/ocr_models.ts +1 -2
  16. package/src/services/tem/v20210701/tem_client.ts +59 -11
  17. package/src/services/tem/v20210701/tem_models.ts +265 -102
  18. package/src/services/tse/v20201207/tse_models.ts +7 -2
  19. package/src/services/vod/v20180717/vod_models.ts +2 -0
  20. package/tencentcloud/common/sdk_version.d.ts +1 -1
  21. package/tencentcloud/common/sdk_version.js +1 -1
  22. package/tencentcloud/services/ciam/v20220331/ciam_models.d.ts +106 -2
  23. package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +1 -1
  24. package/tencentcloud/services/cloudstudio/v20210524/cloudstudio_client.d.ts +4 -4
  25. package/tencentcloud/services/cloudstudio/v20210524/cloudstudio_client.js +4 -4
  26. package/tencentcloud/services/cloudstudio/v20210524/cloudstudio_models.d.ts +5 -5
  27. package/tencentcloud/services/cpdp/v20190820/cpdp_client.d.ts +9 -5
  28. package/tencentcloud/services/cpdp/v20190820/cpdp_client.js +12 -6
  29. package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +41 -0
  30. package/tencentcloud/services/oceanus/v20190422/oceanus_models.d.ts +5 -0
  31. package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +1 -0
  32. package/tencentcloud/services/ocr/v20181119/ocr_client.js +1 -0
  33. package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +1 -2
  34. package/tencentcloud/services/tem/v20210701/tem_client.d.ts +19 -3
  35. package/tencentcloud/services/tem/v20210701/tem_client.js +27 -3
  36. package/tencentcloud/services/tem/v20210701/tem_models.d.ts +232 -93
  37. package/tencentcloud/services/tse/v20201207/tse_models.d.ts +6 -2
  38. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +2 -0
  39. package/test/cpdp.v20190820.test.js +14 -4
  40. package/test/tem.v20210701.test.js +42 -2
@@ -88,6 +88,27 @@ export interface ModifyIngressResponse {
88
88
  */
89
89
  RequestId?: string;
90
90
  }
91
+ /**
92
+ * DeleteApplicationService请求参数结构体
93
+ */
94
+ export interface DeleteApplicationServiceRequest {
95
+ /**
96
+ * 服务id
97
+ */
98
+ ApplicationId?: string;
99
+ /**
100
+ * 来源渠道
101
+ */
102
+ SourceChannel?: number;
103
+ /**
104
+ * 环境ID
105
+ */
106
+ EnvironmentId?: string;
107
+ /**
108
+ * 访问方式服务名
109
+ */
110
+ ServiceName?: string;
111
+ }
91
112
  /**
92
113
  * RestartApplicationPod请求参数结构体
93
114
  */
@@ -495,29 +516,33 @@ export interface RevertDeployApplicationResponse {
495
516
  RequestId?: string;
496
517
  }
497
518
  /**
498
- * 弹性伸缩配置
519
+ * 分批发布策略配置
499
520
  */
500
- export interface EsInfo {
521
+ export interface DeployStrategyConf {
501
522
  /**
502
- * 最小实例数
523
+ * 总分批数
503
524
  */
504
- MinAliveInstances: number;
525
+ TotalBatchCount?: number;
505
526
  /**
506
- * 最大实例数
527
+ * beta分批实例数
507
528
  */
508
- MaxAliveInstances: number;
529
+ BetaBatchNum?: number;
509
530
  /**
510
- * 弹性策略,1:cpu,2:内存
531
+ * 分批策略:0-全自动,1-全手动,2-beta分批,beta批一定是手动的,3-首次发布
511
532
  */
512
- EsStrategy: number;
533
+ DeployStrategyType?: number;
513
534
  /**
514
- * 弹性扩缩容条件值
535
+ * 每批暂停间隔
515
536
  */
516
- Threshold: number;
537
+ BatchInterval?: number;
517
538
  /**
518
- * 版本Id
539
+ * 最小可用实例数
519
540
  */
520
- VersionId?: string;
541
+ MinAvailable?: number;
542
+ /**
543
+ * 是否强制发布
544
+ */
545
+ Force?: boolean;
521
546
  }
522
547
  /**
523
548
  * DescribeApplications返回参数结构体
@@ -533,66 +558,29 @@ export interface DescribeApplicationsResponse {
533
558
  RequestId?: string;
534
559
  }
535
560
  /**
536
- * Ingress 配置
561
+ * CreateCosToken请求参数结构体
537
562
  */
538
- export interface IngressInfo {
539
- /**
540
- * 环境ID
541
- 注意:此字段可能返回 null,表示取不到有效值。
542
- */
543
- EnvironmentId: string;
544
- /**
545
- * 环境namespace
546
- */
547
- ClusterNamespace: string;
548
- /**
549
- * ip version
550
- */
551
- AddressIPVersion: string;
552
- /**
553
- * ingress name
554
- */
555
- IngressName: string;
556
- /**
557
- * rules 配置
558
- */
559
- Rules: Array<IngressRule>;
560
- /**
561
- * clb ID
562
- 注意:此字段可能返回 null,表示取不到有效值。
563
- */
564
- ClbId?: string;
565
- /**
566
- * tls 配置
567
- 注意:此字段可能返回 null,表示取不到有效值。
568
- */
569
- Tls?: Array<IngressTls>;
563
+ export interface CreateCosTokenRequest {
570
564
  /**
571
- * 环境集群ID
572
- 注意:此字段可能返回 null,表示取不到有效值。
565
+ * 应用ID
573
566
  */
574
- ClusterId?: string;
567
+ ApplicationId: string;
575
568
  /**
576
- * clb ip
577
- 注意:此字段可能返回 null,表示取不到有效值。
569
+ * 包名
578
570
  */
579
- Vip?: string;
571
+ PkgName: string;
580
572
  /**
581
- * 创建时间
582
- 注意:此字段可能返回 null,表示取不到有效值。
573
+ * optType 1上传 2查询
583
574
  */
584
- CreateTime?: string;
575
+ OptType: number;
585
576
  /**
586
- * 是否混合 https,默认 false,可选值 true 代表有 https 协议监听
577
+ * 来源 channel
587
578
  */
588
- Mixed?: boolean;
579
+ SourceChannel?: number;
589
580
  /**
590
- * 重定向模式,可选值:
591
- - AUTO(自动重定向http到https)
592
- - NONE(不使用重定向)
593
- 注意:此字段可能返回 null,表示取不到有效值。
581
+ * 充当deployVersion入参
594
582
  */
595
- RewriteType?: string;
583
+ TimeVersion?: string;
596
584
  }
597
585
  /**
598
586
  * DescribeEnvironments请求参数结构体
@@ -758,6 +746,19 @@ export interface NodeInfo {
758
746
  */
759
747
  Cidr: string;
760
748
  }
749
+ /**
750
+ * DescribeApplicationServiceList返回参数结构体
751
+ */
752
+ export interface DescribeApplicationServiceListResponse {
753
+ /**
754
+ * 应用 EKS Service 列表
755
+ */
756
+ Result: EksService;
757
+ /**
758
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
759
+ */
760
+ RequestId?: string;
761
+ }
761
762
  /**
762
763
  * DescribeLogConfig请求参数结构体
763
764
  */
@@ -864,33 +865,29 @@ export interface DescribeEnvironmentStatusResponse {
864
865
  RequestId?: string;
865
866
  }
866
867
  /**
867
- * 分批发布策略配置
868
+ * 弹性伸缩配置
868
869
  */
869
- export interface DeployStrategyConf {
870
- /**
871
- * 总分批数
872
- */
873
- TotalBatchCount?: number;
870
+ export interface EsInfo {
874
871
  /**
875
- * beta分批实例数
872
+ * 最小实例数
876
873
  */
877
- BetaBatchNum?: number;
874
+ MinAliveInstances: number;
878
875
  /**
879
- * 分批策略:0-全自动,1-全手动,2-beta分批,beta批一定是手动的,3-首次发布
876
+ * 最大实例数
880
877
  */
881
- DeployStrategyType?: number;
878
+ MaxAliveInstances: number;
882
879
  /**
883
- * 每批暂停间隔
880
+ * 弹性策略,1:cpu,2:内存
884
881
  */
885
- BatchInterval?: number;
882
+ EsStrategy: number;
886
883
  /**
887
- * 最小可用实例数
884
+ * 弹性扩缩容条件值
888
885
  */
889
- MinAvailable?: number;
886
+ Threshold: number;
890
887
  /**
891
- * 是否强制发布
888
+ * 版本Id
892
889
  */
893
- Force?: boolean;
890
+ VersionId?: string;
894
891
  }
895
892
  /**
896
893
  * DescribeApplicationPods返回参数结构体
@@ -1369,29 +1366,66 @@ export interface ServicePortMapping {
1369
1366
  PortMappingItemList?: Array<ServicePortMappingItem>;
1370
1367
  }
1371
1368
  /**
1372
- * CreateCosToken请求参数结构体
1369
+ * Ingress 配置
1373
1370
  */
1374
- export interface CreateCosTokenRequest {
1371
+ export interface IngressInfo {
1375
1372
  /**
1376
- * 应用ID
1373
+ * 环境ID
1374
+ 注意:此字段可能返回 null,表示取不到有效值。
1377
1375
  */
1378
- ApplicationId: string;
1376
+ EnvironmentId: string;
1379
1377
  /**
1380
- * 包名
1378
+ * 环境namespace
1381
1379
  */
1382
- PkgName: string;
1380
+ ClusterNamespace: string;
1383
1381
  /**
1384
- * optType 1上传 2查询
1382
+ * ip version
1385
1383
  */
1386
- OptType: number;
1384
+ AddressIPVersion: string;
1387
1385
  /**
1388
- * 来源 channel
1386
+ * ingress name
1389
1387
  */
1390
- SourceChannel?: number;
1388
+ IngressName: string;
1391
1389
  /**
1392
- * 充当deployVersion入参
1390
+ * rules 配置
1393
1391
  */
1394
- TimeVersion?: string;
1392
+ Rules: Array<IngressRule>;
1393
+ /**
1394
+ * clb ID
1395
+ 注意:此字段可能返回 null,表示取不到有效值。
1396
+ */
1397
+ ClbId?: string;
1398
+ /**
1399
+ * tls 配置
1400
+ 注意:此字段可能返回 null,表示取不到有效值。
1401
+ */
1402
+ Tls?: Array<IngressTls>;
1403
+ /**
1404
+ * 环境集群ID
1405
+ 注意:此字段可能返回 null,表示取不到有效值。
1406
+ */
1407
+ ClusterId?: string;
1408
+ /**
1409
+ * clb ip
1410
+ 注意:此字段可能返回 null,表示取不到有效值。
1411
+ */
1412
+ Vip?: string;
1413
+ /**
1414
+ * 创建时间
1415
+ 注意:此字段可能返回 null,表示取不到有效值。
1416
+ */
1417
+ CreateTime?: string;
1418
+ /**
1419
+ * 是否混合 https,默认 false,可选值 true 代表有 https 协议监听
1420
+ */
1421
+ Mixed?: boolean;
1422
+ /**
1423
+ * 重定向模式,可选值:
1424
+ - AUTO(自动重定向http到https)
1425
+ - NONE(不使用重定向)
1426
+ 注意:此字段可能返回 null,表示取不到有效值。
1427
+ */
1428
+ RewriteType?: string;
1395
1429
  }
1396
1430
  /**
1397
1431
  * ModifyApplicationAutoscaler请求参数结构体
@@ -1610,6 +1644,19 @@ export interface DescribeApplicationsStatusRequest {
1610
1644
  */
1611
1645
  EnvironmentId?: string;
1612
1646
  }
1647
+ /**
1648
+ * DescribeIngress返回参数结构体
1649
+ */
1650
+ export interface DescribeIngressResponse {
1651
+ /**
1652
+ * Ingress 规则配置
1653
+ */
1654
+ Result: IngressInfo;
1655
+ /**
1656
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1657
+ */
1658
+ RequestId?: string;
1659
+ }
1613
1660
  /**
1614
1661
  * 应用实例
1615
1662
  */
@@ -2267,6 +2314,23 @@ export interface CronHorizontalAutoscaler {
2267
2314
  */
2268
2315
  Priority?: number;
2269
2316
  }
2317
+ /**
2318
+ * DescribeApplicationServiceList请求参数结构体
2319
+ */
2320
+ export interface DescribeApplicationServiceListRequest {
2321
+ /**
2322
+ * namespace id
2323
+ */
2324
+ EnvironmentId: string;
2325
+ /**
2326
+ * 服务ID
2327
+ */
2328
+ ApplicationId: string;
2329
+ /**
2330
+ * xx
2331
+ */
2332
+ SourceChannel?: number;
2333
+ }
2270
2334
  /**
2271
2335
  * DescribeDeployApplicationDetail返回参数结构体
2272
2336
  */
@@ -2397,6 +2461,20 @@ export interface CreateApplicationAutoscalerRequest {
2397
2461
  */
2398
2462
  Autoscaler?: Autoscaler;
2399
2463
  }
2464
+ /**
2465
+ * DeleteApplicationService返回参数结构体
2466
+ */
2467
+ export interface DeleteApplicationServiceResponse {
2468
+ /**
2469
+ * 是否成功
2470
+ 注意:此字段可能返回 null,表示取不到有效值。
2471
+ */
2472
+ Result: boolean;
2473
+ /**
2474
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2475
+ */
2476
+ RequestId?: string;
2477
+ }
2400
2478
  /**
2401
2479
  * 配置
2402
2480
  */
@@ -2495,6 +2573,31 @@ export interface DescribeConfigDataListResponse {
2495
2573
  */
2496
2574
  RequestId?: string;
2497
2575
  }
2576
+ /**
2577
+ * ModifyApplicationService请求参数结构体
2578
+ */
2579
+ export interface ModifyApplicationServiceRequest {
2580
+ /**
2581
+ * 服务id
2582
+ */
2583
+ ApplicationId: string;
2584
+ /**
2585
+ * 环境ID
2586
+ */
2587
+ EnvironmentId: string;
2588
+ /**
2589
+ * 来源渠道
2590
+ */
2591
+ SourceChannel?: number;
2592
+ /**
2593
+ * 全量访问方式设置
2594
+ */
2595
+ Service?: EksService;
2596
+ /**
2597
+ * 单条访问方式设置
2598
+ */
2599
+ Data?: ServicePortMapping;
2600
+ }
2498
2601
  /**
2499
2602
  * DescribePagedLogConfigList返回参数结构体
2500
2603
  */
@@ -3097,6 +3200,27 @@ export interface DescribeRunPodPage {
3097
3200
  */
3098
3201
  PodList: Array<RunVersionPod>;
3099
3202
  }
3203
+ /**
3204
+ * CreateApplicationService请求参数结构体
3205
+ */
3206
+ export interface CreateApplicationServiceRequest {
3207
+ /**
3208
+ * 服务id
3209
+ */
3210
+ ApplicationId: string;
3211
+ /**
3212
+ * 环境ID
3213
+ */
3214
+ EnvironmentId: string;
3215
+ /**
3216
+ * 来源渠道
3217
+ */
3218
+ SourceChannel?: number;
3219
+ /**
3220
+ * 访问方式详情
3221
+ */
3222
+ Service?: ServicePortMapping;
3223
+ }
3100
3224
  /**
3101
3225
  * ModifyApplicationReplicas返回参数结构体
3102
3226
  */
@@ -3199,13 +3323,14 @@ export interface IngressRuleBackend {
3199
3323
  ServicePort: number;
3200
3324
  }
3201
3325
  /**
3202
- * DescribeIngress返回参数结构体
3326
+ * CreateApplicationService返回参数结构体
3203
3327
  */
3204
- export interface DescribeIngressResponse {
3328
+ export interface CreateApplicationServiceResponse {
3205
3329
  /**
3206
- * Ingress 规则配置
3330
+ * 是否成功
3331
+ 注意:此字段可能返回 null,表示取不到有效值。
3207
3332
  */
3208
- Result: IngressInfo;
3333
+ Result: boolean;
3209
3334
  /**
3210
3335
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3211
3336
  */
@@ -3371,6 +3496,20 @@ export interface HorizontalAutoscaler {
3371
3496
  */
3372
3497
  Enabled?: boolean;
3373
3498
  }
3499
+ /**
3500
+ * ModifyApplicationService返回参数结构体
3501
+ */
3502
+ export interface ModifyApplicationServiceResponse {
3503
+ /**
3504
+ * 是否成功
3505
+ 注意:此字段可能返回 null,表示取不到有效值。
3506
+ */
3507
+ Result: boolean;
3508
+ /**
3509
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3510
+ */
3511
+ RequestId?: string;
3512
+ }
3374
3513
  /**
3375
3514
  * 服务端口映射
3376
3515
  */
@@ -146,13 +146,17 @@ export interface DescribeCloudNativeAPIGatewayNodesRequest {
146
146
  */
147
147
  GatewayId: string;
148
148
  /**
149
- * 翻页从第几个开始获取
149
+ * 实例分组id
150
150
  */
151
- Offset?: number;
151
+ GroupId?: string;
152
152
  /**
153
153
  * 翻页获取多少个
154
154
  */
155
155
  Limit?: number;
156
+ /**
157
+ * 翻页从第几个开始获取
158
+ */
159
+ Offset?: number;
156
160
  }
157
161
  /**
158
162
  * 获取网关节点信息
@@ -2204,6 +2204,7 @@ export interface DescribeMediaProcessUsageDataRequest {
2204
2204
  <li> ContentRecognition: 内容识别</li>
2205
2205
  <li> RemoveWatermark: 去除水印</li>
2206
2206
  <li> ExtractTraceWatermark: 提取水印</li>
2207
+ <li> AddTraceWatermark: 添加水印</li>
2207
2208
  <li>Transcode: 转码,包含普通转码、极速高清和视频编辑(不推荐使用)</li>
2208
2209
  */
2209
2210
  Type?: string;
@@ -3493,6 +3494,7 @@ export interface TaskStatData {
3493
3494
  <li> ContentRecognition: 内容识别</li>
3494
3495
  <li> RemoveWatermark: 去水印</li>
3495
3496
  <li> ExtractTraceWatermark: 提取水印</li>
3497
+ <li> AddTraceWatermark: 添加水印</li>
3496
3498
  <li>Transcode: 转码,包含普通转码、极速高清和视频编辑(不推荐使用)</li>
3497
3499
  */
3498
3500
  TaskType: string;
@@ -918,9 +918,9 @@ it("cpdp.v20190820.QueryShopOpenId", async function () {
918
918
  }
919
919
  })
920
920
 
921
- it("cpdp.v20190820.QueryOpenBankPaymentOrder", async function () {
921
+ it("cpdp.v20190820.QueryFinancialDataUrl", async function () {
922
922
  try {
923
- const data = await client.QueryOpenBankPaymentOrder({})
923
+ const data = await client.QueryFinancialDataUrl({})
924
924
  expect(data).to.be.ok
925
925
  } catch(error) {
926
926
  expect(error.requestId).to.be.ok
@@ -1358,9 +1358,9 @@ it("cpdp.v20190820.ApplyPayerInfo", async function () {
1358
1358
  }
1359
1359
  })
1360
1360
 
1361
- it("cpdp.v20190820.UploadFile", async function () {
1361
+ it("cpdp.v20190820.QueryOpenBankPaymentOrder", async function () {
1362
1362
  try {
1363
- const data = await client.UploadFile({})
1363
+ const data = await client.QueryOpenBankPaymentOrder({})
1364
1364
  expect(data).to.be.ok
1365
1365
  } catch(error) {
1366
1366
  expect(error.requestId).to.be.ok
@@ -1698,6 +1698,16 @@ it("cpdp.v20190820.CreateCustAcctId", async function () {
1698
1698
  }
1699
1699
  })
1700
1700
 
1701
+ it("cpdp.v20190820.UploadFile", async function () {
1702
+ try {
1703
+ const data = await client.UploadFile({})
1704
+ expect(data).to.be.ok
1705
+ } catch(error) {
1706
+ expect(error.requestId).to.be.ok
1707
+ expect(error.code).to.be.ok
1708
+ }
1709
+ })
1710
+
1701
1711
  it("cpdp.v20190820.CloseOrder", async function () {
1702
1712
  try {
1703
1713
  const data = await client.CloseOrder({})
@@ -38,6 +38,16 @@ it("tem.v20210701.DescribeApplicationsStatus", async function () {
38
38
  }
39
39
  })
40
40
 
41
+ it("tem.v20210701.DescribeApplicationServiceList", async function () {
42
+ try {
43
+ const data = await client.DescribeApplicationServiceList({})
44
+ expect(data).to.be.ok
45
+ } catch(error) {
46
+ expect(error.requestId).to.be.ok
47
+ expect(error.code).to.be.ok
48
+ }
49
+ })
50
+
41
51
  it("tem.v20210701.DescribePagedLogConfigList", async function () {
42
52
  try {
43
53
  const data = await client.DescribePagedLogConfigList({})
@@ -128,6 +138,16 @@ it("tem.v20210701.DescribeEnvironmentStatus", async function () {
128
138
  }
129
139
  })
130
140
 
141
+ it("tem.v20210701.ResumeDeployApplication", async function () {
142
+ try {
143
+ const data = await client.ResumeDeployApplication({})
144
+ expect(data).to.be.ok
145
+ } catch(error) {
146
+ expect(error.requestId).to.be.ok
147
+ expect(error.code).to.be.ok
148
+ }
149
+ })
150
+
131
151
  it("tem.v20210701.DeleteIngress", async function () {
132
152
  try {
133
153
  const data = await client.DeleteIngress({})
@@ -168,9 +188,9 @@ it("tem.v20210701.DescribeDeployApplicationDetail", async function () {
168
188
  }
169
189
  })
170
190
 
171
- it("tem.v20210701.ResumeDeployApplication", async function () {
191
+ it("tem.v20210701.ModifyApplicationService", async function () {
172
192
  try {
173
- const data = await client.ResumeDeployApplication({})
193
+ const data = await client.ModifyApplicationService({})
174
194
  expect(data).to.be.ok
175
195
  } catch(error) {
176
196
  expect(error.requestId).to.be.ok
@@ -228,6 +248,16 @@ it("tem.v20210701.CreateLogConfig", async function () {
228
248
  }
229
249
  })
230
250
 
251
+ it("tem.v20210701.CreateApplicationService", async function () {
252
+ try {
253
+ const data = await client.CreateApplicationService({})
254
+ expect(data).to.be.ok
255
+ } catch(error) {
256
+ expect(error.requestId).to.be.ok
257
+ expect(error.code).to.be.ok
258
+ }
259
+ })
260
+
231
261
  it("tem.v20210701.DescribeApplicationInfo", async function () {
232
262
  try {
233
263
  const data = await client.DescribeApplicationInfo({})
@@ -318,6 +348,16 @@ it("tem.v20210701.DescribeIngress", async function () {
318
348
  }
319
349
  })
320
350
 
351
+ it("tem.v20210701.DeleteApplicationService", async function () {
352
+ try {
353
+ const data = await client.DeleteApplicationService({})
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
+
321
361
  it("tem.v20210701.GenerateApplicationPackageDownloadUrl", async function () {
322
362
  try {
323
363
  const data = await client.GenerateApplicationPackageDownloadUrl({})