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

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

// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.cas.models;

import com.aliyun.tea.*;

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

    // vpc paas id
    @NameInMap("vpc_id")
    @Validation(required = true)
    public String vpcId;

    // vswitch iaas id
    @NameInMap("vswitch_id")
    public String vswitchId;

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

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

    public QueryVpcVswitchRequest setVpcId(String vpcId) {
        this.vpcId = vpcId;
        return this;
    }
    public String getVpcId() {
        return this.vpcId;
    }

    public QueryVpcVswitchRequest setVswitchId(String vswitchId) {
        this.vswitchId = vswitchId;
        return this;
    }
    public String getVswitchId() {
        return this.vswitchId;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy