public virtual Response <SourceConfigurationResult> GetConfigurations(CancellationToken cancellationToken = default)
 {
     using var scope = _linkerResourceLinkerClientDiagnostics.CreateScope("LinkerResource.GetConfigurations");
     scope.Start();
     try
     {
         var response = _linkerResourceLinkerRestClient.ListConfigurations(Id.Parent, Id.Name, cancellationToken);
         return(response);
     }
     catch (Exception e)
     {
         scope.Failed(e);
         throw;
     }
 }