import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Appliance Image resource in Oracle Cloud Infrastructure Cloud Bridge service. * * Returns a list of Appliance Images. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testApplianceImage = oci.cloudbridge.getApplianceImage({ * compartmentId: compartmentId, * displayName: applianceImageDisplayName, * }); * ``` */ export declare function getApplianceImage(args: GetApplianceImageArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getApplianceImage. */ export interface GetApplianceImageArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; } /** * A collection of values returned by getApplianceImage. */ export interface GetApplianceImageResult { readonly compartmentId: string; /** * The name of the image to be displayed. */ readonly displayName?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * List of appliance images. */ readonly items: outputs.CloudBridge.GetApplianceImageItem[]; } /** * This data source provides details about a specific Appliance Image resource in Oracle Cloud Infrastructure Cloud Bridge service. * * Returns a list of Appliance Images. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testApplianceImage = oci.cloudbridge.getApplianceImage({ * compartmentId: compartmentId, * displayName: applianceImageDisplayName, * }); * ``` */ export declare function getApplianceImageOutput(args: GetApplianceImageOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getApplianceImage. */ export interface GetApplianceImageOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; } //# sourceMappingURL=getApplianceImage.d.ts.map