All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.antgroup.antchain.openapi.deps.models.UpdateAppGroupRequest Maven / Gradle / Ivy

There is a newer version: 3.2.40
Show newest version
// 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy