Package version:

class to define the summary of the health error details.

interface HealthErrorSummary {
    affectedResourceCorrelationIds?: string[];
    affectedResourceSubtype?: string;
    affectedResourceType?: string;
    category?: string;
    severity?: string;
    summaryCode?: string;
    summaryMessage?: string;
}

Properties

affectedResourceCorrelationIds?: string[]

The list of affected resource correlation Ids. This can be used to uniquely identify the count of items affected by a specific category and severity as well as count of item affected by an specific issue.

affectedResourceSubtype?: string

The sub type of any subcomponent within the ARM resource that this might be applicable. Value remains null if not applicable.

affectedResourceType?: string

The type of affected ARM resource.

category?: string

The category of the health error.

severity?: string

Severity of error.

summaryCode?: string

The code of the health error.

summaryMessage?: string

The summary message of the health error.