import * as pulumi from "@pulumi/pulumi"; /** * Provides a resource to perform the log cactup for database instance based on the input parameters. */ export declare class NdbLogCatchups extends pulumi.CustomResource { /** * Get an existing NdbLogCatchups resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: NdbLogCatchupsState, opts?: pulumi.CustomResourceOptions): NdbLogCatchups; /** * Returns true if the given object is an instance of NdbLogCatchups. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is NdbLogCatchups; readonly databaseId: pulumi.Output; /** * Logs to Backup. The database may contain additional logs. Backup any remaining logs before restore or they will be lost. */ readonly forRestore: pulumi.Output; /** * it helps to perform same operation with same config. * * * See detailed information in [NDB Log Catchups](https://www.nutanix.dev/api_references/ndb/#/6100cd9959e52-start-log-catchup-for-given-time-machine) . */ readonly logCatchupVersion: pulumi.Output; /** * Time machine id of */ readonly timeMachineId: pulumi.Output; /** * Create a NdbLogCatchups resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: NdbLogCatchupsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NdbLogCatchups resources. */ export interface NdbLogCatchupsState { databaseId?: pulumi.Input; /** * Logs to Backup. The database may contain additional logs. Backup any remaining logs before restore or they will be lost. */ forRestore?: pulumi.Input; /** * it helps to perform same operation with same config. * * * See detailed information in [NDB Log Catchups](https://www.nutanix.dev/api_references/ndb/#/6100cd9959e52-start-log-catchup-for-given-time-machine) . */ logCatchupVersion?: pulumi.Input; /** * Time machine id of */ timeMachineId?: pulumi.Input; } /** * The set of arguments for constructing a NdbLogCatchups resource. */ export interface NdbLogCatchupsArgs { databaseId?: pulumi.Input; /** * Logs to Backup. The database may contain additional logs. Backup any remaining logs before restore or they will be lost. */ forRestore?: pulumi.Input; /** * it helps to perform same operation with same config. * * * See detailed information in [NDB Log Catchups](https://www.nutanix.dev/api_references/ndb/#/6100cd9959e52-start-log-catchup-for-given-time-machine) . */ logCatchupVersion?: pulumi.Input; /** * Time machine id of */ timeMachineId?: pulumi.Input; } //# sourceMappingURL=ndbLogCatchups.d.ts.map