import * as $dara from '@darabonba/typescript'; export declare class DescribeDiagnosticMetricSetsResponseBodyMetricSets extends $dara.Model { /** * @remarks * The description of the diagnostic metric set. * * @example * connection issue diagnostics */ description?: string; /** * @remarks * The IDs of the diagnostic metrics. */ metricIds?: string[]; /** * @remarks * The ID of the diagnostic metric set. * * @example * dms-bp17p0qwtr72zmu***** */ metricSetId?: string; /** * @remarks * The name of the diagnostic metric set. * * @example * connection issue diagnostics */ metricSetName?: string; /** * @remarks * The resource type supported by the diagnostic metric set. * * @example * instance */ resourceType?: string; /** * @remarks * The type of the diagnostic metric set. Valid values: * * * User: user-defined diagnostic metric set * * Common: common diagnostic metric set * * @example * User */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeDiagnosticMetricSetsResponseBody extends $dara.Model { /** * @remarks * The diagnostic metric sets. */ metricSets?: DescribeDiagnosticMetricSetsResponseBodyMetricSets[]; /** * @remarks * A pagination token. It can be used in the next request to retrieve a new page of results. * * @example * caeba0bbb2be03f84eb48b699f0a4883 */ nextToken?: string; /** * @remarks * The request ID. * * @example * 473469C7-AA6F-4DC5-B3DB-A3DC0DE***** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }