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.BOOTABLE, type = BaseCmd.CommandType.BOOLEAN, description = "true if this ISO is bootable. If not passed explicitly its assumed to be true")
53
+
privateBooleanbootable;
54
+
55
+
@Parameter(name = ApiConstants.DISPLAY_TEXT,
56
+
type = BaseCmd.CommandType.STRING,
57
+
required = true,
58
+
description = "the display text of the ISO. This is usually used for display purposes.",
59
+
length = 4096)
60
+
privateStringdisplayText;
61
+
62
+
@Parameter(name = ApiConstants.IS_FEATURED, type = BaseCmd.CommandType.BOOLEAN, description = "true if you want this ISO to be featured")
63
+
privateBooleanfeatured;
64
+
65
+
@Parameter(name = ApiConstants.IS_PUBLIC,
66
+
type = BaseCmd.CommandType.BOOLEAN,
67
+
description = "true if you want to register the ISO to be publicly available to all users, false otherwise.")
68
+
privateBooleanpublicIso;
69
+
70
+
@Parameter(name = ApiConstants.IS_EXTRACTABLE, type = BaseCmd.CommandType.BOOLEAN, description = "true if the ISO or its derivatives are extractable; default is false")
71
+
privateBooleanextractable;
72
+
73
+
@Parameter(name = ApiConstants.NAME, type = BaseCmd.CommandType.STRING, required = true, description = "the name of the ISO")
74
+
privateStringisoName;
75
+
76
+
@Parameter(name = ApiConstants.OS_TYPE_ID,
77
+
type = BaseCmd.CommandType.UUID,
78
+
entityType = GuestOSResponse.class,
79
+
description = "the ID of the OS type that best represents the OS of this ISO. If the ISO is bootable this parameter needs to be passed")
0 commit comments