com.antgroup.antchain.openapi.deps.models.UpdateAppGroupRequest 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 UpdateAppGroupRequest extends TeaModel {
@NameInMap("auth_token")
public String authToken;
@NameInMap("tenant")
public String tenant;
// 应用依赖拓扑图
@NameInMap("app_scheme")
public java.util.List appScheme;
// 应用分组描述
@NameInMap("description")
public String description;
// 应用分组名称,支持中文
@NameInMap("name")
@Validation(required = true)
public String name;
// 父应用分组 id
@NameInMap("parent_id")
public String parentId;
public static UpdateAppGroupRequest build(java.util.Map map) throws Exception {
UpdateAppGroupRequest self = new UpdateAppGroupRequest();
return TeaModel.build(map, self);
}
public UpdateAppGroupRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public UpdateAppGroupRequest setTenant(String tenant) {
this.tenant = tenant;
return this;
}
public String getTenant() {
return this.tenant;
}
public UpdateAppGroupRequest setAppScheme(java.util.List appScheme) {
this.appScheme = appScheme;
return this;
}
public java.util.List getAppScheme() {
return this.appScheme;
}
public UpdateAppGroupRequest setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public UpdateAppGroupRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public UpdateAppGroupRequest setParentId(String parentId) {
this.parentId = parentId;
return this;
}
public String getParentId() {
return this.parentId;
}
}