tencentcloud-sdk-cls 3.0.851 → 3.0.852

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201016/models.rb +23 -7
  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: 852fef7236aeb497935f8ec2ba71dd32b749d5d4
4
+ data.tar.gz: 4d822242c888c320eb5db3842b48fdbf3142433e
5
5
  SHA512:
6
- metadata.gz: 480ea65bc3d642a90184b69d43b29a57aa03454946747919876bb54c655a8f43b256ca3c8fe64f63b19a5c0edb801a3b0ded640fa8b214a711e11bd8d7936326
7
- data.tar.gz: 38d763b419ccc04d8ded4bbec3b7819fe98caa3a491e99fe1bbde231b50d3f14f6650c3e2118ec1426f4e8935ead727fee5a859a8c77823b370e54ec91dbf13b
6
+ metadata.gz: 6f3311ac8d6cdd8e161a46b4efb305199c3a4ddd047aab5b09da89c477e4facd406e1d05c4da4d681358f9e104f17ac7c43f6527e6fae29719240eb7a31f3f7b
7
+ data.tar.gz: db900ab67f2a0c34946581c394b45e7d2032dc24af52f9cfb3b694664f116192ebe85505ac83b2baa6e58070f8a76affcde18d9d8d9d345ef3458bbcee727575
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.851
1
+ 3.0.852
@@ -1741,7 +1741,7 @@ module TencentCloud
1741
1741
  # @type AlarmTargets: Array
1742
1742
  # @param MonitorTime: 监控任务运行时间点。
1743
1743
  # @type MonitorTime: :class:`Tencentcloud::Cls.v20201016.models.MonitorTime`
1744
- # @param TriggerCount: 持续周期。持续满足触发条件TriggerCount个周期后,再进行告警;最小值为1,最大值为10
1744
+ # @param TriggerCount: 持续周期。持续满足触发条件TriggerCount个周期后,再进行告警;最小值为1,最大值为2000
1745
1745
  # @type TriggerCount: Integer
1746
1746
  # @param AlarmPeriod: 告警重复的周期,单位是分钟。取值范围是0~1440。
1747
1747
  # @type AlarmPeriod: Integer
@@ -7396,7 +7396,7 @@ module TencentCloud
7396
7396
  # 注意:
7397
7397
  # - Condition和AlarmLevel是一组配置,MultiConditions是另一组配置,2组配置互斥。
7398
7398
  # @type MultiConditions: Array
7399
- # @param TriggerCount: 持续周期。持续满足触发条件TriggerCount个周期后,再进行告警;最小值为1,最大值为10
7399
+ # @param TriggerCount: 持续周期。持续满足触发条件TriggerCount个周期后,再进行告警;最小值为1,最大值为2000
7400
7400
  # @type TriggerCount: Integer
7401
7401
  # @param AlarmPeriod: 告警重复的周期。单位是分钟。取值范围是0~1440。
7402
7402
  # @type AlarmPeriod: Integer
@@ -8565,12 +8565,14 @@ module TencentCloud
8565
8565
  # @param IsWebTracking: 免鉴权开关。 false:关闭; true:开启。
8566
8566
  # 开启后将支持指定操作匿名访问该日志主题。详情请参见[日志主题](https://cloud.tencent.com/document/product/614/41035)。
8567
8567
  # @type IsWebTracking: Boolean
8568
+ # @param Extends: 日志主题扩展信息
8569
+ # @type Extends: :class:`Tencentcloud::Cls.v20201016.models.TopicExtendInfo`
8568
8570
  # @param PartitionCount: 日志主题分区数量
8569
8571
  # @type PartitionCount: Integer
8570
8572
 
8571
- attr_accessor :TopicId, :TopicName, :Tags, :Status, :AutoSplit, :MaxSplitPartitions, :Period, :Describes, :HotPeriod, :IsWebTracking, :PartitionCount
8573
+ attr_accessor :TopicId, :TopicName, :Tags, :Status, :AutoSplit, :MaxSplitPartitions, :Period, :Describes, :HotPeriod, :IsWebTracking, :Extends, :PartitionCount
8572
8574
 
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)
8575
+ 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
8576
  @TopicId = topicid
8575
8577
  @TopicName = topicname
8576
8578
  @Tags = tags
@@ -8581,6 +8583,7 @@ module TencentCloud
8581
8583
  @Describes = describes
8582
8584
  @HotPeriod = hotperiod
8583
8585
  @IsWebTracking = iswebtracking
8586
+ @Extends = extends
8584
8587
  @PartitionCount = partitioncount
8585
8588
  end
8586
8589
 
@@ -8602,6 +8605,10 @@ module TencentCloud
8602
8605
  @Describes = params['Describes']
8603
8606
  @HotPeriod = params['HotPeriod']
8604
8607
  @IsWebTracking = params['IsWebTracking']
8608
+ unless params['Extends'].nil?
8609
+ @Extends = TopicExtendInfo.new
8610
+ @Extends.deserialize(params['Extends'])
8611
+ end
8605
8612
  @PartitionCount = params['PartitionCount']
8606
8613
  end
8607
8614
  end
@@ -8624,12 +8631,13 @@ module TencentCloud
8624
8631
 
8625
8632
  # 告警策略中监控任务的执行时间点
8626
8633
  class MonitorTime < TencentCloud::Common::AbstractModel
8627
- # @param Type: 执行周期, 可选值:PeriodFixed
8634
+ # @param Type: 执行周期, 可选值:`Period`、`Fixed`。
8628
8635
 
8629
8636
  # - Period:固定频率
8630
8637
  # - Fixed:固定时间
8631
8638
  # @type Type: String
8632
8639
  # @param Time: 执行的周期,或者定制执行的时间节点。单位为分钟,取值范围为1~1440。
8640
+ # 当type为`Period`,`Fixed`时,time字段生效。
8633
8641
  # @type Time: Integer
8634
8642
 
8635
8643
  attr_accessor :Type, :Time
@@ -10242,10 +10250,13 @@ module TencentCloud
10242
10250
  # 开启后将支持指定操作匿名访问该日志主题。详情请参见[日志主题](https://cloud.tencent.com/document/product/614/41035)。
10243
10251
  # 注意:此字段可能返回 null,表示取不到有效值。
10244
10252
  # @type IsWebTracking: Boolean
10253
+ # @param Extends: 日志主题扩展信息
10254
+ # 注意:此字段可能返回 null,表示取不到有效值。
10255
+ # @type Extends: :class:`Tencentcloud::Cls.v20201016.models.TopicExtendInfo`
10245
10256
 
10246
- attr_accessor :LogsetId, :TopicId, :TopicName, :PartitionCount, :Index, :AssumerName, :CreateTime, :Status, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :SubAssumerName, :Describes, :HotPeriod, :BizType, :IsWebTracking
10257
+ attr_accessor :LogsetId, :TopicId, :TopicName, :PartitionCount, :Index, :AssumerName, :CreateTime, :Status, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :SubAssumerName, :Describes, :HotPeriod, :BizType, :IsWebTracking, :Extends
10247
10258
 
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)
10259
+ 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
10260
  @LogsetId = logsetid
10250
10261
  @TopicId = topicid
10251
10262
  @TopicName = topicname
@@ -10264,6 +10275,7 @@ module TencentCloud
10264
10275
  @HotPeriod = hotperiod
10265
10276
  @BizType = biztype
10266
10277
  @IsWebTracking = iswebtracking
10278
+ @Extends = extends
10267
10279
  end
10268
10280
 
10269
10281
  def deserialize(params)
@@ -10292,6 +10304,10 @@ module TencentCloud
10292
10304
  @HotPeriod = params['HotPeriod']
10293
10305
  @BizType = params['BizType']
10294
10306
  @IsWebTracking = params['IsWebTracking']
10307
+ unless params['Extends'].nil?
10308
+ @Extends = TopicExtendInfo.new
10309
+ @Extends.deserialize(params['Extends'])
10310
+ end
10295
10311
  end
10296
10312
  end
10297
10313
 
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.852
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-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common