@alicloud/das20200116 2.0.2 → 2.1.0
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/dist/client.d.ts +892 -796
- package/dist/client.js +713 -606
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +1562 -1421
package/dist/client.d.ts
CHANGED
|
@@ -4,29 +4,8 @@ import * as $Util from '@alicloud/tea-util';
|
|
|
4
4
|
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
|
|
5
5
|
import * as $tea from '@alicloud/tea-typescript';
|
|
6
6
|
export declare class DataResultValue extends $tea.Model {
|
|
7
|
-
/**
|
|
8
|
-
* @remarks
|
|
9
|
-
* The SQL ID.
|
|
10
|
-
*
|
|
11
|
-
* @example
|
|
12
|
-
* ad78a4e7d3ce81590c9dc2d5f4bc****
|
|
13
|
-
*/
|
|
14
7
|
sqlId?: string;
|
|
15
|
-
/**
|
|
16
|
-
* @remarks
|
|
17
|
-
* The instance ID.
|
|
18
|
-
*
|
|
19
|
-
* @example
|
|
20
|
-
* rm-2ze8g2am97624****
|
|
21
|
-
*/
|
|
22
8
|
instanceId?: string;
|
|
23
|
-
/**
|
|
24
|
-
* @remarks
|
|
25
|
-
* The number of failed executions.
|
|
26
|
-
*
|
|
27
|
-
* @example
|
|
28
|
-
* 1
|
|
29
|
-
*/
|
|
30
9
|
count?: number;
|
|
31
10
|
static names(): {
|
|
32
11
|
[key: string]: string;
|
|
@@ -329,203 +308,6 @@ export declare class AddHDMInstanceResponse extends $tea.Model {
|
|
|
329
308
|
[key: string]: any;
|
|
330
309
|
});
|
|
331
310
|
}
|
|
332
|
-
export declare class CreateAdamBenchTaskRequest extends $tea.Model {
|
|
333
|
-
/**
|
|
334
|
-
* @remarks
|
|
335
|
-
* The description of the stress testing task.
|
|
336
|
-
*
|
|
337
|
-
* This parameter is required.
|
|
338
|
-
*
|
|
339
|
-
* @example
|
|
340
|
-
* test-das-bench-0501
|
|
341
|
-
*/
|
|
342
|
-
description?: string;
|
|
343
|
-
/**
|
|
344
|
-
* @remarks
|
|
345
|
-
* The ID of the destination instance. The instance must be an ApsaraDB RDS for MySQL instance or a PolarDB for MySQL instance. You can call the [GetInstanceInspections](https://help.aliyun.com/document_detail/202857.html) operation to query the ID.
|
|
346
|
-
*
|
|
347
|
-
* This parameter is required.
|
|
348
|
-
*
|
|
349
|
-
* @example
|
|
350
|
-
* rm-2ze1jdv45i7l6****
|
|
351
|
-
*/
|
|
352
|
-
dstInstanceId?: string;
|
|
353
|
-
/**
|
|
354
|
-
* @remarks
|
|
355
|
-
* The name of the privileged account for the destination instance.
|
|
356
|
-
*
|
|
357
|
-
* This parameter is required.
|
|
358
|
-
*
|
|
359
|
-
* @example
|
|
360
|
-
* root***
|
|
361
|
-
*/
|
|
362
|
-
dstSuperAccount?: string;
|
|
363
|
-
/**
|
|
364
|
-
* @remarks
|
|
365
|
-
* The password of the privileged account for the destination instance.
|
|
366
|
-
*
|
|
367
|
-
* This parameter is required.
|
|
368
|
-
*
|
|
369
|
-
* @example
|
|
370
|
-
* root***1234
|
|
371
|
-
*/
|
|
372
|
-
dstSuperPassword?: string;
|
|
373
|
-
/**
|
|
374
|
-
* @remarks
|
|
375
|
-
* The rate at which the traffic captured from the source database instance is replayed on the destination database instance. Valid values: 1 to 30. Default value: 1.
|
|
376
|
-
*
|
|
377
|
-
* @example
|
|
378
|
-
* 1
|
|
379
|
-
*/
|
|
380
|
-
rate?: number;
|
|
381
|
-
/**
|
|
382
|
-
* @remarks
|
|
383
|
-
* The duration of the stress testing task for which the traffic is captured from the source instance. Unit: milliseconds.
|
|
384
|
-
*
|
|
385
|
-
* This parameter is required.
|
|
386
|
-
*
|
|
387
|
-
* @example
|
|
388
|
-
* 86400000
|
|
389
|
-
*/
|
|
390
|
-
requestDuration?: number;
|
|
391
|
-
/**
|
|
392
|
-
* @remarks
|
|
393
|
-
* The start time of the stress testing task. Specify the time in the UNIX timestamp format. Unit: milliseconds.
|
|
394
|
-
*
|
|
395
|
-
* This parameter is required.
|
|
396
|
-
*
|
|
397
|
-
* @example
|
|
398
|
-
* 1588819800000
|
|
399
|
-
*/
|
|
400
|
-
requestStartTime?: number;
|
|
401
|
-
/**
|
|
402
|
-
* @remarks
|
|
403
|
-
* The database engine that the source database instance runs.
|
|
404
|
-
*
|
|
405
|
-
* @example
|
|
406
|
-
* MySQL
|
|
407
|
-
*/
|
|
408
|
-
srcEngine?: string;
|
|
409
|
-
/**
|
|
410
|
-
* @remarks
|
|
411
|
-
* The version of the database engine that the source database instance runs.
|
|
412
|
-
*
|
|
413
|
-
* @example
|
|
414
|
-
* 9i
|
|
415
|
-
*/
|
|
416
|
-
srcEngineVersion?: string;
|
|
417
|
-
/**
|
|
418
|
-
* @remarks
|
|
419
|
-
* The maximum number of queries per second (QPS) within the time period during which traffic on the source database instance is captured. The value must be accurate to two decimal places.
|
|
420
|
-
*
|
|
421
|
-
* This parameter is required.
|
|
422
|
-
*
|
|
423
|
-
* @example
|
|
424
|
-
* 2013.22
|
|
425
|
-
*/
|
|
426
|
-
srcMaxQps?: number;
|
|
427
|
-
/**
|
|
428
|
-
* @remarks
|
|
429
|
-
* The average QPS within the time period in which traffic on the source database instance is captured. The value must be accurate to two decimal places.
|
|
430
|
-
*
|
|
431
|
-
* This parameter is required.
|
|
432
|
-
*
|
|
433
|
-
* @example
|
|
434
|
-
* 312.22
|
|
435
|
-
*/
|
|
436
|
-
srcMeanQps?: number;
|
|
437
|
-
/**
|
|
438
|
-
* @remarks
|
|
439
|
-
* The URL of the Object Storage Service (OSS) folder in which the archived objects for SQL statements that run on the source database instance are stored. You can obtain the URL after you upload the archived files to OSS.
|
|
440
|
-
*
|
|
441
|
-
* This parameter is required.
|
|
442
|
-
*
|
|
443
|
-
* @example
|
|
444
|
-
* http://rdslog-hz-v3.oss-cn-hangzhou.aliyuncs.com/custins4131****
|
|
445
|
-
*/
|
|
446
|
-
srcSqlOssAddr?: string;
|
|
447
|
-
static names(): {
|
|
448
|
-
[key: string]: string;
|
|
449
|
-
};
|
|
450
|
-
static types(): {
|
|
451
|
-
[key: string]: any;
|
|
452
|
-
};
|
|
453
|
-
constructor(map?: {
|
|
454
|
-
[key: string]: any;
|
|
455
|
-
});
|
|
456
|
-
}
|
|
457
|
-
export declare class CreateAdamBenchTaskResponseBody extends $tea.Model {
|
|
458
|
-
/**
|
|
459
|
-
* @remarks
|
|
460
|
-
* The HTTP status code returned.
|
|
461
|
-
*
|
|
462
|
-
* @example
|
|
463
|
-
* 200
|
|
464
|
-
*/
|
|
465
|
-
code?: string;
|
|
466
|
-
/**
|
|
467
|
-
* @remarks
|
|
468
|
-
* The detailed information, including the error codes and the number of entries that are returned.
|
|
469
|
-
*
|
|
470
|
-
* @example
|
|
471
|
-
* "Data": { "total": 1, "list":[...] }, "Code": 200, "Success": true }
|
|
472
|
-
*/
|
|
473
|
-
data?: string;
|
|
474
|
-
/**
|
|
475
|
-
* @remarks
|
|
476
|
-
* The returned message.
|
|
477
|
-
*
|
|
478
|
-
* > If the request was successful, **Successful** is returned. If the request failed, an error message such as an error code is returned.
|
|
479
|
-
*
|
|
480
|
-
* @example
|
|
481
|
-
* Successful
|
|
482
|
-
*/
|
|
483
|
-
message?: string;
|
|
484
|
-
/**
|
|
485
|
-
* @remarks
|
|
486
|
-
* The request ID.
|
|
487
|
-
*
|
|
488
|
-
* @example
|
|
489
|
-
* B6D17591-B48B-4D31-9CD6-9B9796B2****
|
|
490
|
-
*/
|
|
491
|
-
requestId?: string;
|
|
492
|
-
/**
|
|
493
|
-
* @remarks
|
|
494
|
-
* Indicates whether the request was successful. Valid values:
|
|
495
|
-
*
|
|
496
|
-
* * **true**: The request was successful.
|
|
497
|
-
* * **false**: The request failed.
|
|
498
|
-
*
|
|
499
|
-
* @example
|
|
500
|
-
* true
|
|
501
|
-
*/
|
|
502
|
-
success?: string;
|
|
503
|
-
static names(): {
|
|
504
|
-
[key: string]: string;
|
|
505
|
-
};
|
|
506
|
-
static types(): {
|
|
507
|
-
[key: string]: any;
|
|
508
|
-
};
|
|
509
|
-
constructor(map?: {
|
|
510
|
-
[key: string]: any;
|
|
511
|
-
});
|
|
512
|
-
}
|
|
513
|
-
export declare class CreateAdamBenchTaskResponse extends $tea.Model {
|
|
514
|
-
headers?: {
|
|
515
|
-
[key: string]: string;
|
|
516
|
-
};
|
|
517
|
-
statusCode?: number;
|
|
518
|
-
body?: CreateAdamBenchTaskResponseBody;
|
|
519
|
-
static names(): {
|
|
520
|
-
[key: string]: string;
|
|
521
|
-
};
|
|
522
|
-
static types(): {
|
|
523
|
-
[key: string]: any;
|
|
524
|
-
};
|
|
525
|
-
constructor(map?: {
|
|
526
|
-
[key: string]: any;
|
|
527
|
-
});
|
|
528
|
-
}
|
|
529
311
|
export declare class CreateCacheAnalysisJobRequest extends $tea.Model {
|
|
530
312
|
/**
|
|
531
313
|
* @remarks
|
|
@@ -1321,66 +1103,142 @@ export declare class CreateKillInstanceSessionTaskWithMaintainUserResponse exten
|
|
|
1321
1103
|
[key: string]: any;
|
|
1322
1104
|
});
|
|
1323
1105
|
}
|
|
1324
|
-
export declare class
|
|
1106
|
+
export declare class CreateLatestDeadLockAnalysisRequest extends $tea.Model {
|
|
1325
1107
|
/**
|
|
1326
1108
|
* @remarks
|
|
1327
|
-
*
|
|
1328
|
-
*
|
|
1329
|
-
* The remarks can be 1 to 300 characters in length.
|
|
1109
|
+
* This parameter is required.
|
|
1330
1110
|
*
|
|
1331
1111
|
* @example
|
|
1332
|
-
*
|
|
1112
|
+
* pc-bp1u5mas9exx7****
|
|
1333
1113
|
*/
|
|
1334
|
-
|
|
1114
|
+
instanceId?: string;
|
|
1335
1115
|
/**
|
|
1336
|
-
* @remarks
|
|
1337
|
-
* The database engine. Valid values:
|
|
1338
|
-
*
|
|
1339
|
-
* * **MySQL**: ApsaraDB RDS for MySQL
|
|
1340
|
-
* * **PolarDBMySQL**: PolarDB for MySQL
|
|
1341
|
-
* * **PostgreSQL**: ApsaraDB RDS for PostgreSQL
|
|
1342
|
-
*
|
|
1343
|
-
* This parameter is required.
|
|
1344
|
-
*
|
|
1345
1116
|
* @example
|
|
1346
|
-
*
|
|
1117
|
+
* pi-bp16v3824rt73****
|
|
1347
1118
|
*/
|
|
1348
|
-
|
|
1119
|
+
nodeId?: string;
|
|
1120
|
+
static names(): {
|
|
1121
|
+
[key: string]: string;
|
|
1122
|
+
};
|
|
1123
|
+
static types(): {
|
|
1124
|
+
[key: string]: any;
|
|
1125
|
+
};
|
|
1126
|
+
constructor(map?: {
|
|
1127
|
+
[key: string]: any;
|
|
1128
|
+
});
|
|
1129
|
+
}
|
|
1130
|
+
export declare class CreateLatestDeadLockAnalysisResponseBody extends $tea.Model {
|
|
1349
1131
|
/**
|
|
1350
|
-
* @remarks
|
|
1351
|
-
* The instance ID.
|
|
1352
|
-
*
|
|
1353
|
-
* This parameter is required.
|
|
1354
|
-
*
|
|
1355
1132
|
* @example
|
|
1356
|
-
*
|
|
1133
|
+
* 200
|
|
1357
1134
|
*/
|
|
1358
|
-
|
|
1135
|
+
code?: number;
|
|
1359
1136
|
/**
|
|
1360
|
-
* @remarks
|
|
1361
|
-
* The SQL template IDs. You can call the [GetQueryOptimizeExecErrorStats](https://help.aliyun.com/document_detail/405261.html) operation to obtain the SQL template ID. Separate multiple SQL template IDs with commas (,).
|
|
1362
|
-
*
|
|
1363
|
-
* This parameter is required.
|
|
1364
|
-
*
|
|
1365
1137
|
* @example
|
|
1366
|
-
*
|
|
1138
|
+
* true
|
|
1367
1139
|
*/
|
|
1368
|
-
|
|
1140
|
+
data?: boolean;
|
|
1369
1141
|
/**
|
|
1370
|
-
* @remarks
|
|
1371
|
-
* The status of **Tags**. Valid values:
|
|
1372
|
-
*
|
|
1373
|
-
* * **0**: removes all tags added to the SQL templates that are specified by **SqlIds** and leaves **Tags** empty.
|
|
1374
|
-
* * **1**: adds the tags specified by **Tags** to the SQL templates that are specified by **SqlIds**.
|
|
1375
|
-
*
|
|
1376
|
-
* This parameter is required.
|
|
1377
|
-
*
|
|
1378
1142
|
* @example
|
|
1379
|
-
*
|
|
1143
|
+
* Successful
|
|
1380
1144
|
*/
|
|
1381
|
-
|
|
1145
|
+
message?: string;
|
|
1382
1146
|
/**
|
|
1383
|
-
* @
|
|
1147
|
+
* @example
|
|
1148
|
+
* B6D17591-B48B-4D31-9CD6-9B9796B2****
|
|
1149
|
+
*/
|
|
1150
|
+
requestId?: string;
|
|
1151
|
+
/**
|
|
1152
|
+
* @example
|
|
1153
|
+
* true
|
|
1154
|
+
*/
|
|
1155
|
+
success?: boolean;
|
|
1156
|
+
static names(): {
|
|
1157
|
+
[key: string]: string;
|
|
1158
|
+
};
|
|
1159
|
+
static types(): {
|
|
1160
|
+
[key: string]: any;
|
|
1161
|
+
};
|
|
1162
|
+
constructor(map?: {
|
|
1163
|
+
[key: string]: any;
|
|
1164
|
+
});
|
|
1165
|
+
}
|
|
1166
|
+
export declare class CreateLatestDeadLockAnalysisResponse extends $tea.Model {
|
|
1167
|
+
headers?: {
|
|
1168
|
+
[key: string]: string;
|
|
1169
|
+
};
|
|
1170
|
+
statusCode?: number;
|
|
1171
|
+
body?: CreateLatestDeadLockAnalysisResponseBody;
|
|
1172
|
+
static names(): {
|
|
1173
|
+
[key: string]: string;
|
|
1174
|
+
};
|
|
1175
|
+
static types(): {
|
|
1176
|
+
[key: string]: any;
|
|
1177
|
+
};
|
|
1178
|
+
constructor(map?: {
|
|
1179
|
+
[key: string]: any;
|
|
1180
|
+
});
|
|
1181
|
+
}
|
|
1182
|
+
export declare class CreateQueryOptimizeTagRequest extends $tea.Model {
|
|
1183
|
+
/**
|
|
1184
|
+
* @remarks
|
|
1185
|
+
* The remarks.
|
|
1186
|
+
*
|
|
1187
|
+
* The remarks can be 1 to 300 characters in length.
|
|
1188
|
+
*
|
|
1189
|
+
* @example
|
|
1190
|
+
* Slow SQL queries of offline synchronization. No optimization is required.
|
|
1191
|
+
*/
|
|
1192
|
+
comments?: string;
|
|
1193
|
+
/**
|
|
1194
|
+
* @remarks
|
|
1195
|
+
* The database engine. Valid values:
|
|
1196
|
+
*
|
|
1197
|
+
* * **MySQL**: ApsaraDB RDS for MySQL
|
|
1198
|
+
* * **PolarDBMySQL**: PolarDB for MySQL
|
|
1199
|
+
* * **PostgreSQL**: ApsaraDB RDS for PostgreSQL
|
|
1200
|
+
*
|
|
1201
|
+
* This parameter is required.
|
|
1202
|
+
*
|
|
1203
|
+
* @example
|
|
1204
|
+
* MySQL
|
|
1205
|
+
*/
|
|
1206
|
+
engine?: string;
|
|
1207
|
+
/**
|
|
1208
|
+
* @remarks
|
|
1209
|
+
* The instance ID.
|
|
1210
|
+
*
|
|
1211
|
+
* This parameter is required.
|
|
1212
|
+
*
|
|
1213
|
+
* @example
|
|
1214
|
+
* rm-2ze1jdv45i7l6****
|
|
1215
|
+
*/
|
|
1216
|
+
instanceId?: string;
|
|
1217
|
+
/**
|
|
1218
|
+
* @remarks
|
|
1219
|
+
* The SQL template IDs. You can call the [GetQueryOptimizeExecErrorStats](https://help.aliyun.com/document_detail/405261.html) operation to obtain the SQL template ID. Separate multiple SQL template IDs with commas (,).
|
|
1220
|
+
*
|
|
1221
|
+
* This parameter is required.
|
|
1222
|
+
*
|
|
1223
|
+
* @example
|
|
1224
|
+
* 6068ce044e3dc9b903979672fb0b69df,d12515c015fc9f41a0778a9e1de0e941
|
|
1225
|
+
*/
|
|
1226
|
+
sqlIds?: string;
|
|
1227
|
+
/**
|
|
1228
|
+
* @remarks
|
|
1229
|
+
* The status of **Tags**. Valid values:
|
|
1230
|
+
*
|
|
1231
|
+
* * **0**: removes all tags added to the SQL templates that are specified by **SqlIds** and leaves **Tags** empty.
|
|
1232
|
+
* * **1**: adds the tags specified by **Tags** to the SQL templates that are specified by **SqlIds**.
|
|
1233
|
+
*
|
|
1234
|
+
* This parameter is required.
|
|
1235
|
+
*
|
|
1236
|
+
* @example
|
|
1237
|
+
* 1
|
|
1238
|
+
*/
|
|
1239
|
+
status?: number;
|
|
1240
|
+
/**
|
|
1241
|
+
* @remarks
|
|
1384
1242
|
* The SQL tags. Separate multiple SQL tags with commas (,). Valid values:
|
|
1385
1243
|
*
|
|
1386
1244
|
* * **DAS_IMPORTANT**: The SQL template is important.
|
|
@@ -2095,7 +1953,7 @@ export declare class DescribeAutoScalingConfigResponseBody extends $tea.Model {
|
|
|
2095
1953
|
code?: string;
|
|
2096
1954
|
/**
|
|
2097
1955
|
* @remarks
|
|
2098
|
-
* The configurations of the auto scaling feature.
|
|
1956
|
+
* The configurations of the auto scaling feature for instances.
|
|
2099
1957
|
*/
|
|
2100
1958
|
data?: DescribeAutoScalingConfigResponseBodyData;
|
|
2101
1959
|
/**
|
|
@@ -3300,7 +3158,7 @@ export declare class DescribeSqlLogConfigResponseBody extends $tea.Model {
|
|
|
3300
3158
|
code?: string;
|
|
3301
3159
|
/**
|
|
3302
3160
|
* @remarks
|
|
3303
|
-
* The data returned.
|
|
3161
|
+
* The data that is returned.
|
|
3304
3162
|
*/
|
|
3305
3163
|
data?: DescribeSqlLogConfigResponseBodyData;
|
|
3306
3164
|
/**
|
|
@@ -3751,7 +3609,7 @@ export declare class DescribeSqlLogTasksRequest extends $tea.Model {
|
|
|
3751
3609
|
pageNo?: number;
|
|
3752
3610
|
/**
|
|
3753
3611
|
* @remarks
|
|
3754
|
-
* The number of entries per page. Default value: 10.
|
|
3612
|
+
* The number of entries per page. Valid values: 1 to 100. Default value: 10.
|
|
3755
3613
|
*
|
|
3756
3614
|
* @example
|
|
3757
3615
|
* 10
|
|
@@ -6054,9 +5912,7 @@ export declare class GetAutonomousNotifyEventsInRangeResponse extends $tea.Model
|
|
|
6054
5912
|
export declare class GetBlockingDetailListRequest extends $tea.Model {
|
|
6055
5913
|
/**
|
|
6056
5914
|
* @remarks
|
|
6057
|
-
* The database
|
|
6058
|
-
*
|
|
6059
|
-
* * Separate multiple database names with commas (,).
|
|
5915
|
+
* The name of the database. Separate multiple database names with commas (,).
|
|
6060
5916
|
*
|
|
6061
5917
|
* @example
|
|
6062
5918
|
* school1,school2
|
|
@@ -6074,7 +5930,7 @@ export declare class GetBlockingDetailListRequest extends $tea.Model {
|
|
|
6074
5930
|
endTime?: string;
|
|
6075
5931
|
/**
|
|
6076
5932
|
* @remarks
|
|
6077
|
-
* The database instance
|
|
5933
|
+
* The ID of the database instance.
|
|
6078
5934
|
*
|
|
6079
5935
|
* This parameter is required.
|
|
6080
5936
|
*
|
|
@@ -6100,7 +5956,7 @@ export declare class GetBlockingDetailListRequest extends $tea.Model {
|
|
|
6100
5956
|
pageSize?: string;
|
|
6101
5957
|
/**
|
|
6102
5958
|
* @remarks
|
|
6103
|
-
* The hash value of the SQL statement.
|
|
5959
|
+
* The hash value of the SQL statement. The hash values of SQL statements of the same type are the same.
|
|
6104
5960
|
*
|
|
6105
5961
|
* @example
|
|
6106
5962
|
* DC08B955CAD25E7B
|
|
@@ -6108,7 +5964,7 @@ export declare class GetBlockingDetailListRequest extends $tea.Model {
|
|
|
6108
5964
|
queryHash?: string;
|
|
6109
5965
|
/**
|
|
6110
5966
|
* @remarks
|
|
6111
|
-
* The beginning of the time range to query.
|
|
5967
|
+
* The beginning of the time range to query. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
6112
5968
|
*
|
|
6113
5969
|
* This parameter is required.
|
|
6114
5970
|
*
|
|
@@ -6160,10 +6016,10 @@ export declare class GetBlockingDetailListResponseBody extends $tea.Model {
|
|
|
6160
6016
|
requestId?: string;
|
|
6161
6017
|
/**
|
|
6162
6018
|
* @remarks
|
|
6163
|
-
* Indicates whether the request
|
|
6019
|
+
* Indicates whether the request was successful. Valid values:
|
|
6164
6020
|
*
|
|
6165
|
-
* * true
|
|
6166
|
-
* * false
|
|
6021
|
+
* * **true**
|
|
6022
|
+
* * **false**
|
|
6167
6023
|
*
|
|
6168
6024
|
* @example
|
|
6169
6025
|
* true
|
|
@@ -6564,7 +6420,7 @@ export declare class GetDasSQLLogHotDataRequest extends $tea.Model {
|
|
|
6564
6420
|
* @remarks
|
|
6565
6421
|
* The keyword that is used for the query.
|
|
6566
6422
|
*
|
|
6567
|
-
* >
|
|
6423
|
+
* > Fuzzy search is not supported. You can query data by using multiple keywords. Separate keywords with spaces.
|
|
6568
6424
|
*
|
|
6569
6425
|
* @example
|
|
6570
6426
|
* test
|
|
@@ -6593,73 +6449,421 @@ export declare class GetDasSQLLogHotDataRequest extends $tea.Model {
|
|
|
6593
6449
|
sortKey?: string;
|
|
6594
6450
|
/**
|
|
6595
6451
|
* @remarks
|
|
6596
|
-
* The order in which you want to sort the query results.
|
|
6597
|
-
*
|
|
6598
|
-
* * **ase**: ascending order.
|
|
6599
|
-
* * **desc**: descending order.
|
|
6452
|
+
* The order in which you want to sort the query results.
|
|
6453
|
+
*
|
|
6454
|
+
* * **ase**: ascending order.
|
|
6455
|
+
* * **desc**: descending order.
|
|
6456
|
+
*
|
|
6457
|
+
* @example
|
|
6458
|
+
* ase
|
|
6459
|
+
*/
|
|
6460
|
+
sortMethod?: string;
|
|
6461
|
+
/**
|
|
6462
|
+
* @remarks
|
|
6463
|
+
* The type of the SQL statement. Valid values:
|
|
6464
|
+
*
|
|
6465
|
+
* * **SELECT**
|
|
6466
|
+
* * **UPDATE**
|
|
6467
|
+
* * **DELETE**
|
|
6468
|
+
*
|
|
6469
|
+
* @example
|
|
6470
|
+
* SELECT
|
|
6471
|
+
*/
|
|
6472
|
+
sqlType?: string;
|
|
6473
|
+
/**
|
|
6474
|
+
* @remarks
|
|
6475
|
+
* The beginning of the time range to query. Specify a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
6476
|
+
*
|
|
6477
|
+
* > The beginning of the time range to query must be later than the time when DAS Enterprise Edition is enabled, and can be up to seven days earlier than the current time.
|
|
6478
|
+
*
|
|
6479
|
+
* This parameter is required.
|
|
6480
|
+
*
|
|
6481
|
+
* @example
|
|
6482
|
+
* 1684734297000
|
|
6483
|
+
*/
|
|
6484
|
+
start?: number;
|
|
6485
|
+
/**
|
|
6486
|
+
* @remarks
|
|
6487
|
+
* The execution results. You can specify **0** to query the SQL statements that are successfully executed. You can also specify an error code to query the corresponding SQL statements that fail to be executed.
|
|
6488
|
+
*
|
|
6489
|
+
* @example
|
|
6490
|
+
* 0
|
|
6491
|
+
*/
|
|
6492
|
+
state?: string;
|
|
6493
|
+
/**
|
|
6494
|
+
* @remarks
|
|
6495
|
+
* The thread ID.
|
|
6496
|
+
*
|
|
6497
|
+
* > You can specify multiple thread IDs that are separated by spaces. Example: `Thread ID1 Thread ID2 Thread ID3`.
|
|
6498
|
+
*
|
|
6499
|
+
* @example
|
|
6500
|
+
* 657
|
|
6501
|
+
*/
|
|
6502
|
+
threadID?: string;
|
|
6503
|
+
/**
|
|
6504
|
+
* @remarks
|
|
6505
|
+
* The reserved parameter. This parameter is not supported.
|
|
6506
|
+
*
|
|
6507
|
+
* @example
|
|
6508
|
+
* None
|
|
6509
|
+
*/
|
|
6510
|
+
traceId?: string;
|
|
6511
|
+
/**
|
|
6512
|
+
* @remarks
|
|
6513
|
+
* The transaction ID.
|
|
6514
|
+
*
|
|
6515
|
+
* @example
|
|
6516
|
+
* 0
|
|
6517
|
+
*/
|
|
6518
|
+
transactionId?: string;
|
|
6519
|
+
static names(): {
|
|
6520
|
+
[key: string]: string;
|
|
6521
|
+
};
|
|
6522
|
+
static types(): {
|
|
6523
|
+
[key: string]: any;
|
|
6524
|
+
};
|
|
6525
|
+
constructor(map?: {
|
|
6526
|
+
[key: string]: any;
|
|
6527
|
+
});
|
|
6528
|
+
}
|
|
6529
|
+
export declare class GetDasSQLLogHotDataResponseBody extends $tea.Model {
|
|
6530
|
+
/**
|
|
6531
|
+
* @remarks
|
|
6532
|
+
* The HTTP status code returned.
|
|
6533
|
+
*
|
|
6534
|
+
* @example
|
|
6535
|
+
* 200
|
|
6536
|
+
*/
|
|
6537
|
+
code?: string;
|
|
6538
|
+
/**
|
|
6539
|
+
* @remarks
|
|
6540
|
+
* The data returned.
|
|
6541
|
+
*/
|
|
6542
|
+
data?: GetDasSQLLogHotDataResponseBodyData;
|
|
6543
|
+
/**
|
|
6544
|
+
* @remarks
|
|
6545
|
+
* The returned message.
|
|
6546
|
+
*
|
|
6547
|
+
* > If the request was successful, **Successful** is returned. If the request failed, an error message such as an error code is returned.
|
|
6548
|
+
*
|
|
6549
|
+
* @example
|
|
6550
|
+
* Successful
|
|
6551
|
+
*/
|
|
6552
|
+
message?: string;
|
|
6553
|
+
/**
|
|
6554
|
+
* @remarks
|
|
6555
|
+
* The request ID.
|
|
6556
|
+
*
|
|
6557
|
+
* @example
|
|
6558
|
+
* 0A74B755-98B7-59DB-8724-1321B394****
|
|
6559
|
+
*/
|
|
6560
|
+
requestId?: string;
|
|
6561
|
+
/**
|
|
6562
|
+
* @remarks
|
|
6563
|
+
* Indicates whether the request was successful. Valid values:
|
|
6564
|
+
*
|
|
6565
|
+
* * **true**
|
|
6566
|
+
* * **false**
|
|
6567
|
+
*
|
|
6568
|
+
* @example
|
|
6569
|
+
* true
|
|
6570
|
+
*/
|
|
6571
|
+
success?: string;
|
|
6572
|
+
static names(): {
|
|
6573
|
+
[key: string]: string;
|
|
6574
|
+
};
|
|
6575
|
+
static types(): {
|
|
6576
|
+
[key: string]: any;
|
|
6577
|
+
};
|
|
6578
|
+
constructor(map?: {
|
|
6579
|
+
[key: string]: any;
|
|
6580
|
+
});
|
|
6581
|
+
}
|
|
6582
|
+
export declare class GetDasSQLLogHotDataResponse extends $tea.Model {
|
|
6583
|
+
headers?: {
|
|
6584
|
+
[key: string]: string;
|
|
6585
|
+
};
|
|
6586
|
+
statusCode?: number;
|
|
6587
|
+
body?: GetDasSQLLogHotDataResponseBody;
|
|
6588
|
+
static names(): {
|
|
6589
|
+
[key: string]: string;
|
|
6590
|
+
};
|
|
6591
|
+
static types(): {
|
|
6592
|
+
[key: string]: any;
|
|
6593
|
+
};
|
|
6594
|
+
constructor(map?: {
|
|
6595
|
+
[key: string]: any;
|
|
6596
|
+
});
|
|
6597
|
+
}
|
|
6598
|
+
export declare class GetDeadLockDetailRequest extends $tea.Model {
|
|
6599
|
+
/**
|
|
6600
|
+
* @remarks
|
|
6601
|
+
* This parameter is required.
|
|
6602
|
+
*
|
|
6603
|
+
* @example
|
|
6604
|
+
* pc-bp1u5mas9exx7****
|
|
6605
|
+
*/
|
|
6606
|
+
instanceId?: string;
|
|
6607
|
+
/**
|
|
6608
|
+
* @example
|
|
6609
|
+
* pi-bp16v3824rt73****
|
|
6610
|
+
*/
|
|
6611
|
+
nodeId?: string;
|
|
6612
|
+
/**
|
|
6613
|
+
* @example
|
|
6614
|
+
* AUTO
|
|
6615
|
+
*/
|
|
6616
|
+
source?: string;
|
|
6617
|
+
/**
|
|
6618
|
+
* @remarks
|
|
6619
|
+
* This parameter is required.
|
|
6620
|
+
*
|
|
6621
|
+
* @example
|
|
6622
|
+
* a0e390cd5aca9ae964448f040153****
|
|
6623
|
+
*/
|
|
6624
|
+
textId?: string;
|
|
6625
|
+
static names(): {
|
|
6626
|
+
[key: string]: string;
|
|
6627
|
+
};
|
|
6628
|
+
static types(): {
|
|
6629
|
+
[key: string]: any;
|
|
6630
|
+
};
|
|
6631
|
+
constructor(map?: {
|
|
6632
|
+
[key: string]: any;
|
|
6633
|
+
});
|
|
6634
|
+
}
|
|
6635
|
+
export declare class GetDeadLockDetailResponseBody extends $tea.Model {
|
|
6636
|
+
/**
|
|
6637
|
+
* @example
|
|
6638
|
+
* 200
|
|
6639
|
+
*/
|
|
6640
|
+
code?: string;
|
|
6641
|
+
data?: string;
|
|
6642
|
+
/**
|
|
6643
|
+
* @example
|
|
6644
|
+
* Successful
|
|
6645
|
+
*/
|
|
6646
|
+
message?: string;
|
|
6647
|
+
/**
|
|
6648
|
+
* @example
|
|
6649
|
+
* 9CB97BC4-6479-55D0-B9D0-EA925AFE****
|
|
6650
|
+
*/
|
|
6651
|
+
requestId?: string;
|
|
6652
|
+
/**
|
|
6653
|
+
* @example
|
|
6654
|
+
* true
|
|
6655
|
+
*/
|
|
6656
|
+
success?: string;
|
|
6657
|
+
/**
|
|
6658
|
+
* @example
|
|
6659
|
+
* None
|
|
6660
|
+
*/
|
|
6661
|
+
synchro?: string;
|
|
6662
|
+
static names(): {
|
|
6663
|
+
[key: string]: string;
|
|
6664
|
+
};
|
|
6665
|
+
static types(): {
|
|
6666
|
+
[key: string]: any;
|
|
6667
|
+
};
|
|
6668
|
+
constructor(map?: {
|
|
6669
|
+
[key: string]: any;
|
|
6670
|
+
});
|
|
6671
|
+
}
|
|
6672
|
+
export declare class GetDeadLockDetailResponse extends $tea.Model {
|
|
6673
|
+
headers?: {
|
|
6674
|
+
[key: string]: string;
|
|
6675
|
+
};
|
|
6676
|
+
statusCode?: number;
|
|
6677
|
+
body?: GetDeadLockDetailResponseBody;
|
|
6678
|
+
static names(): {
|
|
6679
|
+
[key: string]: string;
|
|
6680
|
+
};
|
|
6681
|
+
static types(): {
|
|
6682
|
+
[key: string]: any;
|
|
6683
|
+
};
|
|
6684
|
+
constructor(map?: {
|
|
6685
|
+
[key: string]: any;
|
|
6686
|
+
});
|
|
6687
|
+
}
|
|
6688
|
+
export declare class GetDeadLockDetailListRequest extends $tea.Model {
|
|
6689
|
+
/**
|
|
6690
|
+
* @remarks
|
|
6691
|
+
* The name of the database. When you specify multiple databases, you must separate the database names with commas (,).
|
|
6692
|
+
*
|
|
6693
|
+
* @example
|
|
6694
|
+
* school1,school2
|
|
6695
|
+
*/
|
|
6696
|
+
dbNameList?: string;
|
|
6697
|
+
/**
|
|
6698
|
+
* @remarks
|
|
6699
|
+
* The end of the time range to query. Set this parameter to a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
6700
|
+
*
|
|
6701
|
+
* This parameter is required.
|
|
6702
|
+
*
|
|
6703
|
+
* @example
|
|
6704
|
+
* 1702360530292
|
|
6705
|
+
*/
|
|
6706
|
+
endTime?: string;
|
|
6707
|
+
/**
|
|
6708
|
+
* @remarks
|
|
6709
|
+
* The ID of the database instance.
|
|
6710
|
+
*
|
|
6711
|
+
* This parameter is required.
|
|
6712
|
+
*
|
|
6713
|
+
* @example
|
|
6714
|
+
* rm-2ze2016723b328gs2
|
|
6715
|
+
*/
|
|
6716
|
+
instanceId?: string;
|
|
6717
|
+
/**
|
|
6718
|
+
* @remarks
|
|
6719
|
+
* The page number. The value must be an integer that is greater than 0. Default value: 1.
|
|
6720
|
+
*
|
|
6721
|
+
* @example
|
|
6722
|
+
* 1
|
|
6723
|
+
*/
|
|
6724
|
+
pageNo?: string;
|
|
6725
|
+
/**
|
|
6726
|
+
* @remarks
|
|
6727
|
+
* The number of entries per page. Default value: 10.
|
|
6728
|
+
*
|
|
6729
|
+
* @example
|
|
6730
|
+
* 5
|
|
6731
|
+
*/
|
|
6732
|
+
pageSize?: string;
|
|
6733
|
+
/**
|
|
6734
|
+
* @remarks
|
|
6735
|
+
* The beginning of the time range to query. Set this parameter to a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
6736
|
+
*
|
|
6737
|
+
* This parameter is required.
|
|
6738
|
+
*
|
|
6739
|
+
* @example
|
|
6740
|
+
* 1701755730292
|
|
6741
|
+
*/
|
|
6742
|
+
startTime?: string;
|
|
6743
|
+
static names(): {
|
|
6744
|
+
[key: string]: string;
|
|
6745
|
+
};
|
|
6746
|
+
static types(): {
|
|
6747
|
+
[key: string]: any;
|
|
6748
|
+
};
|
|
6749
|
+
constructor(map?: {
|
|
6750
|
+
[key: string]: any;
|
|
6751
|
+
});
|
|
6752
|
+
}
|
|
6753
|
+
export declare class GetDeadLockDetailListResponseBody extends $tea.Model {
|
|
6754
|
+
/**
|
|
6755
|
+
* @remarks
|
|
6756
|
+
* The HTTP status code returned.
|
|
6757
|
+
*
|
|
6758
|
+
* @example
|
|
6759
|
+
* 200
|
|
6760
|
+
*/
|
|
6761
|
+
code?: string;
|
|
6762
|
+
/**
|
|
6763
|
+
* @remarks
|
|
6764
|
+
* The data returned.
|
|
6765
|
+
*/
|
|
6766
|
+
data?: GetDeadLockDetailListResponseBodyData;
|
|
6767
|
+
/**
|
|
6768
|
+
* @remarks
|
|
6769
|
+
* The returned message.
|
|
6770
|
+
*
|
|
6771
|
+
* > If the request is successful, **Successful** is returned. Otherwise, an error message such as an error code is returned.
|
|
6772
|
+
*
|
|
6773
|
+
* @example
|
|
6774
|
+
* Successful
|
|
6775
|
+
*/
|
|
6776
|
+
message?: string;
|
|
6777
|
+
/**
|
|
6778
|
+
* @remarks
|
|
6779
|
+
* The request ID.
|
|
6780
|
+
*
|
|
6781
|
+
* @example
|
|
6782
|
+
* 840F51F7-9C01-538D-94F6-AE712905****
|
|
6783
|
+
*/
|
|
6784
|
+
requestId?: string;
|
|
6785
|
+
/**
|
|
6786
|
+
* @remarks
|
|
6787
|
+
* Indicates whether the request is successful. Valid values:
|
|
6788
|
+
*
|
|
6789
|
+
* * **true**
|
|
6790
|
+
* * **false**
|
|
6791
|
+
*
|
|
6792
|
+
* @example
|
|
6793
|
+
* true
|
|
6794
|
+
*/
|
|
6795
|
+
success?: string;
|
|
6796
|
+
static names(): {
|
|
6797
|
+
[key: string]: string;
|
|
6798
|
+
};
|
|
6799
|
+
static types(): {
|
|
6800
|
+
[key: string]: any;
|
|
6801
|
+
};
|
|
6802
|
+
constructor(map?: {
|
|
6803
|
+
[key: string]: any;
|
|
6804
|
+
});
|
|
6805
|
+
}
|
|
6806
|
+
export declare class GetDeadLockDetailListResponse extends $tea.Model {
|
|
6807
|
+
headers?: {
|
|
6808
|
+
[key: string]: string;
|
|
6809
|
+
};
|
|
6810
|
+
statusCode?: number;
|
|
6811
|
+
body?: GetDeadLockDetailListResponseBody;
|
|
6812
|
+
static names(): {
|
|
6813
|
+
[key: string]: string;
|
|
6814
|
+
};
|
|
6815
|
+
static types(): {
|
|
6816
|
+
[key: string]: any;
|
|
6817
|
+
};
|
|
6818
|
+
constructor(map?: {
|
|
6819
|
+
[key: string]: any;
|
|
6820
|
+
});
|
|
6821
|
+
}
|
|
6822
|
+
export declare class GetDeadLockHistoryRequest extends $tea.Model {
|
|
6823
|
+
/**
|
|
6824
|
+
* @remarks
|
|
6825
|
+
* This parameter is required.
|
|
6600
6826
|
*
|
|
6601
6827
|
* @example
|
|
6602
|
-
*
|
|
6828
|
+
* 1732069466000
|
|
6603
6829
|
*/
|
|
6604
|
-
|
|
6830
|
+
endTime?: number;
|
|
6605
6831
|
/**
|
|
6606
6832
|
* @remarks
|
|
6607
|
-
*
|
|
6608
|
-
*
|
|
6609
|
-
* * **SELECT**
|
|
6610
|
-
* * **UPDATE**
|
|
6611
|
-
* * **DELETE**
|
|
6833
|
+
* This parameter is required.
|
|
6612
6834
|
*
|
|
6613
6835
|
* @example
|
|
6614
|
-
*
|
|
6836
|
+
* pc-bp1u5mas9exx7****
|
|
6615
6837
|
*/
|
|
6616
|
-
|
|
6838
|
+
instanceId?: string;
|
|
6617
6839
|
/**
|
|
6618
|
-
* @remarks
|
|
6619
|
-
* The beginning of the time range to query. Specify the time in the UNIX timestamp format. Unit: millisecond.
|
|
6620
|
-
*
|
|
6621
|
-
* > You can query only the data generated after DAS Enterprise Edition V2 or V3 was enabled. The beginning of the time range to query can be up to seven days earlier than the current time.
|
|
6622
|
-
*
|
|
6623
|
-
* This parameter is required.
|
|
6624
|
-
*
|
|
6625
6840
|
* @example
|
|
6626
|
-
*
|
|
6841
|
+
* pi-bp16v3824rt73****
|
|
6627
6842
|
*/
|
|
6628
|
-
|
|
6843
|
+
nodeId?: string;
|
|
6629
6844
|
/**
|
|
6630
|
-
* @remarks
|
|
6631
|
-
* The execution results. You can specify **0** to query the SQL statements that are successfully executed. You can also specify an error code to query the corresponding SQL statements that fail to be executed.
|
|
6632
|
-
*
|
|
6633
6845
|
* @example
|
|
6634
|
-
*
|
|
6846
|
+
* 1
|
|
6635
6847
|
*/
|
|
6636
|
-
|
|
6848
|
+
pageNo?: number;
|
|
6637
6849
|
/**
|
|
6638
|
-
* @remarks
|
|
6639
|
-
* The thread ID.
|
|
6640
|
-
*
|
|
6641
|
-
* > You can specify multiple thread IDs that are separated by spaces. Example: `Thread ID1 Thread ID2 Thread ID3`.
|
|
6642
|
-
*
|
|
6643
6850
|
* @example
|
|
6644
|
-
*
|
|
6851
|
+
* 10
|
|
6645
6852
|
*/
|
|
6646
|
-
|
|
6853
|
+
pageSize?: number;
|
|
6647
6854
|
/**
|
|
6648
|
-
* @remarks
|
|
6649
|
-
* The reserved parameter. This parameter is not supported.
|
|
6650
|
-
*
|
|
6651
6855
|
* @example
|
|
6652
|
-
*
|
|
6856
|
+
* AUTO
|
|
6653
6857
|
*/
|
|
6654
|
-
|
|
6858
|
+
source?: string;
|
|
6655
6859
|
/**
|
|
6656
6860
|
* @remarks
|
|
6657
|
-
*
|
|
6861
|
+
* This parameter is required.
|
|
6658
6862
|
*
|
|
6659
6863
|
* @example
|
|
6660
|
-
*
|
|
6864
|
+
* 1731983066000
|
|
6661
6865
|
*/
|
|
6662
|
-
|
|
6866
|
+
startTime?: number;
|
|
6663
6867
|
static names(): {
|
|
6664
6868
|
[key: string]: string;
|
|
6665
6869
|
};
|
|
@@ -6670,49 +6874,59 @@ export declare class GetDasSQLLogHotDataRequest extends $tea.Model {
|
|
|
6670
6874
|
[key: string]: any;
|
|
6671
6875
|
});
|
|
6672
6876
|
}
|
|
6673
|
-
export declare class
|
|
6877
|
+
export declare class GetDeadLockHistoryResponseBody extends $tea.Model {
|
|
6674
6878
|
/**
|
|
6675
|
-
* @remarks
|
|
6676
|
-
* The HTTP status code returned.
|
|
6677
|
-
*
|
|
6678
6879
|
* @example
|
|
6679
6880
|
* 200
|
|
6680
6881
|
*/
|
|
6681
6882
|
code?: string;
|
|
6682
6883
|
/**
|
|
6683
|
-
* @
|
|
6684
|
-
*
|
|
6884
|
+
* @example
|
|
6885
|
+
* {
|
|
6886
|
+
* "total": 2,
|
|
6887
|
+
* "list": [
|
|
6888
|
+
* {
|
|
6889
|
+
* "accountId": "108************",
|
|
6890
|
+
* "textId": "35303d12d52d29ba73bb85fa2d5b****",
|
|
6891
|
+
* "gmtModified": 1732712680000,
|
|
6892
|
+
* "lockTime": 1732687047000,
|
|
6893
|
+
* "gmtCreate": 1732712680000,
|
|
6894
|
+
* "nodeId": "pi-8****************",
|
|
6895
|
+
* "uuid": "pc-8v**************"
|
|
6896
|
+
* },
|
|
6897
|
+
* {
|
|
6898
|
+
* "accountId": "108************",
|
|
6899
|
+
* "textId": "50a24bdcc5fe7e03f92a55ae7574****",
|
|
6900
|
+
* "gmtModified": 1732626448000,
|
|
6901
|
+
* "lockTime": 1722500305000,
|
|
6902
|
+
* "gmtCreate": 1732626448000,
|
|
6903
|
+
* "nodeId": "pi-8****************",
|
|
6904
|
+
* "uuid": "pc-8v**************"
|
|
6905
|
+
* }
|
|
6906
|
+
* ]
|
|
6907
|
+
* }
|
|
6685
6908
|
*/
|
|
6686
|
-
data?:
|
|
6909
|
+
data?: string;
|
|
6687
6910
|
/**
|
|
6688
|
-
* @remarks
|
|
6689
|
-
* The returned message.
|
|
6690
|
-
*
|
|
6691
|
-
* > If the request was successful, **Successful** is returned. If the request failed, an error message such as an error code is returned.
|
|
6692
|
-
*
|
|
6693
6911
|
* @example
|
|
6694
6912
|
* Successful
|
|
6695
6913
|
*/
|
|
6696
6914
|
message?: string;
|
|
6697
6915
|
/**
|
|
6698
|
-
* @remarks
|
|
6699
|
-
* The request ID.
|
|
6700
|
-
*
|
|
6701
6916
|
* @example
|
|
6702
|
-
*
|
|
6917
|
+
* B6D17591-B48B-4D31-9CD6-9B9796B2****
|
|
6703
6918
|
*/
|
|
6704
6919
|
requestId?: string;
|
|
6705
6920
|
/**
|
|
6706
|
-
* @remarks
|
|
6707
|
-
* Indicates whether the request was successful. Valid values:
|
|
6708
|
-
*
|
|
6709
|
-
* * **true**
|
|
6710
|
-
* * **false**
|
|
6711
|
-
*
|
|
6712
6921
|
* @example
|
|
6713
6922
|
* true
|
|
6714
6923
|
*/
|
|
6715
6924
|
success?: string;
|
|
6925
|
+
/**
|
|
6926
|
+
* @example
|
|
6927
|
+
* None
|
|
6928
|
+
*/
|
|
6929
|
+
synchro?: string;
|
|
6716
6930
|
static names(): {
|
|
6717
6931
|
[key: string]: string;
|
|
6718
6932
|
};
|
|
@@ -6723,12 +6937,12 @@ export declare class GetDasSQLLogHotDataResponseBody extends $tea.Model {
|
|
|
6723
6937
|
[key: string]: any;
|
|
6724
6938
|
});
|
|
6725
6939
|
}
|
|
6726
|
-
export declare class
|
|
6940
|
+
export declare class GetDeadLockHistoryResponse extends $tea.Model {
|
|
6727
6941
|
headers?: {
|
|
6728
6942
|
[key: string]: string;
|
|
6729
6943
|
};
|
|
6730
6944
|
statusCode?: number;
|
|
6731
|
-
body?:
|
|
6945
|
+
body?: GetDeadLockHistoryResponseBody;
|
|
6732
6946
|
static names(): {
|
|
6733
6947
|
[key: string]: string;
|
|
6734
6948
|
};
|
|
@@ -6739,61 +6953,41 @@ export declare class GetDasSQLLogHotDataResponse extends $tea.Model {
|
|
|
6739
6953
|
[key: string]: any;
|
|
6740
6954
|
});
|
|
6741
6955
|
}
|
|
6742
|
-
export declare class
|
|
6743
|
-
/**
|
|
6744
|
-
* @remarks
|
|
6745
|
-
* The database name list.
|
|
6746
|
-
*
|
|
6747
|
-
* @example
|
|
6748
|
-
* school1,school2
|
|
6749
|
-
*/
|
|
6750
|
-
dbNameList?: string;
|
|
6956
|
+
export declare class GetDeadlockHistogramRequest extends $tea.Model {
|
|
6751
6957
|
/**
|
|
6752
6958
|
* @remarks
|
|
6753
|
-
* The end of the time range to query. Set this parameter to a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
6754
|
-
*
|
|
6755
6959
|
* This parameter is required.
|
|
6756
6960
|
*
|
|
6757
6961
|
* @example
|
|
6758
|
-
*
|
|
6962
|
+
* 1732069466000
|
|
6759
6963
|
*/
|
|
6760
|
-
endTime?:
|
|
6964
|
+
endTime?: number;
|
|
6761
6965
|
/**
|
|
6762
6966
|
* @remarks
|
|
6763
|
-
* The instance ID.
|
|
6764
|
-
*
|
|
6765
6967
|
* This parameter is required.
|
|
6766
6968
|
*
|
|
6767
6969
|
* @example
|
|
6768
|
-
*
|
|
6970
|
+
* pc-bp1u5mas9exx7****
|
|
6769
6971
|
*/
|
|
6770
6972
|
instanceId?: string;
|
|
6771
6973
|
/**
|
|
6772
|
-
* @remarks
|
|
6773
|
-
* The page number. The value must be an integer that is greater than 0. Default value: 1.
|
|
6774
|
-
*
|
|
6775
6974
|
* @example
|
|
6776
|
-
*
|
|
6975
|
+
* pi-bp16v3824rt73****
|
|
6777
6976
|
*/
|
|
6778
|
-
|
|
6977
|
+
nodeId?: string;
|
|
6779
6978
|
/**
|
|
6780
6979
|
* @remarks
|
|
6781
|
-
*
|
|
6980
|
+
* This parameter is required.
|
|
6782
6981
|
*
|
|
6783
6982
|
* @example
|
|
6784
|
-
*
|
|
6983
|
+
* 1731983066000
|
|
6785
6984
|
*/
|
|
6786
|
-
|
|
6985
|
+
startTime?: number;
|
|
6787
6986
|
/**
|
|
6788
|
-
* @remarks
|
|
6789
|
-
* The beginning of the time range to query. Set this parameter to a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
6790
|
-
*
|
|
6791
|
-
* This parameter is required.
|
|
6792
|
-
*
|
|
6793
6987
|
* @example
|
|
6794
|
-
*
|
|
6988
|
+
* SUCCESS
|
|
6795
6989
|
*/
|
|
6796
|
-
|
|
6990
|
+
status?: string;
|
|
6797
6991
|
static names(): {
|
|
6798
6992
|
[key: string]: string;
|
|
6799
6993
|
};
|
|
@@ -6804,49 +6998,28 @@ export declare class GetDeadLockDetailListRequest extends $tea.Model {
|
|
|
6804
6998
|
[key: string]: any;
|
|
6805
6999
|
});
|
|
6806
7000
|
}
|
|
6807
|
-
export declare class
|
|
7001
|
+
export declare class GetDeadlockHistogramResponseBody extends $tea.Model {
|
|
6808
7002
|
/**
|
|
6809
|
-
* @remarks
|
|
6810
|
-
* The HTTP status code returned.
|
|
6811
|
-
*
|
|
6812
7003
|
* @example
|
|
6813
7004
|
* 200
|
|
6814
7005
|
*/
|
|
6815
|
-
code?:
|
|
6816
|
-
|
|
6817
|
-
* @remarks
|
|
6818
|
-
* The returned data.
|
|
6819
|
-
*/
|
|
6820
|
-
data?: GetDeadLockDetailListResponseBodyData;
|
|
7006
|
+
code?: number;
|
|
7007
|
+
data?: GetDeadlockHistogramResponseBodyData[];
|
|
6821
7008
|
/**
|
|
6822
|
-
* @remarks
|
|
6823
|
-
* The returned message.
|
|
6824
|
-
*
|
|
6825
|
-
* > If the request is successful, **Successful** is returned. Otherwise, an error message such as an error code is returned.
|
|
6826
|
-
*
|
|
6827
7009
|
* @example
|
|
6828
7010
|
* Successful
|
|
6829
7011
|
*/
|
|
6830
7012
|
message?: string;
|
|
6831
7013
|
/**
|
|
6832
|
-
* @remarks
|
|
6833
|
-
* The request ID.
|
|
6834
|
-
*
|
|
6835
7014
|
* @example
|
|
6836
|
-
*
|
|
7015
|
+
* 0A74B755-98B7-59DB-8724-1321B394****
|
|
6837
7016
|
*/
|
|
6838
7017
|
requestId?: string;
|
|
6839
7018
|
/**
|
|
6840
|
-
* @remarks
|
|
6841
|
-
* Indicates whether the request is successful. Valid values:
|
|
6842
|
-
*
|
|
6843
|
-
* * **true**
|
|
6844
|
-
* * **false**
|
|
6845
|
-
*
|
|
6846
7019
|
* @example
|
|
6847
7020
|
* true
|
|
6848
7021
|
*/
|
|
6849
|
-
success?:
|
|
7022
|
+
success?: boolean;
|
|
6850
7023
|
static names(): {
|
|
6851
7024
|
[key: string]: string;
|
|
6852
7025
|
};
|
|
@@ -6857,12 +7030,12 @@ export declare class GetDeadLockDetailListResponseBody extends $tea.Model {
|
|
|
6857
7030
|
[key: string]: any;
|
|
6858
7031
|
});
|
|
6859
7032
|
}
|
|
6860
|
-
export declare class
|
|
7033
|
+
export declare class GetDeadlockHistogramResponse extends $tea.Model {
|
|
6861
7034
|
headers?: {
|
|
6862
7035
|
[key: string]: string;
|
|
6863
7036
|
};
|
|
6864
7037
|
statusCode?: number;
|
|
6865
|
-
body?:
|
|
7038
|
+
body?: GetDeadlockHistogramResponseBody;
|
|
6866
7039
|
static names(): {
|
|
6867
7040
|
[key: string]: string;
|
|
6868
7041
|
};
|
|
@@ -7243,9 +7416,9 @@ export declare class GetFullRequestOriginStatByInstanceIdRequest extends $tea.Mo
|
|
|
7243
7416
|
role?: string;
|
|
7244
7417
|
/**
|
|
7245
7418
|
* @remarks
|
|
7246
|
-
* The type of the SQL statement. Valid values: **SELECT**, **INSERT**, **UPDATE**, **DELETE**, **
|
|
7419
|
+
* The type of the SQL statement. Valid values: **SELECT**, **INSERT**, **UPDATE**, **DELETE**, **MERGE**, **ALTER**, **CREATEINDEX**, **DROPINDEX**, **CREATE**, **DROP**, **SET**, **DESC**, **REPLACE**, **CALL**, **BEGIN**, **DESCRIBE**, **ROLLBACK**, **FLUSH**, **USE**, **SHOW**, **START**, **COMMIT**, and **RENAME**.
|
|
7247
7420
|
*
|
|
7248
|
-
* > If the database instance is an ApsaraDB RDS for MySQL instance, a PolarDB for MySQL
|
|
7421
|
+
* > If the database instance is an ApsaraDB RDS for MySQL instance, a PolarDB for MySQL instance, or a PolarDB-X 2.0 instance, statistics can be collected based on the SQL statement type.
|
|
7249
7422
|
*
|
|
7250
7423
|
* @example
|
|
7251
7424
|
* SELECT
|
|
@@ -8913,7 +9086,7 @@ export declare class GetPfsMetricTrendsRequest extends $tea.Model {
|
|
|
8913
9086
|
* @remarks
|
|
8914
9087
|
* The node ID.
|
|
8915
9088
|
*
|
|
8916
|
-
* >
|
|
9089
|
+
* > This parameter is required if the database instance is an ApsaraDB RDS for MySQL Cluster Edition instance or a PolarDB for MySQL clusters.
|
|
8917
9090
|
*
|
|
8918
9091
|
* @example
|
|
8919
9092
|
* r-x****-db-0
|
|
@@ -9182,7 +9355,7 @@ export declare class GetPfsSqlSummariesRequest extends $tea.Model {
|
|
|
9182
9355
|
* @remarks
|
|
9183
9356
|
* The node ID.
|
|
9184
9357
|
*
|
|
9185
|
-
* > This parameter
|
|
9358
|
+
* > This parameter is required if the database instance is an ApsaraDB RDS for MySQL Cluster Edition instance or a PolarDB for MySQL cluster.
|
|
9186
9359
|
*
|
|
9187
9360
|
* @example
|
|
9188
9361
|
* r-****-db-0
|
|
@@ -9258,7 +9431,7 @@ export declare class GetPfsSqlSummariesResponseBody extends $tea.Model {
|
|
|
9258
9431
|
code?: number;
|
|
9259
9432
|
/**
|
|
9260
9433
|
* @remarks
|
|
9261
|
-
* The data
|
|
9434
|
+
* The returned data.
|
|
9262
9435
|
*/
|
|
9263
9436
|
data?: GetPfsSqlSummariesResponseBodyData;
|
|
9264
9437
|
/**
|
|
@@ -11021,7 +11194,9 @@ export declare class GetRequestDiagnosisResultRequest extends $tea.Model {
|
|
|
11021
11194
|
instanceId?: string;
|
|
11022
11195
|
/**
|
|
11023
11196
|
* @remarks
|
|
11024
|
-
* The unique ID of the
|
|
11197
|
+
* The unique ID of the diagnostic task.[](~~341609~~)
|
|
11198
|
+
*
|
|
11199
|
+
* > If you set MessageId to the task ID of the automatic SQL optimization feature, no result is returned.
|
|
11025
11200
|
*
|
|
11026
11201
|
* This parameter is required.
|
|
11027
11202
|
*
|
|
@@ -11842,7 +12017,7 @@ export declare class KillInstanceAllSessionResponse extends $tea.Model {
|
|
|
11842
12017
|
export declare class ModifyAutoScalingConfigRequest extends $tea.Model {
|
|
11843
12018
|
/**
|
|
11844
12019
|
* @remarks
|
|
11845
|
-
* The configuration item of the
|
|
12020
|
+
* The configuration item of the bandwidth auto scaling feature.
|
|
11846
12021
|
*/
|
|
11847
12022
|
bandwidth?: ModifyAutoScalingConfigRequestBandwidth;
|
|
11848
12023
|
/**
|
|
@@ -11857,17 +12032,17 @@ export declare class ModifyAutoScalingConfigRequest extends $tea.Model {
|
|
|
11857
12032
|
instanceId?: string;
|
|
11858
12033
|
/**
|
|
11859
12034
|
* @remarks
|
|
11860
|
-
* The configuration item of the auto scaling feature
|
|
12035
|
+
* The configuration item of the resource auto scaling feature.
|
|
11861
12036
|
*/
|
|
11862
12037
|
resource?: ModifyAutoScalingConfigRequestResource;
|
|
11863
12038
|
/**
|
|
11864
12039
|
* @remarks
|
|
11865
|
-
* The configuration item of the auto scaling feature
|
|
12040
|
+
* The configuration item of the shard auto scaling feature.
|
|
11866
12041
|
*/
|
|
11867
12042
|
shard?: ModifyAutoScalingConfigRequestShard;
|
|
11868
12043
|
/**
|
|
11869
12044
|
* @remarks
|
|
11870
|
-
* The configuration item of the auto scaling feature
|
|
12045
|
+
* The configuration item of the specification auto scaling feature.
|
|
11871
12046
|
*/
|
|
11872
12047
|
spec?: ModifyAutoScalingConfigRequestSpec;
|
|
11873
12048
|
/**
|
|
@@ -12320,105 +12495,15 @@ export declare class SetEventSubscriptionRequest extends $tea.Model {
|
|
|
12320
12495
|
*
|
|
12321
12496
|
* Valid values of alert severities:
|
|
12322
12497
|
*
|
|
12323
|
-
* * **info**
|
|
12324
|
-
* * **noticed**
|
|
12325
|
-
* * **warning**
|
|
12326
|
-
* * **critical**
|
|
12327
|
-
*
|
|
12328
|
-
* @example
|
|
12329
|
-
* {"AutoScale":"critical","SQLThrottle":"info","TimeSeriesAbnormal":"warning"}
|
|
12330
|
-
*/
|
|
12331
|
-
severity?: string;
|
|
12332
|
-
static names(): {
|
|
12333
|
-
[key: string]: string;
|
|
12334
|
-
};
|
|
12335
|
-
static types(): {
|
|
12336
|
-
[key: string]: any;
|
|
12337
|
-
};
|
|
12338
|
-
constructor(map?: {
|
|
12339
|
-
[key: string]: any;
|
|
12340
|
-
});
|
|
12341
|
-
}
|
|
12342
|
-
export declare class SetEventSubscriptionResponseBody extends $tea.Model {
|
|
12343
|
-
/**
|
|
12344
|
-
* @remarks
|
|
12345
|
-
* The HTTP status code returned.
|
|
12346
|
-
*
|
|
12347
|
-
* @example
|
|
12348
|
-
* 200
|
|
12349
|
-
*/
|
|
12350
|
-
code?: string;
|
|
12351
|
-
/**
|
|
12352
|
-
* @remarks
|
|
12353
|
-
* The detailed information.
|
|
12354
|
-
*/
|
|
12355
|
-
data?: SetEventSubscriptionResponseBodyData;
|
|
12356
|
-
/**
|
|
12357
|
-
* @remarks
|
|
12358
|
-
* The returned message.
|
|
12359
|
-
*
|
|
12360
|
-
* > If the request was successful, **Successful** is returned. If the request failed, an error message such as an error code is returned.
|
|
12361
|
-
*
|
|
12362
|
-
* @example
|
|
12363
|
-
* Successful
|
|
12364
|
-
*/
|
|
12365
|
-
message?: string;
|
|
12366
|
-
/**
|
|
12367
|
-
* @remarks
|
|
12368
|
-
* The request ID.
|
|
12369
|
-
*
|
|
12370
|
-
* @example
|
|
12371
|
-
* 097F0C56-B252-515A-B602-FC56EF93EF8A
|
|
12372
|
-
*/
|
|
12373
|
-
requestId?: string;
|
|
12374
|
-
/**
|
|
12375
|
-
* @remarks
|
|
12376
|
-
* Indicates whether the request was successful. Valid values:
|
|
12377
|
-
*
|
|
12378
|
-
* * **true**
|
|
12379
|
-
* * **false**
|
|
12380
|
-
*
|
|
12381
|
-
* @example
|
|
12382
|
-
* true
|
|
12383
|
-
*/
|
|
12384
|
-
success?: string;
|
|
12385
|
-
static names(): {
|
|
12386
|
-
[key: string]: string;
|
|
12387
|
-
};
|
|
12388
|
-
static types(): {
|
|
12389
|
-
[key: string]: any;
|
|
12390
|
-
};
|
|
12391
|
-
constructor(map?: {
|
|
12392
|
-
[key: string]: any;
|
|
12393
|
-
});
|
|
12394
|
-
}
|
|
12395
|
-
export declare class SetEventSubscriptionResponse extends $tea.Model {
|
|
12396
|
-
headers?: {
|
|
12397
|
-
[key: string]: string;
|
|
12398
|
-
};
|
|
12399
|
-
statusCode?: number;
|
|
12400
|
-
body?: SetEventSubscriptionResponseBody;
|
|
12401
|
-
static names(): {
|
|
12402
|
-
[key: string]: string;
|
|
12403
|
-
};
|
|
12404
|
-
static types(): {
|
|
12405
|
-
[key: string]: any;
|
|
12406
|
-
};
|
|
12407
|
-
constructor(map?: {
|
|
12408
|
-
[key: string]: any;
|
|
12409
|
-
});
|
|
12410
|
-
}
|
|
12411
|
-
export declare class StopCloudBenchTaskRequest extends $tea.Model {
|
|
12412
|
-
/**
|
|
12413
|
-
* @remarks
|
|
12414
|
-
* The stress testing task ID. You can call the [DescribeCloudBenchTasks](https://help.aliyun.com/document_detail/230670.html) operation to query the task ID.
|
|
12415
|
-
*
|
|
12416
|
-
* This parameter is required.
|
|
12498
|
+
* * **info**
|
|
12499
|
+
* * **noticed**
|
|
12500
|
+
* * **warning**
|
|
12501
|
+
* * **critical**
|
|
12417
12502
|
*
|
|
12418
12503
|
* @example
|
|
12419
|
-
*
|
|
12504
|
+
* {"AutoScale":"critical","SQLThrottle":"info","TimeSeriesAbnormal":"warning"}
|
|
12420
12505
|
*/
|
|
12421
|
-
|
|
12506
|
+
severity?: string;
|
|
12422
12507
|
static names(): {
|
|
12423
12508
|
[key: string]: string;
|
|
12424
12509
|
};
|
|
@@ -12429,7 +12514,7 @@ export declare class StopCloudBenchTaskRequest extends $tea.Model {
|
|
|
12429
12514
|
[key: string]: any;
|
|
12430
12515
|
});
|
|
12431
12516
|
}
|
|
12432
|
-
export declare class
|
|
12517
|
+
export declare class SetEventSubscriptionResponseBody extends $tea.Model {
|
|
12433
12518
|
/**
|
|
12434
12519
|
* @remarks
|
|
12435
12520
|
* The HTTP status code returned.
|
|
@@ -12440,12 +12525,9 @@ export declare class StopCloudBenchTaskResponseBody extends $tea.Model {
|
|
|
12440
12525
|
code?: string;
|
|
12441
12526
|
/**
|
|
12442
12527
|
* @remarks
|
|
12443
|
-
* The
|
|
12444
|
-
*
|
|
12445
|
-
* @example
|
|
12446
|
-
* None
|
|
12528
|
+
* The detailed information.
|
|
12447
12529
|
*/
|
|
12448
|
-
data?:
|
|
12530
|
+
data?: SetEventSubscriptionResponseBodyData;
|
|
12449
12531
|
/**
|
|
12450
12532
|
* @remarks
|
|
12451
12533
|
* The returned message.
|
|
@@ -12461,7 +12543,7 @@ export declare class StopCloudBenchTaskResponseBody extends $tea.Model {
|
|
|
12461
12543
|
* The request ID.
|
|
12462
12544
|
*
|
|
12463
12545
|
* @example
|
|
12464
|
-
*
|
|
12546
|
+
* 097F0C56-B252-515A-B602-FC56EF93EF8A
|
|
12465
12547
|
*/
|
|
12466
12548
|
requestId?: string;
|
|
12467
12549
|
/**
|
|
@@ -12485,66 +12567,12 @@ export declare class StopCloudBenchTaskResponseBody extends $tea.Model {
|
|
|
12485
12567
|
[key: string]: any;
|
|
12486
12568
|
});
|
|
12487
12569
|
}
|
|
12488
|
-
export declare class
|
|
12489
|
-
headers?: {
|
|
12490
|
-
[key: string]: string;
|
|
12491
|
-
};
|
|
12492
|
-
statusCode?: number;
|
|
12493
|
-
body?: StopCloudBenchTaskResponseBody;
|
|
12494
|
-
static names(): {
|
|
12495
|
-
[key: string]: string;
|
|
12496
|
-
};
|
|
12497
|
-
static types(): {
|
|
12498
|
-
[key: string]: any;
|
|
12499
|
-
};
|
|
12500
|
-
constructor(map?: {
|
|
12501
|
-
[key: string]: any;
|
|
12502
|
-
});
|
|
12503
|
-
}
|
|
12504
|
-
export declare class SyncHDMAliyunResourceRequest extends $tea.Model {
|
|
12505
|
-
async?: string;
|
|
12506
|
-
resourceTypes?: string;
|
|
12507
|
-
uid?: string;
|
|
12508
|
-
userId?: string;
|
|
12509
|
-
waitForModifySecurityIps?: string;
|
|
12510
|
-
context?: string;
|
|
12511
|
-
accessKey?: string;
|
|
12512
|
-
signature?: string;
|
|
12513
|
-
skipAuth?: string;
|
|
12514
|
-
timestamp?: string;
|
|
12515
|
-
static names(): {
|
|
12516
|
-
[key: string]: string;
|
|
12517
|
-
};
|
|
12518
|
-
static types(): {
|
|
12519
|
-
[key: string]: any;
|
|
12520
|
-
};
|
|
12521
|
-
constructor(map?: {
|
|
12522
|
-
[key: string]: any;
|
|
12523
|
-
});
|
|
12524
|
-
}
|
|
12525
|
-
export declare class SyncHDMAliyunResourceResponseBody extends $tea.Model {
|
|
12526
|
-
code?: string;
|
|
12527
|
-
data?: string;
|
|
12528
|
-
message?: string;
|
|
12529
|
-
requestId?: string;
|
|
12530
|
-
success?: string;
|
|
12531
|
-
synchro?: string;
|
|
12532
|
-
static names(): {
|
|
12533
|
-
[key: string]: string;
|
|
12534
|
-
};
|
|
12535
|
-
static types(): {
|
|
12536
|
-
[key: string]: any;
|
|
12537
|
-
};
|
|
12538
|
-
constructor(map?: {
|
|
12539
|
-
[key: string]: any;
|
|
12540
|
-
});
|
|
12541
|
-
}
|
|
12542
|
-
export declare class SyncHDMAliyunResourceResponse extends $tea.Model {
|
|
12570
|
+
export declare class SetEventSubscriptionResponse extends $tea.Model {
|
|
12543
12571
|
headers?: {
|
|
12544
12572
|
[key: string]: string;
|
|
12545
12573
|
};
|
|
12546
12574
|
statusCode?: number;
|
|
12547
|
-
body?:
|
|
12575
|
+
body?: SetEventSubscriptionResponseBody;
|
|
12548
12576
|
static names(): {
|
|
12549
12577
|
[key: string]: string;
|
|
12550
12578
|
};
|
|
@@ -13677,10 +13705,10 @@ export declare class DescribeAutoScalingConfigResponseBodyDataSpec extends $tea.
|
|
|
13677
13705
|
maxReadOnlyNodes?: number;
|
|
13678
13706
|
/**
|
|
13679
13707
|
* @remarks
|
|
13680
|
-
* The maximum specifications to which the
|
|
13708
|
+
* The maximum specifications to which the cluster can be scaled up. For more information about the specifications of each type of supported database instances, see the following topics:
|
|
13681
13709
|
*
|
|
13682
|
-
* * PolarDB for MySQL Cluster Edition instances: [
|
|
13683
|
-
* * ApsaraDB RDS for MySQL High-availability Edition instances that use standard SSDs or
|
|
13710
|
+
* * PolarDB for MySQL Cluster Edition instances: [Compute node specifications of PolarDB for MySQL Enterprise Edition](https://help.aliyun.com/document_detail/102542.html)
|
|
13711
|
+
* * ApsaraDB RDS for MySQL High-availability Edition instances that use standard SSDs or ESSDs: [Specifications](https://help.aliyun.com/document_detail/276974.html)
|
|
13684
13712
|
*
|
|
13685
13713
|
* @example
|
|
13686
13714
|
* polar.mysql.x8.12xlarge
|
|
@@ -17963,7 +17991,7 @@ export declare class GetAsyncErrorRequestStatResultResponseBodyData extends $tea
|
|
|
17963
17991
|
*/
|
|
17964
17992
|
result?: {
|
|
17965
17993
|
[key: string]: DataResultValue;
|
|
17966
|
-
}
|
|
17994
|
+
};
|
|
17967
17995
|
/**
|
|
17968
17996
|
* @remarks
|
|
17969
17997
|
* The ID of the asynchronous request.
|
|
@@ -18748,7 +18776,7 @@ export declare class GetBlockingDetailListResponseBodyDataList extends $tea.Mode
|
|
|
18748
18776
|
clientAppName?: string;
|
|
18749
18777
|
/**
|
|
18750
18778
|
* @remarks
|
|
18751
|
-
* The time when the blocking data was collected.
|
|
18779
|
+
* The time when the blocking data was collected. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
18752
18780
|
*
|
|
18753
18781
|
* @example
|
|
18754
18782
|
* 1700065800000
|
|
@@ -18756,7 +18784,7 @@ export declare class GetBlockingDetailListResponseBodyDataList extends $tea.Mode
|
|
|
18756
18784
|
currentCollectionTime?: number;
|
|
18757
18785
|
/**
|
|
18758
18786
|
* @remarks
|
|
18759
|
-
* The database
|
|
18787
|
+
* The name of the database.
|
|
18760
18788
|
*
|
|
18761
18789
|
* @example
|
|
18762
18790
|
* school
|
|
@@ -18804,7 +18832,7 @@ export declare class GetBlockingDetailListResponseBodyDataList extends $tea.Mode
|
|
|
18804
18832
|
sqlText?: string;
|
|
18805
18833
|
/**
|
|
18806
18834
|
* @remarks
|
|
18807
|
-
* The time when the execution started.
|
|
18835
|
+
* The time when the execution started. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
18808
18836
|
*
|
|
18809
18837
|
* @example
|
|
18810
18838
|
* 1608888296000
|
|
@@ -18812,7 +18840,7 @@ export declare class GetBlockingDetailListResponseBodyDataList extends $tea.Mode
|
|
|
18812
18840
|
startTime?: string;
|
|
18813
18841
|
/**
|
|
18814
18842
|
* @remarks
|
|
18815
|
-
* The blocking
|
|
18843
|
+
* The duration of the blocking. Unit: milliseconds.
|
|
18816
18844
|
*
|
|
18817
18845
|
* @example
|
|
18818
18846
|
* 30000
|
|
@@ -18820,7 +18848,7 @@ export declare class GetBlockingDetailListResponseBodyDataList extends $tea.Mode
|
|
|
18820
18848
|
waitTimeMs?: number;
|
|
18821
18849
|
/**
|
|
18822
18850
|
* @remarks
|
|
18823
|
-
* The wait type.
|
|
18851
|
+
* The wait type. For more information about wait types, see [sys.dm_os_wait_stats (Transact-SQL)](https://learn.microsoft.com/en-us/sql/relational-databases/system-dynamic-management-views/sys-dm-os-wait-stats-transact-sql?view=sql-server-ver15).
|
|
18824
18852
|
*
|
|
18825
18853
|
* @example
|
|
18826
18854
|
* MISCELLANEOUS
|
|
@@ -19315,7 +19343,7 @@ export declare class GetDasSQLLogHotDataResponseBodyData extends $tea.Model {
|
|
|
19315
19343
|
export declare class GetDeadLockDetailListResponseBodyDataListBlockProcessList extends $tea.Model {
|
|
19316
19344
|
/**
|
|
19317
19345
|
* @remarks
|
|
19318
|
-
* The client
|
|
19346
|
+
* The name of the client that initiates the transaction in the session.
|
|
19319
19347
|
*
|
|
19320
19348
|
* @example
|
|
19321
19349
|
* Microsoft SQL Server Management Studio - Query
|
|
@@ -19323,7 +19351,7 @@ export declare class GetDeadLockDetailListResponseBodyDataListBlockProcessList e
|
|
|
19323
19351
|
clientApp?: string;
|
|
19324
19352
|
/**
|
|
19325
19353
|
* @remarks
|
|
19326
|
-
* The database
|
|
19354
|
+
* The name of the database.
|
|
19327
19355
|
*
|
|
19328
19356
|
* @example
|
|
19329
19357
|
* school
|
|
@@ -19331,7 +19359,7 @@ export declare class GetDeadLockDetailListResponseBodyDataListBlockProcessList e
|
|
|
19331
19359
|
databaseName?: string;
|
|
19332
19360
|
/**
|
|
19333
19361
|
* @remarks
|
|
19334
|
-
* The
|
|
19362
|
+
* The hostname.
|
|
19335
19363
|
*
|
|
19336
19364
|
* @example
|
|
19337
19365
|
* sd74020124
|
|
@@ -19339,7 +19367,7 @@ export declare class GetDeadLockDetailListResponseBodyDataListBlockProcessList e
|
|
|
19339
19367
|
hostName?: string;
|
|
19340
19368
|
/**
|
|
19341
19369
|
* @remarks
|
|
19342
|
-
* The time when the transaction started.
|
|
19370
|
+
* The time when the transaction was started. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
19343
19371
|
*
|
|
19344
19372
|
* @example
|
|
19345
19373
|
* 1702301152000
|
|
@@ -19347,7 +19375,7 @@ export declare class GetDeadLockDetailListResponseBodyDataListBlockProcessList e
|
|
|
19347
19375
|
lastTranStarted?: number;
|
|
19348
19376
|
/**
|
|
19349
19377
|
* @remarks
|
|
19350
|
-
* The lock
|
|
19378
|
+
* The mode of the lock. For more information, see [Lock modes](https://help.aliyun.com/document_detail/2362804.html).
|
|
19351
19379
|
*
|
|
19352
19380
|
* @example
|
|
19353
19381
|
* U
|
|
@@ -19355,7 +19383,7 @@ export declare class GetDeadLockDetailListResponseBodyDataListBlockProcessList e
|
|
|
19355
19383
|
lockMode?: string;
|
|
19356
19384
|
/**
|
|
19357
19385
|
* @remarks
|
|
19358
|
-
* The size of the logs generated
|
|
19386
|
+
* The size of the logs generated in the session. Unit: bytes.
|
|
19359
19387
|
*
|
|
19360
19388
|
* @example
|
|
19361
19389
|
* 352
|
|
@@ -19363,7 +19391,7 @@ export declare class GetDeadLockDetailListResponseBodyDataListBlockProcessList e
|
|
|
19363
19391
|
logUsed?: number;
|
|
19364
19392
|
/**
|
|
19365
19393
|
* @remarks
|
|
19366
|
-
* The
|
|
19394
|
+
* The logon name of the user.
|
|
19367
19395
|
*
|
|
19368
19396
|
* @example
|
|
19369
19397
|
* sd74020124\\\\Administrator
|
|
@@ -19379,7 +19407,7 @@ export declare class GetDeadLockDetailListResponseBodyDataListBlockProcessList e
|
|
|
19379
19407
|
objectOwned?: string;
|
|
19380
19408
|
/**
|
|
19381
19409
|
* @remarks
|
|
19382
|
-
* The object that the
|
|
19410
|
+
* The object that the transaction requested to lock.
|
|
19383
19411
|
*
|
|
19384
19412
|
* @example
|
|
19385
19413
|
* school.dbo.test1
|
|
@@ -19387,7 +19415,7 @@ export declare class GetDeadLockDetailListResponseBodyDataListBlockProcessList e
|
|
|
19387
19415
|
objectRequested?: string;
|
|
19388
19416
|
/**
|
|
19389
19417
|
* @remarks
|
|
19390
|
-
* The
|
|
19418
|
+
* The lock mode held by the session. For more information, see [Lock modes](https://help.aliyun.com/document_detail/2362804.html).
|
|
19391
19419
|
*
|
|
19392
19420
|
* @example
|
|
19393
19421
|
* X
|
|
@@ -19395,7 +19423,7 @@ export declare class GetDeadLockDetailListResponseBodyDataListBlockProcessList e
|
|
|
19395
19423
|
ownMode?: string;
|
|
19396
19424
|
/**
|
|
19397
19425
|
* @remarks
|
|
19398
|
-
* The ID of the session
|
|
19426
|
+
* The ID of the session in which the transaction is started.
|
|
19399
19427
|
*
|
|
19400
19428
|
* @example
|
|
19401
19429
|
* 61
|
|
@@ -19411,7 +19439,7 @@ export declare class GetDeadLockDetailListResponseBodyDataListBlockProcessList e
|
|
|
19411
19439
|
sqlText?: string;
|
|
19412
19440
|
/**
|
|
19413
19441
|
* @remarks
|
|
19414
|
-
* The transaction
|
|
19442
|
+
* The status of the transaction.
|
|
19415
19443
|
*
|
|
19416
19444
|
* @example
|
|
19417
19445
|
* suspended
|
|
@@ -19419,7 +19447,10 @@ export declare class GetDeadLockDetailListResponseBodyDataListBlockProcessList e
|
|
|
19419
19447
|
status?: string;
|
|
19420
19448
|
/**
|
|
19421
19449
|
* @remarks
|
|
19422
|
-
*
|
|
19450
|
+
* Indicates whether the session is the victim of the deadlock. Valid values:
|
|
19451
|
+
*
|
|
19452
|
+
* * **0**: no.
|
|
19453
|
+
* * **1**: yes.
|
|
19423
19454
|
*
|
|
19424
19455
|
* @example
|
|
19425
19456
|
* 0
|
|
@@ -19427,7 +19458,7 @@ export declare class GetDeadLockDetailListResponseBodyDataListBlockProcessList e
|
|
|
19427
19458
|
victim?: number;
|
|
19428
19459
|
/**
|
|
19429
19460
|
* @remarks
|
|
19430
|
-
* The
|
|
19461
|
+
* The lock mode requested by the session. For more information, see [Lock modes](https://help.aliyun.com/document_detail/2362804.html).
|
|
19431
19462
|
*
|
|
19432
19463
|
* @example
|
|
19433
19464
|
* U
|
|
@@ -19435,7 +19466,7 @@ export declare class GetDeadLockDetailListResponseBodyDataListBlockProcessList e
|
|
|
19435
19466
|
waitMode?: string;
|
|
19436
19467
|
/**
|
|
19437
19468
|
* @remarks
|
|
19438
|
-
* The
|
|
19469
|
+
* The resources requested by the transaction.
|
|
19439
19470
|
*
|
|
19440
19471
|
* @example
|
|
19441
19472
|
* RID: 5:1:312:0
|
|
@@ -19443,7 +19474,7 @@ export declare class GetDeadLockDetailListResponseBodyDataListBlockProcessList e
|
|
|
19443
19474
|
waitResource?: string;
|
|
19444
19475
|
/**
|
|
19445
19476
|
* @remarks
|
|
19446
|
-
* The
|
|
19477
|
+
* The details of the resources requested by the transaction.
|
|
19447
19478
|
*
|
|
19448
19479
|
* @example
|
|
19449
19480
|
* RID:school:school.mdf:312:0
|
|
@@ -19462,7 +19493,7 @@ export declare class GetDeadLockDetailListResponseBodyDataListBlockProcessList e
|
|
|
19462
19493
|
export declare class GetDeadLockDetailListResponseBodyDataList extends $tea.Model {
|
|
19463
19494
|
/**
|
|
19464
19495
|
* @remarks
|
|
19465
|
-
* The time when the data was collected.
|
|
19496
|
+
* The time when the data was collected. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
19466
19497
|
*
|
|
19467
19498
|
* @example
|
|
19468
19499
|
* 1702301170701
|
|
@@ -19470,12 +19501,12 @@ export declare class GetDeadLockDetailListResponseBodyDataList extends $tea.Mode
|
|
|
19470
19501
|
batchId?: number;
|
|
19471
19502
|
/**
|
|
19472
19503
|
* @remarks
|
|
19473
|
-
* The blocking
|
|
19504
|
+
* The blocking details of the instance. The details are information about the session that caused the lock.
|
|
19474
19505
|
*/
|
|
19475
19506
|
blockProcessList?: GetDeadLockDetailListResponseBodyDataListBlockProcessList[];
|
|
19476
19507
|
/**
|
|
19477
19508
|
* @remarks
|
|
19478
|
-
* The client
|
|
19509
|
+
* The name of the client.
|
|
19479
19510
|
*
|
|
19480
19511
|
* @example
|
|
19481
19512
|
* Microsoft SQL Server Management Studio - Query
|
|
@@ -19483,7 +19514,7 @@ export declare class GetDeadLockDetailListResponseBodyDataList extends $tea.Mode
|
|
|
19483
19514
|
clientApp?: string;
|
|
19484
19515
|
/**
|
|
19485
19516
|
* @remarks
|
|
19486
|
-
* The database
|
|
19517
|
+
* The name of the database.
|
|
19487
19518
|
*
|
|
19488
19519
|
* @example
|
|
19489
19520
|
* school
|
|
@@ -19491,7 +19522,7 @@ export declare class GetDeadLockDetailListResponseBodyDataList extends $tea.Mode
|
|
|
19491
19522
|
databaseName?: string;
|
|
19492
19523
|
/**
|
|
19493
19524
|
* @remarks
|
|
19494
|
-
* The
|
|
19525
|
+
* The hostname.
|
|
19495
19526
|
*
|
|
19496
19527
|
* @example
|
|
19497
19528
|
* sd74020124
|
|
@@ -19499,7 +19530,7 @@ export declare class GetDeadLockDetailListResponseBodyDataList extends $tea.Mode
|
|
|
19499
19530
|
hostName?: string;
|
|
19500
19531
|
/**
|
|
19501
19532
|
* @remarks
|
|
19502
|
-
* The time when the transaction started.
|
|
19533
|
+
* The time when the transaction was started. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
19503
19534
|
*
|
|
19504
19535
|
* @example
|
|
19505
19536
|
* 1702301141000
|
|
@@ -19507,7 +19538,7 @@ export declare class GetDeadLockDetailListResponseBodyDataList extends $tea.Mode
|
|
|
19507
19538
|
lastTranStarted?: number;
|
|
19508
19539
|
/**
|
|
19509
19540
|
* @remarks
|
|
19510
|
-
* The lock
|
|
19541
|
+
* The mode of the lock. For more information, see [Lock modes](https://help.aliyun.com/document_detail/2362804.html).
|
|
19511
19542
|
*
|
|
19512
19543
|
* @example
|
|
19513
19544
|
* U
|
|
@@ -19515,7 +19546,7 @@ export declare class GetDeadLockDetailListResponseBodyDataList extends $tea.Mode
|
|
|
19515
19546
|
lockMode?: string;
|
|
19516
19547
|
/**
|
|
19517
19548
|
* @remarks
|
|
19518
|
-
* The size of the logs generated
|
|
19549
|
+
* The size of the logs generated in the session. Unit: bytes.
|
|
19519
19550
|
*
|
|
19520
19551
|
* @example
|
|
19521
19552
|
* 352
|
|
@@ -19523,7 +19554,7 @@ export declare class GetDeadLockDetailListResponseBodyDataList extends $tea.Mode
|
|
|
19523
19554
|
logUsed?: number;
|
|
19524
19555
|
/**
|
|
19525
19556
|
* @remarks
|
|
19526
|
-
* The
|
|
19557
|
+
* The logon name of the user.
|
|
19527
19558
|
*
|
|
19528
19559
|
* @example
|
|
19529
19560
|
* sd74020124\\\\Administrator
|
|
@@ -19539,7 +19570,7 @@ export declare class GetDeadLockDetailListResponseBodyDataList extends $tea.Mode
|
|
|
19539
19570
|
objectOwned?: string;
|
|
19540
19571
|
/**
|
|
19541
19572
|
* @remarks
|
|
19542
|
-
* The object that the
|
|
19573
|
+
* The object that the transaction requested to lock.
|
|
19543
19574
|
*
|
|
19544
19575
|
* @example
|
|
19545
19576
|
* school.dbo.test2
|
|
@@ -19547,7 +19578,7 @@ export declare class GetDeadLockDetailListResponseBodyDataList extends $tea.Mode
|
|
|
19547
19578
|
objectRequested?: string;
|
|
19548
19579
|
/**
|
|
19549
19580
|
* @remarks
|
|
19550
|
-
* The
|
|
19581
|
+
* The lock mode held by the session. For more information, see [Lock modes](https://help.aliyun.com/document_detail/2362804.html).
|
|
19551
19582
|
*
|
|
19552
19583
|
* @example
|
|
19553
19584
|
* X
|
|
@@ -19555,7 +19586,7 @@ export declare class GetDeadLockDetailListResponseBodyDataList extends $tea.Mode
|
|
|
19555
19586
|
ownMode?: string;
|
|
19556
19587
|
/**
|
|
19557
19588
|
* @remarks
|
|
19558
|
-
* The ID of the session
|
|
19589
|
+
* The ID of the session in which the transaction is started.
|
|
19559
19590
|
*
|
|
19560
19591
|
* @example
|
|
19561
19592
|
* 56
|
|
@@ -19571,7 +19602,7 @@ export declare class GetDeadLockDetailListResponseBodyDataList extends $tea.Mode
|
|
|
19571
19602
|
sqlText?: string;
|
|
19572
19603
|
/**
|
|
19573
19604
|
* @remarks
|
|
19574
|
-
* The transaction
|
|
19605
|
+
* The status of the transaction.
|
|
19575
19606
|
*
|
|
19576
19607
|
* @example
|
|
19577
19608
|
* suspended
|
|
@@ -19579,7 +19610,10 @@ export declare class GetDeadLockDetailListResponseBodyDataList extends $tea.Mode
|
|
|
19579
19610
|
status?: string;
|
|
19580
19611
|
/**
|
|
19581
19612
|
* @remarks
|
|
19582
|
-
*
|
|
19613
|
+
* Indicates whether the session is the victim of the deadlock. Valid values:
|
|
19614
|
+
*
|
|
19615
|
+
* * **0**: no.
|
|
19616
|
+
* * **1**: yes.
|
|
19583
19617
|
*
|
|
19584
19618
|
* @example
|
|
19585
19619
|
* 1
|
|
@@ -19587,7 +19621,7 @@ export declare class GetDeadLockDetailListResponseBodyDataList extends $tea.Mode
|
|
|
19587
19621
|
victim?: number;
|
|
19588
19622
|
/**
|
|
19589
19623
|
* @remarks
|
|
19590
|
-
* The
|
|
19624
|
+
* The lock mode requested by the session. For more information, see [Lock modes](https://help.aliyun.com/document_detail/2362804.html).
|
|
19591
19625
|
*
|
|
19592
19626
|
* @example
|
|
19593
19627
|
* U
|
|
@@ -19595,7 +19629,7 @@ export declare class GetDeadLockDetailListResponseBodyDataList extends $tea.Mode
|
|
|
19595
19629
|
waitMode?: string;
|
|
19596
19630
|
/**
|
|
19597
19631
|
* @remarks
|
|
19598
|
-
* The
|
|
19632
|
+
* The resources requested by the transaction.
|
|
19599
19633
|
*
|
|
19600
19634
|
* @example
|
|
19601
19635
|
* RID: 5:1:376:0
|
|
@@ -19603,7 +19637,7 @@ export declare class GetDeadLockDetailListResponseBodyDataList extends $tea.Mode
|
|
|
19603
19637
|
waitResource?: string;
|
|
19604
19638
|
/**
|
|
19605
19639
|
* @remarks
|
|
19606
|
-
* The
|
|
19640
|
+
* The details of the resources requested by the transaction.
|
|
19607
19641
|
*
|
|
19608
19642
|
* @example
|
|
19609
19643
|
* RID:school:school.mdf:376:0
|
|
@@ -19627,7 +19661,7 @@ export declare class GetDeadLockDetailListResponseBodyData extends $tea.Model {
|
|
|
19627
19661
|
list?: GetDeadLockDetailListResponseBodyDataList[];
|
|
19628
19662
|
/**
|
|
19629
19663
|
* @remarks
|
|
19630
|
-
* The page number
|
|
19664
|
+
* The page number.
|
|
19631
19665
|
*
|
|
19632
19666
|
* @example
|
|
19633
19667
|
* 1
|
|
@@ -19635,7 +19669,7 @@ export declare class GetDeadLockDetailListResponseBodyData extends $tea.Model {
|
|
|
19635
19669
|
pageNo?: number;
|
|
19636
19670
|
/**
|
|
19637
19671
|
* @remarks
|
|
19638
|
-
* The number of entries
|
|
19672
|
+
* The number of entries per page.
|
|
19639
19673
|
*
|
|
19640
19674
|
* @example
|
|
19641
19675
|
* 10
|
|
@@ -19659,6 +19693,57 @@ export declare class GetDeadLockDetailListResponseBodyData extends $tea.Model {
|
|
|
19659
19693
|
[key: string]: any;
|
|
19660
19694
|
});
|
|
19661
19695
|
}
|
|
19696
|
+
export declare class GetDeadlockHistogramResponseBodyData extends $tea.Model {
|
|
19697
|
+
/**
|
|
19698
|
+
* @example
|
|
19699
|
+
* 1729998000000
|
|
19700
|
+
*/
|
|
19701
|
+
endTime?: string;
|
|
19702
|
+
/**
|
|
19703
|
+
* @example
|
|
19704
|
+
* pc-bp1u5mas9exx7****
|
|
19705
|
+
*/
|
|
19706
|
+
instanceId?: string;
|
|
19707
|
+
/**
|
|
19708
|
+
* @example
|
|
19709
|
+
* 2
|
|
19710
|
+
*/
|
|
19711
|
+
lockNumber?: number;
|
|
19712
|
+
/**
|
|
19713
|
+
* @example
|
|
19714
|
+
* pi-bp16v3824rt73****
|
|
19715
|
+
*/
|
|
19716
|
+
nodeId?: string;
|
|
19717
|
+
/**
|
|
19718
|
+
* @example
|
|
19719
|
+
* 1729994400000
|
|
19720
|
+
*/
|
|
19721
|
+
startTime?: string;
|
|
19722
|
+
/**
|
|
19723
|
+
* @example
|
|
19724
|
+
* SUCCESS
|
|
19725
|
+
*/
|
|
19726
|
+
status?: string;
|
|
19727
|
+
/**
|
|
19728
|
+
* @example
|
|
19729
|
+
* B6D17591-B48B-4D31-9CD6-1321B394****
|
|
19730
|
+
*/
|
|
19731
|
+
taskId?: string;
|
|
19732
|
+
/**
|
|
19733
|
+
* @example
|
|
19734
|
+
* 108************
|
|
19735
|
+
*/
|
|
19736
|
+
userId?: string;
|
|
19737
|
+
static names(): {
|
|
19738
|
+
[key: string]: string;
|
|
19739
|
+
};
|
|
19740
|
+
static types(): {
|
|
19741
|
+
[key: string]: any;
|
|
19742
|
+
};
|
|
19743
|
+
constructor(map?: {
|
|
19744
|
+
[key: string]: any;
|
|
19745
|
+
});
|
|
19746
|
+
}
|
|
19662
19747
|
export declare class GetEndpointSwitchTaskResponseBodyData extends $tea.Model {
|
|
19663
19748
|
accountId?: string;
|
|
19664
19749
|
dbLinkId?: number;
|
|
@@ -22829,7 +22914,7 @@ export declare class GetPfsSqlSummariesResponseBodyDataList extends $tea.Model {
|
|
|
22829
22914
|
* @remarks
|
|
22830
22915
|
* The node ID.
|
|
22831
22916
|
*
|
|
22832
|
-
* >
|
|
22917
|
+
* > This parameter is returned only if the database instance is an ApsaraDB RDS for MySQL Cluster Edition instance or a PolarDB for MySQL cluster.
|
|
22833
22918
|
*
|
|
22834
22919
|
* @example
|
|
22835
22920
|
* r-x****-db-0
|
|
@@ -23177,7 +23262,7 @@ export declare class GetPfsSqlSummariesResponseBodyData extends $tea.Model {
|
|
|
23177
23262
|
extra?: any;
|
|
23178
23263
|
/**
|
|
23179
23264
|
* @remarks
|
|
23180
|
-
* The
|
|
23265
|
+
* The details of the data returned.
|
|
23181
23266
|
*/
|
|
23182
23267
|
list?: GetPfsSqlSummariesResponseBodyDataList[];
|
|
23183
23268
|
/**
|
|
@@ -25428,7 +25513,7 @@ export declare class GetStorageAnalysisResultResponseBodyData extends $tea.Model
|
|
|
25428
25513
|
export declare class ModifyAutoScalingConfigRequestBandwidth extends $tea.Model {
|
|
25429
25514
|
/**
|
|
25430
25515
|
* @remarks
|
|
25431
|
-
* Specifies whether to apply the **Bandwidth** configuration of the
|
|
25516
|
+
* Specifies whether to apply the **Bandwidth** configuration of the bandwidth auto scaling feature. Valid values:
|
|
25432
25517
|
*
|
|
25433
25518
|
* * **true**
|
|
25434
25519
|
* * **false**
|
|
@@ -25472,7 +25557,7 @@ export declare class ModifyAutoScalingConfigRequestBandwidth extends $tea.Model
|
|
|
25472
25557
|
bandwidthUsageUpperThreshold?: number;
|
|
25473
25558
|
/**
|
|
25474
25559
|
* @remarks
|
|
25475
|
-
* Specifies whether to enable
|
|
25560
|
+
* Specifies whether to enable automatic bandwidth downgrade. Valid values:
|
|
25476
25561
|
*
|
|
25477
25562
|
* * **true**
|
|
25478
25563
|
* * **false**
|
|
@@ -25483,7 +25568,7 @@ export declare class ModifyAutoScalingConfigRequestBandwidth extends $tea.Model
|
|
|
25483
25568
|
downgrade?: boolean;
|
|
25484
25569
|
/**
|
|
25485
25570
|
* @remarks
|
|
25486
|
-
* The observation window of the
|
|
25571
|
+
* The observation window of the bandwidth auto scaling feature. The value of this parameter consists of a numeric value and a time unit suffix. The **m** time unit suffix specifies the minute. Valid values:
|
|
25487
25572
|
*
|
|
25488
25573
|
* * **1m**
|
|
25489
25574
|
* * **5m**
|
|
@@ -25500,7 +25585,7 @@ export declare class ModifyAutoScalingConfigRequestBandwidth extends $tea.Model
|
|
|
25500
25585
|
observationWindowSize?: string;
|
|
25501
25586
|
/**
|
|
25502
25587
|
* @remarks
|
|
25503
|
-
* Specifies whether to enable
|
|
25588
|
+
* Specifies whether to enable automatic bandwidth upgrade. Valid values:
|
|
25504
25589
|
*
|
|
25505
25590
|
* * **true**
|
|
25506
25591
|
* * **false**
|
|
@@ -25522,7 +25607,7 @@ export declare class ModifyAutoScalingConfigRequestBandwidth extends $tea.Model
|
|
|
25522
25607
|
export declare class ModifyAutoScalingConfigRequestResource extends $tea.Model {
|
|
25523
25608
|
/**
|
|
25524
25609
|
* @remarks
|
|
25525
|
-
* Specifies whether to apply the **Resource** configuration of the auto scaling feature
|
|
25610
|
+
* Specifies whether to apply the **Resource** configuration of the resource auto scaling feature. Valid values:
|
|
25526
25611
|
*
|
|
25527
25612
|
* * **true**
|
|
25528
25613
|
* * **false**
|
|
@@ -25536,7 +25621,7 @@ export declare class ModifyAutoScalingConfigRequestResource extends $tea.Model {
|
|
|
25536
25621
|
apply?: boolean;
|
|
25537
25622
|
/**
|
|
25538
25623
|
* @remarks
|
|
25539
|
-
* The average CPU utilization threshold that triggers automatic scale-out
|
|
25624
|
+
* The average CPU utilization threshold that triggers automatic resource scale-out. Unit: %. Valid values:
|
|
25540
25625
|
*
|
|
25541
25626
|
* * **70**
|
|
25542
25627
|
* * **80**
|
|
@@ -25569,7 +25654,7 @@ export declare class ModifyAutoScalingConfigRequestResource extends $tea.Model {
|
|
|
25569
25654
|
downgradeObservationWindowSize?: string;
|
|
25570
25655
|
/**
|
|
25571
25656
|
* @remarks
|
|
25572
|
-
* Specifies whether to enable
|
|
25657
|
+
* Specifies whether to enable resource auto scaling. Valid values:
|
|
25573
25658
|
*
|
|
25574
25659
|
* * **true**
|
|
25575
25660
|
* * **false**
|
|
@@ -25612,12 +25697,12 @@ export declare class ModifyAutoScalingConfigRequestResource extends $tea.Model {
|
|
|
25612
25697
|
export declare class ModifyAutoScalingConfigRequestShard extends $tea.Model {
|
|
25613
25698
|
/**
|
|
25614
25699
|
* @remarks
|
|
25615
|
-
* Specifies whether to apply the **Shard** configuration of the auto scaling feature
|
|
25700
|
+
* Specifies whether to apply the **Shard** configuration of the shard auto scaling feature. Valid values:
|
|
25616
25701
|
*
|
|
25617
25702
|
* * **true**
|
|
25618
25703
|
* * **false**
|
|
25619
25704
|
*
|
|
25620
|
-
* >
|
|
25705
|
+
* > The shard auto scaling feature is available only for Tair (Redis OSS-compatible) cloud-native cluster instances on the China site (aliyun.com).
|
|
25621
25706
|
*
|
|
25622
25707
|
* @example
|
|
25623
25708
|
* true
|
|
@@ -25625,12 +25710,12 @@ export declare class ModifyAutoScalingConfigRequestShard extends $tea.Model {
|
|
|
25625
25710
|
apply?: boolean;
|
|
25626
25711
|
/**
|
|
25627
25712
|
* @remarks
|
|
25628
|
-
* Specifies whether to enable
|
|
25713
|
+
* Specifies whether to enable automatic shard removal. Valid values:
|
|
25629
25714
|
*
|
|
25630
25715
|
* * **true**
|
|
25631
25716
|
* * **false**
|
|
25632
25717
|
*
|
|
25633
|
-
* > The
|
|
25718
|
+
* > The automatic shard removal feature is in a canary release.
|
|
25634
25719
|
*
|
|
25635
25720
|
* @example
|
|
25636
25721
|
* true
|
|
@@ -25638,7 +25723,7 @@ export declare class ModifyAutoScalingConfigRequestShard extends $tea.Model {
|
|
|
25638
25723
|
downgrade?: boolean;
|
|
25639
25724
|
/**
|
|
25640
25725
|
* @remarks
|
|
25641
|
-
* The observation window of the
|
|
25726
|
+
* The observation window of the automatic shard removal feature. The value of this parameter consists of a numeric value and a time unit suffix. The **h** time unit suffix specifies the hour. The **d** time unit suffix specifies the day. Valid values:
|
|
25642
25727
|
*
|
|
25643
25728
|
* * **1h**
|
|
25644
25729
|
* * **2h**
|
|
@@ -25666,7 +25751,7 @@ export declare class ModifyAutoScalingConfigRequestShard extends $tea.Model {
|
|
|
25666
25751
|
maxShards?: number;
|
|
25667
25752
|
/**
|
|
25668
25753
|
* @remarks
|
|
25669
|
-
* The average memory usage threshold that triggers automatic removal
|
|
25754
|
+
* The average memory usage threshold that triggers automatic shard removal. Unit: %. Valid values:
|
|
25670
25755
|
*
|
|
25671
25756
|
* * **10**
|
|
25672
25757
|
* * **20**
|
|
@@ -25681,7 +25766,7 @@ export declare class ModifyAutoScalingConfigRequestShard extends $tea.Model {
|
|
|
25681
25766
|
memUsageLowerThreshold?: number;
|
|
25682
25767
|
/**
|
|
25683
25768
|
* @remarks
|
|
25684
|
-
* The average memory usage threshold that triggers automatic
|
|
25769
|
+
* The average memory usage threshold that triggers automatic shard addition. Unit: %. Valid values:
|
|
25685
25770
|
*
|
|
25686
25771
|
* * **50**
|
|
25687
25772
|
* * **60**
|
|
@@ -25709,7 +25794,7 @@ export declare class ModifyAutoScalingConfigRequestShard extends $tea.Model {
|
|
|
25709
25794
|
minShards?: number;
|
|
25710
25795
|
/**
|
|
25711
25796
|
* @remarks
|
|
25712
|
-
* Specifies whether to enable
|
|
25797
|
+
* Specifies whether to enable automatic shard addition. Valid values:
|
|
25713
25798
|
*
|
|
25714
25799
|
* * **true**
|
|
25715
25800
|
* * **false**
|
|
@@ -25720,7 +25805,7 @@ export declare class ModifyAutoScalingConfigRequestShard extends $tea.Model {
|
|
|
25720
25805
|
upgrade?: boolean;
|
|
25721
25806
|
/**
|
|
25722
25807
|
* @remarks
|
|
25723
|
-
* The observation window of the
|
|
25808
|
+
* The observation window of the automatic shard addition feature. The value of this parameter consists of a numeric value and a time unit suffix. The **m** time unit suffix specifies the minute. Valid values:
|
|
25724
25809
|
*
|
|
25725
25810
|
* * **5m**
|
|
25726
25811
|
* * **10m**
|
|
@@ -25747,7 +25832,7 @@ export declare class ModifyAutoScalingConfigRequestShard extends $tea.Model {
|
|
|
25747
25832
|
export declare class ModifyAutoScalingConfigRequestSpec extends $tea.Model {
|
|
25748
25833
|
/**
|
|
25749
25834
|
* @remarks
|
|
25750
|
-
* Specifies whether to apply the **Spec** configuration of the auto scaling feature
|
|
25835
|
+
* Specifies whether to apply the **Spec** configuration of the specification auto scaling feature. Valid values:
|
|
25751
25836
|
*
|
|
25752
25837
|
* * **true**
|
|
25753
25838
|
* * **false**
|
|
@@ -25758,10 +25843,10 @@ export declare class ModifyAutoScalingConfigRequestSpec extends $tea.Model {
|
|
|
25758
25843
|
apply?: boolean;
|
|
25759
25844
|
/**
|
|
25760
25845
|
* @remarks
|
|
25761
|
-
* The quiescent period. The value of this parameter consists of a numeric value and a time unit suffix. The **m** time unit suffix specifies the minute, the **h** time unit suffix specifies the hour, and the **d** time suffix
|
|
25846
|
+
* The quiescent period. The value of this parameter consists of a numeric value and a time unit suffix. The **m** time unit suffix specifies the minute, the **h** time unit suffix specifies the hour, and the **d** time unit suffix specifies the day.
|
|
25762
25847
|
*
|
|
25763
25848
|
* * Valid values for PolarDB for MySQL Cluster Edition instances: **5m**, **10m**, **30m**, **1h**, **2h**, **3h**, **1d**, and **7d**.
|
|
25764
|
-
* * Valid values for ApsaraDB RDS for MySQL High-availability Edition instances that use standard SSDs or ESSDs: **5m**, **10m**, **30m**, **1h**, **2h**, **3h**, **1d**, and **7d**.
|
|
25849
|
+
* * Valid values for ApsaraDB RDS for MySQL High-availability Edition instances that use standard SSDs or Enterprise SSDs (ESSDs): **5m**, **10m**, **30m**, **1h**, **2h**, **3h**, **1d**, and **7d**.
|
|
25765
25850
|
*
|
|
25766
25851
|
* @example
|
|
25767
25852
|
* 5m
|
|
@@ -25780,7 +25865,7 @@ export declare class ModifyAutoScalingConfigRequestSpec extends $tea.Model {
|
|
|
25780
25865
|
* * **80**
|
|
25781
25866
|
* * **90**
|
|
25782
25867
|
*
|
|
25783
|
-
* >
|
|
25868
|
+
* > This parameter must be specified if the database instance is a PolarDB for MySQL Cluster Edition instance or an ApsaraDB RDS for MySQL High-availability Edition instance that uses standard SSDs or ESSDs.
|
|
25784
25869
|
*
|
|
25785
25870
|
* @example
|
|
25786
25871
|
* 70
|
|
@@ -25791,12 +25876,12 @@ export declare class ModifyAutoScalingConfigRequestSpec extends $tea.Model {
|
|
|
25791
25876
|
cpuUsageUpperThreshold?: number;
|
|
25792
25877
|
/**
|
|
25793
25878
|
* @remarks
|
|
25794
|
-
* Specifies whether to enable
|
|
25879
|
+
* Specifies whether to enable automatic specification scale-down. Valid values:
|
|
25795
25880
|
*
|
|
25796
25881
|
* * **true**
|
|
25797
25882
|
* * **false**
|
|
25798
25883
|
*
|
|
25799
|
-
* >
|
|
25884
|
+
* > This parameter must be specified if the database instance is a PolarDB for MySQL Cluster Edition instance or an ApsaraDB RDS for MySQL High-availability Edition instance that uses standard SSDs or ESSDs.
|
|
25800
25885
|
*
|
|
25801
25886
|
* @example
|
|
25802
25887
|
* true
|
|
@@ -25809,7 +25894,7 @@ export declare class ModifyAutoScalingConfigRequestSpec extends $tea.Model {
|
|
|
25809
25894
|
* @remarks
|
|
25810
25895
|
* The maximum number of read-only nodes of the instance.
|
|
25811
25896
|
*
|
|
25812
|
-
* >
|
|
25897
|
+
* > This parameter must be specified if the database instance is a PolarDB for MySQL Cluster Edition instance.
|
|
25813
25898
|
*
|
|
25814
25899
|
* @example
|
|
25815
25900
|
* 10
|
|
@@ -25842,7 +25927,7 @@ export declare class ModifyAutoScalingConfigRequestSpec extends $tea.Model {
|
|
|
25842
25927
|
* * **80**
|
|
25843
25928
|
* * **90**
|
|
25844
25929
|
*
|
|
25845
|
-
* >
|
|
25930
|
+
* > This parameter must be specified if the database instance is a Tair (Redis OSS-compatible) Community Edition cloud-native instance on the China site (aliyun.com).
|
|
25846
25931
|
*
|
|
25847
25932
|
* @example
|
|
25848
25933
|
* 70
|
|
@@ -25857,7 +25942,7 @@ export declare class ModifyAutoScalingConfigRequestSpec extends $tea.Model {
|
|
|
25857
25942
|
*
|
|
25858
25943
|
* * Valid values for PolarDB for MySQL Cluster Edition instances: **5m**, **10m**, **15m**, and **30m**.
|
|
25859
25944
|
* * Valid values for ApsaraDB RDS for MySQL High-availability Edition instances that use standard SSDs or ESSDs: **5m**, **20m**, **30m**, **40m**, and **1h**.
|
|
25860
|
-
* * Valid values for
|
|
25945
|
+
* * Valid values for Tair (Redis OSS-compatible) Community Edition cloud-native instances: **5m**, **10m**, **15m**, and **30m**.
|
|
25861
25946
|
*
|
|
25862
25947
|
* @example
|
|
25863
25948
|
* 5m
|
|
@@ -25868,7 +25953,7 @@ export declare class ModifyAutoScalingConfigRequestSpec extends $tea.Model {
|
|
|
25868
25953
|
observationWindowSize?: string;
|
|
25869
25954
|
/**
|
|
25870
25955
|
* @remarks
|
|
25871
|
-
* Specifies whether to enable
|
|
25956
|
+
* Specifies whether to enable automatic specification scale-up. Valid values:
|
|
25872
25957
|
*
|
|
25873
25958
|
* * **true**
|
|
25874
25959
|
* * **false**
|
|
@@ -25921,12 +26006,12 @@ export declare class ModifyAutoScalingConfigRequestStorage extends $tea.Model {
|
|
|
25921
26006
|
diskUsageUpperThreshold?: number;
|
|
25922
26007
|
/**
|
|
25923
26008
|
* @remarks
|
|
25924
|
-
* The maximum storage size of the database instance. The value must be greater than or equal to the total storage size of the instance.
|
|
26009
|
+
* The maximum storage size of the database instance. Unit: GB. The value must be greater than or equal to the total storage size of the instance.
|
|
25925
26010
|
*
|
|
25926
|
-
* * If the
|
|
25927
|
-
* * If the
|
|
26011
|
+
* * If the instance uses ESSDs, the maximum value of this parameter can be 32000.
|
|
26012
|
+
* * If the instance uses standard SSDs, the maximum value of this parameter can be 6000.
|
|
25928
26013
|
*
|
|
25929
|
-
* > The
|
|
26014
|
+
* > The standard SSD storage type is phased out. We recommend that you [upgrade the storage type of your instance from standard SSDs to ESSDs](https://help.aliyun.com/document_detail/314678.html).
|
|
25930
26015
|
*
|
|
25931
26016
|
* @example
|
|
25932
26017
|
* 32000
|
|
@@ -25937,7 +26022,7 @@ export declare class ModifyAutoScalingConfigRequestStorage extends $tea.Model {
|
|
|
25937
26022
|
maxStorage?: number;
|
|
25938
26023
|
/**
|
|
25939
26024
|
* @remarks
|
|
25940
|
-
* Specifies whether to enable
|
|
26025
|
+
* Specifies whether to enable automatic storage expansion. Valid values:
|
|
25941
26026
|
*
|
|
25942
26027
|
* * **true**
|
|
25943
26028
|
* * **false**
|
|
@@ -26818,46 +26903,16 @@ export default class Client extends OpenApi {
|
|
|
26818
26903
|
* @returns AddHDMInstanceResponse
|
|
26819
26904
|
*/
|
|
26820
26905
|
addHDMInstance(request: AddHDMInstanceRequest): Promise<AddHDMInstanceResponse>;
|
|
26821
|
-
/**
|
|
26822
|
-
* Creates a stress testing task on Advanced Database & Application Migration (ADAM).
|
|
26823
|
-
*
|
|
26824
|
-
* @remarks
|
|
26825
|
-
* Database Autonomy Service (DAS) provides the intelligent stress testing feature. You can create an Advanced Database & Application Migration (ADAM) stress testing task to check whether you need to scale up your database instance to handle workloads during peak hours. For more information, see [Intelligent stress testing](https://help.aliyun.com/document_detail/155068.html).
|
|
26826
|
-
* Make sure that your database instances meet the following requirements:
|
|
26827
|
-
* * The source database instance is an ApsaraDB RDS for MySQL High-availability Edition or Enterprise Edition instance, or a PolarDB for MySQL Cluster Edition or X-Engine Edition cluster.
|
|
26828
|
-
* * The destination instance is an ApsaraDB RDS for MySQL instance or a PolarDB for MySQL cluster.
|
|
26829
|
-
* * The source and destination database instances are connected to DAS. For information about how to connect database instances to DAS, see [Connect an Alibaba Cloud database instance to DAS](https://help.aliyun.com/document_detail/65405.html).
|
|
26830
|
-
* * DAS Enterprise Edition is enabled for the source and destination database instances. For more information, see [Overview](https://help.aliyun.com/document_detail/190912.html).
|
|
26831
|
-
*
|
|
26832
|
-
* @param request - CreateAdamBenchTaskRequest
|
|
26833
|
-
* @param runtime - runtime options for this request RuntimeOptions
|
|
26834
|
-
* @returns CreateAdamBenchTaskResponse
|
|
26835
|
-
*/
|
|
26836
|
-
createAdamBenchTaskWithOptions(request: CreateAdamBenchTaskRequest, runtime: $Util.RuntimeOptions): Promise<CreateAdamBenchTaskResponse>;
|
|
26837
|
-
/**
|
|
26838
|
-
* Creates a stress testing task on Advanced Database & Application Migration (ADAM).
|
|
26839
|
-
*
|
|
26840
|
-
* @remarks
|
|
26841
|
-
* Database Autonomy Service (DAS) provides the intelligent stress testing feature. You can create an Advanced Database & Application Migration (ADAM) stress testing task to check whether you need to scale up your database instance to handle workloads during peak hours. For more information, see [Intelligent stress testing](https://help.aliyun.com/document_detail/155068.html).
|
|
26842
|
-
* Make sure that your database instances meet the following requirements:
|
|
26843
|
-
* * The source database instance is an ApsaraDB RDS for MySQL High-availability Edition or Enterprise Edition instance, or a PolarDB for MySQL Cluster Edition or X-Engine Edition cluster.
|
|
26844
|
-
* * The destination instance is an ApsaraDB RDS for MySQL instance or a PolarDB for MySQL cluster.
|
|
26845
|
-
* * The source and destination database instances are connected to DAS. For information about how to connect database instances to DAS, see [Connect an Alibaba Cloud database instance to DAS](https://help.aliyun.com/document_detail/65405.html).
|
|
26846
|
-
* * DAS Enterprise Edition is enabled for the source and destination database instances. For more information, see [Overview](https://help.aliyun.com/document_detail/190912.html).
|
|
26847
|
-
*
|
|
26848
|
-
* @param request - CreateAdamBenchTaskRequest
|
|
26849
|
-
* @returns CreateAdamBenchTaskResponse
|
|
26850
|
-
*/
|
|
26851
|
-
createAdamBenchTask(request: CreateAdamBenchTaskRequest): Promise<CreateAdamBenchTaskResponse>;
|
|
26852
26906
|
/**
|
|
26853
26907
|
* Creates a cache analysis task.
|
|
26854
26908
|
*
|
|
26855
26909
|
* @remarks
|
|
26856
26910
|
* Before you call this operation, take note of the following items:
|
|
26857
|
-
* * If you use an Alibaba Cloud SDK or
|
|
26858
|
-
* * If you use an SDK to call DAS, you must set the region to cn-shanghai.
|
|
26859
|
-
* *
|
|
26860
|
-
*
|
|
26911
|
+
* * If you use an Alibaba Cloud SDK or Database Autonomy Service (DAS) SDK to call this operation, we recommend that you use the latest version of the SDK.
|
|
26912
|
+
* * If you use an SDK to call the API operations of DAS, you must set the region ID to cn-shanghai.
|
|
26913
|
+
* * You can call this operation to analyze the data structures of ApsaraDB for Redis and the following self-developed data structures of Tair: TairString, TairHash, TairGIS, TairBloom, TairDoc, TairCpc, and TairZset. Other self-developed Tair data structures are not supported.
|
|
26914
|
+
* * If the specifications of the database instance that you want to analyze are changed, the backup file generated before the specification change cannot be analyzed.
|
|
26915
|
+
* * Tair ESSD/SSD-based instances are not supported.
|
|
26861
26916
|
*
|
|
26862
26917
|
* @param request - CreateCacheAnalysisJobRequest
|
|
26863
26918
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -26869,10 +26924,11 @@ export default class Client extends OpenApi {
|
|
|
26869
26924
|
*
|
|
26870
26925
|
* @remarks
|
|
26871
26926
|
* Before you call this operation, take note of the following items:
|
|
26872
|
-
* * If you use an Alibaba Cloud SDK or
|
|
26873
|
-
* * If you use an SDK to call DAS, you must set the region to cn-shanghai.
|
|
26874
|
-
* *
|
|
26875
|
-
*
|
|
26927
|
+
* * If you use an Alibaba Cloud SDK or Database Autonomy Service (DAS) SDK to call this operation, we recommend that you use the latest version of the SDK.
|
|
26928
|
+
* * If you use an SDK to call the API operations of DAS, you must set the region ID to cn-shanghai.
|
|
26929
|
+
* * You can call this operation to analyze the data structures of ApsaraDB for Redis and the following self-developed data structures of Tair: TairString, TairHash, TairGIS, TairBloom, TairDoc, TairCpc, and TairZset. Other self-developed Tair data structures are not supported.
|
|
26930
|
+
* * If the specifications of the database instance that you want to analyze are changed, the backup file generated before the specification change cannot be analyzed.
|
|
26931
|
+
* * Tair ESSD/SSD-based instances are not supported.
|
|
26876
26932
|
*
|
|
26877
26933
|
* @param request - CreateCacheAnalysisJobRequest
|
|
26878
26934
|
* @returns CreateCacheAnalysisJobResponse
|
|
@@ -26883,8 +26939,8 @@ export default class Client extends OpenApi {
|
|
|
26883
26939
|
*
|
|
26884
26940
|
* @remarks
|
|
26885
26941
|
* Database Autonomy Service (DAS) provides the intelligent stress testing feature. This feature helps you check whether your instance needs to be scaled up to effectively handle traffic spikes. For more information, see [Intelligent stress testing](https://help.aliyun.com/document_detail/155068.html). Before you call this API operation, make sure that your database instances meet the following requirements:
|
|
26886
|
-
* * The source database instance is an ApsaraDB RDS for MySQL High-availability Edition or Enterprise Edition instance, or a PolarDB for MySQL Cluster Edition
|
|
26887
|
-
* * The destination database instance is an ApsaraDB RDS for MySQL instance or a PolarDB for MySQL
|
|
26942
|
+
* * The source database instance is an ApsaraDB RDS for MySQL High-availability Edition or Enterprise Edition instance, or a PolarDB for MySQL Cluster Edition cluster.
|
|
26943
|
+
* * The destination database instance is an ApsaraDB RDS for MySQL instance or a PolarDB for MySQL cluster.
|
|
26888
26944
|
* * The source and destination database instances are connected to DAS. For information about how to connect database instances to DAS, see [Connect an Alibaba Cloud database instance to DAS](https://help.aliyun.com/document_detail/65405.html).
|
|
26889
26945
|
* * DAS Enterprise Edition is enabled for the source and destination database instances. For more information, see [Overview](https://help.aliyun.com/document_detail/190912.html).
|
|
26890
26946
|
*
|
|
@@ -26898,8 +26954,8 @@ export default class Client extends OpenApi {
|
|
|
26898
26954
|
*
|
|
26899
26955
|
* @remarks
|
|
26900
26956
|
* Database Autonomy Service (DAS) provides the intelligent stress testing feature. This feature helps you check whether your instance needs to be scaled up to effectively handle traffic spikes. For more information, see [Intelligent stress testing](https://help.aliyun.com/document_detail/155068.html). Before you call this API operation, make sure that your database instances meet the following requirements:
|
|
26901
|
-
* * The source database instance is an ApsaraDB RDS for MySQL High-availability Edition or Enterprise Edition instance, or a PolarDB for MySQL Cluster Edition
|
|
26902
|
-
* * The destination database instance is an ApsaraDB RDS for MySQL instance or a PolarDB for MySQL
|
|
26957
|
+
* * The source database instance is an ApsaraDB RDS for MySQL High-availability Edition or Enterprise Edition instance, or a PolarDB for MySQL Cluster Edition cluster.
|
|
26958
|
+
* * The destination database instance is an ApsaraDB RDS for MySQL instance or a PolarDB for MySQL cluster.
|
|
26903
26959
|
* * The source and destination database instances are connected to DAS. For information about how to connect database instances to DAS, see [Connect an Alibaba Cloud database instance to DAS](https://help.aliyun.com/document_detail/65405.html).
|
|
26904
26960
|
* * DAS Enterprise Edition is enabled for the source and destination database instances. For more information, see [Overview](https://help.aliyun.com/document_detail/190912.html).
|
|
26905
26961
|
*
|
|
@@ -26982,6 +27038,21 @@ export default class Client extends OpenApi {
|
|
|
26982
27038
|
* @returns CreateKillInstanceSessionTaskWithMaintainUserResponse
|
|
26983
27039
|
*/
|
|
26984
27040
|
createKillInstanceSessionTaskWithMaintainUser(request: CreateKillInstanceSessionTaskWithMaintainUserRequest): Promise<CreateKillInstanceSessionTaskWithMaintainUserResponse>;
|
|
27041
|
+
/**
|
|
27042
|
+
* 创建最近死锁分析任务
|
|
27043
|
+
*
|
|
27044
|
+
* @param request - CreateLatestDeadLockAnalysisRequest
|
|
27045
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
27046
|
+
* @returns CreateLatestDeadLockAnalysisResponse
|
|
27047
|
+
*/
|
|
27048
|
+
createLatestDeadLockAnalysisWithOptions(request: CreateLatestDeadLockAnalysisRequest, runtime: $Util.RuntimeOptions): Promise<CreateLatestDeadLockAnalysisResponse>;
|
|
27049
|
+
/**
|
|
27050
|
+
* 创建最近死锁分析任务
|
|
27051
|
+
*
|
|
27052
|
+
* @param request - CreateLatestDeadLockAnalysisRequest
|
|
27053
|
+
* @returns CreateLatestDeadLockAnalysisResponse
|
|
27054
|
+
*/
|
|
27055
|
+
createLatestDeadLockAnalysis(request: CreateLatestDeadLockAnalysisRequest): Promise<CreateLatestDeadLockAnalysisResponse>;
|
|
26985
27056
|
/**
|
|
26986
27057
|
* Adds a tag to a SQL template.
|
|
26987
27058
|
*
|
|
@@ -27425,12 +27496,13 @@ export default class Client extends OpenApi {
|
|
|
27425
27496
|
*/
|
|
27426
27497
|
describeHotKeys(request: DescribeHotKeysRequest): Promise<DescribeHotKeysResponse>;
|
|
27427
27498
|
/**
|
|
27428
|
-
* Queries whether Database Autonomy Service (DAS) Enterprise Edition is enabled for a database instance.
|
|
27499
|
+
* Queries whether Database Autonomy Service (DAS) Enterprise Edition V1 or V2 is enabled for a database instance.
|
|
27429
27500
|
*
|
|
27430
27501
|
* @remarks
|
|
27431
|
-
* For more information about database instances that support DAS Enterprise Edition, see [Overview of DAS Enterprise Edition](https://help.aliyun.com/document_detail/190912.html).
|
|
27502
|
+
* For more information about the database instances that support DAS Enterprise Edition, see [Overview of DAS Enterprise Edition](https://help.aliyun.com/document_detail/190912.html).
|
|
27432
27503
|
* * If you use an SDK to call API operations of DAS, you must set the region ID to cn-shanghai.
|
|
27433
27504
|
* * This operation is applicable only to DAS Enterprise Edition V1 and V2.
|
|
27505
|
+
* > We recommend that you call the [DescribeSqlLogConfig](https://help.aliyun.com/document_detail/2778837.html) operation to query the DAS Enterprise Edition configurations of a database instance.
|
|
27434
27506
|
*
|
|
27435
27507
|
* @param request - DescribeInstanceDasProRequest
|
|
27436
27508
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -27438,12 +27510,13 @@ export default class Client extends OpenApi {
|
|
|
27438
27510
|
*/
|
|
27439
27511
|
describeInstanceDasProWithOptions(request: DescribeInstanceDasProRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceDasProResponse>;
|
|
27440
27512
|
/**
|
|
27441
|
-
* Queries whether Database Autonomy Service (DAS) Enterprise Edition is enabled for a database instance.
|
|
27513
|
+
* Queries whether Database Autonomy Service (DAS) Enterprise Edition V1 or V2 is enabled for a database instance.
|
|
27442
27514
|
*
|
|
27443
27515
|
* @remarks
|
|
27444
|
-
* For more information about database instances that support DAS Enterprise Edition, see [Overview of DAS Enterprise Edition](https://help.aliyun.com/document_detail/190912.html).
|
|
27516
|
+
* For more information about the database instances that support DAS Enterprise Edition, see [Overview of DAS Enterprise Edition](https://help.aliyun.com/document_detail/190912.html).
|
|
27445
27517
|
* * If you use an SDK to call API operations of DAS, you must set the region ID to cn-shanghai.
|
|
27446
27518
|
* * This operation is applicable only to DAS Enterprise Edition V1 and V2.
|
|
27519
|
+
* > We recommend that you call the [DescribeSqlLogConfig](https://help.aliyun.com/document_detail/2778837.html) operation to query the DAS Enterprise Edition configurations of a database instance.
|
|
27447
27520
|
*
|
|
27448
27521
|
* @param request - DescribeInstanceDasProRequest
|
|
27449
27522
|
* @returns DescribeInstanceDasProResponse
|
|
@@ -27550,7 +27623,7 @@ export default class Client extends OpenApi {
|
|
|
27550
27623
|
*/
|
|
27551
27624
|
describeSqlLogTask(request: DescribeSqlLogTaskRequest): Promise<DescribeSqlLogTaskResponse>;
|
|
27552
27625
|
/**
|
|
27553
|
-
* Queries the
|
|
27626
|
+
* Queries the audit log tasks of a database instance.
|
|
27554
27627
|
*
|
|
27555
27628
|
* @remarks
|
|
27556
27629
|
* Before you call this operation, take note of the following items:
|
|
@@ -27563,7 +27636,7 @@ export default class Client extends OpenApi {
|
|
|
27563
27636
|
*/
|
|
27564
27637
|
describeSqlLogTasksWithOptions(request: DescribeSqlLogTasksRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSqlLogTasksResponse>;
|
|
27565
27638
|
/**
|
|
27566
|
-
* Queries the
|
|
27639
|
+
* Queries the audit log tasks of a database instance.
|
|
27567
27640
|
*
|
|
27568
27641
|
* @remarks
|
|
27569
27642
|
* Before you call this operation, take note of the following items:
|
|
@@ -27610,7 +27683,7 @@ export default class Client extends OpenApi {
|
|
|
27610
27683
|
*/
|
|
27611
27684
|
describeTopBigKeys(request: DescribeTopBigKeysRequest): Promise<DescribeTopBigKeysResponse>;
|
|
27612
27685
|
/**
|
|
27613
|
-
* Queries the top 100
|
|
27686
|
+
* Queries the top 100 hotkeys over a period of time.
|
|
27614
27687
|
*
|
|
27615
27688
|
* @remarks
|
|
27616
27689
|
* If the number of queries per second (QPS) of a key is greater than 3,000, the key is considered a hot key.
|
|
@@ -27628,7 +27701,7 @@ export default class Client extends OpenApi {
|
|
|
27628
27701
|
*/
|
|
27629
27702
|
describeTopHotKeysWithOptions(request: DescribeTopHotKeysRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTopHotKeysResponse>;
|
|
27630
27703
|
/**
|
|
27631
|
-
* Queries the top 100
|
|
27704
|
+
* Queries the top 100 hotkeys over a period of time.
|
|
27632
27705
|
*
|
|
27633
27706
|
* @remarks
|
|
27634
27707
|
* If the number of queries per second (QPS) of a key is greater than 3,000, the key is considered a hot key.
|
|
@@ -27712,12 +27785,13 @@ export default class Client extends OpenApi {
|
|
|
27712
27785
|
*/
|
|
27713
27786
|
disableAutoThrottleRules(request: DisableAutoThrottleRulesRequest): Promise<DisableAutoThrottleRulesResponse>;
|
|
27714
27787
|
/**
|
|
27715
|
-
*
|
|
27788
|
+
* Deactivates Database Autonomy Service (DAS) Professional Edition.
|
|
27716
27789
|
*
|
|
27717
27790
|
* @remarks
|
|
27718
|
-
* For more information about database instances that support DAS Enterprise Edition, see [Overview
|
|
27791
|
+
* For more information about the database instances that support DAS Enterprise Edition, see [Overview](https://help.aliyun.com/document_detail/190912.html).
|
|
27719
27792
|
* * If you use an SDK to call API operations of DAS, you must set the region ID to cn-shanghai.
|
|
27720
27793
|
* * This operation is applicable only to DAS Enterprise Edition V1.
|
|
27794
|
+
* > We recommend that you call the [ModifySqlLogConfig](https://help.aliyun.com/document_detail/2778835.html) operation to enable or disable DAS Enterprise Edition for a database instance. For more information about the databases and regions supported by each version of DAS Enterprise Edition, see [Editions and supported features](https://help.aliyun.com/document_detail/156204.html).
|
|
27721
27795
|
*
|
|
27722
27796
|
* @param request - DisableDasProRequest
|
|
27723
27797
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -27725,12 +27799,13 @@ export default class Client extends OpenApi {
|
|
|
27725
27799
|
*/
|
|
27726
27800
|
disableDasProWithOptions(request: DisableDasProRequest, runtime: $Util.RuntimeOptions): Promise<DisableDasProResponse>;
|
|
27727
27801
|
/**
|
|
27728
|
-
*
|
|
27802
|
+
* Deactivates Database Autonomy Service (DAS) Professional Edition.
|
|
27729
27803
|
*
|
|
27730
27804
|
* @remarks
|
|
27731
|
-
* For more information about database instances that support DAS Enterprise Edition, see [Overview
|
|
27805
|
+
* For more information about the database instances that support DAS Enterprise Edition, see [Overview](https://help.aliyun.com/document_detail/190912.html).
|
|
27732
27806
|
* * If you use an SDK to call API operations of DAS, you must set the region ID to cn-shanghai.
|
|
27733
27807
|
* * This operation is applicable only to DAS Enterprise Edition V1.
|
|
27808
|
+
* > We recommend that you call the [ModifySqlLogConfig](https://help.aliyun.com/document_detail/2778835.html) operation to enable or disable DAS Enterprise Edition for a database instance. For more information about the databases and regions supported by each version of DAS Enterprise Edition, see [Editions and supported features](https://help.aliyun.com/document_detail/156204.html).
|
|
27734
27809
|
*
|
|
27735
27810
|
* @param request - DisableDasProRequest
|
|
27736
27811
|
* @returns DisableDasProResponse
|
|
@@ -27789,12 +27864,12 @@ export default class Client extends OpenApi {
|
|
|
27789
27864
|
*/
|
|
27790
27865
|
disableSqlConcurrencyControl(request: DisableSqlConcurrencyControlRequest): Promise<DisableSqlConcurrencyControlResponse>;
|
|
27791
27866
|
/**
|
|
27792
|
-
*
|
|
27867
|
+
* Activates Database Autonomy Service (DAS) Professional Edition.
|
|
27793
27868
|
*
|
|
27794
27869
|
* @remarks
|
|
27795
27870
|
* If you use an SDK to call the API operations of DAS, you must set the region ID to cn-shanghai.
|
|
27796
27871
|
* * This operation is applicable only to DAS Enterprise Edition V1.
|
|
27797
|
-
* >
|
|
27872
|
+
* > We recommend that you call the [ModifySqlLogConfig](https://help.aliyun.com/document_detail/2778835.html) operation to activate or deactivate DAS Enterprise Edition for a database instance. For more information about the databases and regions supported by each version of DAS Enterprise Edition, see [DAS editions and supported features](https://help.aliyun.com/document_detail/156204.html).
|
|
27798
27873
|
*
|
|
27799
27874
|
* @param request - EnableDasProRequest
|
|
27800
27875
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -27802,12 +27877,12 @@ export default class Client extends OpenApi {
|
|
|
27802
27877
|
*/
|
|
27803
27878
|
enableDasProWithOptions(request: EnableDasProRequest, runtime: $Util.RuntimeOptions): Promise<EnableDasProResponse>;
|
|
27804
27879
|
/**
|
|
27805
|
-
*
|
|
27880
|
+
* Activates Database Autonomy Service (DAS) Professional Edition.
|
|
27806
27881
|
*
|
|
27807
27882
|
* @remarks
|
|
27808
27883
|
* If you use an SDK to call the API operations of DAS, you must set the region ID to cn-shanghai.
|
|
27809
27884
|
* * This operation is applicable only to DAS Enterprise Edition V1.
|
|
27810
|
-
* >
|
|
27885
|
+
* > We recommend that you call the [ModifySqlLogConfig](https://help.aliyun.com/document_detail/2778835.html) operation to activate or deactivate DAS Enterprise Edition for a database instance. For more information about the databases and regions supported by each version of DAS Enterprise Edition, see [DAS editions and supported features](https://help.aliyun.com/document_detail/156204.html).
|
|
27811
27886
|
*
|
|
27812
27887
|
* @param request - EnableDasProRequest
|
|
27813
27888
|
* @returns EnableDasProResponse
|
|
@@ -27842,9 +27917,10 @@ export default class Client extends OpenApi {
|
|
|
27842
27917
|
* Asynchronously queries the IDs of SQL statements that generate a MySQL error code in the SQL Explorer results of a database instance.
|
|
27843
27918
|
*
|
|
27844
27919
|
* @remarks
|
|
27845
|
-
* > GetAsyncErrorRequestListByCode is an asynchronous operation. After a request is sent, the complete results are not returned immediately. If the value of **isFinish** is **false** in the response, wait for 1 second and then send a request again. If the value of **isFinish** is **true**, the complete results are returned.
|
|
27846
|
-
* * This API operation supports only ApsaraDB RDS for MySQL instances and PolarDB for MySQL clusters for which Database Autonomy Service (DAS) Enterprise Edition is enabled. For more information, see [
|
|
27847
|
-
* * If you use an SDK to call API operations of DAS, you must set the region ID to cn-shanghai.
|
|
27920
|
+
* > GetAsyncErrorRequestListByCode is an asynchronous operation. After a request is sent, the complete results are not returned immediately. If the value of the **isFinish** parameter is **false** in the response, wait for 1 second and then send a request again. If the value of the **isFinish** parameter is **true**, the complete results are returned.
|
|
27921
|
+
* * This API operation supports only ApsaraDB RDS for MySQL instances and PolarDB for MySQL clusters for which Database Autonomy Service (DAS) Enterprise Edition is enabled. For more information, see [Enable and manage DAS Economy Edition and DAS Enterprise Edition](https://help.aliyun.com/document_detail/163298.html).
|
|
27922
|
+
* * If you use an SDK to call the API operations of DAS, you must set the region ID to cn-shanghai.
|
|
27923
|
+
* * When you call this operation, the value of the SqlId parameter changes due to the optimization of the SQL template algorithm starting from September 1, 2024. For more information, see [[Notice\\] Optimization of the SQL template algorithm](~~2845725~~).
|
|
27848
27924
|
*
|
|
27849
27925
|
* @param request - GetAsyncErrorRequestListByCodeRequest
|
|
27850
27926
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -27855,9 +27931,10 @@ export default class Client extends OpenApi {
|
|
|
27855
27931
|
* Asynchronously queries the IDs of SQL statements that generate a MySQL error code in the SQL Explorer results of a database instance.
|
|
27856
27932
|
*
|
|
27857
27933
|
* @remarks
|
|
27858
|
-
* > GetAsyncErrorRequestListByCode is an asynchronous operation. After a request is sent, the complete results are not returned immediately. If the value of **isFinish** is **false** in the response, wait for 1 second and then send a request again. If the value of **isFinish** is **true**, the complete results are returned.
|
|
27859
|
-
* * This API operation supports only ApsaraDB RDS for MySQL instances and PolarDB for MySQL clusters for which Database Autonomy Service (DAS) Enterprise Edition is enabled. For more information, see [
|
|
27860
|
-
* * If you use an SDK to call API operations of DAS, you must set the region ID to cn-shanghai.
|
|
27934
|
+
* > GetAsyncErrorRequestListByCode is an asynchronous operation. After a request is sent, the complete results are not returned immediately. If the value of the **isFinish** parameter is **false** in the response, wait for 1 second and then send a request again. If the value of the **isFinish** parameter is **true**, the complete results are returned.
|
|
27935
|
+
* * This API operation supports only ApsaraDB RDS for MySQL instances and PolarDB for MySQL clusters for which Database Autonomy Service (DAS) Enterprise Edition is enabled. For more information, see [Enable and manage DAS Economy Edition and DAS Enterprise Edition](https://help.aliyun.com/document_detail/163298.html).
|
|
27936
|
+
* * If you use an SDK to call the API operations of DAS, you must set the region ID to cn-shanghai.
|
|
27937
|
+
* * When you call this operation, the value of the SqlId parameter changes due to the optimization of the SQL template algorithm starting from September 1, 2024. For more information, see [[Notice\\] Optimization of the SQL template algorithm](~~2845725~~).
|
|
27861
27938
|
*
|
|
27862
27939
|
* @param request - GetAsyncErrorRequestListByCodeRequest
|
|
27863
27940
|
* @returns GetAsyncErrorRequestListByCodeResponse
|
|
@@ -27971,9 +28048,9 @@ export default class Client extends OpenApi {
|
|
|
27971
28048
|
* @remarks
|
|
27972
28049
|
* Before you call this operation, take note of the following items:
|
|
27973
28050
|
* * If you use an SDK to call API operations of Database Autonomy Service (DAS), you must set the region ID to cn-shanghai.
|
|
27974
|
-
* * The database instance that you want to manage
|
|
27975
|
-
* * ApsaraDB RDS for MySQL High-availability Edition or Enterprise Edition
|
|
27976
|
-
* * PolarDB for MySQL Cluster Edition
|
|
28051
|
+
* * The database instance that you want to manage must be of one of the following types:
|
|
28052
|
+
* * ApsaraDB RDS for MySQL High-availability Edition or Enterprise Edition that runs MySQL 5.6, MySQL 5.7, or MySQL 8.0
|
|
28053
|
+
* * PolarDB for MySQL Cluster Edition that runs MySQL 5.6, MySQL 5.7, or MySQL 8.0
|
|
27977
28054
|
*
|
|
27978
28055
|
* @param request - GetAutoThrottleRulesRequest
|
|
27979
28056
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -27986,9 +28063,9 @@ export default class Client extends OpenApi {
|
|
|
27986
28063
|
* @remarks
|
|
27987
28064
|
* Before you call this operation, take note of the following items:
|
|
27988
28065
|
* * If you use an SDK to call API operations of Database Autonomy Service (DAS), you must set the region ID to cn-shanghai.
|
|
27989
|
-
* * The database instance that you want to manage
|
|
27990
|
-
* * ApsaraDB RDS for MySQL High-availability Edition or Enterprise Edition
|
|
27991
|
-
* * PolarDB for MySQL Cluster Edition
|
|
28066
|
+
* * The database instance that you want to manage must be of one of the following types:
|
|
28067
|
+
* * ApsaraDB RDS for MySQL High-availability Edition or Enterprise Edition that runs MySQL 5.6, MySQL 5.7, or MySQL 8.0
|
|
28068
|
+
* * PolarDB for MySQL Cluster Edition that runs MySQL 5.6, MySQL 5.7, or MySQL 8.0
|
|
27992
28069
|
*
|
|
27993
28070
|
* @param request - GetAutoThrottleRulesRequest
|
|
27994
28071
|
* @returns GetAutoThrottleRulesResponse
|
|
@@ -28053,7 +28130,7 @@ export default class Client extends OpenApi {
|
|
|
28053
28130
|
*/
|
|
28054
28131
|
getAutonomousNotifyEventsInRange(request: GetAutonomousNotifyEventsInRangeRequest): Promise<GetAutonomousNotifyEventsInRangeResponse>;
|
|
28055
28132
|
/**
|
|
28056
|
-
* Queries the blocking
|
|
28133
|
+
* Queries the blocking data of an ApsaraDB RDS for SQL Server instance.
|
|
28057
28134
|
*
|
|
28058
28135
|
* @remarks
|
|
28059
28136
|
* This operation is applicable only to ApsaraDB RDS for SQL Server instances.
|
|
@@ -28066,7 +28143,7 @@ export default class Client extends OpenApi {
|
|
|
28066
28143
|
*/
|
|
28067
28144
|
getBlockingDetailListWithOptions(request: GetBlockingDetailListRequest, runtime: $Util.RuntimeOptions): Promise<GetBlockingDetailListResponse>;
|
|
28068
28145
|
/**
|
|
28069
|
-
* Queries the blocking
|
|
28146
|
+
* Queries the blocking data of an ApsaraDB RDS for SQL Server instance.
|
|
28070
28147
|
*
|
|
28071
28148
|
* @remarks
|
|
28072
28149
|
* This operation is applicable only to ApsaraDB RDS for SQL Server instances.
|
|
@@ -28105,13 +28182,14 @@ export default class Client extends OpenApi {
|
|
|
28105
28182
|
*/
|
|
28106
28183
|
getDBInstanceConnectivityDiagnosis(request: GetDBInstanceConnectivityDiagnosisRequest): Promise<GetDBInstanceConnectivityDiagnosisResponse>;
|
|
28107
28184
|
/**
|
|
28108
|
-
* Queries the storage usage of
|
|
28185
|
+
* Queries the storage usage of a database instance for which Database Autonomy Service (DAS) Enterprise Edition V1 or V2 is enabled.
|
|
28109
28186
|
*
|
|
28110
28187
|
* @remarks
|
|
28111
|
-
* For information about database instances that support this operation, see [Overview of DAS Enterprise Edition](https://help.aliyun.com/document_detail/190912.html).
|
|
28112
|
-
* * If you use an Alibaba Cloud SDK or
|
|
28188
|
+
* For information about the database instances that support this operation, see [Overview of DAS Enterprise Edition](https://help.aliyun.com/document_detail/190912.html).
|
|
28189
|
+
* * If you use an Alibaba Cloud SDK or DAS SDK to call this operation, we recommend that you use the latest version of the SDK.
|
|
28113
28190
|
* * If you use an SDK to call API operations of DAS, you must set the region ID to cn-shanghai.
|
|
28114
28191
|
* * This operation is applicable only to DAS Enterprise Edition V1 and V2.
|
|
28192
|
+
* > We recommend that you call the [DescribeSqlLogStatistic](https://help.aliyun.com/document_detail/2778836.html) operation to query the data statistics of a database instance for which DAS Enterprise Edition is enabled.
|
|
28115
28193
|
*
|
|
28116
28194
|
* @param request - GetDasProServiceUsageRequest
|
|
28117
28195
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -28119,27 +28197,28 @@ export default class Client extends OpenApi {
|
|
|
28119
28197
|
*/
|
|
28120
28198
|
getDasProServiceUsageWithOptions(request: GetDasProServiceUsageRequest, runtime: $Util.RuntimeOptions): Promise<GetDasProServiceUsageResponse>;
|
|
28121
28199
|
/**
|
|
28122
|
-
* Queries the storage usage of
|
|
28200
|
+
* Queries the storage usage of a database instance for which Database Autonomy Service (DAS) Enterprise Edition V1 or V2 is enabled.
|
|
28123
28201
|
*
|
|
28124
28202
|
* @remarks
|
|
28125
|
-
* For information about database instances that support this operation, see [Overview of DAS Enterprise Edition](https://help.aliyun.com/document_detail/190912.html).
|
|
28126
|
-
* * If you use an Alibaba Cloud SDK or
|
|
28203
|
+
* For information about the database instances that support this operation, see [Overview of DAS Enterprise Edition](https://help.aliyun.com/document_detail/190912.html).
|
|
28204
|
+
* * If you use an Alibaba Cloud SDK or DAS SDK to call this operation, we recommend that you use the latest version of the SDK.
|
|
28127
28205
|
* * If you use an SDK to call API operations of DAS, you must set the region ID to cn-shanghai.
|
|
28128
28206
|
* * This operation is applicable only to DAS Enterprise Edition V1 and V2.
|
|
28207
|
+
* > We recommend that you call the [DescribeSqlLogStatistic](https://help.aliyun.com/document_detail/2778836.html) operation to query the data statistics of a database instance for which DAS Enterprise Edition is enabled.
|
|
28129
28208
|
*
|
|
28130
28209
|
* @param request - GetDasProServiceUsageRequest
|
|
28131
28210
|
* @returns GetDasProServiceUsageResponse
|
|
28132
28211
|
*/
|
|
28133
28212
|
getDasProServiceUsage(request: GetDasProServiceUsageRequest): Promise<GetDasProServiceUsageResponse>;
|
|
28134
28213
|
/**
|
|
28135
|
-
* Queries the
|
|
28214
|
+
* Queries the hot data of audit logs.
|
|
28136
28215
|
*
|
|
28137
28216
|
* @remarks
|
|
28138
28217
|
* Before you call this operation, take note of the following items:
|
|
28139
28218
|
* * If you use an Alibaba Cloud SDK or DAS SDK to call this operation, we recommend that you use the latest version of the SDK.
|
|
28140
|
-
* * If you use an SDK to call
|
|
28141
|
-
* *
|
|
28142
|
-
* >
|
|
28219
|
+
* * If you use an SDK to call API operations of DAS, you must set the region ID to cn-shanghai.
|
|
28220
|
+
* * This operation is applicable to PolarDB for MySQL, ApsaraDB RDS for MySQL, ApsaraDB RDS for PostgreSQL, and ApsaraDB RDS for SQL Server.
|
|
28221
|
+
* > The beginning of the time range to query can be up to seven days earlier than the current time. The interval between the start time and the end time cannot exceed one day. This operation can return a maximum of 10,000 entries.
|
|
28143
28222
|
*
|
|
28144
28223
|
* @param request - GetDasSQLLogHotDataRequest
|
|
28145
28224
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -28147,21 +28226,36 @@ export default class Client extends OpenApi {
|
|
|
28147
28226
|
*/
|
|
28148
28227
|
getDasSQLLogHotDataWithOptions(request: GetDasSQLLogHotDataRequest, runtime: $Util.RuntimeOptions): Promise<GetDasSQLLogHotDataResponse>;
|
|
28149
28228
|
/**
|
|
28150
|
-
* Queries the
|
|
28229
|
+
* Queries the hot data of audit logs.
|
|
28151
28230
|
*
|
|
28152
28231
|
* @remarks
|
|
28153
28232
|
* Before you call this operation, take note of the following items:
|
|
28154
28233
|
* * If you use an Alibaba Cloud SDK or DAS SDK to call this operation, we recommend that you use the latest version of the SDK.
|
|
28155
|
-
* * If you use an SDK to call
|
|
28156
|
-
* *
|
|
28157
|
-
* >
|
|
28234
|
+
* * If you use an SDK to call API operations of DAS, you must set the region ID to cn-shanghai.
|
|
28235
|
+
* * This operation is applicable to PolarDB for MySQL, ApsaraDB RDS for MySQL, ApsaraDB RDS for PostgreSQL, and ApsaraDB RDS for SQL Server.
|
|
28236
|
+
* > The beginning of the time range to query can be up to seven days earlier than the current time. The interval between the start time and the end time cannot exceed one day. This operation can return a maximum of 10,000 entries.
|
|
28158
28237
|
*
|
|
28159
28238
|
* @param request - GetDasSQLLogHotDataRequest
|
|
28160
28239
|
* @returns GetDasSQLLogHotDataResponse
|
|
28161
28240
|
*/
|
|
28162
28241
|
getDasSQLLogHotData(request: GetDasSQLLogHotDataRequest): Promise<GetDasSQLLogHotDataResponse>;
|
|
28163
28242
|
/**
|
|
28164
|
-
*
|
|
28243
|
+
* 查询单个死锁详情
|
|
28244
|
+
*
|
|
28245
|
+
* @param request - GetDeadLockDetailRequest
|
|
28246
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
28247
|
+
* @returns GetDeadLockDetailResponse
|
|
28248
|
+
*/
|
|
28249
|
+
getDeadLockDetailWithOptions(request: GetDeadLockDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetDeadLockDetailResponse>;
|
|
28250
|
+
/**
|
|
28251
|
+
* 查询单个死锁详情
|
|
28252
|
+
*
|
|
28253
|
+
* @param request - GetDeadLockDetailRequest
|
|
28254
|
+
* @returns GetDeadLockDetailResponse
|
|
28255
|
+
*/
|
|
28256
|
+
getDeadLockDetail(request: GetDeadLockDetailRequest): Promise<GetDeadLockDetailResponse>;
|
|
28257
|
+
/**
|
|
28258
|
+
* Queries the deadlock details of an ApsaraDB RDS for SQL Server instance.
|
|
28165
28259
|
*
|
|
28166
28260
|
* @remarks
|
|
28167
28261
|
* This operation is applicable only to ApsaraDB RDS for SQL Server instances.
|
|
@@ -28174,7 +28268,7 @@ export default class Client extends OpenApi {
|
|
|
28174
28268
|
*/
|
|
28175
28269
|
getDeadLockDetailListWithOptions(request: GetDeadLockDetailListRequest, runtime: $Util.RuntimeOptions): Promise<GetDeadLockDetailListResponse>;
|
|
28176
28270
|
/**
|
|
28177
|
-
* Queries the deadlock details of an instance.
|
|
28271
|
+
* Queries the deadlock details of an ApsaraDB RDS for SQL Server instance.
|
|
28178
28272
|
*
|
|
28179
28273
|
* @remarks
|
|
28180
28274
|
* This operation is applicable only to ApsaraDB RDS for SQL Server instances.
|
|
@@ -28185,6 +28279,36 @@ export default class Client extends OpenApi {
|
|
|
28185
28279
|
* @returns GetDeadLockDetailListResponse
|
|
28186
28280
|
*/
|
|
28187
28281
|
getDeadLockDetailList(request: GetDeadLockDetailListRequest): Promise<GetDeadLockDetailListResponse>;
|
|
28282
|
+
/**
|
|
28283
|
+
* 获取历史死锁记录
|
|
28284
|
+
*
|
|
28285
|
+
* @param request - GetDeadLockHistoryRequest
|
|
28286
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
28287
|
+
* @returns GetDeadLockHistoryResponse
|
|
28288
|
+
*/
|
|
28289
|
+
getDeadLockHistoryWithOptions(request: GetDeadLockHistoryRequest, runtime: $Util.RuntimeOptions): Promise<GetDeadLockHistoryResponse>;
|
|
28290
|
+
/**
|
|
28291
|
+
* 获取历史死锁记录
|
|
28292
|
+
*
|
|
28293
|
+
* @param request - GetDeadLockHistoryRequest
|
|
28294
|
+
* @returns GetDeadLockHistoryResponse
|
|
28295
|
+
*/
|
|
28296
|
+
getDeadLockHistory(request: GetDeadLockHistoryRequest): Promise<GetDeadLockHistoryResponse>;
|
|
28297
|
+
/**
|
|
28298
|
+
* 查询时间范围内基于错误日志分析的死锁数量
|
|
28299
|
+
*
|
|
28300
|
+
* @param request - GetDeadlockHistogramRequest
|
|
28301
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
28302
|
+
* @returns GetDeadlockHistogramResponse
|
|
28303
|
+
*/
|
|
28304
|
+
getDeadlockHistogramWithOptions(request: GetDeadlockHistogramRequest, runtime: $Util.RuntimeOptions): Promise<GetDeadlockHistogramResponse>;
|
|
28305
|
+
/**
|
|
28306
|
+
* 查询时间范围内基于错误日志分析的死锁数量
|
|
28307
|
+
*
|
|
28308
|
+
* @param request - GetDeadlockHistogramRequest
|
|
28309
|
+
* @returns GetDeadlockHistogramResponse
|
|
28310
|
+
*/
|
|
28311
|
+
getDeadlockHistogram(request: GetDeadlockHistogramRequest): Promise<GetDeadlockHistogramResponse>;
|
|
28188
28312
|
/**
|
|
28189
28313
|
* @param request - GetEndpointSwitchTaskRequest
|
|
28190
28314
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -28302,10 +28426,11 @@ export default class Client extends OpenApi {
|
|
|
28302
28426
|
* Asynchronously collects the full request statistics in the SQL Explorer results of a database instance by SQL ID.
|
|
28303
28427
|
*
|
|
28304
28428
|
* @remarks
|
|
28305
|
-
* >
|
|
28429
|
+
* > GetFullRequestStatResultByInstanceId is an asynchronous operation. After a request is sent, the complete results are not returned immediately. If the value of the isFinish parameter is **false** in the response, wait for 1 second and then send a request again. If the value of the isFinish parameter is **true**, the complete results are returned.
|
|
28306
28430
|
* The SQL Explorer feature allows you to check the health status of SQL statements and troubleshoot performance issues. For more information, see [SQL Explorer](https://help.aliyun.com/document_detail/204096.html).
|
|
28307
|
-
* * For more information about database instances that support
|
|
28308
|
-
* * If you use an SDK to call API operations of Database Autonomy Service (DAS), you must set the region ID to cn-shanghai.
|
|
28431
|
+
* * For more information about database instances that support this feature, see [Overview of DAS Enterprise Edition](https://help.aliyun.com/document_detail/190912.html).
|
|
28432
|
+
* * If you use an SDK to call the API operations of Database Autonomy Service (DAS), you must set the region ID to cn-shanghai.
|
|
28433
|
+
* * When you call this operation, the value of the SqlId parameter changes due to the optimization of the SQL template algorithm starting from September 1, 2024. For more information, see [[Notice\\] Optimization of the SQL template algorithm](~~2845725~~).
|
|
28309
28434
|
*
|
|
28310
28435
|
* @param request - GetFullRequestStatResultByInstanceIdRequest
|
|
28311
28436
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -28316,10 +28441,11 @@ export default class Client extends OpenApi {
|
|
|
28316
28441
|
* Asynchronously collects the full request statistics in the SQL Explorer results of a database instance by SQL ID.
|
|
28317
28442
|
*
|
|
28318
28443
|
* @remarks
|
|
28319
|
-
* >
|
|
28444
|
+
* > GetFullRequestStatResultByInstanceId is an asynchronous operation. After a request is sent, the complete results are not returned immediately. If the value of the isFinish parameter is **false** in the response, wait for 1 second and then send a request again. If the value of the isFinish parameter is **true**, the complete results are returned.
|
|
28320
28445
|
* The SQL Explorer feature allows you to check the health status of SQL statements and troubleshoot performance issues. For more information, see [SQL Explorer](https://help.aliyun.com/document_detail/204096.html).
|
|
28321
|
-
* * For more information about database instances that support
|
|
28322
|
-
* * If you use an SDK to call API operations of Database Autonomy Service (DAS), you must set the region ID to cn-shanghai.
|
|
28446
|
+
* * For more information about database instances that support this feature, see [Overview of DAS Enterprise Edition](https://help.aliyun.com/document_detail/190912.html).
|
|
28447
|
+
* * If you use an SDK to call the API operations of Database Autonomy Service (DAS), you must set the region ID to cn-shanghai.
|
|
28448
|
+
* * When you call this operation, the value of the SqlId parameter changes due to the optimization of the SQL template algorithm starting from September 1, 2024. For more information, see [[Notice\\] Optimization of the SQL template algorithm](~~2845725~~).
|
|
28323
28449
|
*
|
|
28324
28450
|
* @param request - GetFullRequestStatResultByInstanceIdRequest
|
|
28325
28451
|
* @returns GetFullRequestStatResultByInstanceIdResponse
|
|
@@ -28973,15 +29099,16 @@ export default class Client extends OpenApi {
|
|
|
28973
29099
|
*
|
|
28974
29100
|
* @remarks
|
|
28975
29101
|
* Before you call this operation, take note of the following items:
|
|
28976
|
-
* * If you use an SDK to call operations of Database Autonomy Service (DAS), you must set the region ID to cn-shanghai.
|
|
28977
|
-
* *
|
|
28978
|
-
*
|
|
28979
|
-
* *
|
|
28980
|
-
* *
|
|
29102
|
+
* * If you use an SDK to call the API operations of Database Autonomy Service (DAS), you must set the region ID to cn-shanghai.
|
|
29103
|
+
* * You cannot call this operation to query the diagnostic result of the automatic SQL optimization feature.
|
|
29104
|
+
* * This operation is applicable to the following database engines:
|
|
29105
|
+
* * RDS MySQL
|
|
29106
|
+
* * RDS PostgreSQL
|
|
29107
|
+
* * RDS SQL Server
|
|
28981
29108
|
* * PolarDB for MySQL
|
|
28982
|
-
* * PolarDB for PostgreSQL (
|
|
29109
|
+
* * PolarDB for PostgreSQL (Compatible with Oracle)
|
|
28983
29110
|
* * ApsaraDB for MongoDB
|
|
28984
|
-
* >
|
|
29111
|
+
* > If your instance is an ApsaraDB RDS for PostgreSQL instance, make sure that the minor engine version of your instance is 20220130 or later. For more information about how to check and update the minor engine version of an ApsaraDB RDS for PostgreSQL instance, see [Update the minor engine version of an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/146895.html).
|
|
28985
29112
|
*
|
|
28986
29113
|
* @param request - GetRequestDiagnosisResultRequest
|
|
28987
29114
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -28993,15 +29120,16 @@ export default class Client extends OpenApi {
|
|
|
28993
29120
|
*
|
|
28994
29121
|
* @remarks
|
|
28995
29122
|
* Before you call this operation, take note of the following items:
|
|
28996
|
-
* * If you use an SDK to call operations of Database Autonomy Service (DAS), you must set the region ID to cn-shanghai.
|
|
28997
|
-
* *
|
|
28998
|
-
*
|
|
28999
|
-
* *
|
|
29000
|
-
* *
|
|
29123
|
+
* * If you use an SDK to call the API operations of Database Autonomy Service (DAS), you must set the region ID to cn-shanghai.
|
|
29124
|
+
* * You cannot call this operation to query the diagnostic result of the automatic SQL optimization feature.
|
|
29125
|
+
* * This operation is applicable to the following database engines:
|
|
29126
|
+
* * RDS MySQL
|
|
29127
|
+
* * RDS PostgreSQL
|
|
29128
|
+
* * RDS SQL Server
|
|
29001
29129
|
* * PolarDB for MySQL
|
|
29002
|
-
* * PolarDB for PostgreSQL (
|
|
29130
|
+
* * PolarDB for PostgreSQL (Compatible with Oracle)
|
|
29003
29131
|
* * ApsaraDB for MongoDB
|
|
29004
|
-
* >
|
|
29132
|
+
* > If your instance is an ApsaraDB RDS for PostgreSQL instance, make sure that the minor engine version of your instance is 20220130 or later. For more information about how to check and update the minor engine version of an ApsaraDB RDS for PostgreSQL instance, see [Update the minor engine version of an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/146895.html).
|
|
29005
29133
|
*
|
|
29006
29134
|
* @param request - GetRequestDiagnosisResultRequest
|
|
29007
29135
|
* @returns GetRequestDiagnosisResultResponse
|
|
@@ -29265,7 +29393,7 @@ export default class Client extends OpenApi {
|
|
|
29265
29393
|
*
|
|
29266
29394
|
* @remarks
|
|
29267
29395
|
* Before you call this operation, take note of the following items:
|
|
29268
|
-
* * If you use an Alibaba Cloud SDK or Database Autonomy Service (DAS) SDK to call this operation, we recommend that you use the latest version of the SDK.
|
|
29396
|
+
* * If you use an Alibaba Cloud SDK or a Database Autonomy Service (DAS) SDK to call this operation, we recommend that you use the latest version of the SDK.
|
|
29269
29397
|
* * If you use an SDK to call the API operations of DAS, you must set the region ID to cn-shanghai.
|
|
29270
29398
|
* * Make sure that the database instance that you want to manage is connected to DAS.
|
|
29271
29399
|
*
|
|
@@ -29279,7 +29407,7 @@ export default class Client extends OpenApi {
|
|
|
29279
29407
|
*
|
|
29280
29408
|
* @remarks
|
|
29281
29409
|
* Before you call this operation, take note of the following items:
|
|
29282
|
-
* * If you use an Alibaba Cloud SDK or Database Autonomy Service (DAS) SDK to call this operation, we recommend that you use the latest version of the SDK.
|
|
29410
|
+
* * If you use an Alibaba Cloud SDK or a Database Autonomy Service (DAS) SDK to call this operation, we recommend that you use the latest version of the SDK.
|
|
29283
29411
|
* * If you use an SDK to call the API operations of DAS, you must set the region ID to cn-shanghai.
|
|
29284
29412
|
* * Make sure that the database instance that you want to manage is connected to DAS.
|
|
29285
29413
|
*
|
|
@@ -29287,38 +29415,6 @@ export default class Client extends OpenApi {
|
|
|
29287
29415
|
* @returns SetEventSubscriptionResponse
|
|
29288
29416
|
*/
|
|
29289
29417
|
setEventSubscription(request: SetEventSubscriptionRequest): Promise<SetEventSubscriptionResponse>;
|
|
29290
|
-
/**
|
|
29291
|
-
* Stops a stress testing task.
|
|
29292
|
-
*
|
|
29293
|
-
* @remarks
|
|
29294
|
-
* Database Autonomy Service (DAS) provides the intelligent stress testing feature. This feature helps you check whether your instance needs to be scaled up to effectively handle traffic spikes. For more information, see [Intelligent stress testing](https://help.aliyun.com/document_detail/155068.html).
|
|
29295
|
-
*
|
|
29296
|
-
* @param request - StopCloudBenchTaskRequest
|
|
29297
|
-
* @param runtime - runtime options for this request RuntimeOptions
|
|
29298
|
-
* @returns StopCloudBenchTaskResponse
|
|
29299
|
-
*/
|
|
29300
|
-
stopCloudBenchTaskWithOptions(request: StopCloudBenchTaskRequest, runtime: $Util.RuntimeOptions): Promise<StopCloudBenchTaskResponse>;
|
|
29301
|
-
/**
|
|
29302
|
-
* Stops a stress testing task.
|
|
29303
|
-
*
|
|
29304
|
-
* @remarks
|
|
29305
|
-
* Database Autonomy Service (DAS) provides the intelligent stress testing feature. This feature helps you check whether your instance needs to be scaled up to effectively handle traffic spikes. For more information, see [Intelligent stress testing](https://help.aliyun.com/document_detail/155068.html).
|
|
29306
|
-
*
|
|
29307
|
-
* @param request - StopCloudBenchTaskRequest
|
|
29308
|
-
* @returns StopCloudBenchTaskResponse
|
|
29309
|
-
*/
|
|
29310
|
-
stopCloudBenchTask(request: StopCloudBenchTaskRequest): Promise<StopCloudBenchTaskResponse>;
|
|
29311
|
-
/**
|
|
29312
|
-
* @param request - SyncHDMAliyunResourceRequest
|
|
29313
|
-
* @param runtime - runtime options for this request RuntimeOptions
|
|
29314
|
-
* @returns SyncHDMAliyunResourceResponse
|
|
29315
|
-
*/
|
|
29316
|
-
syncHDMAliyunResourceWithOptions(request: SyncHDMAliyunResourceRequest, runtime: $Util.RuntimeOptions): Promise<SyncHDMAliyunResourceResponse>;
|
|
29317
|
-
/**
|
|
29318
|
-
* @param request - SyncHDMAliyunResourceRequest
|
|
29319
|
-
* @returns SyncHDMAliyunResourceResponse
|
|
29320
|
-
*/
|
|
29321
|
-
syncHDMAliyunResource(request: SyncHDMAliyunResourceRequest): Promise<SyncHDMAliyunResourceResponse>;
|
|
29322
29418
|
/**
|
|
29323
29419
|
* Asynchronously configures parameters related to the automatic fragment recycling feature for multiple database instances at a time.
|
|
29324
29420
|
*
|
|
@@ -29357,10 +29453,10 @@ export default class Client extends OpenApi {
|
|
|
29357
29453
|
* Before you call this operation, take note of the following items:
|
|
29358
29454
|
* * If you use an SDK to call API operations of Database Autonomy Service (DAS), you must set the region ID to cn-shanghai.
|
|
29359
29455
|
* * DAS Enterprise Edition must be enabled for the database instance that you want to manage. To enable DAS Enterprise Edition for a database instance, you can call the [EnableDasPro](https://help.aliyun.com/document_detail/411645.html) operation.
|
|
29360
|
-
* * The autonomy service must be enabled for the database instance
|
|
29456
|
+
* * The autonomy service must be enabled for the database instance. For more information, see [Autonomy center](https://help.aliyun.com/document_detail/152139.html).
|
|
29361
29457
|
* * This operation supports the following database engines:
|
|
29362
29458
|
* * ApsaraDB RDS for MySQL High-availability Edition or Enterprise Edition
|
|
29363
|
-
* * PolarDB for MySQL Cluster Edition
|
|
29459
|
+
* * PolarDB for MySQL Cluster Edition
|
|
29364
29460
|
*
|
|
29365
29461
|
* @param request - UpdateAutoSqlOptimizeStatusRequest
|
|
29366
29462
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -29374,10 +29470,10 @@ export default class Client extends OpenApi {
|
|
|
29374
29470
|
* Before you call this operation, take note of the following items:
|
|
29375
29471
|
* * If you use an SDK to call API operations of Database Autonomy Service (DAS), you must set the region ID to cn-shanghai.
|
|
29376
29472
|
* * DAS Enterprise Edition must be enabled for the database instance that you want to manage. To enable DAS Enterprise Edition for a database instance, you can call the [EnableDasPro](https://help.aliyun.com/document_detail/411645.html) operation.
|
|
29377
|
-
* * The autonomy service must be enabled for the database instance
|
|
29473
|
+
* * The autonomy service must be enabled for the database instance. For more information, see [Autonomy center](https://help.aliyun.com/document_detail/152139.html).
|
|
29378
29474
|
* * This operation supports the following database engines:
|
|
29379
29475
|
* * ApsaraDB RDS for MySQL High-availability Edition or Enterprise Edition
|
|
29380
|
-
* * PolarDB for MySQL Cluster Edition
|
|
29476
|
+
* * PolarDB for MySQL Cluster Edition
|
|
29381
29477
|
*
|
|
29382
29478
|
* @param request - UpdateAutoSqlOptimizeStatusRequest
|
|
29383
29479
|
* @returns UpdateAutoSqlOptimizeStatusResponse
|
|
@@ -29387,13 +29483,13 @@ export default class Client extends OpenApi {
|
|
|
29387
29483
|
* Asynchronously configures parameters related to the automatic SQL throttling feature for multiple database instances at a time.
|
|
29388
29484
|
*
|
|
29389
29485
|
* @remarks
|
|
29390
|
-
* > Asynchronous calls do not immediately return the complete results.
|
|
29486
|
+
* > Asynchronous calls do not immediately return the complete results. To obtain the complete results, you must use the value of **ResultId** returned in the response to re-initiate the call until the value of **isFinish** is **true**.**** In this case, you must call this operation at least twice.
|
|
29391
29487
|
* Before you call this operation, take note of the following items:
|
|
29392
|
-
* * If you use an SDK to call
|
|
29488
|
+
* * If you use an SDK to call API operations of Database Autonomy Service (DAS), you must set the region ID to cn-shanghai.
|
|
29393
29489
|
* * The autonomy service must be enabled for the database instance that you want to manage. For more information, see [Autonomy center](https://help.aliyun.com/document_detail/152139.html).
|
|
29394
29490
|
* * The database instance that you want to manage must be of one of the following types:
|
|
29395
29491
|
* * ApsaraDB RDS for MySQL High-availability Edition or Enterprise Edition that runs MySQL 5.6, MySQL 5.7, or MySQL 8.0
|
|
29396
|
-
* * PolarDB for MySQL Cluster Edition that runs MySQL 5.6, MySQL 5.7, or MySQL 8.0
|
|
29492
|
+
* * PolarDB for MySQL Cluster Edition that runs MySQL 5.6, MySQL 5.7, or MySQL 8.0
|
|
29397
29493
|
*
|
|
29398
29494
|
* @param request - UpdateAutoThrottleRulesAsyncRequest
|
|
29399
29495
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -29404,13 +29500,13 @@ export default class Client extends OpenApi {
|
|
|
29404
29500
|
* Asynchronously configures parameters related to the automatic SQL throttling feature for multiple database instances at a time.
|
|
29405
29501
|
*
|
|
29406
29502
|
* @remarks
|
|
29407
|
-
* > Asynchronous calls do not immediately return the complete results.
|
|
29503
|
+
* > Asynchronous calls do not immediately return the complete results. To obtain the complete results, you must use the value of **ResultId** returned in the response to re-initiate the call until the value of **isFinish** is **true**.**** In this case, you must call this operation at least twice.
|
|
29408
29504
|
* Before you call this operation, take note of the following items:
|
|
29409
|
-
* * If you use an SDK to call
|
|
29505
|
+
* * If you use an SDK to call API operations of Database Autonomy Service (DAS), you must set the region ID to cn-shanghai.
|
|
29410
29506
|
* * The autonomy service must be enabled for the database instance that you want to manage. For more information, see [Autonomy center](https://help.aliyun.com/document_detail/152139.html).
|
|
29411
29507
|
* * The database instance that you want to manage must be of one of the following types:
|
|
29412
29508
|
* * ApsaraDB RDS for MySQL High-availability Edition or Enterprise Edition that runs MySQL 5.6, MySQL 5.7, or MySQL 8.0
|
|
29413
|
-
* * PolarDB for MySQL Cluster Edition that runs MySQL 5.6, MySQL 5.7, or MySQL 8.0
|
|
29509
|
+
* * PolarDB for MySQL Cluster Edition that runs MySQL 5.6, MySQL 5.7, or MySQL 8.0
|
|
29414
29510
|
*
|
|
29415
29511
|
* @param request - UpdateAutoThrottleRulesAsyncRequest
|
|
29416
29512
|
* @returns UpdateAutoThrottleRulesAsyncResponse
|