This API is used to update a backup policy by ID.
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
policy |
Yes |
policy_update |
For details, see Table 3. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
description |
No |
String |
Backup policy description The value consists of 0 to 255 characters and must not contain a greater-than sign (>) or less-than sign (<). |
name |
No |
String |
Backup policy name The value consists of 1 to 255 characters and can contain only letters, digits, underscores (_), and hyphens (-). |
resources |
No |
List<resource> |
Backup objects For details, see Table 4. |
scheduled_operations |
No |
List<scheduled_operation_update> |
Scheduling period. A backup policy has only one backup period. For details, see Table 5. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
id |
Yes |
String |
Backup object ID |
type |
Yes |
String |
Entity object type of backup objects The value is fixed at OS::Nova::Server (ECSs). |
name |
Yes |
String |
Backup object name |
extra_info |
No |
Dict |
Additional information about the backup object |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
description |
No |
String |
Scheduling period description The value consists of 0 to 255 characters and must not contain a greater-than sign (>) or less-than sign (<). |
enabled |
No |
Boolean |
Whether the backup policy is enabled The default value is true. If it is set to false, automatic scheduling is disabled but manual scheduling is supported. |
name |
No |
String |
Scheduling period name The value consists of 1 to 255 characters and can contain only letters, digits, underscores (_), and hyphens (-). |
operation_definition |
No |
operation_definition |
Scheduling period parameter For details, see Table 6. |
trigger |
No |
trigger |
Scheduling policy |
id |
Yes |
String |
Scheduling period ID |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
max_backups |
No |
Integer |
Maximum number of backups that can be automatically created for a backup object. The value can be -1 or ranges from 0 to 99999. If the value is set to -1, backups will not be cleared by quantity limit. |
retention_duration_days |
No |
Integer |
Duration of retaining a backup, in days. The value can be -1 or ranges from 0 to 99999. If the value is set to -1, backups will not be cleared by retention duration. |
permanent |
No |
Boolean |
Whether backups are permanently retained |
plan_id |
No |
String |
Backup policy ID |
provider_id |
No |
String |
Backup provider ID, which specifies whether the backup object is a server or disk. This parameter has a fixed value. For CSBS, the value is fc4d5750-22e7-4798-8a46-f48f62c4c1da. |
day_backups |
No |
Integer |
Maximum number of daily backups that can be retained. The latest backup of each day is saved in the long term. This parameter and max_backups will both be applied. If this parameter is configured, timezone is mandatory. |
week_backups |
No |
Integer |
Maximum number of weekly backups that can be retained. The latest backup of each week is saved in the long term. This parameter and max_backups will both be applied. If this parameter is configured, timezone is mandatory. |
month_backups |
No |
Integer |
Maximum number of monthly backups that can be retained. The latest backup of each month is saved in the long term. This parameter and max_backups will both be applied. If this parameter is configured, timezone is mandatory. |
year_backups |
No |
Integer |
Maximum number of yearly backups that can be retained. The latest backup of each year is saved in the long term. This parameter and max_backups will both be applied. If this parameter is configured, timezone is mandatory. |
timezone |
No |
String |
Time zone where the user is located, for example, UTC+08:00. Set this parameter only after you have configured any of the parameters day_backups, week_backups, month_backups, and year_backups. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
properties |
Yes |
trigger_properties |
Scheduler properties For details, see Table 8. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
pattern |
Yes |
String |
Scheduling policy of the scheduler The value consists of a maximum of 10,240 characters. The scheduling policy complies with iCalendar RFC 2445, but it supports only four parameters, which are FREQ, BYDAY, BYHOUR, and BYMINUTE. FREQ can be set to WEEKLY and DAILY, BYDAY can be set to MO, TU, WE, TH, FR, SA, and SU (seven days of a week), BYHOUR ranges from 0 hours to 23 hours, and BYMINUTE ranges from 0 minutes to 59 minutes. The scheduling interval must not be less than 1 hour. A maximum of 24 time points are allowed in a day. |
PUT https://{endpoint}/v1/{project_id}/policies/{policy_id} { "policy" : { "name" : "my-plan", "parameters" : { "common" : { } }, "scheduled_operations" : [ { "id" : "fed3c8f1-7b6e-4e24-b1ad-473838bad569", "name" : "my-backup-policy", "description" : "My backup policy ", "enabled" : true, "operation_definition" : { "retention_duration_days" : -1, "max_backups" : 20 }, "trigger" : { "properties" : { "pattern" : "BEGIN:VCALENDAR\r\nBEGIN:VEVENT\r\nRRULE:FREQ=WEEKLY;BYDAY=TH;BYHOUR=12;BYMINUTE=27\r\nEND:VEVENT\r\nEND:VCALENDAR\r\n" } } } ] } }
Parameter |
Type |
Description |
---|---|---|
policy |
policy_resp |
For details, see Table 10. |
Parameter |
Type |
Description |
---|---|---|
created_at |
String |
Creation time, for example, 2017-04-18T01:21:52.701973 |
description |
String |
Backup policy description The value consists of 0 to 255 characters and must not contain a greater-than sign (>) or less-than sign (<). |
id |
String |
Backup policy ID |
name |
String |
Backup policy name The value consists of 1 to 255 characters and can contain only letters, digits, underscores (_), and hyphens (-). |
parameters |
policy_param |
Parameters of a backup policy For details, see Table 11. |
project_id |
String |
Project ID |
provider_id |
String |
Backup provider ID, which specifies whether the backup object is a server or disk. This parameter has a fixed value. For CSBS, the value is fc4d5750-22e7-4798-8a46-f48f62c4c1da. |
resources |
List<resource> |
Backup object list For details, see Table 12. |
scheduled_operations |
List<scheduled_operation_resp> |
Scheduling period list For details, see Table 13. |
status |
String |
Backup policy status
|
Parameter |
Type |
Description |
---|---|---|
description |
String |
Scheduling period description The value consists of 0 to 255 characters and must not contain a greater-than sign (>) or less-than sign (<). |
enabled |
Boolean |
Whether the scheduling period is enabled The default value is true. If it is set to false, automatic scheduling is disabled but manual scheduling is supported. |
name |
String |
Scheduling period name The value consists of 1 to 255 characters and can contain only letters, digits, underscores (_), and hyphens (-). |
operation_type |
String |
Operation type Enum:[ backup] |
operation_definition |
operation_definition |
Scheduling period parameters For details, see Table 14. |
trigger |
trigger_resp |
Scheduling policy For details, see Table 15. |
id |
String |
Scheduling period ID |
Parameter |
Type |
Description |
---|---|---|
max_backups |
String |
Maximum number of backups that can be automatically created for a backup object. The value can be -1 or ranges from 0 to 99999. If the value is set to -1, backups will not be cleared by quantity limit. |
retention_duration_days |
String |
Duration of retaining a backup, in days. The value can be -1 or ranges from 0 to 99999. If the value is set to -1, backups will not be cleared by retention duration. |
permanent |
String |
Whether backups are permanently retained |
plan_id |
String |
Backup policy ID |
provider_id |
String |
Backup provider ID, which specifies whether the backup object is a server or disk. This parameter has a fixed value. For CSBS, the value is fc4d5750-22e7-4798-8a46-f48f62c4c1da. |
Parameter |
Type |
Description |
---|---|---|
properties |
trigger_properties_resp |
Scheduler properties For details, see Table 16. |
Parameter |
Type |
Description |
---|---|---|
pattern |
String |
Scheduling policy of the scheduler The value consists of a maximum of 10,240 characters. The scheduling policy complies with iCalendar RFC 2445, but it supports only four parameters, which are FREQ, BYDAY, BYHOUR, and BYMINUTE. FREQ can be set to WEEKLY and DAILY, BYDAY can be set to MO, TU, WE, TH, FR, SA, and SU (seven days of a week), BYHOUR ranges from 0 hours to 23 hours, and BYMINUTE ranges from 0 minutes to 59 minutes. The scheduling interval must not be less than 1 hour. A maximum of 24 time points are allowed in a day. |
start_time |
String |
Start time of the scheduler |
format |
String |
Scheduler type The value is fixed at ical (Internet calendar). |
{ "policy" : { "status" : "disabled", "provider_id" : "fc4d5750-22e7-4798-8a46-f48f62c4c1da", "description" : "", "parameters" : { "common" : { } }, "scheduled_operations" : [ { "description" : "My backup policy ", "enabled" : true, "trigger" : { "properties" : { "pattern" : "BEGIN:VCALENDAR\r\nBEGIN:VEVENT\r\nRRULE:FREQ=WEEKLY;BYDAY=TH;BYHOUR=12;BYMINUTE=27\r\nEND:VEVENT\r\nEND:VCALENDAR\r\n", "start_time" : "2017-04-09 14:31:25", "format" : "ical" } }, "operation_definition" : { "provider_id" : "fc4d5750-22e7-4798-8a46-f48f62c4c1da", "plan_id" : "17e2b861-3a35-434d-afbb-073d5cd5af08", "max_backups" : "20", "retention_duration_days" : "-1", "permanent" : "False", }, "operation_type" : "backup", "id" : "fed3c8f1-7b6e-4e24-b1ad-473838bad569", "name" : "my-backup-policy" } , "format" : "ical" ], "id" : "17e2b861-3a35-434d-afbb-073d5cd5af08", "name" : "my-plan", "parameters" : { "common" : { } }, "created_at" : "2017-04-09T14:31:25.504569", "project_id" : "0c89d4e457c3401a89c65420fd45f3a2", "resources" : [ { "type" : "OS::Nova::Server", "id" : "8421f405-1334-4206-b71c-b3f64d39abc4", "name" : "wqeq3", "extra_info" : { } } ] } }
Status Code |
Description |
---|---|
200 |
OK |
Status Code |
Description |
---|---|
400 |
Invalid request parameters. |
401 |
Authentication failed. |
403 |
No operation permission. |
404 |
Requested object not found. |
500 |
Service internal error. |
503 |
Service unavailable. |
For details, see Error Codes.