services_user_bad_password_reports
Creates, updates, deletes, gets or lists a services_user_bad_password_reports resource.
Overview
| Name | services_user_bad_password_reports |
| Type | Resource |
| Id | azure.ad_hybrid_health_service.services_user_bad_password_reports |
Fields
The following fields are returned by SELECT queries:
- list
The list of bad password login attempts.
| Name | Datatype | Description |
|---|---|---|
ipAddress | string | The IP address corresponding to the last error event. |
lastUpdated | string (date-time) | The date and time when the last error event was logged. |
totalErrorAttempts | integer | The total count of specific error events. |
uniqueIpAddresses | string | The list of unique IP addresses. |
userId | string | The user ID value. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | serviceName | dataSource | Gets the bad password login attempt report for an user |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
serviceName | string | The name of the service. |
dataSource | string | The source of data, if its test data or customer data. |
SELECT examples
- list
Gets the bad password login attempt report for an user
SELECT
ipAddress,
lastUpdated,
totalErrorAttempts,
uniqueIpAddresses,
userId
FROM azure.ad_hybrid_health_service.services_user_bad_password_reports
WHERE serviceName = '{{ serviceName }}' -- required
AND dataSource = '{{ dataSource }}'
;