com.aliyun.ens20171110.models.StartInstancesResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ens20171110 Show documentation
Show all versions of ens20171110 Show documentation
Alibaba Cloud edge node service (20171110) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;
import com.aliyun.tea.*;
public class StartInstancesResponseBody extends TeaModel {
@NameInMap("InstanceResponses")
public java.util.List instanceResponses;
@NameInMap("RequestId")
public String requestId;
public static StartInstancesResponseBody build(java.util.Map map) throws Exception {
StartInstancesResponseBody self = new StartInstancesResponseBody();
return TeaModel.build(map, self);
}
public StartInstancesResponseBody setInstanceResponses(java.util.List instanceResponses) {
this.instanceResponses = instanceResponses;
return this;
}
public java.util.List getInstanceResponses() {
return this.instanceResponses;
}
public StartInstancesResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy