import * as $dara from '@darabonba/typescript'; export declare class TagResourcesRequestTag extends $dara.Model { /** * @remarks * The key of the tag. You can create N tag keys at a time. Valid values of N: 1 to 20. The value of this parameter can be an empty string. * * This parameter is required. * * @example * tag1 */ key?: string; /** * @remarks * The value of the tag N. Valid values of N: 1 to 20. * * This parameter is required. * * @example * 001 */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class TagResourcesRequest extends $dara.Model { /** * @remarks * The IDs of resources. * * This parameter is required. */ resourceId?: string[]; /** * @remarks * The type of the resource. Specify savings plan instance as the type of the resource. * * This parameter is required. * * @example * instance */ resourceType?: string; /** * @remarks * The tags. * * This parameter is required. */ tag?: TagResourcesRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }