Class: TencentCloud::Eb::V20210416::Transformation
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Eb::V20210416::Transformation
- Defined in:
- lib/v20210416/models.rb
Overview
一个转换器
Instance Attribute Summary collapse
-
#EtlFilter ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Extraction ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Transform ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(extraction = nil, etlfilter = nil, transform = nil) ⇒ Transformation
constructor
A new instance of Transformation.
Constructor Details
#initialize(extraction = nil, etlfilter = nil, transform = nil) ⇒ Transformation
Returns a new instance of Transformation.
2463 2464 2465 2466 2467 |
# File 'lib/v20210416/models.rb', line 2463 def initialize(extraction=nil, etlfilter=nil, transform=nil) @Extraction = extraction @EtlFilter = etlfilter @Transform = transform end |
Instance Attribute Details
#EtlFilter ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2461 2462 2463 |
# File 'lib/v20210416/models.rb', line 2461 def EtlFilter @EtlFilter end |
#Extraction ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2461 2462 2463 |
# File 'lib/v20210416/models.rb', line 2461 def Extraction @Extraction end |
#Transform ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2461 2462 2463 |
# File 'lib/v20210416/models.rb', line 2461 def Transform @Transform end |
Instance Method Details
#deserialize(params) ⇒ Object
2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 |
# File 'lib/v20210416/models.rb', line 2469 def deserialize(params) unless params['Extraction'].nil? @Extraction = Extraction.new @Extraction.deserialize(params['Extraction']) end unless params['EtlFilter'].nil? @EtlFilter = EtlFilter.new @EtlFilter.deserialize(params['EtlFilter']) end unless params['Transform'].nil? @Transform = Transform.new @Transform.deserialize(params['Transform']) end end |