Class: Azure::ARM::CustomerInsights::Models::ConnectorMappingErrorManagement

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/generated/azure_mgmt_customer_insights/models/connector_mapping_error_management.rb

Overview

The error mangement.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#error_limitInteger

Returns The error limit allowed while importing data.

Returns:

  • (Integer)

    The error limit allowed while importing data.



21
22
23
# File 'lib/generated/azure_mgmt_customer_insights/models/connector_mapping_error_management.rb', line 21

def error_limit
  @error_limit
end

#error_management_typeErrorManagementTypes

the mapping. Possible values include: ‘RejectAndContinue’, ‘StopImport’, ‘RejectUntilLimit’

Returns:



18
19
20
# File 'lib/generated/azure_mgmt_customer_insights/models/connector_mapping_error_management.rb', line 18

def error_management_type
  @error_management_type
end

Class Method Details

.mapperObject

Mapper for ConnectorMappingErrorManagement class as Ruby Hash. This will be used for serialization/deserialization.



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/generated/azure_mgmt_customer_insights/models/connector_mapping_error_management.rb', line 28

def self.mapper()
  {
    required: false,
    serialized_name: 'ConnectorMappingErrorManagement',
    type: {
      name: 'Composite',
      class_name: 'ConnectorMappingErrorManagement',
      model_properties: {
        error_management_type: {
          required: true,
          serialized_name: 'errorManagementType',
          type: {
            name: 'Enum',
            module: 'ErrorManagementTypes'
          }
        },
        error_limit: {
          required: false,
          serialized_name: 'errorLimit',
          type: {
            name: 'Number'
          }
        }
      }
    }
  }
end