// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export 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 } { return { imageFamily: 'ImageFamily', ownerAccount: 'OwnerAccount', ownerId: 'OwnerId', regionId: 'RegionId', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', }; } static types(): { [key: string]: any } { return { imageFamily: 'string', ownerAccount: 'string', ownerId: 'number', regionId: 'string', resourceOwnerAccount: 'string', resourceOwnerId: 'number', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }