Class: Azure::ARM::CustomerInsights::Models::ConnectorMappingErrorManagement
- Inherits:
-
Object
- Object
- Azure::ARM::CustomerInsights::Models::ConnectorMappingErrorManagement
- Includes:
- MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_customer_insights/models/connector_mapping_error_management.rb
Overview
The error mangement.
Instance Attribute Summary collapse
-
#error_limit ⇒ Integer
The error limit allowed while importing data.
-
#error_management_type ⇒ ErrorManagementTypes
the mapping.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ConnectorMappingErrorManagement class as Ruby Hash.
Instance Attribute Details
#error_limit ⇒ Integer
Returns 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_type ⇒ ErrorManagementTypes
the mapping. Possible values include: ‘RejectAndContinue’, ‘StopImport’, ‘RejectUntilLimit’
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
.mapper ⇒ Object
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 |