tencentcloud-sdk-nodejs-tcb 4.1.263 → 4.1.265
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
|
@@ -1246,31 +1246,31 @@ export interface DescribePGUserMigrationResponse {
|
|
|
1246
1246
|
*/
|
|
1247
1247
|
Query?: string;
|
|
1248
1248
|
/**
|
|
1249
|
-
* <p>回滚的sql 语句</p>
|
|
1249
|
+
* <p>回滚的sql 语句</p><p>deprecated</p>
|
|
1250
1250
|
*/
|
|
1251
1251
|
Rollback?: string;
|
|
1252
1252
|
/**
|
|
1253
|
-
* <p>migration query 语句的checksum
|
|
1253
|
+
* <p>migration query 语句的checksum值,由服务端自动生成,同版本 checksum 不一致会拒绝执行</p><p>deprecated</p>
|
|
1254
1254
|
*/
|
|
1255
1255
|
Checksum?: string;
|
|
1256
1256
|
/**
|
|
1257
|
-
* <p>用于标记调用来源</p>
|
|
1257
|
+
* <p>用于标记调用来源</p><p>deprecated</p>
|
|
1258
1258
|
*/
|
|
1259
1259
|
Source?: string;
|
|
1260
1260
|
/**
|
|
1261
|
-
* <p>用于标记该条migration由谁创建,目前默认调用的用户uin</p>
|
|
1261
|
+
* <p>用于标记该条migration由谁创建,目前默认调用的用户uin</p><p>deprecated</p>
|
|
1262
1262
|
*/
|
|
1263
1263
|
CreatedBy?: string;
|
|
1264
1264
|
/**
|
|
1265
|
-
* <p>该migration创建时间</p>
|
|
1265
|
+
* <p>该migration创建时间</p><p>deprecated</p>
|
|
1266
1266
|
*/
|
|
1267
1267
|
CreatedAt?: string;
|
|
1268
1268
|
/**
|
|
1269
|
-
* <p>该migration应用时间</p>
|
|
1269
|
+
* <p>该migration应用时间</p><p>deprecated</p>
|
|
1270
1270
|
*/
|
|
1271
1271
|
AppliedAt?: string;
|
|
1272
1272
|
/**
|
|
1273
|
-
* <p>该migration执行耗时</p><p>单位:毫秒</p>
|
|
1273
|
+
* <p>该migration执行耗时</p><p>单位:毫秒</p><p>deprecated</p>
|
|
1274
1274
|
*/
|
|
1275
1275
|
DurationMs?: number;
|
|
1276
1276
|
/**
|
|
@@ -4159,9 +4159,13 @@ export interface PreviewPGUserMigrationsRequest {
|
|
|
4159
4159
|
*/
|
|
4160
4160
|
Migrations: Array<MigrationInput>;
|
|
4161
4161
|
/**
|
|
4162
|
-
* <p>标记请求来源</p>
|
|
4162
|
+
* <p>标记请求来源</p><p>deprecated</p>
|
|
4163
4163
|
*/
|
|
4164
4164
|
Source?: string;
|
|
4165
|
+
/**
|
|
4166
|
+
* <p>是否允许 out-of-order local migrations</p><p>默认值:false</p>
|
|
4167
|
+
*/
|
|
4168
|
+
IncludeAll?: boolean;
|
|
4165
4169
|
}
|
|
4166
4170
|
/**
|
|
4167
4171
|
* CreateMySQL请求参数结构体
|
|
@@ -4363,10 +4367,6 @@ export interface PostgreSQLInfo {
|
|
|
4363
4367
|
* <p>地域</p>
|
|
4364
4368
|
*/
|
|
4365
4369
|
Region?: string;
|
|
4366
|
-
/**
|
|
4367
|
-
* <p>数据库引擎版本</p>
|
|
4368
|
-
*/
|
|
4369
|
-
Version?: string;
|
|
4370
4370
|
}
|
|
4371
4371
|
/**
|
|
4372
4372
|
* CreateUser请求参数结构体
|
|
@@ -4957,9 +4957,13 @@ export interface PushPGUserMigrationsRequest {
|
|
|
4957
4957
|
*/
|
|
4958
4958
|
StatementTimeoutMs?: number;
|
|
4959
4959
|
/**
|
|
4960
|
-
* <p>标记请求来源</p>
|
|
4960
|
+
* <p>标记请求来源</p><p>deprecated</p>
|
|
4961
4961
|
*/
|
|
4962
4962
|
Source?: string;
|
|
4963
|
+
/**
|
|
4964
|
+
* <p>为true时允许 out-of-order local migrations</p><p>默认值:false</p>
|
|
4965
|
+
*/
|
|
4966
|
+
IncludeAll?: boolean;
|
|
4963
4967
|
}
|
|
4964
4968
|
/**
|
|
4965
4969
|
* DescribePGUserMigration请求参数结构体
|
|
@@ -5071,19 +5075,19 @@ export interface MigrationSummary {
|
|
|
5071
5075
|
*/
|
|
5072
5076
|
Name?: string;
|
|
5073
5077
|
/**
|
|
5074
|
-
* <p>migration query sql 语句checksum
|
|
5078
|
+
* <p>migration query sql 语句checksum,服务端自动生成,同版本不同checksum会拒绝执行</p><p>deprecated</p>
|
|
5075
5079
|
*/
|
|
5076
5080
|
Checksum?: string;
|
|
5077
5081
|
/**
|
|
5078
|
-
* <p>应用时间</p>
|
|
5082
|
+
* <p>应用时间</p><p>deprecated</p>
|
|
5079
5083
|
*/
|
|
5080
5084
|
AppliedAt?: string;
|
|
5081
5085
|
/**
|
|
5082
|
-
* <p>请求来源</p>
|
|
5086
|
+
* <p>请求来源</p><p>deprecated</p>
|
|
5083
5087
|
*/
|
|
5084
5088
|
Source?: string;
|
|
5085
5089
|
/**
|
|
5086
|
-
* <p>migration 创建时间</p>
|
|
5090
|
+
* <p>migration 创建时间</p><p>deprecated</p>
|
|
5087
5091
|
*/
|
|
5088
5092
|
CreatedBy?: string;
|
|
5089
5093
|
}
|