Class BreachedPasswordDetectionClient
- Namespace
- Auth0.ManagementApi.AttackProtection
- Assembly
- Auth0.ManagementApi.dll
public class BreachedPasswordDetectionClient : IBreachedPasswordDetectionClient
- Inheritance
-
BreachedPasswordDetectionClient
- Implements
- Inherited Members
- Extension Methods
Methods
GetAsync(RequestOptions?, CancellationToken)
Retrieve details of the Breached Password Detection configuration of your tenant.
public WithRawResponseTask<GetBreachedPasswordDetectionSettingsResponseContent> GetAsync(RequestOptions? options = null, CancellationToken cancellationToken = default)
Parameters
optionsRequestOptionscancellationTokenCancellationToken
Returns
Examples
await client.AttackProtection.BreachedPasswordDetection.GetAsync();
UpdateAsync(UpdateBreachedPasswordDetectionSettingsRequestContent, RequestOptions?, CancellationToken)
Update details of the Breached Password Detection configuration of your tenant.
public WithRawResponseTask<UpdateBreachedPasswordDetectionSettingsResponseContent> UpdateAsync(UpdateBreachedPasswordDetectionSettingsRequestContent request, RequestOptions? options = null, CancellationToken cancellationToken = default)
Parameters
requestUpdateBreachedPasswordDetectionSettingsRequestContentoptionsRequestOptionscancellationTokenCancellationToken
Returns
Examples
await client.AttackProtection.BreachedPasswordDetection.UpdateAsync(
new UpdateBreachedPasswordDetectionSettingsRequestContent()
);