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
-
#ResourceFields ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
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.
665 666 667 |
# File 'lib/v20190319/models.rb', line 665 def initialize(resourcefields=nil) @ResourceFields = resourcefields end |
Instance Attribute Details
#ResourceFields ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
663 664 665 |
# File 'lib/v20190319/models.rb', line 663 def ResourceFields @ResourceFields end |
Instance Method Details
#deserialize(params) ⇒ Object
669 670 671 672 673 674 675 676 677 678 |
# File 'lib/v20190319/models.rb', line 669 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 |