@alicloud/adb20211201 2.0.5 → 2.0.7
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 +452 -120
- package/dist/client.js +218 -43
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +598 -120
package/dist/client.d.ts
CHANGED
|
@@ -403,6 +403,124 @@ export declare class SparkAttemptInfo extends $tea.Model {
|
|
|
403
403
|
[key: string]: any;
|
|
404
404
|
});
|
|
405
405
|
}
|
|
406
|
+
export declare class SparkBatchSQL extends $tea.Model {
|
|
407
|
+
/**
|
|
408
|
+
* @example
|
|
409
|
+
* amv-xxx
|
|
410
|
+
*/
|
|
411
|
+
DBClusterId?: string;
|
|
412
|
+
/**
|
|
413
|
+
* @example
|
|
414
|
+
* schema is not found
|
|
415
|
+
*/
|
|
416
|
+
errMessage?: string;
|
|
417
|
+
/**
|
|
418
|
+
* @example
|
|
419
|
+
* query
|
|
420
|
+
*/
|
|
421
|
+
query?: string;
|
|
422
|
+
/**
|
|
423
|
+
* @example
|
|
424
|
+
* 1723521767000
|
|
425
|
+
*/
|
|
426
|
+
queryEndTime?: number;
|
|
427
|
+
/**
|
|
428
|
+
* @example
|
|
429
|
+
* amv-202401-xx
|
|
430
|
+
*/
|
|
431
|
+
queryId?: string;
|
|
432
|
+
/**
|
|
433
|
+
* @example
|
|
434
|
+
* 1723521767000
|
|
435
|
+
*/
|
|
436
|
+
queryStartTime?: number;
|
|
437
|
+
/**
|
|
438
|
+
* @example
|
|
439
|
+
* RUNNING
|
|
440
|
+
*/
|
|
441
|
+
queryState?: string;
|
|
442
|
+
/**
|
|
443
|
+
* @example
|
|
444
|
+
* 1723521767000
|
|
445
|
+
*/
|
|
446
|
+
querySubmissionTime?: number;
|
|
447
|
+
/**
|
|
448
|
+
* @example
|
|
449
|
+
* spark_rg
|
|
450
|
+
*/
|
|
451
|
+
resourceGroupName?: string;
|
|
452
|
+
/**
|
|
453
|
+
* @example
|
|
454
|
+
* default
|
|
455
|
+
*/
|
|
456
|
+
schema?: string;
|
|
457
|
+
statements?: SparkBatchSQLStatement[];
|
|
458
|
+
/**
|
|
459
|
+
* @example
|
|
460
|
+
* 12222222
|
|
461
|
+
*/
|
|
462
|
+
uid?: number;
|
|
463
|
+
static names(): {
|
|
464
|
+
[key: string]: string;
|
|
465
|
+
};
|
|
466
|
+
static types(): {
|
|
467
|
+
[key: string]: any;
|
|
468
|
+
};
|
|
469
|
+
constructor(map?: {
|
|
470
|
+
[key: string]: any;
|
|
471
|
+
});
|
|
472
|
+
}
|
|
473
|
+
export declare class SparkBatchSQLStatement extends $tea.Model {
|
|
474
|
+
/**
|
|
475
|
+
* @example
|
|
476
|
+
* SELECT 100
|
|
477
|
+
*/
|
|
478
|
+
code?: string;
|
|
479
|
+
/**
|
|
480
|
+
* @example
|
|
481
|
+
* 1723521767000
|
|
482
|
+
*/
|
|
483
|
+
endTime?: number;
|
|
484
|
+
/**
|
|
485
|
+
* @example
|
|
486
|
+
* table is not found
|
|
487
|
+
*/
|
|
488
|
+
error?: string;
|
|
489
|
+
/**
|
|
490
|
+
* @example
|
|
491
|
+
* JSON格式执行结果集
|
|
492
|
+
*/
|
|
493
|
+
result?: string;
|
|
494
|
+
/**
|
|
495
|
+
* @example
|
|
496
|
+
* oss://yourbucket/result.json
|
|
497
|
+
*/
|
|
498
|
+
resultUri?: string;
|
|
499
|
+
/**
|
|
500
|
+
* @example
|
|
501
|
+
* 1723521767000
|
|
502
|
+
*/
|
|
503
|
+
startTime?: number;
|
|
504
|
+
/**
|
|
505
|
+
* @example
|
|
506
|
+
* RUNNING
|
|
507
|
+
*/
|
|
508
|
+
state?: string;
|
|
509
|
+
/**
|
|
510
|
+
* @example
|
|
511
|
+
* amv-20240711-stmt
|
|
512
|
+
*/
|
|
513
|
+
statementId?: string;
|
|
514
|
+
static names(): {
|
|
515
|
+
[key: string]: string;
|
|
516
|
+
};
|
|
517
|
+
static types(): {
|
|
518
|
+
[key: string]: any;
|
|
519
|
+
};
|
|
520
|
+
constructor(map?: {
|
|
521
|
+
[key: string]: any;
|
|
522
|
+
});
|
|
523
|
+
}
|
|
406
524
|
export declare class SparkOperatorInfo extends $tea.Model {
|
|
407
525
|
metricValue?: number;
|
|
408
526
|
operatorName?: Buffer;
|
|
@@ -1229,7 +1347,17 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1229
1347
|
backupSetId?: string;
|
|
1230
1348
|
/**
|
|
1231
1349
|
* @remarks
|
|
1232
|
-
* The
|
|
1350
|
+
* The region ID of the source cluster.
|
|
1351
|
+
*
|
|
1352
|
+
* > This parameter must be specified for cloning clusters across regions.
|
|
1353
|
+
*
|
|
1354
|
+
* @example
|
|
1355
|
+
* cn-beijing
|
|
1356
|
+
*/
|
|
1357
|
+
cloneSourceRegionId?: string;
|
|
1358
|
+
/**
|
|
1359
|
+
* @remarks
|
|
1360
|
+
* The amount of reserved computing resources. Valid values: 0ACU to 4096ACU. The value must be in increments of 16ACU. Each ACU is approximately equal to 1 core and 4 GB memory.
|
|
1233
1361
|
*
|
|
1234
1362
|
* > This parameter must be specified with a unit.
|
|
1235
1363
|
*
|
|
@@ -1361,7 +1489,7 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1361
1489
|
sourceDbClusterId?: string;
|
|
1362
1490
|
/**
|
|
1363
1491
|
* @remarks
|
|
1364
|
-
* The amount of reserved storage resources.
|
|
1492
|
+
* The amount of reserved storage resources. Valid values: 0ACU to 2064ACU. The value must be in increments of 24ACU. Each ACU is approximately equal to 1 core and 4 GB memory.
|
|
1365
1493
|
*
|
|
1366
1494
|
* > This parameter must be specified with a unit.
|
|
1367
1495
|
*
|
|
@@ -1551,7 +1679,7 @@ export declare class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
1551
1679
|
* * **Interactive**
|
|
1552
1680
|
* * **Job**
|
|
1553
1681
|
*
|
|
1554
|
-
* >
|
|
1682
|
+
* > For more information about resource groups, see [Resource group overview](https://help.aliyun.com/document_detail/428610.html).
|
|
1555
1683
|
*
|
|
1556
1684
|
* This parameter is required.
|
|
1557
1685
|
*
|
|
@@ -1569,15 +1697,16 @@ export declare class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
1569
1697
|
maxClusterCount?: number;
|
|
1570
1698
|
/**
|
|
1571
1699
|
* @remarks
|
|
1572
|
-
* The maximum reserved computing resources.
|
|
1700
|
+
* The maximum reserved computing resources.
|
|
1573
1701
|
*
|
|
1574
|
-
* * If GroupType is set to Interactive, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of
|
|
1575
|
-
* * If GroupType is set to Job, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of
|
|
1702
|
+
* * If GroupType is set to Interactive, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of 16ACU.
|
|
1703
|
+
* * If GroupType is set to Job, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of 8ACU.
|
|
1576
1704
|
*
|
|
1577
1705
|
* @example
|
|
1578
|
-
*
|
|
1706
|
+
* 48ACU
|
|
1579
1707
|
*/
|
|
1580
1708
|
maxComputeResource?: string;
|
|
1709
|
+
maxGpuQuantity?: number;
|
|
1581
1710
|
/**
|
|
1582
1711
|
* @remarks
|
|
1583
1712
|
* A reserved parameter.
|
|
@@ -1588,15 +1717,16 @@ export declare class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
1588
1717
|
minClusterCount?: number;
|
|
1589
1718
|
/**
|
|
1590
1719
|
* @remarks
|
|
1591
|
-
* The minimum reserved computing resources.
|
|
1720
|
+
* The minimum reserved computing resources.
|
|
1592
1721
|
*
|
|
1593
|
-
* * When GroupType is set to Interactive, set this parameter to
|
|
1594
|
-
* * When GroupType is set to Job, set this parameter to
|
|
1722
|
+
* * When GroupType is set to Interactive, set this parameter to 16ACU.
|
|
1723
|
+
* * When GroupType is set to Job, set this parameter to 0ACU.
|
|
1595
1724
|
*
|
|
1596
1725
|
* @example
|
|
1597
|
-
*
|
|
1726
|
+
* 0ACU
|
|
1598
1727
|
*/
|
|
1599
1728
|
minComputeResource?: string;
|
|
1729
|
+
minGpuQuantity?: number;
|
|
1600
1730
|
/**
|
|
1601
1731
|
* @remarks
|
|
1602
1732
|
* The region ID of the cluster.
|
|
@@ -1612,6 +1742,8 @@ export declare class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
1612
1742
|
* The job resubmission rules.
|
|
1613
1743
|
*/
|
|
1614
1744
|
rules?: CreateDBResourceGroupRequestRules[];
|
|
1745
|
+
specName?: string;
|
|
1746
|
+
targetResourceGroupName?: string;
|
|
1615
1747
|
static names(): {
|
|
1616
1748
|
[key: string]: string;
|
|
1617
1749
|
};
|
|
@@ -1683,7 +1815,7 @@ export declare class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
1683
1815
|
* * **Interactive**
|
|
1684
1816
|
* * **Job**
|
|
1685
1817
|
*
|
|
1686
|
-
* >
|
|
1818
|
+
* > For more information about resource groups, see [Resource group overview](https://help.aliyun.com/document_detail/428610.html).
|
|
1687
1819
|
*
|
|
1688
1820
|
* This parameter is required.
|
|
1689
1821
|
*
|
|
@@ -1701,15 +1833,16 @@ export declare class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
1701
1833
|
maxClusterCount?: number;
|
|
1702
1834
|
/**
|
|
1703
1835
|
* @remarks
|
|
1704
|
-
* The maximum reserved computing resources.
|
|
1836
|
+
* The maximum reserved computing resources.
|
|
1705
1837
|
*
|
|
1706
|
-
* * If GroupType is set to Interactive, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of
|
|
1707
|
-
* * If GroupType is set to Job, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of
|
|
1838
|
+
* * If GroupType is set to Interactive, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of 16ACU.
|
|
1839
|
+
* * If GroupType is set to Job, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of 8ACU.
|
|
1708
1840
|
*
|
|
1709
1841
|
* @example
|
|
1710
|
-
*
|
|
1842
|
+
* 48ACU
|
|
1711
1843
|
*/
|
|
1712
1844
|
maxComputeResource?: string;
|
|
1845
|
+
maxGpuQuantity?: number;
|
|
1713
1846
|
/**
|
|
1714
1847
|
* @remarks
|
|
1715
1848
|
* A reserved parameter.
|
|
@@ -1720,15 +1853,16 @@ export declare class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
1720
1853
|
minClusterCount?: number;
|
|
1721
1854
|
/**
|
|
1722
1855
|
* @remarks
|
|
1723
|
-
* The minimum reserved computing resources.
|
|
1856
|
+
* The minimum reserved computing resources.
|
|
1724
1857
|
*
|
|
1725
|
-
* * When GroupType is set to Interactive, set this parameter to
|
|
1726
|
-
* * When GroupType is set to Job, set this parameter to
|
|
1858
|
+
* * When GroupType is set to Interactive, set this parameter to 16ACU.
|
|
1859
|
+
* * When GroupType is set to Job, set this parameter to 0ACU.
|
|
1727
1860
|
*
|
|
1728
1861
|
* @example
|
|
1729
|
-
*
|
|
1862
|
+
* 0ACU
|
|
1730
1863
|
*/
|
|
1731
1864
|
minComputeResource?: string;
|
|
1865
|
+
minGpuQuantity?: number;
|
|
1732
1866
|
/**
|
|
1733
1867
|
* @remarks
|
|
1734
1868
|
* The region ID of the cluster.
|
|
@@ -1744,6 +1878,8 @@ export declare class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
1744
1878
|
* The job resubmission rules.
|
|
1745
1879
|
*/
|
|
1746
1880
|
rulesShrink?: string;
|
|
1881
|
+
specName?: string;
|
|
1882
|
+
targetResourceGroupName?: string;
|
|
1747
1883
|
static names(): {
|
|
1748
1884
|
[key: string]: string;
|
|
1749
1885
|
};
|
|
@@ -2063,6 +2199,9 @@ export declare class CreateOssSubDirectoryResponse extends $tea.Model {
|
|
|
2063
2199
|
}
|
|
2064
2200
|
export declare class CreatePerformanceViewRequest extends $tea.Model {
|
|
2065
2201
|
/**
|
|
2202
|
+
* @remarks
|
|
2203
|
+
* The type of the view.
|
|
2204
|
+
*
|
|
2066
2205
|
* @example
|
|
2067
2206
|
* Basic
|
|
2068
2207
|
*/
|
|
@@ -2115,7 +2254,12 @@ export declare class CreatePerformanceViewRequest extends $tea.Model {
|
|
|
2115
2254
|
viewDetail?: CreatePerformanceViewRequestViewDetail;
|
|
2116
2255
|
/**
|
|
2117
2256
|
* @remarks
|
|
2257
|
+
* The name of the view.
|
|
2258
|
+
*
|
|
2118
2259
|
* This parameter is required.
|
|
2260
|
+
*
|
|
2261
|
+
* @example
|
|
2262
|
+
* viewname
|
|
2119
2263
|
*/
|
|
2120
2264
|
viewName?: string;
|
|
2121
2265
|
static names(): {
|
|
@@ -2130,6 +2274,9 @@ export declare class CreatePerformanceViewRequest extends $tea.Model {
|
|
|
2130
2274
|
}
|
|
2131
2275
|
export declare class CreatePerformanceViewShrinkRequest extends $tea.Model {
|
|
2132
2276
|
/**
|
|
2277
|
+
* @remarks
|
|
2278
|
+
* The type of the view.
|
|
2279
|
+
*
|
|
2133
2280
|
* @example
|
|
2134
2281
|
* Basic
|
|
2135
2282
|
*/
|
|
@@ -2182,7 +2329,12 @@ export declare class CreatePerformanceViewShrinkRequest extends $tea.Model {
|
|
|
2182
2329
|
viewDetailShrink?: string;
|
|
2183
2330
|
/**
|
|
2184
2331
|
* @remarks
|
|
2332
|
+
* The name of the view.
|
|
2333
|
+
*
|
|
2185
2334
|
* This parameter is required.
|
|
2335
|
+
*
|
|
2336
|
+
* @example
|
|
2337
|
+
* viewname
|
|
2186
2338
|
*/
|
|
2187
2339
|
viewName?: string;
|
|
2188
2340
|
static names(): {
|
|
@@ -2197,6 +2349,11 @@ export declare class CreatePerformanceViewShrinkRequest extends $tea.Model {
|
|
|
2197
2349
|
}
|
|
2198
2350
|
export declare class CreatePerformanceViewResponseBody extends $tea.Model {
|
|
2199
2351
|
/**
|
|
2352
|
+
* @remarks
|
|
2353
|
+
* The details about the access denial.
|
|
2354
|
+
*
|
|
2355
|
+
* > This parameter is returned only if Resource Access Management (RAM) permission verification failed.
|
|
2356
|
+
*
|
|
2200
2357
|
* @example
|
|
2201
2358
|
* {
|
|
2202
2359
|
* "PolicyType": "AccountLevelIdentityBasedPolicy",
|
|
@@ -2221,6 +2378,9 @@ export declare class CreatePerformanceViewResponseBody extends $tea.Model {
|
|
|
2221
2378
|
*/
|
|
2222
2379
|
createStatus?: string;
|
|
2223
2380
|
/**
|
|
2381
|
+
* @remarks
|
|
2382
|
+
* The request ID.
|
|
2383
|
+
*
|
|
2224
2384
|
* @example
|
|
2225
2385
|
* E031AABF-BD56-5966-A063-4283EF18DB45
|
|
2226
2386
|
*/
|
|
@@ -2675,7 +2835,12 @@ export declare class DeletePerformanceViewRequest extends $tea.Model {
|
|
|
2675
2835
|
resourceOwnerId?: number;
|
|
2676
2836
|
/**
|
|
2677
2837
|
* @remarks
|
|
2838
|
+
* The name of the view.
|
|
2839
|
+
*
|
|
2678
2840
|
* This parameter is required.
|
|
2841
|
+
*
|
|
2842
|
+
* @example
|
|
2843
|
+
* view_dwd_plan_double_term
|
|
2679
2844
|
*/
|
|
2680
2845
|
viewName?: string;
|
|
2681
2846
|
static names(): {
|
|
@@ -2708,11 +2873,17 @@ export declare class DeletePerformanceViewResponseBody extends $tea.Model {
|
|
|
2708
2873
|
*/
|
|
2709
2874
|
accessDeniedDetail?: string;
|
|
2710
2875
|
/**
|
|
2876
|
+
* @remarks
|
|
2877
|
+
* The delete status.
|
|
2878
|
+
*
|
|
2711
2879
|
* @example
|
|
2712
2880
|
* SUCCESS
|
|
2713
2881
|
*/
|
|
2714
2882
|
deleteStatus?: boolean;
|
|
2715
2883
|
/**
|
|
2884
|
+
* @remarks
|
|
2885
|
+
* The request ID.
|
|
2886
|
+
*
|
|
2716
2887
|
* @example
|
|
2717
2888
|
* 1AD222E9-E606-4A42-BF6D-8A4442913CEF
|
|
2718
2889
|
*/
|
|
@@ -2944,7 +3115,7 @@ export declare class DeleteSparkTemplateResponse extends $tea.Model {
|
|
|
2944
3115
|
export declare class DeleteSparkTemplateFileRequest extends $tea.Model {
|
|
2945
3116
|
/**
|
|
2946
3117
|
* @remarks
|
|
2947
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
3118
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
2948
3119
|
*
|
|
2949
3120
|
* This parameter is required.
|
|
2950
3121
|
*
|
|
@@ -3422,7 +3593,7 @@ export declare class DescribeAccountsRequest extends $tea.Model {
|
|
|
3422
3593
|
accountName?: string;
|
|
3423
3594
|
/**
|
|
3424
3595
|
* @remarks
|
|
3425
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
3596
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
3426
3597
|
*
|
|
3427
3598
|
* This parameter is required.
|
|
3428
3599
|
*
|
|
@@ -3495,9 +3666,9 @@ export declare class DescribeAccountsResponse extends $tea.Model {
|
|
|
3495
3666
|
export declare class DescribeAdbMySqlColumnsRequest extends $tea.Model {
|
|
3496
3667
|
/**
|
|
3497
3668
|
* @remarks
|
|
3498
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
3669
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
3499
3670
|
*
|
|
3500
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/454250.html) operation to query the IDs of all AnalyticDB for MySQL
|
|
3671
|
+
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/454250.html) operation to query the IDs of all AnalyticDB for MySQL clusters within a region.
|
|
3501
3672
|
*
|
|
3502
3673
|
* This parameter is required.
|
|
3503
3674
|
*
|
|
@@ -3507,7 +3678,7 @@ export declare class DescribeAdbMySqlColumnsRequest extends $tea.Model {
|
|
|
3507
3678
|
DBClusterId?: string;
|
|
3508
3679
|
/**
|
|
3509
3680
|
* @remarks
|
|
3510
|
-
* The region ID
|
|
3681
|
+
* The region ID.
|
|
3511
3682
|
*
|
|
3512
3683
|
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/454314.html) operation to query the most recent region list.
|
|
3513
3684
|
*
|
|
@@ -3632,7 +3803,7 @@ export declare class DescribeAdbMySqlColumnsResponse extends $tea.Model {
|
|
|
3632
3803
|
export declare class DescribeAdbMySqlSchemasRequest extends $tea.Model {
|
|
3633
3804
|
/**
|
|
3634
3805
|
* @remarks
|
|
3635
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
3806
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
3636
3807
|
*
|
|
3637
3808
|
* This parameter is required.
|
|
3638
3809
|
*
|
|
@@ -3642,7 +3813,7 @@ export declare class DescribeAdbMySqlSchemasRequest extends $tea.Model {
|
|
|
3642
3813
|
DBClusterId?: string;
|
|
3643
3814
|
/**
|
|
3644
3815
|
* @remarks
|
|
3645
|
-
* The region ID
|
|
3816
|
+
* The region ID.
|
|
3646
3817
|
*
|
|
3647
3818
|
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/454314.html) operation to query the most recent region list.
|
|
3648
3819
|
*
|
|
@@ -3727,7 +3898,7 @@ export declare class DescribeAdbMySqlSchemasResponse extends $tea.Model {
|
|
|
3727
3898
|
export declare class DescribeAdbMySqlTablesRequest extends $tea.Model {
|
|
3728
3899
|
/**
|
|
3729
3900
|
* @remarks
|
|
3730
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
3901
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
3731
3902
|
*
|
|
3732
3903
|
* This parameter is required.
|
|
3733
3904
|
*
|
|
@@ -3737,7 +3908,7 @@ export declare class DescribeAdbMySqlTablesRequest extends $tea.Model {
|
|
|
3737
3908
|
DBClusterId?: string;
|
|
3738
3909
|
/**
|
|
3739
3910
|
* @remarks
|
|
3740
|
-
* The region ID
|
|
3911
|
+
* The region ID.
|
|
3741
3912
|
*
|
|
3742
3913
|
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/454314.html) operation to query the most recent region list.
|
|
3743
3914
|
*
|
|
@@ -3950,7 +4121,7 @@ export declare class DescribeApsActionLogsRequest extends $tea.Model {
|
|
|
3950
4121
|
DBClusterId?: string;
|
|
3951
4122
|
/**
|
|
3952
4123
|
* @remarks
|
|
3953
|
-
* The end time of the logs to be queried. Specify the time in the ISO 8601 standard in the **yyyy-MM-ddTHH:
|
|
4124
|
+
* The end time of the logs to be queried. Specify the time in the ISO 8601 standard in the **yyyy-MM-ddTHH:mmZ** format. The time must be in UTC.
|
|
3954
4125
|
*
|
|
3955
4126
|
* > The end time must be later than the start time. The maximum time range that can be specified is 30 days.
|
|
3956
4127
|
*
|
|
@@ -4020,7 +4191,7 @@ export declare class DescribeApsActionLogsRequest extends $tea.Model {
|
|
|
4020
4191
|
stage?: string;
|
|
4021
4192
|
/**
|
|
4022
4193
|
* @remarks
|
|
4023
|
-
* The start time of the logs to be queried. Specify the time in the ISO 8601 standard in the **yyyy-MM-ddTHH:
|
|
4194
|
+
* The start time of the logs to be queried. Specify the time in the ISO 8601 standard in the **yyyy-MM-ddTHH:mmZ** format. The time must be in UTC.
|
|
4024
4195
|
*
|
|
4025
4196
|
* This parameter is required.
|
|
4026
4197
|
*
|
|
@@ -4589,7 +4760,7 @@ export declare class DescribeBackupPolicyResponseBody extends $tea.Model {
|
|
|
4589
4760
|
logBackupRetentionPeriod?: number;
|
|
4590
4761
|
/**
|
|
4591
4762
|
* @remarks
|
|
4592
|
-
* The cycle based on which backups are performed. If more than one day of the week
|
|
4763
|
+
* The cycle based on which backups are performed. If more than one day of the week is specified, the days of the week are separated by commas (,). Valid value:
|
|
4593
4764
|
*
|
|
4594
4765
|
* * Monday
|
|
4595
4766
|
* * Tuesday
|
|
@@ -4723,6 +4894,7 @@ export declare class DescribeBackupsRequest extends $tea.Model {
|
|
|
4723
4894
|
});
|
|
4724
4895
|
}
|
|
4725
4896
|
export declare class DescribeBackupsResponseBody extends $tea.Model {
|
|
4897
|
+
freeBackupSize?: number;
|
|
4726
4898
|
/**
|
|
4727
4899
|
* @remarks
|
|
4728
4900
|
* The queried backup sets.
|
|
@@ -4752,6 +4924,7 @@ export declare class DescribeBackupsResponseBody extends $tea.Model {
|
|
|
4752
4924
|
* CE17270B-F8F8-5A31-9DB4-DADDFDAD7940
|
|
4753
4925
|
*/
|
|
4754
4926
|
requestId?: string;
|
|
4927
|
+
totalBackupSize?: number;
|
|
4755
4928
|
/**
|
|
4756
4929
|
* @remarks
|
|
4757
4930
|
* The total number of entries returned.
|
|
@@ -4789,7 +4962,7 @@ export declare class DescribeBackupsResponse extends $tea.Model {
|
|
|
4789
4962
|
export declare class DescribeClusterAccessWhiteListRequest extends $tea.Model {
|
|
4790
4963
|
/**
|
|
4791
4964
|
* @remarks
|
|
4792
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
4965
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
4793
4966
|
*
|
|
4794
4967
|
* This parameter is required.
|
|
4795
4968
|
*
|
|
@@ -4797,6 +4970,7 @@ export declare class DescribeClusterAccessWhiteListRequest extends $tea.Model {
|
|
|
4797
4970
|
* amv-bp11q28kvl688****
|
|
4798
4971
|
*/
|
|
4799
4972
|
DBClusterId?: string;
|
|
4973
|
+
regionId?: string;
|
|
4800
4974
|
resourceOwnerAccount?: string;
|
|
4801
4975
|
static names(): {
|
|
4802
4976
|
[key: string]: string;
|
|
@@ -4964,7 +5138,7 @@ export declare class DescribeClusterResourceDetailResponseBody extends $tea.Mode
|
|
|
4964
5138
|
code?: number;
|
|
4965
5139
|
/**
|
|
4966
5140
|
* @remarks
|
|
4967
|
-
* The
|
|
5141
|
+
* The queried resource usage.
|
|
4968
5142
|
*/
|
|
4969
5143
|
data?: DescribeClusterResourceDetailResponseBodyData;
|
|
4970
5144
|
/**
|
|
@@ -5924,7 +6098,7 @@ export declare class DescribeDBClustersResponse extends $tea.Model {
|
|
|
5924
6098
|
export declare class DescribeDBResourceGroupRequest extends $tea.Model {
|
|
5925
6099
|
/**
|
|
5926
6100
|
* @remarks
|
|
5927
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
6101
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
5928
6102
|
*
|
|
5929
6103
|
* This parameter is required.
|
|
5930
6104
|
*
|
|
@@ -5949,7 +6123,7 @@ export declare class DescribeDBResourceGroupRequest extends $tea.Model {
|
|
|
5949
6123
|
* * **Interactive**
|
|
5950
6124
|
* * **Job**
|
|
5951
6125
|
*
|
|
5952
|
-
* >
|
|
6126
|
+
* > For more information about resource groups, see [Resource group overview](https://help.aliyun.com/document_detail/428610.html).
|
|
5953
6127
|
*
|
|
5954
6128
|
* @example
|
|
5955
6129
|
* Job
|
|
@@ -5979,7 +6153,7 @@ export declare class DescribeDBResourceGroupRequest extends $tea.Model {
|
|
|
5979
6153
|
export declare class DescribeDBResourceGroupResponseBody extends $tea.Model {
|
|
5980
6154
|
/**
|
|
5981
6155
|
* @remarks
|
|
5982
|
-
* The queried resource
|
|
6156
|
+
* The queried resource groups.
|
|
5983
6157
|
*/
|
|
5984
6158
|
groupsInfo?: DescribeDBResourceGroupResponseBodyGroupsInfo[];
|
|
5985
6159
|
/**
|
|
@@ -7038,8 +7212,8 @@ export declare class DescribeElasticPlansRequest extends $tea.Model {
|
|
|
7038
7212
|
* @remarks
|
|
7039
7213
|
* Specifies whether to query the scaling plans that are immediately enabled after the plans are created. Valid values:
|
|
7040
7214
|
*
|
|
7041
|
-
* * true
|
|
7042
|
-
* * false
|
|
7215
|
+
* * **true**
|
|
7216
|
+
* * **false**
|
|
7043
7217
|
*
|
|
7044
7218
|
* @example
|
|
7045
7219
|
* true
|
|
@@ -7080,7 +7254,8 @@ export declare class DescribeElasticPlansRequest extends $tea.Model {
|
|
|
7080
7254
|
* @remarks
|
|
7081
7255
|
* The type of the scaling plan. Valid values:
|
|
7082
7256
|
*
|
|
7083
|
-
* EXECUTOR
|
|
7257
|
+
* * **EXECUTOR**: the interactive resource group type, which specifies the computing resource type.
|
|
7258
|
+
* * **WORKER**: the EIU type.
|
|
7084
7259
|
*
|
|
7085
7260
|
* @example
|
|
7086
7261
|
* EXECUTOR
|
|
@@ -7695,7 +7870,12 @@ export declare class DescribePerformanceViewAttributeRequest extends $tea.Model
|
|
|
7695
7870
|
resourceOwnerId?: number;
|
|
7696
7871
|
/**
|
|
7697
7872
|
* @remarks
|
|
7873
|
+
* The name of the view.
|
|
7874
|
+
*
|
|
7698
7875
|
* This parameter is required.
|
|
7876
|
+
*
|
|
7877
|
+
* @example
|
|
7878
|
+
* Basic
|
|
7699
7879
|
*/
|
|
7700
7880
|
viewName?: string;
|
|
7701
7881
|
static names(): {
|
|
@@ -7710,6 +7890,11 @@ export declare class DescribePerformanceViewAttributeRequest extends $tea.Model
|
|
|
7710
7890
|
}
|
|
7711
7891
|
export declare class DescribePerformanceViewAttributeResponseBody extends $tea.Model {
|
|
7712
7892
|
/**
|
|
7893
|
+
* @remarks
|
|
7894
|
+
* The details about the access denial.
|
|
7895
|
+
*
|
|
7896
|
+
* > This parameter is returned only if Resource Access Management (RAM) permission verification failed.
|
|
7897
|
+
*
|
|
7713
7898
|
* @example
|
|
7714
7899
|
* {
|
|
7715
7900
|
* "PolicyType": "AccountLevelIdentityBasedPolicy",
|
|
@@ -7723,26 +7908,54 @@ export declare class DescribePerformanceViewAttributeResponseBody extends $tea.M
|
|
|
7723
7908
|
*/
|
|
7724
7909
|
accessDeniedDetail?: string;
|
|
7725
7910
|
/**
|
|
7911
|
+
* @remarks
|
|
7912
|
+
* The type of the view.
|
|
7913
|
+
*
|
|
7726
7914
|
* @example
|
|
7727
7915
|
* Basic
|
|
7728
7916
|
*/
|
|
7729
7917
|
createFromViewType?: string;
|
|
7730
7918
|
/**
|
|
7919
|
+
* @remarks
|
|
7920
|
+
* The cluster ID.
|
|
7921
|
+
*
|
|
7922
|
+
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/129857.html) operation to query the information about all AnalyticDB for MySQL clusters within a region, including cluster IDs.
|
|
7923
|
+
*
|
|
7731
7924
|
* @example
|
|
7732
7925
|
* amv-bp198m028ih55xxxx
|
|
7733
7926
|
*/
|
|
7734
7927
|
DBClusterId?: string;
|
|
7735
7928
|
/**
|
|
7929
|
+
* @remarks
|
|
7930
|
+
* Specifies whether to populate the names of the metrics in the original monitoring view when you view the monitoring view. Valid values:
|
|
7931
|
+
*
|
|
7932
|
+
* * **true**
|
|
7933
|
+
* * **false**
|
|
7934
|
+
*
|
|
7736
7935
|
* @example
|
|
7737
7936
|
* true
|
|
7738
7937
|
*/
|
|
7739
7938
|
fillOriginViewKeys?: boolean;
|
|
7740
7939
|
/**
|
|
7940
|
+
* @remarks
|
|
7941
|
+
* The request ID.
|
|
7942
|
+
*
|
|
7741
7943
|
* @example
|
|
7742
7944
|
* E031AABF-BD56-5966-A063-4283EF18DB45
|
|
7743
7945
|
*/
|
|
7744
7946
|
requestId?: string;
|
|
7947
|
+
/**
|
|
7948
|
+
* @remarks
|
|
7949
|
+
* The information about the monitoring view.
|
|
7950
|
+
*/
|
|
7745
7951
|
viewDetail?: DescribePerformanceViewAttributeResponseBodyViewDetail;
|
|
7952
|
+
/**
|
|
7953
|
+
* @remarks
|
|
7954
|
+
* The name of the view.
|
|
7955
|
+
*
|
|
7956
|
+
* @example
|
|
7957
|
+
* Basic
|
|
7958
|
+
*/
|
|
7746
7959
|
viewName?: string;
|
|
7747
7960
|
static names(): {
|
|
7748
7961
|
[key: string]: string;
|
|
@@ -7811,6 +8024,11 @@ export declare class DescribePerformanceViewsRequest extends $tea.Model {
|
|
|
7811
8024
|
}
|
|
7812
8025
|
export declare class DescribePerformanceViewsResponseBody extends $tea.Model {
|
|
7813
8026
|
/**
|
|
8027
|
+
* @remarks
|
|
8028
|
+
* The details about the access denial.
|
|
8029
|
+
*
|
|
8030
|
+
* > This parameter is returned only if Resource Access Management (RAM) permission verification failed.
|
|
8031
|
+
*
|
|
7814
8032
|
* @example
|
|
7815
8033
|
* {
|
|
7816
8034
|
* "PolicyType": "AccountLevelIdentityBasedPolicy",
|
|
@@ -7824,10 +8042,17 @@ export declare class DescribePerformanceViewsResponseBody extends $tea.Model {
|
|
|
7824
8042
|
*/
|
|
7825
8043
|
accessDeniedDetail?: string;
|
|
7826
8044
|
/**
|
|
8045
|
+
* @remarks
|
|
8046
|
+
* The request ID.
|
|
8047
|
+
*
|
|
7827
8048
|
* @example
|
|
7828
8049
|
* 3A8F6106-6AFD-5A34-9C80-8DE2C42D06E8
|
|
7829
8050
|
*/
|
|
7830
8051
|
requestId?: string;
|
|
8052
|
+
/**
|
|
8053
|
+
* @remarks
|
|
8054
|
+
* the list of view.
|
|
8055
|
+
*/
|
|
7831
8056
|
views?: DescribePerformanceViewsResponseBodyViews[];
|
|
7832
8057
|
static names(): {
|
|
7833
8058
|
[key: string]: string;
|
|
@@ -8066,7 +8291,7 @@ export declare class DescribeSQLPatternsResponseBody extends $tea.Model {
|
|
|
8066
8291
|
pageSize?: number;
|
|
8067
8292
|
/**
|
|
8068
8293
|
* @remarks
|
|
8069
|
-
* The queried SQL
|
|
8294
|
+
* The queried SQL patterns.
|
|
8070
8295
|
*/
|
|
8071
8296
|
patternDetails?: DescribeSQLPatternsResponseBodyPatternDetails[];
|
|
8072
8297
|
/**
|
|
@@ -8114,7 +8339,7 @@ export declare class DescribeSQLPatternsResponse extends $tea.Model {
|
|
|
8114
8339
|
export declare class DescribeSchemasRequest extends $tea.Model {
|
|
8115
8340
|
/**
|
|
8116
8341
|
* @remarks
|
|
8117
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
8342
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
8118
8343
|
*
|
|
8119
8344
|
* This parameter is required.
|
|
8120
8345
|
*
|
|
@@ -8185,9 +8410,9 @@ export declare class DescribeSchemasResponse extends $tea.Model {
|
|
|
8185
8410
|
export declare class DescribeSparkCodeLogRequest extends $tea.Model {
|
|
8186
8411
|
/**
|
|
8187
8412
|
* @remarks
|
|
8188
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
8413
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
8189
8414
|
*
|
|
8190
|
-
* >
|
|
8415
|
+
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/454250.html) operation to query the IDs of all AnalyticDB for MySQL clusters within a region.
|
|
8191
8416
|
*
|
|
8192
8417
|
* This parameter is required.
|
|
8193
8418
|
*
|
|
@@ -8944,7 +9169,7 @@ export declare class DescribeTableAccessCountResponse extends $tea.Model {
|
|
|
8944
9169
|
export declare class DescribeTablesRequest extends $tea.Model {
|
|
8945
9170
|
/**
|
|
8946
9171
|
* @remarks
|
|
8947
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
9172
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
8948
9173
|
*
|
|
8949
9174
|
* This parameter is required.
|
|
8950
9175
|
*
|
|
@@ -9854,9 +10079,9 @@ export declare class GetSparkAppInfoRequest extends $tea.Model {
|
|
|
9854
10079
|
appId?: string;
|
|
9855
10080
|
/**
|
|
9856
10081
|
* @remarks
|
|
9857
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
10082
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
9858
10083
|
*
|
|
9859
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/612397.html) operation to query the IDs of all AnalyticDB for MySQL
|
|
10084
|
+
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/612397.html) operation to query the IDs of all AnalyticDB for MySQL clusters within a region.
|
|
9860
10085
|
*
|
|
9861
10086
|
* @example
|
|
9862
10087
|
* am-bp11q28kvl688****
|
|
@@ -10687,7 +10912,7 @@ export declare class GetSparkTemplateFolderTreeResponse extends $tea.Model {
|
|
|
10687
10912
|
export declare class GetSparkTemplateFullTreeRequest extends $tea.Model {
|
|
10688
10913
|
/**
|
|
10689
10914
|
* @remarks
|
|
10690
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
10915
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
10691
10916
|
*
|
|
10692
10917
|
* This parameter is required.
|
|
10693
10918
|
*
|
|
@@ -12084,7 +12309,7 @@ export declare class ListSparkLogAnalyzeTasksResponse extends $tea.Model {
|
|
|
12084
12309
|
export declare class ListSparkTemplateFileIdsRequest extends $tea.Model {
|
|
12085
12310
|
/**
|
|
12086
12311
|
* @remarks
|
|
12087
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
12312
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
12088
12313
|
*
|
|
12089
12314
|
* @example
|
|
12090
12315
|
* amv-bp11q28kvl688****
|
|
@@ -12447,9 +12672,9 @@ export declare class ModifyAuditLogConfigRequest extends $tea.Model {
|
|
|
12447
12672
|
auditLogStatus?: string;
|
|
12448
12673
|
/**
|
|
12449
12674
|
* @remarks
|
|
12450
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
12675
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
12451
12676
|
*
|
|
12452
|
-
* >
|
|
12677
|
+
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/454250.html) operation to query the IDs of all AnalyticDB for MySQL clusters within a region.
|
|
12453
12678
|
*
|
|
12454
12679
|
* This parameter is required.
|
|
12455
12680
|
*
|
|
@@ -12462,9 +12687,9 @@ export declare class ModifyAuditLogConfigRequest extends $tea.Model {
|
|
|
12462
12687
|
ownerId?: number;
|
|
12463
12688
|
/**
|
|
12464
12689
|
* @remarks
|
|
12465
|
-
* The region ID.
|
|
12690
|
+
* The region ID of the cluster.
|
|
12466
12691
|
*
|
|
12467
|
-
* >
|
|
12692
|
+
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/454314.html) operation to query the most recent region list.
|
|
12468
12693
|
*
|
|
12469
12694
|
* This parameter is required.
|
|
12470
12695
|
*
|
|
@@ -12590,8 +12815,6 @@ export declare class ModifyBackupPolicyRequest extends $tea.Model {
|
|
|
12590
12815
|
*
|
|
12591
12816
|
* > To ensure data security, we recommend that you specify at least two values.
|
|
12592
12817
|
*
|
|
12593
|
-
* This parameter is required.
|
|
12594
|
-
*
|
|
12595
12818
|
* @example
|
|
12596
12819
|
* Monday,Wednesday,Friday,Sunday
|
|
12597
12820
|
*/
|
|
@@ -12863,7 +13086,7 @@ export declare class ModifyClusterConnectionStringResponse extends $tea.Model {
|
|
|
12863
13086
|
export declare class ModifyDBClusterRequest extends $tea.Model {
|
|
12864
13087
|
/**
|
|
12865
13088
|
* @remarks
|
|
12866
|
-
* The reserved computing resources.
|
|
13089
|
+
* The reserved computing resources. Valid values: 0ACU to 4096ACU. The value must be in increments of 16ACU. Each ACU is approximately equal to 1 core and 4 GB memory.
|
|
12867
13090
|
*
|
|
12868
13091
|
* > This parameter must be specified with a unit.
|
|
12869
13092
|
*
|
|
@@ -12873,9 +13096,9 @@ export declare class ModifyDBClusterRequest extends $tea.Model {
|
|
|
12873
13096
|
computeResource?: string;
|
|
12874
13097
|
/**
|
|
12875
13098
|
* @remarks
|
|
12876
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
13099
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
12877
13100
|
*
|
|
12878
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/454250.html) operation to query the IDs of all AnalyticDB for MySQL Data Lakehouse Edition
|
|
13101
|
+
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/454250.html) operation to query the IDs of all AnalyticDB for MySQL Data Lakehouse Edition clusters within a region.
|
|
12879
13102
|
*
|
|
12880
13103
|
* This parameter is required.
|
|
12881
13104
|
*
|
|
@@ -12896,6 +13119,11 @@ export declare class ModifyDBClusterRequest extends $tea.Model {
|
|
|
12896
13119
|
enableDefaultResourcePool?: boolean;
|
|
12897
13120
|
ownerAccount?: string;
|
|
12898
13121
|
ownerId?: number;
|
|
13122
|
+
/**
|
|
13123
|
+
* @example
|
|
13124
|
+
* LegacyForm
|
|
13125
|
+
*/
|
|
13126
|
+
productForm?: string;
|
|
12899
13127
|
/**
|
|
12900
13128
|
* @remarks
|
|
12901
13129
|
* The region ID of the cluster.
|
|
@@ -12907,11 +13135,15 @@ export declare class ModifyDBClusterRequest extends $tea.Model {
|
|
|
12907
13135
|
*/
|
|
12908
13136
|
regionId?: string;
|
|
12909
13137
|
reservedNodeCount?: number;
|
|
13138
|
+
/**
|
|
13139
|
+
* @example
|
|
13140
|
+
* LegacyForm
|
|
13141
|
+
*/
|
|
12910
13142
|
reservedNodeSize?: string;
|
|
12911
13143
|
resourceOwnerAccount?: string;
|
|
12912
13144
|
/**
|
|
12913
13145
|
* @remarks
|
|
12914
|
-
* The reserved storage resources.
|
|
13146
|
+
* The reserved storage resources. Valid values: 0ACU to 2064ACU. The value must be in increments of 24ACU. Each ACU is approximately equal to 1 core and 4 GB memory.
|
|
12915
13147
|
*
|
|
12916
13148
|
* > This parameter must be specified with a unit.
|
|
12917
13149
|
*
|
|
@@ -12932,7 +13164,7 @@ export declare class ModifyDBClusterRequest extends $tea.Model {
|
|
|
12932
13164
|
export declare class ModifyDBClusterResponseBody extends $tea.Model {
|
|
12933
13165
|
/**
|
|
12934
13166
|
* @remarks
|
|
12935
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
13167
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
12936
13168
|
*
|
|
12937
13169
|
* @example
|
|
12938
13170
|
* amv-bp1r053byu48p****
|
|
@@ -13195,15 +13427,16 @@ export declare class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
13195
13427
|
maxClusterCount?: number;
|
|
13196
13428
|
/**
|
|
13197
13429
|
* @remarks
|
|
13198
|
-
* The maximum amount of reserved computing resources.
|
|
13430
|
+
* The maximum amount of reserved computing resources.
|
|
13199
13431
|
*
|
|
13200
|
-
* * If GroupType is set to Interactive, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of
|
|
13201
|
-
* * If GroupType is set to Job, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of
|
|
13432
|
+
* * If GroupType is set to Interactive, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of 16ACU.
|
|
13433
|
+
* * If GroupType is set to Job, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of 8ACU.
|
|
13202
13434
|
*
|
|
13203
13435
|
* @example
|
|
13204
13436
|
* 48ACU
|
|
13205
13437
|
*/
|
|
13206
13438
|
maxComputeResource?: string;
|
|
13439
|
+
maxGpuQuantity?: number;
|
|
13207
13440
|
/**
|
|
13208
13441
|
* @remarks
|
|
13209
13442
|
* A reserved parameter.
|
|
@@ -13214,7 +13447,7 @@ export declare class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
13214
13447
|
minClusterCount?: number;
|
|
13215
13448
|
/**
|
|
13216
13449
|
* @remarks
|
|
13217
|
-
* The minimum amount of reserved computing resources.
|
|
13450
|
+
* The minimum amount of reserved computing resources.
|
|
13218
13451
|
*
|
|
13219
13452
|
* * If the GroupType parameter is set to Interactive, set the value to 16ACU.
|
|
13220
13453
|
* * If GroupType is set to Job, set the value to 0ACU.
|
|
@@ -13223,6 +13456,7 @@ export declare class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
13223
13456
|
* 0ACU
|
|
13224
13457
|
*/
|
|
13225
13458
|
minComputeResource?: string;
|
|
13459
|
+
minGpuQuantity?: number;
|
|
13226
13460
|
/**
|
|
13227
13461
|
* @remarks
|
|
13228
13462
|
* The region ID of the cluster.
|
|
@@ -13238,6 +13472,8 @@ export declare class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
13238
13472
|
* The job resubmission rules.
|
|
13239
13473
|
*/
|
|
13240
13474
|
rules?: ModifyDBResourceGroupRequestRules[];
|
|
13475
|
+
specName?: string;
|
|
13476
|
+
targetResourceGroupName?: string;
|
|
13241
13477
|
static names(): {
|
|
13242
13478
|
[key: string]: string;
|
|
13243
13479
|
};
|
|
@@ -13324,15 +13560,16 @@ export declare class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
13324
13560
|
maxClusterCount?: number;
|
|
13325
13561
|
/**
|
|
13326
13562
|
* @remarks
|
|
13327
|
-
* The maximum amount of reserved computing resources.
|
|
13563
|
+
* The maximum amount of reserved computing resources.
|
|
13328
13564
|
*
|
|
13329
|
-
* * If GroupType is set to Interactive, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of
|
|
13330
|
-
* * If GroupType is set to Job, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of
|
|
13565
|
+
* * If GroupType is set to Interactive, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of 16ACU.
|
|
13566
|
+
* * If GroupType is set to Job, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of 8ACU.
|
|
13331
13567
|
*
|
|
13332
13568
|
* @example
|
|
13333
13569
|
* 48ACU
|
|
13334
13570
|
*/
|
|
13335
13571
|
maxComputeResource?: string;
|
|
13572
|
+
maxGpuQuantity?: number;
|
|
13336
13573
|
/**
|
|
13337
13574
|
* @remarks
|
|
13338
13575
|
* A reserved parameter.
|
|
@@ -13343,7 +13580,7 @@ export declare class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
13343
13580
|
minClusterCount?: number;
|
|
13344
13581
|
/**
|
|
13345
13582
|
* @remarks
|
|
13346
|
-
* The minimum amount of reserved computing resources.
|
|
13583
|
+
* The minimum amount of reserved computing resources.
|
|
13347
13584
|
*
|
|
13348
13585
|
* * If the GroupType parameter is set to Interactive, set the value to 16ACU.
|
|
13349
13586
|
* * If GroupType is set to Job, set the value to 0ACU.
|
|
@@ -13352,6 +13589,7 @@ export declare class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
13352
13589
|
* 0ACU
|
|
13353
13590
|
*/
|
|
13354
13591
|
minComputeResource?: string;
|
|
13592
|
+
minGpuQuantity?: number;
|
|
13355
13593
|
/**
|
|
13356
13594
|
* @remarks
|
|
13357
13595
|
* The region ID of the cluster.
|
|
@@ -13367,6 +13605,8 @@ export declare class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
13367
13605
|
* The job resubmission rules.
|
|
13368
13606
|
*/
|
|
13369
13607
|
rulesShrink?: string;
|
|
13608
|
+
specName?: string;
|
|
13609
|
+
targetResourceGroupName?: string;
|
|
13370
13610
|
static names(): {
|
|
13371
13611
|
[key: string]: string;
|
|
13372
13612
|
};
|
|
@@ -13527,9 +13767,9 @@ export declare class ModifyElasticPlanResponse extends $tea.Model {
|
|
|
13527
13767
|
export declare class ModifyPerformanceViewRequest extends $tea.Model {
|
|
13528
13768
|
/**
|
|
13529
13769
|
* @remarks
|
|
13530
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
13770
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
13531
13771
|
*
|
|
13532
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/612397.html) operation to query the IDs of all AnalyticDB for MySQL
|
|
13772
|
+
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/612397.html) operation to query the IDs of all AnalyticDB for MySQL clusters within a region.
|
|
13533
13773
|
*
|
|
13534
13774
|
* This parameter is required.
|
|
13535
13775
|
*
|
|
@@ -13565,6 +13805,9 @@ export declare class ModifyPerformanceViewRequest extends $tea.Model {
|
|
|
13565
13805
|
* The name of the monitoring view.
|
|
13566
13806
|
*
|
|
13567
13807
|
* This parameter is required.
|
|
13808
|
+
*
|
|
13809
|
+
* @example
|
|
13810
|
+
* Basic
|
|
13568
13811
|
*/
|
|
13569
13812
|
viewName?: string;
|
|
13570
13813
|
static names(): {
|
|
@@ -13580,9 +13823,9 @@ export declare class ModifyPerformanceViewRequest extends $tea.Model {
|
|
|
13580
13823
|
export declare class ModifyPerformanceViewShrinkRequest extends $tea.Model {
|
|
13581
13824
|
/**
|
|
13582
13825
|
* @remarks
|
|
13583
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
13826
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
13584
13827
|
*
|
|
13585
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/612397.html) operation to query the IDs of all AnalyticDB for MySQL
|
|
13828
|
+
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/612397.html) operation to query the IDs of all AnalyticDB for MySQL clusters within a region.
|
|
13586
13829
|
*
|
|
13587
13830
|
* This parameter is required.
|
|
13588
13831
|
*
|
|
@@ -13618,6 +13861,9 @@ export declare class ModifyPerformanceViewShrinkRequest extends $tea.Model {
|
|
|
13618
13861
|
* The name of the monitoring view.
|
|
13619
13862
|
*
|
|
13620
13863
|
* This parameter is required.
|
|
13864
|
+
*
|
|
13865
|
+
* @example
|
|
13866
|
+
* Basic
|
|
13621
13867
|
*/
|
|
13622
13868
|
viewName?: string;
|
|
13623
13869
|
static names(): {
|
|
@@ -15717,6 +15963,7 @@ export declare class DescribeBackupsResponseBodyItemsBackup extends $tea.Model {
|
|
|
15717
15963
|
* 2022-06-02T16:00Z
|
|
15718
15964
|
*/
|
|
15719
15965
|
backupEndTime?: string;
|
|
15966
|
+
backupExpiredTime?: string;
|
|
15720
15967
|
/**
|
|
15721
15968
|
* @remarks
|
|
15722
15969
|
* The backup set ID.
|
|
@@ -16027,7 +16274,7 @@ export declare class DescribeClusterResourceDetailResponseBodyDataResourceGroupL
|
|
|
16027
16274
|
maxClusterCount?: number;
|
|
16028
16275
|
/**
|
|
16029
16276
|
* @remarks
|
|
16030
|
-
* The maximum amount of reserved computing resources.
|
|
16277
|
+
* The maximum amount of reserved computing resources.
|
|
16031
16278
|
*
|
|
16032
16279
|
* @example
|
|
16033
16280
|
* 128ACU
|
|
@@ -16043,7 +16290,7 @@ export declare class DescribeClusterResourceDetailResponseBodyDataResourceGroupL
|
|
|
16043
16290
|
minClusterCount?: number;
|
|
16044
16291
|
/**
|
|
16045
16292
|
* @remarks
|
|
16046
|
-
* The minimum amount of reserved computing resources.
|
|
16293
|
+
* The minimum amount of reserved computing resources.
|
|
16047
16294
|
*
|
|
16048
16295
|
* @example
|
|
16049
16296
|
* 16ACU
|
|
@@ -16122,7 +16369,7 @@ export declare class DescribeClusterResourceDetailResponseBodyData extends $tea.
|
|
|
16122
16369
|
computeResource?: string;
|
|
16123
16370
|
/**
|
|
16124
16371
|
* @remarks
|
|
16125
|
-
* The ID
|
|
16372
|
+
* The cluster ID.
|
|
16126
16373
|
*
|
|
16127
16374
|
* @example
|
|
16128
16375
|
* amv-adbxxxxx
|
|
@@ -17864,7 +18111,7 @@ export declare class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.
|
|
|
17864
18111
|
createTime?: string;
|
|
17865
18112
|
/**
|
|
17866
18113
|
* @remarks
|
|
17867
|
-
* The minimum amount of elastic computing resources.
|
|
18114
|
+
* The minimum amount of elastic computing resources.
|
|
17868
18115
|
*
|
|
17869
18116
|
* @example
|
|
17870
18117
|
* 16ACU
|
|
@@ -17926,12 +18173,13 @@ export declare class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.
|
|
|
17926
18173
|
maxClusterCount?: number;
|
|
17927
18174
|
/**
|
|
17928
18175
|
* @remarks
|
|
17929
|
-
* The maximum amount of reserved computing resources.
|
|
18176
|
+
* The maximum amount of reserved computing resources.
|
|
17930
18177
|
*
|
|
17931
18178
|
* @example
|
|
17932
18179
|
* 512ACU
|
|
17933
18180
|
*/
|
|
17934
18181
|
maxComputeResource?: string;
|
|
18182
|
+
maxGpuQuantity?: number;
|
|
17935
18183
|
/**
|
|
17936
18184
|
* @remarks
|
|
17937
18185
|
* This parameter is required.
|
|
@@ -17947,12 +18195,13 @@ export declare class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.
|
|
|
17947
18195
|
minClusterCount?: number;
|
|
17948
18196
|
/**
|
|
17949
18197
|
* @remarks
|
|
17950
|
-
* The minimum amount of reserved computing resources.
|
|
18198
|
+
* The minimum amount of reserved computing resources.
|
|
17951
18199
|
*
|
|
17952
18200
|
* @example
|
|
17953
18201
|
* 0ACU
|
|
17954
18202
|
*/
|
|
17955
18203
|
minComputeResource?: string;
|
|
18204
|
+
minGpuQuantity?: number;
|
|
17956
18205
|
/**
|
|
17957
18206
|
* @remarks
|
|
17958
18207
|
* The job resubmission rules.
|
|
@@ -17966,6 +18215,7 @@ export declare class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.
|
|
|
17966
18215
|
* N/A
|
|
17967
18216
|
*/
|
|
17968
18217
|
runningClusterCount?: number;
|
|
18218
|
+
specName?: string;
|
|
17969
18219
|
/**
|
|
17970
18220
|
* @remarks
|
|
17971
18221
|
* The status of the resource group. Valid values:
|
|
@@ -17978,6 +18228,7 @@ export declare class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.
|
|
|
17978
18228
|
* ok
|
|
17979
18229
|
*/
|
|
17980
18230
|
status?: string;
|
|
18231
|
+
targetResourceGroupName?: string;
|
|
17981
18232
|
/**
|
|
17982
18233
|
* @remarks
|
|
17983
18234
|
* The time when the resource group was updated. The time follows the ISO 8601 standard in the *yyyy-MM-ddTHH:mm:ssZ* format. The time is displayed in UTC.
|
|
@@ -18577,8 +18828,8 @@ export declare class DescribeElasticPlansResponseBodyElasticPlans extends $tea.M
|
|
|
18577
18828
|
* @remarks
|
|
18578
18829
|
* Indicates whether **Proportional Default Scaling for EIUs** is enabled. Valid values:
|
|
18579
18830
|
*
|
|
18580
|
-
* * true
|
|
18581
|
-
* * false
|
|
18831
|
+
* * **true**
|
|
18832
|
+
* * **false**
|
|
18582
18833
|
*
|
|
18583
18834
|
* @example
|
|
18584
18835
|
* false
|
|
@@ -18594,10 +18845,10 @@ export declare class DescribeElasticPlansResponseBodyElasticPlans extends $tea.M
|
|
|
18594
18845
|
elasticPlanName?: string;
|
|
18595
18846
|
/**
|
|
18596
18847
|
* @remarks
|
|
18597
|
-
* Indicates whether the scaling plan
|
|
18848
|
+
* Indicates whether the scaling plan is immediately enabled after the plan is created. Valid values:
|
|
18598
18849
|
*
|
|
18599
|
-
* * true
|
|
18600
|
-
* * false
|
|
18850
|
+
* * **true**
|
|
18851
|
+
* * **false**
|
|
18601
18852
|
*
|
|
18602
18853
|
* @example
|
|
18603
18854
|
* true
|
|
@@ -18635,8 +18886,8 @@ export declare class DescribeElasticPlansResponseBodyElasticPlans extends $tea.M
|
|
|
18635
18886
|
* @remarks
|
|
18636
18887
|
* The type of the scaling plan. Valid values:
|
|
18637
18888
|
*
|
|
18638
|
-
* * EXECUTOR
|
|
18639
|
-
* * WORKER
|
|
18889
|
+
* * **EXECUTOR**: the interactive resource group type, which specifies the computing resource type.
|
|
18890
|
+
* * **WORKER**: the EIU type.
|
|
18640
18891
|
*
|
|
18641
18892
|
* @example
|
|
18642
18893
|
* EXECUTOR
|
|
@@ -18715,11 +18966,17 @@ export declare class DescribeExcessivePrimaryKeysResponseBodyDetectionItems exte
|
|
|
18715
18966
|
/**
|
|
18716
18967
|
* @remarks
|
|
18717
18968
|
* The detection result.
|
|
18969
|
+
*
|
|
18970
|
+
* @example
|
|
18971
|
+
* OK
|
|
18718
18972
|
*/
|
|
18719
18973
|
message?: string;
|
|
18720
18974
|
/**
|
|
18721
18975
|
* @remarks
|
|
18722
18976
|
* The name of the detection item.
|
|
18977
|
+
*
|
|
18978
|
+
* @example
|
|
18979
|
+
* test
|
|
18723
18980
|
*/
|
|
18724
18981
|
name?: string;
|
|
18725
18982
|
/**
|
|
@@ -18839,11 +19096,17 @@ export declare class DescribeJobResourceUsageResponseBodyDataJobAcuUsageAcuUsage
|
|
|
18839
19096
|
*/
|
|
18840
19097
|
reservedAcuNumber?: number;
|
|
18841
19098
|
/**
|
|
19099
|
+
* @remarks
|
|
19100
|
+
* The number of spot ACUs.
|
|
19101
|
+
*
|
|
18842
19102
|
* @example
|
|
18843
19103
|
* 16ACU
|
|
18844
19104
|
*/
|
|
18845
19105
|
spotAcuNumber?: number;
|
|
18846
19106
|
/**
|
|
19107
|
+
* @remarks
|
|
19108
|
+
* The percent of spot ACUs.
|
|
19109
|
+
*
|
|
18847
19110
|
* @example
|
|
18848
19111
|
* 0.9
|
|
18849
19112
|
*/
|
|
@@ -19045,11 +19308,20 @@ export declare class DescribePatternPerformanceResponseBodyPerformances extends
|
|
|
19045
19308
|
}
|
|
19046
19309
|
export declare class DescribePerformanceViewAttributeResponseBodyViewDetailCategoriesKeys extends $tea.Model {
|
|
19047
19310
|
/**
|
|
19311
|
+
* @remarks
|
|
19312
|
+
* The name of the metric.
|
|
19313
|
+
*
|
|
19048
19314
|
* @example
|
|
19049
19315
|
* AnalyticDB_CPU
|
|
19050
19316
|
*/
|
|
19051
19317
|
keyName?: string;
|
|
19052
19318
|
/**
|
|
19319
|
+
* @remarks
|
|
19320
|
+
* Specifies whether to select the metric. Valid values:
|
|
19321
|
+
*
|
|
19322
|
+
* * **true**
|
|
19323
|
+
* * **false**
|
|
19324
|
+
*
|
|
19053
19325
|
* @example
|
|
19054
19326
|
* true
|
|
19055
19327
|
*/
|
|
@@ -19066,10 +19338,22 @@ export declare class DescribePerformanceViewAttributeResponseBodyViewDetailCateg
|
|
|
19066
19338
|
}
|
|
19067
19339
|
export declare class DescribePerformanceViewAttributeResponseBodyViewDetailCategories extends $tea.Model {
|
|
19068
19340
|
/**
|
|
19341
|
+
* @remarks
|
|
19342
|
+
* The name of the metric category. Valid values:
|
|
19343
|
+
*
|
|
19344
|
+
* * **Node**
|
|
19345
|
+
* * **DiskData**
|
|
19346
|
+
* * **WorkLoad**
|
|
19347
|
+
* * **ResourceGroup**
|
|
19348
|
+
*
|
|
19069
19349
|
* @example
|
|
19070
19350
|
* Node
|
|
19071
19351
|
*/
|
|
19072
19352
|
category?: string;
|
|
19353
|
+
/**
|
|
19354
|
+
* @remarks
|
|
19355
|
+
* The metrics.
|
|
19356
|
+
*/
|
|
19073
19357
|
keys?: DescribePerformanceViewAttributeResponseBodyViewDetailCategoriesKeys[];
|
|
19074
19358
|
static names(): {
|
|
19075
19359
|
[key: string]: string;
|
|
@@ -19082,13 +19366,26 @@ export declare class DescribePerformanceViewAttributeResponseBodyViewDetailCateg
|
|
|
19082
19366
|
});
|
|
19083
19367
|
}
|
|
19084
19368
|
export declare class DescribePerformanceViewAttributeResponseBodyViewDetail extends $tea.Model {
|
|
19369
|
+
/**
|
|
19370
|
+
* @remarks
|
|
19371
|
+
* The metric category.
|
|
19372
|
+
*/
|
|
19085
19373
|
categories?: DescribePerformanceViewAttributeResponseBodyViewDetailCategories[];
|
|
19086
19374
|
/**
|
|
19375
|
+
* @remarks
|
|
19376
|
+
* Specifies whether to enable the filter interaction feature. Valid values:
|
|
19377
|
+
*
|
|
19378
|
+
* * **true**
|
|
19379
|
+
* * **false**
|
|
19380
|
+
*
|
|
19087
19381
|
* @example
|
|
19088
19382
|
* true
|
|
19089
19383
|
*/
|
|
19090
19384
|
chartLinked?: boolean;
|
|
19091
19385
|
/**
|
|
19386
|
+
* @remarks
|
|
19387
|
+
* The number of charts to display in each row.
|
|
19388
|
+
*
|
|
19092
19389
|
* @example
|
|
19093
19390
|
* 2
|
|
19094
19391
|
*/
|
|
@@ -19105,15 +19402,28 @@ export declare class DescribePerformanceViewAttributeResponseBodyViewDetail exte
|
|
|
19105
19402
|
}
|
|
19106
19403
|
export declare class DescribePerformanceViewsResponseBodyViews extends $tea.Model {
|
|
19107
19404
|
/**
|
|
19405
|
+
* @remarks
|
|
19406
|
+
* The time when created.
|
|
19407
|
+
*
|
|
19108
19408
|
* @example
|
|
19109
19409
|
* 2024-06-18T07:06:53.000+00:00
|
|
19110
19410
|
*/
|
|
19111
19411
|
createTime?: string;
|
|
19112
19412
|
/**
|
|
19413
|
+
* @remarks
|
|
19414
|
+
* The time when updated.
|
|
19415
|
+
*
|
|
19113
19416
|
* @example
|
|
19114
19417
|
* 2024-06-18T07:07:32.000+00:00
|
|
19115
19418
|
*/
|
|
19116
19419
|
updateTime?: string;
|
|
19420
|
+
/**
|
|
19421
|
+
* @remarks
|
|
19422
|
+
* The name of the view.
|
|
19423
|
+
*
|
|
19424
|
+
* @example
|
|
19425
|
+
* Basic
|
|
19426
|
+
*/
|
|
19117
19427
|
viewName?: string;
|
|
19118
19428
|
static names(): {
|
|
19119
19429
|
[key: string]: string;
|
|
@@ -19396,7 +19706,7 @@ export declare class DescribeSQLPatternsResponseBodyPatternDetails extends $tea.
|
|
|
19396
19706
|
export declare class DescribeSchemasResponseBodyItemsSchema extends $tea.Model {
|
|
19397
19707
|
/**
|
|
19398
19708
|
* @remarks
|
|
19399
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
19709
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
19400
19710
|
*
|
|
19401
19711
|
* @example
|
|
19402
19712
|
* amv-bp11q28kvl688****
|
|
@@ -19696,7 +20006,7 @@ export declare class DescribeTableAccessCountResponseBodyItems extends $tea.Mode
|
|
|
19696
20006
|
export declare class DescribeTablesResponseBodyItemsTable extends $tea.Model {
|
|
19697
20007
|
/**
|
|
19698
20008
|
* @remarks
|
|
19699
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
20009
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
19700
20010
|
*
|
|
19701
20011
|
* @example
|
|
19702
20012
|
* amv-bp1xxxxxxxx47
|
|
@@ -19797,7 +20107,7 @@ export declare class GetSparkAppAttemptLogResponseBodyData extends $tea.Model {
|
|
|
19797
20107
|
appId?: string;
|
|
19798
20108
|
/**
|
|
19799
20109
|
* @remarks
|
|
19800
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
20110
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
19801
20111
|
*
|
|
19802
20112
|
* @example
|
|
19803
20113
|
* amv-clusterxxx
|
|
@@ -21328,12 +21638,16 @@ export default class Client extends OpenApi {
|
|
|
21328
21638
|
*/
|
|
21329
21639
|
createOssSubDirectory(request: CreateOssSubDirectoryRequest): Promise<CreateOssSubDirectoryResponse>;
|
|
21330
21640
|
/**
|
|
21641
|
+
* Creates a custom monitoring view.
|
|
21642
|
+
*
|
|
21331
21643
|
* @param tmpReq - CreatePerformanceViewRequest
|
|
21332
21644
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
21333
21645
|
* @returns CreatePerformanceViewResponse
|
|
21334
21646
|
*/
|
|
21335
21647
|
createPerformanceViewWithOptions(tmpReq: CreatePerformanceViewRequest, runtime: $Util.RuntimeOptions): Promise<CreatePerformanceViewResponse>;
|
|
21336
21648
|
/**
|
|
21649
|
+
* Creates a custom monitoring view.
|
|
21650
|
+
*
|
|
21337
21651
|
* @param request - CreatePerformanceViewRequest
|
|
21338
21652
|
* @returns CreatePerformanceViewResponse
|
|
21339
21653
|
*/
|
|
@@ -21452,12 +21766,16 @@ export default class Client extends OpenApi {
|
|
|
21452
21766
|
*/
|
|
21453
21767
|
deleteElasticPlan(request: DeleteElasticPlanRequest): Promise<DeleteElasticPlanResponse>;
|
|
21454
21768
|
/**
|
|
21769
|
+
* Deletes a monitoring view.
|
|
21770
|
+
*
|
|
21455
21771
|
* @param request - DeletePerformanceViewRequest
|
|
21456
21772
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
21457
21773
|
* @returns DeletePerformanceViewResponse
|
|
21458
21774
|
*/
|
|
21459
21775
|
deletePerformanceViewWithOptions(request: DeletePerformanceViewRequest, runtime: $Util.RuntimeOptions): Promise<DeletePerformanceViewResponse>;
|
|
21460
21776
|
/**
|
|
21777
|
+
* Deletes a monitoring view.
|
|
21778
|
+
*
|
|
21461
21779
|
* @param request - DeletePerformanceViewRequest
|
|
21462
21780
|
* @returns DeletePerformanceViewResponse
|
|
21463
21781
|
*/
|
|
@@ -21514,9 +21832,9 @@ export default class Client extends OpenApi {
|
|
|
21514
21832
|
* Deletes Spark template files.
|
|
21515
21833
|
*
|
|
21516
21834
|
* @remarks
|
|
21517
|
-
*
|
|
21518
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
21835
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
21519
21836
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
21837
|
+
* > If HTTP status code 409 is returned when you call this operation in the China (Qingdao), China (Shenzhen), China (Guangzhou), or China (Hong Kong) region, contact technical support.
|
|
21520
21838
|
*
|
|
21521
21839
|
* @param request - DeleteSparkTemplateFileRequest
|
|
21522
21840
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -21527,9 +21845,9 @@ export default class Client extends OpenApi {
|
|
|
21527
21845
|
* Deletes Spark template files.
|
|
21528
21846
|
*
|
|
21529
21847
|
* @remarks
|
|
21530
|
-
*
|
|
21531
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
21848
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
21532
21849
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
21850
|
+
* > If HTTP status code 409 is returned when you call this operation in the China (Qingdao), China (Shenzhen), China (Guangzhou), or China (Hong Kong) region, contact technical support.
|
|
21533
21851
|
*
|
|
21534
21852
|
* @param request - DeleteSparkTemplateFileRequest
|
|
21535
21853
|
* @returns DeleteSparkTemplateFileResponse
|
|
@@ -21614,7 +21932,7 @@ export default class Client extends OpenApi {
|
|
|
21614
21932
|
*/
|
|
21615
21933
|
describeAccounts(request: DescribeAccountsRequest): Promise<DescribeAccountsResponse>;
|
|
21616
21934
|
/**
|
|
21617
|
-
* Queries the information about table columns for an AnalyticDB for MySQL
|
|
21935
|
+
* Queries the information about table columns for an AnalyticDB for MySQL cluster.
|
|
21618
21936
|
*
|
|
21619
21937
|
* @remarks
|
|
21620
21938
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -21626,7 +21944,7 @@ export default class Client extends OpenApi {
|
|
|
21626
21944
|
*/
|
|
21627
21945
|
describeAdbMySqlColumnsWithOptions(request: DescribeAdbMySqlColumnsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAdbMySqlColumnsResponse>;
|
|
21628
21946
|
/**
|
|
21629
|
-
* Queries the information about table columns for an AnalyticDB for MySQL
|
|
21947
|
+
* Queries the information about table columns for an AnalyticDB for MySQL cluster.
|
|
21630
21948
|
*
|
|
21631
21949
|
* @remarks
|
|
21632
21950
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -21637,7 +21955,7 @@ export default class Client extends OpenApi {
|
|
|
21637
21955
|
*/
|
|
21638
21956
|
describeAdbMySqlColumns(request: DescribeAdbMySqlColumnsRequest): Promise<DescribeAdbMySqlColumnsResponse>;
|
|
21639
21957
|
/**
|
|
21640
|
-
* Queries a list of databases for an AnalyticDB for MySQL
|
|
21958
|
+
* Queries a list of databases for an AnalyticDB for MySQL cluster.
|
|
21641
21959
|
*
|
|
21642
21960
|
* @remarks
|
|
21643
21961
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -21649,7 +21967,7 @@ export default class Client extends OpenApi {
|
|
|
21649
21967
|
*/
|
|
21650
21968
|
describeAdbMySqlSchemasWithOptions(request: DescribeAdbMySqlSchemasRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAdbMySqlSchemasResponse>;
|
|
21651
21969
|
/**
|
|
21652
|
-
* Queries a list of databases for an AnalyticDB for MySQL
|
|
21970
|
+
* Queries a list of databases for an AnalyticDB for MySQL cluster.
|
|
21653
21971
|
*
|
|
21654
21972
|
* @remarks
|
|
21655
21973
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -21660,7 +21978,7 @@ export default class Client extends OpenApi {
|
|
|
21660
21978
|
*/
|
|
21661
21979
|
describeAdbMySqlSchemas(request: DescribeAdbMySqlSchemasRequest): Promise<DescribeAdbMySqlSchemasResponse>;
|
|
21662
21980
|
/**
|
|
21663
|
-
* Queries a list of tables for an AnalyticDB for MySQL
|
|
21981
|
+
* Queries a list of tables for an AnalyticDB for MySQL cluster.
|
|
21664
21982
|
*
|
|
21665
21983
|
* @remarks
|
|
21666
21984
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -21672,7 +21990,7 @@ export default class Client extends OpenApi {
|
|
|
21672
21990
|
*/
|
|
21673
21991
|
describeAdbMySqlTablesWithOptions(request: DescribeAdbMySqlTablesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAdbMySqlTablesResponse>;
|
|
21674
21992
|
/**
|
|
21675
|
-
* Queries a list of tables for an AnalyticDB for MySQL
|
|
21993
|
+
* Queries a list of tables for an AnalyticDB for MySQL cluster.
|
|
21676
21994
|
*
|
|
21677
21995
|
* @remarks
|
|
21678
21996
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -21853,10 +22171,10 @@ export default class Client extends OpenApi {
|
|
|
21853
22171
|
*/
|
|
21854
22172
|
describeClusterNetInfo(request: DescribeClusterNetInfoRequest): Promise<DescribeClusterNetInfoResponse>;
|
|
21855
22173
|
/**
|
|
21856
|
-
*
|
|
22174
|
+
* Queries the information about resource usage of an AnalyticDB for MySQL cluster.
|
|
21857
22175
|
*
|
|
21858
22176
|
* @remarks
|
|
21859
|
-
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
22177
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
21860
22178
|
*
|
|
21861
22179
|
* @param request - DescribeClusterResourceDetailRequest
|
|
21862
22180
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -21864,10 +22182,10 @@ export default class Client extends OpenApi {
|
|
|
21864
22182
|
*/
|
|
21865
22183
|
describeClusterResourceDetailWithOptions(request: DescribeClusterResourceDetailRequest, runtime: $Util.RuntimeOptions): Promise<DescribeClusterResourceDetailResponse>;
|
|
21866
22184
|
/**
|
|
21867
|
-
*
|
|
22185
|
+
* Queries the information about resource usage of an AnalyticDB for MySQL cluster.
|
|
21868
22186
|
*
|
|
21869
22187
|
* @remarks
|
|
21870
|
-
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
22188
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
21871
22189
|
*
|
|
21872
22190
|
* @param request - DescribeClusterResourceDetailRequest
|
|
21873
22191
|
* @returns DescribeClusterResourceDetailResponse
|
|
@@ -22324,23 +22642,31 @@ export default class Client extends OpenApi {
|
|
|
22324
22642
|
*/
|
|
22325
22643
|
describePatternPerformance(request: DescribePatternPerformanceRequest): Promise<DescribePatternPerformanceResponse>;
|
|
22326
22644
|
/**
|
|
22645
|
+
* Queries the information about a monitoring view.
|
|
22646
|
+
*
|
|
22327
22647
|
* @param request - DescribePerformanceViewAttributeRequest
|
|
22328
22648
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
22329
22649
|
* @returns DescribePerformanceViewAttributeResponse
|
|
22330
22650
|
*/
|
|
22331
22651
|
describePerformanceViewAttributeWithOptions(request: DescribePerformanceViewAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribePerformanceViewAttributeResponse>;
|
|
22332
22652
|
/**
|
|
22653
|
+
* Queries the information about a monitoring view.
|
|
22654
|
+
*
|
|
22333
22655
|
* @param request - DescribePerformanceViewAttributeRequest
|
|
22334
22656
|
* @returns DescribePerformanceViewAttributeResponse
|
|
22335
22657
|
*/
|
|
22336
22658
|
describePerformanceViewAttribute(request: DescribePerformanceViewAttributeRequest): Promise<DescribePerformanceViewAttributeResponse>;
|
|
22337
22659
|
/**
|
|
22660
|
+
* Queries a list of monitoring views.
|
|
22661
|
+
*
|
|
22338
22662
|
* @param request - DescribePerformanceViewsRequest
|
|
22339
22663
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
22340
22664
|
* @returns DescribePerformanceViewsResponse
|
|
22341
22665
|
*/
|
|
22342
22666
|
describePerformanceViewsWithOptions(request: DescribePerformanceViewsRequest, runtime: $Util.RuntimeOptions): Promise<DescribePerformanceViewsResponse>;
|
|
22343
22667
|
/**
|
|
22668
|
+
* Queries a list of monitoring views.
|
|
22669
|
+
*
|
|
22344
22670
|
* @param request - DescribePerformanceViewsRequest
|
|
22345
22671
|
* @returns DescribePerformanceViewsResponse
|
|
22346
22672
|
*/
|
|
@@ -22507,6 +22833,9 @@ export default class Client extends OpenApi {
|
|
|
22507
22833
|
/**
|
|
22508
22834
|
* Queries the storage resource usage of an AnalyticDB for MySQL Data Lakehouse Edition (V3.0) cluster.
|
|
22509
22835
|
*
|
|
22836
|
+
* @remarks
|
|
22837
|
+
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
22838
|
+
*
|
|
22510
22839
|
* @param request - DescribeStorageResourceUsageRequest
|
|
22511
22840
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
22512
22841
|
* @returns DescribeStorageResourceUsageResponse
|
|
@@ -22515,6 +22844,9 @@ export default class Client extends OpenApi {
|
|
|
22515
22844
|
/**
|
|
22516
22845
|
* Queries the storage resource usage of an AnalyticDB for MySQL Data Lakehouse Edition (V3.0) cluster.
|
|
22517
22846
|
*
|
|
22847
|
+
* @remarks
|
|
22848
|
+
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
22849
|
+
*
|
|
22518
22850
|
* @param request - DescribeStorageResourceUsageRequest
|
|
22519
22851
|
* @returns DescribeStorageResourceUsageResponse
|
|
22520
22852
|
*/
|
|
@@ -22716,9 +23048,9 @@ export default class Client extends OpenApi {
|
|
|
22716
23048
|
* Queries the information about the retry log of a Spark application.
|
|
22717
23049
|
*
|
|
22718
23050
|
* @remarks
|
|
22719
|
-
*
|
|
22720
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23051
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
22721
23052
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
23053
|
+
* > If HTTP status code 409 is returned when you call this operation in the China (Qingdao), China (Shenzhen), China (Guangzhou), or China (Hong Kong) region, contact technical support.
|
|
22722
23054
|
*
|
|
22723
23055
|
* @param request - GetSparkAppAttemptLogRequest
|
|
22724
23056
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -22729,9 +23061,9 @@ export default class Client extends OpenApi {
|
|
|
22729
23061
|
* Queries the information about the retry log of a Spark application.
|
|
22730
23062
|
*
|
|
22731
23063
|
* @remarks
|
|
22732
|
-
*
|
|
22733
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23064
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
22734
23065
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
23066
|
+
* > If HTTP status code 409 is returned when you call this operation in the China (Qingdao), China (Shenzhen), China (Guangzhou), or China (Hong Kong) region, contact technical support.
|
|
22735
23067
|
*
|
|
22736
23068
|
* @param request - GetSparkAppAttemptLogRequest
|
|
22737
23069
|
* @returns GetSparkAppAttemptLogResponse
|
|
@@ -23016,9 +23348,9 @@ export default class Client extends OpenApi {
|
|
|
23016
23348
|
* Queries the directory structure of Spark applications.
|
|
23017
23349
|
*
|
|
23018
23350
|
* @remarks
|
|
23019
|
-
*
|
|
23020
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23351
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23021
23352
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
23353
|
+
* > If HTTP status code 409 is returned when you call this operation in the China (Qingdao), China (Shenzhen), China (Guangzhou), or China (Hong Kong) region, contact technical support.
|
|
23022
23354
|
*
|
|
23023
23355
|
* @param request - GetSparkTemplateFullTreeRequest
|
|
23024
23356
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -23029,9 +23361,9 @@ export default class Client extends OpenApi {
|
|
|
23029
23361
|
* Queries the directory structure of Spark applications.
|
|
23030
23362
|
*
|
|
23031
23363
|
* @remarks
|
|
23032
|
-
*
|
|
23033
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23364
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23034
23365
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
23366
|
+
* > If HTTP status code 409 is returned when you call this operation in the China (Qingdao), China (Shenzhen), China (Guangzhou), or China (Hong Kong) region, contact technical support.
|
|
23035
23367
|
*
|
|
23036
23368
|
* @param request - GetSparkTemplateFullTreeRequest
|
|
23037
23369
|
* @returns GetSparkTemplateFullTreeResponse
|
|
@@ -23303,9 +23635,9 @@ export default class Client extends OpenApi {
|
|
|
23303
23635
|
* Queries all Spark template file IDs of an AnalyticDB for MySQL Data Lakehouse Edition (V3.0) cluster.
|
|
23304
23636
|
*
|
|
23305
23637
|
* @remarks
|
|
23306
|
-
*
|
|
23307
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23638
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23308
23639
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
23640
|
+
* > If HTTP status code 409 is returned when you call this operation in the China (Qingdao), China (Shenzhen), China (Guangzhou), or China (Hong Kong) region, contact technical support.
|
|
23309
23641
|
*
|
|
23310
23642
|
* @param request - ListSparkTemplateFileIdsRequest
|
|
23311
23643
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -23316,9 +23648,9 @@ export default class Client extends OpenApi {
|
|
|
23316
23648
|
* Queries all Spark template file IDs of an AnalyticDB for MySQL Data Lakehouse Edition (V3.0) cluster.
|
|
23317
23649
|
*
|
|
23318
23650
|
* @remarks
|
|
23319
|
-
*
|
|
23320
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23651
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23321
23652
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
23653
|
+
* > If HTTP status code 409 is returned when you call this operation in the China (Qingdao), China (Shenzhen), China (Guangzhou), or China (Hong Kong) region, contact technical support.
|
|
23322
23654
|
*
|
|
23323
23655
|
* @param request - ListSparkTemplateFileIdsRequest
|
|
23324
23656
|
* @returns ListSparkTemplateFileIdsResponse
|
|
@@ -23481,7 +23813,7 @@ export default class Client extends OpenApi {
|
|
|
23481
23813
|
* * If the cluster has a built-in dataset loaded, make sure that the cluster has reserved storage resources of at least 24 AnalyticDB compute units (ACUs). Otherwise, the built-in dataset cannot be used.
|
|
23482
23814
|
* * When the scaling process is about to end, transient connections may occur. We recommend that you scale your cluster during off-peak hours or make sure that your application is configured to automatically reconnect to your cluster.
|
|
23483
23815
|
* * You can change an AnalyticDB for MySQL cluster from Data Warehouse Edition to Data Lakehouse Edition, but not the other way around. For more information, see Change a cluster from Data Warehouse Edition to Data Lakehouse Edition.
|
|
23484
|
-
* * For information about the endpoints of
|
|
23816
|
+
* * For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
23485
23817
|
*
|
|
23486
23818
|
* @param request - ModifyDBClusterRequest
|
|
23487
23819
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -23498,7 +23830,7 @@ export default class Client extends OpenApi {
|
|
|
23498
23830
|
* * If the cluster has a built-in dataset loaded, make sure that the cluster has reserved storage resources of at least 24 AnalyticDB compute units (ACUs). Otherwise, the built-in dataset cannot be used.
|
|
23499
23831
|
* * When the scaling process is about to end, transient connections may occur. We recommend that you scale your cluster during off-peak hours or make sure that your application is configured to automatically reconnect to your cluster.
|
|
23500
23832
|
* * You can change an AnalyticDB for MySQL cluster from Data Warehouse Edition to Data Lakehouse Edition, but not the other way around. For more information, see Change a cluster from Data Warehouse Edition to Data Lakehouse Edition.
|
|
23501
|
-
* * For information about the endpoints of
|
|
23833
|
+
* * For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
23502
23834
|
*
|
|
23503
23835
|
* @param request - ModifyDBClusterRequest
|
|
23504
23836
|
* @returns ModifyDBClusterResponse
|
|
@@ -23699,9 +24031,9 @@ export default class Client extends OpenApi {
|
|
|
23699
24031
|
* Modifies the Spark log configuration.
|
|
23700
24032
|
*
|
|
23701
24033
|
* @remarks
|
|
23702
|
-
*
|
|
23703
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
24034
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23704
24035
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
24036
|
+
* > If HTTP status code 409 is returned when you call this operation in the China (Qingdao), China (Shenzhen), China (Guangzhou), or China (Hong Kong) region, contact technical support.
|
|
23705
24037
|
*
|
|
23706
24038
|
* @param request - SetSparkAppLogRootPathRequest
|
|
23707
24039
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -23712,9 +24044,9 @@ export default class Client extends OpenApi {
|
|
|
23712
24044
|
* Modifies the Spark log configuration.
|
|
23713
24045
|
*
|
|
23714
24046
|
* @remarks
|
|
23715
|
-
*
|
|
23716
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
24047
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23717
24048
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
24049
|
+
* > If HTTP status code 409 is returned when you call this operation in the China (Qingdao), China (Shenzhen), China (Guangzhou), or China (Hong Kong) region, contact technical support.
|
|
23718
24050
|
*
|
|
23719
24051
|
* @param request - SetSparkAppLogRootPathRequest
|
|
23720
24052
|
* @returns SetSparkAppLogRootPathResponse
|