// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DescribeDeploymentSetSupportedInstanceTypeFamilyRequest extends $dara.Model { ownerAccount?: string; ownerId?: number; /** * @remarks * The region ID. 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; /** * @remarks * The deployment strategy. Valid values: * * * Availability: high availability strategy * * AvailabilityGroup: high availability group strategy * * LowLatency: low latency strategy * * Default value: Availability. * * @example * Availability */ strategy?: string; static names(): { [key: string]: string } { return { ownerAccount: 'OwnerAccount', ownerId: 'OwnerId', regionId: 'RegionId', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', strategy: 'Strategy', }; } static types(): { [key: string]: any } { return { ownerAccount: 'string', ownerId: 'number', regionId: 'string', resourceOwnerAccount: 'string', resourceOwnerId: 'number', strategy: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }