// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export 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 } { return { launchTemplateId: 'LaunchTemplateId', launchTemplateName: 'LaunchTemplateName', ownerAccount: 'OwnerAccount', ownerId: 'OwnerId', regionId: 'RegionId', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', }; } static types(): { [key: string]: any } { return { launchTemplateId: 'string', launchTemplateName: 'string', ownerAccount: 'string', ownerId: 'number', regionId: 'string', resourceOwnerAccount: 'string', resourceOwnerId: 'number', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }