你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

AuthorizationExtensions.GetRoleAssignmentSchedule Method

Definition

Overloads

GetRoleAssignmentSchedule(ArmResource, String, CancellationToken)

Get the specified role assignment schedule for a resource scope

  • Request Path: /{scope}/providers/Microsoft.Authorization/roleAssignmentSchedules/{roleAssignmentScheduleName}
  • Operation Id: RoleAssignmentSchedules_Get
  • Default Api Version: 2020-10-01
  • Resource: RoleAssignmentScheduleResource
<item>MockingTo mock this method, please mock GetRoleAssignmentSchedule(String, CancellationToken) instead.</item>
GetRoleAssignmentSchedule(ArmClient, ResourceIdentifier, String, CancellationToken)

Get the specified role assignment schedule for a resource scope

  • Request Path: /{scope}/providers/Microsoft.Authorization/roleAssignmentSchedules/{roleAssignmentScheduleName}
  • Operation Id: RoleAssignmentSchedules_Get
  • Default Api Version: 2020-10-01
  • Resource: RoleAssignmentScheduleResource
<item>MockingTo mock this method, please mock GetRoleAssignmentSchedule(ResourceIdentifier, String, CancellationToken) instead.</item>

GetRoleAssignmentSchedule(ArmResource, String, CancellationToken)

Source:
AuthorizationExtensions.cs
Source:
AuthorizationExtensions.cs

Get the specified role assignment schedule for a resource scope

  • Request Path: /{scope}/providers/Microsoft.Authorization/roleAssignmentSchedules/{roleAssignmentScheduleName}
  • Operation Id: RoleAssignmentSchedules_Get
  • Default Api Version: 2020-10-01
  • Resource: RoleAssignmentScheduleResource
<item>MockingTo mock this method, please mock GetRoleAssignmentSchedule(String, CancellationToken) instead.</item>
public static Azure.Response<Azure.ResourceManager.Authorization.RoleAssignmentScheduleResource> GetRoleAssignmentSchedule(this Azure.ResourceManager.ArmResource armResource, string roleAssignmentScheduleName, System.Threading.CancellationToken cancellationToken = default);
static member GetRoleAssignmentSchedule : Azure.ResourceManager.ArmResource * string * System.Threading.CancellationToken -> Azure.Response<Azure.ResourceManager.Authorization.RoleAssignmentScheduleResource>
<Extension()>
Public Function GetRoleAssignmentSchedule (armResource As ArmResource, roleAssignmentScheduleName As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of RoleAssignmentScheduleResource)

Parameters

armResource
ArmResource

The ArmResource instance the method will execute against.

roleAssignmentScheduleName
String

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

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

armResource or roleAssignmentScheduleName is null.

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

Applies to

GetRoleAssignmentSchedule(ArmClient, ResourceIdentifier, String, CancellationToken)

Source:
AuthorizationExtensions.cs
Source:
AuthorizationExtensions.cs

Get the specified role assignment schedule for a resource scope

  • Request Path: /{scope}/providers/Microsoft.Authorization/roleAssignmentSchedules/{roleAssignmentScheduleName}
  • Operation Id: RoleAssignmentSchedules_Get
  • Default Api Version: 2020-10-01
  • Resource: RoleAssignmentScheduleResource
<item>MockingTo mock this method, please mock GetRoleAssignmentSchedule(ResourceIdentifier, String, CancellationToken) instead.</item>
public static Azure.Response<Azure.ResourceManager.Authorization.RoleAssignmentScheduleResource> GetRoleAssignmentSchedule(this Azure.ResourceManager.ArmClient client, Azure.Core.ResourceIdentifier scope, string roleAssignmentScheduleName, System.Threading.CancellationToken cancellationToken = default);
static member GetRoleAssignmentSchedule : Azure.ResourceManager.ArmClient * Azure.Core.ResourceIdentifier * string * System.Threading.CancellationToken -> Azure.Response<Azure.ResourceManager.Authorization.RoleAssignmentScheduleResource>
<Extension()>
Public Function GetRoleAssignmentSchedule (client As ArmClient, scope As ResourceIdentifier, roleAssignmentScheduleName As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of RoleAssignmentScheduleResource)

Parameters

client
ArmClient

The ArmClient instance the method will execute against.

scope
ResourceIdentifier

The scope that the resource will apply against.

roleAssignmentScheduleName
String

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

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

client or roleAssignmentScheduleName is null.

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

Applies to