import * as $dara from '@darabonba/typescript'; export declare class QuerySavingsPlansInstanceRequestTag extends $dara.Model { /** * @remarks * The key of the tag to query. * * @example * ecs */ key?: string; /** * @remarks * The value of the tag to query. * * @example * 001 */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QuerySavingsPlansInstanceRequest extends $dara.Model { commodityCode?: string; /** * @remarks * The end of the time range to query. Specify the time in the format of yyyy-MM-dd HH:mm:ss. * * @example * 2021-01-01 00:00:00 */ endTime?: string; /** * @remarks * The ID of the savings plan instance. * * @example * spn-xxxxxxx */ instanceId?: string; /** * @remarks * The language of the return data. Valid values: * * * ZH: Chinese * * EN: English * * @example * ZH */ locale?: string; /** * @remarks * The number of the page to return. * * @example * 1 */ pageNum?: number; /** * @remarks * The number of entries to return on each page. * * @example * 20 */ pageSize?: number; /** * @remarks * The beginning of the time range to query. Specify the time in the format of yyyy-MM-dd HH:mm:ss. * * @example * 2020-01-01 00:00:00 */ startTime?: string; /** * @remarks * The status of the Instance. * * * NORMAL * * RELEASE * * @example * NORMAL */ status?: string; /** * @remarks * The tags. */ tag?: QuerySavingsPlansInstanceRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }