tencentcloud-sdk-nodejs 4.0.1010 → 4.0.1012
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 +132 -0
- package/SERVICE_CHANGELOG.md +154 -254
- package/package.json +1 -1
- package/products.md +23 -23
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cdn/v20180606/cdn_models.ts +1 -1
- package/src/services/dc/v20180410/dc_client.ts +1 -1
- package/src/services/dc/v20180410/dc_models.ts +17 -32
- package/src/services/emr/v20190103/emr_models.ts +0 -3
- package/src/services/es/v20180416/es_models.ts +5 -0
- package/src/services/ess/v20201111/ess_client.ts +2 -2
- package/src/services/ess/v20201111/ess_models.ts +12 -15
- package/src/services/essbasic/v20210526/essbasic_models.ts +18 -47
- package/src/services/hunyuan/v20230901/hunyuan_models.ts +8 -0
- package/src/services/mna/v20210119/mna_models.ts +0 -1
- package/src/services/ocr/v20181119/ocr_models.ts +2 -2
- package/src/services/pts/v20210728/pts_models.ts +87 -261
- package/src/services/redis/v20180412/redis_models.ts +10 -10
- package/src/services/rum/v20210622/rum_models.ts +38 -14
- package/src/services/teo/v20220901/teo_models.ts +3 -6
- package/src/services/tke/v20220501/tke_models.ts +1 -1
- package/src/services/trro/v20220325/trro_models.ts +0 -29
- package/src/services/vpc/v20170312/vpc_models.ts +1 -8
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +1 -1
- package/tencentcloud/services/dc/v20180410/dc_client.d.ts +1 -1
- package/tencentcloud/services/dc/v20180410/dc_client.js +1 -1
- package/tencentcloud/services/dc/v20180410/dc_models.d.ts +17 -32
- package/tencentcloud/services/emr/v20190103/emr_models.d.ts +0 -3
- package/tencentcloud/services/es/v20180416/es_models.d.ts +5 -0
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +2 -2
- package/tencentcloud/services/ess/v20201111/ess_client.js +2 -2
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +12 -15
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +16 -45
- package/tencentcloud/services/hunyuan/v20230901/hunyuan_models.d.ts +8 -0
- package/tencentcloud/services/mna/v20210119/mna_models.d.ts +0 -1
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +2 -2
- package/tencentcloud/services/pts/v20210728/pts_models.d.ts +87 -261
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +10 -10
- package/tencentcloud/services/rum/v20210622/rum_models.d.ts +38 -14
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +3 -6
- package/tencentcloud/services/tke/v20220501/tke_models.d.ts +1 -1
- package/tencentcloud/services/trro/v20220325/trro_models.d.ts +0 -29
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +1 -8
|
@@ -2688,44 +2688,44 @@ export interface InstanceIntegerParam {
|
|
|
2688
2688
|
/**
|
|
2689
2689
|
* 参数名
|
|
2690
2690
|
*/
|
|
2691
|
-
ParamName
|
|
2691
|
+
ParamName?: string
|
|
2692
2692
|
/**
|
|
2693
2693
|
* 参数类型:integer
|
|
2694
2694
|
*/
|
|
2695
|
-
ValueType
|
|
2695
|
+
ValueType?: string
|
|
2696
2696
|
/**
|
|
2697
2697
|
* 修改后是否需要重启:true,false
|
|
2698
2698
|
*/
|
|
2699
|
-
NeedRestart
|
|
2699
|
+
NeedRestart?: string
|
|
2700
2700
|
/**
|
|
2701
2701
|
* 参数默认值
|
|
2702
2702
|
*/
|
|
2703
|
-
DefaultValue
|
|
2703
|
+
DefaultValue?: string
|
|
2704
2704
|
/**
|
|
2705
2705
|
* 当前运行参数值
|
|
2706
2706
|
*/
|
|
2707
|
-
CurrentValue
|
|
2707
|
+
CurrentValue?: string
|
|
2708
2708
|
/**
|
|
2709
2709
|
* 参数说明
|
|
2710
2710
|
*/
|
|
2711
|
-
Tips
|
|
2711
|
+
Tips?: string
|
|
2712
2712
|
/**
|
|
2713
2713
|
* 参数最小值
|
|
2714
2714
|
*/
|
|
2715
|
-
Min
|
|
2715
|
+
Min?: string
|
|
2716
2716
|
/**
|
|
2717
2717
|
* 参数最大值
|
|
2718
2718
|
*/
|
|
2719
|
-
Max
|
|
2719
|
+
Max?: string
|
|
2720
2720
|
/**
|
|
2721
2721
|
* 参数状态, 1: 修改中, 2:修改完成
|
|
2722
2722
|
*/
|
|
2723
|
-
Status
|
|
2723
|
+
Status?: number
|
|
2724
2724
|
/**
|
|
2725
2725
|
* 参数单位
|
|
2726
2726
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2727
2727
|
*/
|
|
2728
|
-
Unit
|
|
2728
|
+
Unit?: string
|
|
2729
2729
|
}
|
|
2730
2730
|
|
|
2731
2731
|
/**
|
|
@@ -2563,60 +2563,84 @@ export interface ScoreInfo {
|
|
|
2563
2563
|
/**
|
|
2564
2564
|
* duration
|
|
2565
2565
|
*/
|
|
2566
|
-
StaticDuration
|
|
2566
|
+
StaticDuration?: string
|
|
2567
2567
|
/**
|
|
2568
2568
|
* pv
|
|
2569
2569
|
*/
|
|
2570
|
-
PagePv
|
|
2570
|
+
PagePv?: string
|
|
2571
2571
|
/**
|
|
2572
2572
|
* 失败
|
|
2573
2573
|
*/
|
|
2574
|
-
ApiFail
|
|
2574
|
+
ApiFail?: string
|
|
2575
2575
|
/**
|
|
2576
2576
|
* 请求
|
|
2577
2577
|
*/
|
|
2578
|
-
ApiNum
|
|
2578
|
+
ApiNum?: string
|
|
2579
2579
|
/**
|
|
2580
2580
|
* fail
|
|
2581
2581
|
*/
|
|
2582
|
-
StaticFail
|
|
2582
|
+
StaticFail?: string
|
|
2583
2583
|
/**
|
|
2584
2584
|
* 项目id
|
|
2585
2585
|
*/
|
|
2586
|
-
ProjectID
|
|
2586
|
+
ProjectID?: number
|
|
2587
2587
|
/**
|
|
2588
2588
|
* uv
|
|
2589
2589
|
*/
|
|
2590
|
-
PageUv
|
|
2590
|
+
PageUv?: string
|
|
2591
2591
|
/**
|
|
2592
2592
|
* 请求次数
|
|
2593
2593
|
*/
|
|
2594
|
-
ApiDuration
|
|
2594
|
+
ApiDuration?: string
|
|
2595
2595
|
/**
|
|
2596
|
-
*
|
|
2596
|
+
* 项目总分
|
|
2597
2597
|
*/
|
|
2598
|
-
Score
|
|
2598
|
+
Score?: string
|
|
2599
2599
|
/**
|
|
2600
2600
|
* error
|
|
2601
2601
|
*/
|
|
2602
|
-
PageError
|
|
2602
|
+
PageError?: string
|
|
2603
2603
|
/**
|
|
2604
2604
|
* num
|
|
2605
2605
|
*/
|
|
2606
|
-
StaticNum
|
|
2606
|
+
StaticNum?: string
|
|
2607
2607
|
/**
|
|
2608
2608
|
* num
|
|
2609
2609
|
*/
|
|
2610
|
-
RecordNum
|
|
2610
|
+
RecordNum?: number
|
|
2611
2611
|
/**
|
|
2612
2612
|
* Duration
|
|
2613
2613
|
*/
|
|
2614
|
-
PageDuration
|
|
2614
|
+
PageDuration?: string
|
|
2615
2615
|
/**
|
|
2616
2616
|
* 时间
|
|
2617
2617
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2618
2618
|
*/
|
|
2619
2619
|
CreateTime?: string
|
|
2620
|
+
/**
|
|
2621
|
+
* 页面性能评分
|
|
2622
|
+
*/
|
|
2623
|
+
PagePerformanceScore?: string
|
|
2624
|
+
/**
|
|
2625
|
+
* js错误评分
|
|
2626
|
+
*/
|
|
2627
|
+
JsErrorScore?: string
|
|
2628
|
+
/**
|
|
2629
|
+
* API性能评分
|
|
2630
|
+
*/
|
|
2631
|
+
ApiPerformanceScore?: string
|
|
2632
|
+
/**
|
|
2633
|
+
* API可用性评分
|
|
2634
|
+
*/
|
|
2635
|
+
ApiAvaliableScore?: string
|
|
2636
|
+
/**
|
|
2637
|
+
* 静态资源性能评分
|
|
2638
|
+
*/
|
|
2639
|
+
StaticPerformanceScore?: string
|
|
2640
|
+
/**
|
|
2641
|
+
* 静态资源可用性评分
|
|
2642
|
+
*/
|
|
2643
|
+
StaticAvaliableScore?: string
|
|
2620
2644
|
}
|
|
2621
2645
|
|
|
2622
2646
|
/**
|
|
@@ -1742,7 +1742,7 @@ export interface RulesProperties {
|
|
|
1742
1742
|
<li> TOGGLE:参数值为开关类型,可在 ChoicesValue 中选择;</li>
|
|
1743
1743
|
<li> OBJECT:参数值为对象类型,ChoiceProperties 为改对象类型关联的属性;</li>
|
|
1744
1744
|
<li> CUSTOM_NUM:参数值用户自定义,整型类型;</li>
|
|
1745
|
-
<li> CUSTOM_STRING:参数值用户自定义,字符串类型。</li>注意:当参数类型为 OBJECT 类型时,请注意参考 [示例2 参数为 OBJECT 类型的创建](https://cloud.tencent.com/document/product/1552/80622#.E7.A4.BA.E4.BE.8B2-.
|
|
1745
|
+
<li> CUSTOM_STRING:参数值用户自定义,字符串类型。</li>注意:当参数类型为 OBJECT 类型时,请注意参考 [示例2 参数为 OBJECT 类型的创建](https://cloud.tencent.com/document/product/1552/80622#.E7.A4.BA.E4.BE.8B2-.E4.BF.AE.E6.94.B9.E6.BA.90.E7.AB.99.E4.B8.BAIP.E5.9F.9F.E5.90.8D)
|
|
1746
1746
|
*/
|
|
1747
1747
|
Type?: string
|
|
1748
1748
|
/**
|
|
@@ -8136,22 +8136,19 @@ export interface FollowOrigin {
|
|
|
8136
8136
|
*/
|
|
8137
8137
|
Switch: string
|
|
8138
8138
|
/**
|
|
8139
|
-
* 源站未返回 Cache-Control 头时,缓存/不缓存开关。当 Switch 为 on
|
|
8139
|
+
* 源站未返回 Cache-Control 头时,缓存/不缓存开关。当 Switch 为 on 时,此字段必填,当 Switch 为 off 时,无需填写此字段,若填写则不生效。取值有:
|
|
8140
8140
|
<li>on:缓存;</li>
|
|
8141
8141
|
<li>off:不缓存。</li>
|
|
8142
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
8143
8142
|
*/
|
|
8144
8143
|
DefaultCache?: string
|
|
8145
8144
|
/**
|
|
8146
8145
|
* 源站未返回 Cache-Control 头时,使用/不使用默认缓存策略开关。当 DefaultCache 为 on 时,此字段必填,否则此字段不生效;当 DefaultCacheTime 不为 0 时,此字段必须为 off。取值有:
|
|
8147
8146
|
<li>on:使用默认缓存策略;</li>
|
|
8148
8147
|
<li>off:不使用默认缓存策略。</li>
|
|
8149
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
8150
8148
|
*/
|
|
8151
8149
|
DefaultCacheStrategy?: string
|
|
8152
8150
|
/**
|
|
8153
|
-
* 源站未返回 Cache-Control 头时,表示默认的缓存时间,单位为秒,取值:0
|
|
8154
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
8151
|
+
* 源站未返回 Cache-Control 头时,表示默认的缓存时间,单位为秒,取值:0-315360000。当 DefaultCache 为 on 时,此字段必填,否则此字段不生效;当 DefaultCacheStrategy 为 on 时, 此字段必须为 0。
|
|
8155
8152
|
*/
|
|
8156
8153
|
DefaultCacheTime?: number
|
|
8157
8154
|
}
|
|
@@ -936,7 +936,7 @@ export interface DescribeClusterInstancesRequest {
|
|
|
936
936
|
Limit?: number
|
|
937
937
|
/**
|
|
938
938
|
* 过滤条件列表:
|
|
939
|
-
InstanceIds(实例ID),InstanceType(实例类型:Regular,Native,
|
|
939
|
+
InstanceIds(实例ID),InstanceType(实例类型:Regular,Native,Super,External),VagueIpAddress(模糊匹配IP),Labels(k8s节点label),NodePoolNames(节点池名称),VagueInstanceName(模糊匹配节点名),InstanceStates(节点状态),Unschedulable(是否封锁),NodePoolIds(节点池ID)
|
|
940
940
|
*/
|
|
941
941
|
Filters?: Array<Filter>
|
|
942
942
|
/**
|
|
@@ -490,42 +490,34 @@ export interface ModifyPolicyResponse {
|
|
|
490
490
|
export interface Device {
|
|
491
491
|
/**
|
|
492
492
|
* 设备ID
|
|
493
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
494
493
|
*/
|
|
495
494
|
DeviceId?: string
|
|
496
495
|
/**
|
|
497
496
|
* 设备名称
|
|
498
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
499
497
|
*/
|
|
500
498
|
DeviceName?: string
|
|
501
499
|
/**
|
|
502
500
|
* 已经绑定license数量
|
|
503
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
504
501
|
*/
|
|
505
502
|
LicenseCount?: number
|
|
506
503
|
/**
|
|
507
504
|
* 剩余天数:天
|
|
508
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
509
505
|
*/
|
|
510
506
|
RemainDay?: number
|
|
511
507
|
/**
|
|
512
508
|
* 过期时间:s
|
|
513
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
514
509
|
*/
|
|
515
510
|
ExpireTime?: string
|
|
516
511
|
/**
|
|
517
512
|
* 服务时长:s
|
|
518
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
519
513
|
*/
|
|
520
514
|
Duration?: string
|
|
521
515
|
/**
|
|
522
516
|
* 已经绑定licenseId列表
|
|
523
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
524
517
|
*/
|
|
525
518
|
LicenseIds?: Array<string>
|
|
526
519
|
/**
|
|
527
520
|
* 每月license的限定时长
|
|
528
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
529
521
|
*/
|
|
530
522
|
MonthlyRemainTime?: number
|
|
531
523
|
/**
|
|
@@ -884,17 +876,14 @@ export interface SessionDeviceDetail {
|
|
|
884
876
|
DeviceId?: string
|
|
885
877
|
/**
|
|
886
878
|
* sdk版本
|
|
887
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
888
879
|
*/
|
|
889
880
|
Ver?: string
|
|
890
881
|
/**
|
|
891
882
|
* 模式(p2p/server)
|
|
892
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
893
883
|
*/
|
|
894
884
|
SdkMode?: string
|
|
895
885
|
/**
|
|
896
886
|
* 解码耗时,单位:ms
|
|
897
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
898
887
|
*/
|
|
899
888
|
DecodeCost?: Array<number | bigint>
|
|
900
889
|
/**
|
|
@@ -905,92 +894,74 @@ export interface SessionDeviceDetail {
|
|
|
905
894
|
RenderConst?: Array<number | bigint>
|
|
906
895
|
/**
|
|
907
896
|
* 卡顿k100
|
|
908
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
909
897
|
*/
|
|
910
898
|
K100?: Array<number>
|
|
911
899
|
/**
|
|
912
900
|
* 卡顿k150
|
|
913
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
914
901
|
*/
|
|
915
902
|
K150?: Array<number>
|
|
916
903
|
/**
|
|
917
904
|
* nack请求数
|
|
918
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
919
905
|
*/
|
|
920
906
|
NACK?: Array<number | bigint>
|
|
921
907
|
/**
|
|
922
908
|
* 服务端调控码率,单位:kbps
|
|
923
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
924
909
|
*/
|
|
925
910
|
BitRateEstimate?: Array<number | bigint>
|
|
926
911
|
/**
|
|
927
912
|
* 宽度
|
|
928
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
929
913
|
*/
|
|
930
914
|
Width?: number
|
|
931
915
|
/**
|
|
932
916
|
* 高度
|
|
933
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
934
917
|
*/
|
|
935
918
|
Height?: number
|
|
936
919
|
/**
|
|
937
920
|
* 编码耗时,单位:ms
|
|
938
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
939
921
|
*/
|
|
940
922
|
EncodeCost?: Array<number | bigint>
|
|
941
923
|
/**
|
|
942
924
|
* 采集耗时,单位:ms
|
|
943
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
944
925
|
*/
|
|
945
926
|
CaptureCost?: Array<number | bigint>
|
|
946
927
|
/**
|
|
947
928
|
* 渲染耗时,单位:ms
|
|
948
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
949
929
|
*/
|
|
950
930
|
RenderCost?: Array<number | bigint>
|
|
951
931
|
/**
|
|
952
932
|
* 配置宽度
|
|
953
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
954
933
|
*/
|
|
955
934
|
ConfigWidth?: number
|
|
956
935
|
/**
|
|
957
936
|
* 配置高度
|
|
958
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
959
937
|
*/
|
|
960
938
|
ConfigHeight?: number
|
|
961
939
|
/**
|
|
962
940
|
* 平均帧间隔
|
|
963
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
964
941
|
*/
|
|
965
942
|
FrameDelta?: Array<number | bigint>
|
|
966
943
|
/**
|
|
967
944
|
* 最大帧间隔
|
|
968
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
969
945
|
*/
|
|
970
946
|
MaxFrameDelta?: Array<number | bigint>
|
|
971
947
|
/**
|
|
972
948
|
* 总码率评估,单位:kbps
|
|
973
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
974
949
|
*/
|
|
975
950
|
TotalBitrateEstimate?: Array<number | bigint>
|
|
976
951
|
/**
|
|
977
952
|
* 帧间隔大于100ms的卡顿时长
|
|
978
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
979
953
|
*/
|
|
980
954
|
Lag100Duration?: Array<number | bigint>
|
|
981
955
|
/**
|
|
982
956
|
* 帧间隔大于150ms的卡顿时长
|
|
983
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
984
957
|
*/
|
|
985
958
|
Lag150Duration?: Array<number | bigint>
|
|
986
959
|
/**
|
|
987
960
|
* 是否开启多网:0 单网,1 多网
|
|
988
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
989
961
|
*/
|
|
990
962
|
MultiMode?: number
|
|
991
963
|
/**
|
|
992
964
|
* 多网卡信息
|
|
993
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
994
965
|
*/
|
|
995
966
|
MultiNet?: Array<MultiNet>
|
|
996
967
|
}
|
|
@@ -4291,12 +4291,7 @@ export interface CreateNatGatewayResponse {
|
|
|
4291
4291
|
*/
|
|
4292
4292
|
export interface DescribeVpnGatewaySslClientsRequest {
|
|
4293
4293
|
/**
|
|
4294
|
-
* 过滤条件,参数不支持同时指定SslVpnClientIds和Filters
|
|
4295
|
-
<li>vpc-id - String - (过滤条件)VPC实例ID形如:vpc-f49l6u0z。</li>
|
|
4296
|
-
<li>vpn-gateway-id - String - (过滤条件)VPN实例ID形如:vpngw-5aluhh9t。</li>
|
|
4297
|
-
<li>ssl-vpn-server-id - String - (过滤条件)SSL-VPN-SERVER实例ID形如:vpns-1j2w6xpx。</li>
|
|
4298
|
-
<li>ssl-vpn-client-id - String - (过滤条件)SSL-VPN-CLIENT实例ID形如:vpnc-3rlxp4nd。</li>
|
|
4299
|
-
<li>ssl-vpn-client-name - String - (过滤条件)SSL-VPN-CLIENT实例名称。</li>
|
|
4294
|
+
* 过滤条件,参数不支持同时指定SslVpnClientIds和Filters。<li>vpc-id - String - (过滤条件)VPC实例ID形如:vpc-f49l6u0z。</li><li>vpn-gateway-id - String - (过滤条件)VPN实例ID形如:vpngw-5aluhh9t。</li><li>ssl-vpn-server-id - String - (过滤条件)SSL-VPN-SERVER实例ID形如:vpns-1j2w6xpx。</li><li>ssl-vpn-client-id - String - (过滤条件)SSL-VPN-CLIENT实例ID形如:vpnc-3rlxp4nd。</li><li>ssl-vpn-client-name - String - (过滤条件)SSL-VPN-CLIENT实例名称。</li><li>ssl-vpn-client-inner-ip - String - (过滤条件)SSL-VPN-CLIENT私网IP。</li>
|
|
4300
4295
|
*/
|
|
4301
4296
|
Filters?: Array<Filter>
|
|
4302
4297
|
/**
|
|
@@ -14803,12 +14798,10 @@ export interface ModifyHighPriorityRouteAttributeRequest {
|
|
|
14803
14798
|
export interface InquirePriceCreateDirectConnectGatewayResponse {
|
|
14804
14799
|
/**
|
|
14805
14800
|
* 专线网关标准接入费用
|
|
14806
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
14807
14801
|
*/
|
|
14808
14802
|
TotalCost?: number
|
|
14809
14803
|
/**
|
|
14810
14804
|
* 专线网关真实接入费用
|
|
14811
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
14812
14805
|
*/
|
|
14813
14806
|
RealTotalCost?: number
|
|
14814
14807
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.0.
|
|
1
|
+
export declare const sdkVersion = "4.0.1012";
|
|
@@ -51,7 +51,7 @@ export declare class Client extends AbstractClient {
|
|
|
51
51
|
*/
|
|
52
52
|
DisableInternetAddress(req: DisableInternetAddressRequest, cb?: (error: string, rep: DisableInternetAddressResponse) => void): Promise<DisableInternetAddressResponse>;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* 查询互联网通道路由列表。
|
|
55
55
|
*/
|
|
56
56
|
DescribePublicDirectConnectTunnelRoutes(req: DescribePublicDirectConnectTunnelRoutesRequest, cb?: (error: string, rep: DescribePublicDirectConnectTunnelRoutesResponse) => void): Promise<DescribePublicDirectConnectTunnelRoutesResponse>;
|
|
57
57
|
/**
|
|
@@ -91,7 +91,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
91
91
|
return this.request("DisableInternetAddress", req, cb);
|
|
92
92
|
}
|
|
93
93
|
/**
|
|
94
|
-
*
|
|
94
|
+
* 查询互联网通道路由列表。
|
|
95
95
|
*/
|
|
96
96
|
async DescribePublicDirectConnectTunnelRoutes(req, cb) {
|
|
97
97
|
return this.request("DescribePublicDirectConnectTunnelRoutes", req, cb);
|
|
@@ -26,36 +26,35 @@ export interface DirectConnectTunnelRoute {
|
|
|
26
26
|
/**
|
|
27
27
|
* 专用通道路由ID
|
|
28
28
|
*/
|
|
29
|
-
RouteId
|
|
29
|
+
RouteId?: string;
|
|
30
30
|
/**
|
|
31
31
|
* 网段CIDR
|
|
32
32
|
*/
|
|
33
|
-
DestinationCidrBlock
|
|
33
|
+
DestinationCidrBlock?: string;
|
|
34
34
|
/**
|
|
35
35
|
* 路由类型:BGP/STATIC路由
|
|
36
36
|
*/
|
|
37
|
-
RouteType
|
|
37
|
+
RouteType?: string;
|
|
38
38
|
/**
|
|
39
39
|
* ENABLE:路由启用,DISABLE:路由禁用
|
|
40
40
|
*/
|
|
41
|
-
Status
|
|
41
|
+
Status?: string;
|
|
42
42
|
/**
|
|
43
43
|
* ASPath信息
|
|
44
44
|
*/
|
|
45
|
-
ASPath
|
|
45
|
+
ASPath?: Array<string>;
|
|
46
46
|
/**
|
|
47
47
|
* 路由下一跳IP
|
|
48
48
|
*/
|
|
49
|
-
NextHop
|
|
49
|
+
NextHop?: string;
|
|
50
50
|
/**
|
|
51
51
|
* 路由更新时间
|
|
52
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
53
52
|
*/
|
|
54
|
-
UpdateTime
|
|
53
|
+
UpdateTime?: string;
|
|
55
54
|
/**
|
|
56
55
|
* 是否配置在通道上
|
|
57
56
|
*/
|
|
58
|
-
ApplyOnTunnelEnable
|
|
57
|
+
ApplyOnTunnelEnable?: boolean;
|
|
59
58
|
}
|
|
60
59
|
/**
|
|
61
60
|
* RejectDirectConnectTunnel请求参数结构体
|
|
@@ -119,21 +118,21 @@ export interface DescribeDirectConnectTunnelExtraRequest {
|
|
|
119
118
|
*/
|
|
120
119
|
export interface DescribePublicDirectConnectTunnelRoutesRequest {
|
|
121
120
|
/**
|
|
122
|
-
* 专用通道ID
|
|
121
|
+
* 专用通道ID。
|
|
123
122
|
*/
|
|
124
123
|
DirectConnectTunnelId: string;
|
|
125
124
|
/**
|
|
126
125
|
* 过滤条件:
|
|
127
|
-
route-type:路由类型,取值:BGP/STATIC
|
|
128
|
-
route-subnet:路由cidr,取值如:192.68.1.0/24
|
|
126
|
+
route-type:路由类型,取值:BGP/STATIC;
|
|
127
|
+
route-subnet:路由cidr,取值如:192.68.1.0/24。
|
|
129
128
|
*/
|
|
130
129
|
Filters?: Array<Filter>;
|
|
131
130
|
/**
|
|
132
|
-
* 偏移量,默认为0
|
|
131
|
+
* 偏移量,默认为0。
|
|
133
132
|
*/
|
|
134
133
|
Offset?: number;
|
|
135
134
|
/**
|
|
136
|
-
* 返回数量,默认为20,最大值为100
|
|
135
|
+
* 返回数量,默认为20,最大值为100。
|
|
137
136
|
*/
|
|
138
137
|
Limit?: number;
|
|
139
138
|
}
|
|
@@ -478,9 +477,8 @@ export interface AccessPoint {
|
|
|
478
477
|
export interface ApplyInternetAddressResponse {
|
|
479
478
|
/**
|
|
480
479
|
* 互联网公网地址ID
|
|
481
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
482
480
|
*/
|
|
483
|
-
InstanceId
|
|
481
|
+
InstanceId?: string;
|
|
484
482
|
/**
|
|
485
483
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
486
484
|
*/
|
|
@@ -849,7 +847,6 @@ export interface DescribeDirectConnectsResponse {
|
|
|
849
847
|
TotalCount?: number;
|
|
850
848
|
/**
|
|
851
849
|
* 用户名下物理专线是否都签署了用户协议。
|
|
852
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
853
850
|
*/
|
|
854
851
|
AllSignLaw?: boolean;
|
|
855
852
|
/**
|
|
@@ -980,7 +977,6 @@ export interface DescribeInternetAddressResponse {
|
|
|
980
977
|
TotalCount?: number;
|
|
981
978
|
/**
|
|
982
979
|
* 互联网公网地址列表
|
|
983
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
984
980
|
*/
|
|
985
981
|
Subnets?: Array<InternetAddressDetail>;
|
|
986
982
|
/**
|
|
@@ -1470,7 +1466,6 @@ export interface DescribeInternetAddressStatisticsResponse {
|
|
|
1470
1466
|
TotalCount?: number;
|
|
1471
1467
|
/**
|
|
1472
1468
|
* 互联网公网地址统计信息列表
|
|
1473
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1474
1469
|
*/
|
|
1475
1470
|
InternetAddressStatistics?: Array<InternetAddressStatistics>;
|
|
1476
1471
|
/**
|
|
@@ -1508,12 +1503,7 @@ export interface DescribeInternetAddressRequest {
|
|
|
1508
1503
|
*/
|
|
1509
1504
|
Limit?: number;
|
|
1510
1505
|
/**
|
|
1511
|
-
* 过滤条件:
|
|
1512
|
-
<li>AddrType, 地址类型。0:BGP 1; 1: 电信, 2:移动, 3:联通</li>
|
|
1513
|
-
<li>AddrProto地址类型。0:IPv4 1:IPv6</li>
|
|
1514
|
-
<li>Status 地址状态。 0:使用中, 1:已停用, 2:已退还</li>
|
|
1515
|
-
<li>Subnet 互联网公网地址,数组</li>
|
|
1516
|
-
<InstanceIds>互联网公网地址ID,数组</li>
|
|
1506
|
+
* 过滤条件: <li>AddrType,地址类型。0:BGP 1;1: 电信;2:移动;3:联通</li> <li>AddrProto,地址类型。0:IPv4;1:IPv6</li> <li>Status,地址状态。 0:使用中;1:已停用; 2:已退还</li> <li>Subnet,互联网公网地址。数组</li> <li>InstanceIds,互联网公网地址ID。数组</li>
|
|
1517
1507
|
*/
|
|
1518
1508
|
Filters?: Array<Filter>;
|
|
1519
1509
|
}
|
|
@@ -1522,11 +1512,11 @@ export interface DescribeInternetAddressRequest {
|
|
|
1522
1512
|
*/
|
|
1523
1513
|
export interface DescribePublicDirectConnectTunnelRoutesResponse {
|
|
1524
1514
|
/**
|
|
1525
|
-
*
|
|
1515
|
+
* 互联网通道路由列表。
|
|
1526
1516
|
*/
|
|
1527
1517
|
Routes?: Array<DirectConnectTunnelRoute>;
|
|
1528
1518
|
/**
|
|
1529
|
-
*
|
|
1519
|
+
* 路由总数量。
|
|
1530
1520
|
*/
|
|
1531
1521
|
TotalCount?: number;
|
|
1532
1522
|
/**
|
|
@@ -1540,27 +1530,22 @@ export interface DescribePublicDirectConnectTunnelRoutesResponse {
|
|
|
1540
1530
|
export interface DescribeInternetAddressQuotaResponse {
|
|
1541
1531
|
/**
|
|
1542
1532
|
* IPv6互联网公网允许的最小前缀长度
|
|
1543
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1544
1533
|
*/
|
|
1545
1534
|
Ipv6PrefixLen?: number;
|
|
1546
1535
|
/**
|
|
1547
1536
|
* BGP类型IPv4互联网地址配额
|
|
1548
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1549
1537
|
*/
|
|
1550
1538
|
Ipv4BgpQuota?: number;
|
|
1551
1539
|
/**
|
|
1552
1540
|
* 非BGP类型IPv4互联网地址配额
|
|
1553
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1554
1541
|
*/
|
|
1555
1542
|
Ipv4OtherQuota?: number;
|
|
1556
1543
|
/**
|
|
1557
1544
|
* BGP类型IPv4互联网地址已使用数量
|
|
1558
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1559
1545
|
*/
|
|
1560
1546
|
Ipv4BgpNum?: number;
|
|
1561
1547
|
/**
|
|
1562
1548
|
* 非BGP类型互联网地址已使用数量
|
|
1563
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1564
1549
|
*/
|
|
1565
1550
|
Ipv4OtherNum?: number;
|
|
1566
1551
|
/**
|
|
@@ -49,7 +49,6 @@ export interface AddNodeResourceConfigRequest {
|
|
|
49
49
|
export interface MonthRepeatStrategy {
|
|
50
50
|
/**
|
|
51
51
|
* 重复任务执行的具体时刻,例如"01:02:00"
|
|
52
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
53
52
|
*/
|
|
54
53
|
ExecuteAtTimeOfDay: string;
|
|
55
54
|
/**
|
|
@@ -1689,7 +1688,6 @@ export interface ModifyResourcesTagsResponse {
|
|
|
1689
1688
|
export interface CreateCloudInstanceResponse {
|
|
1690
1689
|
/**
|
|
1691
1690
|
* 实例ID
|
|
1692
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1693
1691
|
*/
|
|
1694
1692
|
InstanceId?: string;
|
|
1695
1693
|
/**
|
|
@@ -5201,7 +5199,6 @@ export interface StageInfoDetail {
|
|
|
5201
5199
|
export interface CreateClusterResponse {
|
|
5202
5200
|
/**
|
|
5203
5201
|
* 实例ID
|
|
5204
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5205
5202
|
*/
|
|
5206
5203
|
InstanceId?: string;
|
|
5207
5204
|
/**
|
|
@@ -591,6 +591,11 @@ export interface IndexMetaField {
|
|
|
591
591
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
592
592
|
*/
|
|
593
593
|
IndexSettingsField?: IndexSettingsField;
|
|
594
|
+
/**
|
|
595
|
+
* 索引别名字段
|
|
596
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
597
|
+
*/
|
|
598
|
+
IndexAliasesField?: Array<string>;
|
|
594
599
|
/**
|
|
595
600
|
* 索引所属集群APP ID
|
|
596
601
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -146,7 +146,7 @@ export declare class Client extends AbstractClient {
|
|
|
146
146
|
### 填充模板中定义的填写控件
|
|
147
147
|
模板中配置的<font color="red">发起人填充控件</font>可以通过本接口的**FormFields数组**字段填充。
|
|
148
148
|
|
|
149
|
-
**<font color="red">填充填写控件需要进行Pdf合成工作,文档合成完成后会收到[
|
|
149
|
+
**<font color="red">填充填写控件需要进行Pdf合成工作,文档合成完成后会收到[合同文档合成完成回调](https://qian.tencent.com/developers/company/callback_types_contracts_sign#%E4%B9%9D-%E5%90%88%E5%90%8C%E6%96%87%E6%A1%A3%E5%90%88%E6%88%90%E5%AE%8C%E6%88%90%E5%9B%9E%E8%B0%83),建议在收到此回调后再调用 [StartFlow](https://qian.tencent.com/developers/companyApis/startFlows/StartFlow) 接口。</font>**
|
|
150
150
|
|
|
151
151
|

|
|
152
152
|
|
|
@@ -743,7 +743,7 @@ export declare class Client extends AbstractClient {
|
|
|
743
743
|
|
|
744
744
|
注:
|
|
745
745
|
|
|
746
|
-
1.
|
|
746
|
+
1. 此接口需要 <font color="red"><b>购买单独的实名套餐包</b></font>方可调用,如有需求请联系对接人员评估
|
|
747
747
|
|
|
748
748
|
2. 如果生成的链接是APP链接,跳转到小程序的实现,参考微信官方文档(分为<a href="https://developers.weixin.qq.com/miniprogram/dev/api/navigate/wx.navigateToMiniProgram.html">全屏</a>、<a href="https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/openEmbeddedMiniProgram.html">半屏</a>两种方式),如何配置也可以请参考: <a href="https://qian.tencent.com/developers/company/openwxminiprogram">跳转电子签小程序配置</a>
|
|
749
749
|
|
|
@@ -184,7 +184,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
184
184
|
### 填充模板中定义的填写控件
|
|
185
185
|
模板中配置的<font color="red">发起人填充控件</font>可以通过本接口的**FormFields数组**字段填充。
|
|
186
186
|
|
|
187
|
-
**<font color="red">填充填写控件需要进行Pdf合成工作,文档合成完成后会收到[
|
|
187
|
+
**<font color="red">填充填写控件需要进行Pdf合成工作,文档合成完成后会收到[合同文档合成完成回调](https://qian.tencent.com/developers/company/callback_types_contracts_sign#%E4%B9%9D-%E5%90%88%E5%90%8C%E6%96%87%E6%A1%A3%E5%90%88%E6%88%90%E5%AE%8C%E6%88%90%E5%9B%9E%E8%B0%83),建议在收到此回调后再调用 [StartFlow](https://qian.tencent.com/developers/companyApis/startFlows/StartFlow) 接口。</font>**
|
|
188
188
|
|
|
189
189
|

|
|
190
190
|
|
|
@@ -877,7 +877,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
877
877
|
|
|
878
878
|
注:
|
|
879
879
|
|
|
880
|
-
1.
|
|
880
|
+
1. 此接口需要 <font color="red"><b>购买单独的实名套餐包</b></font>方可调用,如有需求请联系对接人员评估
|
|
881
881
|
|
|
882
882
|
2. 如果生成的链接是APP链接,跳转到小程序的实现,参考微信官方文档(分为<a href="https://developers.weixin.qq.com/miniprogram/dev/api/navigate/wx.navigateToMiniProgram.html">全屏</a>、<a href="https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/openEmbeddedMiniProgram.html">半屏</a>两种方式),如何配置也可以请参考: <a href="https://qian.tencent.com/developers/company/openwxminiprogram">跳转电子签小程序配置</a>
|
|
883
883
|
|