import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get available images in the given public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const images = ovh.CloudProject.getImages({ * serviceName: "", * region: "WAW1", * osType: "linux", * }); * ``` */ export declare function getImages(args: GetImagesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getImages. */ export interface GetImagesArgs { /** * Get compatible images with flavor type */ flavorType?: string; /** * Image OS (Allowed values: baremetal-linux ┃ bsd ┃ linux ┃ windows) */ osType?: string; /** * Image region */ region?: string; /** * Public cloud project ID */ serviceName: string; } /** * A collection of values returned by getImages. */ export interface GetImagesResult { /** * Get compatible images with flavor type */ readonly flavorType: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly images: outputs.CloudProject.GetImagesImage[]; /** * Image OS (Allowed values: baremetal-linux ┃ bsd ┃ linux ┃ windows) */ readonly osType: string; /** * Image region */ readonly region: string; /** * Public cloud project ID */ readonly serviceName: string; } /** * Get available images in the given public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const images = ovh.CloudProject.getImages({ * serviceName: "", * region: "WAW1", * osType: "linux", * }); * ``` */ export declare function getImagesOutput(args: GetImagesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getImages. */ export interface GetImagesOutputArgs { /** * Get compatible images with flavor type */ flavorType?: pulumi.Input; /** * Image OS (Allowed values: baremetal-linux ┃ bsd ┃ linux ┃ windows) */ osType?: pulumi.Input; /** * Image region */ region?: pulumi.Input; /** * Public cloud project ID */ serviceName: pulumi.Input; }