Class: TencentCloud::Cloudaudit::V20190319::Filter
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cloudaudit::V20190319::Filter
- Defined in:
- lib/v20190319/models.rb
Overview
跟踪集数据投递筛选条件
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(resourcefields = nil) ⇒ Filter
constructor
A new instance of Filter.
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
#ResourceFields ⇒ Object
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 |