com.antgroup.antchain.openapi.deps.models.ReleaseComputerRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-deps Show documentation
Show all versions of openapi-deps Show documentation
Ant Chain deps SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.deps.models;
import com.aliyun.tea.*;
public class ReleaseComputerRequest extends TeaModel {
@NameInMap("auth_token")
public String authToken;
@NameInMap("tenant")
public String tenant;
// 计算资源id,可以指定多个
@NameInMap("computer_ids")
public java.util.List computerIds;
// 请求业务id,用于幂等性控制等,需要客户端提供并保证唯一。最大64位单字节字符
@NameInMap("req_biz_id")
public String reqBizId;
public static ReleaseComputerRequest build(java.util.Map map) throws Exception {
ReleaseComputerRequest self = new ReleaseComputerRequest();
return TeaModel.build(map, self);
}
public ReleaseComputerRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public ReleaseComputerRequest setTenant(String tenant) {
this.tenant = tenant;
return this;
}
public String getTenant() {
return this.tenant;
}
public ReleaseComputerRequest setComputerIds(java.util.List computerIds) {
this.computerIds = computerIds;
return this;
}
public java.util.List getComputerIds() {
return this.computerIds;
}
public ReleaseComputerRequest setReqBizId(String reqBizId) {
this.reqBizId = reqBizId;
return this;
}
public String getReqBizId() {
return this.reqBizId;
}
}