import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { Images } from "../operationsInterfaces"; import { DevCenterClient } from "../devCenterClient"; import { Image, ImagesListByDevCenterOptionalParams, ImagesListByGalleryOptionalParams, ImagesGetOptionalParams, ImagesGetResponse } from "../models"; /** Class containing Images operations. */ export declare class ImagesImpl implements Images { private readonly client; /** * Initialize a new instance of the class Images class. * @param client Reference to the service client */ constructor(client: DevCenterClient); /** * Lists images for a devcenter. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param devCenterName The name of the devcenter. * @param options The options parameters. */ listByDevCenter(resourceGroupName: string, devCenterName: string, options?: ImagesListByDevCenterOptionalParams): PagedAsyncIterableIterator; private listByDevCenterPagingPage; private listByDevCenterPagingAll; /** * Lists images for a gallery. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param devCenterName The name of the devcenter. * @param galleryName The name of the gallery. * @param options The options parameters. */ listByGallery(resourceGroupName: string, devCenterName: string, galleryName: string, options?: ImagesListByGalleryOptionalParams): PagedAsyncIterableIterator; private listByGalleryPagingPage; private listByGalleryPagingAll; /** * Lists images for a devcenter. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param devCenterName The name of the devcenter. * @param options The options parameters. */ private _listByDevCenter; /** * Lists images for a gallery. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param devCenterName The name of the devcenter. * @param galleryName The name of the gallery. * @param options The options parameters. */ private _listByGallery; /** * Gets a gallery image. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param devCenterName The name of the devcenter. * @param galleryName The name of the gallery. * @param imageName The name of the image. * @param options The options parameters. */ get(resourceGroupName: string, devCenterName: string, galleryName: string, imageName: string, options?: ImagesGetOptionalParams): Promise; /** * ListByDevCenterNext * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param devCenterName The name of the devcenter. * @param nextLink The nextLink from the previous successful call to the ListByDevCenter method. * @param options The options parameters. */ private _listByDevCenterNext; /** * ListByGalleryNext * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param devCenterName The name of the devcenter. * @param galleryName The name of the gallery. * @param nextLink The nextLink from the previous successful call to the ListByGallery method. * @param options The options parameters. */ private _listByGalleryNext; } //# sourceMappingURL=images.d.ts.map