import * as $dara from '@darabonba/typescript'; export declare class DescribeDedicatedHostClustersRequestTag extends $dara.Model { /** * @remarks * The tag key. Valid values of N: 1 to 20. The tag key cannot be an empty string. It can be up to 64 characters in length, and can neither contain `http://` or `https://` nor `acs:` or `aliyun`. * * You can filter no more than 1,000 host groups, regardless of how many tags are used. To query more than 1,000 host groups, call the [ListTagResources](https://help.aliyun.com/document_detail/110425.html) API operation. * * @example * TestKey */ key?: string; /** * @remarks * The tag value. Valid values of N: 1 to 20. The tag value cannot be an empty string. It can be up to 64 characters in length and cannot contain `http://` or `https://`. * * @example * TestValue */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeDedicatedHostClustersRequest extends $dara.Model { /** * @remarks * The list of host group IDs. The value can be a JSON array consisting of multiple IDs in the `["dc-xxxxxxxxx", "dc-yyyyyyyyy",..., "dc-zzzzzzzzz"]` format. Separate the IDs with commas (,). * * @example * ["dc-bp12wlf6am0vz9v2****", "dc-bp12wlf6am0vz9v3****"] */ dedicatedHostClusterIds?: string; /** * @remarks * The name of the host group. * * @example * myDDHCluster */ dedicatedHostClusterName?: string; /** * @remarks * > This parameter is unavailable for use. * * @example * null */ lockReason?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The page number. * * Pages start from page 1. * * Default value: 1 * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries to return on each page. * * Valid values: 1 to 100. * * Default value: 10. * * @example * 5 */ pageSize?: 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; /** * @remarks * The resource group ID of the host group. You can use a resource group ID to filter no more than 1,000 host groups. * * > A default resource group is not supported. * * @example * rg-bp67acfmxazb4p**** */ resourceGroupId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * > This parameter is unavailable for use. * * @example * null */ status?: string; /** * @remarks * The tags of the host group. */ tag?: DescribeDedicatedHostClustersRequestTag[]; /** * @remarks * The zone ID of the host group. You can call the [DescribeZones](https://help.aliyun.com/document_detail/25610.html) operation to query the most recent zone list. * * @example * cn-hangzhou-f */ zoneId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }