Skip to main content

dimensions_adds_dimensions

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

Overview

Namedimensions_adds_dimensions
TypeResource
Idazure.ad_hybrid_health_service.dimensions_adds_dimensions

Fields

The following fields are returned by SELECT queries:

The list of dimensions for a server.

NameDatatypeDescription
activeAlertsintegerThe count of alerts that are currently active for the service.
additionalInformationstringThe additional information related to the service.
displayNamestringThe display name of the service.
healthstringThe health status for the domain controller.
lastUpdatedstring (date-time)The date or time , in UTC, when the service properties were last updated.
resolvedAlertsintegerThe total count of alerts that has been resolved for the service.
signaturestringThe signature of the service.
simplePropertiesobjectList of service specific configuration properties.
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
listselectserviceName, dimensionGets the dimensions for a given dimension type in a server.

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
dimensionstringThe dimension type.
serviceNamestringThe name of the service.

SELECT examples

Gets the dimensions for a given dimension type in a server.

SELECT
activeAlerts,
additionalInformation,
displayName,
health,
lastUpdated,
resolvedAlerts,
signature,
simpleProperties,
type
FROM azure.ad_hybrid_health_service.dimensions_adds_dimensions
WHERE serviceName = '{{ serviceName }}' -- required
AND dimension = '{{ dimension }}' -- required
;