import * as $dara from '@darabonba/typescript'; export declare class DescribeImagePipelinesRequestTag extends $dara.Model { /** * @remarks * The key of a tag. Up to 20 tags are supported. * * @example * TestKey */ key?: string; /** * @remarks * The value of a tag. Up to 20 tags are supported. * * @example * TestValue */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeImagePipelinesRequest extends $dara.Model { /** * @remarks * The IDs of the image pipelines. You can specify up to 20 IDs. * * @example * ip-2ze5tsl5bp6nf2b3**** */ imagePipelineId?: string[]; /** * @remarks * The number of entries to return per page. Valid values: 1 to 500. * * Default value: 50. * * @example * 50 */ maxResults?: number; /** * @remarks * The name of the image pipeline. * * @example * testImagePipeline */ name?: string; /** * @remarks * The pagination token. To retrieve the next page of results, set this parameter to the `NextToken` value from the previous response. Omit this parameter on your first request. * * @example * AAAAAdDWBF2**** */ nextToken?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The ID of the region. 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; /** * @remarks * The resource group ID. If you use this parameter for filtering, you can query a maximum of 1,000 resources. * * > Filtering by the default resource group is not supported. * * @example * rg-bp67acfmxazb4p**** */ resourceGroupId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * A list of tags. */ tag?: DescribeImagePipelinesRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }