Package io.micronaut.data.cosmos.config
Class CosmosDatabaseConfiguration
java.lang.Object
io.micronaut.data.cosmos.config.CosmosDatabaseConfiguration
@ConfigurationProperties("azure.cosmos.database")
public final class CosmosDatabaseConfiguration
extends Object
The Azure Cosmos database configuration.
- Since:
- 3.9.0
- Author:
- radovanradic
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
The settings for Cosmos container.static final class
Throughput settings for database. -
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescription@NonNull String
boolean
Gets the indicator telling whether query metrics will be enabled for Azure Cosmos Db query requests.void
void
setDatabaseName
(String databaseName) Sets the database name.void
setPackages
(List<String> packages) void
setQueryMetricsEnabled
(boolean queryMetricsEnabled) Sets the indicator telling whether query metrics will be enabled for Azure Cosmos Db query requests.void
setThroughput
(ThroughputSettings throughput) void
setUpdatePolicy
(StorageUpdatePolicy updatePolicy) Sets the update policy for the database to be used during startup.
-
Field Details
-
PREFIX
- See Also:
-
-
Constructor Details
-
CosmosDatabaseConfiguration
public CosmosDatabaseConfiguration()
-
-
Method Details
-
getThroughput
-
setThroughput
-
getContainers
-
setContainers
@Inject public void setContainers(List<CosmosDatabaseConfiguration.CosmosContainerSettings> containers) -
getDatabaseName
- Returns:
- the database name
-
setDatabaseName
Sets the database name.- Parameters:
databaseName
- the database name
-
getUpdatePolicy
- Returns:
- the update policy for the database to be used during startup.
-
setUpdatePolicy
Sets the update policy for the database to be used during startup.- Parameters:
updatePolicy
- the update policy for the database
-
getPackages
- Returns:
- the list of package names to filter entities during init database and containers
-
setPackages
- Parameters:
packages
- the package names to be considered during init
-
isQueryMetricsEnabled
public boolean isQueryMetricsEnabled()Gets the indicator telling whether query metrics will be enabled for Azure Cosmos Db query requests. If this is turned off then detailed query metrics information will not be retrieved in the Cosmos Diagnostics query response. The default value is true.- Returns:
- the query metrics enabled indicator
-
setQueryMetricsEnabled
public void setQueryMetricsEnabled(boolean queryMetricsEnabled) Sets the indicator telling whether query metrics will be enabled for Azure Cosmos Db query requests.- Parameters:
queryMetricsEnabled
- the query metrics enabled indicator
-