| 68 | } |
| 69 | |
| 70 | type AttackProtectionBotDetectionAPIV2 interface { |
| 71 | // Get the Bot Detection configuration of tenant. |
| 72 | // |
| 73 | // Required scope: `read:attack_protection` |
| 74 | // |
| 75 | // See: https://auth0.com/docs/api/management/v2#!/attack-protection/get-bot-detection |
| 76 | Get(ctx context.Context, opts ...option.RequestOption) (*managementv2.GetBotDetectionSettingsResponseContent, error) |
| 77 | |
| 78 | // Update the Bot Detection configuration of tenant. |
| 79 | // |
| 80 | // Required scope: `update:attack_protection` |
| 81 | // |
| 82 | // See: https://auth0.com/docs/api/management/v2#!/attack-protection/patch-bot-detection |
| 83 | Update(ctx context.Context, request *managementv2.UpdateBotDetectionSettingsRequestContent, opts ...option.RequestOption) (*managementv2.UpdateBotDetectionSettingsResponseContent, error) |
| 84 | } |
no outgoing calls
no test coverage detected