You can use the ModifyBackupTarget method to change attributes of a backup target.
This method has the following input parameters:
Name | Description | Type | Default value | Required |
---|---|---|---|---|
backupTargetID | Unique target ID for the target to modify. | integer | None | Yes |
attributes | List of name-value pairs in JSON object format. | JSON object | None | No |
name | New name for the backup target. | string | None | No |
This method has no return values.
Requests for this method are similar to the following example:
{ "method": "ModifyBackupTarget", "params": { "backupTargetID" : 1, "name": "yourtargetS3" "attributes" : { "size" : 500, } }, "id": 1 }
This method returns a response similar to the following example:
{ "id": 1, "result": {} }
9.6