// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DeletePortRangeListRequest extends $dara.Model { ownerAccount?: string; ownerId?: number; /** * @remarks * The ID of the port list. * * > If the port list is associated with other resources, you cannot delete the port list. You must disassociate the port list from the resources and then delete the port list. * * This parameter is required. * * @example * prl-2ze9743**** */ portRangeListId?: string; /** * @remarks * The region ID of the port list. 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 { ownerAccount: 'OwnerAccount', ownerId: 'OwnerId', portRangeListId: 'PortRangeListId', regionId: 'RegionId', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', }; } static types(): { [key: string]: any } { return { ownerAccount: 'string', ownerId: 'number', portRangeListId: 'string', regionId: 'string', resourceOwnerAccount: 'string', resourceOwnerId: 'number', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }