@alicloud/adb20211201 2.0.4 → 2.0.6
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 +281 -115
- package/dist/client.js +990 -173
- package/dist/client.js.map +1 -1
- package/package.json +3 -2
- package/src/client.ts +1204 -243
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;
|
|
@@ -1227,9 +1345,10 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1227
1345
|
* 1880808684
|
|
1228
1346
|
*/
|
|
1229
1347
|
backupSetId?: string;
|
|
1348
|
+
cloneSourceRegionId?: string;
|
|
1230
1349
|
/**
|
|
1231
1350
|
* @remarks
|
|
1232
|
-
* The amount of reserved computing resources.
|
|
1351
|
+
* 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
1352
|
*
|
|
1234
1353
|
* > This parameter must be specified with a unit.
|
|
1235
1354
|
*
|
|
@@ -1361,7 +1480,7 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1361
1480
|
sourceDbClusterId?: string;
|
|
1362
1481
|
/**
|
|
1363
1482
|
* @remarks
|
|
1364
|
-
* The amount of reserved storage resources.
|
|
1483
|
+
* 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
1484
|
*
|
|
1366
1485
|
* > This parameter must be specified with a unit.
|
|
1367
1486
|
*
|
|
@@ -1551,7 +1670,7 @@ export declare class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
1551
1670
|
* * **Interactive**
|
|
1552
1671
|
* * **Job**
|
|
1553
1672
|
*
|
|
1554
|
-
* >
|
|
1673
|
+
* > For more information about resource groups, see [Resource group overview](https://help.aliyun.com/document_detail/428610.html).
|
|
1555
1674
|
*
|
|
1556
1675
|
* This parameter is required.
|
|
1557
1676
|
*
|
|
@@ -1569,15 +1688,16 @@ export declare class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
1569
1688
|
maxClusterCount?: number;
|
|
1570
1689
|
/**
|
|
1571
1690
|
* @remarks
|
|
1572
|
-
* The maximum reserved computing resources.
|
|
1691
|
+
* The maximum reserved computing resources.
|
|
1573
1692
|
*
|
|
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
|
|
1693
|
+
* * 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.
|
|
1694
|
+
* * 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
1695
|
*
|
|
1577
1696
|
* @example
|
|
1578
|
-
*
|
|
1697
|
+
* 48ACU
|
|
1579
1698
|
*/
|
|
1580
1699
|
maxComputeResource?: string;
|
|
1700
|
+
maxGpuQuantity?: number;
|
|
1581
1701
|
/**
|
|
1582
1702
|
* @remarks
|
|
1583
1703
|
* A reserved parameter.
|
|
@@ -1588,15 +1708,16 @@ export declare class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
1588
1708
|
minClusterCount?: number;
|
|
1589
1709
|
/**
|
|
1590
1710
|
* @remarks
|
|
1591
|
-
* The minimum reserved computing resources.
|
|
1711
|
+
* The minimum reserved computing resources.
|
|
1592
1712
|
*
|
|
1593
|
-
* * When GroupType is set to Interactive, set this parameter to
|
|
1594
|
-
* * When GroupType is set to Job, set this parameter to
|
|
1713
|
+
* * When GroupType is set to Interactive, set this parameter to 16ACU.
|
|
1714
|
+
* * When GroupType is set to Job, set this parameter to 0ACU.
|
|
1595
1715
|
*
|
|
1596
1716
|
* @example
|
|
1597
|
-
*
|
|
1717
|
+
* 0ACU
|
|
1598
1718
|
*/
|
|
1599
1719
|
minComputeResource?: string;
|
|
1720
|
+
minGpuQuantity?: number;
|
|
1600
1721
|
/**
|
|
1601
1722
|
* @remarks
|
|
1602
1723
|
* The region ID of the cluster.
|
|
@@ -1612,6 +1733,8 @@ export declare class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
1612
1733
|
* The job resubmission rules.
|
|
1613
1734
|
*/
|
|
1614
1735
|
rules?: CreateDBResourceGroupRequestRules[];
|
|
1736
|
+
specName?: string;
|
|
1737
|
+
targetResourceGroupName?: string;
|
|
1615
1738
|
static names(): {
|
|
1616
1739
|
[key: string]: string;
|
|
1617
1740
|
};
|
|
@@ -1683,7 +1806,7 @@ export declare class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
1683
1806
|
* * **Interactive**
|
|
1684
1807
|
* * **Job**
|
|
1685
1808
|
*
|
|
1686
|
-
* >
|
|
1809
|
+
* > For more information about resource groups, see [Resource group overview](https://help.aliyun.com/document_detail/428610.html).
|
|
1687
1810
|
*
|
|
1688
1811
|
* This parameter is required.
|
|
1689
1812
|
*
|
|
@@ -1701,15 +1824,16 @@ export declare class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
1701
1824
|
maxClusterCount?: number;
|
|
1702
1825
|
/**
|
|
1703
1826
|
* @remarks
|
|
1704
|
-
* The maximum reserved computing resources.
|
|
1827
|
+
* The maximum reserved computing resources.
|
|
1705
1828
|
*
|
|
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
|
|
1829
|
+
* * 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.
|
|
1830
|
+
* * 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
1831
|
*
|
|
1709
1832
|
* @example
|
|
1710
|
-
*
|
|
1833
|
+
* 48ACU
|
|
1711
1834
|
*/
|
|
1712
1835
|
maxComputeResource?: string;
|
|
1836
|
+
maxGpuQuantity?: number;
|
|
1713
1837
|
/**
|
|
1714
1838
|
* @remarks
|
|
1715
1839
|
* A reserved parameter.
|
|
@@ -1720,15 +1844,16 @@ export declare class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
1720
1844
|
minClusterCount?: number;
|
|
1721
1845
|
/**
|
|
1722
1846
|
* @remarks
|
|
1723
|
-
* The minimum reserved computing resources.
|
|
1847
|
+
* The minimum reserved computing resources.
|
|
1724
1848
|
*
|
|
1725
|
-
* * When GroupType is set to Interactive, set this parameter to
|
|
1726
|
-
* * When GroupType is set to Job, set this parameter to
|
|
1849
|
+
* * When GroupType is set to Interactive, set this parameter to 16ACU.
|
|
1850
|
+
* * When GroupType is set to Job, set this parameter to 0ACU.
|
|
1727
1851
|
*
|
|
1728
1852
|
* @example
|
|
1729
|
-
*
|
|
1853
|
+
* 0ACU
|
|
1730
1854
|
*/
|
|
1731
1855
|
minComputeResource?: string;
|
|
1856
|
+
minGpuQuantity?: number;
|
|
1732
1857
|
/**
|
|
1733
1858
|
* @remarks
|
|
1734
1859
|
* The region ID of the cluster.
|
|
@@ -1744,6 +1869,8 @@ export declare class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
1744
1869
|
* The job resubmission rules.
|
|
1745
1870
|
*/
|
|
1746
1871
|
rulesShrink?: string;
|
|
1872
|
+
specName?: string;
|
|
1873
|
+
targetResourceGroupName?: string;
|
|
1747
1874
|
static names(): {
|
|
1748
1875
|
[key: string]: string;
|
|
1749
1876
|
};
|
|
@@ -2944,7 +3071,7 @@ export declare class DeleteSparkTemplateResponse extends $tea.Model {
|
|
|
2944
3071
|
export declare class DeleteSparkTemplateFileRequest extends $tea.Model {
|
|
2945
3072
|
/**
|
|
2946
3073
|
* @remarks
|
|
2947
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
3074
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
2948
3075
|
*
|
|
2949
3076
|
* This parameter is required.
|
|
2950
3077
|
*
|
|
@@ -3422,7 +3549,7 @@ export declare class DescribeAccountsRequest extends $tea.Model {
|
|
|
3422
3549
|
accountName?: string;
|
|
3423
3550
|
/**
|
|
3424
3551
|
* @remarks
|
|
3425
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
3552
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
3426
3553
|
*
|
|
3427
3554
|
* This parameter is required.
|
|
3428
3555
|
*
|
|
@@ -3495,9 +3622,9 @@ export declare class DescribeAccountsResponse extends $tea.Model {
|
|
|
3495
3622
|
export declare class DescribeAdbMySqlColumnsRequest extends $tea.Model {
|
|
3496
3623
|
/**
|
|
3497
3624
|
* @remarks
|
|
3498
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
3625
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
3499
3626
|
*
|
|
3500
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/454250.html) operation to query the IDs of all AnalyticDB for MySQL
|
|
3627
|
+
* > 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
3628
|
*
|
|
3502
3629
|
* This parameter is required.
|
|
3503
3630
|
*
|
|
@@ -3507,7 +3634,7 @@ export declare class DescribeAdbMySqlColumnsRequest extends $tea.Model {
|
|
|
3507
3634
|
DBClusterId?: string;
|
|
3508
3635
|
/**
|
|
3509
3636
|
* @remarks
|
|
3510
|
-
* The region ID
|
|
3637
|
+
* The region ID.
|
|
3511
3638
|
*
|
|
3512
3639
|
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/454314.html) operation to query the most recent region list.
|
|
3513
3640
|
*
|
|
@@ -3632,7 +3759,7 @@ export declare class DescribeAdbMySqlColumnsResponse extends $tea.Model {
|
|
|
3632
3759
|
export declare class DescribeAdbMySqlSchemasRequest extends $tea.Model {
|
|
3633
3760
|
/**
|
|
3634
3761
|
* @remarks
|
|
3635
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
3762
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
3636
3763
|
*
|
|
3637
3764
|
* This parameter is required.
|
|
3638
3765
|
*
|
|
@@ -3642,7 +3769,7 @@ export declare class DescribeAdbMySqlSchemasRequest extends $tea.Model {
|
|
|
3642
3769
|
DBClusterId?: string;
|
|
3643
3770
|
/**
|
|
3644
3771
|
* @remarks
|
|
3645
|
-
* The region ID
|
|
3772
|
+
* The region ID.
|
|
3646
3773
|
*
|
|
3647
3774
|
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/454314.html) operation to query the most recent region list.
|
|
3648
3775
|
*
|
|
@@ -3727,7 +3854,7 @@ export declare class DescribeAdbMySqlSchemasResponse extends $tea.Model {
|
|
|
3727
3854
|
export declare class DescribeAdbMySqlTablesRequest extends $tea.Model {
|
|
3728
3855
|
/**
|
|
3729
3856
|
* @remarks
|
|
3730
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
3857
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
3731
3858
|
*
|
|
3732
3859
|
* This parameter is required.
|
|
3733
3860
|
*
|
|
@@ -3737,7 +3864,7 @@ export declare class DescribeAdbMySqlTablesRequest extends $tea.Model {
|
|
|
3737
3864
|
DBClusterId?: string;
|
|
3738
3865
|
/**
|
|
3739
3866
|
* @remarks
|
|
3740
|
-
* The region ID
|
|
3867
|
+
* The region ID.
|
|
3741
3868
|
*
|
|
3742
3869
|
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/454314.html) operation to query the most recent region list.
|
|
3743
3870
|
*
|
|
@@ -4589,7 +4716,7 @@ export declare class DescribeBackupPolicyResponseBody extends $tea.Model {
|
|
|
4589
4716
|
logBackupRetentionPeriod?: number;
|
|
4590
4717
|
/**
|
|
4591
4718
|
* @remarks
|
|
4592
|
-
* The cycle based on which backups are performed. If more than one day of the week
|
|
4719
|
+
* 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
4720
|
*
|
|
4594
4721
|
* * Monday
|
|
4595
4722
|
* * Tuesday
|
|
@@ -4797,6 +4924,7 @@ export declare class DescribeClusterAccessWhiteListRequest extends $tea.Model {
|
|
|
4797
4924
|
* amv-bp11q28kvl688****
|
|
4798
4925
|
*/
|
|
4799
4926
|
DBClusterId?: string;
|
|
4927
|
+
regionId?: string;
|
|
4800
4928
|
resourceOwnerAccount?: string;
|
|
4801
4929
|
static names(): {
|
|
4802
4930
|
[key: string]: string;
|
|
@@ -4964,7 +5092,7 @@ export declare class DescribeClusterResourceDetailResponseBody extends $tea.Mode
|
|
|
4964
5092
|
code?: number;
|
|
4965
5093
|
/**
|
|
4966
5094
|
* @remarks
|
|
4967
|
-
* The
|
|
5095
|
+
* The queried resource usage.
|
|
4968
5096
|
*/
|
|
4969
5097
|
data?: DescribeClusterResourceDetailResponseBodyData;
|
|
4970
5098
|
/**
|
|
@@ -5924,7 +6052,7 @@ export declare class DescribeDBClustersResponse extends $tea.Model {
|
|
|
5924
6052
|
export declare class DescribeDBResourceGroupRequest extends $tea.Model {
|
|
5925
6053
|
/**
|
|
5926
6054
|
* @remarks
|
|
5927
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
6055
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
5928
6056
|
*
|
|
5929
6057
|
* This parameter is required.
|
|
5930
6058
|
*
|
|
@@ -5949,7 +6077,7 @@ export declare class DescribeDBResourceGroupRequest extends $tea.Model {
|
|
|
5949
6077
|
* * **Interactive**
|
|
5950
6078
|
* * **Job**
|
|
5951
6079
|
*
|
|
5952
|
-
* >
|
|
6080
|
+
* > For more information about resource groups, see [Resource group overview](https://help.aliyun.com/document_detail/428610.html).
|
|
5953
6081
|
*
|
|
5954
6082
|
* @example
|
|
5955
6083
|
* Job
|
|
@@ -5979,7 +6107,7 @@ export declare class DescribeDBResourceGroupRequest extends $tea.Model {
|
|
|
5979
6107
|
export declare class DescribeDBResourceGroupResponseBody extends $tea.Model {
|
|
5980
6108
|
/**
|
|
5981
6109
|
* @remarks
|
|
5982
|
-
* The queried resource
|
|
6110
|
+
* The queried resource groups.
|
|
5983
6111
|
*/
|
|
5984
6112
|
groupsInfo?: DescribeDBResourceGroupResponseBodyGroupsInfo[];
|
|
5985
6113
|
/**
|
|
@@ -7016,7 +7144,7 @@ export declare class DescribeElasticPlansRequest extends $tea.Model {
|
|
|
7016
7144
|
* @remarks
|
|
7017
7145
|
* The cluster ID.
|
|
7018
7146
|
*
|
|
7019
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/612397.html) operation to query the IDs of all AnalyticDB for MySQL
|
|
7147
|
+
* > 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.
|
|
7020
7148
|
*
|
|
7021
7149
|
* This parameter is required.
|
|
7022
7150
|
*
|
|
@@ -7038,8 +7166,8 @@ export declare class DescribeElasticPlansRequest extends $tea.Model {
|
|
|
7038
7166
|
* @remarks
|
|
7039
7167
|
* Specifies whether to query the scaling plans that are immediately enabled after the plans are created. Valid values:
|
|
7040
7168
|
*
|
|
7041
|
-
* * true
|
|
7042
|
-
* * false
|
|
7169
|
+
* * **true**
|
|
7170
|
+
* * **false**
|
|
7043
7171
|
*
|
|
7044
7172
|
* @example
|
|
7045
7173
|
* true
|
|
@@ -7080,7 +7208,8 @@ export declare class DescribeElasticPlansRequest extends $tea.Model {
|
|
|
7080
7208
|
* @remarks
|
|
7081
7209
|
* The type of the scaling plan. Valid values:
|
|
7082
7210
|
*
|
|
7083
|
-
* EXECUTOR
|
|
7211
|
+
* * **EXECUTOR**: the interactive resource group type, which specifies the computing resource type.
|
|
7212
|
+
* * **WORKER**: the EIU type.
|
|
7084
7213
|
*
|
|
7085
7214
|
* @example
|
|
7086
7215
|
* EXECUTOR
|
|
@@ -8066,7 +8195,7 @@ export declare class DescribeSQLPatternsResponseBody extends $tea.Model {
|
|
|
8066
8195
|
pageSize?: number;
|
|
8067
8196
|
/**
|
|
8068
8197
|
* @remarks
|
|
8069
|
-
* The queried SQL
|
|
8198
|
+
* The queried SQL patterns.
|
|
8070
8199
|
*/
|
|
8071
8200
|
patternDetails?: DescribeSQLPatternsResponseBodyPatternDetails[];
|
|
8072
8201
|
/**
|
|
@@ -8114,7 +8243,7 @@ export declare class DescribeSQLPatternsResponse extends $tea.Model {
|
|
|
8114
8243
|
export declare class DescribeSchemasRequest extends $tea.Model {
|
|
8115
8244
|
/**
|
|
8116
8245
|
* @remarks
|
|
8117
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
8246
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
8118
8247
|
*
|
|
8119
8248
|
* This parameter is required.
|
|
8120
8249
|
*
|
|
@@ -8185,9 +8314,9 @@ export declare class DescribeSchemasResponse extends $tea.Model {
|
|
|
8185
8314
|
export declare class DescribeSparkCodeLogRequest extends $tea.Model {
|
|
8186
8315
|
/**
|
|
8187
8316
|
* @remarks
|
|
8188
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
8317
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
8189
8318
|
*
|
|
8190
|
-
* >
|
|
8319
|
+
* > 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
8320
|
*
|
|
8192
8321
|
* This parameter is required.
|
|
8193
8322
|
*
|
|
@@ -8944,7 +9073,7 @@ export declare class DescribeTableAccessCountResponse extends $tea.Model {
|
|
|
8944
9073
|
export declare class DescribeTablesRequest extends $tea.Model {
|
|
8945
9074
|
/**
|
|
8946
9075
|
* @remarks
|
|
8947
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
9076
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
8948
9077
|
*
|
|
8949
9078
|
* This parameter is required.
|
|
8950
9079
|
*
|
|
@@ -9854,9 +9983,9 @@ export declare class GetSparkAppInfoRequest extends $tea.Model {
|
|
|
9854
9983
|
appId?: string;
|
|
9855
9984
|
/**
|
|
9856
9985
|
* @remarks
|
|
9857
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
9986
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
9858
9987
|
*
|
|
9859
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/612397.html) operation to query the IDs of all AnalyticDB for MySQL
|
|
9988
|
+
* > 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
9989
|
*
|
|
9861
9990
|
* @example
|
|
9862
9991
|
* am-bp11q28kvl688****
|
|
@@ -10687,7 +10816,7 @@ export declare class GetSparkTemplateFolderTreeResponse extends $tea.Model {
|
|
|
10687
10816
|
export declare class GetSparkTemplateFullTreeRequest extends $tea.Model {
|
|
10688
10817
|
/**
|
|
10689
10818
|
* @remarks
|
|
10690
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
10819
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
10691
10820
|
*
|
|
10692
10821
|
* This parameter is required.
|
|
10693
10822
|
*
|
|
@@ -12084,7 +12213,7 @@ export declare class ListSparkLogAnalyzeTasksResponse extends $tea.Model {
|
|
|
12084
12213
|
export declare class ListSparkTemplateFileIdsRequest extends $tea.Model {
|
|
12085
12214
|
/**
|
|
12086
12215
|
* @remarks
|
|
12087
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
12216
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
12088
12217
|
*
|
|
12089
12218
|
* @example
|
|
12090
12219
|
* amv-bp11q28kvl688****
|
|
@@ -12447,9 +12576,9 @@ export declare class ModifyAuditLogConfigRequest extends $tea.Model {
|
|
|
12447
12576
|
auditLogStatus?: string;
|
|
12448
12577
|
/**
|
|
12449
12578
|
* @remarks
|
|
12450
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
12579
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
12451
12580
|
*
|
|
12452
|
-
* >
|
|
12581
|
+
* > 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
12582
|
*
|
|
12454
12583
|
* This parameter is required.
|
|
12455
12584
|
*
|
|
@@ -12462,9 +12591,9 @@ export declare class ModifyAuditLogConfigRequest extends $tea.Model {
|
|
|
12462
12591
|
ownerId?: number;
|
|
12463
12592
|
/**
|
|
12464
12593
|
* @remarks
|
|
12465
|
-
* The region ID.
|
|
12594
|
+
* The region ID of the cluster.
|
|
12466
12595
|
*
|
|
12467
|
-
* >
|
|
12596
|
+
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/454314.html) operation to query the most recent region list.
|
|
12468
12597
|
*
|
|
12469
12598
|
* This parameter is required.
|
|
12470
12599
|
*
|
|
@@ -12863,7 +12992,7 @@ export declare class ModifyClusterConnectionStringResponse extends $tea.Model {
|
|
|
12863
12992
|
export declare class ModifyDBClusterRequest extends $tea.Model {
|
|
12864
12993
|
/**
|
|
12865
12994
|
* @remarks
|
|
12866
|
-
* The reserved computing resources.
|
|
12995
|
+
* 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
12996
|
*
|
|
12868
12997
|
* > This parameter must be specified with a unit.
|
|
12869
12998
|
*
|
|
@@ -12896,6 +13025,11 @@ export declare class ModifyDBClusterRequest extends $tea.Model {
|
|
|
12896
13025
|
enableDefaultResourcePool?: boolean;
|
|
12897
13026
|
ownerAccount?: string;
|
|
12898
13027
|
ownerId?: number;
|
|
13028
|
+
/**
|
|
13029
|
+
* @example
|
|
13030
|
+
* LegacyForm
|
|
13031
|
+
*/
|
|
13032
|
+
productForm?: string;
|
|
12899
13033
|
/**
|
|
12900
13034
|
* @remarks
|
|
12901
13035
|
* The region ID of the cluster.
|
|
@@ -12911,7 +13045,7 @@ export declare class ModifyDBClusterRequest extends $tea.Model {
|
|
|
12911
13045
|
resourceOwnerAccount?: string;
|
|
12912
13046
|
/**
|
|
12913
13047
|
* @remarks
|
|
12914
|
-
* The reserved storage resources.
|
|
13048
|
+
* 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
13049
|
*
|
|
12916
13050
|
* > This parameter must be specified with a unit.
|
|
12917
13051
|
*
|
|
@@ -13195,15 +13329,16 @@ export declare class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
13195
13329
|
maxClusterCount?: number;
|
|
13196
13330
|
/**
|
|
13197
13331
|
* @remarks
|
|
13198
|
-
* The maximum amount of reserved computing resources.
|
|
13332
|
+
* The maximum amount of reserved computing resources.
|
|
13199
13333
|
*
|
|
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
|
|
13334
|
+
* * 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.
|
|
13335
|
+
* * 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
13336
|
*
|
|
13203
13337
|
* @example
|
|
13204
13338
|
* 48ACU
|
|
13205
13339
|
*/
|
|
13206
13340
|
maxComputeResource?: string;
|
|
13341
|
+
maxGpuQuantity?: number;
|
|
13207
13342
|
/**
|
|
13208
13343
|
* @remarks
|
|
13209
13344
|
* A reserved parameter.
|
|
@@ -13214,7 +13349,7 @@ export declare class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
13214
13349
|
minClusterCount?: number;
|
|
13215
13350
|
/**
|
|
13216
13351
|
* @remarks
|
|
13217
|
-
* The minimum amount of reserved computing resources.
|
|
13352
|
+
* The minimum amount of reserved computing resources.
|
|
13218
13353
|
*
|
|
13219
13354
|
* * If the GroupType parameter is set to Interactive, set the value to 16ACU.
|
|
13220
13355
|
* * If GroupType is set to Job, set the value to 0ACU.
|
|
@@ -13223,6 +13358,7 @@ export declare class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
13223
13358
|
* 0ACU
|
|
13224
13359
|
*/
|
|
13225
13360
|
minComputeResource?: string;
|
|
13361
|
+
minGpuQuantity?: number;
|
|
13226
13362
|
/**
|
|
13227
13363
|
* @remarks
|
|
13228
13364
|
* The region ID of the cluster.
|
|
@@ -13238,6 +13374,8 @@ export declare class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
13238
13374
|
* The job resubmission rules.
|
|
13239
13375
|
*/
|
|
13240
13376
|
rules?: ModifyDBResourceGroupRequestRules[];
|
|
13377
|
+
specName?: string;
|
|
13378
|
+
targetResourceGroupName?: string;
|
|
13241
13379
|
static names(): {
|
|
13242
13380
|
[key: string]: string;
|
|
13243
13381
|
};
|
|
@@ -13324,15 +13462,16 @@ export declare class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
13324
13462
|
maxClusterCount?: number;
|
|
13325
13463
|
/**
|
|
13326
13464
|
* @remarks
|
|
13327
|
-
* The maximum amount of reserved computing resources.
|
|
13465
|
+
* The maximum amount of reserved computing resources.
|
|
13328
13466
|
*
|
|
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
|
|
13467
|
+
* * 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.
|
|
13468
|
+
* * 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
13469
|
*
|
|
13332
13470
|
* @example
|
|
13333
13471
|
* 48ACU
|
|
13334
13472
|
*/
|
|
13335
13473
|
maxComputeResource?: string;
|
|
13474
|
+
maxGpuQuantity?: number;
|
|
13336
13475
|
/**
|
|
13337
13476
|
* @remarks
|
|
13338
13477
|
* A reserved parameter.
|
|
@@ -13343,7 +13482,7 @@ export declare class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
13343
13482
|
minClusterCount?: number;
|
|
13344
13483
|
/**
|
|
13345
13484
|
* @remarks
|
|
13346
|
-
* The minimum amount of reserved computing resources.
|
|
13485
|
+
* The minimum amount of reserved computing resources.
|
|
13347
13486
|
*
|
|
13348
13487
|
* * If the GroupType parameter is set to Interactive, set the value to 16ACU.
|
|
13349
13488
|
* * If GroupType is set to Job, set the value to 0ACU.
|
|
@@ -13352,6 +13491,7 @@ export declare class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
13352
13491
|
* 0ACU
|
|
13353
13492
|
*/
|
|
13354
13493
|
minComputeResource?: string;
|
|
13494
|
+
minGpuQuantity?: number;
|
|
13355
13495
|
/**
|
|
13356
13496
|
* @remarks
|
|
13357
13497
|
* The region ID of the cluster.
|
|
@@ -13367,6 +13507,8 @@ export declare class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
13367
13507
|
* The job resubmission rules.
|
|
13368
13508
|
*/
|
|
13369
13509
|
rulesShrink?: string;
|
|
13510
|
+
specName?: string;
|
|
13511
|
+
targetResourceGroupName?: string;
|
|
13370
13512
|
static names(): {
|
|
13371
13513
|
[key: string]: string;
|
|
13372
13514
|
};
|
|
@@ -13527,9 +13669,9 @@ export declare class ModifyElasticPlanResponse extends $tea.Model {
|
|
|
13527
13669
|
export declare class ModifyPerformanceViewRequest extends $tea.Model {
|
|
13528
13670
|
/**
|
|
13529
13671
|
* @remarks
|
|
13530
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
13672
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
13531
13673
|
*
|
|
13532
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/612397.html) operation to query the IDs of all AnalyticDB for MySQL
|
|
13674
|
+
* > 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
13675
|
*
|
|
13534
13676
|
* This parameter is required.
|
|
13535
13677
|
*
|
|
@@ -13580,9 +13722,9 @@ export declare class ModifyPerformanceViewRequest extends $tea.Model {
|
|
|
13580
13722
|
export declare class ModifyPerformanceViewShrinkRequest extends $tea.Model {
|
|
13581
13723
|
/**
|
|
13582
13724
|
* @remarks
|
|
13583
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
13725
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
13584
13726
|
*
|
|
13585
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/612397.html) operation to query the IDs of all AnalyticDB for MySQL
|
|
13727
|
+
* > 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
13728
|
*
|
|
13587
13729
|
* This parameter is required.
|
|
13588
13730
|
*
|
|
@@ -16027,7 +16169,7 @@ export declare class DescribeClusterResourceDetailResponseBodyDataResourceGroupL
|
|
|
16027
16169
|
maxClusterCount?: number;
|
|
16028
16170
|
/**
|
|
16029
16171
|
* @remarks
|
|
16030
|
-
* The maximum amount of reserved computing resources.
|
|
16172
|
+
* The maximum amount of reserved computing resources.
|
|
16031
16173
|
*
|
|
16032
16174
|
* @example
|
|
16033
16175
|
* 128ACU
|
|
@@ -16043,7 +16185,7 @@ export declare class DescribeClusterResourceDetailResponseBodyDataResourceGroupL
|
|
|
16043
16185
|
minClusterCount?: number;
|
|
16044
16186
|
/**
|
|
16045
16187
|
* @remarks
|
|
16046
|
-
* The minimum amount of reserved computing resources.
|
|
16188
|
+
* The minimum amount of reserved computing resources.
|
|
16047
16189
|
*
|
|
16048
16190
|
* @example
|
|
16049
16191
|
* 16ACU
|
|
@@ -16122,7 +16264,7 @@ export declare class DescribeClusterResourceDetailResponseBodyData extends $tea.
|
|
|
16122
16264
|
computeResource?: string;
|
|
16123
16265
|
/**
|
|
16124
16266
|
* @remarks
|
|
16125
|
-
* The ID
|
|
16267
|
+
* The cluster ID.
|
|
16126
16268
|
*
|
|
16127
16269
|
* @example
|
|
16128
16270
|
* amv-adbxxxxx
|
|
@@ -17864,7 +18006,7 @@ export declare class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.
|
|
|
17864
18006
|
createTime?: string;
|
|
17865
18007
|
/**
|
|
17866
18008
|
* @remarks
|
|
17867
|
-
* The minimum amount of elastic computing resources.
|
|
18009
|
+
* The minimum amount of elastic computing resources.
|
|
17868
18010
|
*
|
|
17869
18011
|
* @example
|
|
17870
18012
|
* 16ACU
|
|
@@ -17926,12 +18068,13 @@ export declare class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.
|
|
|
17926
18068
|
maxClusterCount?: number;
|
|
17927
18069
|
/**
|
|
17928
18070
|
* @remarks
|
|
17929
|
-
* The maximum amount of reserved computing resources.
|
|
18071
|
+
* The maximum amount of reserved computing resources.
|
|
17930
18072
|
*
|
|
17931
18073
|
* @example
|
|
17932
18074
|
* 512ACU
|
|
17933
18075
|
*/
|
|
17934
18076
|
maxComputeResource?: string;
|
|
18077
|
+
maxGpuQuantity?: number;
|
|
17935
18078
|
/**
|
|
17936
18079
|
* @remarks
|
|
17937
18080
|
* This parameter is required.
|
|
@@ -17947,12 +18090,13 @@ export declare class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.
|
|
|
17947
18090
|
minClusterCount?: number;
|
|
17948
18091
|
/**
|
|
17949
18092
|
* @remarks
|
|
17950
|
-
* The minimum amount of reserved computing resources.
|
|
18093
|
+
* The minimum amount of reserved computing resources.
|
|
17951
18094
|
*
|
|
17952
18095
|
* @example
|
|
17953
18096
|
* 0ACU
|
|
17954
18097
|
*/
|
|
17955
18098
|
minComputeResource?: string;
|
|
18099
|
+
minGpuQuantity?: number;
|
|
17956
18100
|
/**
|
|
17957
18101
|
* @remarks
|
|
17958
18102
|
* The job resubmission rules.
|
|
@@ -17966,6 +18110,7 @@ export declare class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.
|
|
|
17966
18110
|
* N/A
|
|
17967
18111
|
*/
|
|
17968
18112
|
runningClusterCount?: number;
|
|
18113
|
+
specName?: string;
|
|
17969
18114
|
/**
|
|
17970
18115
|
* @remarks
|
|
17971
18116
|
* The status of the resource group. Valid values:
|
|
@@ -17978,6 +18123,7 @@ export declare class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.
|
|
|
17978
18123
|
* ok
|
|
17979
18124
|
*/
|
|
17980
18125
|
status?: string;
|
|
18126
|
+
targetResourceGroupName?: string;
|
|
17981
18127
|
/**
|
|
17982
18128
|
* @remarks
|
|
17983
18129
|
* 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.
|
|
@@ -17996,6 +18142,19 @@ export declare class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.
|
|
|
17996
18142
|
[key: string]: any;
|
|
17997
18143
|
});
|
|
17998
18144
|
}
|
|
18145
|
+
export declare class DescribeDiagnosisRecordsResponseBodyQuerysQueryProperties extends $tea.Model {
|
|
18146
|
+
name?: string;
|
|
18147
|
+
value?: string;
|
|
18148
|
+
static names(): {
|
|
18149
|
+
[key: string]: string;
|
|
18150
|
+
};
|
|
18151
|
+
static types(): {
|
|
18152
|
+
[key: string]: any;
|
|
18153
|
+
};
|
|
18154
|
+
constructor(map?: {
|
|
18155
|
+
[key: string]: any;
|
|
18156
|
+
});
|
|
18157
|
+
}
|
|
17999
18158
|
export declare class DescribeDiagnosisRecordsResponseBodyQuerys extends $tea.Model {
|
|
18000
18159
|
/**
|
|
18001
18160
|
* @remarks
|
|
@@ -18071,6 +18230,7 @@ export declare class DescribeDiagnosisRecordsResponseBodyQuerys extends $tea.Mod
|
|
|
18071
18230
|
* 2021093000414401000000023503151******
|
|
18072
18231
|
*/
|
|
18073
18232
|
processId?: string;
|
|
18233
|
+
queryProperties?: DescribeDiagnosisRecordsResponseBodyQuerysQueryProperties[];
|
|
18074
18234
|
/**
|
|
18075
18235
|
* @remarks
|
|
18076
18236
|
* The amount of time that is consumed for queuing. Unit: milliseconds.
|
|
@@ -18563,8 +18723,8 @@ export declare class DescribeElasticPlansResponseBodyElasticPlans extends $tea.M
|
|
|
18563
18723
|
* @remarks
|
|
18564
18724
|
* Indicates whether **Proportional Default Scaling for EIUs** is enabled. Valid values:
|
|
18565
18725
|
*
|
|
18566
|
-
* * true
|
|
18567
|
-
* * false
|
|
18726
|
+
* * **true**
|
|
18727
|
+
* * **false**
|
|
18568
18728
|
*
|
|
18569
18729
|
* @example
|
|
18570
18730
|
* false
|
|
@@ -18580,10 +18740,10 @@ export declare class DescribeElasticPlansResponseBodyElasticPlans extends $tea.M
|
|
|
18580
18740
|
elasticPlanName?: string;
|
|
18581
18741
|
/**
|
|
18582
18742
|
* @remarks
|
|
18583
|
-
* Indicates whether the scaling plan
|
|
18743
|
+
* Indicates whether the scaling plan is immediately enabled after the plan is created. Valid values:
|
|
18584
18744
|
*
|
|
18585
|
-
* * true
|
|
18586
|
-
* * false
|
|
18745
|
+
* * **true**
|
|
18746
|
+
* * **false**
|
|
18587
18747
|
*
|
|
18588
18748
|
* @example
|
|
18589
18749
|
* true
|
|
@@ -18621,8 +18781,8 @@ export declare class DescribeElasticPlansResponseBodyElasticPlans extends $tea.M
|
|
|
18621
18781
|
* @remarks
|
|
18622
18782
|
* The type of the scaling plan. Valid values:
|
|
18623
18783
|
*
|
|
18624
|
-
* * EXECUTOR
|
|
18625
|
-
* * WORKER
|
|
18784
|
+
* * **EXECUTOR**: the interactive resource group type, which specifies the computing resource type.
|
|
18785
|
+
* * **WORKER**: the EIU type.
|
|
18626
18786
|
*
|
|
18627
18787
|
* @example
|
|
18628
18788
|
* EXECUTOR
|
|
@@ -19382,7 +19542,7 @@ export declare class DescribeSQLPatternsResponseBodyPatternDetails extends $tea.
|
|
|
19382
19542
|
export declare class DescribeSchemasResponseBodyItemsSchema extends $tea.Model {
|
|
19383
19543
|
/**
|
|
19384
19544
|
* @remarks
|
|
19385
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
19545
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
19386
19546
|
*
|
|
19387
19547
|
* @example
|
|
19388
19548
|
* amv-bp11q28kvl688****
|
|
@@ -19682,7 +19842,7 @@ export declare class DescribeTableAccessCountResponseBodyItems extends $tea.Mode
|
|
|
19682
19842
|
export declare class DescribeTablesResponseBodyItemsTable extends $tea.Model {
|
|
19683
19843
|
/**
|
|
19684
19844
|
* @remarks
|
|
19685
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
19845
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
19686
19846
|
*
|
|
19687
19847
|
* @example
|
|
19688
19848
|
* amv-bp1xxxxxxxx47
|
|
@@ -19783,7 +19943,7 @@ export declare class GetSparkAppAttemptLogResponseBodyData extends $tea.Model {
|
|
|
19783
19943
|
appId?: string;
|
|
19784
19944
|
/**
|
|
19785
19945
|
* @remarks
|
|
19786
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
19946
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
19787
19947
|
*
|
|
19788
19948
|
* @example
|
|
19789
19949
|
* amv-clusterxxx
|
|
@@ -21500,9 +21660,9 @@ export default class Client extends OpenApi {
|
|
|
21500
21660
|
* Deletes Spark template files.
|
|
21501
21661
|
*
|
|
21502
21662
|
* @remarks
|
|
21503
|
-
*
|
|
21504
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
21663
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
21505
21664
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
21665
|
+
* > 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.
|
|
21506
21666
|
*
|
|
21507
21667
|
* @param request - DeleteSparkTemplateFileRequest
|
|
21508
21668
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -21513,9 +21673,9 @@ export default class Client extends OpenApi {
|
|
|
21513
21673
|
* Deletes Spark template files.
|
|
21514
21674
|
*
|
|
21515
21675
|
* @remarks
|
|
21516
|
-
*
|
|
21517
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
21676
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
21518
21677
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
21678
|
+
* > 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.
|
|
21519
21679
|
*
|
|
21520
21680
|
* @param request - DeleteSparkTemplateFileRequest
|
|
21521
21681
|
* @returns DeleteSparkTemplateFileResponse
|
|
@@ -21600,7 +21760,7 @@ export default class Client extends OpenApi {
|
|
|
21600
21760
|
*/
|
|
21601
21761
|
describeAccounts(request: DescribeAccountsRequest): Promise<DescribeAccountsResponse>;
|
|
21602
21762
|
/**
|
|
21603
|
-
* Queries the information about table columns for an AnalyticDB for MySQL
|
|
21763
|
+
* Queries the information about table columns for an AnalyticDB for MySQL cluster.
|
|
21604
21764
|
*
|
|
21605
21765
|
* @remarks
|
|
21606
21766
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -21612,7 +21772,7 @@ export default class Client extends OpenApi {
|
|
|
21612
21772
|
*/
|
|
21613
21773
|
describeAdbMySqlColumnsWithOptions(request: DescribeAdbMySqlColumnsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAdbMySqlColumnsResponse>;
|
|
21614
21774
|
/**
|
|
21615
|
-
* Queries the information about table columns for an AnalyticDB for MySQL
|
|
21775
|
+
* Queries the information about table columns for an AnalyticDB for MySQL cluster.
|
|
21616
21776
|
*
|
|
21617
21777
|
* @remarks
|
|
21618
21778
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -21623,7 +21783,7 @@ export default class Client extends OpenApi {
|
|
|
21623
21783
|
*/
|
|
21624
21784
|
describeAdbMySqlColumns(request: DescribeAdbMySqlColumnsRequest): Promise<DescribeAdbMySqlColumnsResponse>;
|
|
21625
21785
|
/**
|
|
21626
|
-
* Queries a list of databases for an AnalyticDB for MySQL
|
|
21786
|
+
* Queries a list of databases for an AnalyticDB for MySQL cluster.
|
|
21627
21787
|
*
|
|
21628
21788
|
* @remarks
|
|
21629
21789
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -21635,7 +21795,7 @@ export default class Client extends OpenApi {
|
|
|
21635
21795
|
*/
|
|
21636
21796
|
describeAdbMySqlSchemasWithOptions(request: DescribeAdbMySqlSchemasRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAdbMySqlSchemasResponse>;
|
|
21637
21797
|
/**
|
|
21638
|
-
* Queries a list of databases for an AnalyticDB for MySQL
|
|
21798
|
+
* Queries a list of databases for an AnalyticDB for MySQL cluster.
|
|
21639
21799
|
*
|
|
21640
21800
|
* @remarks
|
|
21641
21801
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -21646,7 +21806,7 @@ export default class Client extends OpenApi {
|
|
|
21646
21806
|
*/
|
|
21647
21807
|
describeAdbMySqlSchemas(request: DescribeAdbMySqlSchemasRequest): Promise<DescribeAdbMySqlSchemasResponse>;
|
|
21648
21808
|
/**
|
|
21649
|
-
* Queries a list of tables for an AnalyticDB for MySQL
|
|
21809
|
+
* Queries a list of tables for an AnalyticDB for MySQL cluster.
|
|
21650
21810
|
*
|
|
21651
21811
|
* @remarks
|
|
21652
21812
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -21658,7 +21818,7 @@ export default class Client extends OpenApi {
|
|
|
21658
21818
|
*/
|
|
21659
21819
|
describeAdbMySqlTablesWithOptions(request: DescribeAdbMySqlTablesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAdbMySqlTablesResponse>;
|
|
21660
21820
|
/**
|
|
21661
|
-
* Queries a list of tables for an AnalyticDB for MySQL
|
|
21821
|
+
* Queries a list of tables for an AnalyticDB for MySQL cluster.
|
|
21662
21822
|
*
|
|
21663
21823
|
* @remarks
|
|
21664
21824
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -21839,10 +21999,10 @@ export default class Client extends OpenApi {
|
|
|
21839
21999
|
*/
|
|
21840
22000
|
describeClusterNetInfo(request: DescribeClusterNetInfoRequest): Promise<DescribeClusterNetInfoResponse>;
|
|
21841
22001
|
/**
|
|
21842
|
-
*
|
|
22002
|
+
* Queries the information about resource usage of an AnalyticDB for MySQL cluster.
|
|
21843
22003
|
*
|
|
21844
22004
|
* @remarks
|
|
21845
|
-
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
22005
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
21846
22006
|
*
|
|
21847
22007
|
* @param request - DescribeClusterResourceDetailRequest
|
|
21848
22008
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -21850,10 +22010,10 @@ export default class Client extends OpenApi {
|
|
|
21850
22010
|
*/
|
|
21851
22011
|
describeClusterResourceDetailWithOptions(request: DescribeClusterResourceDetailRequest, runtime: $Util.RuntimeOptions): Promise<DescribeClusterResourceDetailResponse>;
|
|
21852
22012
|
/**
|
|
21853
|
-
*
|
|
22013
|
+
* Queries the information about resource usage of an AnalyticDB for MySQL cluster.
|
|
21854
22014
|
*
|
|
21855
22015
|
* @remarks
|
|
21856
|
-
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
22016
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
21857
22017
|
*
|
|
21858
22018
|
* @param request - DescribeClusterResourceDetailRequest
|
|
21859
22019
|
* @returns DescribeClusterResourceDetailResponse
|
|
@@ -22213,10 +22373,10 @@ export default class Client extends OpenApi {
|
|
|
22213
22373
|
*/
|
|
22214
22374
|
describeElasticPlanSpecifications(request: DescribeElasticPlanSpecificationsRequest): Promise<DescribeElasticPlanSpecificationsResponse>;
|
|
22215
22375
|
/**
|
|
22216
|
-
* Queries scaling plans of an AnalyticDB for MySQL
|
|
22376
|
+
* Queries scaling plans of an AnalyticDB for MySQL cluster.
|
|
22217
22377
|
*
|
|
22218
22378
|
* @remarks
|
|
22219
|
-
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
22379
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
22220
22380
|
*
|
|
22221
22381
|
* @param request - DescribeElasticPlansRequest
|
|
22222
22382
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -22224,10 +22384,10 @@ export default class Client extends OpenApi {
|
|
|
22224
22384
|
*/
|
|
22225
22385
|
describeElasticPlansWithOptions(request: DescribeElasticPlansRequest, runtime: $Util.RuntimeOptions): Promise<DescribeElasticPlansResponse>;
|
|
22226
22386
|
/**
|
|
22227
|
-
* Queries scaling plans of an AnalyticDB for MySQL
|
|
22387
|
+
* Queries scaling plans of an AnalyticDB for MySQL cluster.
|
|
22228
22388
|
*
|
|
22229
22389
|
* @remarks
|
|
22230
|
-
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
22390
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
22231
22391
|
*
|
|
22232
22392
|
* @param request - DescribeElasticPlansRequest
|
|
22233
22393
|
* @returns DescribeElasticPlansResponse
|
|
@@ -22493,6 +22653,9 @@ export default class Client extends OpenApi {
|
|
|
22493
22653
|
/**
|
|
22494
22654
|
* Queries the storage resource usage of an AnalyticDB for MySQL Data Lakehouse Edition (V3.0) cluster.
|
|
22495
22655
|
*
|
|
22656
|
+
* @remarks
|
|
22657
|
+
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
22658
|
+
*
|
|
22496
22659
|
* @param request - DescribeStorageResourceUsageRequest
|
|
22497
22660
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
22498
22661
|
* @returns DescribeStorageResourceUsageResponse
|
|
@@ -22501,6 +22664,9 @@ export default class Client extends OpenApi {
|
|
|
22501
22664
|
/**
|
|
22502
22665
|
* Queries the storage resource usage of an AnalyticDB for MySQL Data Lakehouse Edition (V3.0) cluster.
|
|
22503
22666
|
*
|
|
22667
|
+
* @remarks
|
|
22668
|
+
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
22669
|
+
*
|
|
22504
22670
|
* @param request - DescribeStorageResourceUsageRequest
|
|
22505
22671
|
* @returns DescribeStorageResourceUsageResponse
|
|
22506
22672
|
*/
|
|
@@ -22702,9 +22868,9 @@ export default class Client extends OpenApi {
|
|
|
22702
22868
|
* Queries the information about the retry log of a Spark application.
|
|
22703
22869
|
*
|
|
22704
22870
|
* @remarks
|
|
22705
|
-
*
|
|
22706
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
22871
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
22707
22872
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
22873
|
+
* > 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.
|
|
22708
22874
|
*
|
|
22709
22875
|
* @param request - GetSparkAppAttemptLogRequest
|
|
22710
22876
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -22715,9 +22881,9 @@ export default class Client extends OpenApi {
|
|
|
22715
22881
|
* Queries the information about the retry log of a Spark application.
|
|
22716
22882
|
*
|
|
22717
22883
|
* @remarks
|
|
22718
|
-
*
|
|
22719
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
22884
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
22720
22885
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
22886
|
+
* > 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.
|
|
22721
22887
|
*
|
|
22722
22888
|
* @param request - GetSparkAppAttemptLogRequest
|
|
22723
22889
|
* @returns GetSparkAppAttemptLogResponse
|
|
@@ -23002,9 +23168,9 @@ export default class Client extends OpenApi {
|
|
|
23002
23168
|
* Queries the directory structure of Spark applications.
|
|
23003
23169
|
*
|
|
23004
23170
|
* @remarks
|
|
23005
|
-
*
|
|
23006
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23171
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23007
23172
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
23173
|
+
* > 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.
|
|
23008
23174
|
*
|
|
23009
23175
|
* @param request - GetSparkTemplateFullTreeRequest
|
|
23010
23176
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -23015,9 +23181,9 @@ export default class Client extends OpenApi {
|
|
|
23015
23181
|
* Queries the directory structure of Spark applications.
|
|
23016
23182
|
*
|
|
23017
23183
|
* @remarks
|
|
23018
|
-
*
|
|
23019
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23184
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23020
23185
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
23186
|
+
* > 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.
|
|
23021
23187
|
*
|
|
23022
23188
|
* @param request - GetSparkTemplateFullTreeRequest
|
|
23023
23189
|
* @returns GetSparkTemplateFullTreeResponse
|
|
@@ -23289,9 +23455,9 @@ export default class Client extends OpenApi {
|
|
|
23289
23455
|
* Queries all Spark template file IDs of an AnalyticDB for MySQL Data Lakehouse Edition (V3.0) cluster.
|
|
23290
23456
|
*
|
|
23291
23457
|
* @remarks
|
|
23292
|
-
*
|
|
23293
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23458
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23294
23459
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
23460
|
+
* > 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.
|
|
23295
23461
|
*
|
|
23296
23462
|
* @param request - ListSparkTemplateFileIdsRequest
|
|
23297
23463
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -23302,9 +23468,9 @@ export default class Client extends OpenApi {
|
|
|
23302
23468
|
* Queries all Spark template file IDs of an AnalyticDB for MySQL Data Lakehouse Edition (V3.0) cluster.
|
|
23303
23469
|
*
|
|
23304
23470
|
* @remarks
|
|
23305
|
-
*
|
|
23306
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23471
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23307
23472
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
23473
|
+
* > 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.
|
|
23308
23474
|
*
|
|
23309
23475
|
* @param request - ListSparkTemplateFileIdsRequest
|
|
23310
23476
|
* @returns ListSparkTemplateFileIdsResponse
|
|
@@ -23685,9 +23851,9 @@ export default class Client extends OpenApi {
|
|
|
23685
23851
|
* Modifies the Spark log configuration.
|
|
23686
23852
|
*
|
|
23687
23853
|
* @remarks
|
|
23688
|
-
*
|
|
23689
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23854
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23690
23855
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
23856
|
+
* > 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.
|
|
23691
23857
|
*
|
|
23692
23858
|
* @param request - SetSparkAppLogRootPathRequest
|
|
23693
23859
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -23698,9 +23864,9 @@ export default class Client extends OpenApi {
|
|
|
23698
23864
|
* Modifies the Spark log configuration.
|
|
23699
23865
|
*
|
|
23700
23866
|
* @remarks
|
|
23701
|
-
*
|
|
23702
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23867
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
23703
23868
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
23869
|
+
* > 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.
|
|
23704
23870
|
*
|
|
23705
23871
|
* @param request - SetSparkAppLogRootPathRequest
|
|
23706
23872
|
* @returns SetSparkAppLogRootPathResponse
|