Dela via


MachineLearningModelVersionCollection.GetAll Method

Definition

Overloads

GetAll(MachineLearningModelVersionCollectionGetAllOptions, CancellationToken)

List model versions.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/models/{name}/versions
  • Operation Id: ModelVersions_List
GetAll(String, String, Nullable<Int32>, String, String, Nullable<Int32>, String, String, String, Nullable<MachineLearningListViewType>, CancellationToken)

List model versions.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/models/{name}/versions
  • Operation Id: ModelVersions_List

GetAll(MachineLearningModelVersionCollectionGetAllOptions, CancellationToken)

Source:
MachineLearningModelVersionCollection.cs
Source:
MachineLearningModelVersionCollection.cs

List model versions.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/models/{name}/versions
  • Operation Id: ModelVersions_List
public virtual Azure.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningModelVersionResource> GetAll (Azure.ResourceManager.MachineLearning.Models.MachineLearningModelVersionCollectionGetAllOptions options, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAll : Azure.ResourceManager.MachineLearning.Models.MachineLearningModelVersionCollectionGetAllOptions * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningModelVersionResource>
override this.GetAll : Azure.ResourceManager.MachineLearning.Models.MachineLearningModelVersionCollectionGetAllOptions * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningModelVersionResource>
Public Overridable Function GetAll (options As MachineLearningModelVersionCollectionGetAllOptions, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of MachineLearningModelVersionResource)

Parameters

options
MachineLearningModelVersionCollectionGetAllOptions

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 MachineLearningModelVersionResource that may take multiple service requests to iterate over.

Applies to

GetAll(String, String, Nullable<Int32>, String, String, Nullable<Int32>, String, String, String, Nullable<MachineLearningListViewType>, CancellationToken)

Source:
MachineLearningModelVersionCollection.cs
Source:
MachineLearningModelVersionCollection.cs

List model versions.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/models/{name}/versions
  • Operation Id: ModelVersions_List
public virtual Azure.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningModelVersionResource> GetAll (string skip = default, string orderBy = default, int? top = default, string version = default, string description = default, int? offset = default, string tags = default, string properties = default, string feed = default, Azure.ResourceManager.MachineLearning.Models.MachineLearningListViewType? listViewType = default, System.Threading.CancellationToken cancellationToken = default);
public virtual Azure.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningModelVersionResource> GetAll (string skip, string orderBy, int? top, string version, string description, int? offset, string tags, string properties, string feed, Azure.ResourceManager.MachineLearning.Models.MachineLearningListViewType? listViewType, System.Threading.CancellationToken cancellationToken);
abstract member GetAll : string * string * Nullable<int> * string * string * Nullable<int> * string * string * string * Nullable<Azure.ResourceManager.MachineLearning.Models.MachineLearningListViewType> * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningModelVersionResource>
override this.GetAll : string * string * Nullable<int> * string * string * Nullable<int> * string * string * string * Nullable<Azure.ResourceManager.MachineLearning.Models.MachineLearningListViewType> * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningModelVersionResource>
Public Overridable Function GetAll (Optional skip As String = Nothing, Optional orderBy As String = Nothing, Optional top As Nullable(Of Integer) = Nothing, Optional version As String = Nothing, Optional description As String = Nothing, Optional offset As Nullable(Of Integer) = Nothing, Optional tags As String = Nothing, Optional properties As String = Nothing, Optional feed As String = Nothing, Optional listViewType As Nullable(Of MachineLearningListViewType) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of MachineLearningModelVersionResource)
Public Overridable Function GetAll (skip As String, orderBy As String, top As Nullable(Of Integer), version As String, description As String, offset As Nullable(Of Integer), tags As String, properties As String, feed As String, listViewType As Nullable(Of MachineLearningListViewType), cancellationToken As CancellationToken) As Pageable(Of MachineLearningModelVersionResource)

Parameters

skip
String

Continuation token for pagination.

orderBy
String

Ordering of list.

top
Nullable<Int32>

Maximum number of records to return.

version
String

Model version.

description
String

Model description.

offset
Nullable<Int32>

Number of initial results to skip.

tags
String

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

properties
String

Comma-separated list of property names (and optionally values). Example: prop1,prop2=value2.

feed
String

Name of the feed.

listViewType
Nullable<MachineLearningListViewType>

View type for including/excluding (for example) archived entities.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

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

Applies to