tencentcloud-sdk-cls 3.0.1173 → 3.0.1183

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201016/models.rb +280 -62
  4. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d14c329efdaf86142fe215cb17883b88cc4d7b42
4
- data.tar.gz: 015ef299eb450290391c33df785b87c91c1946d3
3
+ metadata.gz: 9d2ce0105ae4d9731e6f5dd27644c8afb6a754e8
4
+ data.tar.gz: 164493e292329801ff833967874a4be06143736b
5
5
  SHA512:
6
- metadata.gz: 0a7de49295d9cdb09bcda7f35487ad63de5682fa991bf364ef26c50c635f4696bb6df53c70fcf69c444a4a96e446b1ff971d6ef0fbbe93d74b65b625aa5fc7e3
7
- data.tar.gz: 4161948c4a46c703bb32c7268756466c680d793ecdab0645c1f432585d246c5082d1f09ea96ec56470c442c7f568aaf59fcce8ac0b835c07e86ce7b416065914
6
+ metadata.gz: c6b30d9329863cec2fecec097141f52af88731e195d7a8459ff63e20e6d4f9760e30951556f9612f44fa21dcd4442df645b1f223ecec7b5f25a8dcde35a78965
7
+ data.tar.gz: 9a51d73b2a391e1274617b1119841322ccc8c8b83693bd2ce3077bdf338aca9199d1bcedf9e55e7d2242525d775611a95ac37c6a693b22ba321fbc7c94d7e461
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1173
1
+ 3.0.1183
@@ -82,6 +82,29 @@ module TencentCloud
82
82
  end
83
83
  end
84
84
 
85
+ # 投递Ckafka 高级配置
86
+ class AdvancedConsumerConfiguration < TencentCloud::Common::AbstractModel
87
+ # @param PartitionHashStatus: Ckafka分区hash状态。 默认 false
88
+
89
+ # - true:开启根据字段 Hash 值结果相等的信息投递到统一 ckafka 分区
90
+ # - false:关闭根据字段 Hash 值结果相等的信息投递到统一 ckafka 分区
91
+ # @type PartitionHashStatus: Boolean
92
+ # @param PartitionFields: 需要计算 hash 的字段列表。最大支持5个字段。
93
+ # @type PartitionFields: Array
94
+
95
+ attr_accessor :PartitionHashStatus, :PartitionFields
96
+
97
+ def initialize(partitionhashstatus=nil, partitionfields=nil)
98
+ @PartitionHashStatus = partitionhashstatus
99
+ @PartitionFields = partitionfields
100
+ end
101
+
102
+ def deserialize(params)
103
+ @PartitionHashStatus = params['PartitionHashStatus']
104
+ @PartitionFields = params['PartitionFields']
105
+ end
106
+ end
107
+
85
108
  # 告警多维分析一些配置信息
86
109
  class AlarmAnalysisConfig < TencentCloud::Common::AbstractModel
87
110
  # @param Key: 键。支持以下key:
@@ -312,10 +335,35 @@ module TencentCloud
312
335
  # @type CreateTime: String
313
336
  # @param UpdateTime: 最近更新时间。格式: YYYY-MM-DD HH:MM:SS
314
337
  # @type UpdateTime: String
338
+ # @param DeliverStatus: 投递日志开关。
339
+
340
+ # 参数值:
341
+
342
+ # 1:关闭
343
+
344
+ # 2:开启
345
+ # @type DeliverStatus: Integer
346
+ # @param DeliverFlag: 投递日志标识。
347
+
348
+ # 参数值:
349
+
350
+ # 1:未启用
315
351
 
316
- attr_accessor :Name, :Tags, :Type, :NoticeReceivers, :WebCallbacks, :AlarmNoticeId, :NoticeRules, :AlarmShieldStatus, :JumpDomain, :AlarmNoticeDeliverConfig, :CreateTime, :UpdateTime
352
+ # 2:已启用
317
353
 
318
- def initialize(name=nil, tags=nil, type=nil, noticereceivers=nil, webcallbacks=nil, alarmnoticeid=nil, noticerules=nil, alarmshieldstatus=nil, jumpdomain=nil, alarmnoticedeliverconfig=nil, createtime=nil, updatetime=nil)
354
+ # 3:投递异常
355
+ # @type DeliverFlag: Integer
356
+ # @param AlarmShieldCount: 通知渠道组配置的告警屏蔽统计状态数量信息。
357
+ # 注意:此字段可能返回 null,表示取不到有效值。
358
+ # @type AlarmShieldCount: :class:`Tencentcloud::Cls.v20201016.models.AlarmShieldCount`
359
+ # @param CallbackPrioritize: 统一设定自定义回调参数。
360
+ # - true: 使用通知内容模板中的自定义回调参数覆盖告警策略中单独配置的请求头及请求内容。
361
+ # - false:优先使用告警策略中单独配置的请求头及请求内容。
362
+ # @type CallbackPrioritize: Boolean
363
+
364
+ attr_accessor :Name, :Tags, :Type, :NoticeReceivers, :WebCallbacks, :AlarmNoticeId, :NoticeRules, :AlarmShieldStatus, :JumpDomain, :AlarmNoticeDeliverConfig, :CreateTime, :UpdateTime, :DeliverStatus, :DeliverFlag, :AlarmShieldCount, :CallbackPrioritize
365
+
366
+ def initialize(name=nil, tags=nil, type=nil, noticereceivers=nil, webcallbacks=nil, alarmnoticeid=nil, noticerules=nil, alarmshieldstatus=nil, jumpdomain=nil, alarmnoticedeliverconfig=nil, createtime=nil, updatetime=nil, deliverstatus=nil, deliverflag=nil, alarmshieldcount=nil, callbackprioritize=nil)
319
367
  @Name = name
320
368
  @Tags = tags
321
369
  @Type = type
@@ -328,6 +376,10 @@ module TencentCloud
328
376
  @AlarmNoticeDeliverConfig = alarmnoticedeliverconfig
329
377
  @CreateTime = createtime
330
378
  @UpdateTime = updatetime
379
+ @DeliverStatus = deliverstatus
380
+ @DeliverFlag = deliverflag
381
+ @AlarmShieldCount = alarmshieldcount
382
+ @CallbackPrioritize = callbackprioritize
331
383
  end
332
384
 
333
385
  def deserialize(params)
@@ -374,6 +426,13 @@ module TencentCloud
374
426
  end
375
427
  @CreateTime = params['CreateTime']
376
428
  @UpdateTime = params['UpdateTime']
429
+ @DeliverStatus = params['DeliverStatus']
430
+ @DeliverFlag = params['DeliverFlag']
431
+ unless params['AlarmShieldCount'].nil?
432
+ @AlarmShieldCount = AlarmShieldCount.new
433
+ @AlarmShieldCount.deserialize(params['AlarmShieldCount'])
434
+ end
435
+ @CallbackPrioritize = params['CallbackPrioritize']
377
436
  end
378
437
  end
379
438
 
@@ -400,6 +459,34 @@ module TencentCloud
400
459
  end
401
460
  end
402
461
 
462
+ # 告警屏蔽统计信息
463
+ class AlarmShieldCount < TencentCloud::Common::AbstractModel
464
+ # @param TotalCount: 符合检索条件的告警屏蔽总数量
465
+ # @type TotalCount: Integer
466
+ # @param InvalidCount: 告警屏蔽未生效数量
467
+ # @type InvalidCount: Integer
468
+ # @param ValidCount: 告警屏蔽生效中数量
469
+ # @type ValidCount: Integer
470
+ # @param ExpireCount: 告警屏蔽已过期数量
471
+ # @type ExpireCount: Integer
472
+
473
+ attr_accessor :TotalCount, :InvalidCount, :ValidCount, :ExpireCount
474
+
475
+ def initialize(totalcount=nil, invalidcount=nil, validcount=nil, expirecount=nil)
476
+ @TotalCount = totalcount
477
+ @InvalidCount = invalidcount
478
+ @ValidCount = validcount
479
+ @ExpireCount = expirecount
480
+ end
481
+
482
+ def deserialize(params)
483
+ @TotalCount = params['TotalCount']
484
+ @InvalidCount = params['InvalidCount']
485
+ @ValidCount = params['ValidCount']
486
+ @ExpireCount = params['ExpireCount']
487
+ end
488
+ end
489
+
403
490
  # 告警屏蔽任务配置
404
491
  class AlarmShieldInfo < TencentCloud::Common::AbstractModel
405
492
  # @param AlarmNoticeId: 通知渠道组Id
@@ -2013,10 +2100,14 @@ module TencentCloud
2013
2100
  # - 1:关闭
2014
2101
  # - 2:开启(默认值)
2015
2102
  # @type AlarmShieldStatus: Integer
2103
+ # @param CallbackPrioritize: 统一设定自定义回调参数。
2104
+ # - true: 使用通知内容模板中的自定义回调参数覆盖告警策略中单独配置的请求头及请求内容。
2105
+ # - false:优先使用告警策略中单独配置的请求头及请求内容。
2106
+ # @type CallbackPrioritize: Boolean
2016
2107
 
2017
- attr_accessor :Name, :Tags, :Type, :NoticeReceivers, :WebCallbacks, :NoticeRules, :JumpDomain, :DeliverStatus, :DeliverConfig, :AlarmShieldStatus
2108
+ attr_accessor :Name, :Tags, :Type, :NoticeReceivers, :WebCallbacks, :NoticeRules, :JumpDomain, :DeliverStatus, :DeliverConfig, :AlarmShieldStatus, :CallbackPrioritize
2018
2109
 
2019
- def initialize(name=nil, tags=nil, type=nil, noticereceivers=nil, webcallbacks=nil, noticerules=nil, jumpdomain=nil, deliverstatus=nil, deliverconfig=nil, alarmshieldstatus=nil)
2110
+ def initialize(name=nil, tags=nil, type=nil, noticereceivers=nil, webcallbacks=nil, noticerules=nil, jumpdomain=nil, deliverstatus=nil, deliverconfig=nil, alarmshieldstatus=nil, callbackprioritize=nil)
2020
2111
  @Name = name
2021
2112
  @Tags = tags
2022
2113
  @Type = type
@@ -2027,6 +2118,7 @@ module TencentCloud
2027
2118
  @DeliverStatus = deliverstatus
2028
2119
  @DeliverConfig = deliverconfig
2029
2120
  @AlarmShieldStatus = alarmshieldstatus
2121
+ @CallbackPrioritize = callbackprioritize
2030
2122
  end
2031
2123
 
2032
2124
  def deserialize(params)
@@ -2071,6 +2163,7 @@ module TencentCloud
2071
2163
  @DeliverConfig.deserialize(params['DeliverConfig'])
2072
2164
  end
2073
2165
  @AlarmShieldStatus = params['AlarmShieldStatus']
2166
+ @CallbackPrioritize = params['CallbackPrioritize']
2074
2167
  end
2075
2168
  end
2076
2169
 
@@ -2156,8 +2249,8 @@ module TencentCloud
2156
2249
 
2157
2250
  attr_accessor :Name, :AlarmTargets, :MonitorTime, :TriggerCount, :AlarmPeriod, :AlarmNoticeIds, :Condition, :AlarmLevel, :MultiConditions, :Status, :Enable, :MessageTemplate, :CallBack, :Analysis, :GroupTriggerStatus, :GroupTriggerCondition, :Tags, :MonitorObjectType, :Classifications
2158
2251
  extend Gem::Deprecate
2159
- deprecate :Enable, :none, 2025, 11
2160
- deprecate :Enable=, :none, 2025, 11
2252
+ deprecate :Enable, :none, 2025, 12
2253
+ deprecate :Enable=, :none, 2025, 12
2161
2254
 
2162
2255
  def initialize(name=nil, alarmtargets=nil, monitortime=nil, triggercount=nil, alarmperiod=nil, alarmnoticeids=nil, condition=nil, alarmlevel=nil, multiconditions=nil, status=nil, enable=nil, messagetemplate=nil, callback=nil, analysis=nil, grouptriggerstatus=nil, grouptriggercondition=nil, tags=nil, monitorobjecttype=nil, classifications=nil)
2163
2256
  @Name = name
@@ -2496,8 +2589,8 @@ module TencentCloud
2496
2589
 
2497
2590
  attr_accessor :Name, :TopicId, :Type, :LogType, :ConfigFlag, :LogsetId, :LogsetName, :TopicName, :HostFile, :ContainerFile, :ContainerStdout, :LogFormat, :ExtractRule, :ExcludePaths, :UserDefineRule, :GroupId, :GroupIds, :CollectInfos, :AdvancedConfig
2498
2591
  extend Gem::Deprecate
2499
- deprecate :LogFormat, :none, 2025, 11
2500
- deprecate :LogFormat=, :none, 2025, 11
2592
+ deprecate :LogFormat, :none, 2025, 12
2593
+ deprecate :LogFormat=, :none, 2025, 12
2501
2594
 
2502
2595
  def initialize(name=nil, topicid=nil, type=nil, logtype=nil, configflag=nil, logsetid=nil, logsetname=nil, topicname=nil, hostfile=nil, containerfile=nil, containerstdout=nil, logformat=nil, extractrule=nil, excludepaths=nil, userdefinerule=nil, groupid=nil, groupids=nil, collectinfos=nil, advancedconfig=nil)
2503
2596
  @Name = name
@@ -2749,15 +2842,24 @@ module TencentCloud
2749
2842
  # @type Ckafka: :class:`Tencentcloud::Cls.v20201016.models.Ckafka`
2750
2843
  # @param Compression: 投递时压缩方式,取值0,2,3。[0:NONE;2:SNAPPY;3:LZ4]
2751
2844
  # @type Compression: Integer
2845
+ # @param RoleArn: 角色访问描述名 [创建角色](https://cloud.tencent.com/document/product/598/19381)
2846
+ # @type RoleArn: String
2847
+ # @param ExternalId: 外部ID
2848
+ # @type ExternalId: String
2849
+ # @param AdvancedConfig: 高级配置项
2850
+ # @type AdvancedConfig: :class:`Tencentcloud::Cls.v20201016.models.AdvancedConsumerConfiguration`
2752
2851
 
2753
- attr_accessor :TopicId, :NeedContent, :Content, :Ckafka, :Compression
2852
+ attr_accessor :TopicId, :NeedContent, :Content, :Ckafka, :Compression, :RoleArn, :ExternalId, :AdvancedConfig
2754
2853
 
2755
- def initialize(topicid=nil, needcontent=nil, content=nil, ckafka=nil, compression=nil)
2854
+ def initialize(topicid=nil, needcontent=nil, content=nil, ckafka=nil, compression=nil, rolearn=nil, externalid=nil, advancedconfig=nil)
2756
2855
  @TopicId = topicid
2757
2856
  @NeedContent = needcontent
2758
2857
  @Content = content
2759
2858
  @Ckafka = ckafka
2760
2859
  @Compression = compression
2860
+ @RoleArn = rolearn
2861
+ @ExternalId = externalid
2862
+ @AdvancedConfig = advancedconfig
2761
2863
  end
2762
2864
 
2763
2865
  def deserialize(params)
@@ -2772,6 +2874,12 @@ module TencentCloud
2772
2874
  @Ckafka.deserialize(params['Ckafka'])
2773
2875
  end
2774
2876
  @Compression = params['Compression']
2877
+ @RoleArn = params['RoleArn']
2878
+ @ExternalId = params['ExternalId']
2879
+ unless params['AdvancedConfig'].nil?
2880
+ @AdvancedConfig = AdvancedConsumerConfiguration.new
2881
+ @AdvancedConfig.deserialize(params['AdvancedConfig'])
2882
+ end
2775
2883
  end
2776
2884
  end
2777
2885
 
@@ -3306,15 +3414,18 @@ module TencentCloud
3306
3414
  # * 1:包含所有元数据字段
3307
3415
  # * 2:不包含任何元数据字段
3308
3416
  # @type MetadataFlag: Integer
3417
+ # @param CoverageField: 自定义日志解析异常存储字段。
3418
+ # @type CoverageField: String
3309
3419
 
3310
- attr_accessor :TopicId, :Rule, :Status, :IncludeInternalFields, :MetadataFlag
3420
+ attr_accessor :TopicId, :Rule, :Status, :IncludeInternalFields, :MetadataFlag, :CoverageField
3311
3421
 
3312
- def initialize(topicid=nil, rule=nil, status=nil, includeinternalfields=nil, metadataflag=nil)
3422
+ def initialize(topicid=nil, rule=nil, status=nil, includeinternalfields=nil, metadataflag=nil, coveragefield=nil)
3313
3423
  @TopicId = topicid
3314
3424
  @Rule = rule
3315
3425
  @Status = status
3316
3426
  @IncludeInternalFields = includeinternalfields
3317
3427
  @MetadataFlag = metadataflag
3428
+ @CoverageField = coveragefield
3318
3429
  end
3319
3430
 
3320
3431
  def deserialize(params)
@@ -3326,6 +3437,7 @@ module TencentCloud
3326
3437
  @Status = params['Status']
3327
3438
  @IncludeInternalFields = params['IncludeInternalFields']
3328
3439
  @MetadataFlag = params['MetadataFlag']
3440
+ @CoverageField = params['CoverageField']
3329
3441
  end
3330
3442
  end
3331
3443
 
@@ -3781,10 +3893,14 @@ module TencentCloud
3781
3893
  # - INTELLIGENT_TIERING:智能分层存储
3782
3894
  # - MAZ_INTELLIGENT_TIERING:智能分层存储(多 AZ)
3783
3895
  # @type StorageType: String
3896
+ # @param RoleArn: 角色访问描述名 [创建角色](https://cloud.tencent.com/document/product/598/19381)
3897
+ # @type RoleArn: String
3898
+ # @param ExternalId: 外部ID
3899
+ # @type ExternalId: String
3784
3900
 
3785
- attr_accessor :TopicId, :Bucket, :Prefix, :ShipperName, :Interval, :MaxSize, :FilterRules, :Partition, :Compress, :Content, :FilenameMode, :StartTime, :EndTime, :StorageType
3901
+ attr_accessor :TopicId, :Bucket, :Prefix, :ShipperName, :Interval, :MaxSize, :FilterRules, :Partition, :Compress, :Content, :FilenameMode, :StartTime, :EndTime, :StorageType, :RoleArn, :ExternalId
3786
3902
 
3787
- def initialize(topicid=nil, bucket=nil, prefix=nil, shippername=nil, interval=nil, maxsize=nil, filterrules=nil, partition=nil, compress=nil, content=nil, filenamemode=nil, starttime=nil, endtime=nil, storagetype=nil)
3903
+ def initialize(topicid=nil, bucket=nil, prefix=nil, shippername=nil, interval=nil, maxsize=nil, filterrules=nil, partition=nil, compress=nil, content=nil, filenamemode=nil, starttime=nil, endtime=nil, storagetype=nil, rolearn=nil, externalid=nil)
3788
3904
  @TopicId = topicid
3789
3905
  @Bucket = bucket
3790
3906
  @Prefix = prefix
@@ -3799,6 +3915,8 @@ module TencentCloud
3799
3915
  @StartTime = starttime
3800
3916
  @EndTime = endtime
3801
3917
  @StorageType = storagetype
3918
+ @RoleArn = rolearn
3919
+ @ExternalId = externalid
3802
3920
  end
3803
3921
 
3804
3922
  def deserialize(params)
@@ -3829,6 +3947,8 @@ module TencentCloud
3829
3947
  @StartTime = params['StartTime']
3830
3948
  @EndTime = params['EndTime']
3831
3949
  @StorageType = params['StorageType']
3950
+ @RoleArn = params['RoleArn']
3951
+ @ExternalId = params['ExternalId']
3832
3952
  end
3833
3953
  end
3834
3954
 
@@ -3884,6 +4004,12 @@ module TencentCloud
3884
4004
  # 非0:日志主题开启日志沉降后标准存储的天数,HotPeriod需要大于等于7,且小于Period。
3885
4005
  # 仅在StorageType为 hot 时生效,指标主题不支持该配置。
3886
4006
  # @type HotPeriod: Integer
4007
+ # @param Encryption: 加密相关参数。 支持加密地域并且开白用户可以传此参数,其他场景不能传递该参数。
4008
+ # 0或者不传: 不加密
4009
+ # 1:kms-cls 云产品密钥加密
4010
+
4011
+ # 支持地域:ap-beijing,ap-guangzhou,ap-shanghai,ap-singapore,ap-bangkok,ap-jakarta,eu-frankfurt,ap-seoul,ap-tokyo
4012
+ # @type Encryption: Integer
3887
4013
  # @param BizType: 主题类型
3888
4014
  # - 0:日志主题,默认值
3889
4015
  # - 1:指标主题
@@ -3901,9 +4027,9 @@ module TencentCloud
3901
4027
  # @param IsSourceFrom: 开启记录公网来源ip和服务端接收时间
3902
4028
  # @type IsSourceFrom: Boolean
3903
4029
 
3904
- attr_accessor :LogsetId, :TopicName, :PartitionCount, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :Describes, :HotPeriod, :BizType, :TopicId, :IsWebTracking, :Extends, :IsSourceFrom
4030
+ attr_accessor :LogsetId, :TopicName, :PartitionCount, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :Describes, :HotPeriod, :Encryption, :BizType, :TopicId, :IsWebTracking, :Extends, :IsSourceFrom
3905
4031
 
3906
- def initialize(logsetid=nil, topicname=nil, partitioncount=nil, tags=nil, autosplit=nil, maxsplitpartitions=nil, storagetype=nil, period=nil, describes=nil, hotperiod=nil, biztype=nil, topicid=nil, iswebtracking=nil, extends=nil, issourcefrom=nil)
4032
+ def initialize(logsetid=nil, topicname=nil, partitioncount=nil, tags=nil, autosplit=nil, maxsplitpartitions=nil, storagetype=nil, period=nil, describes=nil, hotperiod=nil, encryption=nil, biztype=nil, topicid=nil, iswebtracking=nil, extends=nil, issourcefrom=nil)
3907
4033
  @LogsetId = logsetid
3908
4034
  @TopicName = topicname
3909
4035
  @PartitionCount = partitioncount
@@ -3914,6 +4040,7 @@ module TencentCloud
3914
4040
  @Period = period
3915
4041
  @Describes = describes
3916
4042
  @HotPeriod = hotperiod
4043
+ @Encryption = encryption
3917
4044
  @BizType = biztype
3918
4045
  @TopicId = topicid
3919
4046
  @IsWebTracking = iswebtracking
@@ -3939,6 +4066,7 @@ module TencentCloud
3939
4066
  @Period = params['Period']
3940
4067
  @Describes = params['Describes']
3941
4068
  @HotPeriod = params['HotPeriod']
4069
+ @Encryption = params['Encryption']
3942
4070
  @BizType = params['BizType']
3943
4071
  @TopicId = params['TopicId']
3944
4072
  @IsWebTracking = params['IsWebTracking']
@@ -5434,32 +5562,32 @@ module TencentCloud
5434
5562
 
5435
5563
  # DescribeAlarmNotices请求参数结构体
5436
5564
  class DescribeAlarmNoticesRequest < TencentCloud::Common::AbstractModel
5437
- # @param Filters: <li> name
5565
+ # @param Filters: name
5438
5566
  # 按照【通知渠道组名称】进行过滤。
5439
5567
  # 类型:String
5440
5568
  # 示例:"Filters":[{"Key":"name","Values":["test-notice"]}]
5441
- # 必选:否</li>
5442
- # <li> alarmNoticeId
5569
+ # 必选:否
5570
+ # alarmNoticeId
5443
5571
  # 按照【通知渠道组ID】进行过滤。
5444
5572
  # 类型:String
5445
5573
  # 示例:"Filters": [{Key: "alarmNoticeId", Values: ["notice-5281f1d2-6275-4e56-9ec3-a1eb19d8bc2f"]}]
5446
- # 必选:否</li>
5447
- # <li> uid
5574
+ # 必选:否
5575
+ # uid
5448
5576
  # 按照【接收用户ID】进行过滤。
5449
5577
  # 类型:String
5450
5578
  # 示例:"Filters": [{Key: "uid", Values: ["1137546"]}]
5451
- # 必选:否</li>
5452
- # <li> groupId
5579
+ # 必选:否
5580
+ # groupId
5453
5581
  # 按照【接收用户组ID】进行过滤。
5454
5582
  # 类型:String
5455
5583
  # 示例:"Filters": [{Key: "groupId", Values: ["344098"]}]
5456
- # 必选:否</li>
5584
+ # 必选:否
5457
5585
 
5458
- # <li> deliverFlag
5586
+ # deliverFlag
5459
5587
  # 按照【投递状态】进行过滤。
5460
5588
  # 类型:String
5461
5589
  # 必选:否
5462
- # 可选值: "1":未启用, "2": 已启用, "3":投递异常</li>
5590
+ # 可选值: "1":未启用, "2": 已启用, "3":投递异常
5463
5591
  # 示例:"Filters":[{"Key":"deliverFlag","Values":["2"]}]
5464
5592
  # 每次请求的Filters的上限为10,Filter.Values的上限为5。
5465
5593
  # @type Filters: Array
@@ -5467,13 +5595,18 @@ module TencentCloud
5467
5595
  # @type Offset: Integer
5468
5596
  # @param Limit: 分页单页限制数目,默认值为20,最大值100。
5469
5597
  # @type Limit: Integer
5598
+ # @param HasAlarmShieldCount: 是否需要返回通知渠道组配置的告警屏蔽统计状态数量信息。
5599
+ # - true:需要返回;
5600
+ # - false:不返回(默认false)。
5601
+ # @type HasAlarmShieldCount: Boolean
5470
5602
 
5471
- attr_accessor :Filters, :Offset, :Limit
5603
+ attr_accessor :Filters, :Offset, :Limit, :HasAlarmShieldCount
5472
5604
 
5473
- def initialize(filters=nil, offset=nil, limit=nil)
5605
+ def initialize(filters=nil, offset=nil, limit=nil, hasalarmshieldcount=nil)
5474
5606
  @Filters = filters
5475
5607
  @Offset = offset
5476
5608
  @Limit = limit
5609
+ @HasAlarmShieldCount = hasalarmshieldcount
5477
5610
  end
5478
5611
 
5479
5612
  def deserialize(params)
@@ -5487,6 +5620,7 @@ module TencentCloud
5487
5620
  end
5488
5621
  @Offset = params['Offset']
5489
5622
  @Limit = params['Limit']
5623
+ @HasAlarmShieldCount = params['HasAlarmShieldCount']
5490
5624
  end
5491
5625
  end
5492
5626
 
@@ -6682,18 +6816,21 @@ module TencentCloud
6682
6816
  # * 1:包含所有元数据字段
6683
6817
  # * 2:不包含任何元数据字段
6684
6818
  # @type MetadataFlag: Integer
6819
+ # @param CoverageField: 自定义日志解析异常存储字段。
6820
+ # @type CoverageField: String
6685
6821
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6686
6822
  # @type RequestId: String
6687
6823
 
6688
- attr_accessor :TopicId, :Status, :Rule, :ModifyTime, :IncludeInternalFields, :MetadataFlag, :RequestId
6824
+ attr_accessor :TopicId, :Status, :Rule, :ModifyTime, :IncludeInternalFields, :MetadataFlag, :CoverageField, :RequestId
6689
6825
 
6690
- def initialize(topicid=nil, status=nil, rule=nil, modifytime=nil, includeinternalfields=nil, metadataflag=nil, requestid=nil)
6826
+ def initialize(topicid=nil, status=nil, rule=nil, modifytime=nil, includeinternalfields=nil, metadataflag=nil, coveragefield=nil, requestid=nil)
6691
6827
  @TopicId = topicid
6692
6828
  @Status = status
6693
6829
  @Rule = rule
6694
6830
  @ModifyTime = modifytime
6695
6831
  @IncludeInternalFields = includeinternalfields
6696
6832
  @MetadataFlag = metadataflag
6833
+ @CoverageField = coveragefield
6697
6834
  @RequestId = requestid
6698
6835
  end
6699
6836
 
@@ -6707,6 +6844,7 @@ module TencentCloud
6707
6844
  @ModifyTime = params['ModifyTime']
6708
6845
  @IncludeInternalFields = params['IncludeInternalFields']
6709
6846
  @MetadataFlag = params['MetadataFlag']
6847
+ @CoverageField = params['CoverageField']
6710
6848
  @RequestId = params['RequestId']
6711
6849
  end
6712
6850
  end
@@ -9504,6 +9642,8 @@ module TencentCloud
9504
9642
  # @type LogsetName: String
9505
9643
  # @param CreateTime: 创建时间。格式 `YYYY-MM-DD HH:MM:SS`
9506
9644
  # @type CreateTime: String
9645
+ # @param AssumerUin: 若AssumerUin非空,则表示创建该日志集的服务方Uin
9646
+ # @type AssumerUin: Integer
9507
9647
  # @param AssumerName: 云产品标识,日志集由其它云产品创建时,该字段会显示云产品名称,例如CDN、TKE
9508
9648
  # @type AssumerName: String
9509
9649
  # @param Tags: 日志集绑定的标签
@@ -9512,23 +9652,28 @@ module TencentCloud
9512
9652
  # @type TopicCount: Integer
9513
9653
  # @param RoleName: 若AssumerName非空,则表示创建该日志集的服务方角色
9514
9654
  # @type RoleName: String
9655
+ # @param MetricTopicCount: 日志集下指标主题的数目
9656
+ # @type MetricTopicCount: Integer
9515
9657
 
9516
- attr_accessor :LogsetId, :LogsetName, :CreateTime, :AssumerName, :Tags, :TopicCount, :RoleName
9658
+ attr_accessor :LogsetId, :LogsetName, :CreateTime, :AssumerUin, :AssumerName, :Tags, :TopicCount, :RoleName, :MetricTopicCount
9517
9659
 
9518
- def initialize(logsetid=nil, logsetname=nil, createtime=nil, assumername=nil, tags=nil, topiccount=nil, rolename=nil)
9660
+ def initialize(logsetid=nil, logsetname=nil, createtime=nil, assumeruin=nil, assumername=nil, tags=nil, topiccount=nil, rolename=nil, metrictopiccount=nil)
9519
9661
  @LogsetId = logsetid
9520
9662
  @LogsetName = logsetname
9521
9663
  @CreateTime = createtime
9664
+ @AssumerUin = assumeruin
9522
9665
  @AssumerName = assumername
9523
9666
  @Tags = tags
9524
9667
  @TopicCount = topiccount
9525
9668
  @RoleName = rolename
9669
+ @MetricTopicCount = metrictopiccount
9526
9670
  end
9527
9671
 
9528
9672
  def deserialize(params)
9529
9673
  @LogsetId = params['LogsetId']
9530
9674
  @LogsetName = params['LogsetName']
9531
9675
  @CreateTime = params['CreateTime']
9676
+ @AssumerUin = params['AssumerUin']
9532
9677
  @AssumerName = params['AssumerName']
9533
9678
  unless params['Tags'].nil?
9534
9679
  @Tags = []
@@ -9540,6 +9685,7 @@ module TencentCloud
9540
9685
  end
9541
9686
  @TopicCount = params['TopicCount']
9542
9687
  @RoleName = params['RoleName']
9688
+ @MetricTopicCount = params['MetricTopicCount']
9543
9689
  end
9544
9690
  end
9545
9691
 
@@ -9828,10 +9974,14 @@ module TencentCloud
9828
9974
  # 1:关闭
9829
9975
  # 2:开启(默认开启)
9830
9976
  # @type AlarmShieldStatus: Integer
9977
+ # @param CallbackPrioritize: 统一设定自定义回调参数。
9978
+ # - true: 使用通知内容模板中的自定义回调参数覆盖告警策略中单独配置的请求头及请求内容。
9979
+ # - false:优先使用告警策略中单独配置的请求头及请求内容。
9980
+ # @type CallbackPrioritize: Boolean
9831
9981
 
9832
- attr_accessor :AlarmNoticeId, :Tags, :Name, :Type, :NoticeReceivers, :WebCallbacks, :NoticeRules, :JumpDomain, :DeliverStatus, :DeliverConfig, :AlarmShieldStatus
9982
+ attr_accessor :AlarmNoticeId, :Tags, :Name, :Type, :NoticeReceivers, :WebCallbacks, :NoticeRules, :JumpDomain, :DeliverStatus, :DeliverConfig, :AlarmShieldStatus, :CallbackPrioritize
9833
9983
 
9834
- def initialize(alarmnoticeid=nil, tags=nil, name=nil, type=nil, noticereceivers=nil, webcallbacks=nil, noticerules=nil, jumpdomain=nil, deliverstatus=nil, deliverconfig=nil, alarmshieldstatus=nil)
9984
+ def initialize(alarmnoticeid=nil, tags=nil, name=nil, type=nil, noticereceivers=nil, webcallbacks=nil, noticerules=nil, jumpdomain=nil, deliverstatus=nil, deliverconfig=nil, alarmshieldstatus=nil, callbackprioritize=nil)
9835
9985
  @AlarmNoticeId = alarmnoticeid
9836
9986
  @Tags = tags
9837
9987
  @Name = name
@@ -9843,6 +9993,7 @@ module TencentCloud
9843
9993
  @DeliverStatus = deliverstatus
9844
9994
  @DeliverConfig = deliverconfig
9845
9995
  @AlarmShieldStatus = alarmshieldstatus
9996
+ @CallbackPrioritize = callbackprioritize
9846
9997
  end
9847
9998
 
9848
9999
  def deserialize(params)
@@ -9888,6 +10039,7 @@ module TencentCloud
9888
10039
  @DeliverConfig.deserialize(params['DeliverConfig'])
9889
10040
  end
9890
10041
  @AlarmShieldStatus = params['AlarmShieldStatus']
10042
+ @CallbackPrioritize = params['CallbackPrioritize']
9891
10043
  end
9892
10044
  end
9893
10045
 
@@ -9967,8 +10119,8 @@ module TencentCloud
9967
10119
 
9968
10120
  attr_accessor :AlarmId, :Name, :MonitorTime, :Condition, :AlarmLevel, :MultiConditions, :TriggerCount, :AlarmPeriod, :AlarmNoticeIds, :AlarmTargets, :Status, :Enable, :MessageTemplate, :CallBack, :Analysis, :GroupTriggerStatus, :GroupTriggerCondition, :Tags, :MonitorObjectType, :Classifications
9969
10121
  extend Gem::Deprecate
9970
- deprecate :Enable, :none, 2025, 11
9971
- deprecate :Enable=, :none, 2025, 11
10122
+ deprecate :Enable, :none, 2025, 12
10123
+ deprecate :Enable=, :none, 2025, 12
9972
10124
 
9973
10125
  def initialize(alarmid=nil, name=nil, monitortime=nil, condition=nil, alarmlevel=nil, multiconditions=nil, triggercount=nil, alarmperiod=nil, alarmnoticeids=nil, alarmtargets=nil, status=nil, enable=nil, messagetemplate=nil, callback=nil, analysis=nil, grouptriggerstatus=nil, grouptriggercondition=nil, tags=nil, monitorobjecttype=nil, classifications=nil)
9974
10126
  @AlarmId = alarmid
@@ -10266,8 +10418,8 @@ module TencentCloud
10266
10418
 
10267
10419
  attr_accessor :ConfigExtraId, :Name, :TopicId, :HostFile, :ContainerFile, :ContainerStdout, :LogType, :LogFormat, :ExtractRule, :ExcludePaths, :UserDefineRule, :Type, :GroupId, :ConfigFlag, :LogsetId, :LogsetName, :TopicName, :AdvancedConfig
10268
10420
  extend Gem::Deprecate
10269
- deprecate :LogFormat, :none, 2025, 11
10270
- deprecate :LogFormat=, :none, 2025, 11
10421
+ deprecate :LogFormat, :none, 2025, 12
10422
+ deprecate :LogFormat=, :none, 2025, 12
10271
10423
 
10272
10424
  def initialize(configextraid=nil, name=nil, topicid=nil, hostfile=nil, containerfile=nil, containerstdout=nil, logtype=nil, logformat=nil, extractrule=nil, excludepaths=nil, userdefinerule=nil, type=nil, groupid=nil, configflag=nil, logsetid=nil, logsetname=nil, topicname=nil, advancedconfig=nil)
10273
10425
  @ConfigExtraId = configextraid
@@ -10502,16 +10654,25 @@ module TencentCloud
10502
10654
  # @type Ckafka: :class:`Tencentcloud::Cls.v20201016.models.Ckafka`
10503
10655
  # @param Compression: 投递时压缩方式,取值0,2,3。[0:NONE;2:SNAPPY;3:LZ4]
10504
10656
  # @type Compression: Integer
10657
+ # @param RoleArn: 角色访问描述名 [创建角色](https://cloud.tencent.com/document/product/598/19381)
10658
+ # @type RoleArn: String
10659
+ # @param ExternalId: 外部ID
10660
+ # @type ExternalId: String
10661
+ # @param AdvancedConfig: 高级配置
10662
+ # @type AdvancedConfig: :class:`Tencentcloud::Cls.v20201016.models.AdvancedConsumerConfiguration`
10505
10663
 
10506
- attr_accessor :TopicId, :Effective, :NeedContent, :Content, :Ckafka, :Compression
10664
+ attr_accessor :TopicId, :Effective, :NeedContent, :Content, :Ckafka, :Compression, :RoleArn, :ExternalId, :AdvancedConfig
10507
10665
 
10508
- def initialize(topicid=nil, effective=nil, needcontent=nil, content=nil, ckafka=nil, compression=nil)
10666
+ def initialize(topicid=nil, effective=nil, needcontent=nil, content=nil, ckafka=nil, compression=nil, rolearn=nil, externalid=nil, advancedconfig=nil)
10509
10667
  @TopicId = topicid
10510
10668
  @Effective = effective
10511
10669
  @NeedContent = needcontent
10512
10670
  @Content = content
10513
10671
  @Ckafka = ckafka
10514
10672
  @Compression = compression
10673
+ @RoleArn = rolearn
10674
+ @ExternalId = externalid
10675
+ @AdvancedConfig = advancedconfig
10515
10676
  end
10516
10677
 
10517
10678
  def deserialize(params)
@@ -10527,6 +10688,12 @@ module TencentCloud
10527
10688
  @Ckafka.deserialize(params['Ckafka'])
10528
10689
  end
10529
10690
  @Compression = params['Compression']
10691
+ @RoleArn = params['RoleArn']
10692
+ @ExternalId = params['ExternalId']
10693
+ unless params['AdvancedConfig'].nil?
10694
+ @AdvancedConfig = AdvancedConsumerConfiguration.new
10695
+ @AdvancedConfig.deserialize(params['AdvancedConfig'])
10696
+ end
10530
10697
  end
10531
10698
  end
10532
10699
 
@@ -10882,15 +11049,18 @@ module TencentCloud
10882
11049
  # * 1:包含所有元数据字段
10883
11050
  # * 2:不包含任何元数据字段
10884
11051
  # @type MetadataFlag: Integer
11052
+ # @param CoverageField: 自定义日志解析异常存储字段。
11053
+ # @type CoverageField: String
10885
11054
 
10886
- attr_accessor :TopicId, :Status, :Rule, :IncludeInternalFields, :MetadataFlag
11055
+ attr_accessor :TopicId, :Status, :Rule, :IncludeInternalFields, :MetadataFlag, :CoverageField
10887
11056
 
10888
- def initialize(topicid=nil, status=nil, rule=nil, includeinternalfields=nil, metadataflag=nil)
11057
+ def initialize(topicid=nil, status=nil, rule=nil, includeinternalfields=nil, metadataflag=nil, coveragefield=nil)
10889
11058
  @TopicId = topicid
10890
11059
  @Status = status
10891
11060
  @Rule = rule
10892
11061
  @IncludeInternalFields = includeinternalfields
10893
11062
  @MetadataFlag = metadataflag
11063
+ @CoverageField = coveragefield
10894
11064
  end
10895
11065
 
10896
11066
  def deserialize(params)
@@ -10902,6 +11072,7 @@ module TencentCloud
10902
11072
  end
10903
11073
  @IncludeInternalFields = params['IncludeInternalFields']
10904
11074
  @MetadataFlag = params['MetadataFlag']
11075
+ @CoverageField = params['CoverageField']
10905
11076
  end
10906
11077
  end
10907
11078
 
@@ -11405,10 +11576,14 @@ module TencentCloud
11405
11576
  # - INTELLIGENT_TIERING:智能分层存储
11406
11577
  # - MAZ_INTELLIGENT_TIERING:智能分层存储(多 AZ)
11407
11578
  # @type StorageType: String
11579
+ # @param RoleArn: 角色访问描述名 [创建角色](https://cloud.tencent.com/document/product/598/19381)
11580
+ # @type RoleArn: String
11581
+ # @param ExternalId: 外部ID
11582
+ # @type ExternalId: String
11408
11583
 
11409
- attr_accessor :ShipperId, :Bucket, :Prefix, :Status, :ShipperName, :Interval, :MaxSize, :FilterRules, :Partition, :Compress, :Content, :FilenameMode, :StorageType
11584
+ attr_accessor :ShipperId, :Bucket, :Prefix, :Status, :ShipperName, :Interval, :MaxSize, :FilterRules, :Partition, :Compress, :Content, :FilenameMode, :StorageType, :RoleArn, :ExternalId
11410
11585
 
11411
- def initialize(shipperid=nil, bucket=nil, prefix=nil, status=nil, shippername=nil, interval=nil, maxsize=nil, filterrules=nil, partition=nil, compress=nil, content=nil, filenamemode=nil, storagetype=nil)
11586
+ def initialize(shipperid=nil, bucket=nil, prefix=nil, status=nil, shippername=nil, interval=nil, maxsize=nil, filterrules=nil, partition=nil, compress=nil, content=nil, filenamemode=nil, storagetype=nil, rolearn=nil, externalid=nil)
11412
11587
  @ShipperId = shipperid
11413
11588
  @Bucket = bucket
11414
11589
  @Prefix = prefix
@@ -11422,6 +11597,8 @@ module TencentCloud
11422
11597
  @Content = content
11423
11598
  @FilenameMode = filenamemode
11424
11599
  @StorageType = storagetype
11600
+ @RoleArn = rolearn
11601
+ @ExternalId = externalid
11425
11602
  end
11426
11603
 
11427
11604
  def deserialize(params)
@@ -11451,6 +11628,8 @@ module TencentCloud
11451
11628
  end
11452
11629
  @FilenameMode = params['FilenameMode']
11453
11630
  @StorageType = params['StorageType']
11631
+ @RoleArn = params['RoleArn']
11632
+ @ExternalId = params['ExternalId']
11454
11633
  end
11455
11634
  end
11456
11635
 
@@ -11472,8 +11651,7 @@ module TencentCloud
11472
11651
 
11473
11652
  # ModifyTopic请求参数结构体
11474
11653
  class ModifyTopicRequest < TencentCloud::Common::AbstractModel
11475
- # @param TopicId: 主题ID
11476
- # - 通过[获取主题列表](https://cloud.tencent.com/document/product/614/56454)获取主题Id。
11654
+ # @param TopicId: 主题ID- 通过[获取主题列表](https://cloud.tencent.com/document/product/614/56454)获取主题Id。
11477
11655
  # @type TopicId: String
11478
11656
  # @param TopicName: 主题名称
11479
11657
  # 输入限制:
@@ -11493,6 +11671,8 @@ module TencentCloud
11493
11671
  # @type MaxSplitPartitions: Integer
11494
11672
  # @param Period: 生命周期,单位天,标准存储取值范围1\~3600,低频存储取值范围7\~3600。取值为3640时代表永久保存
11495
11673
  # @type Period: Integer
11674
+ # @param StorageType: 存储类型:cold 低频存储,hot 标准存储
11675
+ # @type StorageType: String
11496
11676
  # @param Describes: 主题描述
11497
11677
  # @type Describes: String
11498
11678
  # @param HotPeriod: 0:日志主题关闭日志沉降。
@@ -11514,10 +11694,15 @@ module TencentCloud
11514
11694
  # @param CancelTopicAsyncTaskID: 取消切换存储任务的id
11515
11695
  # - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取取消切换存储任务的id【Topics中的TopicAsyncTaskID字段】。
11516
11696
  # @type CancelTopicAsyncTaskID: String
11697
+ # @param Encryption: 加密相关参数。 支持加密地域并且开白用户可以传此参数,其他场景不能传递该参数。
11698
+ # 只支持传入1:kms-cls 云产品秘钥加密
11699
+ # @type Encryption: Integer
11700
+ # @param IsSourceFrom: 开启记录公网来源ip和服务端接收时间
11701
+ # @type IsSourceFrom: Boolean
11517
11702
 
11518
- attr_accessor :TopicId, :TopicName, :Tags, :Status, :AutoSplit, :MaxSplitPartitions, :Period, :Describes, :HotPeriod, :IsWebTracking, :Extends, :PartitionCount, :CancelTopicAsyncTaskID
11703
+ attr_accessor :TopicId, :TopicName, :Tags, :Status, :AutoSplit, :MaxSplitPartitions, :Period, :StorageType, :Describes, :HotPeriod, :IsWebTracking, :Extends, :PartitionCount, :CancelTopicAsyncTaskID, :Encryption, :IsSourceFrom
11519
11704
 
11520
- def initialize(topicid=nil, topicname=nil, tags=nil, status=nil, autosplit=nil, maxsplitpartitions=nil, period=nil, describes=nil, hotperiod=nil, iswebtracking=nil, extends=nil, partitioncount=nil, canceltopicasynctaskid=nil)
11705
+ def initialize(topicid=nil, topicname=nil, tags=nil, status=nil, autosplit=nil, maxsplitpartitions=nil, period=nil, storagetype=nil, describes=nil, hotperiod=nil, iswebtracking=nil, extends=nil, partitioncount=nil, canceltopicasynctaskid=nil, encryption=nil, issourcefrom=nil)
11521
11706
  @TopicId = topicid
11522
11707
  @TopicName = topicname
11523
11708
  @Tags = tags
@@ -11525,12 +11710,15 @@ module TencentCloud
11525
11710
  @AutoSplit = autosplit
11526
11711
  @MaxSplitPartitions = maxsplitpartitions
11527
11712
  @Period = period
11713
+ @StorageType = storagetype
11528
11714
  @Describes = describes
11529
11715
  @HotPeriod = hotperiod
11530
11716
  @IsWebTracking = iswebtracking
11531
11717
  @Extends = extends
11532
11718
  @PartitionCount = partitioncount
11533
11719
  @CancelTopicAsyncTaskID = canceltopicasynctaskid
11720
+ @Encryption = encryption
11721
+ @IsSourceFrom = issourcefrom
11534
11722
  end
11535
11723
 
11536
11724
  def deserialize(params)
@@ -11548,6 +11736,7 @@ module TencentCloud
11548
11736
  @AutoSplit = params['AutoSplit']
11549
11737
  @MaxSplitPartitions = params['MaxSplitPartitions']
11550
11738
  @Period = params['Period']
11739
+ @StorageType = params['StorageType']
11551
11740
  @Describes = params['Describes']
11552
11741
  @HotPeriod = params['HotPeriod']
11553
11742
  @IsWebTracking = params['IsWebTracking']
@@ -11557,6 +11746,8 @@ module TencentCloud
11557
11746
  end
11558
11747
  @PartitionCount = params['PartitionCount']
11559
11748
  @CancelTopicAsyncTaskID = params['CancelTopicAsyncTaskID']
11749
+ @Encryption = params['Encryption']
11750
+ @IsSourceFrom = params['IsSourceFrom']
11560
11751
  end
11561
11752
  end
11562
11753
 
@@ -12294,8 +12485,8 @@ module TencentCloud
12294
12485
 
12295
12486
  attr_accessor :LogContent, :LineNum, :DstTopicId, :FailReason, :Time, :DstTopicName
12296
12487
  extend Gem::Deprecate
12297
- deprecate :DstTopicName, :none, 2025, 11
12298
- deprecate :DstTopicName=, :none, 2025, 11
12488
+ deprecate :DstTopicName, :none, 2025, 12
12489
+ deprecate :DstTopicName=, :none, 2025, 12
12299
12490
 
12300
12491
  def initialize(logcontent=nil, linenum=nil, dsttopicid=nil, failreason=nil, time=nil, dsttopicname=nil)
12301
12492
  @LogContent = logcontent
@@ -13196,10 +13387,20 @@ module TencentCloud
13196
13387
  # INTELLIGENT_TIERING:智能分层存储
13197
13388
  # MAZ_INTELLIGENT_TIERING:智能分层存储(多 AZ)
13198
13389
  # @type StorageType: String
13390
+ # @param RoleArn: 角色访问描述名 [创建角色](https://cloud.tencent.com/document/product/598/19381)
13391
+ # @type RoleArn: String
13392
+ # @param ExternalId: 外部ID
13393
+ # @type ExternalId: String
13394
+ # @param TaskStatus: 任务运行状态。支持`0`,`1`,`2`
13395
+
13396
+ # - `0`: 停止
13397
+ # - `1`: 运行中
13398
+ # - `2`: 异常
13399
+ # @type TaskStatus: Integer
13199
13400
 
13200
- attr_accessor :ShipperId, :TopicId, :Bucket, :Prefix, :ShipperName, :Interval, :MaxSize, :Status, :FilterRules, :Partition, :Compress, :Content, :CreateTime, :FilenameMode, :StartTime, :EndTime, :Progress, :RemainTime, :HistoryStatus, :StorageType
13401
+ attr_accessor :ShipperId, :TopicId, :Bucket, :Prefix, :ShipperName, :Interval, :MaxSize, :Status, :FilterRules, :Partition, :Compress, :Content, :CreateTime, :FilenameMode, :StartTime, :EndTime, :Progress, :RemainTime, :HistoryStatus, :StorageType, :RoleArn, :ExternalId, :TaskStatus
13201
13402
 
13202
- def initialize(shipperid=nil, topicid=nil, bucket=nil, prefix=nil, shippername=nil, interval=nil, maxsize=nil, status=nil, filterrules=nil, partition=nil, compress=nil, content=nil, createtime=nil, filenamemode=nil, starttime=nil, endtime=nil, progress=nil, remaintime=nil, historystatus=nil, storagetype=nil)
13403
+ def initialize(shipperid=nil, topicid=nil, bucket=nil, prefix=nil, shippername=nil, interval=nil, maxsize=nil, status=nil, filterrules=nil, partition=nil, compress=nil, content=nil, createtime=nil, filenamemode=nil, starttime=nil, endtime=nil, progress=nil, remaintime=nil, historystatus=nil, storagetype=nil, rolearn=nil, externalid=nil, taskstatus=nil)
13203
13404
  @ShipperId = shipperid
13204
13405
  @TopicId = topicid
13205
13406
  @Bucket = bucket
@@ -13220,6 +13421,9 @@ module TencentCloud
13220
13421
  @RemainTime = remaintime
13221
13422
  @HistoryStatus = historystatus
13222
13423
  @StorageType = storagetype
13424
+ @RoleArn = rolearn
13425
+ @ExternalId = externalid
13426
+ @TaskStatus = taskstatus
13223
13427
  end
13224
13428
 
13225
13429
  def deserialize(params)
@@ -13256,6 +13460,9 @@ module TencentCloud
13256
13460
  @RemainTime = params['RemainTime']
13257
13461
  @HistoryStatus = params['HistoryStatus']
13258
13462
  @StorageType = params['StorageType']
13463
+ @RoleArn = params['RoleArn']
13464
+ @ExternalId = params['ExternalId']
13465
+ @TaskStatus = params['TaskStatus']
13259
13466
  end
13260
13467
  end
13261
13468
 
@@ -13461,10 +13668,11 @@ module TencentCloud
13461
13668
  # @type PartitionCount: Integer
13462
13669
  # @param Index: 主题是否开启索引(主题类型需为日志主题)
13463
13670
  # @type Index: Boolean
13671
+ # @param AssumerUin: AssumerUin非空则表示创建该日志主题的服务方Uin
13672
+ # @type AssumerUin: Integer
13464
13673
  # @param AssumerName: 云产品标识,主题由其它云产品创建时,该字段会显示云产品名称,例如CDN、TKE
13465
13674
  # @type AssumerName: String
13466
- # @param CreateTime: 创建时间
13467
- # 时间格式:yyyy-MM-dd HH:mm:ss
13675
+ # @param CreateTime: 创建时间。格式:yyyy-MM-dd HH:mm:ss
13468
13676
  # @type CreateTime: String
13469
13677
  # @param Status: 主题是否开启采集,true:开启采集;false:关闭采集。
13470
13678
  # 创建日志主题时默认开启,可通过SDK调用ModifyTopic修改此字段。
@@ -13472,6 +13680,8 @@ module TencentCloud
13472
13680
  # @type Status: Boolean
13473
13681
  # @param Tags: 主题绑定的标签信息
13474
13682
  # @type Tags: Array
13683
+ # @param RoleName: RoleName非空则表示创建该日志主题的服务方使用的角色
13684
+ # @type RoleName: String
13475
13685
  # @param AutoSplit: 该主题是否开启自动分裂
13476
13686
  # @type AutoSplit: Boolean
13477
13687
  # @param MaxSplitPartitions: 若开启自动分裂的话,该主题能够允许的最大分区数
@@ -13511,19 +13721,23 @@ module TencentCloud
13511
13721
  # @param EffectiveDate: 异步迁移完成后,预计生效日期
13512
13722
  # 时间格式:yyyy-MM-dd HH:mm:ss
13513
13723
  # @type EffectiveDate: String
13724
+ # @param IsSourceFrom: IsSourceFrom 开启记录公网来源ip和服务端接收时间
13725
+ # @type IsSourceFrom: Boolean
13514
13726
 
13515
- attr_accessor :LogsetId, :TopicId, :TopicName, :PartitionCount, :Index, :AssumerName, :CreateTime, :Status, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :SubAssumerName, :Describes, :HotPeriod, :BizType, :IsWebTracking, :Extends, :TopicAsyncTaskID, :MigrationStatus, :EffectiveDate
13727
+ attr_accessor :LogsetId, :TopicId, :TopicName, :PartitionCount, :Index, :AssumerUin, :AssumerName, :CreateTime, :Status, :Tags, :RoleName, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :SubAssumerName, :Describes, :HotPeriod, :BizType, :IsWebTracking, :Extends, :TopicAsyncTaskID, :MigrationStatus, :EffectiveDate, :IsSourceFrom
13516
13728
 
13517
- def initialize(logsetid=nil, topicid=nil, topicname=nil, partitioncount=nil, index=nil, assumername=nil, createtime=nil, status=nil, tags=nil, autosplit=nil, maxsplitpartitions=nil, storagetype=nil, period=nil, subassumername=nil, describes=nil, hotperiod=nil, biztype=nil, iswebtracking=nil, extends=nil, topicasynctaskid=nil, migrationstatus=nil, effectivedate=nil)
13729
+ def initialize(logsetid=nil, topicid=nil, topicname=nil, partitioncount=nil, index=nil, assumeruin=nil, assumername=nil, createtime=nil, status=nil, tags=nil, rolename=nil, autosplit=nil, maxsplitpartitions=nil, storagetype=nil, period=nil, subassumername=nil, describes=nil, hotperiod=nil, biztype=nil, iswebtracking=nil, extends=nil, topicasynctaskid=nil, migrationstatus=nil, effectivedate=nil, issourcefrom=nil)
13518
13730
  @LogsetId = logsetid
13519
13731
  @TopicId = topicid
13520
13732
  @TopicName = topicname
13521
13733
  @PartitionCount = partitioncount
13522
13734
  @Index = index
13735
+ @AssumerUin = assumeruin
13523
13736
  @AssumerName = assumername
13524
13737
  @CreateTime = createtime
13525
13738
  @Status = status
13526
13739
  @Tags = tags
13740
+ @RoleName = rolename
13527
13741
  @AutoSplit = autosplit
13528
13742
  @MaxSplitPartitions = maxsplitpartitions
13529
13743
  @StorageType = storagetype
@@ -13537,6 +13751,7 @@ module TencentCloud
13537
13751
  @TopicAsyncTaskID = topicasynctaskid
13538
13752
  @MigrationStatus = migrationstatus
13539
13753
  @EffectiveDate = effectivedate
13754
+ @IsSourceFrom = issourcefrom
13540
13755
  end
13541
13756
 
13542
13757
  def deserialize(params)
@@ -13545,6 +13760,7 @@ module TencentCloud
13545
13760
  @TopicName = params['TopicName']
13546
13761
  @PartitionCount = params['PartitionCount']
13547
13762
  @Index = params['Index']
13763
+ @AssumerUin = params['AssumerUin']
13548
13764
  @AssumerName = params['AssumerName']
13549
13765
  @CreateTime = params['CreateTime']
13550
13766
  @Status = params['Status']
@@ -13556,6 +13772,7 @@ module TencentCloud
13556
13772
  @Tags << tag_tmp
13557
13773
  end
13558
13774
  end
13775
+ @RoleName = params['RoleName']
13559
13776
  @AutoSplit = params['AutoSplit']
13560
13777
  @MaxSplitPartitions = params['MaxSplitPartitions']
13561
13778
  @StorageType = params['StorageType']
@@ -13572,6 +13789,7 @@ module TencentCloud
13572
13789
  @TopicAsyncTaskID = params['TopicAsyncTaskID']
13573
13790
  @MigrationStatus = params['MigrationStatus']
13574
13791
  @EffectiveDate = params['EffectiveDate']
13792
+ @IsSourceFrom = params['IsSourceFrom']
13575
13793
  end
13576
13794
  end
13577
13795
 
@@ -13589,8 +13807,8 @@ module TencentCloud
13589
13807
 
13590
13808
  attr_accessor :TopicId, :HashKey, :CompressType
13591
13809
  extend Gem::Deprecate
13592
- deprecate :HashKey, :none, 2025, 11
13593
- deprecate :HashKey=, :none, 2025, 11
13810
+ deprecate :HashKey, :none, 2025, 12
13811
+ deprecate :HashKey=, :none, 2025, 12
13594
13812
 
13595
13813
  def initialize(topicid=nil, hashkey=nil, compresstype=nil)
13596
13814
  @TopicId = topicid
@@ -13725,10 +13943,10 @@ module TencentCloud
13725
13943
 
13726
13944
  attr_accessor :CallbackType, :Url, :WebCallbackId, :Method, :NoticeContentId, :RemindType, :Mobiles, :UserIds, :Headers, :Body, :Index
13727
13945
  extend Gem::Deprecate
13728
- deprecate :Headers, :none, 2025, 11
13729
- deprecate :Headers=, :none, 2025, 11
13730
- deprecate :Body, :none, 2025, 11
13731
- deprecate :Body=, :none, 2025, 11
13946
+ deprecate :Headers, :none, 2025, 12
13947
+ deprecate :Headers=, :none, 2025, 12
13948
+ deprecate :Body, :none, 2025, 12
13949
+ deprecate :Body=, :none, 2025, 12
13732
13950
 
13733
13951
  def initialize(callbacktype=nil, url=nil, webcallbackid=nil, method=nil, noticecontentid=nil, remindtype=nil, mobiles=nil, userids=nil, headers=nil, body=nil, index=nil)
13734
13952
  @CallbackType = callbacktype
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.1173
4
+ version: 3.0.1183
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-11-24 00:00:00.000000000 Z
11
+ date: 2025-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/v20201016/client.rb
37
- - lib/v20201016/models.rb
38
36
  - lib/tencentcloud-sdk-cls.rb
37
+ - lib/v20201016/models.rb
38
+ - lib/v20201016/client.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: