You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Parameter(name = ApiConstants.DESCRIPTION, type = CommandType.STRING, required = true,
57
+
description = "The description of the backup offering")
58
+
privateStringdescription;
59
+
52
60
@Parameter(name = ApiConstants.COMPRESS, type = CommandType.BOOLEAN, description = "Whether the backups should be compressed or not.")
53
61
privateBooleancompress;
54
62
@@ -72,6 +80,18 @@ public class CreateNativeBackupOfferingCmd extends BaseCmd {
72
80
"are zstd and zlib. By default, zstd is used for images that support it. If the image only supports zlib, it will be used regardless of this parameter.")
73
81
privateStringcompressionLibrary;
74
82
83
+
@Parameter(name = ApiConstants.ZONE_ID, type = BaseCmd.CommandType.UUID, entityType = ZoneResponse.class,
84
+
description = "The zone ID", required = true)
85
+
privateLongzoneId;
86
+
87
+
@Parameter(name = ApiConstants.ALLOW_USER_DRIVEN_BACKUPS, type = CommandType.BOOLEAN,
88
+
description = "Whether users are allowed to create adhoc backups and backup schedules", required = true)
Copy file name to clipboardExpand all lines: api/src/main/java/org/apache/cloudstack/api/command/user/backup/nativeoffering/DeleteNativeBackupOfferingCmd.java
Copy file name to clipboardExpand all lines: api/src/main/java/org/apache/cloudstack/api/command/user/backup/nativeoffering/ListNativeBackupOfferingsCmd.java
0 commit comments