com.aliyun.dms_enterprise20181101.models.DeleteLogicTableRouteConfigRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dms_enterprise20181101 Show documentation
Show all versions of dms_enterprise20181101 Show documentation
Alibaba Cloud dms-enterprise (20181101) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dms_enterprise20181101.models;
import com.aliyun.tea.*;
public class DeleteLogicTableRouteConfigRequest extends TeaModel {
/**
* The unique key of the routing algorithm. You can call the ListLogicTableRouteConfig operation to query the unique key.
* This parameter is required.
*
* example:
* id-hash-mod15
*/
@NameInMap("RouteKey")
public String routeKey;
/**
* The ID of the logical table. You can call the ListLogicTables operation to query the ID of the logical table.
* This parameter is required.
*
* example:
* 1****
*/
@NameInMap("TableId")
public Long tableId;
/**
* The ID of the tenant. You can call the GetUserActiveTenant operation to query the tenant ID.
*
* example:
* 3***
*/
@NameInMap("Tid")
public Long tid;
public static DeleteLogicTableRouteConfigRequest build(java.util.Map map) throws Exception {
DeleteLogicTableRouteConfigRequest self = new DeleteLogicTableRouteConfigRequest();
return TeaModel.build(map, self);
}
public DeleteLogicTableRouteConfigRequest setRouteKey(String routeKey) {
this.routeKey = routeKey;
return this;
}
public String getRouteKey() {
return this.routeKey;
}
public DeleteLogicTableRouteConfigRequest setTableId(Long tableId) {
this.tableId = tableId;
return this;
}
public Long getTableId() {
return this.tableId;
}
public DeleteLogicTableRouteConfigRequest setTid(Long tid) {
this.tid = tid;
return this;
}
public Long getTid() {
return this.tid;
}
}