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 Autonomous Database Software Images in Oracle Cloud Infrastructure Database service. * * Gets a list of the Autonomous AI Database Software Images in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAutonomousDatabaseSoftwareImages = oci.database.getAutonomousDatabaseSoftwareImages({ * compartmentId: compartmentId, * imageShapeFamily: autonomousDatabaseSoftwareImageImageShapeFamily, * displayName: autonomousDatabaseSoftwareImageDisplayName, * state: autonomousDatabaseSoftwareImageState, * }); * ``` */ export declare function getAutonomousDatabaseSoftwareImages(args: GetAutonomousDatabaseSoftwareImagesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAutonomousDatabaseSoftwareImages. */ export interface GetAutonomousDatabaseSoftwareImagesArgs { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. The match is not case sensitive. */ displayName?: string; filters?: inputs.Database.GetAutonomousDatabaseSoftwareImagesFilter[]; /** * A filter to return only resources that match the given image shape family exactly. */ imageShapeFamily: string; /** * A filter to return only resources that match the given lifecycle state exactly. */ state?: string; } /** * A collection of values returned by getAutonomousDatabaseSoftwareImages. */ export interface GetAutonomousDatabaseSoftwareImagesResult { /** * The list of autonomous_database_software_image_collection. */ readonly autonomousDatabaseSoftwareImageCollections: outputs.Database.GetAutonomousDatabaseSoftwareImagesAutonomousDatabaseSoftwareImageCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * The user-friendly name for the Autonomous AI Database Software Image. The name does not have to be unique. */ readonly displayName?: string; readonly filters?: outputs.Database.GetAutonomousDatabaseSoftwareImagesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * To what shape the image is meant for. */ readonly imageShapeFamily: string; /** * The current state of the Autonomous AI Database Software Image. */ readonly state?: string; } /** * This data source provides the list of Autonomous Database Software Images in Oracle Cloud Infrastructure Database service. * * Gets a list of the Autonomous AI Database Software Images in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAutonomousDatabaseSoftwareImages = oci.database.getAutonomousDatabaseSoftwareImages({ * compartmentId: compartmentId, * imageShapeFamily: autonomousDatabaseSoftwareImageImageShapeFamily, * displayName: autonomousDatabaseSoftwareImageDisplayName, * state: autonomousDatabaseSoftwareImageState, * }); * ``` */ export declare function getAutonomousDatabaseSoftwareImagesOutput(args: GetAutonomousDatabaseSoftwareImagesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAutonomousDatabaseSoftwareImages. */ export interface GetAutonomousDatabaseSoftwareImagesOutputArgs { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. The match is not case sensitive. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match the given image shape family exactly. */ imageShapeFamily: pulumi.Input; /** * A filter to return only resources that match the given lifecycle state exactly. */ state?: pulumi.Input; } //# sourceMappingURL=getAutonomousDatabaseSoftwareImages.d.ts.map