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

com.antgroup.antchain.openapi.cas.models.AllLoadbalanceMountRequest Maven / Gradle / Ivy

There is a newer version: 1.4.59
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.cas.models;

import com.aliyun.tea.*;

public class AllLoadbalanceMountRequest extends TeaModel {
    // OAuth模式下的授权token
    @NameInMap("auth_token")
    public String authToken;

    // loadbalance_id
    @NameInMap("loadbalance_id")
    @Validation(required = true)
    public String loadbalanceId;

    // workspace
    @NameInMap("workspace")
    @Validation(required = true)
    public String workspace;

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

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

    public AllLoadbalanceMountRequest setLoadbalanceId(String loadbalanceId) {
        this.loadbalanceId = loadbalanceId;
        return this;
    }
    public String getLoadbalanceId() {
        return this.loadbalanceId;
    }

    public AllLoadbalanceMountRequest setWorkspace(String workspace) {
        this.workspace = workspace;
        return this;
    }
    public String getWorkspace() {
        return this.workspace;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy