com.aliyun.arms20190808.models.CreateEnvironmentResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arms20190808 Show documentation
Show all versions of arms20190808 Show documentation
Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;
import com.aliyun.tea.*;
public class CreateEnvironmentResponseBody extends TeaModel {
/**
* The HTTP status code. The status code 200 indicates that the request was successful.
*
* example:
* 200
*/
@NameInMap("Code")
public Integer code;
/**
* The ID of the created environment.
*
* example:
* env-xxxxx
*/
@NameInMap("Data")
public String data;
/**
* The returned message.
*
* example:
* message
*/
@NameInMap("Message")
public String message;
/**
* The request ID.
*
* example:
* 16AF921B-8187-489F-9913-43C808B4****
*/
@NameInMap("RequestId")
public String requestId;
public static CreateEnvironmentResponseBody build(java.util.Map map) throws Exception {
CreateEnvironmentResponseBody self = new CreateEnvironmentResponseBody();
return TeaModel.build(map, self);
}
public CreateEnvironmentResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public CreateEnvironmentResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public CreateEnvironmentResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public CreateEnvironmentResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy