Share via


QdrantBuilderExtensions.WithDataVolume Method

Definition

Adds a named volume for the data folder to a Qdrant container resource.

public static Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.ApplicationModel.QdrantServerResource> WithDataVolume (this Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.ApplicationModel.QdrantServerResource> builder, string? name = default, bool isReadOnly = false);
static member WithDataVolume : Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.ApplicationModel.QdrantServerResource> * string * bool -> Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.ApplicationModel.QdrantServerResource>
<Extension()>
Public Function WithDataVolume (builder As IResourceBuilder(Of QdrantServerResource), Optional name As String = Nothing, Optional isReadOnly As Boolean = false) As IResourceBuilder(Of QdrantServerResource)

Parameters

builder
IResourceBuilder<QdrantServerResource>

The resource builder.

name
String

The name of the volume. Defaults to an auto-generated name based on the resource name.

isReadOnly
Boolean

A flag that indicates if this is a read-only volume.

Returns

The IResourceBuilder<T>.

Applies to