public static Task UpsertBucketAsync(this IBucketManager bucketManager, BucketSettings settings, Action <UpsertBucketOptions> configureOptions)
        {
            var options = new UpsertBucketOptions();

            configureOptions(options);

            return(bucketManager.UpsertBucketAsync(settings, options));
        }
 public static Task UpsertBucketAsync(this IBucketManager bucketManager, BucketSettings settings)
 {
     return(bucketManager.UpsertBucketAsync(settings, UpsertBucketOptions.Default));
 }