Bagikan melalui


MachineLearningDatastoreCollection.GetAll Method

Definition

Overloads

GetAll(MachineLearningDatastoreCollectionGetAllOptions, CancellationToken)

List datastores.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores
  • Operation Id: Datastores_List
GetAll(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

GetAll(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.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningDatastoreResource> GetAll (Azure.ResourceManager.MachineLearning.Models.MachineLearningDatastoreCollectionGetAllOptions options, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAll : Azure.ResourceManager.MachineLearning.Models.MachineLearningDatastoreCollectionGetAllOptions * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningDatastoreResource>
override this.GetAll : Azure.ResourceManager.MachineLearning.Models.MachineLearningDatastoreCollectionGetAllOptions * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningDatastoreResource>
Public Overridable Function GetAll (options As MachineLearningDatastoreCollectionGetAllOptions, Optional cancellationToken As CancellationToken = Nothing) As Pageable(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

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

Applies to

GetAll(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.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningDatastoreResource> GetAll (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 GetAll : string * Nullable<int> * Nullable<bool> * seq<string> * string * string * Nullable<bool> * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningDatastoreResource>
override this.GetAll : string * Nullable<int> * Nullable<bool> * seq<string> * string * string * Nullable<bool> * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.MachineLearning.MachineLearningDatastoreResource>
Public Overridable Function GetAll (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 Pageable(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

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

Applies to