Class: Azure::ARM::CustomerInsights::Models::ConnectorMappingProperties
- Inherits:
-
Object
- Object
- Azure::ARM::CustomerInsights::Models::ConnectorMappingProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_customer_insights/models/connector_mapping_properties.rb
Overview
The connector mapping properties.
Instance Attribute Summary collapse
-
#availability ⇒ ConnectorMappingAvailability
property.
-
#complete_operation ⇒ ConnectorMappingCompleteOperation
is done.
-
#error_management ⇒ ConnectorMappingErrorManagement
for the mapping.
-
#file_filter ⇒ String
The file filter for the mapping.
-
#folder_path ⇒ String
The folder path for the mapping.
-
#format ⇒ ConnectorMappingFormat
The format of mapping property.
-
#has_header ⇒ Boolean
If the file contains a header or not.
-
#structure ⇒ Array<ConnectorMappingStructure>
information at property level.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ConnectorMappingProperties class as Ruby Hash.
Instance Attribute Details
#availability ⇒ ConnectorMappingAvailability
property.
33 34 35 |
# File 'lib/generated/azure_mgmt_customer_insights/models/connector_mapping_properties.rb', line 33 def availability @availability end |
#complete_operation ⇒ ConnectorMappingCompleteOperation
is done.
41 42 43 |
# File 'lib/generated/azure_mgmt_customer_insights/models/connector_mapping_properties.rb', line 41 def complete_operation @complete_operation end |
#error_management ⇒ ConnectorMappingErrorManagement
for the mapping.
26 27 28 |
# File 'lib/generated/azure_mgmt_customer_insights/models/connector_mapping_properties.rb', line 26 def error_management @error_management end |
#file_filter ⇒ String
Returns The file filter for the mapping.
19 20 21 |
# File 'lib/generated/azure_mgmt_customer_insights/models/connector_mapping_properties.rb', line 19 def file_filter @file_filter end |
#folder_path ⇒ String
Returns The folder path for the mapping.
16 17 18 |
# File 'lib/generated/azure_mgmt_customer_insights/models/connector_mapping_properties.rb', line 16 def folder_path @folder_path end |
#format ⇒ ConnectorMappingFormat
Returns The format of mapping property.
29 30 31 |
# File 'lib/generated/azure_mgmt_customer_insights/models/connector_mapping_properties.rb', line 29 def format @format end |
#has_header ⇒ Boolean
Returns If the file contains a header or not.
22 23 24 |
# File 'lib/generated/azure_mgmt_customer_insights/models/connector_mapping_properties.rb', line 22 def has_header @has_header end |
#structure ⇒ Array<ConnectorMappingStructure>
information at property level.
37 38 39 |
# File 'lib/generated/azure_mgmt_customer_insights/models/connector_mapping_properties.rb', line 37 def structure @structure end |
Class Method Details
.mapper ⇒ Object
Mapper for ConnectorMappingProperties class as Ruby Hash. This will be used for serialization/deserialization.
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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
# File 'lib/generated/azure_mgmt_customer_insights/models/connector_mapping_properties.rb', line 48 def self.mapper() { required: false, serialized_name: 'ConnectorMappingProperties', type: { name: 'Composite', class_name: 'ConnectorMappingProperties', model_properties: { folder_path: { required: false, serialized_name: 'folderPath', type: { name: 'String' } }, file_filter: { required: false, serialized_name: 'fileFilter', type: { name: 'String' } }, has_header: { required: false, serialized_name: 'hasHeader', type: { name: 'Boolean' } }, error_management: { required: true, serialized_name: 'errorManagement', type: { name: 'Composite', class_name: 'ConnectorMappingErrorManagement' } }, format: { required: true, serialized_name: 'format', default_value: {}, type: { name: 'Composite', class_name: 'ConnectorMappingFormat' } }, availability: { required: true, serialized_name: 'availability', type: { name: 'Composite', class_name: 'ConnectorMappingAvailability' } }, structure: { required: true, serialized_name: 'structure', type: { name: 'Sequence', element: { required: false, serialized_name: 'ConnectorMappingStructureElementType', type: { name: 'Composite', class_name: 'ConnectorMappingStructure' } } } }, complete_operation: { required: true, serialized_name: 'completeOperation', type: { name: 'Composite', class_name: 'ConnectorMappingCompleteOperation' } } } } } end |