import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about existing Images within a Resource Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.compute.getImages({ * resourceGroupName: "example-resources", * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Compute` - 2022-03-01 */ export declare function getImages(args: GetImagesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getImages. */ export interface GetImagesArgs { /** * The name of the Resource Group in which the Image exists. */ resourceGroupName: string; /** * A mapping of tags to filter the list of images against. */ tagsFilter?: { [key: string]: string; }; } /** * A collection of values returned by getImages. */ export interface GetImagesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * One or more `images` blocks as defined below: */ readonly images: outputs.compute.GetImagesImage[]; readonly resourceGroupName: string; readonly tagsFilter?: { [key: string]: string; }; } /** * Use this data source to access information about existing Images within a Resource Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.compute.getImages({ * resourceGroupName: "example-resources", * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Compute` - 2022-03-01 */ export declare function getImagesOutput(args: GetImagesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getImages. */ export interface GetImagesOutputArgs { /** * The name of the Resource Group in which the Image exists. */ resourceGroupName: pulumi.Input; /** * A mapping of tags to filter the list of images against. */ tagsFilter?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }