com.antgroup.antchain.openapi.deps.models.RetryrollbackBgreleaseArrangementRequest 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 RetryrollbackBgreleaseArrangementRequest extends TeaModel {
@NameInMap("auth_token")
public String authToken;
@NameInMap("tenant")
public String tenant;
// 概览ID
@NameInMap("arrangement_id")
@Validation(required = true)
public String arrangementId;
// 发布单ID
@NameInMap("plan_id")
@Validation(required = true)
public String planId;
// rollback_info
@NameInMap("rollback_info")
@Validation(required = true)
public RollbackInfo rollbackInfo;
// workspace
@NameInMap("workspace")
@Validation(required = true)
public String workspace;
public static RetryrollbackBgreleaseArrangementRequest build(java.util.Map map) throws Exception {
RetryrollbackBgreleaseArrangementRequest self = new RetryrollbackBgreleaseArrangementRequest();
return TeaModel.build(map, self);
}
public RetryrollbackBgreleaseArrangementRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public RetryrollbackBgreleaseArrangementRequest setTenant(String tenant) {
this.tenant = tenant;
return this;
}
public String getTenant() {
return this.tenant;
}
public RetryrollbackBgreleaseArrangementRequest setArrangementId(String arrangementId) {
this.arrangementId = arrangementId;
return this;
}
public String getArrangementId() {
return this.arrangementId;
}
public RetryrollbackBgreleaseArrangementRequest setPlanId(String planId) {
this.planId = planId;
return this;
}
public String getPlanId() {
return this.planId;
}
public RetryrollbackBgreleaseArrangementRequest setRollbackInfo(RollbackInfo rollbackInfo) {
this.rollbackInfo = rollbackInfo;
return this;
}
public RollbackInfo getRollbackInfo() {
return this.rollbackInfo;
}
public RetryrollbackBgreleaseArrangementRequest setWorkspace(String workspace) {
this.workspace = workspace;
return this;
}
public String getWorkspace() {
return this.workspace;
}
}