import * as $dara from '@darabonba/typescript'; export declare class DescribePortRangeListsRequestTag extends $dara.Model { /** * @remarks * The key of tag N. Valid values: 1 to 20. * * If you specify a single tag to query resources, up to 1,000 resources to which the tag is added are returned. If you specify multiple tags to query resources, up to 1,000 resources to which all specified tags are added are returned. To query more than 1,000 resources that have specified tags added, call the [ListTagResources](https://help.aliyun.com/document_detail/110425.html) operation. * * @example * key for PortRangeList */ key?: string; /** * @remarks * The value of tag N. * * @example * value for PortRangeList */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribePortRangeListsRequest extends $dara.Model { /** * @remarks * The maximum number of entries per page. * * * Maximum value: 100 * * Default value: 10. * * @example * 10 */ maxResults?: number; /** * @remarks * The pagination token that is used in the request to retrieve a new page of results. You do not need to specify this parameter for the first request. You must specify the token that is obtained from the previous query as the value of NextToken. * * @example * 727d41872117f2816343eeb432fbc5bfd21dc824589d2a4be0b5e8707e68181f */ nextToken?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The ID of the port list. Valid values of N: 0 to 100. */ portRangeListId?: string[]; /** * @remarks * The name of the port list. The name must be 2 to 128 characters in length. It must start with a letter and cannot start with http://, https://, com.aliyun, or com.alibabacloud. The name can contain letters, digits, colons (:), underscores (_), periods (.), and hyphens (-). * * @example * PortRangeListNameSample */ portRangeListName?: string; /** * @remarks * The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/2679950.html) operation to query the most recent region list. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The ID of the resource group. If you specify this parameter to query resources, up to 1,000 resources that belong to the specified resource group can be returned in the response. You can call the [ListResourceGroups](https://help.aliyun.com/document_detail/2716558.html) operation to query the most recent resource group list. * * > A default resource group is not supported. * * @example * rg-bp67acfmxazb4p**** */ resourceGroupId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The tags that are added to the port list. */ tag?: DescribePortRangeListsRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }