import * as pulumi from "@pulumi/pulumi"; export declare class Image extends pulumi.CustomResource { /** * Get an existing Image resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ImageState, opts?: pulumi.CustomResourceOptions): Image; /** * Returns true if the given object is an instance of Image. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Image; /** * @SUMMARY Foreman representation of image. */ readonly __meta_: pulumi.Output; /** * ID of the architecture in Foreman */ readonly architectureId: pulumi.Output; /** * ID of the compute resource in Foreman */ readonly computeResourceId: pulumi.Output; /** * Name of the image to be used in Foreman */ readonly name: pulumi.Output; /** * ID of the operating system in Foreman */ readonly operatingsystemId: pulumi.Output; /** * Does the image support user data (cloud-init etc.)? */ readonly userData: pulumi.Output; /** * Username used to log into the newly created machine that is based on this image */ readonly username: pulumi.Output; /** * UUID of the image from the compute resource */ readonly uuid: pulumi.Output; /** * Create a Image resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ImageArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Image resources. */ export interface ImageState { /** * @SUMMARY Foreman representation of image. */ __meta_?: pulumi.Input; /** * ID of the architecture in Foreman */ architectureId?: pulumi.Input; /** * ID of the compute resource in Foreman */ computeResourceId?: pulumi.Input; /** * Name of the image to be used in Foreman */ name?: pulumi.Input; /** * ID of the operating system in Foreman */ operatingsystemId?: pulumi.Input; /** * Does the image support user data (cloud-init etc.)? */ userData?: pulumi.Input; /** * Username used to log into the newly created machine that is based on this image */ username?: pulumi.Input; /** * UUID of the image from the compute resource */ uuid?: pulumi.Input; } /** * The set of arguments for constructing a Image resource. */ export interface ImageArgs { /** * ID of the architecture in Foreman */ architectureId: pulumi.Input; /** * ID of the compute resource in Foreman */ computeResourceId: pulumi.Input; /** * Name of the image to be used in Foreman */ name?: pulumi.Input; /** * ID of the operating system in Foreman */ operatingsystemId: pulumi.Input; /** * Does the image support user data (cloud-init etc.)? */ userData?: pulumi.Input; /** * Username used to log into the newly created machine that is based on this image */ username: pulumi.Input; /** * UUID of the image from the compute resource */ uuid: pulumi.Input; }