import * as $dara from '@darabonba/typescript'; export declare class DescribePluginsRequestTag extends $dara.Model { /** * @remarks * The key of the tag. * * N can be an integer from 1 to 20.`` * * @example * env */ key?: string; /** * @remarks * The value of the tag. * * N can be an integer from 1 to 20.`` * * @example * \\" \\" */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribePluginsRequest extends $dara.Model { /** * @remarks * The number of the page to return. Pages start from page 1. Default value: 1. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. Maximum value: 100. Default value: 10. * * @example * 10 */ pageSize?: number; /** * @remarks * The ID of the plug-in. * * @example * a96926e82f994915a8da40a119374537 */ pluginId?: string; /** * @remarks * The name of the plug-in. * * @example * testPlugin */ pluginName?: string; /** * @remarks * The business type of the plug-in. * * @example * cors */ pluginType?: string; securityToken?: string; /** * @remarks * The tag of objects that match the lifecycle rule. You can specify multiple tags. * * @example * Key, Value */ tag?: DescribePluginsRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }