tencentcloud-sdk-nodejs-cls 4.0.650 → 4.0.652

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.
@@ -482,6 +482,64 @@ export interface CreateScheduledSqlResponse {
482
482
  */
483
483
  RequestId?: string;
484
484
  }
485
+ /**
486
+ * DescribeDashboards请求参数结构体
487
+ */
488
+ export interface DescribeDashboardsRequest {
489
+ /**
490
+ * 分页的偏移量,默认值为0。
491
+ */
492
+ Offset?: number;
493
+ /**
494
+ * 分页单页限制数目,默认值为20,最大值100。
495
+ */
496
+ Limit?: number;
497
+ /**
498
+ * <br><li> dashboardId
499
+
500
+ 按照【仪表盘id】进行过滤。
501
+ 类型:String
502
+
503
+ 必选:否
504
+
505
+ <br><li> dashboardName
506
+
507
+ 按照【仪表盘名字】进行模糊搜索过滤。
508
+ 类型:String
509
+
510
+ 必选:否
511
+
512
+ <br><li> dashboardRegion
513
+
514
+ 按照【仪表盘地域】进行过滤,为了兼容老的仪表盘,通过云API创建的仪表盘没有地域属性
515
+ 类型:String
516
+
517
+ 必选:否
518
+
519
+ <br><li> tagKey
520
+
521
+ 按照【标签键】进行过滤。
522
+
523
+ 类型:String
524
+
525
+ 必选:否
526
+
527
+ <br><li> tag:tagKey
528
+
529
+ 按照【标签键值对】进行过滤。tag-key使用具体的标签键进行替换。使用请参考示例2。
530
+
531
+ 类型:String
532
+
533
+ 必选:否
534
+
535
+ 每次请求的Filters的上限为10,Filter.Values的上限为100。
536
+ */
537
+ Filters?: Array<Filter>;
538
+ /**
539
+ * 按照topicId和regionId过滤。
540
+ */
541
+ TopicIdRegionFilter?: Array<TopicIdAndRegion>;
542
+ }
485
543
  /**
486
544
  * 日志中的KV对
487
545
  */
@@ -703,6 +761,20 @@ export interface DescribeShippersResponse {
703
761
  */
704
762
  RequestId?: string;
705
763
  }
764
+ /**
765
+ * 仪表盘 topic与地域信息
766
+ */
767
+ export interface TopicIdAndRegion {
768
+ /**
769
+ * 日志主题id
770
+ */
771
+ TopicId: string;
772
+ /**
773
+ * 日志主题id 所在的地域id
774
+ 地域ID - 访问链接查看详情:https://iwiki.woa.com/pages/viewpage.action?pageId=780556968#id-地域码表-一.region大区(标准地域)
775
+ */
776
+ RegionId: number;
777
+ }
706
778
  /**
707
779
  * CreateConfigExtra返回参数结构体
708
780
  */
@@ -890,9 +962,17 @@ export interface ScheduledSqlResouceInfo {
890
962
  */
891
963
  TopicId: string;
892
964
  /**
893
- * topic的地域信息
965
+ * 主题的的地域信息
894
966
  */
895
967
  Region?: string;
968
+ /**
969
+ * 主题类型:0为日志主题,1为指标主题
970
+ */
971
+ BizType?: number;
972
+ /**
973
+ * 指标名称
974
+ */
975
+ MetricName?: string;
896
976
  }
897
977
  /**
898
978
  * DescribeIndex请求参数结构体
@@ -2071,6 +2151,15 @@ export interface DescribeMachineGroupsRequest {
2071
2151
  */
2072
2152
  Limit?: number;
2073
2153
  }
2154
+ /**
2155
+ * DescribeConsumer请求参数结构体
2156
+ */
2157
+ export interface DescribeConsumerRequest {
2158
+ /**
2159
+ * 投递任务绑定的日志主题 ID
2160
+ */
2161
+ TopicId: string;
2162
+ }
2074
2163
  /**
2075
2164
  * CreateIndex请求参数结构体
2076
2165
  */
@@ -2593,13 +2682,17 @@ export interface LogsetInfo {
2593
2682
  RoleName: string;
2594
2683
  }
2595
2684
  /**
2596
- * DescribeConsumer请求参数结构体
2685
+ * 仪表盘关联的topic信息
2597
2686
  */
2598
- export interface DescribeConsumerRequest {
2687
+ export interface DashboardTopicInfo {
2599
2688
  /**
2600
- * 投递任务绑定的日志主题 ID
2689
+ * 主题id
2601
2690
  */
2602
2691
  TopicId: string;
2692
+ /**
2693
+ * topic所在的地域
2694
+ */
2695
+ Region: string;
2603
2696
  }
2604
2697
  /**
2605
2698
  * DeleteConfig请求参数结构体
@@ -3207,6 +3300,36 @@ export interface AlarmAnalysisConfig {
3207
3300
  */
3208
3301
  Value: string;
3209
3302
  }
3303
+ /**
3304
+ * 预览数据详情
3305
+ */
3306
+ export interface PreviewLogStatistic {
3307
+ /**
3308
+ * 日志内容
3309
+ */
3310
+ LogContent: string;
3311
+ /**
3312
+ * 行号
3313
+ */
3314
+ LineNum: number;
3315
+ /**
3316
+ * 目标日志主题
3317
+ */
3318
+ DstTopicId?: string;
3319
+ /**
3320
+ * 失败错误码, 空字符串""表示正常
3321
+ */
3322
+ FailReason?: string;
3323
+ /**
3324
+ * 日志时间戳
3325
+ */
3326
+ Time?: string;
3327
+ /**
3328
+ * 目标topic-name
3329
+ 注意:此字段可能返回 null,表示取不到有效值。
3330
+ */
3331
+ DstTopicName?: string;
3332
+ }
3210
3333
  /**
3211
3334
  * ModifyIndex请求参数结构体
3212
3335
  */
@@ -3964,6 +4087,63 @@ export interface ModifyAlarmNoticeResponse {
3964
4087
  */
3965
4088
  RequestId?: string;
3966
4089
  }
4090
+ /**
4091
+ * 仪表盘信息
4092
+ */
4093
+ export interface DashboardInfo {
4094
+ /**
4095
+ * 仪表盘id
4096
+ */
4097
+ DashboardId: string;
4098
+ /**
4099
+ * 仪表盘名字
4100
+ */
4101
+ DashboardName: string;
4102
+ /**
4103
+ * 仪表盘数据
4104
+ 注意:此字段可能返回 null,表示取不到有效值。
4105
+ */
4106
+ Data: string;
4107
+ /**
4108
+ * 创建仪表盘的时间
4109
+ */
4110
+ CreateTime: string;
4111
+ /**
4112
+ * AssumerUin非空则表示创建该日志主题的服务方Uin
4113
+ 注意:此字段可能返回 null,表示取不到有效值。
4114
+ */
4115
+ AssumerUin: number;
4116
+ /**
4117
+ * RoleName非空则表示创建该日志主题的服务方使用的角色
4118
+ 注意:此字段可能返回 null,表示取不到有效值。
4119
+ */
4120
+ RoleName: string;
4121
+ /**
4122
+ * AssumerName非空则表示创建该日志主题的服务方名称
4123
+ 注意:此字段可能返回 null,表示取不到有效值。
4124
+ */
4125
+ AssumerName: string;
4126
+ /**
4127
+ * 日志主题绑定的标签信息
4128
+ 注意:此字段可能返回 null,表示取不到有效值。
4129
+ */
4130
+ Tags: Array<Tag>;
4131
+ /**
4132
+ * 仪表盘所在地域: 为了兼容老的地域。
4133
+ 注意:此字段可能返回 null,表示取不到有效值。
4134
+ */
4135
+ DashboardRegion: string;
4136
+ /**
4137
+ * 修改仪表盘的时间
4138
+ 注意:此字段可能返回 null,表示取不到有效值。
4139
+ */
4140
+ UpdateTime: string;
4141
+ /**
4142
+ * 仪表盘对应的topic相关信息
4143
+ 注意:此字段可能返回 null,表示取不到有效值。
4144
+ */
4145
+ DashboardTopicInfos: Array<DashboardTopicInfo>;
4146
+ }
3967
4147
  /**
3968
4148
  * 数据加工任务基本详情
3969
4149
  */
@@ -4064,34 +4244,21 @@ export interface ModifyCosRechargeResponse {
4064
4244
  RequestId?: string;
4065
4245
  }
4066
4246
  /**
4067
- * 预览数据详情
4247
+ * DescribeDashboards返回参数结构体
4068
4248
  */
4069
- export interface PreviewLogStatistic {
4070
- /**
4071
- * 日志内容
4072
- */
4073
- LogContent: string;
4074
- /**
4075
- * 行号
4076
- */
4077
- LineNum: number;
4249
+ export interface DescribeDashboardsResponse {
4078
4250
  /**
4079
- * 目标日志主题
4080
- */
4081
- DstTopicId?: string;
4082
- /**
4083
- * 失败错误码, 空字符串""表示正常
4251
+ * 仪表盘的数量
4084
4252
  */
4085
- FailReason?: string;
4253
+ TotalCount: number;
4086
4254
  /**
4087
- * 日志时间戳
4255
+ * 仪表盘详细明细
4088
4256
  */
4089
- Time?: string;
4257
+ DashboardInfos: Array<DashboardInfo>;
4090
4258
  /**
4091
- * 目标topic-name
4092
- 注意:此字段可能返回 null,表示取不到有效值。
4259
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4093
4260
  */
4094
- DstTopicName?: string;
4261
+ RequestId?: string;
4095
4262
  }
4096
4263
  /**
4097
4264
  * 投递日志的压缩配置
@@ -4157,7 +4324,7 @@ export interface MachineGroupTypeInfo {
4157
4324
  /**
4158
4325
  * 机器描述列表
4159
4326
  */
4160
- Values: Array<string>;
4327
+ Values?: Array<string>;
4161
4328
  }
4162
4329
  /**
4163
4330
  * DeleteConfigFromMachineGroup请求参数结构体