import * as $dara from '@darabonba/typescript'; export declare class DescribeBackendListRequestTag extends $dara.Model { /** * @remarks * The key of the tag. * * @example * test1 */ key?: string; /** * @remarks * The value of the tag. * * @example * value */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeBackendListRequest extends $dara.Model { /** * @remarks * The name of the backend service. You can use \\* to perform fuzzy queries. * * @example * test */ backendName?: string; /** * @remarks * The type of the backend service. * * @example * HTTP */ backendType?: string; /** * @remarks * The number of the current page. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries to return on each page. * * @example * 10 */ pageSize?: number; securityToken?: string; /** * @remarks * The list of the tag. */ tag?: DescribeBackendListRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }