类 DeleteTableRequest
- java.lang.Object
-
- com.baidubce.model.AbstractBceRequest
-
- com.baidubce.services.moladb.model.DeleteTableRequest
-
public class DeleteTableRequest extends AbstractBceRequest
Represents the input of a DeleteTable operation.
-
-
构造器概要
构造器 构造器 说明 DeleteTableRequest()Constructs a new DeleteTableRequest object.DeleteTableRequest(String tableName)Constructs a new DeleteTableRequest object.
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 StringgetTableName()Get the name of the table to be deleted.voidsetTableName(String tableName)Set the name of the table to be deleted.DeleteTableRequestwithRequestCredentials(BceCredentials credentials)DeleteTableRequestwithTableName(String tableName)Set the name of the table to be deleted.-
从类继承的方法 com.baidubce.model.AbstractBceRequest
getRequestCredentials, setRequestCredentials
-
-
-
-
构造器详细资料
-
DeleteTableRequest
public DeleteTableRequest()
Constructs a new DeleteTableRequest object. Callers should use the setter or fluent setter (with...) methods to initialize any additional object members.
-
DeleteTableRequest
public DeleteTableRequest(String tableName)
Constructs a new DeleteTableRequest object. Callers should use the setter or fluent setter (with...) methods to initialize any additional object members.- 参数:
tableName- The name of the table to be deleted.
-
-
方法详细资料
-
withTableName
public DeleteTableRequest withTableName(String tableName)
Set the name of the table to be deleted.- 参数:
tableName- The name of the table to be deleted.- 返回:
- Returns a reference to the object so that method calls can be chained together.
-
setTableName
public void setTableName(String tableName)
Set the name of the table to be deleted.- 参数:
tableName- The name of the table to be deleted.
-
getTableName
public String getTableName()
Get the name of the table to be deleted.- 返回:
- The name of the table to be deleted.
-
withRequestCredentials
public DeleteTableRequest withRequestCredentials(BceCredentials credentials)
- 指定者:
withRequestCredentials在类中AbstractBceRequest
-
-