Class GetBruteForceSettingsResponseContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record GetBruteForceSettingsResponseContent : IJsonOnDeserialized, IEquatable<GetBruteForceSettingsResponseContent>
- Inheritance
-
GetBruteForceSettingsResponseContent
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
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.