/// <summary>
 /// Gets the hashcode for the CouchbaseBucket instance.
 /// </summary>
 /// <returns>The hashcode of the instance</returns>
 public override int GetHashCode()
 {
     unchecked
     {
         var hashCode = (_clusterManager != null ? _clusterManager.GetHashCode() : 0);
         hashCode = (hashCode * 397) ^ (Name != null ? Name.GetHashCode() : 0);
         return(hashCode);
     }
 }