import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Database Software Image resource in Oracle Cloud Infrastructure Database service. * * Gets information about the specified database software image. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseSoftwareImage = oci.database.getDatabaseSoftwareImage({ * databaseSoftwareImageId: testDatabaseSoftwareImageOciDatabaseDatabaseSoftwareImage.id, * }); * ``` */ export declare function getDatabaseSoftwareImage(args: GetDatabaseSoftwareImageArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDatabaseSoftwareImage. */ export interface GetDatabaseSoftwareImageArgs { /** * The DB system [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ databaseSoftwareImageId: string; } /** * A collection of values returned by getDatabaseSoftwareImage. */ export interface GetDatabaseSoftwareImageResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; readonly databaseSoftwareImageId: string; /** * List of one-off patches for Database Homes. */ readonly databaseSoftwareImageIncludedPatches: string[]; /** * List of one-off patches for Database Homes. */ readonly databaseSoftwareImageOneOffPatches: string[]; /** * The database version with which the 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 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 database software image. */ readonly id: string; /** * To what shape the image is meant for. */ readonly imageShapeFamily: string; /** * The type of software image. Can be grid or database. */ readonly imageType: string; /** * The patches included in the image and the version of the image. */ readonly includedPatchesSummary: string; /** * True if this Database software image is supported for Upgrade. */ readonly isUpgradeSupported: boolean; /** * Detailed message for the lifecycle state. */ readonly lifecycleDetails: string; /** * The output from the OPatch lsInventory command, which is passed as a string. */ readonly lsInventory: string; /** * The PSU or PBP or Release Updates. To get a list of supported versions, use the [ListDbVersions](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/DbVersionSummary/ListDbVersions) operation. */ readonly patchSet: string; readonly sourceDbHomeId: string; /** * The current state of the 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 database software image was created. */ readonly timeCreated: string; } /** * This data source provides details about a specific Database Software Image resource in Oracle Cloud Infrastructure Database service. * * Gets information about the specified database software image. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseSoftwareImage = oci.database.getDatabaseSoftwareImage({ * databaseSoftwareImageId: testDatabaseSoftwareImageOciDatabaseDatabaseSoftwareImage.id, * }); * ``` */ export declare function getDatabaseSoftwareImageOutput(args: GetDatabaseSoftwareImageOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDatabaseSoftwareImage. */ export interface GetDatabaseSoftwareImageOutputArgs { /** * The DB system [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ databaseSoftwareImageId: pulumi.Input; } //# sourceMappingURL=getDatabaseSoftwareImage.d.ts.map