tencentcloud-sdk-nodejs-tdmysql 4.1.216 → 4.1.235
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -103,33 +103,33 @@ export interface DescribeDBSArchiveLogsResponse {
|
|
|
103
103
|
*/
|
|
104
104
|
export interface DescribeDatabaseObjectsResponse {
|
|
105
105
|
/**
|
|
106
|
-
*
|
|
106
|
+
* <p>透传入参。</p>
|
|
107
107
|
*/
|
|
108
|
-
InstanceId
|
|
108
|
+
InstanceId?: string;
|
|
109
109
|
/**
|
|
110
|
-
*
|
|
110
|
+
* <p>数据库名称。</p>
|
|
111
111
|
*/
|
|
112
|
-
DbName
|
|
112
|
+
DbName?: string;
|
|
113
113
|
/**
|
|
114
|
-
*
|
|
114
|
+
* <p>表列表。</p>
|
|
115
115
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
116
116
|
*/
|
|
117
|
-
Tables
|
|
117
|
+
Tables?: Array<DatabaseTable>;
|
|
118
118
|
/**
|
|
119
|
-
*
|
|
119
|
+
* <p>视图列表。</p>
|
|
120
120
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
121
121
|
*/
|
|
122
|
-
Views
|
|
122
|
+
Views?: Array<DatabaseView>;
|
|
123
123
|
/**
|
|
124
|
-
*
|
|
124
|
+
* <p>存储过程列表。</p>
|
|
125
125
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
126
126
|
*/
|
|
127
|
-
Procs
|
|
127
|
+
Procs?: Array<DatabaseProcedure>;
|
|
128
128
|
/**
|
|
129
|
-
*
|
|
129
|
+
* <p>函数列表。</p>
|
|
130
130
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
131
131
|
*/
|
|
132
|
-
Funcs
|
|
132
|
+
Funcs?: Array<DatabaseFunction>;
|
|
133
133
|
/**
|
|
134
134
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
135
135
|
*/
|
|
@@ -471,13 +471,25 @@ export interface DescribeDBSCloneInstancesRequest {
|
|
|
471
471
|
*/
|
|
472
472
|
export interface DescribeDatabaseObjectsRequest {
|
|
473
473
|
/**
|
|
474
|
-
*
|
|
474
|
+
* <p>实例 ID,形如:tdsql3-42f40429.</p>
|
|
475
475
|
*/
|
|
476
476
|
InstanceId: string;
|
|
477
477
|
/**
|
|
478
|
-
*
|
|
478
|
+
* <p>数据库名称,通过 DescribeDatabases 接口获取。</p>
|
|
479
479
|
*/
|
|
480
480
|
DbName: string;
|
|
481
|
+
/**
|
|
482
|
+
* <p>分页索引</p>
|
|
483
|
+
*/
|
|
484
|
+
Offset?: number;
|
|
485
|
+
/**
|
|
486
|
+
* <p>每页数量</p>
|
|
487
|
+
*/
|
|
488
|
+
Limit?: number;
|
|
489
|
+
/**
|
|
490
|
+
* <p>数据表名称匹配表达式</p>
|
|
491
|
+
*/
|
|
492
|
+
TableRegexp?: string;
|
|
481
493
|
}
|
|
482
494
|
/**
|
|
483
495
|
* DescribeDBSAvailableRecoveryTime返回参数结构体
|