Share via


DevTestLabArtifactCollection.GetAll Method

Definition

List artifacts in a given artifact source.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/artifactsources/{artifactSourceName}/artifacts
  • Operation Id: Artifacts_List
public virtual Azure.Pageable<Azure.ResourceManager.DevTestLabs.DevTestLabArtifactResource> GetAll (string expand = default, string filter = default, int? top = default, string orderby = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAll : string * string * Nullable<int> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.DevTestLabs.DevTestLabArtifactResource>
override this.GetAll : string * string * Nullable<int> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.DevTestLabs.DevTestLabArtifactResource>
Public Overridable Function GetAll (Optional expand As String = Nothing, Optional filter As String = Nothing, Optional top As Nullable(Of Integer) = Nothing, Optional orderby As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of DevTestLabArtifactResource)

Parameters

expand
String

Specify the $expand query. Example: 'properties($select=title)'.

filter
String

The filter to apply to the operation. Example: '$filter=contains(name,'myName').

top
Nullable<Int32>

The maximum number of resources to return from the operation. Example: '$top=10'.

orderby
String

The ordering expression for the results, using OData notation. Example: '$orderby=name desc'.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

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

Applies to