import * as $dara from '@darabonba/typescript'; export declare class RemoveTagsRequestTag extends $dara.Model { /** * @remarks * The key of tag N. Valid values of N: 1 to 20. The tag key cannot be an empty string. The tag key can be up to 64 characters in length and cannot contain [http:// or https://](http://https://。). The tag key cannot start with acs: or aliyun. * * @example * TestKey */ key?: string; /** * @remarks * The value of tag N. Valid values of N: 1 to 20. The tag value can be an empty string. The tag value can be up to 128 characters in length and cannot contain [http:// or https://](http://https://。). The tag value cannot start with acs: or aliyun. * * @example * TestValue */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class RemoveTagsRequest extends $dara.Model { ownerId?: number; /** * @remarks * The region ID of the resource. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list. * * This parameter is required. * * @example * cn-shenzhen */ regionId?: string; /** * @remarks * The ID of the resource. For example, if you set ResourceType to instance, you must set this parameter to the ID of the related instance. * * This parameter is required. * * @example * s-946ntx4**** */ resourceId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The type of the resource. Valid values: * * * instance * * disk * * snapshot * * image * * securitygroup * * volume * * eni * * ddh * * keypair * * launchtemplate * * reservedinstance * * snapshotpolicy * * All values must be in lowercase. * * This parameter is required. * * @example * snapshot */ resourceType?: string; /** * @remarks * The tags. */ tag?: RemoveTagsRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }