import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Appliance Images 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 testApplianceImages = oci.cloudbridge.getApplianceImages({ * compartmentId: compartmentId, * displayName: applianceImageDisplayName, * }); * ``` */ export declare function getApplianceImages(args: GetApplianceImagesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getApplianceImages. */ export interface GetApplianceImagesArgs { /** * 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; filters?: inputs.CloudBridge.GetApplianceImagesFilter[]; } /** * A collection of values returned by getApplianceImages. */ export interface GetApplianceImagesResult { /** * The list of appliance_image_collection. */ readonly applianceImageCollections: outputs.CloudBridge.GetApplianceImagesApplianceImageCollection[]; readonly compartmentId: string; /** * The name of the image to be displayed. */ readonly displayName?: string; readonly filters?: outputs.CloudBridge.GetApplianceImagesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Appliance Images 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 testApplianceImages = oci.cloudbridge.getApplianceImages({ * compartmentId: compartmentId, * displayName: applianceImageDisplayName, * }); * ``` */ export declare function getApplianceImagesOutput(args: GetApplianceImagesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getApplianceImages. */ export interface GetApplianceImagesOutputArgs { /** * 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; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getApplianceImages.d.ts.map