import * as $dara from '@darabonba/typescript'; export declare class DescribeResourceByTagsRequestTag extends $dara.Model { /** * @remarks * The tag key. * * > For best compatibility, we recommend that you use the `Tag.N.Key` parameter. * * @example * TestKey */ key?: string; /** * @remarks * The tag value. An empty string is allowed. The value can be up to 128 characters in length. * * @example * TestValue */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeResourceByTagsRequest extends $dara.Model { ownerId?: number; /** * @remarks * The page number to return. The minimum value is 1. * * Default value: 1. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. Maximum value: 100. * * Default value: 50. * * @example * 50 */ pageSize?: number; /** * @remarks * The ID of the region where the resource is located. You can call [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) to view the latest list of Alibaba Cloud regions. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The resource type. Valid values: * * - `instance`: ECS instance. * * - `disk`: disk. * * - `snapshot`: snapshot. * * - `image`: image. * * - `securitygroup`: security group. * * - `volume`: volume. * * - `eni`: elastic network interface. * * - `ddh`: dedicated host. * * - `keypair`: key pair. * * - `launchtemplate`: launch template. * * All values must be in lowercase. * * @example * instance */ resourceType?: string; /** * @remarks * The tag list. */ tag?: DescribeResourceByTagsRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }