Skip to main content

ip_address_aggregate_settings

Creates, updates, deletes, gets or lists an ip_address_aggregate_settings resource.

Overview

Nameip_address_aggregate_settings
TypeResource
Idazure.ad_hybrid_health_service.ip_address_aggregate_settings

Fields

The following fields are returned by SELECT queries:

IP address aggregate settings.

NameDatatypeDescription
idstringUnique ID for the entree
badPasswordAndExtranetLockoutCombinedDailyThresholdintegerThis threshold setting defines the per day trigger for a new event to be generated in the report.
badPasswordAndExtranetLockoutCombinedHourlyThresholdintegerThis threshold setting defines the per hour trigger for a new event to be generated in the report.
emailNotificationEnabledbooleanA value indicating whether email notification has been enabled.
extranetLockoutDailyThresholdintegerThis threshold setting defines the per hour trigger for a new event to be generated in the report.
extranetLockoutHourlyThresholdintegerThis 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:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectserviceNameGets the IP address aggregate settings.
updateupdateserviceNameUpdates 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.

NameDatatypeDescription
serviceNamestringThe name of the service.

SELECT examples

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

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;