import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Vm Cluster Update resource in Oracle Cloud Infrastructure Database service. * * Gets information about a specified maintenance update package for a VM cluster. Applies to Exadata Cloud@Customer instances only. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVmClusterUpdate = oci.database.getVmClusterUpdate({ * updateId: testUpdate.id, * vmClusterId: testVmCluster.id, * }); * ``` */ export declare function getVmClusterUpdate(args: GetVmClusterUpdateArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVmClusterUpdate. */ export interface GetVmClusterUpdateArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the maintenance update. */ updateId: string; /** * The VM cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ vmClusterId: string; } /** * A collection of values returned by getVmClusterUpdate. */ export interface GetVmClusterUpdateResult { /** * The possible actions that can be performed using this maintenance update. */ readonly availableActions: string[]; /** * The possible update options that can be performed using this maintenance update (only valid for OS Update). */ readonly availableUpdateModes: string[]; /** * Details of the maintenance update package. */ readonly description: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The update action performed most recently using this maintenance update. */ readonly lastAction: string; /** * The update mode performed most recently using this maintenance update (only valid for OS Update). */ readonly lastUpdateMode: string; /** * Descriptive text providing additional details about the lifecycle state. */ readonly lifecycleDetails: string; /** * Oracle Linux version for the respective Exadata Image. */ readonly oracleLinuxVersion: 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 VM cluster maintenance update. */ readonly updateType: string; /** * The version of the maintenance update package. */ readonly version: string; readonly vmClusterId: string; } /** * This data source provides details about a specific Vm Cluster Update resource in Oracle Cloud Infrastructure Database service. * * Gets information about a specified maintenance update package for a VM cluster. Applies to Exadata Cloud@Customer instances only. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVmClusterUpdate = oci.database.getVmClusterUpdate({ * updateId: testUpdate.id, * vmClusterId: testVmCluster.id, * }); * ``` */ export declare function getVmClusterUpdateOutput(args: GetVmClusterUpdateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVmClusterUpdate. */ export interface GetVmClusterUpdateOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the maintenance update. */ updateId: pulumi.Input; /** * The VM cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ vmClusterId: pulumi.Input; } //# sourceMappingURL=getVmClusterUpdate.d.ts.map