tencentcloud-sdk-cls 3.0.850 → 3.0.852

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 +103 -9
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 31c59ee93907a4ee6515f02b388dd2dd28add32d
4
- data.tar.gz: 16b7077e0af707416014ec5a22f439a7783ae37c
3
+ metadata.gz: 852fef7236aeb497935f8ec2ba71dd32b749d5d4
4
+ data.tar.gz: 4d822242c888c320eb5db3842b48fdbf3142433e
5
5
  SHA512:
6
- metadata.gz: d4141fea685d5674da51252d71b2bdc542b1d47156efd91166ddff94e2e5d28680101b3eccdcc1ef2262459031a207ffbec3dda088a335df0526b2c32f90aaff
7
- data.tar.gz: 1e84dc20d60f96f3d1289a86e8a7f816a0977d0837a530e6f0dabe7e002d3135d750340084b00aa3c9e5664eaa824b3f884015cbff73f14aca7073a6abc71972
6
+ metadata.gz: 6f3311ac8d6cdd8e161a46b4efb305199c3a4ddd047aab5b09da89c477e4facd406e1d05c4da4d681358f9e104f17ac7c43f6527e6fae29719240eb7a31f3f7b
7
+ data.tar.gz: db900ab67f2a0c34946581c394b45e7d2032dc24af52f9cfb3b694664f116192ebe85505ac83b2baa6e58070f8a76affcde18d9d8d9d345ef3458bbcee727575
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.850
1
+ 3.0.852
@@ -659,6 +659,33 @@ module TencentCloud
659
659
  end
660
660
  end
661
661
 
662
+ # 免鉴权信息
663
+ class AnonymousInfo < TencentCloud::Common::AbstractModel
664
+ # @param Operations: 操作列表,支持trackLog(JS/HTTP上传日志 )和realtimeProducer(kafka协议上传日志)
665
+ # @type Operations: Array
666
+ # @param Conditions: 条件列表
667
+ # @type Conditions: Array
668
+
669
+ attr_accessor :Operations, :Conditions
670
+
671
+ def initialize(operations=nil, conditions=nil)
672
+ @Operations = operations
673
+ @Conditions = conditions
674
+ end
675
+
676
+ def deserialize(params)
677
+ @Operations = params['Operations']
678
+ unless params['Conditions'].nil?
679
+ @Conditions = []
680
+ params['Conditions'].each do |i|
681
+ conditioninfo_tmp = ConditionInfo.new
682
+ conditioninfo_tmp.deserialize(i)
683
+ @Conditions << conditioninfo_tmp
684
+ end
685
+ end
686
+ end
687
+ end
688
+
662
689
  # ApplyConfigToMachineGroup请求参数结构体
663
690
  class ApplyConfigToMachineGroupRequest < TencentCloud::Common::AbstractModel
664
691
  # @param ConfigId: 采集配置ID
@@ -1002,6 +1029,30 @@ module TencentCloud
1002
1029
  end
1003
1030
  end
1004
1031
 
1032
+ # 免鉴权条件信息
1033
+ class ConditionInfo < TencentCloud::Common::AbstractModel
1034
+ # @param Attributes: 条件属性,目前只支持VpcID
1035
+ # @type Attributes: String
1036
+ # @param Rule: 条件规则,1:等于,2:不等于
1037
+ # @type Rule: Integer
1038
+ # @param ConditionValue: 对应条件属性的值
1039
+ # @type ConditionValue: String
1040
+
1041
+ attr_accessor :Attributes, :Rule, :ConditionValue
1042
+
1043
+ def initialize(attributes=nil, rule=nil, conditionvalue=nil)
1044
+ @Attributes = attributes
1045
+ @Rule = rule
1046
+ @ConditionValue = conditionvalue
1047
+ end
1048
+
1049
+ def deserialize(params)
1050
+ @Attributes = params['Attributes']
1051
+ @Rule = params['Rule']
1052
+ @ConditionValue = params['ConditionValue']
1053
+ end
1054
+ end
1055
+
1005
1056
  # 特殊采集规则配置信息
1006
1057
  class ConfigExtraInfo < TencentCloud::Common::AbstractModel
1007
1058
  # @param ConfigExtraId: 采集规则扩展配置ID
@@ -1690,7 +1741,7 @@ module TencentCloud
1690
1741
  # @type AlarmTargets: Array
1691
1742
  # @param MonitorTime: 监控任务运行时间点。
1692
1743
  # @type MonitorTime: :class:`Tencentcloud::Cls.v20201016.models.MonitorTime`
1693
- # @param TriggerCount: 持续周期。持续满足触发条件TriggerCount个周期后,再进行告警;最小值为1,最大值为10
1744
+ # @param TriggerCount: 持续周期。持续满足触发条件TriggerCount个周期后,再进行告警;最小值为1,最大值为2000
1694
1745
  # @type TriggerCount: Integer
1695
1746
  # @param AlarmPeriod: 告警重复的周期,单位是分钟。取值范围是0~1440。
1696
1747
  # @type AlarmPeriod: Integer
@@ -3022,10 +3073,12 @@ module TencentCloud
3022
3073
  # @param IsWebTracking: 免鉴权开关。 false:关闭; true:开启。默认为false。
3023
3074
  # 开启后将支持指定操作匿名访问该日志主题。详情请参见[日志主题](https://cloud.tencent.com/document/product/614/41035)。
3024
3075
  # @type IsWebTracking: Boolean
3076
+ # @param Extends: 日志主题扩展信息
3077
+ # @type Extends: :class:`Tencentcloud::Cls.v20201016.models.TopicExtendInfo`
3025
3078
 
3026
- attr_accessor :LogsetId, :TopicName, :PartitionCount, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :Describes, :HotPeriod, :IsWebTracking
3079
+ attr_accessor :LogsetId, :TopicName, :PartitionCount, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :Describes, :HotPeriod, :IsWebTracking, :Extends
3027
3080
 
3028
- def initialize(logsetid=nil, topicname=nil, partitioncount=nil, tags=nil, autosplit=nil, maxsplitpartitions=nil, storagetype=nil, period=nil, describes=nil, hotperiod=nil, iswebtracking=nil)
3081
+ def initialize(logsetid=nil, topicname=nil, partitioncount=nil, tags=nil, autosplit=nil, maxsplitpartitions=nil, storagetype=nil, period=nil, describes=nil, hotperiod=nil, iswebtracking=nil, extends=nil)
3029
3082
  @LogsetId = logsetid
3030
3083
  @TopicName = topicname
3031
3084
  @PartitionCount = partitioncount
@@ -3037,6 +3090,7 @@ module TencentCloud
3037
3090
  @Describes = describes
3038
3091
  @HotPeriod = hotperiod
3039
3092
  @IsWebTracking = iswebtracking
3093
+ @Extends = extends
3040
3094
  end
3041
3095
 
3042
3096
  def deserialize(params)
@@ -3058,6 +3112,10 @@ module TencentCloud
3058
3112
  @Describes = params['Describes']
3059
3113
  @HotPeriod = params['HotPeriod']
3060
3114
  @IsWebTracking = params['IsWebTracking']
3115
+ unless params['Extends'].nil?
3116
+ @Extends = TopicExtendInfo.new
3117
+ @Extends.deserialize(params['Extends'])
3118
+ end
3061
3119
  end
3062
3120
  end
3063
3121
 
@@ -7338,7 +7396,7 @@ module TencentCloud
7338
7396
  # 注意:
7339
7397
  # - Condition和AlarmLevel是一组配置,MultiConditions是另一组配置,2组配置互斥。
7340
7398
  # @type MultiConditions: Array
7341
- # @param TriggerCount: 持续周期。持续满足触发条件TriggerCount个周期后,再进行告警;最小值为1,最大值为10
7399
+ # @param TriggerCount: 持续周期。持续满足触发条件TriggerCount个周期后,再进行告警;最小值为1,最大值为2000
7342
7400
  # @type TriggerCount: Integer
7343
7401
  # @param AlarmPeriod: 告警重复的周期。单位是分钟。取值范围是0~1440。
7344
7402
  # @type AlarmPeriod: Integer
@@ -8507,12 +8565,14 @@ module TencentCloud
8507
8565
  # @param IsWebTracking: 免鉴权开关。 false:关闭; true:开启。
8508
8566
  # 开启后将支持指定操作匿名访问该日志主题。详情请参见[日志主题](https://cloud.tencent.com/document/product/614/41035)。
8509
8567
  # @type IsWebTracking: Boolean
8568
+ # @param Extends: 日志主题扩展信息
8569
+ # @type Extends: :class:`Tencentcloud::Cls.v20201016.models.TopicExtendInfo`
8510
8570
  # @param PartitionCount: 日志主题分区数量
8511
8571
  # @type PartitionCount: Integer
8512
8572
 
8513
- 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
8514
8574
 
8515
- 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)
8516
8576
  @TopicId = topicid
8517
8577
  @TopicName = topicname
8518
8578
  @Tags = tags
@@ -8523,6 +8583,7 @@ module TencentCloud
8523
8583
  @Describes = describes
8524
8584
  @HotPeriod = hotperiod
8525
8585
  @IsWebTracking = iswebtracking
8586
+ @Extends = extends
8526
8587
  @PartitionCount = partitioncount
8527
8588
  end
8528
8589
 
@@ -8544,6 +8605,10 @@ module TencentCloud
8544
8605
  @Describes = params['Describes']
8545
8606
  @HotPeriod = params['HotPeriod']
8546
8607
  @IsWebTracking = params['IsWebTracking']
8608
+ unless params['Extends'].nil?
8609
+ @Extends = TopicExtendInfo.new
8610
+ @Extends.deserialize(params['Extends'])
8611
+ end
8547
8612
  @PartitionCount = params['PartitionCount']
8548
8613
  end
8549
8614
  end
@@ -8566,12 +8631,13 @@ module TencentCloud
8566
8631
 
8567
8632
  # 告警策略中监控任务的执行时间点
8568
8633
  class MonitorTime < TencentCloud::Common::AbstractModel
8569
- # @param Type: 执行周期, 可选值:PeriodFixed
8634
+ # @param Type: 执行周期, 可选值:`Period`、`Fixed`。
8570
8635
 
8571
8636
  # - Period:固定频率
8572
8637
  # - Fixed:固定时间
8573
8638
  # @type Type: String
8574
8639
  # @param Time: 执行的周期,或者定制执行的时间节点。单位为分钟,取值范围为1~1440。
8640
+ # 当type为`Period`,`Fixed`时,time字段生效。
8575
8641
  # @type Time: Integer
8576
8642
 
8577
8643
  attr_accessor :Type, :Time
@@ -10065,6 +10131,26 @@ module TencentCloud
10065
10131
  end
10066
10132
  end
10067
10133
 
10134
+ # 日志主题扩展信息
10135
+ class TopicExtendInfo < TencentCloud::Common::AbstractModel
10136
+ # @param AnonymousAccess: 日志主题免鉴权配置信息
10137
+ # 注意:此字段可能返回 null,表示取不到有效值。
10138
+ # @type AnonymousAccess: :class:`Tencentcloud::Cls.v20201016.models.AnonymousInfo`
10139
+
10140
+ attr_accessor :AnonymousAccess
10141
+
10142
+ def initialize(anonymousaccess=nil)
10143
+ @AnonymousAccess = anonymousaccess
10144
+ end
10145
+
10146
+ def deserialize(params)
10147
+ unless params['AnonymousAccess'].nil?
10148
+ @AnonymousAccess = AnonymousInfo.new
10149
+ @AnonymousAccess.deserialize(params['AnonymousAccess'])
10150
+ end
10151
+ end
10152
+ end
10153
+
10068
10154
  # 仪表盘 topic与地域信息
10069
10155
  class TopicIdAndRegion < TencentCloud::Common::AbstractModel
10070
10156
  # @param TopicId: 日志主题id
@@ -10164,10 +10250,13 @@ module TencentCloud
10164
10250
  # 开启后将支持指定操作匿名访问该日志主题。详情请参见[日志主题](https://cloud.tencent.com/document/product/614/41035)。
10165
10251
  # 注意:此字段可能返回 null,表示取不到有效值。
10166
10252
  # @type IsWebTracking: Boolean
10253
+ # @param Extends: 日志主题扩展信息
10254
+ # 注意:此字段可能返回 null,表示取不到有效值。
10255
+ # @type Extends: :class:`Tencentcloud::Cls.v20201016.models.TopicExtendInfo`
10167
10256
 
10168
- 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
10169
10258
 
10170
- 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)
10171
10260
  @LogsetId = logsetid
10172
10261
  @TopicId = topicid
10173
10262
  @TopicName = topicname
@@ -10186,6 +10275,7 @@ module TencentCloud
10186
10275
  @HotPeriod = hotperiod
10187
10276
  @BizType = biztype
10188
10277
  @IsWebTracking = iswebtracking
10278
+ @Extends = extends
10189
10279
  end
10190
10280
 
10191
10281
  def deserialize(params)
@@ -10214,6 +10304,10 @@ module TencentCloud
10214
10304
  @HotPeriod = params['HotPeriod']
10215
10305
  @BizType = params['BizType']
10216
10306
  @IsWebTracking = params['IsWebTracking']
10307
+ unless params['Extends'].nil?
10308
+ @Extends = TopicExtendInfo.new
10309
+ @Extends.deserialize(params['Extends'])
10310
+ end
10217
10311
  end
10218
10312
  end
10219
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.850
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-24 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