import * as $dara from '@darabonba/typescript'; export declare class DescribeImageFromFamilyRequest extends $dara.Model { /** * @remarks * The family name of the image that you want to use to create the instances. * * You can configure image families for custom images, public images, community images, and shared images. For more information, see [Overview of image families](https://help.aliyun.com/document_detail/174241.html). * * This parameter is required. * * @example * hangzhou-daily-update */ imageFamily?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The ID of the region in which to create the custom image. 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; }); }