Share via


ShaperSkill コンストラクター

定義

オーバーロード

ShaperSkill()

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

ShaperSkill(IList<InputFieldMappingEntry>, IList<OutputFieldMappingEntry>, String, String, String)

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

ShaperSkill()

ソース:
ShaperSkill.cs

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

public ShaperSkill ();
Public Sub New ()

適用対象

ShaperSkill(IList<InputFieldMappingEntry>, IList<OutputFieldMappingEntry>, String, String, String)

ソース:
ShaperSkill.cs

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

public ShaperSkill (System.Collections.Generic.IList<Microsoft.Azure.Search.Models.InputFieldMappingEntry> inputs, System.Collections.Generic.IList<Microsoft.Azure.Search.Models.OutputFieldMappingEntry> outputs, string name = default, string description = default, string context = default);
new Microsoft.Azure.Search.Models.ShaperSkill : System.Collections.Generic.IList<Microsoft.Azure.Search.Models.InputFieldMappingEntry> * System.Collections.Generic.IList<Microsoft.Azure.Search.Models.OutputFieldMappingEntry> * string * string * string -> Microsoft.Azure.Search.Models.ShaperSkill
Public Sub New (inputs As IList(Of InputFieldMappingEntry), outputs As IList(Of OutputFieldMappingEntry), Optional name As String = Nothing, Optional description As String = Nothing, Optional context As String = Nothing)

パラメーター

inputs
IList<InputFieldMappingEntry>

スキルの入力には、ソース データ セット内の列、またはアップストリーム スキルの出力を指定できます。

outputs
IList<OutputFieldMappingEntry>

スキルの出力は、検索インデックス内のフィールド、または別のスキルによる入力として使用できる値のいずれかです。

name
String

スキルセット内で一意に識別するスキルの名前。 名前が定義されていないスキルには、スキル配列内の 1 から始まるインデックスの既定の名前が付き、先頭に文字 '#' が付けられます。

description
String

スキルの入力、出力、および使用方法を記述するスキルの説明。

context
String

ドキュメントのルートやドキュメントのコンテンツ (/document や /document/content など) など、操作が実行されるレベルを表します。 既定値は /document です。

適用対象