@@ -27,7 +27,7 @@ public enum SettingName
27
27
{
28
28
/// <summary>
29
29
/// The authentication provider to use. Allowed values are <c>null</c> (local username/password),
30
- /// <c>"Active Directory"</c>, <c>"Azure Active Directory "</c> and <c>"OpenID Connect"</c>.
30
+ /// <c>"Active Directory"</c>, <c>"Microsoft Entra ID "</c> and <c>"OpenID Connect"</c>.
31
31
/// </summary>
32
32
AuthenticationProvider ,
33
33
@@ -38,7 +38,7 @@ public enum SettingName
38
38
AutomaticAccessADGroup ,
39
39
40
40
/// <summary>
41
- /// If <c>true</c>, Azure Active Directory accounts in the configured tenant will
41
+ /// If <c>true</c>, Microsoft Entra ID accounts in the configured tenant will
42
42
/// be automatically granted user access to Seq.
43
43
/// </summary>
44
44
[ Obsolete ( "Use `AutomaticallyProvisionAuthenticatedUsers`." , error : true ) ]
@@ -51,25 +51,29 @@ public enum SettingName
51
51
AutomaticallyProvisionAuthenticatedUsers ,
52
52
53
53
/// <summary>
54
- /// The AAD authority. The default is <c>login.windows.net</c>; government cloud users may
54
+ /// The Microsoft Entra ID authority. The default is <c>login.windows.net</c>; government cloud users may
55
55
/// require <c>login.microsoftonline.us</c> or similar.
56
56
/// </summary>
57
- AzureADAuthority ,
57
+ // ReSharper disable once InconsistentNaming
58
+ EntraIDAuthority ,
58
59
59
60
/// <summary>
60
- /// The Azure Active Directory client id.
61
+ /// The Microsoft Entra ID client id.
61
62
/// </summary>
62
- AzureADClientId ,
63
+ // ReSharper disable once InconsistentNaming
64
+ EntraIDClientId ,
63
65
64
66
/// <summary>
65
- /// The Azure Active Directory client key.
67
+ /// The Microsoft Entra ID client key.
66
68
/// </summary>
67
- AzureADClientKey ,
69
+ // ReSharper disable once InconsistentNaming
70
+ EntraIDClientKey ,
68
71
69
72
/// <summary>
70
- /// The Azure Active Directory tenant id.
73
+ /// The Microsoft Entra ID tenant id.
71
74
/// </summary>
72
- AzureADTenantId ,
75
+ // ReSharper disable once InconsistentNaming
76
+ EntraIDTenantId ,
73
77
74
78
/// <summary>
75
79
/// Server-local filesystem location where automatic backups are stored.
@@ -170,7 +174,7 @@ public enum SettingName
170
174
/// If using OpenID Connect, overrides the URI of the provider's metadata endpoint.
171
175
/// </summary>
172
176
OpenIdConnectMetadataAddress ,
173
-
177
+
174
178
/// <summary>
175
179
/// If <c>true</c>, ingestion requests incoming via HTTP must be authenticated using an API key or
176
180
/// logged-in user session. Only effective when <see cref="IsAuthenticationEnabled"/> is <c>true</c>.
0 commit comments