Skip to content
Docs Try Aspire
Docs Try

QdrantServerResource

Handle
📦 Aspire.Hosting.Qdrant v13.4.0
interface QdrantServerResource
extends IComputeResource,
IExpressionValue,
IManifestExpressionProvider,
IResource,
IResourceWithArgs,
IResourceWithConnectionString,
QdrantServerResource]],
IResourceWithEndpoints,
IResourceWithEnvironment,
IResourceWithProbes,
IResourceWithWaitSupport,
IValueProvider,
IValueWithReferences {
readonly apiKeyParameter: ParameterResource;
readonly connectionStringExpression: ReferenceExpression;
readonly grpcHost: EndpointReferenceExpression;
readonly grpcPort: EndpointReferenceExpression;
readonly httpConnectionStringExpression: ReferenceExpression;
readonly httpEndpoint: EndpointReference;
readonly httpHost: EndpointReferenceExpression;
readonly httpPort: EndpointReferenceExpression;
readonly httpUriExpression: ReferenceExpression;
readonly primaryEndpoint: EndpointReference;
readonly uriExpression: ReferenceExpression;
withDataBindMount(
source: string,
isReadOnly?: boolean): QdrantServerResource;
withDataVolume(
name?: string,
isReadOnly?: boolean): QdrantServerResource;
}

Properties

property apiKeyParameter ParameterResource get
Gets the parameter that contains the Qdrant API key.
property connectionStringExpression ReferenceExpression get
Gets the connection string expression for the Qdrant gRPC endpoint.
property grpcHost EndpointReferenceExpression get
Gets the host endpoint reference for the gRPC endpoint.
property grpcPort EndpointReferenceExpression get
Gets the port endpoint reference for the gRPC endpoint.
property httpConnectionStringExpression ReferenceExpression get
Gets the connection string expression for the Qdrant HTTP endpoint.
property httpEndpoint EndpointReference get
Gets the HTTP endpoint for the Qdrant database.
property httpHost EndpointReferenceExpression get
Gets the host endpoint reference for the HTTP endpoint.
property httpPort EndpointReferenceExpression get
Gets the port endpoint reference for the HTTP endpoint.
property httpUriExpression ReferenceExpression get
Gets the connection URI expression for the Qdrant HTTP endpoint.
property primaryEndpoint EndpointReference get
Gets the gRPC endpoint for the Qdrant database.
property uriExpression ReferenceExpression get
Gets the connection URI expression for the Qdrant gRPC endpoint.

Methods

method withDataBindMount builder
Adds a bind mount for the data folder to a Qdrant container resource.
withDataBindMount(
source: string,
isReadOnly?: boolean): QdrantServerResource
source string
isReadOnly boolean optional = False
QdrantServerResource
method withDataVolume builder
Adds a named volume for the data folder to a Qdrant container resource.
withDataVolume(
name?: string,
isReadOnly?: boolean): QdrantServerResource
name string optional
isReadOnly boolean optional = False
QdrantServerResource