tencentcloud-sdk-nodejs 4.0.589 → 4.0.590
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 +258 -0
- package/SERVICE_CHANGELOG.md +352 -108
- package/package.json +1 -1
- package/products.md +21 -21
- package/src/common/sdk_version.ts +1 -1
- package/src/services/asr/v20190614/asr_models.ts +1 -1
- package/src/services/cfw/v20190904/cfw_models.ts +7 -3
- package/src/services/cls/v20201016/cls_client.ts +1 -0
- package/src/services/cls/v20201016/cls_models.ts +46 -0
- package/src/services/cvm/v20170312/cvm_models.ts +2 -2
- package/src/services/dbbrain/v20210527/dbbrain_models.ts +3 -4
- package/src/services/dlc/v20210125/dlc_client.ts +1 -1
- package/src/services/dlc/v20210125/dlc_models.ts +12 -0
- package/src/services/dts/v20211206/dts_models.ts +3 -3
- package/src/services/ecdn/v20191012/ecdn_client.ts +21 -7
- package/src/services/gaap/v20180529/gaap_client.ts +16 -4
- package/src/services/gaap/v20180529/gaap_models.ts +70 -55
- package/src/services/lcic/v20220817/lcic_models.ts +32 -0
- package/src/services/lighthouse/v20200324/lighthouse_models.ts +4 -4
- package/src/services/pts/v20210728/pts_models.ts +3 -3
- package/src/services/redis/v20180412/redis_client.ts +1 -1
- package/src/services/redis/v20180412/redis_models.ts +38 -34
- package/src/services/ssm/v20190923/ssm_models.ts +18 -0
- package/src/services/tdmq/v20200217/tdmq_models.ts +8 -8
- package/src/services/tke/v20180525/tke_models.ts +1 -1
- package/src/services/trtc/v20190722/trtc_models.ts +1 -1
- package/src/services/tsf/v20180326/tsf_client.ts +14 -1
- package/src/services/tsf/v20180326/tsf_models.ts +70 -7
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/asr/v20190614/asr_models.d.ts +1 -1
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +6 -2
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +38 -0
- package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +2 -2
- package/tencentcloud/services/dbbrain/v20210527/dbbrain_models.d.ts +2 -3
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +1 -1
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +1 -1
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +10 -0
- package/tencentcloud/services/dts/v20211206/dts_models.d.ts +3 -3
- package/tencentcloud/services/ecdn/v20191012/ecdn_client.d.ts +21 -7
- package/tencentcloud/services/ecdn/v20191012/ecdn_client.js +21 -7
- package/tencentcloud/services/gaap/v20180529/gaap_client.d.ts +5 -1
- package/tencentcloud/services/gaap/v20180529/gaap_client.js +6 -0
- package/tencentcloud/services/gaap/v20180529/gaap_models.d.ts +61 -48
- package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +26 -0
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +4 -4
- package/tencentcloud/services/pts/v20210728/pts_models.d.ts +3 -3
- package/tencentcloud/services/redis/v20180412/redis_client.d.ts +1 -1
- package/tencentcloud/services/redis/v20180412/redis_client.js +1 -1
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +35 -31
- package/tencentcloud/services/ssm/v20190923/ssm_models.d.ts +15 -0
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +8 -8
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +1 -1
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +1 -1
- package/tencentcloud/services/tsf/v20180326/tsf_client.d.ts +5 -1
- package/tencentcloud/services/tsf/v20180326/tsf_client.js +6 -0
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +60 -6
- package/test/gaap.v20180529.test.js +10 -0
- package/test/tsf.v20180326.test.js +10 -0
|
@@ -479,6 +479,16 @@ export interface AccessConfiguration {
|
|
|
479
479
|
NetworkType?: string
|
|
480
480
|
}
|
|
481
481
|
|
|
482
|
+
/**
|
|
483
|
+
* ModifyProxiesProject返回参数结构体
|
|
484
|
+
*/
|
|
485
|
+
export interface ModifyProxiesProjectResponse {
|
|
486
|
+
/**
|
|
487
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
488
|
+
*/
|
|
489
|
+
RequestId?: string
|
|
490
|
+
}
|
|
491
|
+
|
|
482
492
|
/**
|
|
483
493
|
* DescribeCertificateDetail请求参数结构体
|
|
484
494
|
*/
|
|
@@ -490,21 +500,44 @@ export interface DescribeCertificateDetailRequest {
|
|
|
490
500
|
}
|
|
491
501
|
|
|
492
502
|
/**
|
|
493
|
-
*
|
|
503
|
+
* 加速通道接入点详细信息(包含id、地域、ip等)
|
|
494
504
|
*/
|
|
495
|
-
export interface
|
|
505
|
+
export interface ProxyAccessInfo {
|
|
496
506
|
/**
|
|
497
|
-
*
|
|
498
|
-
|
|
499
|
-
ProxyGroup表示通道组,
|
|
500
|
-
RealServer表示源站
|
|
507
|
+
* 地域ID
|
|
508
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
501
509
|
*/
|
|
502
|
-
|
|
510
|
+
RegionId: string
|
|
503
511
|
|
|
504
512
|
/**
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
513
|
+
* 地域名称
|
|
514
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
515
|
+
*/
|
|
516
|
+
RegionName: string
|
|
517
|
+
|
|
518
|
+
/**
|
|
519
|
+
* 通道ID
|
|
520
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
521
|
+
*/
|
|
522
|
+
ProxyId: string
|
|
523
|
+
|
|
524
|
+
/**
|
|
525
|
+
* 通道接入ip
|
|
526
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
527
|
+
*/
|
|
528
|
+
Vip: string
|
|
529
|
+
|
|
530
|
+
/**
|
|
531
|
+
* 三网通道VIP列表
|
|
532
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
533
|
+
*/
|
|
534
|
+
VipList: Array<IPDetail>
|
|
535
|
+
|
|
536
|
+
/**
|
|
537
|
+
* 接入点IDC类型。ec或dc
|
|
538
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
539
|
+
*/
|
|
540
|
+
SourceRegionIdcType: string
|
|
508
541
|
}
|
|
509
542
|
|
|
510
543
|
/**
|
|
@@ -1935,44 +1968,13 @@ export interface DescribeDestRegionsResponse {
|
|
|
1935
1968
|
}
|
|
1936
1969
|
|
|
1937
1970
|
/**
|
|
1938
|
-
*
|
|
1971
|
+
* DescribeAuthSignature返回参数结构体
|
|
1939
1972
|
*/
|
|
1940
|
-
export interface
|
|
1941
|
-
/**
|
|
1942
|
-
* 地域ID
|
|
1943
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1944
|
-
*/
|
|
1945
|
-
RegionId: string
|
|
1946
|
-
|
|
1973
|
+
export interface DescribeAuthSignatureResponse {
|
|
1947
1974
|
/**
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
RegionName: string
|
|
1952
|
-
|
|
1953
|
-
/**
|
|
1954
|
-
* 通道ID
|
|
1955
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1956
|
-
*/
|
|
1957
|
-
ProxyId: string
|
|
1958
|
-
|
|
1959
|
-
/**
|
|
1960
|
-
* 通道接入ip
|
|
1961
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1962
|
-
*/
|
|
1963
|
-
Vip: string
|
|
1964
|
-
|
|
1965
|
-
/**
|
|
1966
|
-
* 三网通道VIP列表
|
|
1967
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1968
|
-
*/
|
|
1969
|
-
VipList: Array<IPDetail>
|
|
1970
|
-
|
|
1971
|
-
/**
|
|
1972
|
-
* 接入点IDC类型。ec或dc
|
|
1973
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1974
|
-
*/
|
|
1975
|
-
SourceRegionIdcType: string
|
|
1975
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1976
|
+
*/
|
|
1977
|
+
RequestId?: string
|
|
1976
1978
|
}
|
|
1977
1979
|
|
|
1978
1980
|
/**
|
|
@@ -2422,6 +2424,24 @@ export interface EnableGlobalDomainResponse {
|
|
|
2422
2424
|
RequestId?: string
|
|
2423
2425
|
}
|
|
2424
2426
|
|
|
2427
|
+
/**
|
|
2428
|
+
* 标签对应资源信息
|
|
2429
|
+
*/
|
|
2430
|
+
export interface TagResourceInfo {
|
|
2431
|
+
/**
|
|
2432
|
+
* 资源类型,其中:
|
|
2433
|
+
Proxy表示通道,
|
|
2434
|
+
ProxyGroup表示通道组,
|
|
2435
|
+
RealServer表示源站
|
|
2436
|
+
*/
|
|
2437
|
+
ResourceType: string
|
|
2438
|
+
|
|
2439
|
+
/**
|
|
2440
|
+
* 资源ID
|
|
2441
|
+
*/
|
|
2442
|
+
ResourceId: string
|
|
2443
|
+
}
|
|
2444
|
+
|
|
2425
2445
|
/**
|
|
2426
2446
|
* CreateSecurityRules返回参数结构体
|
|
2427
2447
|
*/
|
|
@@ -2817,14 +2837,9 @@ export interface EnableGlobalDomainRequest {
|
|
|
2817
2837
|
}
|
|
2818
2838
|
|
|
2819
2839
|
/**
|
|
2820
|
-
*
|
|
2840
|
+
* DescribeAuthSignature请求参数结构体
|
|
2821
2841
|
*/
|
|
2822
|
-
export
|
|
2823
|
-
/**
|
|
2824
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2825
|
-
*/
|
|
2826
|
-
RequestId?: string
|
|
2827
|
-
}
|
|
2842
|
+
export type DescribeAuthSignatureRequest = null
|
|
2828
2843
|
|
|
2829
2844
|
/**
|
|
2830
2845
|
* ModifyDomain请求参数结构体
|
|
@@ -5532,9 +5547,9 @@ export interface ModifyProxyGroupAttributeRequest {
|
|
|
5532
5547
|
}
|
|
5533
5548
|
|
|
5534
5549
|
/**
|
|
5535
|
-
*
|
|
5550
|
+
* ModifyGlobalDomainDns返回参数结构体
|
|
5536
5551
|
*/
|
|
5537
|
-
export interface
|
|
5552
|
+
export interface ModifyGlobalDomainDnsResponse {
|
|
5538
5553
|
/**
|
|
5539
5554
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5540
5555
|
*/
|
|
@@ -117,6 +117,11 @@ video 纯视频
|
|
|
117
117
|
* 房间绑定的群组ID,非空时限制组成员进入
|
|
118
118
|
*/
|
|
119
119
|
GroupId?: string
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* 打开学生麦克风/摄像头的授权开关
|
|
123
|
+
*/
|
|
124
|
+
EnableDirectControl?: number
|
|
120
125
|
}
|
|
121
126
|
|
|
122
127
|
/**
|
|
@@ -714,6 +719,18 @@ export interface RoomItem {
|
|
|
714
719
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
715
720
|
*/
|
|
716
721
|
RecordUrl?: string
|
|
722
|
+
|
|
723
|
+
/**
|
|
724
|
+
* 最高房间内人数(包括老师),0表示不限制,默认为0
|
|
725
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
726
|
+
*/
|
|
727
|
+
MaxMicNumber?: number
|
|
728
|
+
|
|
729
|
+
/**
|
|
730
|
+
* 打开学生麦克风/摄像头的授权开关
|
|
731
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
732
|
+
*/
|
|
733
|
+
EnableDirectControl?: number
|
|
717
734
|
}
|
|
718
735
|
|
|
719
736
|
/**
|
|
@@ -2043,6 +2060,11 @@ video 纯视频
|
|
|
2043
2060
|
*/
|
|
2044
2061
|
GroupId?: string
|
|
2045
2062
|
|
|
2063
|
+
/**
|
|
2064
|
+
* 打开学生麦克风/摄像头的授权开关
|
|
2065
|
+
*/
|
|
2066
|
+
EnableDirectControl?: number
|
|
2067
|
+
|
|
2046
2068
|
/**
|
|
2047
2069
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2048
2070
|
*/
|
|
@@ -2519,6 +2541,11 @@ export interface RoomInfo {
|
|
|
2519
2541
|
* 房间绑定的群组ID
|
|
2520
2542
|
*/
|
|
2521
2543
|
GroupId?: string
|
|
2544
|
+
|
|
2545
|
+
/**
|
|
2546
|
+
* 打开学生麦克风/摄像头的授权开关
|
|
2547
|
+
*/
|
|
2548
|
+
EnableDirectControl?: number
|
|
2522
2549
|
}
|
|
2523
2550
|
|
|
2524
2551
|
/**
|
|
@@ -2612,6 +2639,11 @@ coteaching 双师
|
|
|
2612
2639
|
* 房间绑定的群组ID
|
|
2613
2640
|
*/
|
|
2614
2641
|
GroupId?: string
|
|
2642
|
+
|
|
2643
|
+
/**
|
|
2644
|
+
* 打开学生麦克风/摄像头的授权开关
|
|
2645
|
+
*/
|
|
2646
|
+
EnableDirectControl?: number
|
|
2615
2647
|
}
|
|
2616
2648
|
|
|
2617
2649
|
/**
|
|
@@ -554,12 +554,12 @@ export interface DescribeBundlesResponse {
|
|
|
554
554
|
/**
|
|
555
555
|
* 套餐详细信息列表。
|
|
556
556
|
*/
|
|
557
|
-
BundleSet
|
|
557
|
+
BundleSet?: Array<Bundle>
|
|
558
558
|
|
|
559
559
|
/**
|
|
560
560
|
* 符合要求的套餐总数,用于分页展示。
|
|
561
561
|
*/
|
|
562
|
-
TotalCount
|
|
562
|
+
TotalCount?: number
|
|
563
563
|
|
|
564
564
|
/**
|
|
565
565
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -2833,7 +2833,7 @@ export interface CreateDiskBackupResponse {
|
|
|
2833
2833
|
/**
|
|
2834
2834
|
* 备份点ID。
|
|
2835
2835
|
*/
|
|
2836
|
-
DiskBackupId
|
|
2836
|
+
DiskBackupId?: string
|
|
2837
2837
|
|
|
2838
2838
|
/**
|
|
2839
2839
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -3892,7 +3892,7 @@ export interface CreateInstanceSnapshotResponse {
|
|
|
3892
3892
|
/**
|
|
3893
3893
|
* 快照 ID。
|
|
3894
3894
|
*/
|
|
3895
|
-
SnapshotId
|
|
3895
|
+
SnapshotId?: string
|
|
3896
3896
|
|
|
3897
3897
|
/**
|
|
3898
3898
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -3124,19 +3124,19 @@ export interface DescribeSampleLogsResponse {
|
|
|
3124
3124
|
/**
|
|
3125
3125
|
* 日志总数
|
|
3126
3126
|
*/
|
|
3127
|
-
Total
|
|
3127
|
+
Total?: number
|
|
3128
3128
|
|
|
3129
3129
|
/**
|
|
3130
3130
|
* 日志上下文,加载更多日志时使用,透传上次返回的Context值,获取后续的日志内容。过期时间1小时
|
|
3131
3131
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3132
3132
|
*/
|
|
3133
|
-
Context
|
|
3133
|
+
Context?: string
|
|
3134
3134
|
|
|
3135
3135
|
/**
|
|
3136
3136
|
* 采样日志数组
|
|
3137
3137
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3138
3138
|
*/
|
|
3139
|
-
SampleLogs
|
|
3139
|
+
SampleLogs?: Array<SampleLog>
|
|
3140
3140
|
|
|
3141
3141
|
/**
|
|
3142
3142
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -692,9 +692,9 @@ export interface ModifyInstanceRequest {
|
|
|
692
692
|
*/
|
|
693
693
|
export interface KillMasterGroupResponse {
|
|
694
694
|
/**
|
|
695
|
-
* 异步任务ID
|
|
695
|
+
* 异步任务ID。
|
|
696
696
|
*/
|
|
697
|
-
TaskId
|
|
697
|
+
TaskId?: number
|
|
698
698
|
|
|
699
699
|
/**
|
|
700
700
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -946,12 +946,12 @@ export interface DescribeInstancesResponse {
|
|
|
946
946
|
/**
|
|
947
947
|
* 实例总数量。
|
|
948
948
|
*/
|
|
949
|
-
TotalCount
|
|
949
|
+
TotalCount?: number
|
|
950
950
|
|
|
951
951
|
/**
|
|
952
952
|
* 实例详细信息列表。
|
|
953
953
|
*/
|
|
954
|
-
InstanceSet
|
|
954
|
+
InstanceSet?: Array<InstanceSet>
|
|
955
955
|
|
|
956
956
|
/**
|
|
957
957
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -1664,12 +1664,12 @@ export interface CreateParamTemplateResponse {
|
|
|
1664
1664
|
*/
|
|
1665
1665
|
export interface InstanceTagInfo {
|
|
1666
1666
|
/**
|
|
1667
|
-
*
|
|
1667
|
+
* 标签键。
|
|
1668
1668
|
*/
|
|
1669
1669
|
TagKey: string
|
|
1670
1670
|
|
|
1671
1671
|
/**
|
|
1672
|
-
*
|
|
1672
|
+
* 标签值。
|
|
1673
1673
|
*/
|
|
1674
1674
|
TagValue: string
|
|
1675
1675
|
}
|
|
@@ -2510,23 +2510,20 @@ export interface DeleteReplicationInstanceRequest {
|
|
|
2510
2510
|
*/
|
|
2511
2511
|
export interface KillMasterGroupRequest {
|
|
2512
2512
|
/**
|
|
2513
|
-
*
|
|
2513
|
+
* 指定实例 ID。例如:crs-xjhsdj****。请登录[Redis控制台](https://console.cloud.tencent.com/redis)在实例列表复制实例 ID。
|
|
2514
2514
|
*/
|
|
2515
2515
|
InstanceId: string
|
|
2516
2516
|
|
|
2517
2517
|
/**
|
|
2518
|
-
*
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
b.大写字母A-Z
|
|
2523
|
-
c.数字0-9
|
|
2524
|
-
d.()`~!@#$%^&*-+=_|{}[]:;<>,.?/
|
|
2518
|
+
* 该参数用于配置指定实例的访问密码。若为免密认证,该参数则无需配置。密码复杂度要求如下所示。
|
|
2519
|
+
- 长度8-30位,推荐使用12位以上的密码
|
|
2520
|
+
- 不能以"/"开头
|
|
2521
|
+
- 至少包含小写字母a-z、大写字母A-Z、数字0-9及其 ()`~!@#$%^&*-+=_|{}[]:;<>,.?/中的两项。
|
|
2525
2522
|
*/
|
|
2526
|
-
Password
|
|
2523
|
+
Password?: string
|
|
2527
2524
|
|
|
2528
2525
|
/**
|
|
2529
|
-
*
|
|
2526
|
+
* 分片集群的分片 ID。
|
|
2530
2527
|
*/
|
|
2531
2528
|
ShardIds?: Array<number>
|
|
2532
2529
|
}
|
|
@@ -3642,12 +3639,12 @@ export interface ManualBackupInstanceResponse {
|
|
|
3642
3639
|
*/
|
|
3643
3640
|
export interface InstanceNode {
|
|
3644
3641
|
/**
|
|
3645
|
-
*
|
|
3642
|
+
* 实例 ID。
|
|
3646
3643
|
*/
|
|
3647
3644
|
Id: number
|
|
3648
3645
|
|
|
3649
3646
|
/**
|
|
3650
|
-
*
|
|
3647
|
+
* 节点详细信息。
|
|
3651
3648
|
*/
|
|
3652
3649
|
InstanceClusterNode: Array<InstanceClusterNode>
|
|
3653
3650
|
}
|
|
@@ -5140,67 +5137,74 @@ export interface AddReplicationInstanceRequest {
|
|
|
5140
5137
|
*/
|
|
5141
5138
|
export interface InstanceClusterNode {
|
|
5142
5139
|
/**
|
|
5143
|
-
*
|
|
5140
|
+
* 节点名称。
|
|
5144
5141
|
*/
|
|
5145
5142
|
Name: string
|
|
5146
5143
|
|
|
5147
5144
|
/**
|
|
5148
|
-
* 实例运行时节点
|
|
5145
|
+
* 实例运行时节点 ID。
|
|
5149
5146
|
*/
|
|
5150
5147
|
RunId: string
|
|
5151
5148
|
|
|
5152
5149
|
/**
|
|
5153
|
-
|
|
5154
|
-
|
|
5150
|
+
* 集群角色。
|
|
5151
|
+
- 0:master。
|
|
5152
|
+
- 1:slave。
|
|
5153
|
+
*/
|
|
5155
5154
|
Role: number
|
|
5156
5155
|
|
|
5157
5156
|
/**
|
|
5158
|
-
|
|
5159
|
-
|
|
5157
|
+
* 节点状态。
|
|
5158
|
+
- 0:readwrite,。
|
|
5159
|
+
- 1:read。
|
|
5160
|
+
- 2:backup。
|
|
5161
|
+
*/
|
|
5160
5162
|
Status: number
|
|
5161
5163
|
|
|
5162
5164
|
/**
|
|
5163
|
-
|
|
5164
|
-
|
|
5165
|
+
* 服务状态。
|
|
5166
|
+
0-down。
|
|
5167
|
+
1-on
|
|
5168
|
+
*/
|
|
5165
5169
|
Connected: number
|
|
5166
5170
|
|
|
5167
5171
|
/**
|
|
5168
|
-
*
|
|
5172
|
+
* 节点创建时间。
|
|
5169
5173
|
*/
|
|
5170
5174
|
CreateTime: string
|
|
5171
5175
|
|
|
5172
5176
|
/**
|
|
5173
|
-
*
|
|
5177
|
+
* 节点下线时间。
|
|
5174
5178
|
*/
|
|
5175
5179
|
DownTime: string
|
|
5176
5180
|
|
|
5177
5181
|
/**
|
|
5178
|
-
* 节点
|
|
5182
|
+
* 节点 Slot 分布区间。
|
|
5179
5183
|
*/
|
|
5180
5184
|
Slots: string
|
|
5181
5185
|
|
|
5182
5186
|
/**
|
|
5183
|
-
* 节点
|
|
5187
|
+
* 节点 Key分布。
|
|
5184
5188
|
*/
|
|
5185
5189
|
Keys: number
|
|
5186
5190
|
|
|
5187
5191
|
/**
|
|
5188
|
-
* 节点
|
|
5192
|
+
* 节点 QPS。分片节点每秒执行次数。单位:次/秒。
|
|
5189
5193
|
*/
|
|
5190
5194
|
Qps: number
|
|
5191
5195
|
|
|
5192
5196
|
/**
|
|
5193
|
-
* 节点
|
|
5197
|
+
* 节点 QPS 倾斜度。
|
|
5194
5198
|
*/
|
|
5195
5199
|
QpsSlope: number
|
|
5196
5200
|
|
|
5197
5201
|
/**
|
|
5198
|
-
*
|
|
5202
|
+
* 节点存储。
|
|
5199
5203
|
*/
|
|
5200
5204
|
Storage: number
|
|
5201
5205
|
|
|
5202
5206
|
/**
|
|
5203
|
-
*
|
|
5207
|
+
* 节点存储倾斜度。
|
|
5204
5208
|
*/
|
|
5205
5209
|
StorageSlope: number
|
|
5206
5210
|
}
|
|
@@ -511,6 +511,24 @@ export interface SecretMetadata {
|
|
|
511
511
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
512
512
|
*/
|
|
513
513
|
TargetUin: number
|
|
514
|
+
|
|
515
|
+
/**
|
|
516
|
+
* 轮转的频率,以天作为单位,在轮转开启状态下生效。
|
|
517
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
518
|
+
*/
|
|
519
|
+
RotationFrequency?: number
|
|
520
|
+
|
|
521
|
+
/**
|
|
522
|
+
* 云产品凭据对应的云产品实例 ID 号。
|
|
523
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
524
|
+
*/
|
|
525
|
+
ResourceID?: string
|
|
526
|
+
|
|
527
|
+
/**
|
|
528
|
+
* 用户指定的轮转开始时间。
|
|
529
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
530
|
+
*/
|
|
531
|
+
RotationBeginTime?: string
|
|
514
532
|
}
|
|
515
533
|
|
|
516
534
|
/**
|
|
@@ -1515,14 +1515,14 @@ export interface CreateRocketMQNamespaceRequest {
|
|
|
1515
1515
|
NamespaceId: string
|
|
1516
1516
|
|
|
1517
1517
|
/**
|
|
1518
|
-
*
|
|
1518
|
+
* 已废弃
|
|
1519
1519
|
*/
|
|
1520
|
-
Ttl
|
|
1520
|
+
Ttl?: number
|
|
1521
1521
|
|
|
1522
1522
|
/**
|
|
1523
|
-
*
|
|
1523
|
+
* 已废弃
|
|
1524
1524
|
*/
|
|
1525
|
-
RetentionTime
|
|
1525
|
+
RetentionTime?: number
|
|
1526
1526
|
|
|
1527
1527
|
/**
|
|
1528
1528
|
* 说明,最大128个字符
|
|
@@ -7908,14 +7908,14 @@ export interface ModifyRocketMQNamespaceRequest {
|
|
|
7908
7908
|
NamespaceId: string
|
|
7909
7909
|
|
|
7910
7910
|
/**
|
|
7911
|
-
*
|
|
7911
|
+
* 已废弃
|
|
7912
7912
|
*/
|
|
7913
|
-
Ttl
|
|
7913
|
+
Ttl?: number
|
|
7914
7914
|
|
|
7915
7915
|
/**
|
|
7916
|
-
*
|
|
7916
|
+
* 已废弃
|
|
7917
7917
|
*/
|
|
7918
|
-
RetentionTime
|
|
7918
|
+
RetentionTime?: number
|
|
7919
7919
|
|
|
7920
7920
|
/**
|
|
7921
7921
|
* 说明,最大128个字符
|
|
@@ -2293,7 +2293,7 @@ export interface CreateCloudRecordingRequest {
|
|
|
2293
2293
|
RecordParams: RecordParams
|
|
2294
2294
|
|
|
2295
2295
|
/**
|
|
2296
|
-
* 云端录制文件上传到云存储的参数(目前支持云点播VOD和对象存储COS)
|
|
2296
|
+
* 云端录制文件上传到云存储的参数(目前支持云点播VOD和对象存储COS)。点播和对象存储的参数必填其中之一,不支持同时设置点播和对象存储。
|
|
2297
2297
|
*/
|
|
2298
2298
|
StorageParams: StorageParams
|
|
2299
2299
|
|
|
@@ -21,7 +21,7 @@ import {
|
|
|
21
21
|
DescribePublicConfigSummaryRequest,
|
|
22
22
|
TsfPageFileConfig,
|
|
23
23
|
ModifyPathRewriteRequest,
|
|
24
|
-
|
|
24
|
+
DescribeUnitRulesV2Response,
|
|
25
25
|
ApiDetailResponse,
|
|
26
26
|
UpdateApiRateLimitRuleRequest,
|
|
27
27
|
DeleteClusterResponse,
|
|
@@ -39,6 +39,7 @@ import {
|
|
|
39
39
|
DeleteLaneResponse,
|
|
40
40
|
DescribeGroupReleaseRequest,
|
|
41
41
|
DescribeConfigTemplateResponse,
|
|
42
|
+
TsfPageContainerEvent,
|
|
42
43
|
DescribeDeliveryConfigResponse,
|
|
43
44
|
SimpleApplication,
|
|
44
45
|
ContinueRunFailedTaskBatchRequest,
|
|
@@ -335,6 +336,7 @@ import {
|
|
|
335
336
|
DescribeInvocationMetricDataDimensionRequest,
|
|
336
337
|
DeployGroupResponse,
|
|
337
338
|
ModifyGroupResponse,
|
|
339
|
+
DescribeUnitRulesV2Request,
|
|
338
340
|
BindApiGroupResponse,
|
|
339
341
|
MetricDataPointMap,
|
|
340
342
|
DescribeGroupAttributeResponse,
|
|
@@ -573,6 +575,7 @@ import {
|
|
|
573
575
|
AddInstanceResult,
|
|
574
576
|
DescribeFlowLastBatchStateResponse,
|
|
575
577
|
StopTaskExecuteResponse,
|
|
578
|
+
TsfPageUnitRuleV2,
|
|
576
579
|
UpdateApiRateLimitRulesResponse,
|
|
577
580
|
DeleteRepositoryRequest,
|
|
578
581
|
DescribeSimpleGroupsRequest,
|
|
@@ -1466,6 +1469,16 @@ COS相关文档请查阅:https://cloud.tencent.com/document/product/436
|
|
|
1466
1469
|
return this.request("DescribeBusinessLogConfigs", req, cb)
|
|
1467
1470
|
}
|
|
1468
1471
|
|
|
1472
|
+
/**
|
|
1473
|
+
* 查询单元化规则列表V2
|
|
1474
|
+
*/
|
|
1475
|
+
async DescribeUnitRulesV2(
|
|
1476
|
+
req: DescribeUnitRulesV2Request,
|
|
1477
|
+
cb?: (error: string, rep: DescribeUnitRulesV2Response) => void
|
|
1478
|
+
): Promise<DescribeUnitRulesV2Response> {
|
|
1479
|
+
return this.request("DescribeUnitRulesV2", req, cb)
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1469
1482
|
/**
|
|
1470
1483
|
* 创建公共配置项,并返回配置项详细信息
|
|
1471
1484
|
*/
|