public virtual Response <JobCredentialResource> Get(string credentialName, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(credentialName, nameof(credentialName)); using var scope = _jobCredentialClientDiagnostics.CreateScope("JobCredentialCollection.Get"); scope.Start(); try { var response = _jobCredentialRestClient.Get(Id.SubscriptionId, Id.ResourceGroupName, Id.Parent.Name, Id.Name, credentialName, cancellationToken); if (response.Value == null) { throw new RequestFailedException(response.GetRawResponse()); } return(Response.FromValue(new JobCredentialResource(Client, response.Value), response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } }
public virtual Response<JobCredentialResource> Get(CancellationToken cancellationToken = default) { using var scope = _jobCredentialClientDiagnostics.CreateScope("JobCredentialResource.Get"); scope.Start(); try { var response = _jobCredentialRestClient.Get(Id.SubscriptionId, Id.ResourceGroupName, Id.Parent.Parent.Name, Id.Parent.Name, Id.Name, cancellationToken); if (response.Value == null) throw new RequestFailedException(response.GetRawResponse()); return Response.FromValue(new JobCredentialResource(Client, response.Value), response.GetRawResponse()); } catch (Exception e) { scope.Failed(e); throw; } }