class Azure::CustomerInsights::Mgmt::V2017_01_01::Models::ConnectorMappingProperties
The connector mapping properties.
Attributes
availability[RW]
@return [ConnectorMappingAvailability] The availability of mapping property.
complete_operation[RW]
@return [ConnectorMappingCompleteOperation] The operation after import is done.
error_management[RW]
@return [ConnectorMappingErrorManagement] The error management setting for the mapping.
file_filter[RW]
@return [String] The file filter for the mapping.
folder_path[RW]
@return [String] The folder path for the mapping.
format[RW]
@return [ConnectorMappingFormat] The format of mapping property.
has_header[RW]
@return [Boolean] If the file contains a header or not.
structure[RW]
@return [Array<ConnectorMappingStructure>] Ingestion mapping information at property level.
Public Class Methods
mapper()
click to toggle source
Mapper for ConnectorMappingProperties
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2017-01-01/generated/azure_mgmt_customer_insights/models/connector_mapping_properties.rb, line 48 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ConnectorMappingProperties', type: { name: 'Composite', class_name: 'ConnectorMappingProperties', model_properties: { folder_path: { client_side_validation: true, required: false, serialized_name: 'folderPath', type: { name: 'String' } }, file_filter: { client_side_validation: true, required: false, serialized_name: 'fileFilter', type: { name: 'String' } }, has_header: { client_side_validation: true, required: false, serialized_name: 'hasHeader', type: { name: 'Boolean' } }, error_management: { client_side_validation: true, required: true, serialized_name: 'errorManagement', type: { name: 'Composite', class_name: 'ConnectorMappingErrorManagement' } }, format: { client_side_validation: true, required: true, serialized_name: 'format', default_value: {}, type: { name: 'Composite', class_name: 'ConnectorMappingFormat' } }, availability: { client_side_validation: true, required: true, serialized_name: 'availability', type: { name: 'Composite', class_name: 'ConnectorMappingAvailability' } }, structure: { client_side_validation: true, required: true, serialized_name: 'structure', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ConnectorMappingStructureElementType', type: { name: 'Composite', class_name: 'ConnectorMappingStructure' } } } }, complete_operation: { client_side_validation: true, required: true, serialized_name: 'completeOperation', type: { name: 'Composite', class_name: 'ConnectorMappingCompleteOperation' } } } } } end