import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleImage = cloudflare.getImage({ * accountId: "023e105f4ecef8ad9ca31a8372d0c353", * imageId: "image_id", * }); * ``` */ export declare function getImage(args: GetImageArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getImage. */ export interface GetImageArgs { /** * Account identifier tag. */ accountId: string; /** * Image unique identifier. */ imageId: string; } /** * A collection of values returned by getImage. */ export interface GetImageResult { /** * Account identifier tag. */ readonly accountId: string; /** * Image file name. */ readonly filename: string; /** * Image unique identifier. */ readonly id: string; /** * Image unique identifier. */ readonly imageId: string; /** * User modifiable key-value store. Can be used for keeping references to another system of record for managing images. Metadata must not exceed 1024 bytes. */ readonly meta: string; /** * Indicates whether the image can be a accessed only using it's UID. If set to true, a signed token needs to be generated with a signing key to view the image. */ readonly requireSignedUrls: boolean; /** * When the media item was uploaded. */ readonly uploaded: string; /** * Object specifying available variants for an image. */ readonly variants: string[]; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleImage = cloudflare.getImage({ * accountId: "023e105f4ecef8ad9ca31a8372d0c353", * imageId: "image_id", * }); * ``` */ export declare function getImageOutput(args: GetImageOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getImage. */ export interface GetImageOutputArgs { /** * Account identifier tag. */ accountId: pulumi.Input; /** * Image unique identifier. */ imageId: pulumi.Input; }