import * as $dara from '@darabonba/typescript'; export declare class DescribeResourceCoverageTotalResponseBodyDataPeriodCoverage extends $dara.Model { /** * @remarks * The coverage rate of deduction plans within the specified period. * * @example * 0.1 */ coveragePercentage?: number; /** * @remarks * The period. * * The value is in the format of yyyyMMddHH. * * @example * 2020110100 */ period?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeResourceCoverageTotalResponseBodyDataTotalCoverage extends $dara.Model { /** * @remarks * The unit that is used to measure the resources deducted from deduction plans. */ capacityUnit?: string; /** * @remarks * The total coverage rate of deduction plans. * * @example * 1 */ coveragePercentage?: number; /** * @remarks * The total amount of the resources deducted from deduction plans. * * @example * 1 */ deductQuantity?: number; /** * @remarks * The total amount of resources consumed. * * @example * 1 */ totalQuantity?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeResourceCoverageTotalResponseBodyData extends $dara.Model { /** * @remarks * The information about the coverage rate of deduction plans within a period. */ periodCoverage?: DescribeResourceCoverageTotalResponseBodyDataPeriodCoverage[]; /** * @remarks * The information about the total coverage data of deduction plans. */ totalCoverage?: DescribeResourceCoverageTotalResponseBodyDataTotalCoverage; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeResourceCoverageTotalResponseBody extends $dara.Model { /** * @remarks * The status code. * * @example * Success */ code?: string; /** * @remarks * The returned data. */ data?: DescribeResourceCoverageTotalResponseBodyData; /** * @remarks * The message returned. * * @example * Successful! */ message?: string; /** * @remarks * The ID of the request. * * @example * 79EE7556-0CFD-44EB-9CD6-B3B526E3A85F */ requestId?: string; /** * @remarks * Indicates whether the operation was successful. * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }