Class: Azure::DataFactory::Mgmt::V2018_06_01::Models::Transformation
- Inherits:
-
Object
- Object
- Azure::DataFactory::Mgmt::V2018_06_01::Models::Transformation
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01/generated/azure_mgmt_data_factory/models/transformation.rb
Overview
A data flow transformation.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#description ⇒ String
Transformation description.
-
#name ⇒ String
Transformation name.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for Transformation class as Ruby Hash.
Instance Attribute Details
#description ⇒ String
Returns Transformation description.
19 20 21 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/transformation.rb', line 19 def description @description end |
#name ⇒ String
Returns Transformation name.
16 17 18 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/transformation.rb', line 16 def name @name end |
Class Method Details
.mapper ⇒ Object
Mapper for Transformation class as Ruby Hash. This will be used for serialization/deserialization.
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/transformation.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Transformation', type: { name: 'Composite', class_name: 'Transformation', model_properties: { name: { client_side_validation: true, required: true, serialized_name: 'name', type: { name: 'String' } }, description: { client_side_validation: true, required: false, serialized_name: 'description', type: { name: 'String' } } } } } end |