tencentcloud-sdk-nodejs-ssl 4.1.159 → 4.1.163

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": "tencentcloud-sdk-nodejs-ssl",
3
- "version": "4.1.159",
3
+ "version": "4.1.163",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -278,7 +278,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
278
278
  */
279
279
  DescribeManagers(req: DescribeManagersRequest, cb?: (error: string, rep: DescribeManagersResponse) => void): Promise<DescribeManagersResponse>;
280
280
  /**
281
- * 查询CreateCertificateBindResourceSyncTask任务结果, 返回证书关联云资源异步任务结果, 支持以下云资源:clb、cdn、waf、live、vod、ddos、tke、apigateway、tcb、teo(edgeOne)、cos
281
+ * 查询CreateCertificateBindResourceSyncTask任务结果, 返回证书关联云资源异步任务结果, 支持以下云资源:clb、cdn、waf、live、vod、ddos、tke、apigateway、tcb、teo(edgeOne)、cos、gaap、mqtt、scf、tdmq
282
282
  */
283
283
  DescribeCertificateBindResourceTaskDetail(req: DescribeCertificateBindResourceTaskDetailRequest, cb?: (error: string, rep: DescribeCertificateBindResourceTaskDetailResponse) => void): Promise<DescribeCertificateBindResourceTaskDetailResponse>;
284
284
  /**
@@ -432,7 +432,7 @@ class Client extends TencentCloudCommon.AbstractClient {
432
432
  return this.request("DescribeManagers", req, cb);
433
433
  }
434
434
  /**
435
- * 查询CreateCertificateBindResourceSyncTask任务结果, 返回证书关联云资源异步任务结果, 支持以下云资源:clb、cdn、waf、live、vod、ddos、tke、apigateway、tcb、teo(edgeOne)、cos
435
+ * 查询CreateCertificateBindResourceSyncTask任务结果, 返回证书关联云资源异步任务结果, 支持以下云资源:clb、cdn、waf、live、vod、ddos、tke、apigateway、tcb、teo(edgeOne)、cos、gaap、mqtt、scf、tdmq
436
436
  */
437
437
  async DescribeCertificateBindResourceTaskDetail(req, cb) {
438
438
  return this.request("DescribeCertificateBindResourceTaskDetail", req, cb);
@@ -3,35 +3,23 @@
3
3
  */
4
4
  export interface DescribeCertificateBindResourceTaskDetailRequest {
5
5
  /**
6
- * 任务ID,根据CreateCertificateBindResourceSyncTask得到的任务ID查询绑定云资源结果
6
+ * <p>任务ID,根据CreateCertificateBindResourceSyncTask得到的任务ID查询绑定云资源结果</p>
7
7
  */
8
8
  TaskId: string;
9
9
  /**
10
- * 每页展示数量, 默认10,最大值100; 分页总数为云资源地域下实例总数, 即第一页会拉群每个云资源的地域下面Limit数量实例
10
+ * <p>每页展示数量, 默认10,最大值100; 分页总数为云资源地域下实例总数, 即第一页会拉群每个云资源的地域下面Limit数量实例</p>
11
11
  */
12
12
  Limit?: string;
13
13
  /**
14
- * 当前偏移量,默认为0
14
+ * <p>当前偏移量,默认为0</p>
15
15
  */
16
16
  Offset?: string;
17
17
  /**
18
- * 查询资源类型的结果详情, 不传则查询所有,取值支持:
19
- - clb
20
- - cdn
21
- - ddos
22
- - live
23
- - vod
24
- - waf
25
- - apigateway
26
- - teo
27
- - tke
28
- - cos
29
- - tse
30
- - tcb
18
+ * <p>查询资源类型的结果详情, 不传则查询所有,取值支持:- clb- cdn- ddos- live- vod- waf- apigateway- teo- tke- cos- tse- tcb</p>
31
19
  */
32
20
  ResourceTypes?: Array<string>;
33
21
  /**
34
- * 查询地域列表的数据,clb、tke、waf、apigateway、tcb、cos、tse支持地域查询, 其他资源类型不支持
22
+ * <p>查询地域列表的数据,clb、tke、waf、apigateway、tcb、cos、tse支持地域查询, 其他资源类型不支持</p>
35
23
  */
36
24
  Regions?: Array<string>;
37
25
  }
@@ -132,6 +120,27 @@ export interface DownloadCertificateResponse {
132
120
  */
133
121
  RequestId?: string;
134
122
  }
123
+ /**
124
+ * MQTT实例详情 - 异步关联云资源数据结构
125
+ */
126
+ export interface MQTTInstanceList {
127
+ /**
128
+ * 地域
129
+ */
130
+ Region?: string;
131
+ /**
132
+ * 实例详情
133
+ */
134
+ InstanceList?: Array<MQTTInstanceDetail>;
135
+ /**
136
+ * 地域下总数
137
+ */
138
+ TotalCount?: number;
139
+ /**
140
+ * 错误信息
141
+ */
142
+ Error?: string;
143
+ }
135
144
  /**
136
145
  * 管理人信息
137
146
  */
@@ -375,6 +384,10 @@ export interface DeployRecordDetail {
375
384
  * 实例状态,不同云产品状态不一样
376
385
  */
377
386
  InstanceStatus?: string;
387
+ /**
388
+ * 监听器状态
389
+ */
390
+ ListenerStatus?: string;
378
391
  }
379
392
  /**
380
393
  * CancelCertificateOrder请求参数结构体
@@ -2227,6 +2240,14 @@ export interface UpdateRecordDetail {
2227
2240
  * 旧证书加密算法
2228
2241
  */
2229
2242
  OldAlgorithm?: string;
2243
+ /**
2244
+ * 实例状态,不同云产品状态不一样
2245
+ */
2246
+ InstanceStatus?: string;
2247
+ /**
2248
+ * 监听器状态
2249
+ */
2250
+ ListenerStatus?: string;
2230
2251
  }
2231
2252
  /**
2232
2253
  * 绑定资源结果
@@ -2241,6 +2262,35 @@ export interface BindResourceResult {
2241
2262
  */
2242
2263
  BindResourceRegionResult?: Array<BindResourceRegionResult>;
2243
2264
  }
2265
+ /**
2266
+ * TDMQ - Rabbit实例详情
2267
+ */
2268
+ export interface TDMQInstanceDetail {
2269
+ /**
2270
+ * 实例ID
2271
+ */
2272
+ InstanceId?: string;
2273
+ /**
2274
+ * 实例名称
2275
+ */
2276
+ InstanceName?: string;
2277
+ /**
2278
+ * 实例状态
2279
+ */
2280
+ InstanceStatus?: string;
2281
+ /**
2282
+ * 服务端证书ID
2283
+ */
2284
+ CertId?: string;
2285
+ /**
2286
+ * CA证书ID
2287
+ */
2288
+ CaCertId?: string;
2289
+ /**
2290
+ * 不匹配的域名列表
2291
+ */
2292
+ NoMatchDomains?: Array<string>;
2293
+ }
2244
2294
  /**
2245
2295
  * ApplyCertificate返回参数结构体
2246
2296
  */
@@ -2453,6 +2503,23 @@ export interface UpdateSyncProgress {
2453
2503
  */
2454
2504
  Status?: number;
2455
2505
  }
2506
+ /**
2507
+ * GAAP实例详情 - 异步关联云资源数据结构
2508
+ */
2509
+ export interface GAAPInstanceList {
2510
+ /**
2511
+ * 实例详情
2512
+ */
2513
+ InstanceList?: Array<GAAPInstanceDetail>;
2514
+ /**
2515
+ * 总数
2516
+ */
2517
+ TotalCount?: number;
2518
+ /**
2519
+ * 错误信息
2520
+ */
2521
+ Error?: string;
2522
+ }
2456
2523
  /**
2457
2524
  * DescribeManagers返回参数结构体
2458
2525
  */
@@ -2713,61 +2780,77 @@ export interface DescribeHostVodInstanceListRequest {
2713
2780
  */
2714
2781
  export interface DescribeCertificateBindResourceTaskDetailResponse {
2715
2782
  /**
2716
- * 关联clb资源详情
2783
+ * <p>关联clb资源详情 </p>
2717
2784
  */
2718
2785
  CLB?: Array<ClbInstanceList>;
2719
2786
  /**
2720
- * 关联cdn资源详情
2787
+ * <p>关联cdn资源详情 </p>
2721
2788
  */
2722
2789
  CDN?: Array<CdnInstanceList>;
2723
2790
  /**
2724
- * 关联waf资源详情
2791
+ * <p>关联waf资源详情 </p>
2725
2792
  */
2726
2793
  WAF?: Array<WafInstanceList>;
2727
2794
  /**
2728
- * 关联ddos资源详情
2795
+ * <p>关联ddos资源详情 </p>
2729
2796
  */
2730
2797
  DDOS?: Array<DdosInstanceList>;
2731
2798
  /**
2732
- * 关联live资源详情
2799
+ * <p>关联live资源详情 </p>
2733
2800
  */
2734
2801
  LIVE?: Array<LiveInstanceList>;
2735
2802
  /**
2736
- * 关联vod资源详情
2803
+ * <p>关联vod资源详情 </p>
2737
2804
  */
2738
2805
  VOD?: Array<VODInstanceList>;
2739
2806
  /**
2740
- * 关联tke资源详情
2807
+ * <p>关联tke资源详情 </p>
2741
2808
  */
2742
2809
  TKE?: Array<TkeInstanceList>;
2743
2810
  /**
2744
- * 关联apigateway资源详情
2811
+ * <p>关联apigateway资源详情 </p>
2745
2812
  */
2746
2813
  APIGATEWAY?: Array<ApiGatewayInstanceList>;
2747
2814
  /**
2748
- * 关联tcb资源详情
2815
+ * <p>关联tcb资源详情 </p>
2749
2816
  */
2750
2817
  TCB?: Array<TCBInstanceList>;
2751
2818
  /**
2752
- * 关联teo资源详情
2819
+ * <p>关联teo资源详情 </p>
2753
2820
  */
2754
2821
  TEO?: Array<TeoInstanceList>;
2755
2822
  /**
2756
- * 关联云资源异步查询结果: 0表示查询中, 1表示查询成功。 2表示查询异常; 若状态为1,则查看BindResourceResult结果;若状态为2,则查看Error原因
2823
+ * <p>关联云资源异步查询结果: 0表示查询中, 1表示查询成功。 2表示查询异常; 若状态为1,则查看BindResourceResult结果;若状态为2,则查看Error原因</p>
2757
2824
  */
2758
2825
  Status?: number;
2759
2826
  /**
2760
- * 当前结果缓存时间
2827
+ * <p>当前结果缓存时间</p>
2761
2828
  */
2762
2829
  CacheTime?: string;
2763
2830
  /**
2764
- * 关联tse资源详情
2831
+ * <p>关联tse资源详情 </p>
2765
2832
  */
2766
2833
  TSE?: Array<TSEInstanceList>;
2767
2834
  /**
2768
- * 关联的COS资源详情
2835
+ * <p>关联的COS资源详情</p>
2769
2836
  */
2770
2837
  COS?: Array<COSInstanceList>;
2838
+ /**
2839
+ * <p>关联的TDMQ - Rabbit资源详情</p>
2840
+ */
2841
+ TDMQ?: Array<TDMQInstanceList>;
2842
+ /**
2843
+ * <p>关联的MQTT资源详情</p>
2844
+ */
2845
+ MQTT?: Array<MQTTInstanceList>;
2846
+ /**
2847
+ * <p>关联的GAAP资源详情</p>
2848
+ */
2849
+ GAAP?: Array<GAAPInstanceList>;
2850
+ /**
2851
+ * <p>关联的SCF资源详情</p>
2852
+ */
2853
+ SCF?: Array<SCFInstanceList>;
2771
2854
  /**
2772
2855
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2773
2856
  */
@@ -3843,7 +3926,7 @@ export interface UpdateCertificateInstanceRequest {
3843
3926
  */
3844
3927
  Regions?: Array<string>;
3845
3928
  /**
3846
- * 云资源需要部署的地域列表,支持地域的云资源类型必传,取值:clb、tke、apigateway、waf、tcb、tse、cos
3929
+ * 云资源需要部署的地域列表,支持地域的云资源类型必传,取值:clb、tke、apigateway、waf、tcb、tse、cos、mqtt
3847
3930
  */
3848
3931
  ResourceTypesRegions?: Array<ResourceTypeRegions>;
3849
3932
  /**
@@ -4230,6 +4313,35 @@ export interface DescribeCertificateRequest {
4230
4313
  */
4231
4314
  CertificateId: string;
4232
4315
  }
4316
+ /**
4317
+ * MQTT实例详情
4318
+ */
4319
+ export interface MQTTInstanceDetail {
4320
+ /**
4321
+ * 实例ID
4322
+ */
4323
+ InstanceId?: string;
4324
+ /**
4325
+ * 实例名称
4326
+ */
4327
+ InstanceName?: string;
4328
+ /**
4329
+ * 实例状态
4330
+ */
4331
+ InstanceStatus?: string;
4332
+ /**
4333
+ * 不匹配的域名列表
4334
+ */
4335
+ NoMatchDomains?: Array<string>;
4336
+ /**
4337
+ * 服务端证书列表
4338
+ */
4339
+ ServerCertIdList?: Array<string>;
4340
+ /**
4341
+ * ca证书列表
4342
+ */
4343
+ CaCertIdList?: Array<string>;
4344
+ }
4233
4345
  /**
4234
4346
  * DescribeHostVodInstanceList返回参数结构体
4235
4347
  */
@@ -4818,6 +4930,27 @@ export interface DescribeHostCdnInstanceListResponse {
4818
4930
  */
4819
4931
  RequestId?: string;
4820
4932
  }
4933
+ /**
4934
+ * TDMQ - Rabbit实例详情 - 异步关联云资源数据结构
4935
+ */
4936
+ export interface TDMQInstanceList {
4937
+ /**
4938
+ * 地域
4939
+ */
4940
+ Region?: string;
4941
+ /**
4942
+ * 实例详情
4943
+ */
4944
+ InstanceList?: Array<TDMQInstanceDetail>;
4945
+ /**
4946
+ * 地域下总数
4947
+ */
4948
+ TotalCount?: number;
4949
+ /**
4950
+ * 错误信息
4951
+ */
4952
+ Error?: string;
4953
+ }
4821
4954
  /**
4822
4955
  * tke ingress实例详情
4823
4956
  */
@@ -4851,13 +4984,15 @@ export interface DeployCertificateInstanceRequest {
4851
4984
  - live:Domain,例:["live1.tencent.com", "live2.tencent.com"]
4852
4985
  - vod:Domain, 例:["vod1.tencent.com", "vod2.tencent.com"]
4853
4986
  - waf:Domain, 例:["waf1.tencent.com", "waf2.tencent.com"]
4854
- - apigateway:ServiceId|Domain, 例:["service-8sk7cqmd|apigw1.tencent.com", "service-8sk7cqmd|apigw2.ninghhuang.online"]
4987
+ - apigateway:ServiceId|Domain, 例:["service-8sk7cqmd|apigw1.tencent.com", "service-8sk7cqmd|apigw2.minghuang.online"]
4855
4988
  - teo:Domain, 例:["edgeone1.tencent.com", "edgeone2.tencent.com"]
4856
4989
  - tke:ClusterId|NameSpace|SecretName, 例:["cls-42sa0ae0|default|test-tencent"]
4857
4990
  - cos:Region|Bucket|Domain, 例:["ap-hongkong|ssl-server-1251810746|tencent.com"]
4858
4991
  - lighthouse:Region|InstanceId|Domain, 例:["ap-shanghai|lhins-nh7lql34|tencent.com"]
4859
4992
  - tse:GatewayId|CertificateId, 例:["gateway-s1da9151|fa61bc05-cc54-4eea-c932-24de52577372"]
4860
4993
  - tcb:Type|Region|EnvId|Domain, 例:["AccessService|ap-shanghai|ceshi-4s5h0ymg11c839c7|tencent.com"]
4994
+ - mqtt: InstanceId|CertId, 例:["mqtt-rdnwp7kb|gehs6jsx"]
4995
+ - gaap: InstanceId|ListenerId 例:["ga-a3e4z3ae|lsr-a73amjob"]
4861
4996
 
4862
4997
  */
4863
4998
  InstanceIdList: Array<string>;
@@ -4876,7 +5011,8 @@ export interface DeployCertificateInstanceRequest {
4876
5011
  - lighthouse
4877
5012
  - tse
4878
5013
  - tcb
4879
- <dx-alert infotype="explain" title="">当云资源类型传入clb、waf、apigateway、cos、lighthouse、tke、tse、tcb 时,公共参数Region必传。</dx-alert>
5014
+ - mqtt
5015
+ <dx-alert infotype="explain" title="">当云资源类型传入clb、waf、apigateway、cos、lighthouse、tke、tse、tcb、mqtt 时,公共参数Region必传。</dx-alert>
4880
5016
  */
4881
5017
  ResourceType?: string;
4882
5018
  /**
@@ -6232,6 +6368,27 @@ export interface CheckCertificateExistRequest {
6232
6368
  */
6233
6369
  CertificatePublicKey: string;
6234
6370
  }
6371
+ /**
6372
+ * SCF实例详情 - 异步关联云资源数据结构
6373
+ */
6374
+ export interface SCFInstanceList {
6375
+ /**
6376
+ * <p>地域</p>
6377
+ */
6378
+ Region?: string;
6379
+ /**
6380
+ * <p>SCF实例详情</p>
6381
+ */
6382
+ InstanceList?: Array<SCFInstanceDetail>;
6383
+ /**
6384
+ * <p>错误信息</p>
6385
+ */
6386
+ Error?: string;
6387
+ /**
6388
+ * <p>地域下总数</p>
6389
+ */
6390
+ TotalCount?: number;
6391
+ }
6235
6392
  /**
6236
6393
  * DescribeCompanies请求参数结构体
6237
6394
  */
@@ -6341,6 +6498,52 @@ export interface DescribePackagesResponse {
6341
6498
  */
6342
6499
  RequestId?: string;
6343
6500
  }
6501
+ /**
6502
+ * GAAP监听器详情
6503
+ */
6504
+ export interface GAAPListenerDetail {
6505
+ /**
6506
+ * 监听器状态
6507
+ */
6508
+ ListenerStatus?: string;
6509
+ /**
6510
+ * 监听器ID
6511
+ */
6512
+ ListenerId?: string;
6513
+ /**
6514
+ * 监听器名称
6515
+ */
6516
+ ListenerName?: string;
6517
+ /**
6518
+ * 不匹配的域名列表
6519
+ */
6520
+ NoMatchDomains?: Array<string>;
6521
+ /**
6522
+ * 实例绑定的证书列表
6523
+ */
6524
+ CertIdList?: Array<string>;
6525
+ /**
6526
+ * 监听器协议
6527
+ */
6528
+ Protocol?: string;
6529
+ }
6530
+ /**
6531
+ * GAAP实例详情
6532
+ */
6533
+ export interface GAAPInstanceDetail {
6534
+ /**
6535
+ * 实例ID
6536
+ */
6537
+ InstanceId?: string;
6538
+ /**
6539
+ * 监听器列表
6540
+ */
6541
+ ListenerList?: Array<GAAPListenerDetail>;
6542
+ /**
6543
+ * 加速实例名称
6544
+ */
6545
+ InstanceName?: string;
6546
+ }
6344
6547
  /**
6345
6548
  * DescribeHostUploadUpdateRecord返回参数结构体
6346
6549
  */
@@ -6430,3 +6633,24 @@ export interface VODInstanceList {
6430
6633
  */
6431
6634
  Error?: string;
6432
6635
  }
6636
+ /**
6637
+ * SCF实例详情
6638
+ */
6639
+ export interface SCFInstanceDetail {
6640
+ /**
6641
+ * 证书ID
6642
+ */
6643
+ CertificateId?: string;
6644
+ /**
6645
+ * 协议
6646
+ */
6647
+ Protocol?: string;
6648
+ /**
6649
+ * 域名
6650
+ */
6651
+ Domain?: string;
6652
+ /**
6653
+ * 地域
6654
+ */
6655
+ Region?: string;
6656
+ }