tencentcloud-sdk-cls 3.0.850 → 3.0.851

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 +80 -2
  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: 6f9c196c9b876dca546c63a522dc06c581c27215
4
+ data.tar.gz: 4d4488fa24b0d5892f4821a836d5aa410372ab17
5
5
  SHA512:
6
- metadata.gz: d4141fea685d5674da51252d71b2bdc542b1d47156efd91166ddff94e2e5d28680101b3eccdcc1ef2262459031a207ffbec3dda088a335df0526b2c32f90aaff
7
- data.tar.gz: 1e84dc20d60f96f3d1289a86e8a7f816a0977d0837a530e6f0dabe7e002d3135d750340084b00aa3c9e5664eaa824b3f884015cbff73f14aca7073a6abc71972
6
+ metadata.gz: 480ea65bc3d642a90184b69d43b29a57aa03454946747919876bb54c655a8f43b256ca3c8fe64f63b19a5c0edb801a3b0ded640fa8b214a711e11bd8d7936326
7
+ data.tar.gz: 38d763b419ccc04d8ded4bbec3b7819fe98caa3a491e99fe1bbde231b50d3f14f6650c3e2118ec1426f4e8935ead727fee5a859a8c77823b370e54ec91dbf13b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.850
1
+ 3.0.851
@@ -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
@@ -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
 
@@ -10065,6 +10123,26 @@ module TencentCloud
10065
10123
  end
10066
10124
  end
10067
10125
 
10126
+ # 日志主题扩展信息
10127
+ class TopicExtendInfo < TencentCloud::Common::AbstractModel
10128
+ # @param AnonymousAccess: 日志主题免鉴权配置信息
10129
+ # 注意:此字段可能返回 null,表示取不到有效值。
10130
+ # @type AnonymousAccess: :class:`Tencentcloud::Cls.v20201016.models.AnonymousInfo`
10131
+
10132
+ attr_accessor :AnonymousAccess
10133
+
10134
+ def initialize(anonymousaccess=nil)
10135
+ @AnonymousAccess = anonymousaccess
10136
+ end
10137
+
10138
+ def deserialize(params)
10139
+ unless params['AnonymousAccess'].nil?
10140
+ @AnonymousAccess = AnonymousInfo.new
10141
+ @AnonymousAccess.deserialize(params['AnonymousAccess'])
10142
+ end
10143
+ end
10144
+ end
10145
+
10068
10146
  # 仪表盘 topic与地域信息
10069
10147
  class TopicIdAndRegion < TencentCloud::Common::AbstractModel
10070
10148
  # @param TopicId: 日志主题id
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.851
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-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common