你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

MachineLearningFeatureCollection.GetAll Method

Definition

Overloads

GetAll(MachineLearningFeatureCollectionGetAllOptions, CancellationToken)

List Features.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/featuresets/{featuresetName}/versions/{featuresetVersion}/features
  • Operation Id: Features_List
  • Default Api Version: 2024-04-01
  • Resource: MachineLearningFeatureResource
GetAll(String, String, String, String, CancellationToken)

List Features.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/featuresets/{featuresetName}/versions/{featuresetVersion}/features
  • Operation Id: Features_List

GetAll(MachineLearningFeatureCollectionGetAllOptions, CancellationToken)

List Features.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/featuresets/{featuresetName}/versions/{featuresetVersion}/features
  • Operation Id: Features_List
  • Default Api Version: 2024-04-01
  • Resource: MachineLearningFeatureResource
public virtual Azure.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningFeatureResource> GetAll (Azure.ResourceManager.MachineLearning.Models.MachineLearningFeatureCollectionGetAllOptions options, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAll : Azure.ResourceManager.MachineLearning.Models.MachineLearningFeatureCollectionGetAllOptions * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningFeatureResource>
override this.GetAll : Azure.ResourceManager.MachineLearning.Models.MachineLearningFeatureCollectionGetAllOptions * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningFeatureResource>
Public Overridable Function GetAll (options As MachineLearningFeatureCollectionGetAllOptions, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of MachineLearningFeatureResource)

Parameters

options
MachineLearningFeatureCollectionGetAllOptions

A property bag which contains all the parameters of this method except the LRO qualifier and request context parameter.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

A collection of MachineLearningFeatureResource that may take multiple service requests to iterate over.

Applies to

GetAll(String, String, String, String, CancellationToken)

Source:
MachineLearningFeatureCollection.cs

List Features.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/featuresets/{featuresetName}/versions/{featuresetVersion}/features
  • Operation Id: Features_List
public virtual Azure.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningFeatureResource> GetAll (string skip = default, string tags = default, string featureName = default, string description = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAll : string * string * string * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningFeatureResource>
override this.GetAll : string * string * string * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningFeatureResource>
Public Overridable Function GetAll (Optional skip As String = Nothing, Optional tags As String = Nothing, Optional featureName As String = Nothing, Optional description As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of MachineLearningFeatureResource)

Parameters

skip
String

Continuation token for pagination.

tags
String

Comma-separated list of tag names (and optionally values). Example: tag1,tag2=value2.

featureName
String

feature name.

description
String

Description of the featureset.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

A collection of MachineLearningFeatureResource that may take multiple service requests to iterate over.

Applies to