RoleAssignmentCollection Class

Definition

A class representing a collection of RoleAssignmentResource and their operations. Each RoleAssignmentResource in the collection will belong to the same instance of ArmResource. To get a RoleAssignmentCollection instance call the GetRoleAssignments method from an instance of ArmResource.

public class RoleAssignmentCollection : Azure.ResourceManager.ArmCollection, System.Collections.Generic.IAsyncEnumerable<Azure.ResourceManager.Authorization.RoleAssignmentResource>, System.Collections.Generic.IEnumerable<Azure.ResourceManager.Authorization.RoleAssignmentResource>
type RoleAssignmentCollection = class
    inherit ArmCollection
    interface seq<RoleAssignmentResource>
    interface IEnumerable
    interface IAsyncEnumerable<RoleAssignmentResource>
Public Class RoleAssignmentCollection
Inherits ArmCollection
Implements IAsyncEnumerable(Of RoleAssignmentResource), IEnumerable(Of RoleAssignmentResource)
Inheritance
RoleAssignmentCollection
Implements

Constructors

RoleAssignmentCollection()

Initializes a new instance of the RoleAssignmentCollection class for mocking.

Properties

Client

Gets the ArmClient this resource client was created from.

(Inherited from ArmCollection)
Diagnostics

Gets the diagnostic options for this resource client.

(Inherited from ArmCollection)
Endpoint

Gets the base uri for this resource client.

(Inherited from ArmCollection)
Id

Gets the resource identifier.

(Inherited from ArmCollection)
Pipeline

Gets the pipeline for this resource client.

(Inherited from ArmCollection)

Methods

CreateOrUpdate(WaitUntil, String, RoleAssignmentCreateOrUpdateContent, CancellationToken)

Create or update a role assignment by scope and name.

  • Request Path: /{scope}/providers/Microsoft.Authorization/roleAssignments/{roleAssignmentName}
  • Operation Id: RoleAssignments_Create
  • Default Api Version: 2022-04-01
  • Resource: RoleAssignmentResource
CreateOrUpdateAsync(WaitUntil, String, RoleAssignmentCreateOrUpdateContent, CancellationToken)

Create or update a role assignment by scope and name.

  • Request Path: /{scope}/providers/Microsoft.Authorization/roleAssignments/{roleAssignmentName}
  • Operation Id: RoleAssignments_Create
  • Default Api Version: 2022-04-01
  • Resource: RoleAssignmentResource
Exists(String, String, CancellationToken)

Checks to see if the resource exists in azure.

  • Request Path: /{scope}/providers/Microsoft.Authorization/roleAssignments/{roleAssignmentName}
  • Operation Id: RoleAssignments_Get
  • Default Api Version: 2022-04-01
  • Resource: RoleAssignmentResource
ExistsAsync(String, String, CancellationToken)

Checks to see if the resource exists in azure.

  • Request Path: /{scope}/providers/Microsoft.Authorization/roleAssignments/{roleAssignmentName}
  • Operation Id: RoleAssignments_Get
  • Default Api Version: 2022-04-01
  • Resource: RoleAssignmentResource
Get(String, String, CancellationToken)

Get a role assignment by scope and name.

  • Request Path: /{scope}/providers/Microsoft.Authorization/roleAssignments/{roleAssignmentName}
  • Operation Id: RoleAssignments_Get
  • Default Api Version: 2022-04-01
  • Resource: RoleAssignmentResource
GetAll(String, String, String, CancellationToken)

List all role assignments that apply to a scope.

  • Request Path: /{scope}/providers/Microsoft.Authorization/roleAssignments
  • Operation Id: RoleAssignments_ListForScope
  • Default Api Version: 2022-04-01
  • Resource: RoleAssignmentResource
GetAllAsync(String, String, String, CancellationToken)

List all role assignments that apply to a scope.

  • Request Path: /{scope}/providers/Microsoft.Authorization/roleAssignments
  • Operation Id: RoleAssignments_ListForScope
  • Default Api Version: 2022-04-01
  • Resource: RoleAssignmentResource
GetAsync(String, String, CancellationToken)

Get a role assignment by scope and name.

  • Request Path: /{scope}/providers/Microsoft.Authorization/roleAssignments/{roleAssignmentName}
  • Operation Id: RoleAssignments_Get
  • Default Api Version: 2022-04-01
  • Resource: RoleAssignmentResource
GetIfExists(String, String, CancellationToken)

Tries to get details for this resource from the service.

  • Request Path: /{scope}/providers/Microsoft.Authorization/roleAssignments/{roleAssignmentName}
  • Operation Id: RoleAssignments_Get
  • Default Api Version: 2022-04-01
  • Resource: RoleAssignmentResource
GetIfExistsAsync(String, String, CancellationToken)

Tries to get details for this resource from the service.

  • Request Path: /{scope}/providers/Microsoft.Authorization/roleAssignments/{roleAssignmentName}
  • Operation Id: RoleAssignments_Get
  • Default Api Version: 2022-04-01
  • Resource: RoleAssignmentResource
TryGetApiVersion(ResourceType, String)

Gets the api version override if it has been set for the current client options.

(Inherited from ArmCollection)

Explicit Interface Implementations

IAsyncEnumerable<RoleAssignmentResource>.GetAsyncEnumerator(CancellationToken)

Returns an enumerator that iterates asynchronously through the collection.

IEnumerable.GetEnumerator()

Returns an enumerator that iterates through a collection.

IEnumerable<RoleAssignmentResource>.GetEnumerator()

Returns an enumerator that iterates through the collection.

Applies to