// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DescribeDedicatedHostAutoRenewRequest extends $dara.Model { /** * @remarks * The ID of the dedicated host. You can specify up to 100 subscription dedicated host IDs. Separate multiple IDs with commas (,). * * This parameter is required. * * @example * dh-bp165p6xk2tlw61e****,dh-bp1f9vxmno**** */ dedicatedHostIds?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The ID of the region where the dedicated host resides. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; static names(): { [key: string]: string } { return { dedicatedHostIds: 'DedicatedHostIds', ownerAccount: 'OwnerAccount', ownerId: 'OwnerId', regionId: 'RegionId', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', }; } static types(): { [key: string]: any } { return { dedicatedHostIds: 'string', ownerAccount: 'string', ownerId: 'number', regionId: 'string', resourceOwnerAccount: 'string', resourceOwnerId: 'number', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }