25 references to AzureDataTablesSettings
Aspire.Azure.Data.Tables (19)
AspireTablesExtensions.cs (18)
30/// <param name="configureSettings">An optional method that can be used for customizing the <see cref="AzureDataTablesSettings"/>. It's invoked after the settings are read from the configuration.</param>
33/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureDataTablesSettings.ConnectionString"/> nor <see cref="AzureDataTablesSettings.ServiceUri"/> is provided.</exception>
37Action<AzureDataTablesSettings>? configureSettings = null,
51Action<AzureDataTablesSettings>? configureSettings = null,
66/// <param name="configureSettings">An optional method that can be used for customizing the <see cref="AzureDataTablesSettings"/>. It's invoked after the settings are read from the configuration.</param>
69/// <exception cref="InvalidOperationException">Thrown when neither <see cref="AzureDataTablesSettings.ConnectionString"/> nor <see cref="AzureDataTablesSettings.ServiceUri"/> is provided.</exception>
73Action<AzureDataTablesSettings>? configureSettings = null,
87Action<AzureDataTablesSettings>? configureSettings = null,
96private sealed class TableServiceComponent : AzureComponent<AzureDataTablesSettings, TableServiceClient, TableClientOptions>
99AzureClientFactoryBuilder azureFactoryBuilder, AzureDataTablesSettings settings, string connectionName,
123protected override void BindSettingsToConfiguration(AzureDataTablesSettings settings, IConfiguration configuration)
128protected override IHealthCheck CreateHealthCheck(TableServiceClient client, AzureDataTablesSettings settings)
131protected override bool GetHealthCheckEnabled(AzureDataTablesSettings settings)
134protected override TokenCredential? GetTokenCredential(AzureDataTablesSettings settings)
137protected override bool GetMetricsEnabled(AzureDataTablesSettings settings)
140protected override bool GetTracingEnabled(AzureDataTablesSettings settings)
Aspire.Azure.Data.Tables.Tests (6)