Skip to content

Commit 3cb3c3b

Browse files
authored
Update src/Testcontainers.Qdrant/QdrantBuilder.cs
1 parent d26602b commit 3cb3c3b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Testcontainers.Qdrant/QdrantBuilder.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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))

0 commit comments

Comments
 (0)