共用方式為


AzureMachineLearningSkill Constructors

Definition

Overloads

AzureMachineLearningSkill(IEnumerable<InputFieldMappingEntry>, IEnumerable<OutputFieldMappingEntry>, ResourceIdentifier, Nullable<AzureLocation>)

Initializes a new instance of the AzureMachineLearningSkill class.

AzureMachineLearningSkill(IEnumerable<InputFieldMappingEntry>, IEnumerable<OutputFieldMappingEntry>, Uri, String)

Initializes a new instance of the AzureMachineLearningSkill class.

AzureMachineLearningSkill(IEnumerable<InputFieldMappingEntry>, IEnumerable<OutputFieldMappingEntry>, ResourceIdentifier, Nullable<AzureLocation>)

Source:
AzureMachineLearningSkill.cs

Initializes a new instance of the AzureMachineLearningSkill class.

public AzureMachineLearningSkill (System.Collections.Generic.IEnumerable<Azure.Search.Documents.Indexes.Models.InputFieldMappingEntry> inputs, System.Collections.Generic.IEnumerable<Azure.Search.Documents.Indexes.Models.OutputFieldMappingEntry> outputs, Azure.Core.ResourceIdentifier resourceId, Azure.Core.AzureLocation? location = default);
new Azure.Search.Documents.Indexes.Models.AzureMachineLearningSkill : seq<Azure.Search.Documents.Indexes.Models.InputFieldMappingEntry> * seq<Azure.Search.Documents.Indexes.Models.OutputFieldMappingEntry> * Azure.Core.ResourceIdentifier * Nullable<Azure.Core.AzureLocation> -> Azure.Search.Documents.Indexes.Models.AzureMachineLearningSkill
Public Sub New (inputs As IEnumerable(Of InputFieldMappingEntry), outputs As IEnumerable(Of OutputFieldMappingEntry), resourceId As ResourceIdentifier, Optional location As Nullable(Of AzureLocation) = Nothing)

Parameters

inputs
IEnumerable<InputFieldMappingEntry>

Inputs of the skills could be a column in the source data set, or the output of an upstream skill.

outputs
IEnumerable<OutputFieldMappingEntry>

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.

resourceId
ResourceIdentifier

The Azure Resource Manager resource Id of the AML service. It should be in the format subscriptions/{guid}/resourceGroups/{resource-group-name}/Microsoft.MachineLearningServices/workspaces/{workspace-name}/services/{service_name}.

location
Nullable<AzureLocation>

The region the AML service is deployed in.

Applies to

AzureMachineLearningSkill(IEnumerable<InputFieldMappingEntry>, IEnumerable<OutputFieldMappingEntry>, Uri, String)

Source:
AzureMachineLearningSkill.cs

Initializes a new instance of the AzureMachineLearningSkill class.

public AzureMachineLearningSkill (System.Collections.Generic.IEnumerable<Azure.Search.Documents.Indexes.Models.InputFieldMappingEntry> inputs, System.Collections.Generic.IEnumerable<Azure.Search.Documents.Indexes.Models.OutputFieldMappingEntry> outputs, Uri scoringUri, string authenticationKey = default);
new Azure.Search.Documents.Indexes.Models.AzureMachineLearningSkill : seq<Azure.Search.Documents.Indexes.Models.InputFieldMappingEntry> * seq<Azure.Search.Documents.Indexes.Models.OutputFieldMappingEntry> * Uri * string -> Azure.Search.Documents.Indexes.Models.AzureMachineLearningSkill
Public Sub New (inputs As IEnumerable(Of InputFieldMappingEntry), outputs As IEnumerable(Of OutputFieldMappingEntry), scoringUri As Uri, Optional authenticationKey As String = Nothing)

Parameters

inputs
IEnumerable<InputFieldMappingEntry>

Inputs of the skills could be a column in the source data set, or the output of an upstream skill.

outputs
IEnumerable<OutputFieldMappingEntry>

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.

scoringUri
Uri

The scoring URI of the AML service to which the JSON payload will be sent. Only the https URI scheme is allowed.

authenticationKey
String

The key for the AML service.

Applies to