![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.eds_aic20230930.models.SetAdbSecureResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eds_aic20230930 Show documentation
Show all versions of eds_aic20230930 Show documentation
Alibaba Cloud eds-aic (20230930) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eds_aic20230930.models;
import com.aliyun.tea.*;
public class SetAdbSecureResponseBody extends TeaModel {
@NameInMap("Data")
public SetAdbSecureResponseBodyData data;
/**
* example:
* 69BCBBE4-FCF2-59B8-AD9D-531EB422****
*/
@NameInMap("RequestId")
public String requestId;
public static SetAdbSecureResponseBody build(java.util.Map map) throws Exception {
SetAdbSecureResponseBody self = new SetAdbSecureResponseBody();
return TeaModel.build(map, self);
}
public SetAdbSecureResponseBody setData(SetAdbSecureResponseBodyData data) {
this.data = data;
return this;
}
public SetAdbSecureResponseBodyData getData() {
return this.data;
}
public SetAdbSecureResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class SetAdbSecureResponseBodyData extends TeaModel {
/**
* example:
* 0
*/
@NameInMap("FailCount")
public Integer failCount;
@NameInMap("InstanceIds")
public java.util.List instanceIds;
/**
* example:
* 100
*/
@NameInMap("TotalCount")
public Integer totalCount;
public static SetAdbSecureResponseBodyData build(java.util.Map map) throws Exception {
SetAdbSecureResponseBodyData self = new SetAdbSecureResponseBodyData();
return TeaModel.build(map, self);
}
public SetAdbSecureResponseBodyData setFailCount(Integer failCount) {
this.failCount = failCount;
return this;
}
public Integer getFailCount() {
return this.failCount;
}
public SetAdbSecureResponseBodyData setInstanceIds(java.util.List instanceIds) {
this.instanceIds = instanceIds;
return this;
}
public java.util.List getInstanceIds() {
return this.instanceIds;
}
public SetAdbSecureResponseBodyData setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
public Integer getTotalCount() {
return this.totalCount;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy