com.antgroup.antchain.openapi.deps.models.UpdateServiceSlbmountRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-deps Show documentation
Show all versions of openapi-deps Show documentation
Ant Chain deps SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.deps.models;
import com.aliyun.tea.*;
public class UpdateServiceSlbmountRequest extends TeaModel {
@NameInMap("auth_token")
public String authToken;
@NameInMap("tenant")
public String tenant;
// 权重
@NameInMap("mount_info")
@Validation(required = true)
public java.util.List mountInfo;
// region_identity
@NameInMap("region_identity")
@Validation(required = true)
public String regionIdentity;
// service_id
@NameInMap("service_id")
@Validation(required = true)
public String serviceId;
// slb_id
@NameInMap("slb_id")
@Validation(required = true)
public String slbId;
// workspace
@NameInMap("workspace")
@Validation(required = true)
public String workspace;
public static UpdateServiceSlbmountRequest build(java.util.Map map) throws Exception {
UpdateServiceSlbmountRequest self = new UpdateServiceSlbmountRequest();
return TeaModel.build(map, self);
}
public UpdateServiceSlbmountRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public UpdateServiceSlbmountRequest setTenant(String tenant) {
this.tenant = tenant;
return this;
}
public String getTenant() {
return this.tenant;
}
public UpdateServiceSlbmountRequest setMountInfo(java.util.List mountInfo) {
this.mountInfo = mountInfo;
return this;
}
public java.util.List getMountInfo() {
return this.mountInfo;
}
public UpdateServiceSlbmountRequest setRegionIdentity(String regionIdentity) {
this.regionIdentity = regionIdentity;
return this;
}
public String getRegionIdentity() {
return this.regionIdentity;
}
public UpdateServiceSlbmountRequest setServiceId(String serviceId) {
this.serviceId = serviceId;
return this;
}
public String getServiceId() {
return this.serviceId;
}
public UpdateServiceSlbmountRequest setSlbId(String slbId) {
this.slbId = slbId;
return this;
}
public String getSlbId() {
return this.slbId;
}
public UpdateServiceSlbmountRequest setWorkspace(String workspace) {
this.workspace = workspace;
return this;
}
public String getWorkspace() {
return this.workspace;
}
}