tencentcloud-sdk-nodejs 4.1.89 → 4.1.90
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/es/common/sdk_version.js +1 -1
- package/es/services/cam/v20190116/cam_client.js +7 -4
- package/es/services/cfs/v20190719/cfs_client.js +66 -27
- package/es/services/lowcode/v20210108/lowcode_client.js +12 -0
- package/es/services/wedata/v20210820/wedata_client.js +5 -2
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/bi/v20220105/bi_models.d.ts +43 -1
- package/tencentcloud/services/cam/v20190116/cam_client.d.ts +9 -5
- package/tencentcloud/services/cam/v20190116/cam_client.js +12 -6
- package/tencentcloud/services/cam/v20190116/cam_models.d.ts +69 -22
- package/tencentcloud/services/cdb/v20170320/cdb_client.d.ts +2 -1
- package/tencentcloud/services/cdb/v20170320/cdb_client.js +2 -1
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +30 -22
- package/tencentcloud/services/cfs/v20190719/cfs_client.d.ts +82 -30
- package/tencentcloud/services/cfs/v20190719/cfs_client.js +121 -43
- package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +934 -275
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +15 -7
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +169 -61
- package/tencentcloud/services/ctem/v20231128/ctem_models.d.ts +110 -6
- package/tencentcloud/services/kms/v20190118/kms_models.d.ts +1 -1
- package/tencentcloud/services/live/v20180801/live_models.d.ts +1 -1
- package/tencentcloud/services/lowcode/v20210108/lowcode_client.d.ts +17 -1
- package/tencentcloud/services/lowcode/v20210108/lowcode_client.js +24 -0
- package/tencentcloud/services/lowcode/v20210108/lowcode_models.d.ts +148 -31
- package/tencentcloud/services/ssl/v20191205/ssl_models.d.ts +16 -12
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +14 -1
- package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +7 -3
- package/tencentcloud/services/wedata/v20210820/wedata_client.js +9 -3
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +86 -4
@@ -3736,7 +3736,7 @@ export interface CreateTargetGroupRequest {
|
|
3736
3736
|
*/
|
3737
3737
|
Type?: string;
|
3738
3738
|
/**
|
3739
|
-
* 目标组后端转发协议。v2新版目标组该项必填。目前支持
|
3739
|
+
* 目标组后端转发协议。v2新版目标组该项必填。目前支持TCP、UDP、HTTP、HTTPS、GRPC。
|
3740
3740
|
*/
|
3741
3741
|
Protocol?: string;
|
3742
3742
|
/**
|
@@ -3753,7 +3753,7 @@ export interface CreateTargetGroupRequest {
|
|
3753
3753
|
*/
|
3754
3754
|
Weight?: number;
|
3755
3755
|
/**
|
3756
|
-
*
|
3756
|
+
* 全监听目标组标识,true表示是全监听目标组,false表示不是全监听目标组。仅V2新版类型目标组支持该参数。
|
3757
3757
|
*/
|
3758
3758
|
FullListenSwitch?: boolean;
|
3759
3759
|
/**
|
@@ -3761,7 +3761,7 @@ export interface CreateTargetGroupRequest {
|
|
3761
3761
|
*/
|
3762
3762
|
KeepaliveEnable?: boolean;
|
3763
3763
|
/**
|
3764
|
-
* 会话保持时间,单位:秒。可选值:30~3600,默认 0
|
3764
|
+
* 会话保持时间,单位:秒。可选值:30~3600,默认 0,表示不开启。仅V2新版且后端转发协议为HTTP/HTTPS/GRPC目标组支持该参数。
|
3765
3765
|
*/
|
3766
3766
|
SessionExpireTime?: number;
|
3767
3767
|
}
|
@@ -5603,13 +5603,12 @@ export interface TargetGroupInfo {
|
|
5603
5603
|
*/
|
5604
5604
|
AssociatedRule?: Array<AssociationItem>;
|
5605
5605
|
/**
|
5606
|
-
*
|
5607
|
-
|
5606
|
+
* 目标组后端转发协议, 仅v2新版目标组返回有效值。
|
5608
5607
|
注意:此字段可能返回 null,表示取不到有效值。
|
5609
5608
|
*/
|
5610
5609
|
Protocol?: string;
|
5611
5610
|
/**
|
5612
|
-
* 目标组类型,当前支持v1(旧版目标组), v2(新版目标组)
|
5611
|
+
* 目标组类型,当前支持v1(旧版目标组), v2(新版目标组)。默认为v1旧版目标组。
|
5613
5612
|
*/
|
5614
5613
|
TargetGroupType?: string;
|
5615
5614
|
/**
|
@@ -5626,12 +5625,21 @@ export interface TargetGroupInfo {
|
|
5626
5625
|
Tag?: Array<TagInfo>;
|
5627
5626
|
/**
|
5628
5627
|
* 默认权重。只有v2类型目标组返回该字段。当返回为NULL时, 表示未设置默认权重。
|
5628
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5629
5629
|
*/
|
5630
5630
|
Weight?: number;
|
5631
5631
|
/**
|
5632
|
-
*
|
5632
|
+
* 是否全监听目标组。
|
5633
5633
|
*/
|
5634
5634
|
FullListenSwitch?: boolean;
|
5635
|
+
/**
|
5636
|
+
* 是否开启长连接, 仅后端转发协议为HTTP/HTTPS/GRPC目标组返回有效值。
|
5637
|
+
*/
|
5638
|
+
KeepaliveEnable?: boolean;
|
5639
|
+
/**
|
5640
|
+
* 会话保持时间,仅后端转发协议为HTTP/HTTPS/GRPC目标组返回有效值。
|
5641
|
+
*/
|
5642
|
+
SessionExpireTime?: number;
|
5635
5643
|
}
|
5636
5644
|
/**
|
5637
5645
|
* DeleteListener返回参数结构体
|
@@ -303,7 +303,8 @@ export interface DescribeLogContextRequest {
|
|
303
303
|
*/
|
304
304
|
export interface DeleteShipperRequest {
|
305
305
|
/**
|
306
|
-
* 投递规则
|
306
|
+
* 投递规则Id。
|
307
|
+
- 通过 [获取投递任务列表](https://cloud.tencent.com/document/product/614/58745)获取ShipperId。
|
307
308
|
*/
|
308
309
|
ShipperId: string;
|
309
310
|
}
|
@@ -452,19 +453,24 @@ export interface ModifyConfigExtraResponse {
|
|
452
453
|
*/
|
453
454
|
export interface SearchCosRechargeInfoRequest {
|
454
455
|
/**
|
455
|
-
* 日志主题
|
456
|
+
* 日志主题Id。
|
457
|
+
- 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
|
456
458
|
*/
|
457
459
|
TopicId: string;
|
458
460
|
/**
|
459
|
-
* 日志集
|
461
|
+
* 日志集Id。
|
462
|
+
|
463
|
+
- 通过[获取日志集列表](https://cloud.tencent.com/document/product/614/58624)获取日志集Id。
|
460
464
|
*/
|
461
465
|
LogsetId: string;
|
462
466
|
/**
|
463
|
-
*
|
467
|
+
* COS导入任务名称,最大支持128个字节。
|
464
468
|
*/
|
465
469
|
Name: string;
|
466
470
|
/**
|
467
471
|
* COS存储桶,详见产品支持的[存储桶命名规范](https://cloud.tencent.com/document/product/436/13312)。
|
472
|
+
|
473
|
+
- 通过[GET Service(List Buckets)](https://cloud.tencent.com/document/product/436/8291)获取COS存储桶。
|
468
474
|
*/
|
469
475
|
Bucket: string;
|
470
476
|
/**
|
@@ -476,7 +482,7 @@ export interface SearchCosRechargeInfoRequest {
|
|
476
482
|
*/
|
477
483
|
Prefix?: string;
|
478
484
|
/**
|
479
|
-
* 压缩模式: "", "gzip", "lzop", "snappy"
|
485
|
+
* 压缩模式: "", "gzip", "lzop", "snappy"。 默认:"" 不压缩
|
480
486
|
*/
|
481
487
|
Compress?: string;
|
482
488
|
}
|
@@ -655,10 +661,9 @@ export interface DescribeShippersRequest {
|
|
655
661
|
- topicId:按照【日志主题】进行过滤。
|
656
662
|
类型:String。
|
657
663
|
必选:否
|
658
|
-
- taskStatus
|
659
|
-
|
660
|
-
|
661
|
-
必选:否
|
664
|
+
- taskStatus:按照【任务运行状态】进行过滤。 支持`0`:停止,`1`:运行中,`2`:异常
|
665
|
+
类型:String
|
666
|
+
必选:否
|
662
667
|
|
663
668
|
每次请求的Filters的上限为10,Filter.Values的上限为10。
|
664
669
|
*/
|
@@ -704,7 +709,7 @@ export interface DescribeDashboardsRequest {
|
|
704
709
|
/**
|
705
710
|
* - dashboardId 按照【仪表盘id】进行过滤,类型:String, 必选:否。
|
706
711
|
- dashboardName 按照【仪表盘名字】进行模糊搜索过滤,类型:String,必选:否。
|
707
|
-
- dashboardRegion 按照【仪表盘地域】进行过滤,为了兼容老的仪表盘,通过云API创建的仪表盘没有地域属性,类型:String,必选:否。
|
712
|
+
- dashboardRegion 按照【仪表盘地域】进行过滤,为了兼容老的仪表盘,通过云API创建的仪表盘没有地域属性,类型:String,必选:否。 [地域和访问域名](https://cloud.tencent.com/document/product/614/18940),例如:ap-guangzhou
|
708
713
|
- tagKey 按照【标签键】进行过滤,类型:String,必选:否。
|
709
714
|
- tag:tagKey 按照【标签键值对】进行过滤。tagKey使用具体的标签键进行替换,类型:String,必选:否,使用请参考[示例2](https://cloud.tencent.com/document/api/614/95636#4.-.E7.A4.BA.E4.BE.8B)。
|
710
715
|
|
@@ -713,6 +718,33 @@ export interface DescribeDashboardsRequest {
|
|
713
718
|
Filters?: Array<Filter>;
|
714
719
|
/**
|
715
720
|
* 按照topicId和regionId过滤。
|
721
|
+
|
722
|
+
- topicId:日志主题Id。
|
723
|
+
- 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
|
724
|
+
- regionId
|
725
|
+
- 1:广州
|
726
|
+
- 4:上海
|
727
|
+
- 5:中国香港
|
728
|
+
- 7:上海金融
|
729
|
+
- 8:北京
|
730
|
+
- 9:新加坡
|
731
|
+
- 11:深圳金融
|
732
|
+
- 15:硅谷
|
733
|
+
- 16:成都
|
734
|
+
- 17:法兰克福
|
735
|
+
- 18:首尔
|
736
|
+
- 19:重庆
|
737
|
+
- 22:弗吉尼亚
|
738
|
+
- 23:曼谷
|
739
|
+
- 25:东京
|
740
|
+
- 33:南京
|
741
|
+
- 36:天津
|
742
|
+
- 39:台北
|
743
|
+
- 46:北京金融
|
744
|
+
- 72:雅加达
|
745
|
+
- 74:圣保罗
|
746
|
+
- 78:上海自动驾驶云
|
747
|
+
|
716
748
|
*/
|
717
749
|
TopicIdRegionFilter?: Array<TopicIdAndRegion>;
|
718
750
|
}
|
@@ -915,7 +947,9 @@ export interface ModifyAlarmResponse {
|
|
915
947
|
*/
|
916
948
|
export interface DescribeShipperTasksRequest {
|
917
949
|
/**
|
918
|
-
* 投递规则
|
950
|
+
* 投递规则Id。
|
951
|
+
|
952
|
+
- 通过 [获取投递任务列表](https://cloud.tencent.com/document/product/614/58745)获取ShipperId。
|
919
953
|
*/
|
920
954
|
ShipperId: string;
|
921
955
|
/**
|
@@ -1927,19 +1961,25 @@ export interface ModifyTopicRequest {
|
|
1927
1961
|
*/
|
1928
1962
|
export interface CreateCosRechargeRequest {
|
1929
1963
|
/**
|
1930
|
-
* 日志主题
|
1964
|
+
* 日志主题Id。
|
1965
|
+
|
1966
|
+
- 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
|
1931
1967
|
*/
|
1932
1968
|
TopicId: string;
|
1933
1969
|
/**
|
1934
|
-
* 日志集
|
1970
|
+
* 日志集Id。
|
1971
|
+
|
1972
|
+
- 通过[获取日志集列表](https://cloud.tencent.com/document/product/614/58624)获取日志集Id。
|
1935
1973
|
*/
|
1936
1974
|
LogsetId: string;
|
1937
1975
|
/**
|
1938
|
-
*
|
1976
|
+
* COS导入任务名称,最大支持128个字节。
|
1939
1977
|
*/
|
1940
1978
|
Name: string;
|
1941
1979
|
/**
|
1942
1980
|
* COS存储桶,详见产品支持的[存储桶命名规范](https://cloud.tencent.com/document/product/436/13312)。
|
1981
|
+
|
1982
|
+
- 通过[GET Service(List Buckets)](https://cloud.tencent.com/document/product/436/8291)获取COS存储桶。
|
1943
1983
|
*/
|
1944
1984
|
Bucket: string;
|
1945
1985
|
/**
|
@@ -1956,7 +1996,7 @@ export interface CreateCosRechargeRequest {
|
|
1956
1996
|
*/
|
1957
1997
|
Prefix?: string;
|
1958
1998
|
/**
|
1959
|
-
* supported: "", "gzip", "lzop", "snappy"
|
1999
|
+
* supported: "", "gzip", "lzop", "snappy"。默认空,不压缩。
|
1960
2000
|
*/
|
1961
2001
|
Compress?: string;
|
1962
2002
|
/**
|
@@ -3556,7 +3596,8 @@ export interface CreateMachineGroupResponse {
|
|
3556
3596
|
*/
|
3557
3597
|
export interface DescribeCosRechargesRequest {
|
3558
3598
|
/**
|
3559
|
-
* 日志主题
|
3599
|
+
* 日志主题Id。
|
3600
|
+
- 通过[获取日志主题列表](https://cloud.tencent.com/document/api/614/56454)获取日志主题Id。
|
3560
3601
|
*/
|
3561
3602
|
TopicId: string;
|
3562
3603
|
/**
|
@@ -4165,7 +4206,29 @@ export interface DashboardTopicInfo {
|
|
4165
4206
|
*/
|
4166
4207
|
TopicId: string;
|
4167
4208
|
/**
|
4168
|
-
* topic
|
4209
|
+
* topic所在的地域。
|
4210
|
+
- 1:广州
|
4211
|
+
- 4:上海
|
4212
|
+
- 5:中国香港
|
4213
|
+
- 7:上海金融
|
4214
|
+
- 8:北京
|
4215
|
+
- 9:新加坡
|
4216
|
+
- 11:深圳金融
|
4217
|
+
- 15:硅谷
|
4218
|
+
- 16:成都
|
4219
|
+
- 17:法兰克福
|
4220
|
+
- 18:首尔
|
4221
|
+
- 19:重庆
|
4222
|
+
- 22:弗吉尼亚
|
4223
|
+
- 23:曼谷
|
4224
|
+
- 25:东京
|
4225
|
+
- 33:南京
|
4226
|
+
- 36:天津
|
4227
|
+
- 39:台北
|
4228
|
+
- 46:北京金融
|
4229
|
+
- 72:雅加达
|
4230
|
+
- 74:圣保罗
|
4231
|
+
- 78:上海自动驾驶云
|
4169
4232
|
*/
|
4170
4233
|
Region: string;
|
4171
4234
|
}
|
@@ -4318,11 +4381,13 @@ export interface LogRechargeRuleInfo {
|
|
4318
4381
|
*/
|
4319
4382
|
export interface DeleteCosRechargeRequest {
|
4320
4383
|
/**
|
4321
|
-
* COS导入配置Id
|
4384
|
+
* COS导入配置Id。
|
4385
|
+
- 通过[获取投递任务列表](https://cloud.tencent.com/document/api/614/58745)获取COS导入配置Id。
|
4322
4386
|
*/
|
4323
4387
|
Id: string;
|
4324
4388
|
/**
|
4325
|
-
* 日志主题Id
|
4389
|
+
* 日志主题Id。
|
4390
|
+
- 通过[获取日志主题列表](https://cloud.tencent.com/document/api/614/56454)获取日志主题Id。
|
4326
4391
|
*/
|
4327
4392
|
TopicId: string;
|
4328
4393
|
}
|
@@ -4554,7 +4619,7 @@ export interface DashboardInfo {
|
|
4554
4619
|
*/
|
4555
4620
|
Data?: string;
|
4556
4621
|
/**
|
4557
|
-
*
|
4622
|
+
* 创建仪表盘的时间。格式:YYYY-MM-DD HH:MM:SS
|
4558
4623
|
*/
|
4559
4624
|
CreateTime?: string;
|
4560
4625
|
/**
|
@@ -4578,7 +4643,7 @@ export interface DashboardInfo {
|
|
4578
4643
|
*/
|
4579
4644
|
DashboardRegion?: string;
|
4580
4645
|
/**
|
4581
|
-
*
|
4646
|
+
* 修改仪表盘的时间。格式:YYYY-MM-DD HH:MM:SS
|
4582
4647
|
*/
|
4583
4648
|
UpdateTime?: string;
|
4584
4649
|
/**
|
@@ -4762,11 +4827,14 @@ export interface ModifyWebCallbackRequest {
|
|
4762
4827
|
*/
|
4763
4828
|
export interface CreateShipperRequest {
|
4764
4829
|
/**
|
4765
|
-
* 创建的投递规则所属的日志主题
|
4830
|
+
* 创建的投递规则所属的日志主题Id。
|
4831
|
+
- 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
|
4766
4832
|
*/
|
4767
4833
|
TopicId: string;
|
4768
4834
|
/**
|
4769
4835
|
* COS存储桶,详见产品支持的[存储桶命名规范](https://cloud.tencent.com/document/product/436/13312)。
|
4836
|
+
|
4837
|
+
- 通过[GET Service(List Buckets)](https://cloud.tencent.com/document/product/436/8291)获取COS存储桶。
|
4770
4838
|
*/
|
4771
4839
|
Bucket: string;
|
4772
4840
|
/**
|
@@ -4776,7 +4844,7 @@ export interface CreateShipperRequest {
|
|
4776
4844
|
*/
|
4777
4845
|
Prefix: string;
|
4778
4846
|
/**
|
4779
|
-
*
|
4847
|
+
* 投递规则的名字。最大支持255个字符
|
4780
4848
|
*/
|
4781
4849
|
ShipperName: string;
|
4782
4850
|
/**
|
@@ -4818,15 +4886,17 @@ export interface CreateShipperRequest {
|
|
4818
4886
|
*/
|
4819
4887
|
EndTime?: number;
|
4820
4888
|
/**
|
4821
|
-
*
|
4889
|
+
* 对象存储类型,默认值为 STANDARD。枚举值请参见[ 存储类型概述](https://cloud.tencent.com/document/product/436/33417) 文档。
|
4890
|
+
参考值有:
|
4822
4891
|
|
4823
|
-
|
4824
|
-
|
4825
|
-
|
4826
|
-
|
4827
|
-
|
4828
|
-
|
4829
|
-
|
4892
|
+
- STANDARD:标准存储
|
4893
|
+
- STANDARD_IA:低频存储
|
4894
|
+
- ARCHIVE:归档存储
|
4895
|
+
- DEEP_ARCHIVE:深度归档存储
|
4896
|
+
- MAZ_STANDARD:标准存储(多 AZ)
|
4897
|
+
- MAZ_STANDARD_IA:低频存储(多 AZ)
|
4898
|
+
- INTELLIGENT_TIERING:智能分层存储
|
4899
|
+
- MAZ_INTELLIGENT_TIERING:智能分层存储(多 AZ)
|
4830
4900
|
*/
|
4831
4901
|
StorageType?: string;
|
4832
4902
|
}
|
@@ -5881,11 +5951,15 @@ export interface LogContextInfo {
|
|
5881
5951
|
*/
|
5882
5952
|
export interface ModifyShipperRequest {
|
5883
5953
|
/**
|
5884
|
-
* 投递规则
|
5954
|
+
* 投递规则Id。
|
5955
|
+
|
5956
|
+
- 通过 [获取投递任务列表](https://cloud.tencent.com/document/product/614/58745)获取ShipperId。
|
5885
5957
|
*/
|
5886
5958
|
ShipperId: string;
|
5887
5959
|
/**
|
5888
5960
|
* COS存储桶,详见产品支持的[存储桶命名规范](https://cloud.tencent.com/document/product/436/13312)。
|
5961
|
+
|
5962
|
+
- 通过[GET Service(List Buckets)](https://cloud.tencent.com/document/product/436/8291)获取COS存储桶。
|
5889
5963
|
*/
|
5890
5964
|
Bucket?: string;
|
5891
5965
|
/**
|
@@ -5931,15 +6005,17 @@ export interface ModifyShipperRequest {
|
|
5931
6005
|
*/
|
5932
6006
|
FilenameMode?: number;
|
5933
6007
|
/**
|
5934
|
-
*
|
6008
|
+
* 对象存储类型,默认值为 STANDARD。枚举值请参见[ 存储类型概述](https://cloud.tencent.com/document/product/436/33417) 文档。
|
6009
|
+
参考值有:
|
5935
6010
|
|
5936
|
-
|
5937
|
-
|
5938
|
-
|
5939
|
-
|
5940
|
-
|
5941
|
-
|
5942
|
-
|
6011
|
+
- STANDARD:标准存储
|
6012
|
+
- STANDARD_IA:低频存储
|
6013
|
+
- ARCHIVE:归档存储
|
6014
|
+
- DEEP_ARCHIVE:深度归档存储
|
6015
|
+
- MAZ_STANDARD:标准存储(多 AZ)
|
6016
|
+
- MAZ_STANDARD_IA:低频存储(多 AZ)
|
6017
|
+
- INTELLIGENT_TIERING:智能分层存储
|
6018
|
+
- MAZ_INTELLIGENT_TIERING:智能分层存储(多 AZ)
|
5943
6019
|
*/
|
5944
6020
|
StorageType?: string;
|
5945
6021
|
}
|
@@ -6602,7 +6678,16 @@ export interface SearchCosRechargeInfoResponse {
|
|
6602
6678
|
*/
|
6603
6679
|
Msg?: string;
|
6604
6680
|
/**
|
6605
|
-
*
|
6681
|
+
* 状态。
|
6682
|
+
- 0:成功
|
6683
|
+
- 10000:参数错误,请确认参数
|
6684
|
+
- 10001:授权失败,请确认授权
|
6685
|
+
- 10002:获取文件列表失败,请稍后再试。若无法解决,请联系智能客服或提交工单
|
6686
|
+
- 10003:桶内无相应前缀文件,请使用正确的桶、文件前缀和压缩方式
|
6687
|
+
- 10004:文件下载失败,请稍后再试。若无法解决,请联系智能客服或提交工单
|
6688
|
+
- 10005:文件解压缩失败,请选择正确的压缩方式然后再试
|
6689
|
+
- 10006:读取文件内容失败,请确认文件可读
|
6690
|
+
- 10007:文件预览失败,请稍后再试。若无法解决,请联系智能客服或提交工单
|
6606
6691
|
*/
|
6607
6692
|
Status?: number;
|
6608
6693
|
/**
|
@@ -6786,7 +6871,7 @@ export interface ShipperInfo {
|
|
6786
6871
|
*/
|
6787
6872
|
Content?: ContentInfo;
|
6788
6873
|
/**
|
6789
|
-
*
|
6874
|
+
* 投递日志的创建时间。格式:YYYY-MM-DD HH:MM:SS
|
6790
6875
|
*/
|
6791
6876
|
CreateTime?: string;
|
6792
6877
|
/**
|
@@ -6819,7 +6904,16 @@ export interface ShipperInfo {
|
|
6819
6904
|
*/
|
6820
6905
|
HistoryStatus?: number;
|
6821
6906
|
/**
|
6822
|
-
*
|
6907
|
+
* 对象存储类型,默认值为 STANDARD。枚举值请参见[ 存储类型概述](https://cloud.tencent.com/document/product/436/33417) 文档。
|
6908
|
+
参考值有:
|
6909
|
+
STANDARD:标准存储
|
6910
|
+
STANDARD_IA:低频存储
|
6911
|
+
ARCHIVE:归档存储
|
6912
|
+
DEEP_ARCHIVE:深度归档存储
|
6913
|
+
MAZ_STANDARD:标准存储(多 AZ)
|
6914
|
+
MAZ_STANDARD_IA:低频存储(多 AZ)
|
6915
|
+
INTELLIGENT_TIERING:智能分层存储
|
6916
|
+
MAZ_INTELLIGENT_TIERING:智能分层存储(多 AZ)
|
6823
6917
|
*/
|
6824
6918
|
StorageType?: string;
|
6825
6919
|
}
|
@@ -7014,36 +7108,38 @@ export interface Ckafka {
|
|
7014
7108
|
*/
|
7015
7109
|
export interface DescribeMachinesRequest {
|
7016
7110
|
/**
|
7017
|
-
* 查询的机器组ID
|
7111
|
+
* 查询的机器组ID。
|
7112
|
+
|
7113
|
+
- 通过[获取机器组列表](https://cloud.tencent.com/document/api/614/56438)获取机器组ID。
|
7018
7114
|
*/
|
7019
7115
|
GroupId: string;
|
7020
7116
|
/**
|
7021
7117
|
* ip
|
7022
|
-
-
|
7118
|
+
- 按照ip进行过滤。
|
7023
7119
|
- 类型:String
|
7024
7120
|
- 必选:否
|
7025
7121
|
|
7026
7122
|
instance
|
7027
|
-
-
|
7123
|
+
- 按照实例id进行过滤。
|
7028
7124
|
- 类型:String
|
7029
7125
|
- 必选:否
|
7030
7126
|
|
7031
7127
|
version
|
7032
|
-
-
|
7128
|
+
- 按照LogListener版本进行过滤。
|
7033
7129
|
- 类型:String
|
7034
7130
|
- 必选:否
|
7035
7131
|
|
7036
7132
|
status
|
7037
|
-
-
|
7133
|
+
- 按照机器状态进行过滤。
|
7038
7134
|
- 类型:String
|
7039
7135
|
- 必选:否
|
7040
7136
|
- 可选值:0:离线,1:正常
|
7041
7137
|
|
7042
7138
|
offlineTime
|
7043
|
-
-
|
7139
|
+
- 按照机器离线时间进行过滤。
|
7044
7140
|
- 类型:String
|
7045
7141
|
- 必选:否
|
7046
|
-
-
|
7142
|
+
- -可选值:0:无离线时间,12:12小时内,24:一天内,48:两天内,99:两天前
|
7047
7143
|
|
7048
7144
|
每次请求的Filters的上限为10,Filter.Values的上限为100。
|
7049
7145
|
*/
|
@@ -7140,7 +7236,7 @@ export interface MachineInfo {
|
|
7140
7236
|
*/
|
7141
7237
|
Status?: number;
|
7142
7238
|
/**
|
7143
|
-
*
|
7239
|
+
* 机器离线时间,空为正常,异常返回具体时间。时间格式:YYYY-MM-DD HH:mm:ss
|
7144
7240
|
*/
|
7145
7241
|
OfflineTime?: string;
|
7146
7242
|
/**
|
@@ -7829,15 +7925,19 @@ export interface CheckRechargeKafkaServerResponse {
|
|
7829
7925
|
*/
|
7830
7926
|
export interface ModifyCosRechargeRequest {
|
7831
7927
|
/**
|
7832
|
-
* COS导入配置Id
|
7928
|
+
* COS导入配置Id。
|
7929
|
+
|
7930
|
+
- 通过[获取cos导入配置](https://cloud.tencent.com/document/product/614/88099)接口获取COS导入配置Id。
|
7833
7931
|
*/
|
7834
7932
|
Id: string;
|
7835
7933
|
/**
|
7836
|
-
* 日志主题Id
|
7934
|
+
* 日志主题Id。
|
7935
|
+
|
7936
|
+
- 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
|
7837
7937
|
*/
|
7838
7938
|
TopicId: string;
|
7839
7939
|
/**
|
7840
|
-
* COS
|
7940
|
+
* COS导入任务名称,最大支持128个字节。
|
7841
7941
|
*/
|
7842
7942
|
Name?: string;
|
7843
7943
|
/**
|
@@ -7846,6 +7946,8 @@ export interface ModifyCosRechargeRequest {
|
|
7846
7946
|
Enable?: number;
|
7847
7947
|
/**
|
7848
7948
|
* COS存储桶,详见产品支持的[存储桶命名规范](https://cloud.tencent.com/document/product/436/13312)。
|
7949
|
+
|
7950
|
+
- 通过[GET Service(List Buckets)](https://cloud.tencent.com/document/product/436/8291)获取COS存储桶。
|
7849
7951
|
*/
|
7850
7952
|
Bucket?: string;
|
7851
7953
|
/**
|
@@ -7861,7 +7963,7 @@ export interface ModifyCosRechargeRequest {
|
|
7861
7963
|
*/
|
7862
7964
|
LogType?: string;
|
7863
7965
|
/**
|
7864
|
-
* 解析格式。supported: "", "gzip", "lzop", "snappy"
|
7966
|
+
* 解析格式。supported: "", "gzip", "lzop", "snappy"。空串表示不压缩。
|
7865
7967
|
*/
|
7866
7968
|
Compress?: string;
|
7867
7969
|
/**
|
@@ -7957,7 +8059,9 @@ export interface CosRechargeInfo {
|
|
7957
8059
|
*/
|
7958
8060
|
Bucket?: string;
|
7959
8061
|
/**
|
7960
|
-
* COS
|
8062
|
+
* COS存储桶所在地域。
|
8063
|
+
|
8064
|
+
- 通过[地域和访问域名](https://cloud.tencent.com/document/product/436/6224)获取地域信息。
|
7961
8065
|
*/
|
7962
8066
|
BucketRegion?: string;
|
7963
8067
|
/**
|
@@ -7978,11 +8082,11 @@ export interface CosRechargeInfo {
|
|
7978
8082
|
*/
|
7979
8083
|
Enable?: number;
|
7980
8084
|
/**
|
7981
|
-
*
|
8085
|
+
* 创建时间。时间格式:YYYY-MM-DD HH:mm:ss
|
7982
8086
|
*/
|
7983
8087
|
CreateTime?: string;
|
7984
8088
|
/**
|
7985
|
-
*
|
8089
|
+
* 更新时间。时间格式:YYYY-MM-DD HH:mm:ss
|
7986
8090
|
*/
|
7987
8091
|
UpdateTime?: string;
|
7988
8092
|
/**
|
@@ -7990,7 +8094,7 @@ export interface CosRechargeInfo {
|
|
7990
8094
|
*/
|
7991
8095
|
Progress?: number;
|
7992
8096
|
/**
|
7993
|
-
* supported: "", "gzip", "lzop", "snappy”;
|
8097
|
+
* 压缩方式supported: "", "gzip", "lzop", "snappy”; 默认空不压缩
|
7994
8098
|
*/
|
7995
8099
|
Compress?: string;
|
7996
8100
|
/**
|
@@ -8279,11 +8383,15 @@ export interface HighLightItem {
|
|
8279
8383
|
*/
|
8280
8384
|
export interface RetryShipperTaskRequest {
|
8281
8385
|
/**
|
8282
|
-
* 投递规则
|
8386
|
+
* 投递规则Id。
|
8387
|
+
|
8388
|
+
- 通过 [获取投递任务列表](https://cloud.tencent.com/document/product/614/58745)获取ShipperId。
|
8283
8389
|
*/
|
8284
8390
|
ShipperId: string;
|
8285
8391
|
/**
|
8286
|
-
* 投递任务
|
8392
|
+
* 投递任务Id。
|
8393
|
+
|
8394
|
+
- 通过 [获取投递任务列表](https://cloud.tencent.com/document/product/614/58745) 获取TaskId。
|
8287
8395
|
*/
|
8288
8396
|
TaskId: string;
|
8289
8397
|
}
|