ip_address_aggregate_settings
Creates, updates, deletes, gets or lists an ip_address_aggregate_settings
resource.
Overview
Name | ip_address_aggregate_settings |
Type | Resource |
Id | azure.ad_hybrid_health_service.ip_address_aggregate_settings |
Fields
The following fields are returned by SELECT
queries:
- list
IP address aggregate settings.
Name | Datatype | Description |
---|---|---|
id | string | Unique ID for the entree |
badPasswordAndExtranetLockoutCombinedDailyThreshold | integer | This threshold setting defines the per day trigger for a new event to be generated in the report. |
badPasswordAndExtranetLockoutCombinedHourlyThreshold | integer | This threshold setting defines the per hour trigger for a new event to be generated in the report. |
emailNotificationEnabled | boolean | A value indicating whether email notification has been enabled. |
extranetLockoutDailyThreshold | integer | This threshold setting defines the per hour trigger for a new event to be generated in the report. |
extranetLockoutHourlyThreshold | integer | This threshold setting defines the per hour trigger for a new event to be generated in the report. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | serviceName | Gets the IP address aggregate settings. | |
update | update | serviceName | Updates the IP address aggregate settings alert thresholds. |
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. |
SELECT
examples
- list
Gets the IP address aggregate settings.
SELECT
id,
badPasswordAndExtranetLockoutCombinedDailyThreshold,
badPasswordAndExtranetLockoutCombinedHourlyThreshold,
emailNotificationEnabled,
extranetLockoutDailyThreshold,
extranetLockoutHourlyThreshold
FROM azure.ad_hybrid_health_service.ip_address_aggregate_settings
WHERE serviceName = '{{ serviceName }}' -- required
;
UPDATE
examples
- update
Updates the IP address aggregate settings alert thresholds.
UPDATE azure.ad_hybrid_health_service.ip_address_aggregate_settings
SET
data__id = '{{ id }}',
data__badPasswordAndExtranetLockoutCombinedDailyThreshold = {{ badPasswordAndExtranetLockoutCombinedDailyThreshold }},
data__badPasswordAndExtranetLockoutCombinedHourlyThreshold = {{ badPasswordAndExtranetLockoutCombinedHourlyThreshold }},
data__extranetLockoutDailyThreshold = {{ extranetLockoutDailyThreshold }},
data__extranetLockoutHourlyThreshold = {{ extranetLockoutHourlyThreshold }},
data__emailNotificationEnabled = {{ emailNotificationEnabled }}
WHERE
serviceName = '{{ serviceName }}' --required
RETURNING
id,
badPasswordAndExtranetLockoutCombinedDailyThreshold,
badPasswordAndExtranetLockoutCombinedHourlyThreshold,
emailNotificationEnabled,
extranetLockoutDailyThreshold,
extranetLockoutHourlyThreshold;