File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
src/Testcontainers.Qdrant Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ private QdrantBuilder(QdrantConfiguration resourceConfiguration)
4040 /// Sets the API key to secure the instance.
4141 /// </summary>
4242 /// <param name="apiKey">The API key.</param>
43+ /// <returns>A configured instance of <see cref="QdrantBuilder" />.</returns>
4344 public QdrantBuilder WithApiKey ( string apiKey )
4445 {
4546 return Merge ( DockerResourceConfiguration , new QdrantConfiguration ( apiKey : apiKey ) )
@@ -51,6 +52,7 @@ public QdrantBuilder WithApiKey(string apiKey)
5152 /// </summary>
5253 /// <param name="certificate">The public certificate in PEM format.</param>
5354 /// <param name="certificateKey">The private key associated with the certificate in PEM format.</param>
55+ /// <returns>A configured instance of <see cref="QdrantBuilder" />.</returns>
5456 public QdrantBuilder WithCertificate ( string certificate , string certificateKey )
5557 {
5658 return Merge ( DockerResourceConfiguration , new QdrantConfiguration ( certificate : certificate , certificateKey : certificateKey ) )
You can’t perform that action at this time.
0 commit comments