public abstract class SearchIndexerSkill extends Object
| Constructor and Description |
|---|
SearchIndexerSkill(List<InputFieldMappingEntry> inputs,
List<OutputFieldMappingEntry> outputs)
Constructor of
SearchIndexerSkill. |
| Modifier and Type | Method and Description |
|---|---|
String |
getContext()
Get the context property: Represents the level at which operations take
place, such as the document root or document content (for example,
/document or /document/content).
|
String |
getDescription()
Get the description property: The description of the skill which
describes the inputs, outputs, and usage of the skill.
|
List<InputFieldMappingEntry> |
getInputs()
Get the inputs property: Inputs of the skills could be a column in the
source data set, or the output of an upstream skill.
|
String |
getName()
Get the name property: The name of the skill which uniquely identifies
it within the skillset.
|
List<OutputFieldMappingEntry> |
getOutputs()
Get the outputs property: The output of a skill is either a field in a
search index, or a value that can be consumed as an input by another
skill.
|
SearchIndexerSkill |
setContext(String context)
Set the context property: Represents the level at which operations take
place, such as the document root or document content (for example,
/document or /document/content).
|
SearchIndexerSkill |
setDescription(String description)
Set the description property: The description of the skill which
describes the inputs, outputs, and usage of the skill.
|
SearchIndexerSkill |
setName(String name)
Set the name property: The name of the skill which uniquely identifies
it within the skillset.
|
public SearchIndexerSkill(List<InputFieldMappingEntry> inputs, List<OutputFieldMappingEntry> outputs)
SearchIndexerSkill.inputs - Inputs of the skills could be a column in the source data set, or the
output of an upstream skill.outputs - The output of a skill is either a field in a search index, or a value
that can be consumed as an input by another skill.public String getName()
public SearchIndexerSkill setName(String name)
name - the name value to set.public String getDescription()
public SearchIndexerSkill setDescription(String description)
description - the description value to set.public String getContext()
public SearchIndexerSkill setContext(String context)
context - the context value to set.public List<InputFieldMappingEntry> getInputs()
public List<OutputFieldMappingEntry> getOutputs()
Copyright © 2020 Microsoft Corporation. All rights reserved.