日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

查詢表描述信息

更新時(shí)間:

使用DescribeTable接口可以查詢指定表的結(jié)構(gòu)、預(yù)留讀/寫吞吐量詳情等信息。

說明

API說明請(qǐng)參見DescribeTable

前提條件

接口

def describe_table(self, table_name):

返回值為表的描述信息。返回結(jié)果中describe_table_response表示表的描述信息,是ots2.metadata.DescribeTableResponse類的實(shí)例。

參數(shù)

參數(shù)

說明

table_name

表名。

示例

以下示例用于獲取表的描述信息。

try:
    describe_response = ots_client.describe_table('SampleTable')
    # 如果沒有拋出異常,則說明執(zhí)行成功,打印如下表信息。
    print("describe table succeeded.")
    print('TableName: %s' % describe_response.table_meta.table_name)
    print('PrimaryKey: %s' % describe_response.table_meta.schema_of_primary_key)
    print('Reserved read throughput: %s' % describe_response.reserved_throughput_details.capacity_unit.read)
    print('Reserved write throughput: %s' % describe_response.reserved_throughput_details.capacity_unit.write)
    print('Last increase throughput time: %s' % describe_response.reserved_throughput_details.last_increase_time)
    print('Last decrease throughput time: %s' % describe_response.reserved_throughput_details.last_decrease_time)
    print('table options\'s time to live: %s' % describe_response.table_options.time_to_live)
    print('table options\'s max version: %s' % describe_response.table_options.max_version)
    print('table options\'s max_time_deviation: %s' % describe_response.table_options.max_time_deviation)
except Exception:
    # 如果拋出異常,則說明執(zhí)行失敗,處理異常。
    print("describe table failed.")
            

詳細(xì)代碼請(qǐng)參見DescribeTable@GitHub