MachineLearningJobCollection.GetAll Method

Definition

Overloads

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

Lists Jobs in the workspace.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/jobs
  • Operation Id: Jobs_List
  • Default Api Version: 2024-04-01
  • Resource: MachineLearningJobResource
GetAll(MachineLearningJobCollectionGetAllOptions, CancellationToken)

Lists Jobs in the workspace.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/jobs
  • Operation Id: Jobs_List

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

Lists Jobs in the workspace.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/jobs
  • Operation Id: Jobs_List
  • Default Api Version: 2024-04-01
  • Resource: MachineLearningJobResource
public virtual Azure.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningJobResource> GetAll (string skip = default, string jobType = default, string tag = default, Azure.ResourceManager.MachineLearning.Models.MachineLearningListViewType? listViewType = default, string properties = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAll : string * string * string * Nullable<Azure.ResourceManager.MachineLearning.Models.MachineLearningListViewType> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningJobResource>
override this.GetAll : string * string * string * Nullable<Azure.ResourceManager.MachineLearning.Models.MachineLearningListViewType> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningJobResource>
Public Overridable Function GetAll (Optional skip As String = Nothing, Optional jobType As String = Nothing, Optional tag As String = Nothing, Optional listViewType As Nullable(Of MachineLearningListViewType) = Nothing, Optional properties As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of MachineLearningJobResource)

Parameters

skip
String

Continuation token for pagination.

jobType
String

Type of job to be returned.

tag
String

Jobs returned will have this tag key.

listViewType
Nullable<MachineLearningListViewType>

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

properties
String

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

cancellationToken
CancellationToken

The cancellation token to use.

Returns

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

Applies to

GetAll(MachineLearningJobCollectionGetAllOptions, CancellationToken)

Source:
MachineLearningJobCollection.cs

Lists Jobs in the workspace.

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

Parameters

options
MachineLearningJobCollectionGetAllOptions

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

Applies to