Indexer Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
Indexer() |
Initialise une nouvelle instance de la classe Indexer. |
Indexer(String, String, String, String, String, IndexingSchedule, IndexingParameters, IList<FieldMapping>, IList<FieldMapping>, Nullable<Boolean>, String) |
Initialise une nouvelle instance de la classe Indexer. |
Indexer()
- Source:
- Indexer.cs
Initialise une nouvelle instance de la classe Indexer.
public Indexer ();
Public Sub New ()
S’applique à
Indexer(String, String, String, String, String, IndexingSchedule, IndexingParameters, IList<FieldMapping>, IList<FieldMapping>, Nullable<Boolean>, String)
- Source:
- Indexer.cs
Initialise une nouvelle instance de la classe Indexer.
public Indexer (string name, string dataSourceName, string targetIndexName, string description = default, string skillsetName = default, Microsoft.Azure.Search.Models.IndexingSchedule schedule = default, Microsoft.Azure.Search.Models.IndexingParameters parameters = default, System.Collections.Generic.IList<Microsoft.Azure.Search.Models.FieldMapping> fieldMappings = default, System.Collections.Generic.IList<Microsoft.Azure.Search.Models.FieldMapping> outputFieldMappings = default, bool? isDisabled = default, string eTag = default);
new Microsoft.Azure.Search.Models.Indexer : string * string * string * string * string * Microsoft.Azure.Search.Models.IndexingSchedule * Microsoft.Azure.Search.Models.IndexingParameters * System.Collections.Generic.IList<Microsoft.Azure.Search.Models.FieldMapping> * System.Collections.Generic.IList<Microsoft.Azure.Search.Models.FieldMapping> * Nullable<bool> * string -> Microsoft.Azure.Search.Models.Indexer
Public Sub New (name As String, dataSourceName As String, targetIndexName As String, Optional description As String = Nothing, Optional skillsetName As String = Nothing, Optional schedule As IndexingSchedule = Nothing, Optional parameters As IndexingParameters = Nothing, Optional fieldMappings As IList(Of FieldMapping) = Nothing, Optional outputFieldMappings As IList(Of FieldMapping) = Nothing, Optional isDisabled As Nullable(Of Boolean) = Nothing, Optional eTag As String = Nothing)
Paramètres
- name
- String
Nom de l'indexeur.
- dataSourceName
- String
Nom de la source de données à partir de laquelle cet indexeur lit les données.
- targetIndexName
- String
Nom de l’index dans lequel cet indexeur écrit des données.
- description
- String
Description de l’indexeur.
- skillsetName
- String
Nom de l’ensemble de compétences qui s’exécute avec cet indexeur.
- schedule
- IndexingSchedule
Planification de cet indexeur.
- parameters
- IndexingParameters
Paramètres pour l’exécution de l’indexeur.
- fieldMappings
- IList<FieldMapping>
Définit les mappages entre les champs de la source de données et les champs cibles correspondants dans l’index.
- outputFieldMappings
- IList<FieldMapping>
Les mappages de champs de sortie sont appliqués après l’enrichissement et immédiatement avant l’indexation.
Valeur indiquant si l’indexeur est désactivé. La valeur par défaut est false.
- eTag
- String
ETag de l’indexeur.
S’applique à
Azure SDK for .NET