Section Link:

Reason:

Suggestion:
Update the code:
CosmosAsyncClient cosmosAsyncClient = new CosmosClientBuilder().buildAsyncClient();
to:
CosmosAsyncClient cosmosAsyncClient = new CosmosClientBuilder() .endpoint(TestConfigurations.HOST) .key(TestConfigurations.MASTER_KEY) .buildAsyncClient();
Section Link:


Reason:
Suggestion:
Update the code:
CosmosAsyncClient cosmosAsyncClient = new CosmosClientBuilder().buildAsyncClient();to:
CosmosAsyncClient cosmosAsyncClient = new CosmosClientBuilder() .endpoint(TestConfigurations.HOST) .key(TestConfigurations.MASTER_KEY) .buildAsyncClient();