MachineLearningDatastoreCollection.GetAllAsync Method

Definition

Overloads

GetAllAsync(MachineLearningDatastoreCollectionGetAllOptions, CancellationToken)

List datastores.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores
  • Operation Id: Datastores_List
GetAllAsync(String, Nullable<Int32>, Nullable<Boolean>, IEnumerable<String>, String, String, Nullable<Boolean>, CancellationToken)

List datastores.

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

GetAllAsync(MachineLearningDatastoreCollectionGetAllOptions, CancellationToken)

Source:
MachineLearningDatastoreCollection.cs
Source:
MachineLearningDatastoreCollection.cs

List datastores.

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

Parameters

options
MachineLearningDatastoreCollectionGetAllOptions

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

An async collection of MachineLearningDatastoreResource that may take multiple service requests to iterate over.

Applies to

GetAllAsync(String, Nullable<Int32>, Nullable<Boolean>, IEnumerable<String>, String, String, Nullable<Boolean>, CancellationToken)

Source:
MachineLearningDatastoreCollection.cs
Source:
MachineLearningDatastoreCollection.cs

List datastores.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores
  • Operation Id: Datastores_List
public virtual Azure.AsyncPageable<Azure.ResourceManager.MachineLearning.MachineLearningDatastoreResource> GetAllAsync (string skip = default, int? count = default, bool? isDefault = default, System.Collections.Generic.IEnumerable<string> names = default, string searchText = default, string orderBy = default, bool? orderByAsc = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAllAsync : string * Nullable<int> * Nullable<bool> * seq<string> * string * string * Nullable<bool> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.MachineLearning.MachineLearningDatastoreResource>
override this.GetAllAsync : string * Nullable<int> * Nullable<bool> * seq<string> * string * string * Nullable<bool> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.MachineLearning.MachineLearningDatastoreResource>
Public Overridable Function GetAllAsync (Optional skip As String = Nothing, Optional count As Nullable(Of Integer) = Nothing, Optional isDefault As Nullable(Of Boolean) = Nothing, Optional names As IEnumerable(Of String) = Nothing, Optional searchText As String = Nothing, Optional orderBy As String = Nothing, Optional orderByAsc As Nullable(Of Boolean) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of MachineLearningDatastoreResource)

Parameters

skip
String

Continuation token for pagination.

count
Nullable<Int32>

Maximum number of results to return.

isDefault
Nullable<Boolean>

Filter down to the workspace default datastore.

names
IEnumerable<String>

Names of datastores to return.

searchText
String

Text to search for in the datastore names.

orderBy
String

Order by property (createdtime | modifiedtime | name).

orderByAsc
Nullable<Boolean>

Order by property in ascending order.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

An async collection of MachineLearningDatastoreResource that may take multiple service requests to iterate over.

Applies to