Package version:

Base class to define the health summary of the resources contained under an Arm resource.

interface ResourceHealthSummary {
    categorizedResourceCounts?: {
        [propertyName: string]: number;
    };
    issues?: HealthErrorSummary[];
    resourceCount?: number;
}

Properties

categorizedResourceCounts?: {
    [propertyName: string]: number;
}

The categorized resource counts.

The list of summary of health errors across the resources under the container.

resourceCount?: number

The count of total resources under the container.