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 userdata")
59
+
@Parameter(name = ApiConstants.NAME, type = CommandType.STRING, required = true, description = "Name of the User Data")
60
60
privateStringname;
61
61
62
62
//Owner information
63
-
@Parameter(name = ApiConstants.ACCOUNT, type = CommandType.STRING, description = "an optional account for the userdata. Must be used with domainId.")
63
+
@Parameter(name = ApiConstants.ACCOUNT, type = CommandType.STRING, description = "an optional account for the User Data. Must be used with domainId.")
64
64
privateStringaccountName;
65
65
66
66
@Parameter(name = ApiConstants.DOMAIN_ID,
67
67
type = CommandType.UUID,
68
68
entityType = DomainResponse.class,
69
-
description = "an optional domainId for the userdata. If the account parameter is used, domainId must also be used.")
69
+
description = "an optional domainId for the User Data. If the account parameter is used, domainId must also be used.")
70
70
privateLongdomainId;
71
71
72
-
@Parameter(name = ApiConstants.PROJECT_ID, type = CommandType.UUID, entityType = ProjectResponse.class, description = "an optional project for the userdata")
72
+
@Parameter(name = ApiConstants.PROJECT_ID, type = CommandType.UUID, entityType = ProjectResponse.class, description = "an optional project for the User Data")
@SerializedName(ApiConstants.USER_DATA) @Param(description="base64 encoded User Data content")
62
62
privateStringuserData;
63
63
64
-
@SerializedName(ApiConstants.PARAMS) @Param(description="list of parameters which contains the list of keys or string parameters that are needed to be passed for any variables declared in userdata")
64
+
@SerializedName(ApiConstants.PARAMS) @Param(description="list of parameters which contains the list of keys or string parameters that are needed to be passed for any variables declared in the User Data")
0 commit comments