tencentcloud-sdk-cls 3.0.851 → 3.0.853

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 +38 -9
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6f9c196c9b876dca546c63a522dc06c581c27215
4
- data.tar.gz: 4d4488fa24b0d5892f4821a836d5aa410372ab17
3
+ metadata.gz: a893e3ee71e56af2114f4623172a13191e921c5a
4
+ data.tar.gz: 25b8ce260fa1ad1f7dca2202a50ff3c60bc01d74
5
5
  SHA512:
6
- metadata.gz: 480ea65bc3d642a90184b69d43b29a57aa03454946747919876bb54c655a8f43b256ca3c8fe64f63b19a5c0edb801a3b0ded640fa8b214a711e11bd8d7936326
7
- data.tar.gz: 38d763b419ccc04d8ded4bbec3b7819fe98caa3a491e99fe1bbde231b50d3f14f6650c3e2118ec1426f4e8935ead727fee5a859a8c77823b370e54ec91dbf13b
6
+ metadata.gz: 1df93fa89e08a8c24750752b0c9a3c11773c69afc69d1e62569b644dec9fa017ebf304f0117aee285941d9d8d5794145ddfc02a22b27580dae6a44bd125ffa64
7
+ data.tar.gz: 4795ee692f6225fb80088686e9672026f8ef1a921cb8ae13f3f460862a93dc03d1a75b22094f4d05da39d8dbfc409d90560c23cf81f4ecb79c0ac5cfbeeb7b3a
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.851
1
+ 3.0.853
@@ -440,10 +440,19 @@ module TencentCloud
440
440
  # @type StartTimeOffset: Integer
441
441
  # @param EndTimeOffset: 查询范围终止时间相对于告警执行时间的偏移,单位为分钟,取值为非正,须大于StartTimeOffset,最大值为0,最小值为-1440。
442
442
  # @type EndTimeOffset: Integer
443
+ # @param SyntaxRule: 检索语法规则,默认值为0。
444
+ # 0:Lucene语法,1:CQL语法。
445
+ # 详细说明参见<a href="https://cloud.tencent.com/document/product/614/47044#RetrievesConditionalRules" target="_blank">检索条件语法规则</a>
446
+ # 注意:此字段可能返回 null,表示取不到有效值。
447
+ # @type SyntaxRule: Integer
448
+ # @param BizType: 主题类型。
449
+ # 0: 日志主题,1: 指标主题
450
+ # 注意:此字段可能返回 null,表示取不到有效值。
451
+ # @type BizType: Integer
443
452
 
444
- attr_accessor :LogsetId, :LogsetName, :TopicId, :TopicName, :Query, :Number, :StartTimeOffset, :EndTimeOffset
453
+ attr_accessor :LogsetId, :LogsetName, :TopicId, :TopicName, :Query, :Number, :StartTimeOffset, :EndTimeOffset, :SyntaxRule, :BizType
445
454
 
446
- def initialize(logsetid=nil, logsetname=nil, topicid=nil, topicname=nil, query=nil, number=nil, starttimeoffset=nil, endtimeoffset=nil)
455
+ def initialize(logsetid=nil, logsetname=nil, topicid=nil, topicname=nil, query=nil, number=nil, starttimeoffset=nil, endtimeoffset=nil, syntaxrule=nil, biztype=nil)
447
456
  @LogsetId = logsetid
448
457
  @LogsetName = logsetname
449
458
  @TopicId = topicid
@@ -452,6 +461,8 @@ module TencentCloud
452
461
  @Number = number
453
462
  @StartTimeOffset = starttimeoffset
454
463
  @EndTimeOffset = endtimeoffset
464
+ @SyntaxRule = syntaxrule
465
+ @BizType = biztype
455
466
  end
456
467
 
457
468
  def deserialize(params)
@@ -463,6 +474,8 @@ module TencentCloud
463
474
  @Number = params['Number']
464
475
  @StartTimeOffset = params['StartTimeOffset']
465
476
  @EndTimeOffset = params['EndTimeOffset']
477
+ @SyntaxRule = params['SyntaxRule']
478
+ @BizType = params['BizType']
466
479
  end
467
480
  end
468
481
 
@@ -1741,7 +1754,7 @@ module TencentCloud
1741
1754
  # @type AlarmTargets: Array
1742
1755
  # @param MonitorTime: 监控任务运行时间点。
1743
1756
  # @type MonitorTime: :class:`Tencentcloud::Cls.v20201016.models.MonitorTime`
1744
- # @param TriggerCount: 持续周期。持续满足触发条件TriggerCount个周期后,再进行告警;最小值为1,最大值为10
1757
+ # @param TriggerCount: 持续周期。持续满足触发条件TriggerCount个周期后,再进行告警;最小值为1,最大值为2000
1745
1758
  # @type TriggerCount: Integer
1746
1759
  # @param AlarmPeriod: 告警重复的周期,单位是分钟。取值范围是0~1440。
1747
1760
  # @type AlarmPeriod: Integer
@@ -7396,7 +7409,7 @@ module TencentCloud
7396
7409
  # 注意:
7397
7410
  # - Condition和AlarmLevel是一组配置,MultiConditions是另一组配置,2组配置互斥。
7398
7411
  # @type MultiConditions: Array
7399
- # @param TriggerCount: 持续周期。持续满足触发条件TriggerCount个周期后,再进行告警;最小值为1,最大值为10
7412
+ # @param TriggerCount: 持续周期。持续满足触发条件TriggerCount个周期后,再进行告警;最小值为1,最大值为2000
7400
7413
  # @type TriggerCount: Integer
7401
7414
  # @param AlarmPeriod: 告警重复的周期。单位是分钟。取值范围是0~1440。
7402
7415
  # @type AlarmPeriod: Integer
@@ -8565,12 +8578,14 @@ module TencentCloud
8565
8578
  # @param IsWebTracking: 免鉴权开关。 false:关闭; true:开启。
8566
8579
  # 开启后将支持指定操作匿名访问该日志主题。详情请参见[日志主题](https://cloud.tencent.com/document/product/614/41035)。
8567
8580
  # @type IsWebTracking: Boolean
8581
+ # @param Extends: 日志主题扩展信息
8582
+ # @type Extends: :class:`Tencentcloud::Cls.v20201016.models.TopicExtendInfo`
8568
8583
  # @param PartitionCount: 日志主题分区数量
8569
8584
  # @type PartitionCount: Integer
8570
8585
 
8571
- attr_accessor :TopicId, :TopicName, :Tags, :Status, :AutoSplit, :MaxSplitPartitions, :Period, :Describes, :HotPeriod, :IsWebTracking, :PartitionCount
8586
+ attr_accessor :TopicId, :TopicName, :Tags, :Status, :AutoSplit, :MaxSplitPartitions, :Period, :Describes, :HotPeriod, :IsWebTracking, :Extends, :PartitionCount
8572
8587
 
8573
- def initialize(topicid=nil, topicname=nil, tags=nil, status=nil, autosplit=nil, maxsplitpartitions=nil, period=nil, describes=nil, hotperiod=nil, iswebtracking=nil, partitioncount=nil)
8588
+ 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)
8574
8589
  @TopicId = topicid
8575
8590
  @TopicName = topicname
8576
8591
  @Tags = tags
@@ -8581,6 +8596,7 @@ module TencentCloud
8581
8596
  @Describes = describes
8582
8597
  @HotPeriod = hotperiod
8583
8598
  @IsWebTracking = iswebtracking
8599
+ @Extends = extends
8584
8600
  @PartitionCount = partitioncount
8585
8601
  end
8586
8602
 
@@ -8602,6 +8618,10 @@ module TencentCloud
8602
8618
  @Describes = params['Describes']
8603
8619
  @HotPeriod = params['HotPeriod']
8604
8620
  @IsWebTracking = params['IsWebTracking']
8621
+ unless params['Extends'].nil?
8622
+ @Extends = TopicExtendInfo.new
8623
+ @Extends.deserialize(params['Extends'])
8624
+ end
8605
8625
  @PartitionCount = params['PartitionCount']
8606
8626
  end
8607
8627
  end
@@ -8624,12 +8644,13 @@ module TencentCloud
8624
8644
 
8625
8645
  # 告警策略中监控任务的执行时间点
8626
8646
  class MonitorTime < TencentCloud::Common::AbstractModel
8627
- # @param Type: 执行周期, 可选值:PeriodFixed
8647
+ # @param Type: 执行周期, 可选值:`Period`、`Fixed`。
8628
8648
 
8629
8649
  # - Period:固定频率
8630
8650
  # - Fixed:固定时间
8631
8651
  # @type Type: String
8632
8652
  # @param Time: 执行的周期,或者定制执行的时间节点。单位为分钟,取值范围为1~1440。
8653
+ # 当type为`Period`,`Fixed`时,time字段生效。
8633
8654
  # @type Time: Integer
8634
8655
 
8635
8656
  attr_accessor :Type, :Time
@@ -10242,10 +10263,13 @@ module TencentCloud
10242
10263
  # 开启后将支持指定操作匿名访问该日志主题。详情请参见[日志主题](https://cloud.tencent.com/document/product/614/41035)。
10243
10264
  # 注意:此字段可能返回 null,表示取不到有效值。
10244
10265
  # @type IsWebTracking: Boolean
10266
+ # @param Extends: 日志主题扩展信息
10267
+ # 注意:此字段可能返回 null,表示取不到有效值。
10268
+ # @type Extends: :class:`Tencentcloud::Cls.v20201016.models.TopicExtendInfo`
10245
10269
 
10246
- attr_accessor :LogsetId, :TopicId, :TopicName, :PartitionCount, :Index, :AssumerName, :CreateTime, :Status, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :SubAssumerName, :Describes, :HotPeriod, :BizType, :IsWebTracking
10270
+ attr_accessor :LogsetId, :TopicId, :TopicName, :PartitionCount, :Index, :AssumerName, :CreateTime, :Status, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :SubAssumerName, :Describes, :HotPeriod, :BizType, :IsWebTracking, :Extends
10247
10271
 
10248
- 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)
10272
+ 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)
10249
10273
  @LogsetId = logsetid
10250
10274
  @TopicId = topicid
10251
10275
  @TopicName = topicname
@@ -10264,6 +10288,7 @@ module TencentCloud
10264
10288
  @HotPeriod = hotperiod
10265
10289
  @BizType = biztype
10266
10290
  @IsWebTracking = iswebtracking
10291
+ @Extends = extends
10267
10292
  end
10268
10293
 
10269
10294
  def deserialize(params)
@@ -10292,6 +10317,10 @@ module TencentCloud
10292
10317
  @HotPeriod = params['HotPeriod']
10293
10318
  @BizType = params['BizType']
10294
10319
  @IsWebTracking = params['IsWebTracking']
10320
+ unless params['Extends'].nil?
10321
+ @Extends = TopicExtendInfo.new
10322
+ @Extends.deserialize(params['Extends'])
10323
+ end
10295
10324
  end
10296
10325
  end
10297
10326
 
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.851
4
+ version: 3.0.853
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-25 00:00:00.000000000 Z
11
+ date: 2024-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common