Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

IssueGroupStats

import type { IssueGroupStats } from "https://googleapis.deno.dev/v1/databasecenter:v1beta.ts";

IssueGroupStats refers to stats for a particulare combination of relevant health issues of database resources.

interface IssueGroupStats {
displayName?: string;
healthyResourceGroupsCount?: number;
healthyResourcesCount?: number;
issueStats?: IssueStats[];
resourceGroupsCount?: number;
resourcesCount?: number;
}

§Properties

§
displayName?: string
[src]

Database resource level health card name. This will corresponds to one of the requested input group names.

§
healthyResourceGroupsCount?: number
[src]

The number of resource groups from the total groups as defined above that are healthy with respect to all of the specified issues.

§
healthyResourcesCount?: number
[src]

The number of resources from the total defined above in field total_resources_count that are healthy with respect to all of the specified issues.

§
issueStats?: IssueStats[]
[src]

List of issues stats containing count of resources having particular issue category.

§
resourceGroupsCount?: number
[src]

Total count of the groups of resources returned by the filter that also have one or more resources for which any of the specified issues are applicable.

§
resourcesCount?: number
[src]

Total count of resources returned by the filter for which any of the specified issues are applicable.