Class: TencentCloud::Cloudaudit::V20190319::Filter

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

Overview

跟踪集数据投递筛选条件

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(resourcefields = nil) ⇒ Filter

Returns a new instance of Filter.



672
673
674
# File 'lib/v20190319/models.rb', line 672

def initialize(resourcefields=nil)
  @ResourceFields = resourcefields
end

Instance Attribute Details

#ResourceFieldsObject

Parameters:

  • ResourceFields:

    资源筛选条件



670
671
672
# File 'lib/v20190319/models.rb', line 670

def ResourceFields
  @ResourceFields
end

Instance Method Details

#deserialize(params) ⇒ Object



676
677
678
679
680
681
682
683
684
685
# File 'lib/v20190319/models.rb', line 676

def deserialize(params)
  unless params['ResourceFields'].nil?
    @ResourceFields = []
    params['ResourceFields'].each do |i|
      resourcefield_tmp = ResourceField.new
      resourcefield_tmp.deserialize(i)
      @ResourceFields << resourcefield_tmp
    end
  end
end