import * as $dara from '@darabonba/typescript'; export declare class ListTagResourcesRequestTag extends $dara.Model { /** * @remarks * The key of the tag. * * Valid values of N: `[1,20]`. * * @example * env */ key?: string; /** * @remarks * The value of the tag. If the parameter has a value, a value is also required for the tag key of the same N in the corresponding **tag.N.Key**. Otherwise, an error is reported. * * Valid values of N: `[1,20]`. * * @example * product */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListTagResourcesRequest extends $dara.Model { /** * @remarks * The token used to start the next query. * * @example * 1d2db86sca4384811e0b5e8707e68181f */ nextToken?: string; /** * @remarks * The ID of the resource. * * Valid values of N: `[1,50]`. * * @example * 285bb759342649a1b70c2093a772e087 */ resourceId?: string[]; /** * @remarks * The type of the resource. * * Currently, tags are supported for API groups, plug-ins, and apps. Operations performed on APIs are based on the tags of API groups. * * * **apiGroup** * * **plugin** * * **app** * * **api** * * This parameter is required. * * @example * apiGroup */ resourceType?: string; /** * @remarks * The tag of objects that match the lifecycle rule. You can specify multiple tags. */ tag?: ListTagResourcesRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }