/// <summary> /// Grants access to a disk. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. /// </param> /// <param name='diskName'> /// The name of the managed disk that is being created. The name can't be /// changed after the disk is created. Supported characters for the name are /// a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. /// </param> /// <param name='grantAccessData'> /// Access data object supplied in the body of the get disk access operation. /// </param> public static AccessUri GrantAccess(this IDisksOperations operations, string resourceGroupName, string diskName, GrantAccessData grantAccessData) { return(operations.GrantAccessAsync(resourceGroupName, diskName, grantAccessData).GetAwaiter().GetResult()); }