import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Vm Cluster Patch resource in Oracle Cloud Infrastructure Database service. * * Gets information about a specified patch package. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVmClusterPatch = oci.database.getVmClusterPatch({ * patchId: testPatch.id, * vmClusterId: testVmCluster.id, * }); * ``` */ export declare function getVmClusterPatch(args: GetVmClusterPatchArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVmClusterPatch. */ export interface GetVmClusterPatchArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the patch. */ patchId: string; /** * The VM cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ vmClusterId: string; } /** * A collection of values returned by getVmClusterPatch. */ export interface GetVmClusterPatchResult { /** * Actions that can possibly be performed using this patch. */ readonly availableActions: string[]; /** * The text describing this patch package. */ readonly description: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Action that is currently being performed or was completed last. */ readonly lastAction: string; /** * A descriptive text associated with the lifecycleState. Typically can contain additional displayable text. */ readonly lifecycleDetails: string; readonly patchId: string; /** * The current state of the patch as a result of lastAction. */ readonly state: string; /** * The date and time that the patch was released. */ readonly timeReleased: string; /** * The version of this patch package. */ readonly version: string; readonly vmClusterId: string; } /** * This data source provides details about a specific Vm Cluster Patch resource in Oracle Cloud Infrastructure Database service. * * Gets information about a specified patch package. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVmClusterPatch = oci.database.getVmClusterPatch({ * patchId: testPatch.id, * vmClusterId: testVmCluster.id, * }); * ``` */ export declare function getVmClusterPatchOutput(args: GetVmClusterPatchOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVmClusterPatch. */ export interface GetVmClusterPatchOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the patch. */ patchId: pulumi.Input; /** * The VM cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ vmClusterId: pulumi.Input; } //# sourceMappingURL=getVmClusterPatch.d.ts.map