import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Autonomous Database Software Image resource in Oracle Cloud Infrastructure Database service. * * Gets information about the specified Autonomous AI Database Software Image. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAutonomousDatabaseSoftwareImage = oci.database.getAutonomousDatabaseSoftwareImage({ * autonomousDatabaseSoftwareImageId: testAutonomousDatabaseSoftwareImageOciDatabaseAutonomousDatabaseSoftwareImage.id, * }); * ``` */ export declare function getAutonomousDatabaseSoftwareImage(args: GetAutonomousDatabaseSoftwareImageArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAutonomousDatabaseSoftwareImage. */ export interface GetAutonomousDatabaseSoftwareImageArgs { /** * The Autonomous AI Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ autonomousDatabaseSoftwareImageId: string; } /** * A collection of values returned by getAutonomousDatabaseSoftwareImage. */ export interface GetAutonomousDatabaseSoftwareImageResult { readonly autonomousDatabaseSoftwareImageId: string; /** * One-off patches included in the Autonomous AI Database Software Image */ readonly autonomousDsiOneOffPatches: string[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * The database version with which the Autonomous AI Database Software Image is to be built. */ readonly databaseVersion: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ readonly definedTags: { [key: string]: string; }; /** * The user-friendly name for the Autonomous AI Database Software Image. The name does not have to be unique. */ readonly displayName: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous AI Database Software Image. */ readonly id: string; /** * To what shape the image is meant for. */ readonly imageShapeFamily: string; /** * Detailed message for the lifecycle state. */ readonly lifecycleDetails: string; /** * The Release Updates. */ readonly releaseUpdate: string; readonly sourceCdbId: string; /** * The current state of the Autonomous AI Database Software Image. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ readonly systemTags: { [key: string]: string; }; /** * The date and time the Autonomous AI Database Software Image was created. */ readonly timeCreated: string; } /** * This data source provides details about a specific Autonomous Database Software Image resource in Oracle Cloud Infrastructure Database service. * * Gets information about the specified Autonomous AI Database Software Image. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAutonomousDatabaseSoftwareImage = oci.database.getAutonomousDatabaseSoftwareImage({ * autonomousDatabaseSoftwareImageId: testAutonomousDatabaseSoftwareImageOciDatabaseAutonomousDatabaseSoftwareImage.id, * }); * ``` */ export declare function getAutonomousDatabaseSoftwareImageOutput(args: GetAutonomousDatabaseSoftwareImageOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAutonomousDatabaseSoftwareImage. */ export interface GetAutonomousDatabaseSoftwareImageOutputArgs { /** * The Autonomous AI Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ autonomousDatabaseSoftwareImageId: pulumi.Input; } //# sourceMappingURL=getAutonomousDatabaseSoftwareImage.d.ts.map