Share via


RoleAssignmentScheduleInstanceCollection.GetAllAsync Method

Definition

Gets role assignment schedule instances of a role assignment schedule.

  • Request Path: /{scope}/providers/Microsoft.Authorization/roleAssignmentScheduleInstances
  • Operation Id: RoleAssignmentScheduleInstances_ListForScope
  • Default Api Version: 2020-10-01
  • Resource: RoleAssignmentScheduleInstanceResource
public virtual Azure.AsyncPageable<Azure.ResourceManager.Authorization.RoleAssignmentScheduleInstanceResource> GetAllAsync (string filter = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAllAsync : string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.Authorization.RoleAssignmentScheduleInstanceResource>
override this.GetAllAsync : string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.Authorization.RoleAssignmentScheduleInstanceResource>
Public Overridable Function GetAllAsync (Optional filter As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of RoleAssignmentScheduleInstanceResource)

Parameters

filter
String

The filter to apply on the operation. Use $filter=atScope() to return all role assignment schedules at or above the scope. Use $filter=principalId eq {id} to return all role assignment schedules at, above or below the scope for the specified principal. Use $filter=assignedTo('{userId}') to return all role assignment schedule instances for the user. Use $filter=asTarget() to return all role assignment schedule instances created for the current user.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

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

Applies to