tencentcloud-sdk-cls 3.0.1174 → 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 +270 -60
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7480e744d0f25c9c22032e8edcc8722d907520bf
4
- data.tar.gz: 79961fe7b3fbdc67513890c9826d283d2e212a51
3
+ metadata.gz: 9d2ce0105ae4d9731e6f5dd27644c8afb6a754e8
4
+ data.tar.gz: 164493e292329801ff833967874a4be06143736b
5
5
  SHA512:
6
- metadata.gz: eadd8c864f08e39a763800ef1cc01d3ed27c71e83ce40fffe9a67b9edede948d7f0bb180b7d994977a761b4ca7fe4fb457334c6084bd2ab29d8bd3efff6c52a1
7
- data.tar.gz: 0b38718d0f5d84b76a9b538dda76c6e50517583fc195d28e6391bac5bb60a6c78fb5769691a46da37483d71a2dd841f8f6d4b517acb61a90836e25b5c4b52e10
6
+ metadata.gz: c6b30d9329863cec2fecec097141f52af88731e195d7a8459ff63e20e6d4f9760e30951556f9612f44fa21dcd4442df645b1f223ecec7b5f25a8dcde35a78965
7
+ data.tar.gz: 9a51d73b2a391e1274617b1119841322ccc8c8b83693bd2ce3077bdf338aca9199d1bcedf9e55e7d2242525d775611a95ac37c6a693b22ba321fbc7c94d7e461
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1174
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: 投递日志开关。
315
339
 
316
- attr_accessor :Name, :Tags, :Type, :NoticeReceivers, :WebCallbacks, :AlarmNoticeId, :NoticeRules, :AlarmShieldStatus, :JumpDomain, :AlarmNoticeDeliverConfig, :CreateTime, :UpdateTime
340
+ # 参数值:
341
+
342
+ # 1:关闭
343
+
344
+ # 2:开启
345
+ # @type DeliverStatus: Integer
346
+ # @param DeliverFlag: 投递日志标识。
317
347
 
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)
348
+ # 参数值:
349
+
350
+ # 1:未启用
351
+
352
+ # 2:已启用
353
+
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
 
@@ -5442,32 +5562,32 @@ module TencentCloud
5442
5562
 
5443
5563
  # DescribeAlarmNotices请求参数结构体
5444
5564
  class DescribeAlarmNoticesRequest < TencentCloud::Common::AbstractModel
5445
- # @param Filters: <li> name
5565
+ # @param Filters: name
5446
5566
  # 按照【通知渠道组名称】进行过滤。
5447
5567
  # 类型:String
5448
5568
  # 示例:"Filters":[{"Key":"name","Values":["test-notice"]}]
5449
- # 必选:否</li>
5450
- # <li> alarmNoticeId
5569
+ # 必选:否
5570
+ # alarmNoticeId
5451
5571
  # 按照【通知渠道组ID】进行过滤。
5452
5572
  # 类型:String
5453
5573
  # 示例:"Filters": [{Key: "alarmNoticeId", Values: ["notice-5281f1d2-6275-4e56-9ec3-a1eb19d8bc2f"]}]
5454
- # 必选:否</li>
5455
- # <li> uid
5574
+ # 必选:否
5575
+ # uid
5456
5576
  # 按照【接收用户ID】进行过滤。
5457
5577
  # 类型:String
5458
5578
  # 示例:"Filters": [{Key: "uid", Values: ["1137546"]}]
5459
- # 必选:否</li>
5460
- # <li> groupId
5579
+ # 必选:否
5580
+ # groupId
5461
5581
  # 按照【接收用户组ID】进行过滤。
5462
5582
  # 类型:String
5463
5583
  # 示例:"Filters": [{Key: "groupId", Values: ["344098"]}]
5464
- # 必选:否</li>
5584
+ # 必选:否
5465
5585
 
5466
- # <li> deliverFlag
5586
+ # deliverFlag
5467
5587
  # 按照【投递状态】进行过滤。
5468
5588
  # 类型:String
5469
5589
  # 必选:否
5470
- # 可选值: "1":未启用, "2": 已启用, "3":投递异常</li>
5590
+ # 可选值: "1":未启用, "2": 已启用, "3":投递异常
5471
5591
  # 示例:"Filters":[{"Key":"deliverFlag","Values":["2"]}]
5472
5592
  # 每次请求的Filters的上限为10,Filter.Values的上限为5。
5473
5593
  # @type Filters: Array
@@ -5475,13 +5595,18 @@ module TencentCloud
5475
5595
  # @type Offset: Integer
5476
5596
  # @param Limit: 分页单页限制数目,默认值为20,最大值100。
5477
5597
  # @type Limit: Integer
5598
+ # @param HasAlarmShieldCount: 是否需要返回通知渠道组配置的告警屏蔽统计状态数量信息。
5599
+ # - true:需要返回;
5600
+ # - false:不返回(默认false)。
5601
+ # @type HasAlarmShieldCount: Boolean
5478
5602
 
5479
- attr_accessor :Filters, :Offset, :Limit
5603
+ attr_accessor :Filters, :Offset, :Limit, :HasAlarmShieldCount
5480
5604
 
5481
- def initialize(filters=nil, offset=nil, limit=nil)
5605
+ def initialize(filters=nil, offset=nil, limit=nil, hasalarmshieldcount=nil)
5482
5606
  @Filters = filters
5483
5607
  @Offset = offset
5484
5608
  @Limit = limit
5609
+ @HasAlarmShieldCount = hasalarmshieldcount
5485
5610
  end
5486
5611
 
5487
5612
  def deserialize(params)
@@ -5495,6 +5620,7 @@ module TencentCloud
5495
5620
  end
5496
5621
  @Offset = params['Offset']
5497
5622
  @Limit = params['Limit']
5623
+ @HasAlarmShieldCount = params['HasAlarmShieldCount']
5498
5624
  end
5499
5625
  end
5500
5626
 
@@ -6690,18 +6816,21 @@ module TencentCloud
6690
6816
  # * 1:包含所有元数据字段
6691
6817
  # * 2:不包含任何元数据字段
6692
6818
  # @type MetadataFlag: Integer
6819
+ # @param CoverageField: 自定义日志解析异常存储字段。
6820
+ # @type CoverageField: String
6693
6821
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6694
6822
  # @type RequestId: String
6695
6823
 
6696
- attr_accessor :TopicId, :Status, :Rule, :ModifyTime, :IncludeInternalFields, :MetadataFlag, :RequestId
6824
+ attr_accessor :TopicId, :Status, :Rule, :ModifyTime, :IncludeInternalFields, :MetadataFlag, :CoverageField, :RequestId
6697
6825
 
6698
- 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)
6699
6827
  @TopicId = topicid
6700
6828
  @Status = status
6701
6829
  @Rule = rule
6702
6830
  @ModifyTime = modifytime
6703
6831
  @IncludeInternalFields = includeinternalfields
6704
6832
  @MetadataFlag = metadataflag
6833
+ @CoverageField = coveragefield
6705
6834
  @RequestId = requestid
6706
6835
  end
6707
6836
 
@@ -6715,6 +6844,7 @@ module TencentCloud
6715
6844
  @ModifyTime = params['ModifyTime']
6716
6845
  @IncludeInternalFields = params['IncludeInternalFields']
6717
6846
  @MetadataFlag = params['MetadataFlag']
6847
+ @CoverageField = params['CoverageField']
6718
6848
  @RequestId = params['RequestId']
6719
6849
  end
6720
6850
  end
@@ -9512,6 +9642,8 @@ module TencentCloud
9512
9642
  # @type LogsetName: String
9513
9643
  # @param CreateTime: 创建时间。格式 `YYYY-MM-DD HH:MM:SS`
9514
9644
  # @type CreateTime: String
9645
+ # @param AssumerUin: 若AssumerUin非空,则表示创建该日志集的服务方Uin
9646
+ # @type AssumerUin: Integer
9515
9647
  # @param AssumerName: 云产品标识,日志集由其它云产品创建时,该字段会显示云产品名称,例如CDN、TKE
9516
9648
  # @type AssumerName: String
9517
9649
  # @param Tags: 日志集绑定的标签
@@ -9520,23 +9652,28 @@ module TencentCloud
9520
9652
  # @type TopicCount: Integer
9521
9653
  # @param RoleName: 若AssumerName非空,则表示创建该日志集的服务方角色
9522
9654
  # @type RoleName: String
9655
+ # @param MetricTopicCount: 日志集下指标主题的数目
9656
+ # @type MetricTopicCount: Integer
9523
9657
 
9524
- attr_accessor :LogsetId, :LogsetName, :CreateTime, :AssumerName, :Tags, :TopicCount, :RoleName
9658
+ attr_accessor :LogsetId, :LogsetName, :CreateTime, :AssumerUin, :AssumerName, :Tags, :TopicCount, :RoleName, :MetricTopicCount
9525
9659
 
9526
- 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)
9527
9661
  @LogsetId = logsetid
9528
9662
  @LogsetName = logsetname
9529
9663
  @CreateTime = createtime
9664
+ @AssumerUin = assumeruin
9530
9665
  @AssumerName = assumername
9531
9666
  @Tags = tags
9532
9667
  @TopicCount = topiccount
9533
9668
  @RoleName = rolename
9669
+ @MetricTopicCount = metrictopiccount
9534
9670
  end
9535
9671
 
9536
9672
  def deserialize(params)
9537
9673
  @LogsetId = params['LogsetId']
9538
9674
  @LogsetName = params['LogsetName']
9539
9675
  @CreateTime = params['CreateTime']
9676
+ @AssumerUin = params['AssumerUin']
9540
9677
  @AssumerName = params['AssumerName']
9541
9678
  unless params['Tags'].nil?
9542
9679
  @Tags = []
@@ -9548,6 +9685,7 @@ module TencentCloud
9548
9685
  end
9549
9686
  @TopicCount = params['TopicCount']
9550
9687
  @RoleName = params['RoleName']
9688
+ @MetricTopicCount = params['MetricTopicCount']
9551
9689
  end
9552
9690
  end
9553
9691
 
@@ -9836,10 +9974,14 @@ module TencentCloud
9836
9974
  # 1:关闭
9837
9975
  # 2:开启(默认开启)
9838
9976
  # @type AlarmShieldStatus: Integer
9977
+ # @param CallbackPrioritize: 统一设定自定义回调参数。
9978
+ # - true: 使用通知内容模板中的自定义回调参数覆盖告警策略中单独配置的请求头及请求内容。
9979
+ # - false:优先使用告警策略中单独配置的请求头及请求内容。
9980
+ # @type CallbackPrioritize: Boolean
9839
9981
 
9840
- 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
9841
9983
 
9842
- 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)
9843
9985
  @AlarmNoticeId = alarmnoticeid
9844
9986
  @Tags = tags
9845
9987
  @Name = name
@@ -9851,6 +9993,7 @@ module TencentCloud
9851
9993
  @DeliverStatus = deliverstatus
9852
9994
  @DeliverConfig = deliverconfig
9853
9995
  @AlarmShieldStatus = alarmshieldstatus
9996
+ @CallbackPrioritize = callbackprioritize
9854
9997
  end
9855
9998
 
9856
9999
  def deserialize(params)
@@ -9896,6 +10039,7 @@ module TencentCloud
9896
10039
  @DeliverConfig.deserialize(params['DeliverConfig'])
9897
10040
  end
9898
10041
  @AlarmShieldStatus = params['AlarmShieldStatus']
10042
+ @CallbackPrioritize = params['CallbackPrioritize']
9899
10043
  end
9900
10044
  end
9901
10045
 
@@ -9975,8 +10119,8 @@ module TencentCloud
9975
10119
 
9976
10120
  attr_accessor :AlarmId, :Name, :MonitorTime, :Condition, :AlarmLevel, :MultiConditions, :TriggerCount, :AlarmPeriod, :AlarmNoticeIds, :AlarmTargets, :Status, :Enable, :MessageTemplate, :CallBack, :Analysis, :GroupTriggerStatus, :GroupTriggerCondition, :Tags, :MonitorObjectType, :Classifications
9977
10121
  extend Gem::Deprecate
9978
- deprecate :Enable, :none, 2025, 11
9979
- deprecate :Enable=, :none, 2025, 11
10122
+ deprecate :Enable, :none, 2025, 12
10123
+ deprecate :Enable=, :none, 2025, 12
9980
10124
 
9981
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)
9982
10126
  @AlarmId = alarmid
@@ -10274,8 +10418,8 @@ module TencentCloud
10274
10418
 
10275
10419
  attr_accessor :ConfigExtraId, :Name, :TopicId, :HostFile, :ContainerFile, :ContainerStdout, :LogType, :LogFormat, :ExtractRule, :ExcludePaths, :UserDefineRule, :Type, :GroupId, :ConfigFlag, :LogsetId, :LogsetName, :TopicName, :AdvancedConfig
10276
10420
  extend Gem::Deprecate
10277
- deprecate :LogFormat, :none, 2025, 11
10278
- deprecate :LogFormat=, :none, 2025, 11
10421
+ deprecate :LogFormat, :none, 2025, 12
10422
+ deprecate :LogFormat=, :none, 2025, 12
10279
10423
 
10280
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)
10281
10425
  @ConfigExtraId = configextraid
@@ -10510,16 +10654,25 @@ module TencentCloud
10510
10654
  # @type Ckafka: :class:`Tencentcloud::Cls.v20201016.models.Ckafka`
10511
10655
  # @param Compression: 投递时压缩方式,取值0,2,3。[0:NONE;2:SNAPPY;3:LZ4]
10512
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`
10513
10663
 
10514
- attr_accessor :TopicId, :Effective, :NeedContent, :Content, :Ckafka, :Compression
10664
+ attr_accessor :TopicId, :Effective, :NeedContent, :Content, :Ckafka, :Compression, :RoleArn, :ExternalId, :AdvancedConfig
10515
10665
 
10516
- 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)
10517
10667
  @TopicId = topicid
10518
10668
  @Effective = effective
10519
10669
  @NeedContent = needcontent
10520
10670
  @Content = content
10521
10671
  @Ckafka = ckafka
10522
10672
  @Compression = compression
10673
+ @RoleArn = rolearn
10674
+ @ExternalId = externalid
10675
+ @AdvancedConfig = advancedconfig
10523
10676
  end
10524
10677
 
10525
10678
  def deserialize(params)
@@ -10535,6 +10688,12 @@ module TencentCloud
10535
10688
  @Ckafka.deserialize(params['Ckafka'])
10536
10689
  end
10537
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
10538
10697
  end
10539
10698
  end
10540
10699
 
@@ -10890,15 +11049,18 @@ module TencentCloud
10890
11049
  # * 1:包含所有元数据字段
10891
11050
  # * 2:不包含任何元数据字段
10892
11051
  # @type MetadataFlag: Integer
11052
+ # @param CoverageField: 自定义日志解析异常存储字段。
11053
+ # @type CoverageField: String
10893
11054
 
10894
- attr_accessor :TopicId, :Status, :Rule, :IncludeInternalFields, :MetadataFlag
11055
+ attr_accessor :TopicId, :Status, :Rule, :IncludeInternalFields, :MetadataFlag, :CoverageField
10895
11056
 
10896
- 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)
10897
11058
  @TopicId = topicid
10898
11059
  @Status = status
10899
11060
  @Rule = rule
10900
11061
  @IncludeInternalFields = includeinternalfields
10901
11062
  @MetadataFlag = metadataflag
11063
+ @CoverageField = coveragefield
10902
11064
  end
10903
11065
 
10904
11066
  def deserialize(params)
@@ -10910,6 +11072,7 @@ module TencentCloud
10910
11072
  end
10911
11073
  @IncludeInternalFields = params['IncludeInternalFields']
10912
11074
  @MetadataFlag = params['MetadataFlag']
11075
+ @CoverageField = params['CoverageField']
10913
11076
  end
10914
11077
  end
10915
11078
 
@@ -11413,10 +11576,14 @@ module TencentCloud
11413
11576
  # - INTELLIGENT_TIERING:智能分层存储
11414
11577
  # - MAZ_INTELLIGENT_TIERING:智能分层存储(多 AZ)
11415
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
11416
11583
 
11417
- 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
11418
11585
 
11419
- 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)
11420
11587
  @ShipperId = shipperid
11421
11588
  @Bucket = bucket
11422
11589
  @Prefix = prefix
@@ -11430,6 +11597,8 @@ module TencentCloud
11430
11597
  @Content = content
11431
11598
  @FilenameMode = filenamemode
11432
11599
  @StorageType = storagetype
11600
+ @RoleArn = rolearn
11601
+ @ExternalId = externalid
11433
11602
  end
11434
11603
 
11435
11604
  def deserialize(params)
@@ -11459,6 +11628,8 @@ module TencentCloud
11459
11628
  end
11460
11629
  @FilenameMode = params['FilenameMode']
11461
11630
  @StorageType = params['StorageType']
11631
+ @RoleArn = params['RoleArn']
11632
+ @ExternalId = params['ExternalId']
11462
11633
  end
11463
11634
  end
11464
11635
 
@@ -11480,8 +11651,7 @@ module TencentCloud
11480
11651
 
11481
11652
  # ModifyTopic请求参数结构体
11482
11653
  class ModifyTopicRequest < TencentCloud::Common::AbstractModel
11483
- # @param TopicId: 主题ID
11484
- # - 通过[获取主题列表](https://cloud.tencent.com/document/product/614/56454)获取主题Id。
11654
+ # @param TopicId: 主题ID- 通过[获取主题列表](https://cloud.tencent.com/document/product/614/56454)获取主题Id。
11485
11655
  # @type TopicId: String
11486
11656
  # @param TopicName: 主题名称
11487
11657
  # 输入限制:
@@ -11501,6 +11671,8 @@ module TencentCloud
11501
11671
  # @type MaxSplitPartitions: Integer
11502
11672
  # @param Period: 生命周期,单位天,标准存储取值范围1\~3600,低频存储取值范围7\~3600。取值为3640时代表永久保存
11503
11673
  # @type Period: Integer
11674
+ # @param StorageType: 存储类型:cold 低频存储,hot 标准存储
11675
+ # @type StorageType: String
11504
11676
  # @param Describes: 主题描述
11505
11677
  # @type Describes: String
11506
11678
  # @param HotPeriod: 0:日志主题关闭日志沉降。
@@ -11522,10 +11694,15 @@ module TencentCloud
11522
11694
  # @param CancelTopicAsyncTaskID: 取消切换存储任务的id
11523
11695
  # - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取取消切换存储任务的id【Topics中的TopicAsyncTaskID字段】。
11524
11696
  # @type CancelTopicAsyncTaskID: String
11697
+ # @param Encryption: 加密相关参数。 支持加密地域并且开白用户可以传此参数,其他场景不能传递该参数。
11698
+ # 只支持传入1:kms-cls 云产品秘钥加密
11699
+ # @type Encryption: Integer
11700
+ # @param IsSourceFrom: 开启记录公网来源ip和服务端接收时间
11701
+ # @type IsSourceFrom: Boolean
11525
11702
 
11526
- 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
11527
11704
 
11528
- 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)
11529
11706
  @TopicId = topicid
11530
11707
  @TopicName = topicname
11531
11708
  @Tags = tags
@@ -11533,12 +11710,15 @@ module TencentCloud
11533
11710
  @AutoSplit = autosplit
11534
11711
  @MaxSplitPartitions = maxsplitpartitions
11535
11712
  @Period = period
11713
+ @StorageType = storagetype
11536
11714
  @Describes = describes
11537
11715
  @HotPeriod = hotperiod
11538
11716
  @IsWebTracking = iswebtracking
11539
11717
  @Extends = extends
11540
11718
  @PartitionCount = partitioncount
11541
11719
  @CancelTopicAsyncTaskID = canceltopicasynctaskid
11720
+ @Encryption = encryption
11721
+ @IsSourceFrom = issourcefrom
11542
11722
  end
11543
11723
 
11544
11724
  def deserialize(params)
@@ -11556,6 +11736,7 @@ module TencentCloud
11556
11736
  @AutoSplit = params['AutoSplit']
11557
11737
  @MaxSplitPartitions = params['MaxSplitPartitions']
11558
11738
  @Period = params['Period']
11739
+ @StorageType = params['StorageType']
11559
11740
  @Describes = params['Describes']
11560
11741
  @HotPeriod = params['HotPeriod']
11561
11742
  @IsWebTracking = params['IsWebTracking']
@@ -11565,6 +11746,8 @@ module TencentCloud
11565
11746
  end
11566
11747
  @PartitionCount = params['PartitionCount']
11567
11748
  @CancelTopicAsyncTaskID = params['CancelTopicAsyncTaskID']
11749
+ @Encryption = params['Encryption']
11750
+ @IsSourceFrom = params['IsSourceFrom']
11568
11751
  end
11569
11752
  end
11570
11753
 
@@ -12302,8 +12485,8 @@ module TencentCloud
12302
12485
 
12303
12486
  attr_accessor :LogContent, :LineNum, :DstTopicId, :FailReason, :Time, :DstTopicName
12304
12487
  extend Gem::Deprecate
12305
- deprecate :DstTopicName, :none, 2025, 11
12306
- deprecate :DstTopicName=, :none, 2025, 11
12488
+ deprecate :DstTopicName, :none, 2025, 12
12489
+ deprecate :DstTopicName=, :none, 2025, 12
12307
12490
 
12308
12491
  def initialize(logcontent=nil, linenum=nil, dsttopicid=nil, failreason=nil, time=nil, dsttopicname=nil)
12309
12492
  @LogContent = logcontent
@@ -13204,10 +13387,20 @@ module TencentCloud
13204
13387
  # INTELLIGENT_TIERING:智能分层存储
13205
13388
  # MAZ_INTELLIGENT_TIERING:智能分层存储(多 AZ)
13206
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`
13207
13395
 
13208
- attr_accessor :ShipperId, :TopicId, :Bucket, :Prefix, :ShipperName, :Interval, :MaxSize, :Status, :FilterRules, :Partition, :Compress, :Content, :CreateTime, :FilenameMode, :StartTime, :EndTime, :Progress, :RemainTime, :HistoryStatus, :StorageType
13396
+ # - `0`: 停止
13397
+ # - `1`: 运行中
13398
+ # - `2`: 异常
13399
+ # @type TaskStatus: Integer
13209
13400
 
13210
- 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)
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
13402
+
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)
13211
13404
  @ShipperId = shipperid
13212
13405
  @TopicId = topicid
13213
13406
  @Bucket = bucket
@@ -13228,6 +13421,9 @@ module TencentCloud
13228
13421
  @RemainTime = remaintime
13229
13422
  @HistoryStatus = historystatus
13230
13423
  @StorageType = storagetype
13424
+ @RoleArn = rolearn
13425
+ @ExternalId = externalid
13426
+ @TaskStatus = taskstatus
13231
13427
  end
13232
13428
 
13233
13429
  def deserialize(params)
@@ -13264,6 +13460,9 @@ module TencentCloud
13264
13460
  @RemainTime = params['RemainTime']
13265
13461
  @HistoryStatus = params['HistoryStatus']
13266
13462
  @StorageType = params['StorageType']
13463
+ @RoleArn = params['RoleArn']
13464
+ @ExternalId = params['ExternalId']
13465
+ @TaskStatus = params['TaskStatus']
13267
13466
  end
13268
13467
  end
13269
13468
 
@@ -13469,10 +13668,11 @@ module TencentCloud
13469
13668
  # @type PartitionCount: Integer
13470
13669
  # @param Index: 主题是否开启索引(主题类型需为日志主题)
13471
13670
  # @type Index: Boolean
13671
+ # @param AssumerUin: AssumerUin非空则表示创建该日志主题的服务方Uin
13672
+ # @type AssumerUin: Integer
13472
13673
  # @param AssumerName: 云产品标识,主题由其它云产品创建时,该字段会显示云产品名称,例如CDN、TKE
13473
13674
  # @type AssumerName: String
13474
- # @param CreateTime: 创建时间
13475
- # 时间格式:yyyy-MM-dd HH:mm:ss
13675
+ # @param CreateTime: 创建时间。格式:yyyy-MM-dd HH:mm:ss
13476
13676
  # @type CreateTime: String
13477
13677
  # @param Status: 主题是否开启采集,true:开启采集;false:关闭采集。
13478
13678
  # 创建日志主题时默认开启,可通过SDK调用ModifyTopic修改此字段。
@@ -13480,6 +13680,8 @@ module TencentCloud
13480
13680
  # @type Status: Boolean
13481
13681
  # @param Tags: 主题绑定的标签信息
13482
13682
  # @type Tags: Array
13683
+ # @param RoleName: RoleName非空则表示创建该日志主题的服务方使用的角色
13684
+ # @type RoleName: String
13483
13685
  # @param AutoSplit: 该主题是否开启自动分裂
13484
13686
  # @type AutoSplit: Boolean
13485
13687
  # @param MaxSplitPartitions: 若开启自动分裂的话,该主题能够允许的最大分区数
@@ -13519,19 +13721,23 @@ module TencentCloud
13519
13721
  # @param EffectiveDate: 异步迁移完成后,预计生效日期
13520
13722
  # 时间格式:yyyy-MM-dd HH:mm:ss
13521
13723
  # @type EffectiveDate: String
13724
+ # @param IsSourceFrom: IsSourceFrom 开启记录公网来源ip和服务端接收时间
13725
+ # @type IsSourceFrom: Boolean
13522
13726
 
13523
- 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
13524
13728
 
13525
- 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)
13526
13730
  @LogsetId = logsetid
13527
13731
  @TopicId = topicid
13528
13732
  @TopicName = topicname
13529
13733
  @PartitionCount = partitioncount
13530
13734
  @Index = index
13735
+ @AssumerUin = assumeruin
13531
13736
  @AssumerName = assumername
13532
13737
  @CreateTime = createtime
13533
13738
  @Status = status
13534
13739
  @Tags = tags
13740
+ @RoleName = rolename
13535
13741
  @AutoSplit = autosplit
13536
13742
  @MaxSplitPartitions = maxsplitpartitions
13537
13743
  @StorageType = storagetype
@@ -13545,6 +13751,7 @@ module TencentCloud
13545
13751
  @TopicAsyncTaskID = topicasynctaskid
13546
13752
  @MigrationStatus = migrationstatus
13547
13753
  @EffectiveDate = effectivedate
13754
+ @IsSourceFrom = issourcefrom
13548
13755
  end
13549
13756
 
13550
13757
  def deserialize(params)
@@ -13553,6 +13760,7 @@ module TencentCloud
13553
13760
  @TopicName = params['TopicName']
13554
13761
  @PartitionCount = params['PartitionCount']
13555
13762
  @Index = params['Index']
13763
+ @AssumerUin = params['AssumerUin']
13556
13764
  @AssumerName = params['AssumerName']
13557
13765
  @CreateTime = params['CreateTime']
13558
13766
  @Status = params['Status']
@@ -13564,6 +13772,7 @@ module TencentCloud
13564
13772
  @Tags << tag_tmp
13565
13773
  end
13566
13774
  end
13775
+ @RoleName = params['RoleName']
13567
13776
  @AutoSplit = params['AutoSplit']
13568
13777
  @MaxSplitPartitions = params['MaxSplitPartitions']
13569
13778
  @StorageType = params['StorageType']
@@ -13580,6 +13789,7 @@ module TencentCloud
13580
13789
  @TopicAsyncTaskID = params['TopicAsyncTaskID']
13581
13790
  @MigrationStatus = params['MigrationStatus']
13582
13791
  @EffectiveDate = params['EffectiveDate']
13792
+ @IsSourceFrom = params['IsSourceFrom']
13583
13793
  end
13584
13794
  end
13585
13795
 
@@ -13597,8 +13807,8 @@ module TencentCloud
13597
13807
 
13598
13808
  attr_accessor :TopicId, :HashKey, :CompressType
13599
13809
  extend Gem::Deprecate
13600
- deprecate :HashKey, :none, 2025, 11
13601
- deprecate :HashKey=, :none, 2025, 11
13810
+ deprecate :HashKey, :none, 2025, 12
13811
+ deprecate :HashKey=, :none, 2025, 12
13602
13812
 
13603
13813
  def initialize(topicid=nil, hashkey=nil, compresstype=nil)
13604
13814
  @TopicId = topicid
@@ -13733,10 +13943,10 @@ module TencentCloud
13733
13943
 
13734
13944
  attr_accessor :CallbackType, :Url, :WebCallbackId, :Method, :NoticeContentId, :RemindType, :Mobiles, :UserIds, :Headers, :Body, :Index
13735
13945
  extend Gem::Deprecate
13736
- deprecate :Headers, :none, 2025, 11
13737
- deprecate :Headers=, :none, 2025, 11
13738
- deprecate :Body, :none, 2025, 11
13739
- 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
13740
13950
 
13741
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)
13742
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.1174
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-28 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