import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Db System Pitr Detail resource in Oracle Cloud Infrastructure Psql service. * * Gets the database system PITR details. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbSystemPitrDetail = oci.psql.getDbSystemPitrDetail({ * dbSystemId: testDbSystem.id, * }); * ``` */ export declare function getDbSystemPitrDetail(args: GetDbSystemPitrDetailArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbSystemPitrDetail. */ export interface GetDbSystemPitrDetailArgs { /** * A unique identifier for the database system. */ dbSystemId: string; } /** * A collection of values returned by getDbSystemPitrDetail. */ export interface GetDbSystemPitrDetailResult { readonly dbSystemId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the point-in-time recovery of the db system. */ readonly pitrState: string; /** * List of point-in-time recovery windows. */ readonly recoveryTimeWindows: outputs.Psql.GetDbSystemPitrDetailRecoveryTimeWindow[]; } /** * This data source provides details about a specific Db System Pitr Detail resource in Oracle Cloud Infrastructure Psql service. * * Gets the database system PITR details. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbSystemPitrDetail = oci.psql.getDbSystemPitrDetail({ * dbSystemId: testDbSystem.id, * }); * ``` */ export declare function getDbSystemPitrDetailOutput(args: GetDbSystemPitrDetailOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbSystemPitrDetail. */ export interface GetDbSystemPitrDetailOutputArgs { /** * A unique identifier for the database system. */ dbSystemId: pulumi.Input; } //# sourceMappingURL=getDbSystemPitrDetail.d.ts.map