/// <summary>
 /// Gets information about the specified private link resource.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group that contains the Batch account.
 /// </param>
 /// <param name='accountName'>
 /// The name of the Batch account.
 /// </param>
 /// <param name='privateLinkResourceName'>
 /// The private link resource name. This must be unique within the account.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <PrivateLinkResource> GetAsync(this IPrivateLinkResourceOperations operations, string resourceGroupName, string accountName, string privateLinkResourceName, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, accountName, privateLinkResourceName, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }