import * as pulumi from "@pulumi/pulumi"; export declare class DatabaseBackupSchedule extends pulumi.CustomResource { /** * Get an existing DatabaseBackupSchedule 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?: DatabaseBackupScheduleState, opts?: pulumi.CustomResourceOptions): DatabaseBackupSchedule; /** * Returns true if the given object is an instance of DatabaseBackupSchedule. 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 DatabaseBackupSchedule; /** * Database cluster ID for which database auto backups should be configured */ readonly clusterId: pulumi.Output; /** * Maximum stored copy count */ readonly copyCount: pulumi.Output; /** * Creation date for first backup */ readonly creationStartAt: pulumi.Output; readonly databaseBackupScheduleId: pulumi.Output; /** * Day of the week when auto backup should be created. Allowed only for week interval, counting starts from 1 (Monday) */ readonly dayOfWeek: pulumi.Output; /** * Enable auto backups */ readonly enabled: pulumi.Output; /** * Interval between auto backups */ readonly interval: pulumi.Output; /** * Create a DatabaseBackupSchedule 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: DatabaseBackupScheduleArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DatabaseBackupSchedule resources. */ export interface DatabaseBackupScheduleState { /** * Database cluster ID for which database auto backups should be configured */ clusterId?: pulumi.Input; /** * Maximum stored copy count */ copyCount?: pulumi.Input; /** * Creation date for first backup */ creationStartAt?: pulumi.Input; databaseBackupScheduleId?: pulumi.Input; /** * Day of the week when auto backup should be created. Allowed only for week interval, counting starts from 1 (Monday) */ dayOfWeek?: pulumi.Input; /** * Enable auto backups */ enabled?: pulumi.Input; /** * Interval between auto backups */ interval?: pulumi.Input; } /** * The set of arguments for constructing a DatabaseBackupSchedule resource. */ export interface DatabaseBackupScheduleArgs { /** * Database cluster ID for which database auto backups should be configured */ clusterId: pulumi.Input; /** * Maximum stored copy count */ copyCount: pulumi.Input; /** * Creation date for first backup */ creationStartAt: pulumi.Input; databaseBackupScheduleId?: pulumi.Input; /** * Day of the week when auto backup should be created. Allowed only for week interval, counting starts from 1 (Monday) */ dayOfWeek?: pulumi.Input; /** * Enable auto backups */ enabled?: pulumi.Input; /** * Interval between auto backups */ interval: pulumi.Input; }