查詢表描述信息
更新時間:
使用DescribeTable接口可以查詢指定表的結(jié)構(gòu)、預(yù)留讀/寫吞吐量詳情等信息。
前提條件
- 已初始化Client。更多信息,請參見初始化OTSClient。
- 已創(chuàng)建數(shù)據(jù)表。
接口
/// <summary>
/// 查詢指定表的結(jié)構(gòu)信息和預(yù)留讀寫吞吐量設(shè)置信息。
/// </summary>
/// <param name="request">請求參數(shù),包含表名</param>
/// <returns>包含表的結(jié)構(gòu)信息和預(yù)留讀寫吞吐量等信息。</returns>
public DescribeTableResponse DescribeTable(DescribeTableRequest request);
/// <summary>
/// DescribeTable的異步形式。
/// </summary>
public Task<DescribeTableResponse> DescribeTableAsync(DescribeTableRequest request);
參數(shù)
參數(shù) | 說明 |
tableName | 表名。 |
示例
以下示例用于獲取表描述信息。
try
{
var request = new DescribeTableRequest("SampleTable");
var response = otsClient.DescribeTable(request);
//打印表的描述信息。
Console.WriteLine("Describe table succeeded.");
Console.WriteLine("LastIncreaseTime: {0}", response.ReservedThroughputDetails.LastIncreaseTime);
Console.WriteLine("LastDecreaseTime: {0}", response.ReservedThroughputDetails.LastDecreaseTime);
Console.WriteLine("NumberOfDecreaseToday: {0}", response.ReservedThroughputDetails.LastIncreaseTime);
Console.WriteLine("ReadCapacity: {0}", response.ReservedThroughputDetails.CapacityUnit.Read);
Console.WriteLine("WriteCapacity: {0}", response.ReservedThroughputDetails.CapacityUnit.Write);
}
catch (Exception ex)
{
//如果拋出異常,則說明執(zhí)行失敗,處理異常。
Console.WriteLine("Describe table failed, exception:{0}", ex.Message);
}
相關(guān)文檔
關(guān)于API說明的更多信息,請參見DescribeTable。
如果要讀寫表中的數(shù)據(jù),您可以通過調(diào)用讀寫數(shù)據(jù)接口實現(xiàn)。具體操作,請參見基礎(chǔ)數(shù)據(jù)操作。
如果要修改表的數(shù)據(jù)生命周期、最大版本數(shù)等信息,您可以通過更新表實現(xiàn)。具體操作,請參見更新表。
如果不再使用數(shù)據(jù)表,您可以刪除數(shù)據(jù)表。具體操作,請參見刪除數(shù)據(jù)表。
文檔內(nèi)容是否對您有幫助?