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.NAME, type = CommandType.STRING, required = true, description = "Name of the User Data")
52
-
privateStringname;
53
-
54
-
//Owner information
55
-
@Parameter(name = ApiConstants.ACCOUNT, type = CommandType.STRING, description = "an optional account for the User Data. Must be used with domainId.")
56
-
privateStringaccountName;
57
-
58
-
@Parameter(name = ApiConstants.DOMAIN_ID,
59
-
type = CommandType.UUID,
60
-
entityType = DomainResponse.class,
61
-
description = "an optional domainId for the User Data. If the account parameter is used, domainId must also be used.")
62
-
privateLongdomainId;
63
-
64
-
@Parameter(name = ApiConstants.PROJECT_ID, type = CommandType.UUID, entityType = ProjectResponse.class, description = "an optional project for the User Data")
65
-
privateLongprojectId;
66
-
67
-
@Parameter(name = ApiConstants.USER_DATA,
68
-
type = CommandType.STRING,
69
-
required = true,
70
-
description = "Base64 encoded User Data content. " +
71
-
"Using HTTP GET (via querystring), you can send up to 4KB of data after base64 encoding. " +
72
-
"Using HTTP POST (via POST body), you can send up to 32KB of data after base64 encoding, " +
73
-
"which can be increased upto 1MB using the vm.userdata.max.length setting",
0 commit comments