import * as $dara from '@darabonba/typescript'; export declare class ModifyDedicatedHostClusterAttributeRequest extends $dara.Model { /** * @remarks * The ID of the host group. * * This parameter is required. * * @example * dc-bp12wlf6am0vz9v2**** */ dedicatedHostClusterId?: string; /** * @remarks * The name of the host group. It must be 2 to 128 characters in length and start with a letter. It can contain letters, digits, periods (.), underscores (_), and hyphens (-), and cannot contain `http://` or `https://`. * * @example * newClusterName */ dedicatedHostClusterName?: string; /** * @remarks * The description of the host group. It must be 2 to 256 characters in length, and cannot start with `http://` or `https://`. * * @example * newClusterDescription */ description?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The region ID of the host group. 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; }); }