Class: Azure::CustomerInsights::Mgmt::V2017_01_01::Models::ConnectorMappingProperties

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-01-01/generated/azure_mgmt_customer_insights/models/connector_mapping_properties.rb

Overview

The connector mapping properties.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#availabilityConnectorMappingAvailability

property.

Returns:



33
34
35
# File 'lib/2017-01-01/generated/azure_mgmt_customer_insights/models/connector_mapping_properties.rb', line 33

def availability
  @availability
end

#complete_operationConnectorMappingCompleteOperation

is done.

Returns:



41
42
43
# File 'lib/2017-01-01/generated/azure_mgmt_customer_insights/models/connector_mapping_properties.rb', line 41

def complete_operation
  @complete_operation
end

#error_managementConnectorMappingErrorManagement

for the mapping.

Returns:



26
27
28
# File 'lib/2017-01-01/generated/azure_mgmt_customer_insights/models/connector_mapping_properties.rb', line 26

def error_management
  @error_management
end

#file_filterString

Returns The file filter for the mapping.

Returns:

  • (String)

    The file filter for the mapping.



19
20
21
# File 'lib/2017-01-01/generated/azure_mgmt_customer_insights/models/connector_mapping_properties.rb', line 19

def file_filter
  @file_filter
end

#folder_pathString

Returns The folder path for the mapping.

Returns:

  • (String)

    The folder path for the mapping.



16
17
18
# File 'lib/2017-01-01/generated/azure_mgmt_customer_insights/models/connector_mapping_properties.rb', line 16

def folder_path
  @folder_path
end

#formatConnectorMappingFormat

Returns The format of mapping property.

Returns:



29
30
31
# File 'lib/2017-01-01/generated/azure_mgmt_customer_insights/models/connector_mapping_properties.rb', line 29

def format
  @format
end

#has_headerBoolean

Returns If the file contains a header or not.

Returns:

  • (Boolean)

    If the file contains a header or not.



22
23
24
# File 'lib/2017-01-01/generated/azure_mgmt_customer_insights/models/connector_mapping_properties.rb', line 22

def has_header
  @has_header
end

#structureArray<ConnectorMappingStructure>

information at property level.

Returns:



37
38
39
# File 'lib/2017-01-01/generated/azure_mgmt_customer_insights/models/connector_mapping_properties.rb', line 37

def structure
  @structure
end

Class Method Details

.mapperObject

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
129
130
131
132
133
134
135
136
137
138
# 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