Skip to main content

sites_controller_health_summaries

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

Overview

Namesites_controller_health_summaries
TypeResource
Idazure.migrate.sites_controller_health_summaries

Fields

The following fields are returned by SELECT queries:

ARM operation completed successfully.

NameDatatypeDescription
affectedObjectsCountinteger (int64)Gets or sets the count of affected objects.
affectedResourceTypestringGets the affected resource type.
affectedResourcesarrayGets or sets the affected resources.
applianceNamestringGets the appliance name.
errorCodestringGets the error code.
errorIdinteger (int64)Gets the error Id.
errorMessagestringGets the error message.
fabricLayoutUpdateSourcesarrayGets or sets sources of the exception.
hitCountinteger (int64)Gets or sets the hit count of the error.
remediationGuidancestringGets the remediation guidance.
severitystringGets the severity of error.
summaryMessagestringGets the summary message.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, siteNameMethod 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.

NameDatatypeDescription
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
siteNamestringSite name
subscriptionIdstringThe ID of the target subscription.

SELECT examples

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
;