ip_address_aggregate_settings
Creates, updates, deletes, gets or lists a ip_address_aggregate_settings
resource.
Overview
Name | ip_address_aggregate_settings |
Type | Resource |
Id | azure.ad_hybrid_health_service.ip_address_aggregate_settings |
Fields
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | serviceName | Gets the IP address aggregate settings. |
update | UPDATE | serviceName | Updates 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 }}';