Class: TencentCloud::Cls::V20201016::RuleInfo
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cls::V20201016::RuleInfo
- Defined in:
- lib/v20201016/models.rb
Overview
索引规则,FullText、KeyValue、Tag参数必须输入一个有效参数
Instance Attribute Summary collapse
-
#DynamicIndex ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 启用后自动将日志内的字段添加到键值索引中,包括日志中后续新增的字段。 注意:此字段可能返回 null,表示取不到有效值。.
-
#FullText ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 启用后自动将日志内的字段添加到键值索引中,包括日志中后续新增的字段。 注意:此字段可能返回 null,表示取不到有效值。.
-
#KeyValue ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 启用后自动将日志内的字段添加到键值索引中,包括日志中后续新增的字段。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Tag ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 启用后自动将日志内的字段添加到键值索引中,包括日志中后续新增的字段。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(fulltext = nil, keyvalue = nil, tag = nil, dynamicindex = nil) ⇒ RuleInfo
constructor
A new instance of RuleInfo.
Constructor Details
#initialize(fulltext = nil, keyvalue = nil, tag = nil, dynamicindex = nil) ⇒ RuleInfo
Returns a new instance of RuleInfo.
16517 16518 16519 16520 16521 16522 |
# File 'lib/v20201016/models.rb', line 16517 def initialize(fulltext=nil, keyvalue=nil, tag=nil, dynamicindex=nil) @FullText = fulltext @KeyValue = keyvalue @Tag = tag @DynamicIndex = dynamicindex end |
Instance Attribute Details
#DynamicIndex ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 启用后自动将日志内的字段添加到键值索引中,包括日志中后续新增的字段。 注意:此字段可能返回 null,表示取不到有效值。
16515 16516 16517 |
# File 'lib/v20201016/models.rb', line 16515 def DynamicIndex @DynamicIndex end |
#FullText ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 启用后自动将日志内的字段添加到键值索引中,包括日志中后续新增的字段。 注意:此字段可能返回 null,表示取不到有效值。
16515 16516 16517 |
# File 'lib/v20201016/models.rb', line 16515 def FullText @FullText end |
#KeyValue ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 启用后自动将日志内的字段添加到键值索引中,包括日志中后续新增的字段。 注意:此字段可能返回 null,表示取不到有效值。
16515 16516 16517 |
# File 'lib/v20201016/models.rb', line 16515 def KeyValue @KeyValue end |
#Tag ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 启用后自动将日志内的字段添加到键值索引中,包括日志中后续新增的字段。 注意:此字段可能返回 null,表示取不到有效值。
16515 16516 16517 |
# File 'lib/v20201016/models.rb', line 16515 def Tag @Tag end |
Instance Method Details
#deserialize(params) ⇒ Object
16524 16525 16526 16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 |
# File 'lib/v20201016/models.rb', line 16524 def deserialize(params) unless params['FullText'].nil? @FullText = FullTextInfo.new @FullText.deserialize(params['FullText']) end unless params['KeyValue'].nil? @KeyValue = RuleKeyValueInfo.new @KeyValue.deserialize(params['KeyValue']) end unless params['Tag'].nil? @Tag = RuleTagInfo.new @Tag.deserialize(params['Tag']) end unless params['DynamicIndex'].nil? @DynamicIndex = DynamicIndex.new @DynamicIndex.deserialize(params['DynamicIndex']) end end |