你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
WebApiSkill 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
WebApiSkill()
WebApiSkill(IList<InputFieldMappingEntry>, IList<OutputFieldMappingEntry>, String, String, String, String, IDictionary<String,String>, String, Nullable<TimeSpan>, Nullable<Int32>, Nullable<Int32>)
- Source:
- WebApiSkill.cs
初始化 WebApiSkill 类的新实例。
public WebApiSkill (System.Collections.Generic.IList<Microsoft.Azure.Search.Models.InputFieldMappingEntry> inputs, System.Collections.Generic.IList<Microsoft.Azure.Search.Models.OutputFieldMappingEntry> outputs, string uri, string name = default, string description = default, string context = default, System.Collections.Generic.IDictionary<string,string> httpHeaders = default, string httpMethod = default, TimeSpan? timeout = default, int? batchSize = default, int? degreeOfParallelism = default);
new Microsoft.Azure.Search.Models.WebApiSkill : System.Collections.Generic.IList<Microsoft.Azure.Search.Models.InputFieldMappingEntry> * System.Collections.Generic.IList<Microsoft.Azure.Search.Models.OutputFieldMappingEntry> * string * string * string * string * System.Collections.Generic.IDictionary<string, string> * string * Nullable<TimeSpan> * Nullable<int> * Nullable<int> -> Microsoft.Azure.Search.Models.WebApiSkill
Public Sub New (inputs As IList(Of InputFieldMappingEntry), outputs As IList(Of OutputFieldMappingEntry), uri As String, Optional name As String = Nothing, Optional description As String = Nothing, Optional context As String = Nothing, Optional httpHeaders As IDictionary(Of String, String) = Nothing, Optional httpMethod As String = Nothing, Optional timeout As Nullable(Of TimeSpan) = Nothing, Optional batchSize As Nullable(Of Integer) = Nothing, Optional degreeOfParallelism As Nullable(Of Integer) = Nothing)
参数
- inputs
- IList<InputFieldMappingEntry>
技能的输入可以是源数据集中的列,也可以是上游技能的输出。
- outputs
- IList<OutputFieldMappingEntry>
技能的输出要么是搜索索引中的字段,要么是另一个技能可以用作输入的值。
- uri
- String
Web API 的 URL。
- name
- String
在技能组中唯一标识它的技能的名称。 未定义名称的技能将在技能数组中指定其从 1 开始的索引的默认名称,前缀为字符“#”。
- description
- String
技能的说明,描述技能的输入、输出和用法。
- context
- String
表示执行操作的级别,例如文档根目录或文档内容 (例如 /document 或 /document/content) 。 默认值为 /document。
- httpHeaders
- IDictionary<String,String>
发出 http 请求所需的标头。
- httpMethod
- String
http 请求的 方法。