com.antgroup.antchain.openapi.deps.models.OpsApplicationChain 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 OpsApplicationChain extends TeaModel {
// 此运维应用链中包含的应用(服务)组列表
@NameInMap("groups")
public java.util.List groups;
public static OpsApplicationChain build(java.util.Map map) throws Exception {
OpsApplicationChain self = new OpsApplicationChain();
return TeaModel.build(map, self);
}
public OpsApplicationChain setGroups(java.util.List groups) {
this.groups = groups;
return this;
}
public java.util.List getGroups() {
return this.groups;
}
}