Class: Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::AttributeMppingSource
- Inherits:
-
Object
- Object
- Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::AttributeMppingSource
- Includes:
- MsRestAzure
- Defined in:
- lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/attribute_mpping_source.rb
Overview
The attribute mapping source.
Instance Attribute Summary collapse
-
#constant_value ⇒ String
The constant value.
-
#dn_part ⇒ Integer
The value for dn part.
-
#script_context ⇒ String
The script context.
-
#source_attribute ⇒ Array<String>
The source attribute.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AttributeMppingSource class as Ruby Hash.
Instance Attribute Details
#constant_value ⇒ String
25 26 27 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/attribute_mpping_source.rb', line 25 def constant_value @constant_value end |
#dn_part ⇒ Integer
19 20 21 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/attribute_mpping_source.rb', line 19 def dn_part @dn_part end |
#script_context ⇒ String
22 23 24 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/attribute_mpping_source.rb', line 22 def script_context @script_context end |
#source_attribute ⇒ Array<String>
16 17 18 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/attribute_mpping_source.rb', line 16 def source_attribute @source_attribute end |
Class Method Details
.mapper ⇒ Object
Mapper for AttributeMppingSource class as Ruby Hash. This will be used for serialization/deserialization.
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/attribute_mpping_source.rb', line 32 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AttributeMppingSource', type: { name: 'Composite', class_name: 'AttributeMppingSource', model_properties: { source_attribute: { client_side_validation: true, required: false, serialized_name: 'sourceAttribute', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, dn_part: { client_side_validation: true, required: false, serialized_name: 'dnPart', type: { name: 'Number' } }, script_context: { client_side_validation: true, required: false, serialized_name: 'scriptContext', type: { name: 'String' } }, constant_value: { client_side_validation: true, required: false, serialized_name: 'constantValue', type: { name: 'String' } } } } } end |