Share via


ContainerRegistryRunCollection.GetAll 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.Pageable<Azure.ResourceManager.ContainerRegistry.ContainerRegistryRunResource> GetAll (string filter = default, int? top = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAll : string * Nullable<int> * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.ContainerRegistry.ContainerRegistryRunResource>
override this.GetAll : string * Nullable<int> * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.ContainerRegistry.ContainerRegistryRunResource>
Public Overridable Function GetAll (Optional filter As String = Nothing, Optional top As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(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

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

Applies to