public async virtual Task <Response <SharedGalleryImageVersion> > GetAsync(string galleryImageVersionName, CancellationToken cancellationToken = default) { if (galleryImageVersionName == null) { throw new ArgumentNullException(nameof(galleryImageVersionName)); } using var scope = _clientDiagnostics.CreateScope("SharedGalleryImageVersionCollection.Get"); scope.Start(); try { var response = await _sharedGalleryImageVersionsRestClient.GetAsync(Id.SubscriptionId, Id.Parent.Parent.Name, Id.Parent.Name, Id.Name, galleryImageVersionName, cancellationToken).ConfigureAwait(false); if (response.Value == null) { throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); } response.Value.Id = SharedGalleryImageVersion.CreateResourceIdentifier(Id.SubscriptionId, Id.Parent.Parent.Name, Id.Parent.Name, Id.Name, galleryImageVersionName); return(Response.FromValue(new SharedGalleryImageVersion(this, response.Value), response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } }
public async virtual Task <Response <SharedGalleryImageVersion> > GetAsync(CancellationToken cancellationToken = default) { using var scope = _clientDiagnostics.CreateScope("SharedGalleryImageVersion.Get"); scope.Start(); try { var response = await _restClient.GetAsync(Id.Parent.Parent.Parent.Name, Id.Parent.Parent.Name, Id.Parent.Name, Id.Name, cancellationToken).ConfigureAwait(false); if (response.Value == null) { throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); } return(Response.FromValue(new SharedGalleryImageVersion(this, response.Value), response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } }
public virtual async Task <Response <SharedGalleryImageVersion> > GetAsync(CancellationToken cancellationToken = default) { using var scope = _sharedGalleryImageVersionClientDiagnostics.CreateScope("SharedGalleryImageVersion.Get"); scope.Start(); try { var response = await _sharedGalleryImageVersionRestClient.GetAsync(Id.SubscriptionId, Id.Parent.Parent.Parent.Name, Id.Parent.Parent.Name, Id.Parent.Name, Id.Name, cancellationToken).ConfigureAwait(false); if (response.Value == null) { throw new RequestFailedException(response.GetRawResponse()); } response.Value.Id = CreateResourceIdentifier(Id.SubscriptionId, Id.Parent.Parent.Parent.Name, Id.Parent.Parent.Name, Id.Parent.Name, Id.Name); return(Response.FromValue(new SharedGalleryImageVersion(Client, response.Value), response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } }