public virtual Response <SharedGalleryImageVersion> Get(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 = _sharedGalleryImageVersionsRestClient.Get(Id.SubscriptionId, Id.Parent.Parent.Name, Id.Parent.Name, Id.Name, galleryImageVersionName, cancellationToken); if (response.Value == null) { throw _clientDiagnostics.CreateRequestFailedException(response.GetRawResponse()); } 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 virtual Response <SharedGalleryImageVersion> Get(string galleryImageVersionName, CancellationToken cancellationToken = default) { using var scope = _clientDiagnostics.CreateScope("SharedGalleryImageVersionContainer.Get"); scope.Start(); try { if (galleryImageVersionName == null) { throw new ArgumentNullException(nameof(galleryImageVersionName)); } var response = _restClient.Get(Id.Parent.Parent.Name, Id.Parent.Name, Id.Name, galleryImageVersionName, cancellationToken: cancellationToken); if (response.Value == null) { throw _clientDiagnostics.CreateRequestFailedException(response.GetRawResponse()); } return(Response.FromValue(new SharedGalleryImageVersion(Parent, response.Value), response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } }
public virtual Response <SharedGalleryImageVersion> Get(CancellationToken cancellationToken = default) { using var scope = _clientDiagnostics.CreateScope("SharedGalleryImageVersion.Get"); scope.Start(); try { var response = _restClient.Get(Id.Parent.Parent.Parent.Name, Id.Parent.Parent.Name, Id.Parent.Name, Id.Name, cancellationToken); if (response.Value == null) { throw _clientDiagnostics.CreateRequestFailedException(response.GetRawResponse()); } return(Response.FromValue(new SharedGalleryImageVersion(this, response.Value), response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } }
public virtual Response <SharedGalleryImageVersionResource> Get(CancellationToken cancellationToken = default) { using var scope = _sharedGalleryImageVersionClientDiagnostics.CreateScope("SharedGalleryImageVersionResource.Get"); scope.Start(); try { var response = _sharedGalleryImageVersionRestClient.Get(Id.SubscriptionId, new AzureLocation(Id.Parent.Parent.Parent.Name), Id.Parent.Parent.Name, Id.Parent.Name, Id.Name, cancellationToken); if (response.Value == null) { throw new RequestFailedException(response.GetRawResponse()); } response.Value.Id = CreateResourceIdentifier(Id.SubscriptionId, new AzureLocation(Id.Parent.Parent.Parent.Name), Id.Parent.Parent.Name, Id.Parent.Name, Id.Name); return(Response.FromValue(new SharedGalleryImageVersionResource(Client, response.Value), response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } }