Skip to main content

ip_address_aggregate_settings

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

Overview

Nameip_address_aggregate_settings
TypeResource
Idazure.ad_hybrid_health_service.ip_address_aggregate_settings

Fields

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

NameAccessible byRequired ParamsDescription
listSELECTserviceNameGets the IP address aggregate settings.
updateUPDATEserviceNameUpdates the IP address aggregate settings alert thresholds.

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 }}';

UPDATE example

Updates a ip_address_aggregate_settings resource.

/*+ update */
UPDATE azure.ad_hybrid_health_service.ip_address_aggregate_settings
SET
id = '{{ id }}',
badPasswordAndExtranetLockoutCombinedDailyThreshold = '{{ badPasswordAndExtranetLockoutCombinedDailyThreshold }}',
badPasswordAndExtranetLockoutCombinedHourlyThreshold = '{{ badPasswordAndExtranetLockoutCombinedHourlyThreshold }}',
extranetLockoutDailyThreshold = '{{ extranetLockoutDailyThreshold }}',
extranetLockoutHourlyThreshold = '{{ extranetLockoutHourlyThreshold }}',
emailNotificationEnabled = true|false
WHERE
serviceName = '{{ serviceName }}';