Class: TencentCloud::Csip::V20221121::UebaEventContent

Inherits:
TencentCloud::Common::AbstractModel
  • Object
show all
Defined in:
lib/v20221121/models.rb

Overview

用户行为分析 发生事件结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#ContentObject

1:语句检索2:过滤检索

Parameters:

  • EventType:

    发生事件类型

  • Content:

    语句检索内容

  • Filters:

    检索条件

  • StatisticalFilter:

    统计条件



8686
8687
8688
# File 'lib/v20221121/models.rb', line 8686

def Content
  @Content
end

#EventTypeObject

1:语句检索2:过滤检索

Parameters:

  • EventType:

    发生事件类型

  • Content:

    语句检索内容

  • Filters:

    检索条件

  • StatisticalFilter:

    统计条件



8686
8687
8688
# File 'lib/v20221121/models.rb', line 8686

def EventType
  @EventType
end

#FiltersObject

1:语句检索2:过滤检索

Parameters:

  • EventType:

    发生事件类型

  • Content:

    语句检索内容

  • Filters:

    检索条件

  • StatisticalFilter:

    统计条件



8686
8687
8688
# File 'lib/v20221121/models.rb', line 8686

def Filters
  @Filters
end

#StatisticalFilterObject

1:语句检索2:过滤检索

Parameters:

  • EventType:

    发生事件类型

  • Content:

    语句检索内容

  • Filters:

    检索条件

  • StatisticalFilter:

    统计条件



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