public async virtual Task <Response <DeletedAccount> > GetAsync(string location, string deletedAccountName, CancellationToken cancellationToken = default) { if (location == null) { throw new ArgumentNullException(nameof(location)); } if (deletedAccountName == null) { throw new ArgumentNullException(nameof(deletedAccountName)); } using var scope = _clientDiagnostics.CreateScope("DeletedAccountCollection.Get"); scope.Start(); try { var response = await _deletedAccountsRestClient.GetAsync(Id.SubscriptionId, location, deletedAccountName, cancellationToken).ConfigureAwait(false); if (response.Value == null) { throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); } return(Response.FromValue(new DeletedAccount(Parent, response.Value), response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } }
public virtual async Task<Response<DeletedAccount>> GetAsync(string location, string deletedAccountName, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(location, nameof(location)); Argument.AssertNotNullOrEmpty(deletedAccountName, nameof(deletedAccountName)); using var scope = _deletedAccountClientDiagnostics.CreateScope("DeletedAccountCollection.Get"); scope.Start(); try { var response = await _deletedAccountRestClient.GetAsync(Id.SubscriptionId, location, deletedAccountName, cancellationToken).ConfigureAwait(false); if (response.Value == null) throw new RequestFailedException(response.GetRawResponse()); return Response.FromValue(new DeletedAccount(Client, response.Value), response.GetRawResponse()); } catch (Exception e) { scope.Failed(e); throw; } }
public virtual async Task <Response <DeletedAccount> > GetAsync(CancellationToken cancellationToken = default) { using var scope = _deletedAccountClientDiagnostics.CreateScope("DeletedAccount.Get"); scope.Start(); try { var response = await _deletedAccountRestClient.GetAsync(Id.SubscriptionId, Id.Parent.Name, Id.Name, cancellationToken).ConfigureAwait(false); if (response.Value == null) { throw new RequestFailedException(response.GetRawResponse()); } return(Response.FromValue(new DeletedAccount(Client, response.Value), response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } }