public static Task UpsertAsync(this IBucketManager bucketManager, BucketSettings settings, Action <UpsertBucketOptions> configureOptions) { var options = new UpsertBucketOptions(); configureOptions(options); return(bucketManager.UpsertAsync(settings, options)); }
public static Task UpsertAsync(this IBucketManager bucketManager, BucketSettings settings) { return(bucketManager.UpsertAsync(settings, UpsertBucketOptions.Default)); }