com.aliyun.edas20170801.models.GetJavaStartUpConfigResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of edas20170801 Show documentation
Show all versions of edas20170801 Show documentation
Alibaba Cloud Enterprise Distributed Application Service (20170801) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.edas20170801.models;
import com.aliyun.tea.*;
public class GetJavaStartUpConfigResponseBody extends TeaModel {
/**
* The HTTP status code that is returned.
*/
@NameInMap("Code")
public Integer code;
/**
* The configuration of Java startup parameters.
*/
@NameInMap("JavaStartUpConfig")
public GetJavaStartUpConfigResponseBodyJavaStartUpConfig javaStartUpConfig;
/**
* The message that is returned.
*/
@NameInMap("Message")
public String message;
/**
* The ID of the request.
*/
@NameInMap("RequestId")
public String requestId;
public static GetJavaStartUpConfigResponseBody build(java.util.Map map) throws Exception {
GetJavaStartUpConfigResponseBody self = new GetJavaStartUpConfigResponseBody();
return TeaModel.build(map, self);
}
public GetJavaStartUpConfigResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public GetJavaStartUpConfigResponseBody setJavaStartUpConfig(GetJavaStartUpConfigResponseBodyJavaStartUpConfig javaStartUpConfig) {
this.javaStartUpConfig = javaStartUpConfig;
return this;
}
public GetJavaStartUpConfigResponseBodyJavaStartUpConfig getJavaStartUpConfig() {
return this.javaStartUpConfig;
}
public GetJavaStartUpConfigResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public GetJavaStartUpConfigResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class GetJavaStartUpConfigResponseBodyJavaStartUpConfig extends TeaModel {
/**
* The displayed startup parameter configuration.
*/
@NameInMap("OriginalConfigs")
public String originalConfigs;
/**
* The effective startup parameter configuration.
*/
@NameInMap("StartUpArgs")
public String startUpArgs;
public static GetJavaStartUpConfigResponseBodyJavaStartUpConfig build(java.util.Map map) throws Exception {
GetJavaStartUpConfigResponseBodyJavaStartUpConfig self = new GetJavaStartUpConfigResponseBodyJavaStartUpConfig();
return TeaModel.build(map, self);
}
public GetJavaStartUpConfigResponseBodyJavaStartUpConfig setOriginalConfigs(String originalConfigs) {
this.originalConfigs = originalConfigs;
return this;
}
public String getOriginalConfigs() {
return this.originalConfigs;
}
public GetJavaStartUpConfigResponseBodyJavaStartUpConfig setStartUpArgs(String startUpArgs) {
this.startUpArgs = startUpArgs;
return this;
}
public String getStartUpArgs() {
return this.startUpArgs;
}
}
}