import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Exadb Vm Cluster Update resource in Oracle Cloud Infrastructure Database service. * * Gets information about a specified maintenance update package for a Exadata VM cluster on Exascale Infrastructure. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExadbVmClusterUpdate = oci.database.getExadbVmClusterUpdate({ * exadbVmClusterId: testExadbVmCluster.id, * updateId: testUpdate.id, * }); * ``` */ export declare function getExadbVmClusterUpdate(args: GetExadbVmClusterUpdateArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExadbVmClusterUpdate. */ export interface GetExadbVmClusterUpdateArgs { /** * The Exadata VM cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) on Exascale Infrastructure. */ exadbVmClusterId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the maintenance update. */ updateId: string; } /** * A collection of values returned by getExadbVmClusterUpdate. */ export interface GetExadbVmClusterUpdateResult { /** * The possible actions performed by the update operation on the infrastructure components. */ readonly availableActions: string[]; /** * Details of the maintenance update package. */ readonly description: string; readonly exadbVmClusterId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The previous update action performed. */ readonly lastAction: string; /** * Descriptive text providing additional details about the lifecycle state. */ readonly lifecycleDetails: string; /** * The current state of the maintenance update. Dependent on value of `lastAction`. */ readonly state: string; /** * The date and time the maintenance update was released. */ readonly timeReleased: string; readonly updateId: string; /** * The type of cloud VM cluster maintenance update. */ readonly updateType: string; /** * The version of the maintenance update package. */ readonly version: string; } /** * This data source provides details about a specific Exadb Vm Cluster Update resource in Oracle Cloud Infrastructure Database service. * * Gets information about a specified maintenance update package for a Exadata VM cluster on Exascale Infrastructure. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExadbVmClusterUpdate = oci.database.getExadbVmClusterUpdate({ * exadbVmClusterId: testExadbVmCluster.id, * updateId: testUpdate.id, * }); * ``` */ export declare function getExadbVmClusterUpdateOutput(args: GetExadbVmClusterUpdateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExadbVmClusterUpdate. */ export interface GetExadbVmClusterUpdateOutputArgs { /** * The Exadata VM cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) on Exascale Infrastructure. */ exadbVmClusterId: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the maintenance update. */ updateId: pulumi.Input; } //# sourceMappingURL=getExadbVmClusterUpdate.d.ts.map