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.
658 659 660 |
# File 'lib/v20190319/models.rb', line 658 def initialize(resourcefields=nil) @ResourceFields = resourcefields end |
Instance Attribute Details
#ResourceFields ⇒ Object
656 657 658 |
# File 'lib/v20190319/models.rb', line 656 def ResourceFields @ResourceFields end |
Instance Method Details
#deserialize(params) ⇒ Object
662 663 664 665 666 667 668 669 670 671 |
# File 'lib/v20190319/models.rb', line 662 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 |