class Azure::CustomerInsights::Mgmt::V2017_04_26::Models::ConnectorMappingResourceFormat

The c onnector mapping resource format.

Attributes

connector_mapping_name[RW]

@return [String] The connector mapping name

connector_name[RW]

@return [String] The connector name.

connector_type[RW]

@return [ConnectorTypes] Type of connector. Possible values include: 'None', 'CRM', 'AzureBlob', 'Salesforce', 'ExchangeOnline', 'Outbound'

created[RW]

@return [DateTime] The created time.

data_format_id[RW]

@return [String] The DataFormat ID.

description[RW]

@return [String] The description of the connector mapping.

display_name[RW]

@return [String] Display name for the connector mapping.

entity_type[RW]

@return [EntityTypes] Defines which entity type the file should map to. Possible values include: 'None', 'Profile', 'Interaction', 'Relationship'

entity_type_name[RW]

@return [String] The mapping entity name.

last_modified[RW]

@return [DateTime] The last monified time.

mapping_properties[RW]

@return [ConnectorMappingProperties] The properties of the mapping.

next_run_time[RW]

@return [DateTime] The next run time based on customer's settings.

run_id[RW]

@return [String] The RunId.

state[RW]

@return [ConnectorMappingStates] State of connector mapping. Possible values include: 'Creating', 'Created', 'Failed', 'Ready', 'Running', 'Stopped', 'Expiring'

tenant_id[RW]

@return [String] The hub name.

Private Class Methods

mapper() click to toggle source

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

# File lib/2017-04-26/generated/azure_mgmt_customer_insights/models/connector_mapping_resource_format.rb, line 70
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ConnectorMappingResourceFormat',
    type: {
      name: 'Composite',
      class_name: 'ConnectorMappingResourceFormat',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        connector_name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.connectorName',
          type: {
            name: 'String'
          }
        },
        connector_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.connectorType',
          type: {
            name: 'String'
          }
        },
        created: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.created',
          type: {
            name: 'DateTime'
          }
        },
        last_modified: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.lastModified',
          type: {
            name: 'DateTime'
          }
        },
        entity_type: {
          client_side_validation: true,
          required: true,
          serialized_name: 'properties.entityType',
          type: {
            name: 'Enum',
            module: 'EntityTypes'
          }
        },
        entity_type_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'properties.entityTypeName',
          type: {
            name: 'String'
          }
        },
        connector_mapping_name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.connectorMappingName',
          type: {
            name: 'String'
          }
        },
        display_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.displayName',
          type: {
            name: 'String'
          }
        },
        description: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.description',
          type: {
            name: 'String'
          }
        },
        data_format_id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.dataFormatId',
          type: {
            name: 'String'
          }
        },
        mapping_properties: {
          client_side_validation: true,
          required: true,
          serialized_name: 'properties.mappingProperties',
          default_value: {},
          type: {
            name: 'Composite',
            class_name: 'ConnectorMappingProperties'
          }
        },
        next_run_time: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.nextRunTime',
          type: {
            name: 'DateTime'
          }
        },
        run_id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.runId',
          type: {
            name: 'String'
          }
        },
        state: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.state',
          type: {
            name: 'Enum',
            module: 'ConnectorMappingStates'
          }
        },
        tenant_id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.tenantId',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end