Skip to main content

services_premiums

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

Overview

Nameservices_premiums
TypeResource
Idazure.ad_hybrid_health_service.services_premiums

Fields

The following fields are returned by SELECT queries:

The list of premium services.

NameDatatypeDescription
idstringThe id of the service.
activeAlertsintegerThe count of alerts that are currently active for the service.
additionalInformationstringThe additional information related to the service.
createdDatestring (date-time)The date and time, in UTC, when the service was onboarded to Azure Active Directory Connect Health.
customNotificationEmailsarrayThe list of additional emails that are configured to receive notifications about the service.
disabledbooleanIndicates if the service is disabled or not.
displayNamestringThe display name of the service.
healthstringThe health of the service.
lastDisabledstring (date-time)The date and time, in UTC, when the service was last disabled.
lastUpdatedstring (date-time)The date or time , in UTC, when the service properties were last updated.
monitoringConfigurationsComputedobjectThe monitoring configuration of the service which determines what activities are monitored by Azure Active Directory Connect Health.
monitoringConfigurationsCustomizedobjectThe customized monitoring configuration of the service which determines what activities are monitored by Azure Active Directory Connect Health.
notificationEmailEnabledbooleanIndicates if email notification is enabled or not.
notificationEmailEnabledForGlobalAdminsbooleanIndicates if email notification is enabled for global administrators of the tenant.
notificationEmailsarrayThe list of emails to whom service notifications will be sent.
notificationEmailsEnabledForGlobalAdminsbooleanIndicates if email notification is enabled for global administrators of the tenant.
originalDisabledStatebooleanGets the original disable state.
resolvedAlertsintegerThe total count of alerts that has been resolved for the service.
serviceIdstringThe id of the service.
serviceNamestringThe name of the service.
signaturestringThe signature of the service.
simplePropertiesobjectList of service specific configuration properties.
tenantIdstringThe id of the tenant to which the service is registered to.
typestringThe service type for the services onboarded to Azure Active Directory Connect Health. Depending on whether the service is monitoring, ADFS, Sync or ADDS roles, the service type can either be AdFederationService or AadSyncService or AdDomainService.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselect$filter, serviceType, skipCount, takeCountGets the details of services for a tenant having Azure AD Premium license and is onboarded to Azure Active Directory Connect Health.

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
$filterstringThe service property filter to apply.
serviceTypestringThe service type for the services onboarded to Azure Active Directory Connect Health. Depending on whether the service is monitoring, ADFS, Sync or ADDS roles, the service type can either be AdFederationService or AadSyncService or AdDomainService.
skipCountintegerThe skip count, which specifies the number of elements that can be bypassed from a sequence and then return the remaining elements.
takeCountintegerThe take count , which specifies the number of elements that can be returned from a sequence.

SELECT examples

Gets the details of services for a tenant having Azure AD Premium license and is onboarded to Azure Active Directory Connect Health.

SELECT
id,
activeAlerts,
additionalInformation,
createdDate,
customNotificationEmails,
disabled,
displayName,
health,
lastDisabled,
lastUpdated,
monitoringConfigurationsComputed,
monitoringConfigurationsCustomized,
notificationEmailEnabled,
notificationEmailEnabledForGlobalAdmins,
notificationEmails,
notificationEmailsEnabledForGlobalAdmins,
originalDisabledState,
resolvedAlerts,
serviceId,
serviceName,
signature,
simpleProperties,
tenantId,
type
FROM azure.ad_hybrid_health_service.services_premiums
WHERE $filter = '{{ $filter }}'
AND serviceType = '{{ serviceType }}'
AND skipCount = '{{ skipCount }}'
AND takeCount = '{{ takeCount }}'
;