Class: TencentCloud::Csip::V20221121::UebaEventContent
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Csip::V20221121::UebaEventContent
- Defined in:
- lib/v20221121/models.rb
Overview
用户行为分析 发生事件结构体
Instance Attribute Summary collapse
-
#Content ⇒ Object
1:语句检索 2:过滤检索.
-
#EventType ⇒ Object
1:语句检索 2:过滤检索.
-
#Filters ⇒ Object
1:语句检索 2:过滤检索.
-
#StatisticalFilter ⇒ Object
1:语句检索 2:过滤检索.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(eventtype = nil, content = nil, filters = nil, statisticalfilter = nil) ⇒ UebaEventContent
constructor
A new instance of UebaEventContent.
Constructor Details
#initialize(eventtype = nil, content = nil, filters = nil, statisticalfilter = nil) ⇒ UebaEventContent
Returns a new instance of UebaEventContent.
8688 8689 8690 8691 8692 8693 |
# File 'lib/v20221121/models.rb', line 8688 def initialize(eventtype=nil, content=nil, filters=nil, statisticalfilter=nil) @EventType = eventtype @Content = content @Filters = filters @StatisticalFilter = statisticalfilter end |
Instance Attribute Details
#Content ⇒ Object
1:语句检索2:过滤检索
8686 8687 8688 |
# File 'lib/v20221121/models.rb', line 8686 def Content @Content end |
#EventType ⇒ Object
1:语句检索2:过滤检索
8686 8687 8688 |
# File 'lib/v20221121/models.rb', line 8686 def EventType @EventType end |
#Filters ⇒ Object
1:语句检索2:过滤检索
8686 8687 8688 |
# File 'lib/v20221121/models.rb', line 8686 def Filters @Filters end |
#StatisticalFilter ⇒ Object
1:语句检索2:过滤检索
8686 8687 8688 |
# File 'lib/v20221121/models.rb', line 8686 def StatisticalFilter @StatisticalFilter end |
Instance Method Details
#deserialize(params) ⇒ Object
8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 |
# File 'lib/v20221121/models.rb', line 8695 def deserialize(params) @EventType = params['EventType'] @Content = params['Content'] unless params['Filters'].nil? @Filters = [] params['Filters'].each do |i| wherefilter_tmp = WhereFilter.new wherefilter_tmp.deserialize(i) @Filters << wherefilter_tmp end end unless params['StatisticalFilter'].nil? @StatisticalFilter = StatisticalFilter.new @StatisticalFilter.deserialize(params['StatisticalFilter']) end end |