AuthorizationExtensions.GetRoleEligibilitySchedule Method

Definition

Overloads

Name Description
GetRoleEligibilitySchedule(ArmResource, String, CancellationToken)

Get the specified role eligibility schedule for a resource scope.

GetRoleEligibilitySchedule(ArmClient, ResourceIdentifier, String, CancellationToken)

Get the specified role eligibility schedule for a resource scope <item> Mocking. To mock this method, please mock GetRoleEligibilitySchedule(ResourceIdentifier, String, CancellationToken) instead. </item>

GetRoleEligibilitySchedule(ArmResource, String, CancellationToken)

Source:
AuthorizationExtensions.cs
Source:
AuthorizationExtensions.cs

Get the specified role eligibility schedule for a resource scope.

public static Azure.Response<Azure.ResourceManager.Authorization.RoleEligibilityScheduleResource> GetRoleEligibilitySchedule(this Azure.ResourceManager.ArmResource armResource, string roleEligibilityScheduleName, System.Threading.CancellationToken cancellationToken = default);
static member GetRoleEligibilitySchedule : Azure.ResourceManager.ArmResource * string * System.Threading.CancellationToken -> Azure.Response<Azure.ResourceManager.Authorization.RoleEligibilityScheduleResource>
<Extension()>
Public Function GetRoleEligibilitySchedule (armResource As ArmResource, roleEligibilityScheduleName As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of RoleEligibilityScheduleResource)

Parameters

armResource
ArmResource

The ArmResource instance the method will execute against.

roleEligibilityScheduleName
String

The name (guid) of the role eligibility schedule to get.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

roleEligibilityScheduleName is null.

roleEligibilityScheduleName is an empty string, and was expected to be non-empty.

Applies to

GetRoleEligibilitySchedule(ArmClient, ResourceIdentifier, String, CancellationToken)

Source:
AuthorizationExtensions.cs
Source:
AuthorizationExtensions.cs

Get the specified role eligibility schedule for a resource scope <item> Mocking. To mock this method, please mock GetRoleEligibilitySchedule(ResourceIdentifier, String, CancellationToken) instead. </item>

public static Azure.Response<Azure.ResourceManager.Authorization.RoleEligibilityScheduleResource> GetRoleEligibilitySchedule(this Azure.ResourceManager.ArmClient client, Azure.Core.ResourceIdentifier scope, string roleEligibilityScheduleName, System.Threading.CancellationToken cancellationToken = default);
static member GetRoleEligibilitySchedule : Azure.ResourceManager.ArmClient * Azure.Core.ResourceIdentifier * string * System.Threading.CancellationToken -> Azure.Response<Azure.ResourceManager.Authorization.RoleEligibilityScheduleResource>
<Extension()>
Public Function GetRoleEligibilitySchedule (client As ArmClient, scope As ResourceIdentifier, roleEligibilityScheduleName As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of RoleEligibilityScheduleResource)

Parameters

client
ArmClient

The ArmClient the method will execute against.

scope
ResourceIdentifier

The scope of the resource collection to get.

roleEligibilityScheduleName
String

The name (guid) of the role eligibility schedule to get.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

roleEligibilityScheduleName is an empty string, and was expected to be non-empty.

client is null.

Applies to