Clark Boylan ebceca9414 Move docs to doc.
To better facilitate the building and publishing of sphinx
documentation by Jenkins we are moving all openstack projects with
sphinx documentation to a common doc tree structure. Documentation
goes in project/doc/source and build results go in project/doc/build.

Change-Id: I868df12e3c15cc30043e782ce0a609b9574295cd
2012-06-11 14:18:48 -07:00

1.7 KiB

Backup schedules

novaclient

Rackspace allows scheduling of weekly and/or daily backups for virtual servers. You can access these backup schedules either off the API object as OpenStack.backup_schedules, or directly off a particular Server instance as Server.backup_schedule.

Classes

BackupScheduleManager

BackupSchedule

enabled

Is this backup enabled? (boolean)

weekly

The day of week upon which to perform a weekly backup.

daily

The daily time period during which to perform a daily backup.

Constants

Constants for selecting weekly backup days:

BACKUP_WEEKLY_DISABLED

BACKUP_WEEKLY_SUNDAY

BACKUP_WEEKLY_MONDAY

BACKUP_WEEKLY_TUESDAY

BACKUP_WEEKLY_WEDNESDA

BACKUP_WEEKLY_THURSDAY

BACKUP_WEEKLY_FRIDAY

BACKUP_WEEKLY_SATURDAY

Constants for selecting hourly backup windows:

BACKUP_DAILY_DISABLED

BACKUP_DAILY_H_0000_0200

BACKUP_DAILY_H_0200_0400

BACKUP_DAILY_H_0400_0600

BACKUP_DAILY_H_0600_0800

BACKUP_DAILY_H_0800_1000

BACKUP_DAILY_H_1000_1200

BACKUP_DAILY_H_1200_1400

BACKUP_DAILY_H_1400_1600

BACKUP_DAILY_H_1600_1800

BACKUP_DAILY_H_1800_2000

BACKUP_DAILY_H_2000_2200

BACKUP_DAILY_H_2200_0000