sites_controller_health_summaries
Creates, updates, deletes, gets or lists a sites_controller_health_summaries resource.
Overview
| Name | sites_controller_health_summaries |
| Type | Resource |
| Id | azure.migrate.sites_controller_health_summaries |
Fields
The following fields are returned by SELECT queries:
- list
ARM operation completed successfully.
| Name | Datatype | Description |
|---|---|---|
affectedObjectsCount | integer (int64) | Gets or sets the count of affected objects. |
affectedResourceType | string | Gets the affected resource type. |
affectedResources | array | Gets or sets the affected resources. |
applianceName | string | Gets the appliance name. |
errorCode | string | Gets the error code. |
errorId | integer (int64) | Gets the error Id. |
errorMessage | string | Gets the error message. |
fabricLayoutUpdateSources | array | Gets or sets sources of the exception. |
hitCount | integer (int64) | Gets or sets the hit count of the error. |
remediationGuidance | string | Gets the remediation guidance. |
severity | string | Gets the severity of error. |
summaryMessage | string | Gets the summary message. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, resourceGroupName, siteName | Method to get site health summary. |
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 |
|---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
siteName | string | Site name |
subscriptionId | string | The ID of the target subscription. |
SELECT examples
- list
Method to get site health summary.
SELECT
affectedObjectsCount,
affectedResourceType,
affectedResources,
applianceName,
errorCode,
errorId,
errorMessage,
fabricLayoutUpdateSources,
hitCount,
remediationGuidance,
severity,
summaryMessage
FROM azure.migrate.sites_controller_health_summaries
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND siteName = '{{ siteName }}' -- required
;