This is an automated email from the ASF dual-hosted git repository. dahn pushed a commit to branch DaanHoogland-patch-6 in repository https://gitbox.apache.org/repos/asf/cloudstack.git
commit a590d2c50bdc14ecbc7a09433961b30eac73f26f Author: dahn <[email protected]> AuthorDate: Wed Jul 23 09:58:26 2025 +0200 add since parameter to BackupScheduleResponse --- .../java/org/apache/cloudstack/api/response/BackupScheduleResponse.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/main/java/org/apache/cloudstack/api/response/BackupScheduleResponse.java b/api/src/main/java/org/apache/cloudstack/api/response/BackupScheduleResponse.java index 92f1bad5447..9584223563f 100644 --- a/api/src/main/java/org/apache/cloudstack/api/response/BackupScheduleResponse.java +++ b/api/src/main/java/org/apache/cloudstack/api/response/BackupScheduleResponse.java @@ -29,7 +29,7 @@ import com.google.gson.annotations.SerializedName; @EntityReference(value = BackupSchedule.class) public class BackupScheduleResponse extends BaseResponse { @SerializedName(ApiConstants.ID) - @Param(description = "ID of the backup schedule.") + @Param(description = "ID of the backup schedule.", since = "4.21.0") private String id; @SerializedName(ApiConstants.VIRTUAL_MACHINE_NAME)
