Class UpdateBruteForceSettingsRequestContent
- Namespace
- Auth0.ManagementApi.AttackProtection
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record UpdateBruteForceSettingsRequestContent : IEquatable<UpdateBruteForceSettingsRequestContent>
- Inheritance
-
UpdateBruteForceSettingsRequestContent
- Implements
- Inherited Members
- Extension Methods
Properties
Allowlist
List of trusted IP addresses that will not have attack protection enforced against them.
[JsonPropertyName("allowlist")]
public IEnumerable<string>? Allowlist { get; set; }
Property Value
Enabled
Whether or not brute force attack protections are active.
[JsonPropertyName("enabled")]
public bool? Enabled { get; set; }
Property Value
- bool?
MaxAttempts
Maximum number of unsuccessful attempts.
[JsonPropertyName("max_attempts")]
public int? MaxAttempts { get; set; }
Property Value
- int?
Mode
[JsonPropertyName("mode")]
public BruteForceProtectionModeEnum? Mode { get; set; }
Property Value
Shields
Action to take when a brute force protection threshold is violated.
Possible values: block, user_notification.
[JsonPropertyName("shields")]
public IEnumerable<BruteForceProtectionShieldsEnum>? Shields { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.