tencentcloud-sdk-cls 3.0.1123 → 3.0.1124
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201016/models.rb +160 -33
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e591e3b1cd32e3b1a258e6dd898778ae1f7c2e2
|
4
|
+
data.tar.gz: 112fdb301aedb9846f76830ca130e9356dd83294
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4da47a2ee888ca8db096166f60c691e7dacf210e99149d24b22335cdd3252ddfed2eee88f64cd17d7a12383309459f8aa40993b323d6176a9ad2ee72a805d759
|
7
|
+
data.tar.gz: 74788e297ff4d9834a9c5dad736fbb88e0917eae87163a63f6919c238f1e4d08af15da9606292f7674d56e424ed02a5cbc11ce3e247f5339344cc17bf63defd4
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1124
|
data/lib/v20201016/models.rb
CHANGED
@@ -2366,6 +2366,7 @@ module TencentCloud
|
|
2366
2366
|
# @param Name: 采集配置规程名称,最长63个字符,只能包含小写字符、数字及分隔符(“-”),且必须以小写字符开头,数字或小写字符结尾
|
2367
2367
|
# @type Name: String
|
2368
2368
|
# @param TopicId: 日志主题id
|
2369
|
+
# - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
|
2369
2370
|
# @type TopicId: String
|
2370
2371
|
# @param Type: 日志源类型。支持 container_stdout:容器标准输出;container_file:容器文件路径;host_file:节点文件路径。
|
2371
2372
|
# @type Type: String
|
@@ -2382,16 +2383,23 @@ module TencentCloud
|
|
2382
2383
|
# - 目前只支持label_k8s,用于标记自建k8s集群使用的采集配置
|
2383
2384
|
# @type ConfigFlag: String
|
2384
2385
|
# @param LogsetId: 日志集id
|
2386
|
+
# - 通过[获取日志集列表](https://cloud.tencent.com/document/api/614/58624)获取日志集Id。
|
2385
2387
|
# @type LogsetId: String
|
2386
|
-
# @param LogsetName:
|
2388
|
+
# @param LogsetName: 日志集名称
|
2389
|
+
# - 通过[获取日志集列表](https://cloud.tencent.com/document/api/614/58624)获取日志集名称。
|
2387
2390
|
# @type LogsetName: String
|
2388
2391
|
# @param TopicName: 日志主题名称
|
2392
|
+
# - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题名称。
|
2389
2393
|
# @type TopicName: String
|
2390
|
-
# @param HostFile:
|
2394
|
+
# @param HostFile: 自建k8s-节点文件配置信息,包括文件路径、名称及元数据相关信息。
|
2395
|
+
|
2396
|
+
# - 详细参考 [HostFileInfo](https://cloud.tencent.com/document/api/614/56471#HostFileInfo) 信息。
|
2391
2397
|
# @type HostFile: :class:`Tencentcloud::Cls.v20201016.models.HostFileInfo`
|
2392
2398
|
# @param ContainerFile: 容器文件路径类型配置。
|
2393
2399
|
# @type ContainerFile: :class:`Tencentcloud::Cls.v20201016.models.ContainerFileInfo`
|
2394
|
-
# @param ContainerStdout:
|
2400
|
+
# @param ContainerStdout: 自建k8s-容器标准输出信息,包括容器、命名空间等。
|
2401
|
+
|
2402
|
+
# - 详细参考 [ContainerStdoutInfo](https://cloud.tencent.com/document/api/614/56471#ContainerStdoutInfo) 信息。
|
2395
2403
|
# @type ContainerStdout: :class:`Tencentcloud::Cls.v20201016.models.ContainerStdoutInfo`
|
2396
2404
|
# @param LogFormat: 日志格式化方式,用于容器采集场景。
|
2397
2405
|
# - stdout-docker-json:用于docker容器采集场景
|
@@ -2405,11 +2413,15 @@ module TencentCloud
|
|
2405
2413
|
# - 取值参考:[使用组合解析提取模式采集日志
|
2406
2414
|
# ](https://cloud.tencent.com/document/product/614/61310)
|
2407
2415
|
# @type UserDefineRule: String
|
2408
|
-
# @param GroupId: 绑定的机器组
|
2416
|
+
# @param GroupId: 绑定的机器组ID
|
2417
|
+
# - 通过[获取机器组列表](https://cloud.tencent.com/document/api/614/56438)获取机器组Id。
|
2418
|
+
# - GroupId 与 GroupIds 选择其一即可,不可同时为空。
|
2409
2419
|
# @type GroupId: String
|
2410
|
-
# @param GroupIds: 绑定的机器组
|
2420
|
+
# @param GroupIds: 绑定的机器组ID列表
|
2421
|
+
# - 通过[获取机器组列表](https://cloud.tencent.com/document/api/614/56438)获取机器组Id信息。
|
2422
|
+
# - GroupId 与 GroupIds 选择其一即可,不可同时为空。
|
2411
2423
|
# @type GroupIds: Array
|
2412
|
-
# @param CollectInfos:
|
2424
|
+
# @param CollectInfos: 采集相关配置信息。详细参考 [CollectInfo](https://cloud.tencent.com/document/api/614/56471#CollectInfo) 信息。
|
2413
2425
|
# @type CollectInfos: Array
|
2414
2426
|
# @param AdvancedConfig: 高级采集配置。 Json字符串, Key/Value定义为如下:
|
2415
2427
|
# - ClsAgentFileTimeout(超时属性), 取值范围: 大于等于0的整数, 0为不超时
|
@@ -3887,25 +3899,34 @@ module TencentCloud
|
|
3887
3899
|
|
3888
3900
|
# 仪表盘订阅通知方式
|
3889
3901
|
class DashboardNoticeMode < TencentCloud::Common::AbstractModel
|
3890
|
-
# @param ReceiverType:
|
3891
|
-
|
3892
|
-
#
|
3893
|
-
#
|
3894
|
-
#
|
3895
|
-
#
|
3896
|
-
#
|
3902
|
+
# @param ReceiverType: 仪表盘通知方式。
|
3903
|
+
|
3904
|
+
# - Uin:腾讯云用户
|
3905
|
+
# - Group:腾讯云用户组
|
3906
|
+
# - WeCom:企业微信回调
|
3907
|
+
# - Email:自定义邮件
|
3908
|
+
# - DingTalk:钉钉
|
3909
|
+
# - Lark:飞书
|
3897
3910
|
# @type ReceiverType: String
|
3898
3911
|
# @param Values: 知方式对应的值。
|
3899
|
-
#
|
3912
|
+
# - 当ReceiverType为:`WeCom`、`DingTalk`、`Lark` 时,Values必须为空,且Url字段必填。
|
3913
|
+
# - 当ReceiverType为:`Uin`、`Group`、`Email` 时,Values必填,且Url字段必须为空。
|
3914
|
+
# - 当ReceiverType为:`Uin ` 时,Values为用户id,通过 [拉取子用户](https://cloud.tencent.com/document/product/598/34587) 获取子用户 UID 。
|
3915
|
+
# - 当ReceiverType为:`Group` 时,Values为用户组id,通过 [查询用户组列表](https://cloud.tencent.com/document/product/598/34589) 获取用户组 ID 。
|
3916
|
+
# - 当ReceiverType为:`Email` 时,Values为用户邮箱信息。
|
3900
3917
|
# @type Values: Array
|
3901
3918
|
# @param ReceiverChannels: 仪表盘通知渠道。
|
3902
|
-
|
3903
|
-
#
|
3919
|
+
|
3920
|
+
# - 支持:["Email","Sms","WeChat","Phone"]。
|
3921
|
+
# - 当ReceiverType为 `Email` 或 `WeCom` 时,ReceiverChannels无效。
|
3904
3922
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3905
3923
|
# @type ReceiverChannels: Array
|
3906
|
-
# @param Url:
|
3907
|
-
#
|
3908
|
-
#
|
3924
|
+
# @param Url: 订阅方式 - 回调地址。
|
3925
|
+
# - 当ReceiverType为:`WeCom`、`DingTalk`、`Lark` 时,Url字段必填为各渠道的回调地址。
|
3926
|
+
# - 为:`WeCom` 时,Url为 企业微信回调地址。
|
3927
|
+
# - 为:`DingTalk` 时,Url为 钉钉机器人Webhook地址。
|
3928
|
+
# - 为:`Lark` 时,Url为 飞书机器人Webhook地址。
|
3929
|
+
# - 当ReceiverType为:`Uin`、`Group`、`Email` 时,Url字段必须为空。
|
3909
3930
|
# @type Url: String
|
3910
3931
|
|
3911
3932
|
attr_accessor :ReceiverType, :Values, :ReceiverChannels, :Url
|
@@ -3981,6 +4002,65 @@ module TencentCloud
|
|
3981
4002
|
end
|
3982
4003
|
end
|
3983
4004
|
|
4005
|
+
# 仪表盘订阅信息
|
4006
|
+
class DashboardSubscribeInfo < TencentCloud::Common::AbstractModel
|
4007
|
+
# @param Id: 仪表盘订阅id。
|
4008
|
+
# @type Id: Integer
|
4009
|
+
# @param Name: 仪表盘订阅名称。
|
4010
|
+
# @type Name: String
|
4011
|
+
# @param DashboardId: 仪表盘id。
|
4012
|
+
# @type DashboardId: String
|
4013
|
+
# @param Cron: 仪表盘订阅时间。
|
4014
|
+
# @type Cron: String
|
4015
|
+
# @param SubscribeData: 仪表盘订阅数据。
|
4016
|
+
# @type SubscribeData: :class:`Tencentcloud::Cls.v20201016.models.DashboardSubscribeData`
|
4017
|
+
# @param CreateTime: 仪表盘订阅记录创建时间。格式:`YYYY-MM-DD HH:MM:SS`
|
4018
|
+
# @type CreateTime: String
|
4019
|
+
# @param UpdateTime: 仪表盘订阅记录更新时间。格式:`YYYY-MM-DD HH:MM:SS`
|
4020
|
+
# @type UpdateTime: String
|
4021
|
+
# @param LastTime: 仪表盘订阅记录最后一次发送成功时间。格式:`YYYY-MM-DD HH:MM:SS`
|
4022
|
+
# @type LastTime: String
|
4023
|
+
# @param Uin: 腾讯云主账号Id。
|
4024
|
+
# @type Uin: Integer
|
4025
|
+
# @param SubUin: 腾讯云主账号下的子账号Id。
|
4026
|
+
# @type SubUin: Integer
|
4027
|
+
# @param LastStatus: 仪表盘订阅记录最后一次发送的状态。success:全部发送成功,fail:未发送, partialSuccess:部分发送成功。
|
4028
|
+
# @type LastStatus: String
|
4029
|
+
|
4030
|
+
attr_accessor :Id, :Name, :DashboardId, :Cron, :SubscribeData, :CreateTime, :UpdateTime, :LastTime, :Uin, :SubUin, :LastStatus
|
4031
|
+
|
4032
|
+
def initialize(id=nil, name=nil, dashboardid=nil, cron=nil, subscribedata=nil, createtime=nil, updatetime=nil, lasttime=nil, uin=nil, subuin=nil, laststatus=nil)
|
4033
|
+
@Id = id
|
4034
|
+
@Name = name
|
4035
|
+
@DashboardId = dashboardid
|
4036
|
+
@Cron = cron
|
4037
|
+
@SubscribeData = subscribedata
|
4038
|
+
@CreateTime = createtime
|
4039
|
+
@UpdateTime = updatetime
|
4040
|
+
@LastTime = lasttime
|
4041
|
+
@Uin = uin
|
4042
|
+
@SubUin = subuin
|
4043
|
+
@LastStatus = laststatus
|
4044
|
+
end
|
4045
|
+
|
4046
|
+
def deserialize(params)
|
4047
|
+
@Id = params['Id']
|
4048
|
+
@Name = params['Name']
|
4049
|
+
@DashboardId = params['DashboardId']
|
4050
|
+
@Cron = params['Cron']
|
4051
|
+
unless params['SubscribeData'].nil?
|
4052
|
+
@SubscribeData = DashboardSubscribeData.new
|
4053
|
+
@SubscribeData.deserialize(params['SubscribeData'])
|
4054
|
+
end
|
4055
|
+
@CreateTime = params['CreateTime']
|
4056
|
+
@UpdateTime = params['UpdateTime']
|
4057
|
+
@LastTime = params['LastTime']
|
4058
|
+
@Uin = params['Uin']
|
4059
|
+
@SubUin = params['SubUin']
|
4060
|
+
@LastStatus = params['LastStatus']
|
4061
|
+
end
|
4062
|
+
end
|
4063
|
+
|
3984
4064
|
# 仪表盘订阅模板变量
|
3985
4065
|
class DashboardTemplateVariable < TencentCloud::Common::AbstractModel
|
3986
4066
|
# @param Key: key的值
|
@@ -4481,7 +4561,7 @@ module TencentCloud
|
|
4481
4561
|
# DeleteCosRecharge请求参数结构体
|
4482
4562
|
class DeleteCosRechargeRequest < TencentCloud::Common::AbstractModel
|
4483
4563
|
# @param Id: COS导入配置Id。
|
4484
|
-
# - 通过[
|
4564
|
+
# - 通过 [获取cos导入配置](https://cloud.tencent.com/document/product/614/88099) 获取COS导入配置Id。
|
4485
4565
|
# @type Id: String
|
4486
4566
|
# @param TopicId: 日志主题Id。
|
4487
4567
|
# - 通过[获取日志主题列表](https://cloud.tencent.com/document/api/614/56454)获取日志主题Id。
|
@@ -4966,9 +5046,8 @@ module TencentCloud
|
|
4966
5046
|
# ap-guangzhou 广州地域;
|
4967
5047
|
# ap-nanjing 南京地域。
|
4968
5048
|
|
4969
|
-
#
|
5049
|
+
# 详细信息请查看官网[地域和访问域名](https://cloud.tencent.com/document/product/614/18940)
|
4970
5050
|
|
4971
|
-
# https://cloud.tencent.com/document/product/614/18940
|
4972
5051
|
# @type Region: String
|
4973
5052
|
# @param TopicId: 日志主题ID。-通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题ID
|
4974
5053
|
# @type TopicId: String
|
@@ -5085,7 +5164,7 @@ module TencentCloud
|
|
5085
5164
|
|
5086
5165
|
# DescribeAlarmShields请求参数结构体
|
5087
5166
|
class DescribeAlarmShieldsRequest < TencentCloud::Common::AbstractModel
|
5088
|
-
# @param AlarmNoticeId: 通知渠道组id
|
5167
|
+
# @param AlarmNoticeId: 通知渠道组id。-通过[获取通知渠道组列表](https://cloud.tencent.com/document/api/614/56462)获取通知渠道组id
|
5089
5168
|
# @type AlarmNoticeId: String
|
5090
5169
|
# @param Filters: - taskId:按照【规则id】进行过滤。类型:String 必选:否
|
5091
5170
|
# - status:按照【规则状态】进行过滤。类型:String。 支持 0:暂未生效,1:生效中,2:已失效。 必选:否
|
@@ -5759,6 +5838,7 @@ module TencentCloud
|
|
5759
5838
|
# @param Filters: dashboardId:按照【仪表盘id】进行过滤。类型:String必选:否
|
5760
5839
|
|
5761
5840
|
# - 仪表盘id。通过 [获取仪表盘](https://cloud.tencent.com/document/api/614/95636)接口获取DashboardId。
|
5841
|
+
# - 入参示例:dashboard-522a5609-1f41-4b11-8086-5afd1d7574f5
|
5762
5842
|
|
5763
5843
|
# 每次请求的Filters的上限为10,Filter.Values的上限为100。
|
5764
5844
|
# @type Filters: Array
|
@@ -5791,16 +5871,31 @@ module TencentCloud
|
|
5791
5871
|
|
5792
5872
|
# DescribeDashboardSubscribes返回参数结构体
|
5793
5873
|
class DescribeDashboardSubscribesResponse < TencentCloud::Common::AbstractModel
|
5874
|
+
# @param DashboardSubscribeInfos: 仪表盘订阅列表
|
5875
|
+
# @type DashboardSubscribeInfos: Array
|
5876
|
+
# @param TotalCount: 总数目
|
5877
|
+
# @type TotalCount: Integer
|
5794
5878
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5795
5879
|
# @type RequestId: String
|
5796
5880
|
|
5797
|
-
attr_accessor :RequestId
|
5881
|
+
attr_accessor :DashboardSubscribeInfos, :TotalCount, :RequestId
|
5798
5882
|
|
5799
|
-
def initialize(requestid=nil)
|
5883
|
+
def initialize(dashboardsubscribeinfos=nil, totalcount=nil, requestid=nil)
|
5884
|
+
@DashboardSubscribeInfos = dashboardsubscribeinfos
|
5885
|
+
@TotalCount = totalcount
|
5800
5886
|
@RequestId = requestid
|
5801
5887
|
end
|
5802
5888
|
|
5803
5889
|
def deserialize(params)
|
5890
|
+
unless params['DashboardSubscribeInfos'].nil?
|
5891
|
+
@DashboardSubscribeInfos = []
|
5892
|
+
params['DashboardSubscribeInfos'].each do |i|
|
5893
|
+
dashboardsubscribeinfo_tmp = DashboardSubscribeInfo.new
|
5894
|
+
dashboardsubscribeinfo_tmp.deserialize(i)
|
5895
|
+
@DashboardSubscribeInfos << dashboardsubscribeinfo_tmp
|
5896
|
+
end
|
5897
|
+
end
|
5898
|
+
@TotalCount = params['TotalCount']
|
5804
5899
|
@RequestId = params['RequestId']
|
5805
5900
|
end
|
5806
5901
|
end
|
@@ -5812,17 +5907,44 @@ module TencentCloud
|
|
5812
5907
|
# @param Limit: 分页单页限制数目,默认值为20,最大值100。
|
5813
5908
|
# @type Limit: Integer
|
5814
5909
|
# @param Filters: - dashboardId 按照【仪表盘id】进行过滤,类型:String, 必选:否。
|
5910
|
+
# - 示例值:dashboard-522a5609-1f41-4b11-8086-5afd1d7574f5
|
5815
5911
|
# - dashboardName 按照【仪表盘名字】进行模糊搜索过滤,类型:String,必选:否。
|
5816
|
-
#
|
5912
|
+
# - 示例值:业务大盘
|
5913
|
+
# - dashboardRegion 按照【仪表盘地域】进行过滤(兼容老的仪表盘),通过云API创建的仪表盘该属性,类型:String,必选:否。
|
5914
|
+
# - 参考 [地域和访问域名](https://cloud.tencent.com/document/product/614/18940)
|
5915
|
+
# - 示例:ap-guangzhou
|
5817
5916
|
# - tagKey 按照【标签键】进行过滤,类型:String,必选:否。
|
5818
|
-
#
|
5917
|
+
# - 示例值:
|
5918
|
+
# ```
|
5919
|
+
# "Filters":[
|
5920
|
+
# {
|
5921
|
+
# "Key": "tagKey",
|
5922
|
+
# "Values": [
|
5923
|
+
# "tag-key-test"
|
5924
|
+
# ]
|
5925
|
+
# }
|
5926
|
+
# ]
|
5927
|
+
# ```
|
5928
|
+
|
5929
|
+
# - tag:tagKey 按照【标签键值对】进行过滤。tagKey使用具体的标签键进行替换,类型:String,必选:否,
|
5930
|
+
# - 参考 [示例1](https://cloud.tencent.com/document/api/614/95636#4.-.E7.A4.BA.E4.BE.8B) 使用。
|
5931
|
+
# ```
|
5932
|
+
# "Filters": [
|
5933
|
+
# {
|
5934
|
+
# "Key": "tag:tag-key-test",
|
5935
|
+
# "Values": [
|
5936
|
+
# "12"
|
5937
|
+
# ]
|
5938
|
+
# }
|
5939
|
+
# ]
|
5940
|
+
# ```
|
5819
5941
|
|
5820
5942
|
# 每次请求的Filters的上限为10,Filter.Values的上限为100。
|
5821
5943
|
# @type Filters: Array
|
5822
5944
|
# @param TopicIdRegionFilter: 按照topicId和regionId过滤。
|
5823
|
-
|
5824
5945
|
# - topicId:日志主题Id。
|
5825
5946
|
# - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
|
5947
|
+
# - 示例值:439a5304-08f9-484b-9c4d-46ff57133816
|
5826
5948
|
# - regionId
|
5827
5949
|
# - 1:广州
|
5828
5950
|
# - 4:上海
|
@@ -8778,7 +8900,7 @@ module TencentCloud
|
|
8778
8900
|
|
8779
8901
|
# ModifyAlarmNotice请求参数结构体
|
8780
8902
|
class ModifyAlarmNoticeRequest < TencentCloud::Common::AbstractModel
|
8781
|
-
# @param AlarmNoticeId: 通知渠道组ID。-通过[
|
8903
|
+
# @param AlarmNoticeId: 通知渠道组ID。-通过[获取通知渠道组列表](https://cloud.tencent.com/document/api/614/56462)获取通知渠道组ID
|
8782
8904
|
# @type AlarmNoticeId: String
|
8783
8905
|
# @param Tags: 标签描述列表,通过指定该参数可以同时绑定标签到相应的通知渠道组。最大支持10个标签键值对,并且不能有重复的键值对。
|
8784
8906
|
# @type Tags: Array
|
@@ -9194,12 +9316,17 @@ module TencentCloud
|
|
9194
9316
|
# @param TopicId: 日志主题id
|
9195
9317
|
# - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
|
9196
9318
|
# @type TopicId: String
|
9197
|
-
# @param HostFile: 自建k8s
|
9319
|
+
# @param HostFile: 自建k8s-节点文件配置信息,包括文件路径、名称及元数据相关信息。
|
9320
|
+
|
9321
|
+
# - 详情参考 [HostFileInfo](https://cloud.tencent.com/document/api/614/56471#HostFileInfo) 文档。
|
9198
9322
|
# @type HostFile: :class:`Tencentcloud::Cls.v20201016.models.HostFileInfo`
|
9199
9323
|
# @param ContainerFile: 采集配置标记。
|
9200
9324
|
# - 目前只支持label_k8s,用于标记自建k8s集群使用的采集配置
|
9325
|
+
# - 详情参考 [ ContainerFileInfo](https://cloud.tencent.com/document/api/614/56471#ContainerFileInfo) 文档
|
9201
9326
|
# @type ContainerFile: :class:`Tencentcloud::Cls.v20201016.models.ContainerFileInfo`
|
9202
|
-
# @param ContainerStdout: 自建k8s
|
9327
|
+
# @param ContainerStdout: 自建k8s-容器标准输出信息,包括容器、命名空间等,
|
9328
|
+
|
9329
|
+
# - 详情参考 [ContainerStdoutInfo]( https://cloud.tencent.com/document/api/614/56471#ContainerStdoutInfo) 文档
|
9203
9330
|
# @type ContainerStdout: :class:`Tencentcloud::Cls.v20201016.models.ContainerStdoutInfo`
|
9204
9331
|
# @param LogType: 采集的日志类型,默认为minimalist_log。支持以下类型:
|
9205
9332
|
# - json_log代表:JSON-文件日志(详见[使用 JSON 提取模式采集日志](https://cloud.tencent.com/document/product/614/17419));
|
@@ -9214,7 +9341,7 @@ module TencentCloud
|
|
9214
9341
|
# - stdout-docker-json:用于docker容器采集场景
|
9215
9342
|
# - stdout-containerd:用于containerd容器采集场景
|
9216
9343
|
# @type LogFormat: String
|
9217
|
-
# @param ExtractRule: 提取规则,如果设置了ExtractRule,则必须设置LogType
|
9344
|
+
# @param ExtractRule: 提取规则,如果设置了ExtractRule,则必须设置LogType。
|
9218
9345
|
# @type ExtractRule: :class:`Tencentcloud::Cls.v20201016.models.ExtractRuleInfo`
|
9219
9346
|
# @param ExcludePaths: 采集黑名单路径列表
|
9220
9347
|
# @type ExcludePaths: Array
|
@@ -10331,7 +10458,7 @@ module TencentCloud
|
|
10331
10458
|
# - 如果传递了MaxSplitPartitions,需要PartitionCount<=MaxSplitPartitions;
|
10332
10459
|
# @type PartitionCount: Integer
|
10333
10460
|
# @param CancelTopicAsyncTaskID: 取消切换存储任务的id
|
10334
|
-
# - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取取消切换存储任务的id
|
10461
|
+
# - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取取消切换存储任务的id【Topics中的TopicAsyncTaskID字段】。
|
10335
10462
|
# @type CancelTopicAsyncTaskID: String
|
10336
10463
|
|
10337
10464
|
attr_accessor :TopicId, :TopicName, :Tags, :Status, :AutoSplit, :MaxSplitPartitions, :Period, :Describes, :HotPeriod, :IsWebTracking, :Extends, :PartitionCount, :CancelTopicAsyncTaskID
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cls
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1124
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|