DaanHoogland commented on PR #11950:
URL: https://github.com/apache/cloudstack/pull/11950#issuecomment-3690086275
tested; without change
```
> list apis name=createBackupSchedule
{
"api": [
{
"description": "Creates a user-defined VM backup schedule",
"isasync": false,
"name": "createBackupSchedule",
"params": [
…
],
"related": "updateBackupSchedule,listBackups",
"response": [
{
"description": "backup offering name",
"name": "backupofferingname",
"type": "string"
},
...
}
],
"count": 1
}
```
with change
```
> list apis name=createBackupSchedule
{
"api": [
{
"description": "Creates a User-defined Instance backup schedule",
"isasync": false,
"name": "createBackupSchedule",
"params": [
...
],
"related": "listBackupSchedule",
"response": [
{
"description": "Time the backup is scheduled to be taken.",
"name": "schedule",
"type": "string"
},
...
}
],
"count": 1
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]