import * as $dara from '@darabonba/typescript'; export declare class DeleteLaunchTemplateRequest extends $dara.Model { /** * @remarks * The ID of the launch template. For more information, see [DescribeLaunchTemplates](https://help.aliyun.com/document_detail/73759.html). * * You must specify `LaunchTemplateId` or `LaunchTemplateName` to specify a launch template. * * @example * lt-bp1apo0bbbkuy0rj**** */ launchTemplateId?: string; /** * @remarks * The name of the launch template. * * You must specify `LaunchTemplateId` or `LaunchTemplateName` to specify a launch template. * * @example * testLaunchTemplateName */ launchTemplateName?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The region ID of the launch template. 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-hangzhou */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }