Share via


ContainerRegistryRunCollection.GetAllAsync Method

Definition

Gets all the runs for a registry.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}/runs
  • Operation Id: Runs_List
  • Default Api Version: 2019-06-01-preview
  • Resource: ContainerRegistryRunResource
public virtual Azure.AsyncPageable<Azure.ResourceManager.ContainerRegistry.ContainerRegistryRunResource> GetAllAsync (string filter = default, int? top = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAllAsync : string * Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.ContainerRegistry.ContainerRegistryRunResource>
override this.GetAllAsync : string * Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.ContainerRegistry.ContainerRegistryRunResource>
Public Overridable Function GetAllAsync (Optional filter As String = Nothing, Optional top As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of ContainerRegistryRunResource)

Parameters

filter
String

The runs filter to apply on the operation. Arithmetic operators are not supported. The allowed string function is 'contains'. All logical operators except 'Not', 'Has', 'All' are allowed.

top
Nullable<Int32>

$top is supported for get list of runs, which limits the maximum number of runs to return.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

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

Applies to