dimensions_adds_dimensions
Creates, updates, deletes, gets or lists a dimensions_adds_dimensions
resource.
Overview
Name | dimensions_adds_dimensions |
Type | Resource |
Id | azure.ad_hybrid_health_service.dimensions_adds_dimensions |
Fields
The following fields are returned by SELECT
queries:
- list
The list of dimensions for a server.
Name | Datatype | Description |
---|---|---|
activeAlerts | integer | The count of alerts that are currently active for the service. |
additionalInformation | string | The additional information related to the service. |
displayName | string | The display name of the service. |
health | string | The health status for the domain controller. |
lastUpdated | string (date-time) | The date or time , in UTC, when the service properties were last updated. |
resolvedAlerts | integer | The total count of alerts that has been resolved for the service. |
signature | string | The signature of the service. |
simpleProperties | object | List of service specific configuration properties. |
type | string | The 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:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | serviceName , dimension | Gets 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.
Name | Datatype | Description |
---|---|---|
dimension | string | The dimension type. |
serviceName | string | The name of the service. |
SELECT
examples
- list
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
;