
com.antgroup.antchain.openapi.cas.models.ListUnifiedresourceVpcRequest 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 ListUnifiedresourceVpcRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
// region name
@NameInMap("region")
@Validation(required = true)
public String region;
public static ListUnifiedresourceVpcRequest build(java.util.Map map) throws Exception {
ListUnifiedresourceVpcRequest self = new ListUnifiedresourceVpcRequest();
return TeaModel.build(map, self);
}
public ListUnifiedresourceVpcRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public ListUnifiedresourceVpcRequest setRegion(String region) {
this.region = region;
return this;
}
public String getRegion() {
return this.region;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy