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

com.aliyun.datalake20200710.models.UpdateWorkspaceConfigRequest Maven / Gradle / Ivy

There is a newer version: 2.2.1
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.datalake20200710.models;

import com.aliyun.tea.*;

public class UpdateWorkspaceConfigRequest extends TeaModel {
    @NameInMap("Config")
    public String config;

    @NameInMap("WorkspaceId")
    public String workspaceId;

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

    public UpdateWorkspaceConfigRequest setConfig(String config) {
        this.config = config;
        return this;
    }
    public String getConfig() {
        return this.config;
    }

    public UpdateWorkspaceConfigRequest setWorkspaceId(String workspaceId) {
        this.workspaceId = workspaceId;
        return this;
    }
    public String getWorkspaceId() {
        return this.workspaceId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy