5 references to HttpEndpointName
Aspire.Hosting.Qdrant (5)
QdrantBuilderExtensions.cs (4)
78
.WithHttpEndpoint(port: httpPort, targetPort: QdrantPortHttp, name: QdrantServerResource.
HttpEndpointName
)
97
.WithUrlForEndpoint(QdrantServerResource.
HttpEndpointName
, c => c.DisplayText = "Qdrant (HTTP)")
98
.WithUrlForEndpoint(QdrantServerResource.
HttpEndpointName
, e => new ResourceUrlAnnotation() { Url = "/dashboard", DisplayText = "Qdrant Dashboard" });
183
context.EnvironmentVariables[$"{connectionStringName}_{QdrantServerResource.
HttpEndpointName
}"] = qdrantResource.Resource.HttpConnectionStringExpression;
QdrantServerResource.cs (1)
52
public EndpointReference HttpEndpoint => _httpEndpoint ??= new(this,
HttpEndpointName
);