Share via


Indexer コンストラクター

定義

オーバーロード

Indexer()

Indexer クラスの新しいインスタンスを初期化します。

Indexer(String, String, String, String, String, IndexingSchedule, IndexingParameters, IList<FieldMapping>, IList<FieldMapping>, Nullable<Boolean>, String)

Indexer クラスの新しいインスタンスを初期化します。

Indexer()

ソース:
Indexer.cs

Indexer クラスの新しいインスタンスを初期化します。

public Indexer ();
Public Sub New ()

適用対象

Indexer(String, String, String, String, String, IndexingSchedule, IndexingParameters, IList<FieldMapping>, IList<FieldMapping>, Nullable<Boolean>, String)

ソース:
Indexer.cs

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)

パラメーター

name
String

インデクサーの名前。

dataSourceName
String

このインデクサーがデータを読み取るデータソースの名前。

targetIndexName
String

このインデクサーがデータを書き込むインデックスの名前。

description
String

インデクサーの説明。

skillsetName
String

このインデクサーで実行されるスキルセットの名前。

schedule
IndexingSchedule

このインデクサーのスケジュール。

parameters
IndexingParameters

インデクサー実行のパラメーター。

fieldMappings
IList<FieldMapping>

データ ソース内のフィールドと、インデックス内の対応するターゲット フィールド間のマッピングを定義します。

outputFieldMappings
IList<FieldMapping>

出力フィールド マッピングは、エンリッチメントの後、インデックス作成の直前に適用されます。

isDisabled
Nullable<Boolean>

インデクサーが無効かどうかを示す値。 既定値は false です。

eTag
String

インデクサーの ETag。

適用対象