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

com.antgroup.antchain.openapi.deps.models.CreateWorkspacegroupRequest 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 CreateWorkspacegroupRequest extends TeaModel {
    @NameInMap("auth_token")
    public String authToken;

    @NameInMap("tenant")
    public String tenant;

    // 工作空间组显示名称。
    @NameInMap("display_name")
    @Validation(required = true)
    public String displayName;

    // 域名后缀。
    @NameInMap("domain_suffix")
    @Validation(required = true)
    public String domainSuffix;

    // 工作空间组唯一标识。
    @NameInMap("name")
    @Validation(required = true)
    public String name;

    // 发布部署模式。
    @NameInMap("release_mode")
    @Validation(required = true)
    public String releaseMode;

    // 包含工作空间列表。
    @NameInMap("workspaces")
    @Validation(required = true)
    public java.util.List workspaces;

    public static CreateWorkspacegroupRequest build(java.util.Map map) throws Exception {
        CreateWorkspacegroupRequest self = new CreateWorkspacegroupRequest();
        return TeaModel.build(map, self);
    }

    public CreateWorkspacegroupRequest setAuthToken(String authToken) {
        this.authToken = authToken;
        return this;
    }
    public String getAuthToken() {
        return this.authToken;
    }

    public CreateWorkspacegroupRequest setTenant(String tenant) {
        this.tenant = tenant;
        return this;
    }
    public String getTenant() {
        return this.tenant;
    }

    public CreateWorkspacegroupRequest setDisplayName(String displayName) {
        this.displayName = displayName;
        return this;
    }
    public String getDisplayName() {
        return this.displayName;
    }

    public CreateWorkspacegroupRequest setDomainSuffix(String domainSuffix) {
        this.domainSuffix = domainSuffix;
        return this;
    }
    public String getDomainSuffix() {
        return this.domainSuffix;
    }

    public CreateWorkspacegroupRequest setName(String name) {
        this.name = name;
        return this;
    }
    public String getName() {
        return this.name;
    }

    public CreateWorkspacegroupRequest setReleaseMode(String releaseMode) {
        this.releaseMode = releaseMode;
        return this;
    }
    public String getReleaseMode() {
        return this.releaseMode;
    }

    public CreateWorkspacegroupRequest setWorkspaces(java.util.List workspaces) {
        this.workspaces = workspaces;
        return this;
    }
    public java.util.List getWorkspaces() {
        return this.workspaces;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy