@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/src/client.ts
CHANGED
|
@@ -694,6 +694,174 @@ export class SparkAttemptInfo extends $tea.Model {
|
|
|
694
694
|
}
|
|
695
695
|
}
|
|
696
696
|
|
|
697
|
+
export class SparkBatchSQL extends $tea.Model {
|
|
698
|
+
/**
|
|
699
|
+
* @example
|
|
700
|
+
* amv-xxx
|
|
701
|
+
*/
|
|
702
|
+
DBClusterId?: string;
|
|
703
|
+
/**
|
|
704
|
+
* @example
|
|
705
|
+
* schema is not found
|
|
706
|
+
*/
|
|
707
|
+
errMessage?: string;
|
|
708
|
+
/**
|
|
709
|
+
* @example
|
|
710
|
+
* query
|
|
711
|
+
*/
|
|
712
|
+
query?: string;
|
|
713
|
+
/**
|
|
714
|
+
* @example
|
|
715
|
+
* 1723521767000
|
|
716
|
+
*/
|
|
717
|
+
queryEndTime?: number;
|
|
718
|
+
/**
|
|
719
|
+
* @example
|
|
720
|
+
* amv-202401-xx
|
|
721
|
+
*/
|
|
722
|
+
queryId?: string;
|
|
723
|
+
/**
|
|
724
|
+
* @example
|
|
725
|
+
* 1723521767000
|
|
726
|
+
*/
|
|
727
|
+
queryStartTime?: number;
|
|
728
|
+
/**
|
|
729
|
+
* @example
|
|
730
|
+
* RUNNING
|
|
731
|
+
*/
|
|
732
|
+
queryState?: string;
|
|
733
|
+
/**
|
|
734
|
+
* @example
|
|
735
|
+
* 1723521767000
|
|
736
|
+
*/
|
|
737
|
+
querySubmissionTime?: number;
|
|
738
|
+
/**
|
|
739
|
+
* @example
|
|
740
|
+
* spark_rg
|
|
741
|
+
*/
|
|
742
|
+
resourceGroupName?: string;
|
|
743
|
+
/**
|
|
744
|
+
* @example
|
|
745
|
+
* default
|
|
746
|
+
*/
|
|
747
|
+
schema?: string;
|
|
748
|
+
statements?: SparkBatchSQLStatement[];
|
|
749
|
+
/**
|
|
750
|
+
* @example
|
|
751
|
+
* 12222222
|
|
752
|
+
*/
|
|
753
|
+
uid?: number;
|
|
754
|
+
static names(): { [key: string]: string } {
|
|
755
|
+
return {
|
|
756
|
+
DBClusterId: 'DBClusterId',
|
|
757
|
+
errMessage: 'ErrMessage',
|
|
758
|
+
query: 'Query',
|
|
759
|
+
queryEndTime: 'QueryEndTime',
|
|
760
|
+
queryId: 'QueryId',
|
|
761
|
+
queryStartTime: 'QueryStartTime',
|
|
762
|
+
queryState: 'QueryState',
|
|
763
|
+
querySubmissionTime: 'QuerySubmissionTime',
|
|
764
|
+
resourceGroupName: 'ResourceGroupName',
|
|
765
|
+
schema: 'Schema',
|
|
766
|
+
statements: 'Statements',
|
|
767
|
+
uid: 'Uid',
|
|
768
|
+
};
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
static types(): { [key: string]: any } {
|
|
772
|
+
return {
|
|
773
|
+
DBClusterId: 'string',
|
|
774
|
+
errMessage: 'string',
|
|
775
|
+
query: 'string',
|
|
776
|
+
queryEndTime: 'number',
|
|
777
|
+
queryId: 'string',
|
|
778
|
+
queryStartTime: 'number',
|
|
779
|
+
queryState: 'string',
|
|
780
|
+
querySubmissionTime: 'number',
|
|
781
|
+
resourceGroupName: 'string',
|
|
782
|
+
schema: 'string',
|
|
783
|
+
statements: { 'type': 'array', 'itemType': SparkBatchSQLStatement },
|
|
784
|
+
uid: 'number',
|
|
785
|
+
};
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
constructor(map?: { [key: string]: any }) {
|
|
789
|
+
super(map);
|
|
790
|
+
}
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
export class SparkBatchSQLStatement extends $tea.Model {
|
|
794
|
+
/**
|
|
795
|
+
* @example
|
|
796
|
+
* SELECT 100
|
|
797
|
+
*/
|
|
798
|
+
code?: string;
|
|
799
|
+
/**
|
|
800
|
+
* @example
|
|
801
|
+
* 1723521767000
|
|
802
|
+
*/
|
|
803
|
+
endTime?: number;
|
|
804
|
+
/**
|
|
805
|
+
* @example
|
|
806
|
+
* table is not found
|
|
807
|
+
*/
|
|
808
|
+
error?: string;
|
|
809
|
+
/**
|
|
810
|
+
* @example
|
|
811
|
+
* JSON格式执行结果集
|
|
812
|
+
*/
|
|
813
|
+
result?: string;
|
|
814
|
+
/**
|
|
815
|
+
* @example
|
|
816
|
+
* oss://yourbucket/result.json
|
|
817
|
+
*/
|
|
818
|
+
resultUri?: string;
|
|
819
|
+
/**
|
|
820
|
+
* @example
|
|
821
|
+
* 1723521767000
|
|
822
|
+
*/
|
|
823
|
+
startTime?: number;
|
|
824
|
+
/**
|
|
825
|
+
* @example
|
|
826
|
+
* RUNNING
|
|
827
|
+
*/
|
|
828
|
+
state?: string;
|
|
829
|
+
/**
|
|
830
|
+
* @example
|
|
831
|
+
* amv-20240711-stmt
|
|
832
|
+
*/
|
|
833
|
+
statementId?: string;
|
|
834
|
+
static names(): { [key: string]: string } {
|
|
835
|
+
return {
|
|
836
|
+
code: 'Code',
|
|
837
|
+
endTime: 'EndTime',
|
|
838
|
+
error: 'Error',
|
|
839
|
+
result: 'Result',
|
|
840
|
+
resultUri: 'ResultUri',
|
|
841
|
+
startTime: 'StartTime',
|
|
842
|
+
state: 'State',
|
|
843
|
+
statementId: 'StatementId',
|
|
844
|
+
};
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
static types(): { [key: string]: any } {
|
|
848
|
+
return {
|
|
849
|
+
code: 'string',
|
|
850
|
+
endTime: 'number',
|
|
851
|
+
error: 'string',
|
|
852
|
+
result: 'string',
|
|
853
|
+
resultUri: 'string',
|
|
854
|
+
startTime: 'number',
|
|
855
|
+
state: 'string',
|
|
856
|
+
statementId: 'string',
|
|
857
|
+
};
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
constructor(map?: { [key: string]: any }) {
|
|
861
|
+
super(map);
|
|
862
|
+
}
|
|
863
|
+
}
|
|
864
|
+
|
|
697
865
|
export class SparkOperatorInfo extends $tea.Model {
|
|
698
866
|
metricValue?: number;
|
|
699
867
|
operatorName?: Buffer;
|
|
@@ -1947,7 +2115,17 @@ export class CreateDBClusterRequest extends $tea.Model {
|
|
|
1947
2115
|
backupSetId?: string;
|
|
1948
2116
|
/**
|
|
1949
2117
|
* @remarks
|
|
1950
|
-
* The
|
|
2118
|
+
* The region ID of the source cluster.
|
|
2119
|
+
*
|
|
2120
|
+
* > This parameter must be specified for cloning clusters across regions.
|
|
2121
|
+
*
|
|
2122
|
+
* @example
|
|
2123
|
+
* cn-beijing
|
|
2124
|
+
*/
|
|
2125
|
+
cloneSourceRegionId?: string;
|
|
2126
|
+
/**
|
|
2127
|
+
* @remarks
|
|
2128
|
+
* 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.
|
|
1951
2129
|
*
|
|
1952
2130
|
* > This parameter must be specified with a unit.
|
|
1953
2131
|
*
|
|
@@ -2079,7 +2257,7 @@ export class CreateDBClusterRequest extends $tea.Model {
|
|
|
2079
2257
|
sourceDbClusterId?: string;
|
|
2080
2258
|
/**
|
|
2081
2259
|
* @remarks
|
|
2082
|
-
* The amount of reserved storage resources.
|
|
2260
|
+
* 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.
|
|
2083
2261
|
*
|
|
2084
2262
|
* > This parameter must be specified with a unit.
|
|
2085
2263
|
*
|
|
@@ -2140,6 +2318,7 @@ export class CreateDBClusterRequest extends $tea.Model {
|
|
|
2140
2318
|
static names(): { [key: string]: string } {
|
|
2141
2319
|
return {
|
|
2142
2320
|
backupSetId: 'BackupSetId',
|
|
2321
|
+
cloneSourceRegionId: 'CloneSourceRegionId',
|
|
2143
2322
|
computeResource: 'ComputeResource',
|
|
2144
2323
|
DBClusterDescription: 'DBClusterDescription',
|
|
2145
2324
|
DBClusterNetworkType: 'DBClusterNetworkType',
|
|
@@ -2169,6 +2348,7 @@ export class CreateDBClusterRequest extends $tea.Model {
|
|
|
2169
2348
|
static types(): { [key: string]: any } {
|
|
2170
2349
|
return {
|
|
2171
2350
|
backupSetId: 'string',
|
|
2351
|
+
cloneSourceRegionId: 'string',
|
|
2172
2352
|
computeResource: 'string',
|
|
2173
2353
|
DBClusterDescription: 'string',
|
|
2174
2354
|
DBClusterNetworkType: 'string',
|
|
@@ -2342,7 +2522,7 @@ export class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
2342
2522
|
* * **Interactive**
|
|
2343
2523
|
* * **Job**
|
|
2344
2524
|
*
|
|
2345
|
-
* >
|
|
2525
|
+
* > For more information about resource groups, see [Resource group overview](https://help.aliyun.com/document_detail/428610.html).
|
|
2346
2526
|
*
|
|
2347
2527
|
* This parameter is required.
|
|
2348
2528
|
*
|
|
@@ -2360,15 +2540,16 @@ export class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
2360
2540
|
maxClusterCount?: number;
|
|
2361
2541
|
/**
|
|
2362
2542
|
* @remarks
|
|
2363
|
-
* The maximum reserved computing resources.
|
|
2543
|
+
* The maximum reserved computing resources.
|
|
2364
2544
|
*
|
|
2365
|
-
* * 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
|
|
2366
|
-
* * 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
|
|
2545
|
+
* * 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.
|
|
2546
|
+
* * 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.
|
|
2367
2547
|
*
|
|
2368
2548
|
* @example
|
|
2369
|
-
*
|
|
2549
|
+
* 48ACU
|
|
2370
2550
|
*/
|
|
2371
2551
|
maxComputeResource?: string;
|
|
2552
|
+
maxGpuQuantity?: number;
|
|
2372
2553
|
/**
|
|
2373
2554
|
* @remarks
|
|
2374
2555
|
* A reserved parameter.
|
|
@@ -2379,15 +2560,16 @@ export class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
2379
2560
|
minClusterCount?: number;
|
|
2380
2561
|
/**
|
|
2381
2562
|
* @remarks
|
|
2382
|
-
* The minimum reserved computing resources.
|
|
2563
|
+
* The minimum reserved computing resources.
|
|
2383
2564
|
*
|
|
2384
|
-
* * When GroupType is set to Interactive, set this parameter to
|
|
2385
|
-
* * When GroupType is set to Job, set this parameter to
|
|
2565
|
+
* * When GroupType is set to Interactive, set this parameter to 16ACU.
|
|
2566
|
+
* * When GroupType is set to Job, set this parameter to 0ACU.
|
|
2386
2567
|
*
|
|
2387
2568
|
* @example
|
|
2388
|
-
*
|
|
2569
|
+
* 0ACU
|
|
2389
2570
|
*/
|
|
2390
2571
|
minComputeResource?: string;
|
|
2572
|
+
minGpuQuantity?: number;
|
|
2391
2573
|
/**
|
|
2392
2574
|
* @remarks
|
|
2393
2575
|
* The region ID of the cluster.
|
|
@@ -2403,6 +2585,8 @@ export class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
2403
2585
|
* The job resubmission rules.
|
|
2404
2586
|
*/
|
|
2405
2587
|
rules?: CreateDBResourceGroupRequestRules[];
|
|
2588
|
+
specName?: string;
|
|
2589
|
+
targetResourceGroupName?: string;
|
|
2406
2590
|
static names(): { [key: string]: string } {
|
|
2407
2591
|
return {
|
|
2408
2592
|
clusterMode: 'ClusterMode',
|
|
@@ -2415,10 +2599,14 @@ export class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
2415
2599
|
groupType: 'GroupType',
|
|
2416
2600
|
maxClusterCount: 'MaxClusterCount',
|
|
2417
2601
|
maxComputeResource: 'MaxComputeResource',
|
|
2602
|
+
maxGpuQuantity: 'MaxGpuQuantity',
|
|
2418
2603
|
minClusterCount: 'MinClusterCount',
|
|
2419
2604
|
minComputeResource: 'MinComputeResource',
|
|
2605
|
+
minGpuQuantity: 'MinGpuQuantity',
|
|
2420
2606
|
regionId: 'RegionId',
|
|
2421
2607
|
rules: 'Rules',
|
|
2608
|
+
specName: 'SpecName',
|
|
2609
|
+
targetResourceGroupName: 'TargetResourceGroupName',
|
|
2422
2610
|
};
|
|
2423
2611
|
}
|
|
2424
2612
|
|
|
@@ -2434,10 +2622,14 @@ export class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
2434
2622
|
groupType: 'string',
|
|
2435
2623
|
maxClusterCount: 'number',
|
|
2436
2624
|
maxComputeResource: 'string',
|
|
2625
|
+
maxGpuQuantity: 'number',
|
|
2437
2626
|
minClusterCount: 'number',
|
|
2438
2627
|
minComputeResource: 'string',
|
|
2628
|
+
minGpuQuantity: 'number',
|
|
2439
2629
|
regionId: 'string',
|
|
2440
2630
|
rules: { 'type': 'array', 'itemType': CreateDBResourceGroupRequestRules },
|
|
2631
|
+
specName: 'string',
|
|
2632
|
+
targetResourceGroupName: 'string',
|
|
2441
2633
|
};
|
|
2442
2634
|
}
|
|
2443
2635
|
|
|
@@ -2507,7 +2699,7 @@ export class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
2507
2699
|
* * **Interactive**
|
|
2508
2700
|
* * **Job**
|
|
2509
2701
|
*
|
|
2510
|
-
* >
|
|
2702
|
+
* > For more information about resource groups, see [Resource group overview](https://help.aliyun.com/document_detail/428610.html).
|
|
2511
2703
|
*
|
|
2512
2704
|
* This parameter is required.
|
|
2513
2705
|
*
|
|
@@ -2525,15 +2717,16 @@ export class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
2525
2717
|
maxClusterCount?: number;
|
|
2526
2718
|
/**
|
|
2527
2719
|
* @remarks
|
|
2528
|
-
* The maximum reserved computing resources.
|
|
2720
|
+
* The maximum reserved computing resources.
|
|
2529
2721
|
*
|
|
2530
|
-
* * 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
|
|
2531
|
-
* * 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
|
|
2722
|
+
* * 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.
|
|
2723
|
+
* * 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.
|
|
2532
2724
|
*
|
|
2533
2725
|
* @example
|
|
2534
|
-
*
|
|
2726
|
+
* 48ACU
|
|
2535
2727
|
*/
|
|
2536
2728
|
maxComputeResource?: string;
|
|
2729
|
+
maxGpuQuantity?: number;
|
|
2537
2730
|
/**
|
|
2538
2731
|
* @remarks
|
|
2539
2732
|
* A reserved parameter.
|
|
@@ -2544,15 +2737,16 @@ export class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
2544
2737
|
minClusterCount?: number;
|
|
2545
2738
|
/**
|
|
2546
2739
|
* @remarks
|
|
2547
|
-
* The minimum reserved computing resources.
|
|
2740
|
+
* The minimum reserved computing resources.
|
|
2548
2741
|
*
|
|
2549
|
-
* * When GroupType is set to Interactive, set this parameter to
|
|
2550
|
-
* * When GroupType is set to Job, set this parameter to
|
|
2742
|
+
* * When GroupType is set to Interactive, set this parameter to 16ACU.
|
|
2743
|
+
* * When GroupType is set to Job, set this parameter to 0ACU.
|
|
2551
2744
|
*
|
|
2552
2745
|
* @example
|
|
2553
|
-
*
|
|
2746
|
+
* 0ACU
|
|
2554
2747
|
*/
|
|
2555
2748
|
minComputeResource?: string;
|
|
2749
|
+
minGpuQuantity?: number;
|
|
2556
2750
|
/**
|
|
2557
2751
|
* @remarks
|
|
2558
2752
|
* The region ID of the cluster.
|
|
@@ -2568,6 +2762,8 @@ export class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
2568
2762
|
* The job resubmission rules.
|
|
2569
2763
|
*/
|
|
2570
2764
|
rulesShrink?: string;
|
|
2765
|
+
specName?: string;
|
|
2766
|
+
targetResourceGroupName?: string;
|
|
2571
2767
|
static names(): { [key: string]: string } {
|
|
2572
2768
|
return {
|
|
2573
2769
|
clusterMode: 'ClusterMode',
|
|
@@ -2580,10 +2776,14 @@ export class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
2580
2776
|
groupType: 'GroupType',
|
|
2581
2777
|
maxClusterCount: 'MaxClusterCount',
|
|
2582
2778
|
maxComputeResource: 'MaxComputeResource',
|
|
2779
|
+
maxGpuQuantity: 'MaxGpuQuantity',
|
|
2583
2780
|
minClusterCount: 'MinClusterCount',
|
|
2584
2781
|
minComputeResource: 'MinComputeResource',
|
|
2782
|
+
minGpuQuantity: 'MinGpuQuantity',
|
|
2585
2783
|
regionId: 'RegionId',
|
|
2586
2784
|
rulesShrink: 'Rules',
|
|
2785
|
+
specName: 'SpecName',
|
|
2786
|
+
targetResourceGroupName: 'TargetResourceGroupName',
|
|
2587
2787
|
};
|
|
2588
2788
|
}
|
|
2589
2789
|
|
|
@@ -2599,10 +2799,14 @@ export class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
2599
2799
|
groupType: 'string',
|
|
2600
2800
|
maxClusterCount: 'number',
|
|
2601
2801
|
maxComputeResource: 'string',
|
|
2802
|
+
maxGpuQuantity: 'number',
|
|
2602
2803
|
minClusterCount: 'number',
|
|
2603
2804
|
minComputeResource: 'string',
|
|
2805
|
+
minGpuQuantity: 'number',
|
|
2604
2806
|
regionId: 'string',
|
|
2605
2807
|
rulesShrink: 'string',
|
|
2808
|
+
specName: 'string',
|
|
2809
|
+
targetResourceGroupName: 'string',
|
|
2606
2810
|
};
|
|
2607
2811
|
}
|
|
2608
2812
|
|
|
@@ -3010,6 +3214,9 @@ export class CreateOssSubDirectoryResponse extends $tea.Model {
|
|
|
3010
3214
|
|
|
3011
3215
|
export class CreatePerformanceViewRequest extends $tea.Model {
|
|
3012
3216
|
/**
|
|
3217
|
+
* @remarks
|
|
3218
|
+
* The type of the view.
|
|
3219
|
+
*
|
|
3013
3220
|
* @example
|
|
3014
3221
|
* Basic
|
|
3015
3222
|
*/
|
|
@@ -3062,7 +3269,12 @@ export class CreatePerformanceViewRequest extends $tea.Model {
|
|
|
3062
3269
|
viewDetail?: CreatePerformanceViewRequestViewDetail;
|
|
3063
3270
|
/**
|
|
3064
3271
|
* @remarks
|
|
3272
|
+
* The name of the view.
|
|
3273
|
+
*
|
|
3065
3274
|
* This parameter is required.
|
|
3275
|
+
*
|
|
3276
|
+
* @example
|
|
3277
|
+
* viewname
|
|
3066
3278
|
*/
|
|
3067
3279
|
viewName?: string;
|
|
3068
3280
|
static names(): { [key: string]: string } {
|
|
@@ -3102,6 +3314,9 @@ export class CreatePerformanceViewRequest extends $tea.Model {
|
|
|
3102
3314
|
|
|
3103
3315
|
export class CreatePerformanceViewShrinkRequest extends $tea.Model {
|
|
3104
3316
|
/**
|
|
3317
|
+
* @remarks
|
|
3318
|
+
* The type of the view.
|
|
3319
|
+
*
|
|
3105
3320
|
* @example
|
|
3106
3321
|
* Basic
|
|
3107
3322
|
*/
|
|
@@ -3154,7 +3369,12 @@ export class CreatePerformanceViewShrinkRequest extends $tea.Model {
|
|
|
3154
3369
|
viewDetailShrink?: string;
|
|
3155
3370
|
/**
|
|
3156
3371
|
* @remarks
|
|
3372
|
+
* The name of the view.
|
|
3373
|
+
*
|
|
3157
3374
|
* This parameter is required.
|
|
3375
|
+
*
|
|
3376
|
+
* @example
|
|
3377
|
+
* viewname
|
|
3158
3378
|
*/
|
|
3159
3379
|
viewName?: string;
|
|
3160
3380
|
static names(): { [key: string]: string } {
|
|
@@ -3194,6 +3414,11 @@ export class CreatePerformanceViewShrinkRequest extends $tea.Model {
|
|
|
3194
3414
|
|
|
3195
3415
|
export class CreatePerformanceViewResponseBody extends $tea.Model {
|
|
3196
3416
|
/**
|
|
3417
|
+
* @remarks
|
|
3418
|
+
* The details about the access denial.
|
|
3419
|
+
*
|
|
3420
|
+
* > This parameter is returned only if Resource Access Management (RAM) permission verification failed.
|
|
3421
|
+
*
|
|
3197
3422
|
* @example
|
|
3198
3423
|
* {
|
|
3199
3424
|
* "PolicyType": "AccountLevelIdentityBasedPolicy",
|
|
@@ -3218,6 +3443,9 @@ export class CreatePerformanceViewResponseBody extends $tea.Model {
|
|
|
3218
3443
|
*/
|
|
3219
3444
|
createStatus?: string;
|
|
3220
3445
|
/**
|
|
3446
|
+
* @remarks
|
|
3447
|
+
* The request ID.
|
|
3448
|
+
*
|
|
3221
3449
|
* @example
|
|
3222
3450
|
* E031AABF-BD56-5966-A063-4283EF18DB45
|
|
3223
3451
|
*/
|
|
@@ -3827,7 +4055,12 @@ export class DeletePerformanceViewRequest extends $tea.Model {
|
|
|
3827
4055
|
resourceOwnerId?: number;
|
|
3828
4056
|
/**
|
|
3829
4057
|
* @remarks
|
|
4058
|
+
* The name of the view.
|
|
4059
|
+
*
|
|
3830
4060
|
* This parameter is required.
|
|
4061
|
+
*
|
|
4062
|
+
* @example
|
|
4063
|
+
* view_dwd_plan_double_term
|
|
3831
4064
|
*/
|
|
3832
4065
|
viewName?: string;
|
|
3833
4066
|
static names(): { [key: string]: string } {
|
|
@@ -3879,11 +4112,17 @@ export class DeletePerformanceViewResponseBody extends $tea.Model {
|
|
|
3879
4112
|
*/
|
|
3880
4113
|
accessDeniedDetail?: string;
|
|
3881
4114
|
/**
|
|
4115
|
+
* @remarks
|
|
4116
|
+
* The delete status.
|
|
4117
|
+
*
|
|
3882
4118
|
* @example
|
|
3883
4119
|
* SUCCESS
|
|
3884
4120
|
*/
|
|
3885
4121
|
deleteStatus?: boolean;
|
|
3886
4122
|
/**
|
|
4123
|
+
* @remarks
|
|
4124
|
+
* The request ID.
|
|
4125
|
+
*
|
|
3887
4126
|
* @example
|
|
3888
4127
|
* 1AD222E9-E606-4A42-BF6D-8A4442913CEF
|
|
3889
4128
|
*/
|
|
@@ -4197,7 +4436,7 @@ export class DeleteSparkTemplateResponse extends $tea.Model {
|
|
|
4197
4436
|
export class DeleteSparkTemplateFileRequest extends $tea.Model {
|
|
4198
4437
|
/**
|
|
4199
4438
|
* @remarks
|
|
4200
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
4439
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
4201
4440
|
*
|
|
4202
4441
|
* This parameter is required.
|
|
4203
4442
|
*
|
|
@@ -4827,7 +5066,7 @@ export class DescribeAccountsRequest extends $tea.Model {
|
|
|
4827
5066
|
accountName?: string;
|
|
4828
5067
|
/**
|
|
4829
5068
|
* @remarks
|
|
4830
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
5069
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
4831
5070
|
*
|
|
4832
5071
|
* This parameter is required.
|
|
4833
5072
|
*
|
|
@@ -4931,9 +5170,9 @@ export class DescribeAccountsResponse extends $tea.Model {
|
|
|
4931
5170
|
export class DescribeAdbMySqlColumnsRequest extends $tea.Model {
|
|
4932
5171
|
/**
|
|
4933
5172
|
* @remarks
|
|
4934
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
5173
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
4935
5174
|
*
|
|
4936
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/454250.html) operation to query the IDs of all AnalyticDB for MySQL
|
|
5175
|
+
* > 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.
|
|
4937
5176
|
*
|
|
4938
5177
|
* This parameter is required.
|
|
4939
5178
|
*
|
|
@@ -4943,7 +5182,7 @@ export class DescribeAdbMySqlColumnsRequest extends $tea.Model {
|
|
|
4943
5182
|
DBClusterId?: string;
|
|
4944
5183
|
/**
|
|
4945
5184
|
* @remarks
|
|
4946
|
-
* The region ID
|
|
5185
|
+
* The region ID.
|
|
4947
5186
|
*
|
|
4948
5187
|
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/454314.html) operation to query the most recent region list.
|
|
4949
5188
|
*
|
|
@@ -5109,7 +5348,7 @@ export class DescribeAdbMySqlColumnsResponse extends $tea.Model {
|
|
|
5109
5348
|
export class DescribeAdbMySqlSchemasRequest extends $tea.Model {
|
|
5110
5349
|
/**
|
|
5111
5350
|
* @remarks
|
|
5112
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
5351
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
5113
5352
|
*
|
|
5114
5353
|
* This parameter is required.
|
|
5115
5354
|
*
|
|
@@ -5119,7 +5358,7 @@ export class DescribeAdbMySqlSchemasRequest extends $tea.Model {
|
|
|
5119
5358
|
DBClusterId?: string;
|
|
5120
5359
|
/**
|
|
5121
5360
|
* @remarks
|
|
5122
|
-
* The region ID
|
|
5361
|
+
* The region ID.
|
|
5123
5362
|
*
|
|
5124
5363
|
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/454314.html) operation to query the most recent region list.
|
|
5125
5364
|
*
|
|
@@ -5235,7 +5474,7 @@ export class DescribeAdbMySqlSchemasResponse extends $tea.Model {
|
|
|
5235
5474
|
export class DescribeAdbMySqlTablesRequest extends $tea.Model {
|
|
5236
5475
|
/**
|
|
5237
5476
|
* @remarks
|
|
5238
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
5477
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
5239
5478
|
*
|
|
5240
5479
|
* This parameter is required.
|
|
5241
5480
|
*
|
|
@@ -5245,7 +5484,7 @@ export class DescribeAdbMySqlTablesRequest extends $tea.Model {
|
|
|
5245
5484
|
DBClusterId?: string;
|
|
5246
5485
|
/**
|
|
5247
5486
|
* @remarks
|
|
5248
|
-
* The region ID
|
|
5487
|
+
* The region ID.
|
|
5249
5488
|
*
|
|
5250
5489
|
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/454314.html) operation to query the most recent region list.
|
|
5251
5490
|
*
|
|
@@ -5528,7 +5767,7 @@ export class DescribeApsActionLogsRequest extends $tea.Model {
|
|
|
5528
5767
|
DBClusterId?: string;
|
|
5529
5768
|
/**
|
|
5530
5769
|
* @remarks
|
|
5531
|
-
* The end time of the logs to be queried. Specify the time in the ISO 8601 standard in the **yyyy-MM-ddTHH:
|
|
5770
|
+
* 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.
|
|
5532
5771
|
*
|
|
5533
5772
|
* > The end time must be later than the start time. The maximum time range that can be specified is 30 days.
|
|
5534
5773
|
*
|
|
@@ -5598,7 +5837,7 @@ export class DescribeApsActionLogsRequest extends $tea.Model {
|
|
|
5598
5837
|
stage?: string;
|
|
5599
5838
|
/**
|
|
5600
5839
|
* @remarks
|
|
5601
|
-
* The start time of the logs to be queried. Specify the time in the ISO 8601 standard in the **yyyy-MM-ddTHH:
|
|
5840
|
+
* 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.
|
|
5602
5841
|
*
|
|
5603
5842
|
* This parameter is required.
|
|
5604
5843
|
*
|
|
@@ -6349,7 +6588,7 @@ export class DescribeBackupPolicyResponseBody extends $tea.Model {
|
|
|
6349
6588
|
logBackupRetentionPeriod?: number;
|
|
6350
6589
|
/**
|
|
6351
6590
|
* @remarks
|
|
6352
|
-
* The cycle based on which backups are performed. If more than one day of the week
|
|
6591
|
+
* 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:
|
|
6353
6592
|
*
|
|
6354
6593
|
* * Monday
|
|
6355
6594
|
* * Tuesday
|
|
@@ -6534,6 +6773,7 @@ export class DescribeBackupsRequest extends $tea.Model {
|
|
|
6534
6773
|
}
|
|
6535
6774
|
|
|
6536
6775
|
export class DescribeBackupsResponseBody extends $tea.Model {
|
|
6776
|
+
freeBackupSize?: number;
|
|
6537
6777
|
/**
|
|
6538
6778
|
* @remarks
|
|
6539
6779
|
* The queried backup sets.
|
|
@@ -6563,6 +6803,7 @@ export class DescribeBackupsResponseBody extends $tea.Model {
|
|
|
6563
6803
|
* CE17270B-F8F8-5A31-9DB4-DADDFDAD7940
|
|
6564
6804
|
*/
|
|
6565
6805
|
requestId?: string;
|
|
6806
|
+
totalBackupSize?: number;
|
|
6566
6807
|
/**
|
|
6567
6808
|
* @remarks
|
|
6568
6809
|
* The total number of entries returned.
|
|
@@ -6573,20 +6814,24 @@ export class DescribeBackupsResponseBody extends $tea.Model {
|
|
|
6573
6814
|
totalCount?: string;
|
|
6574
6815
|
static names(): { [key: string]: string } {
|
|
6575
6816
|
return {
|
|
6817
|
+
freeBackupSize: 'FreeBackupSize',
|
|
6576
6818
|
items: 'Items',
|
|
6577
6819
|
pageNumber: 'PageNumber',
|
|
6578
6820
|
pageSize: 'PageSize',
|
|
6579
6821
|
requestId: 'RequestId',
|
|
6822
|
+
totalBackupSize: 'TotalBackupSize',
|
|
6580
6823
|
totalCount: 'TotalCount',
|
|
6581
6824
|
};
|
|
6582
6825
|
}
|
|
6583
6826
|
|
|
6584
6827
|
static types(): { [key: string]: any } {
|
|
6585
6828
|
return {
|
|
6829
|
+
freeBackupSize: 'number',
|
|
6586
6830
|
items: DescribeBackupsResponseBodyItems,
|
|
6587
6831
|
pageNumber: 'string',
|
|
6588
6832
|
pageSize: 'string',
|
|
6589
6833
|
requestId: 'string',
|
|
6834
|
+
totalBackupSize: 'number',
|
|
6590
6835
|
totalCount: 'string',
|
|
6591
6836
|
};
|
|
6592
6837
|
}
|
|
@@ -6624,7 +6869,7 @@ export class DescribeBackupsResponse extends $tea.Model {
|
|
|
6624
6869
|
export class DescribeClusterAccessWhiteListRequest extends $tea.Model {
|
|
6625
6870
|
/**
|
|
6626
6871
|
* @remarks
|
|
6627
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
6872
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
6628
6873
|
*
|
|
6629
6874
|
* This parameter is required.
|
|
6630
6875
|
*
|
|
@@ -6632,10 +6877,12 @@ export class DescribeClusterAccessWhiteListRequest extends $tea.Model {
|
|
|
6632
6877
|
* amv-bp11q28kvl688****
|
|
6633
6878
|
*/
|
|
6634
6879
|
DBClusterId?: string;
|
|
6880
|
+
regionId?: string;
|
|
6635
6881
|
resourceOwnerAccount?: string;
|
|
6636
6882
|
static names(): { [key: string]: string } {
|
|
6637
6883
|
return {
|
|
6638
6884
|
DBClusterId: 'DBClusterId',
|
|
6885
|
+
regionId: 'RegionId',
|
|
6639
6886
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
6640
6887
|
};
|
|
6641
6888
|
}
|
|
@@ -6643,6 +6890,7 @@ export class DescribeClusterAccessWhiteListRequest extends $tea.Model {
|
|
|
6643
6890
|
static types(): { [key: string]: any } {
|
|
6644
6891
|
return {
|
|
6645
6892
|
DBClusterId: 'string',
|
|
6893
|
+
regionId: 'string',
|
|
6646
6894
|
resourceOwnerAccount: 'string',
|
|
6647
6895
|
};
|
|
6648
6896
|
}
|
|
@@ -6862,7 +7110,7 @@ export class DescribeClusterResourceDetailResponseBody extends $tea.Model {
|
|
|
6862
7110
|
code?: number;
|
|
6863
7111
|
/**
|
|
6864
7112
|
* @remarks
|
|
6865
|
-
* The
|
|
7113
|
+
* The queried resource usage.
|
|
6866
7114
|
*/
|
|
6867
7115
|
data?: DescribeClusterResourceDetailResponseBodyData;
|
|
6868
7116
|
/**
|
|
@@ -8147,7 +8395,7 @@ export class DescribeDBClustersResponse extends $tea.Model {
|
|
|
8147
8395
|
export class DescribeDBResourceGroupRequest extends $tea.Model {
|
|
8148
8396
|
/**
|
|
8149
8397
|
* @remarks
|
|
8150
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
8398
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
8151
8399
|
*
|
|
8152
8400
|
* This parameter is required.
|
|
8153
8401
|
*
|
|
@@ -8172,7 +8420,7 @@ export class DescribeDBResourceGroupRequest extends $tea.Model {
|
|
|
8172
8420
|
* * **Interactive**
|
|
8173
8421
|
* * **Job**
|
|
8174
8422
|
*
|
|
8175
|
-
* >
|
|
8423
|
+
* > For more information about resource groups, see [Resource group overview](https://help.aliyun.com/document_detail/428610.html).
|
|
8176
8424
|
*
|
|
8177
8425
|
* @example
|
|
8178
8426
|
* Job
|
|
@@ -8217,7 +8465,7 @@ export class DescribeDBResourceGroupRequest extends $tea.Model {
|
|
|
8217
8465
|
export class DescribeDBResourceGroupResponseBody extends $tea.Model {
|
|
8218
8466
|
/**
|
|
8219
8467
|
* @remarks
|
|
8220
|
-
* The queried resource
|
|
8468
|
+
* The queried resource groups.
|
|
8221
8469
|
*/
|
|
8222
8470
|
groupsInfo?: DescribeDBResourceGroupResponseBodyGroupsInfo[];
|
|
8223
8471
|
/**
|
|
@@ -9577,8 +9825,8 @@ export class DescribeElasticPlansRequest extends $tea.Model {
|
|
|
9577
9825
|
* @remarks
|
|
9578
9826
|
* Specifies whether to query the scaling plans that are immediately enabled after the plans are created. Valid values:
|
|
9579
9827
|
*
|
|
9580
|
-
* * true
|
|
9581
|
-
* * false
|
|
9828
|
+
* * **true**
|
|
9829
|
+
* * **false**
|
|
9582
9830
|
*
|
|
9583
9831
|
* @example
|
|
9584
9832
|
* true
|
|
@@ -9619,7 +9867,8 @@ export class DescribeElasticPlansRequest extends $tea.Model {
|
|
|
9619
9867
|
* @remarks
|
|
9620
9868
|
* The type of the scaling plan. Valid values:
|
|
9621
9869
|
*
|
|
9622
|
-
* EXECUTOR
|
|
9870
|
+
* * **EXECUTOR**: the interactive resource group type, which specifies the computing resource type.
|
|
9871
|
+
* * **WORKER**: the EIU type.
|
|
9623
9872
|
*
|
|
9624
9873
|
* @example
|
|
9625
9874
|
* EXECUTOR
|
|
@@ -10433,7 +10682,12 @@ export class DescribePerformanceViewAttributeRequest extends $tea.Model {
|
|
|
10433
10682
|
resourceOwnerId?: number;
|
|
10434
10683
|
/**
|
|
10435
10684
|
* @remarks
|
|
10685
|
+
* The name of the view.
|
|
10686
|
+
*
|
|
10436
10687
|
* This parameter is required.
|
|
10688
|
+
*
|
|
10689
|
+
* @example
|
|
10690
|
+
* Basic
|
|
10437
10691
|
*/
|
|
10438
10692
|
viewName?: string;
|
|
10439
10693
|
static names(): { [key: string]: string } {
|
|
@@ -10467,6 +10721,11 @@ export class DescribePerformanceViewAttributeRequest extends $tea.Model {
|
|
|
10467
10721
|
|
|
10468
10722
|
export class DescribePerformanceViewAttributeResponseBody extends $tea.Model {
|
|
10469
10723
|
/**
|
|
10724
|
+
* @remarks
|
|
10725
|
+
* The details about the access denial.
|
|
10726
|
+
*
|
|
10727
|
+
* > This parameter is returned only if Resource Access Management (RAM) permission verification failed.
|
|
10728
|
+
*
|
|
10470
10729
|
* @example
|
|
10471
10730
|
* {
|
|
10472
10731
|
* "PolicyType": "AccountLevelIdentityBasedPolicy",
|
|
@@ -10480,26 +10739,54 @@ export class DescribePerformanceViewAttributeResponseBody extends $tea.Model {
|
|
|
10480
10739
|
*/
|
|
10481
10740
|
accessDeniedDetail?: string;
|
|
10482
10741
|
/**
|
|
10742
|
+
* @remarks
|
|
10743
|
+
* The type of the view.
|
|
10744
|
+
*
|
|
10483
10745
|
* @example
|
|
10484
10746
|
* Basic
|
|
10485
10747
|
*/
|
|
10486
10748
|
createFromViewType?: string;
|
|
10487
10749
|
/**
|
|
10750
|
+
* @remarks
|
|
10751
|
+
* The cluster ID.
|
|
10752
|
+
*
|
|
10753
|
+
* > 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.
|
|
10754
|
+
*
|
|
10488
10755
|
* @example
|
|
10489
10756
|
* amv-bp198m028ih55xxxx
|
|
10490
10757
|
*/
|
|
10491
10758
|
DBClusterId?: string;
|
|
10492
10759
|
/**
|
|
10760
|
+
* @remarks
|
|
10761
|
+
* Specifies whether to populate the names of the metrics in the original monitoring view when you view the monitoring view. Valid values:
|
|
10762
|
+
*
|
|
10763
|
+
* * **true**
|
|
10764
|
+
* * **false**
|
|
10765
|
+
*
|
|
10493
10766
|
* @example
|
|
10494
10767
|
* true
|
|
10495
10768
|
*/
|
|
10496
10769
|
fillOriginViewKeys?: boolean;
|
|
10497
10770
|
/**
|
|
10771
|
+
* @remarks
|
|
10772
|
+
* The request ID.
|
|
10773
|
+
*
|
|
10498
10774
|
* @example
|
|
10499
10775
|
* E031AABF-BD56-5966-A063-4283EF18DB45
|
|
10500
10776
|
*/
|
|
10501
10777
|
requestId?: string;
|
|
10778
|
+
/**
|
|
10779
|
+
* @remarks
|
|
10780
|
+
* The information about the monitoring view.
|
|
10781
|
+
*/
|
|
10502
10782
|
viewDetail?: DescribePerformanceViewAttributeResponseBodyViewDetail;
|
|
10783
|
+
/**
|
|
10784
|
+
* @remarks
|
|
10785
|
+
* The name of the view.
|
|
10786
|
+
*
|
|
10787
|
+
* @example
|
|
10788
|
+
* Basic
|
|
10789
|
+
*/
|
|
10503
10790
|
viewName?: string;
|
|
10504
10791
|
static names(): { [key: string]: string } {
|
|
10505
10792
|
return {
|
|
@@ -10613,6 +10900,11 @@ export class DescribePerformanceViewsRequest extends $tea.Model {
|
|
|
10613
10900
|
|
|
10614
10901
|
export class DescribePerformanceViewsResponseBody extends $tea.Model {
|
|
10615
10902
|
/**
|
|
10903
|
+
* @remarks
|
|
10904
|
+
* The details about the access denial.
|
|
10905
|
+
*
|
|
10906
|
+
* > This parameter is returned only if Resource Access Management (RAM) permission verification failed.
|
|
10907
|
+
*
|
|
10616
10908
|
* @example
|
|
10617
10909
|
* {
|
|
10618
10910
|
* "PolicyType": "AccountLevelIdentityBasedPolicy",
|
|
@@ -10626,10 +10918,17 @@ export class DescribePerformanceViewsResponseBody extends $tea.Model {
|
|
|
10626
10918
|
*/
|
|
10627
10919
|
accessDeniedDetail?: string;
|
|
10628
10920
|
/**
|
|
10921
|
+
* @remarks
|
|
10922
|
+
* The request ID.
|
|
10923
|
+
*
|
|
10629
10924
|
* @example
|
|
10630
10925
|
* 3A8F6106-6AFD-5A34-9C80-8DE2C42D06E8
|
|
10631
10926
|
*/
|
|
10632
10927
|
requestId?: string;
|
|
10928
|
+
/**
|
|
10929
|
+
* @remarks
|
|
10930
|
+
* the list of view.
|
|
10931
|
+
*/
|
|
10633
10932
|
views?: DescribePerformanceViewsResponseBodyViews[];
|
|
10634
10933
|
static names(): { [key: string]: string } {
|
|
10635
10934
|
return {
|
|
@@ -10946,7 +11245,7 @@ export class DescribeSQLPatternsResponseBody extends $tea.Model {
|
|
|
10946
11245
|
pageSize?: number;
|
|
10947
11246
|
/**
|
|
10948
11247
|
* @remarks
|
|
10949
|
-
* The queried SQL
|
|
11248
|
+
* The queried SQL patterns.
|
|
10950
11249
|
*/
|
|
10951
11250
|
patternDetails?: DescribeSQLPatternsResponseBodyPatternDetails[];
|
|
10952
11251
|
/**
|
|
@@ -11020,7 +11319,7 @@ export class DescribeSQLPatternsResponse extends $tea.Model {
|
|
|
11020
11319
|
export class DescribeSchemasRequest extends $tea.Model {
|
|
11021
11320
|
/**
|
|
11022
11321
|
* @remarks
|
|
11023
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
11322
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
11024
11323
|
*
|
|
11025
11324
|
* This parameter is required.
|
|
11026
11325
|
*
|
|
@@ -11118,9 +11417,9 @@ export class DescribeSchemasResponse extends $tea.Model {
|
|
|
11118
11417
|
export class DescribeSparkCodeLogRequest extends $tea.Model {
|
|
11119
11418
|
/**
|
|
11120
11419
|
* @remarks
|
|
11121
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
11420
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
11122
11421
|
*
|
|
11123
|
-
* >
|
|
11422
|
+
* > 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.
|
|
11124
11423
|
*
|
|
11125
11424
|
* This parameter is required.
|
|
11126
11425
|
*
|
|
@@ -12095,7 +12394,7 @@ export class DescribeTableAccessCountResponse extends $tea.Model {
|
|
|
12095
12394
|
export class DescribeTablesRequest extends $tea.Model {
|
|
12096
12395
|
/**
|
|
12097
12396
|
* @remarks
|
|
12098
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
12397
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
12099
12398
|
*
|
|
12100
12399
|
* This parameter is required.
|
|
12101
12400
|
*
|
|
@@ -13294,9 +13593,9 @@ export class GetSparkAppInfoRequest extends $tea.Model {
|
|
|
13294
13593
|
appId?: string;
|
|
13295
13594
|
/**
|
|
13296
13595
|
* @remarks
|
|
13297
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
13596
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
13298
13597
|
*
|
|
13299
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/612397.html) operation to query the IDs of all AnalyticDB for MySQL
|
|
13598
|
+
* > 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.
|
|
13300
13599
|
*
|
|
13301
13600
|
* @example
|
|
13302
13601
|
* am-bp11q28kvl688****
|
|
@@ -14422,7 +14721,7 @@ export class GetSparkTemplateFolderTreeResponse extends $tea.Model {
|
|
|
14422
14721
|
export class GetSparkTemplateFullTreeRequest extends $tea.Model {
|
|
14423
14722
|
/**
|
|
14424
14723
|
* @remarks
|
|
14425
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
14724
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
14426
14725
|
*
|
|
14427
14726
|
* This parameter is required.
|
|
14428
14727
|
*
|
|
@@ -16258,7 +16557,7 @@ export class ListSparkLogAnalyzeTasksResponse extends $tea.Model {
|
|
|
16258
16557
|
export class ListSparkTemplateFileIdsRequest extends $tea.Model {
|
|
16259
16558
|
/**
|
|
16260
16559
|
* @remarks
|
|
16261
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
16560
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
16262
16561
|
*
|
|
16263
16562
|
* @example
|
|
16264
16563
|
* amv-bp11q28kvl688****
|
|
@@ -16742,9 +17041,9 @@ export class ModifyAuditLogConfigRequest extends $tea.Model {
|
|
|
16742
17041
|
auditLogStatus?: string;
|
|
16743
17042
|
/**
|
|
16744
17043
|
* @remarks
|
|
16745
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
17044
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
16746
17045
|
*
|
|
16747
|
-
* >
|
|
17046
|
+
* > 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.
|
|
16748
17047
|
*
|
|
16749
17048
|
* This parameter is required.
|
|
16750
17049
|
*
|
|
@@ -16757,9 +17056,9 @@ export class ModifyAuditLogConfigRequest extends $tea.Model {
|
|
|
16757
17056
|
ownerId?: number;
|
|
16758
17057
|
/**
|
|
16759
17058
|
* @remarks
|
|
16760
|
-
* The region ID.
|
|
17059
|
+
* The region ID of the cluster.
|
|
16761
17060
|
*
|
|
16762
|
-
* >
|
|
17061
|
+
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/454314.html) operation to query the most recent region list.
|
|
16763
17062
|
*
|
|
16764
17063
|
* This parameter is required.
|
|
16765
17064
|
*
|
|
@@ -16924,8 +17223,6 @@ export class ModifyBackupPolicyRequest extends $tea.Model {
|
|
|
16924
17223
|
*
|
|
16925
17224
|
* > To ensure data security, we recommend that you specify at least two values.
|
|
16926
17225
|
*
|
|
16927
|
-
* This parameter is required.
|
|
16928
|
-
*
|
|
16929
17226
|
* @example
|
|
16930
17227
|
* Monday,Wednesday,Friday,Sunday
|
|
16931
17228
|
*/
|
|
@@ -17302,7 +17599,7 @@ export class ModifyClusterConnectionStringResponse extends $tea.Model {
|
|
|
17302
17599
|
export class ModifyDBClusterRequest extends $tea.Model {
|
|
17303
17600
|
/**
|
|
17304
17601
|
* @remarks
|
|
17305
|
-
* The reserved computing resources.
|
|
17602
|
+
* 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.
|
|
17306
17603
|
*
|
|
17307
17604
|
* > This parameter must be specified with a unit.
|
|
17308
17605
|
*
|
|
@@ -17312,9 +17609,9 @@ export class ModifyDBClusterRequest extends $tea.Model {
|
|
|
17312
17609
|
computeResource?: string;
|
|
17313
17610
|
/**
|
|
17314
17611
|
* @remarks
|
|
17315
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
17612
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
17316
17613
|
*
|
|
17317
|
-
* > 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
|
|
17614
|
+
* > 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.
|
|
17318
17615
|
*
|
|
17319
17616
|
* This parameter is required.
|
|
17320
17617
|
*
|
|
@@ -17335,6 +17632,11 @@ export class ModifyDBClusterRequest extends $tea.Model {
|
|
|
17335
17632
|
enableDefaultResourcePool?: boolean;
|
|
17336
17633
|
ownerAccount?: string;
|
|
17337
17634
|
ownerId?: number;
|
|
17635
|
+
/**
|
|
17636
|
+
* @example
|
|
17637
|
+
* LegacyForm
|
|
17638
|
+
*/
|
|
17639
|
+
productForm?: string;
|
|
17338
17640
|
/**
|
|
17339
17641
|
* @remarks
|
|
17340
17642
|
* The region ID of the cluster.
|
|
@@ -17346,11 +17648,15 @@ export class ModifyDBClusterRequest extends $tea.Model {
|
|
|
17346
17648
|
*/
|
|
17347
17649
|
regionId?: string;
|
|
17348
17650
|
reservedNodeCount?: number;
|
|
17651
|
+
/**
|
|
17652
|
+
* @example
|
|
17653
|
+
* LegacyForm
|
|
17654
|
+
*/
|
|
17349
17655
|
reservedNodeSize?: string;
|
|
17350
17656
|
resourceOwnerAccount?: string;
|
|
17351
17657
|
/**
|
|
17352
17658
|
* @remarks
|
|
17353
|
-
* The reserved storage resources.
|
|
17659
|
+
* 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.
|
|
17354
17660
|
*
|
|
17355
17661
|
* > This parameter must be specified with a unit.
|
|
17356
17662
|
*
|
|
@@ -17365,6 +17671,7 @@ export class ModifyDBClusterRequest extends $tea.Model {
|
|
|
17365
17671
|
enableDefaultResourcePool: 'EnableDefaultResourcePool',
|
|
17366
17672
|
ownerAccount: 'OwnerAccount',
|
|
17367
17673
|
ownerId: 'OwnerId',
|
|
17674
|
+
productForm: 'ProductForm',
|
|
17368
17675
|
regionId: 'RegionId',
|
|
17369
17676
|
reservedNodeCount: 'ReservedNodeCount',
|
|
17370
17677
|
reservedNodeSize: 'ReservedNodeSize',
|
|
@@ -17380,6 +17687,7 @@ export class ModifyDBClusterRequest extends $tea.Model {
|
|
|
17380
17687
|
enableDefaultResourcePool: 'boolean',
|
|
17381
17688
|
ownerAccount: 'string',
|
|
17382
17689
|
ownerId: 'number',
|
|
17690
|
+
productForm: 'string',
|
|
17383
17691
|
regionId: 'string',
|
|
17384
17692
|
reservedNodeCount: 'number',
|
|
17385
17693
|
reservedNodeSize: 'string',
|
|
@@ -17396,7 +17704,7 @@ export class ModifyDBClusterRequest extends $tea.Model {
|
|
|
17396
17704
|
export class ModifyDBClusterResponseBody extends $tea.Model {
|
|
17397
17705
|
/**
|
|
17398
17706
|
* @remarks
|
|
17399
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
17707
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
17400
17708
|
*
|
|
17401
17709
|
* @example
|
|
17402
17710
|
* amv-bp1r053byu48p****
|
|
@@ -17727,15 +18035,16 @@ export class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
17727
18035
|
maxClusterCount?: number;
|
|
17728
18036
|
/**
|
|
17729
18037
|
* @remarks
|
|
17730
|
-
* The maximum amount of reserved computing resources.
|
|
18038
|
+
* The maximum amount of reserved computing resources.
|
|
17731
18039
|
*
|
|
17732
|
-
* * 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
|
|
17733
|
-
* * 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
|
|
18040
|
+
* * 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.
|
|
18041
|
+
* * 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.
|
|
17734
18042
|
*
|
|
17735
18043
|
* @example
|
|
17736
18044
|
* 48ACU
|
|
17737
18045
|
*/
|
|
17738
18046
|
maxComputeResource?: string;
|
|
18047
|
+
maxGpuQuantity?: number;
|
|
17739
18048
|
/**
|
|
17740
18049
|
* @remarks
|
|
17741
18050
|
* A reserved parameter.
|
|
@@ -17746,7 +18055,7 @@ export class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
17746
18055
|
minClusterCount?: number;
|
|
17747
18056
|
/**
|
|
17748
18057
|
* @remarks
|
|
17749
|
-
* The minimum amount of reserved computing resources.
|
|
18058
|
+
* The minimum amount of reserved computing resources.
|
|
17750
18059
|
*
|
|
17751
18060
|
* * If the GroupType parameter is set to Interactive, set the value to 16ACU.
|
|
17752
18061
|
* * If GroupType is set to Job, set the value to 0ACU.
|
|
@@ -17755,6 +18064,7 @@ export class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
17755
18064
|
* 0ACU
|
|
17756
18065
|
*/
|
|
17757
18066
|
minComputeResource?: string;
|
|
18067
|
+
minGpuQuantity?: number;
|
|
17758
18068
|
/**
|
|
17759
18069
|
* @remarks
|
|
17760
18070
|
* The region ID of the cluster.
|
|
@@ -17770,6 +18080,8 @@ export class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
17770
18080
|
* The job resubmission rules.
|
|
17771
18081
|
*/
|
|
17772
18082
|
rules?: ModifyDBResourceGroupRequestRules[];
|
|
18083
|
+
specName?: string;
|
|
18084
|
+
targetResourceGroupName?: string;
|
|
17773
18085
|
static names(): { [key: string]: string } {
|
|
17774
18086
|
return {
|
|
17775
18087
|
clusterMode: 'ClusterMode',
|
|
@@ -17781,10 +18093,14 @@ export class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
17781
18093
|
groupType: 'GroupType',
|
|
17782
18094
|
maxClusterCount: 'MaxClusterCount',
|
|
17783
18095
|
maxComputeResource: 'MaxComputeResource',
|
|
18096
|
+
maxGpuQuantity: 'MaxGpuQuantity',
|
|
17784
18097
|
minClusterCount: 'MinClusterCount',
|
|
17785
18098
|
minComputeResource: 'MinComputeResource',
|
|
18099
|
+
minGpuQuantity: 'MinGpuQuantity',
|
|
17786
18100
|
regionId: 'RegionId',
|
|
17787
18101
|
rules: 'Rules',
|
|
18102
|
+
specName: 'SpecName',
|
|
18103
|
+
targetResourceGroupName: 'TargetResourceGroupName',
|
|
17788
18104
|
};
|
|
17789
18105
|
}
|
|
17790
18106
|
|
|
@@ -17799,10 +18115,14 @@ export class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
17799
18115
|
groupType: 'string',
|
|
17800
18116
|
maxClusterCount: 'number',
|
|
17801
18117
|
maxComputeResource: 'string',
|
|
18118
|
+
maxGpuQuantity: 'number',
|
|
17802
18119
|
minClusterCount: 'number',
|
|
17803
18120
|
minComputeResource: 'string',
|
|
18121
|
+
minGpuQuantity: 'number',
|
|
17804
18122
|
regionId: 'string',
|
|
17805
18123
|
rules: { 'type': 'array', 'itemType': ModifyDBResourceGroupRequestRules },
|
|
18124
|
+
specName: 'string',
|
|
18125
|
+
targetResourceGroupName: 'string',
|
|
17806
18126
|
};
|
|
17807
18127
|
}
|
|
17808
18128
|
|
|
@@ -17887,15 +18207,16 @@ export class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
17887
18207
|
maxClusterCount?: number;
|
|
17888
18208
|
/**
|
|
17889
18209
|
* @remarks
|
|
17890
|
-
* The maximum amount of reserved computing resources.
|
|
18210
|
+
* The maximum amount of reserved computing resources.
|
|
17891
18211
|
*
|
|
17892
|
-
* * 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
|
|
17893
|
-
* * 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
|
|
18212
|
+
* * 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.
|
|
18213
|
+
* * 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.
|
|
17894
18214
|
*
|
|
17895
18215
|
* @example
|
|
17896
18216
|
* 48ACU
|
|
17897
18217
|
*/
|
|
17898
18218
|
maxComputeResource?: string;
|
|
18219
|
+
maxGpuQuantity?: number;
|
|
17899
18220
|
/**
|
|
17900
18221
|
* @remarks
|
|
17901
18222
|
* A reserved parameter.
|
|
@@ -17906,7 +18227,7 @@ export class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
17906
18227
|
minClusterCount?: number;
|
|
17907
18228
|
/**
|
|
17908
18229
|
* @remarks
|
|
17909
|
-
* The minimum amount of reserved computing resources.
|
|
18230
|
+
* The minimum amount of reserved computing resources.
|
|
17910
18231
|
*
|
|
17911
18232
|
* * If the GroupType parameter is set to Interactive, set the value to 16ACU.
|
|
17912
18233
|
* * If GroupType is set to Job, set the value to 0ACU.
|
|
@@ -17915,6 +18236,7 @@ export class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
17915
18236
|
* 0ACU
|
|
17916
18237
|
*/
|
|
17917
18238
|
minComputeResource?: string;
|
|
18239
|
+
minGpuQuantity?: number;
|
|
17918
18240
|
/**
|
|
17919
18241
|
* @remarks
|
|
17920
18242
|
* The region ID of the cluster.
|
|
@@ -17930,6 +18252,8 @@ export class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
17930
18252
|
* The job resubmission rules.
|
|
17931
18253
|
*/
|
|
17932
18254
|
rulesShrink?: string;
|
|
18255
|
+
specName?: string;
|
|
18256
|
+
targetResourceGroupName?: string;
|
|
17933
18257
|
static names(): { [key: string]: string } {
|
|
17934
18258
|
return {
|
|
17935
18259
|
clusterMode: 'ClusterMode',
|
|
@@ -17941,10 +18265,14 @@ export class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
17941
18265
|
groupType: 'GroupType',
|
|
17942
18266
|
maxClusterCount: 'MaxClusterCount',
|
|
17943
18267
|
maxComputeResource: 'MaxComputeResource',
|
|
18268
|
+
maxGpuQuantity: 'MaxGpuQuantity',
|
|
17944
18269
|
minClusterCount: 'MinClusterCount',
|
|
17945
18270
|
minComputeResource: 'MinComputeResource',
|
|
18271
|
+
minGpuQuantity: 'MinGpuQuantity',
|
|
17946
18272
|
regionId: 'RegionId',
|
|
17947
18273
|
rulesShrink: 'Rules',
|
|
18274
|
+
specName: 'SpecName',
|
|
18275
|
+
targetResourceGroupName: 'TargetResourceGroupName',
|
|
17948
18276
|
};
|
|
17949
18277
|
}
|
|
17950
18278
|
|
|
@@ -17959,10 +18287,14 @@ export class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
17959
18287
|
groupType: 'string',
|
|
17960
18288
|
maxClusterCount: 'number',
|
|
17961
18289
|
maxComputeResource: 'string',
|
|
18290
|
+
maxGpuQuantity: 'number',
|
|
17962
18291
|
minClusterCount: 'number',
|
|
17963
18292
|
minComputeResource: 'string',
|
|
18293
|
+
minGpuQuantity: 'number',
|
|
17964
18294
|
regionId: 'string',
|
|
17965
18295
|
rulesShrink: 'string',
|
|
18296
|
+
specName: 'string',
|
|
18297
|
+
targetResourceGroupName: 'string',
|
|
17966
18298
|
};
|
|
17967
18299
|
}
|
|
17968
18300
|
|
|
@@ -18170,9 +18502,9 @@ export class ModifyElasticPlanResponse extends $tea.Model {
|
|
|
18170
18502
|
export class ModifyPerformanceViewRequest extends $tea.Model {
|
|
18171
18503
|
/**
|
|
18172
18504
|
* @remarks
|
|
18173
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
18505
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
18174
18506
|
*
|
|
18175
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/612397.html) operation to query the IDs of all AnalyticDB for MySQL
|
|
18507
|
+
* > 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.
|
|
18176
18508
|
*
|
|
18177
18509
|
* This parameter is required.
|
|
18178
18510
|
*
|
|
@@ -18208,6 +18540,9 @@ export class ModifyPerformanceViewRequest extends $tea.Model {
|
|
|
18208
18540
|
* The name of the monitoring view.
|
|
18209
18541
|
*
|
|
18210
18542
|
* This parameter is required.
|
|
18543
|
+
*
|
|
18544
|
+
* @example
|
|
18545
|
+
* Basic
|
|
18211
18546
|
*/
|
|
18212
18547
|
viewName?: string;
|
|
18213
18548
|
static names(): { [key: string]: string } {
|
|
@@ -18244,9 +18579,9 @@ export class ModifyPerformanceViewRequest extends $tea.Model {
|
|
|
18244
18579
|
export class ModifyPerformanceViewShrinkRequest extends $tea.Model {
|
|
18245
18580
|
/**
|
|
18246
18581
|
* @remarks
|
|
18247
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
18582
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
18248
18583
|
*
|
|
18249
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/612397.html) operation to query the IDs of all AnalyticDB for MySQL
|
|
18584
|
+
* > 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.
|
|
18250
18585
|
*
|
|
18251
18586
|
* This parameter is required.
|
|
18252
18587
|
*
|
|
@@ -18282,6 +18617,9 @@ export class ModifyPerformanceViewShrinkRequest extends $tea.Model {
|
|
|
18282
18617
|
* The name of the monitoring view.
|
|
18283
18618
|
*
|
|
18284
18619
|
* This parameter is required.
|
|
18620
|
+
*
|
|
18621
|
+
* @example
|
|
18622
|
+
* Basic
|
|
18285
18623
|
*/
|
|
18286
18624
|
viewName?: string;
|
|
18287
18625
|
static names(): { [key: string]: string } {
|
|
@@ -21105,6 +21443,7 @@ export class DescribeBackupsResponseBodyItemsBackup extends $tea.Model {
|
|
|
21105
21443
|
* 2022-06-02T16:00Z
|
|
21106
21444
|
*/
|
|
21107
21445
|
backupEndTime?: string;
|
|
21446
|
+
backupExpiredTime?: string;
|
|
21108
21447
|
/**
|
|
21109
21448
|
* @remarks
|
|
21110
21449
|
* The backup set ID.
|
|
@@ -21159,6 +21498,7 @@ export class DescribeBackupsResponseBodyItemsBackup extends $tea.Model {
|
|
|
21159
21498
|
static names(): { [key: string]: string } {
|
|
21160
21499
|
return {
|
|
21161
21500
|
backupEndTime: 'BackupEndTime',
|
|
21501
|
+
backupExpiredTime: 'BackupExpiredTime',
|
|
21162
21502
|
backupId: 'BackupId',
|
|
21163
21503
|
backupMethod: 'BackupMethod',
|
|
21164
21504
|
backupSize: 'BackupSize',
|
|
@@ -21171,6 +21511,7 @@ export class DescribeBackupsResponseBodyItemsBackup extends $tea.Model {
|
|
|
21171
21511
|
static types(): { [key: string]: any } {
|
|
21172
21512
|
return {
|
|
21173
21513
|
backupEndTime: 'string',
|
|
21514
|
+
backupExpiredTime: 'string',
|
|
21174
21515
|
backupId: 'string',
|
|
21175
21516
|
backupMethod: 'string',
|
|
21176
21517
|
backupSize: 'number',
|
|
@@ -21503,7 +21844,7 @@ export class DescribeClusterResourceDetailResponseBodyDataResourceGroupList exte
|
|
|
21503
21844
|
maxClusterCount?: number;
|
|
21504
21845
|
/**
|
|
21505
21846
|
* @remarks
|
|
21506
|
-
* The maximum amount of reserved computing resources.
|
|
21847
|
+
* The maximum amount of reserved computing resources.
|
|
21507
21848
|
*
|
|
21508
21849
|
* @example
|
|
21509
21850
|
* 128ACU
|
|
@@ -21519,7 +21860,7 @@ export class DescribeClusterResourceDetailResponseBodyDataResourceGroupList exte
|
|
|
21519
21860
|
minClusterCount?: number;
|
|
21520
21861
|
/**
|
|
21521
21862
|
* @remarks
|
|
21522
|
-
* The minimum amount of reserved computing resources.
|
|
21863
|
+
* The minimum amount of reserved computing resources.
|
|
21523
21864
|
*
|
|
21524
21865
|
* @example
|
|
21525
21866
|
* 16ACU
|
|
@@ -21629,7 +21970,7 @@ export class DescribeClusterResourceDetailResponseBodyData extends $tea.Model {
|
|
|
21629
21970
|
computeResource?: string;
|
|
21630
21971
|
/**
|
|
21631
21972
|
* @remarks
|
|
21632
|
-
* The ID
|
|
21973
|
+
* The cluster ID.
|
|
21633
21974
|
*
|
|
21634
21975
|
* @example
|
|
21635
21976
|
* amv-adbxxxxx
|
|
@@ -23854,7 +24195,7 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
23854
24195
|
createTime?: string;
|
|
23855
24196
|
/**
|
|
23856
24197
|
* @remarks
|
|
23857
|
-
* The minimum amount of elastic computing resources.
|
|
24198
|
+
* The minimum amount of elastic computing resources.
|
|
23858
24199
|
*
|
|
23859
24200
|
* @example
|
|
23860
24201
|
* 16ACU
|
|
@@ -23914,12 +24255,13 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
23914
24255
|
maxClusterCount?: number;
|
|
23915
24256
|
/**
|
|
23916
24257
|
* @remarks
|
|
23917
|
-
* The maximum amount of reserved computing resources.
|
|
24258
|
+
* The maximum amount of reserved computing resources.
|
|
23918
24259
|
*
|
|
23919
24260
|
* @example
|
|
23920
24261
|
* 512ACU
|
|
23921
24262
|
*/
|
|
23922
24263
|
maxComputeResource?: string;
|
|
24264
|
+
maxGpuQuantity?: number;
|
|
23923
24265
|
/**
|
|
23924
24266
|
* @remarks
|
|
23925
24267
|
* This parameter is required.
|
|
@@ -23935,12 +24277,13 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
23935
24277
|
minClusterCount?: number;
|
|
23936
24278
|
/**
|
|
23937
24279
|
* @remarks
|
|
23938
|
-
* The minimum amount of reserved computing resources.
|
|
24280
|
+
* The minimum amount of reserved computing resources.
|
|
23939
24281
|
*
|
|
23940
24282
|
* @example
|
|
23941
24283
|
* 0ACU
|
|
23942
24284
|
*/
|
|
23943
24285
|
minComputeResource?: string;
|
|
24286
|
+
minGpuQuantity?: number;
|
|
23944
24287
|
/**
|
|
23945
24288
|
* @remarks
|
|
23946
24289
|
* The job resubmission rules.
|
|
@@ -23954,6 +24297,7 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
23954
24297
|
* N/A
|
|
23955
24298
|
*/
|
|
23956
24299
|
runningClusterCount?: number;
|
|
24300
|
+
specName?: string;
|
|
23957
24301
|
/**
|
|
23958
24302
|
* @remarks
|
|
23959
24303
|
* The status of the resource group. Valid values:
|
|
@@ -23966,6 +24310,7 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
23966
24310
|
* ok
|
|
23967
24311
|
*/
|
|
23968
24312
|
status?: string;
|
|
24313
|
+
targetResourceGroupName?: string;
|
|
23969
24314
|
/**
|
|
23970
24315
|
* @remarks
|
|
23971
24316
|
* 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.
|
|
@@ -23988,12 +24333,16 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
23988
24333
|
groupUsers: 'GroupUsers',
|
|
23989
24334
|
maxClusterCount: 'MaxClusterCount',
|
|
23990
24335
|
maxComputeResource: 'MaxComputeResource',
|
|
24336
|
+
maxGpuQuantity: 'MaxGpuQuantity',
|
|
23991
24337
|
message: 'Message',
|
|
23992
24338
|
minClusterCount: 'MinClusterCount',
|
|
23993
24339
|
minComputeResource: 'MinComputeResource',
|
|
24340
|
+
minGpuQuantity: 'MinGpuQuantity',
|
|
23994
24341
|
rules: 'Rules',
|
|
23995
24342
|
runningClusterCount: 'RunningClusterCount',
|
|
24343
|
+
specName: 'SpecName',
|
|
23996
24344
|
status: 'Status',
|
|
24345
|
+
targetResourceGroupName: 'TargetResourceGroupName',
|
|
23997
24346
|
updateTime: 'UpdateTime',
|
|
23998
24347
|
};
|
|
23999
24348
|
}
|
|
@@ -24012,12 +24361,16 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
24012
24361
|
groupUsers: 'string',
|
|
24013
24362
|
maxClusterCount: 'number',
|
|
24014
24363
|
maxComputeResource: 'string',
|
|
24364
|
+
maxGpuQuantity: 'number',
|
|
24015
24365
|
message: 'string',
|
|
24016
24366
|
minClusterCount: 'number',
|
|
24017
24367
|
minComputeResource: 'string',
|
|
24368
|
+
minGpuQuantity: 'number',
|
|
24018
24369
|
rules: { 'type': 'array', 'itemType': DescribeDBResourceGroupResponseBodyGroupsInfoRules },
|
|
24019
24370
|
runningClusterCount: 'number',
|
|
24371
|
+
specName: 'string',
|
|
24020
24372
|
status: 'string',
|
|
24373
|
+
targetResourceGroupName: 'string',
|
|
24021
24374
|
updateTime: 'string',
|
|
24022
24375
|
};
|
|
24023
24376
|
}
|
|
@@ -24758,8 +25111,8 @@ export class DescribeElasticPlansResponseBodyElasticPlans extends $tea.Model {
|
|
|
24758
25111
|
* @remarks
|
|
24759
25112
|
* Indicates whether **Proportional Default Scaling for EIUs** is enabled. Valid values:
|
|
24760
25113
|
*
|
|
24761
|
-
* * true
|
|
24762
|
-
* * false
|
|
25114
|
+
* * **true**
|
|
25115
|
+
* * **false**
|
|
24763
25116
|
*
|
|
24764
25117
|
* @example
|
|
24765
25118
|
* false
|
|
@@ -24775,10 +25128,10 @@ export class DescribeElasticPlansResponseBodyElasticPlans extends $tea.Model {
|
|
|
24775
25128
|
elasticPlanName?: string;
|
|
24776
25129
|
/**
|
|
24777
25130
|
* @remarks
|
|
24778
|
-
* Indicates whether the scaling plan
|
|
25131
|
+
* Indicates whether the scaling plan is immediately enabled after the plan is created. Valid values:
|
|
24779
25132
|
*
|
|
24780
|
-
* * true
|
|
24781
|
-
* * false
|
|
25133
|
+
* * **true**
|
|
25134
|
+
* * **false**
|
|
24782
25135
|
*
|
|
24783
25136
|
* @example
|
|
24784
25137
|
* true
|
|
@@ -24816,8 +25169,8 @@ export class DescribeElasticPlansResponseBodyElasticPlans extends $tea.Model {
|
|
|
24816
25169
|
* @remarks
|
|
24817
25170
|
* The type of the scaling plan. Valid values:
|
|
24818
25171
|
*
|
|
24819
|
-
* * EXECUTOR
|
|
24820
|
-
* * WORKER
|
|
25172
|
+
* * **EXECUTOR**: the interactive resource group type, which specifies the computing resource type.
|
|
25173
|
+
* * **WORKER**: the EIU type.
|
|
24821
25174
|
*
|
|
24822
25175
|
* @example
|
|
24823
25176
|
* EXECUTOR
|
|
@@ -24935,11 +25288,17 @@ export class DescribeExcessivePrimaryKeysResponseBodyDetectionItems extends $tea
|
|
|
24935
25288
|
/**
|
|
24936
25289
|
* @remarks
|
|
24937
25290
|
* The detection result.
|
|
25291
|
+
*
|
|
25292
|
+
* @example
|
|
25293
|
+
* OK
|
|
24938
25294
|
*/
|
|
24939
25295
|
message?: string;
|
|
24940
25296
|
/**
|
|
24941
25297
|
* @remarks
|
|
24942
25298
|
* The name of the detection item.
|
|
25299
|
+
*
|
|
25300
|
+
* @example
|
|
25301
|
+
* test
|
|
24943
25302
|
*/
|
|
24944
25303
|
name?: string;
|
|
24945
25304
|
/**
|
|
@@ -25091,11 +25450,17 @@ export class DescribeJobResourceUsageResponseBodyDataJobAcuUsageAcuUsageDetail e
|
|
|
25091
25450
|
*/
|
|
25092
25451
|
reservedAcuNumber?: number;
|
|
25093
25452
|
/**
|
|
25453
|
+
* @remarks
|
|
25454
|
+
* The number of spot ACUs.
|
|
25455
|
+
*
|
|
25094
25456
|
* @example
|
|
25095
25457
|
* 16ACU
|
|
25096
25458
|
*/
|
|
25097
25459
|
spotAcuNumber?: number;
|
|
25098
25460
|
/**
|
|
25461
|
+
* @remarks
|
|
25462
|
+
* The percent of spot ACUs.
|
|
25463
|
+
*
|
|
25099
25464
|
* @example
|
|
25100
25465
|
* 0.9
|
|
25101
25466
|
*/
|
|
@@ -25360,11 +25725,20 @@ export class DescribePatternPerformanceResponseBodyPerformances extends $tea.Mod
|
|
|
25360
25725
|
|
|
25361
25726
|
export class DescribePerformanceViewAttributeResponseBodyViewDetailCategoriesKeys extends $tea.Model {
|
|
25362
25727
|
/**
|
|
25728
|
+
* @remarks
|
|
25729
|
+
* The name of the metric.
|
|
25730
|
+
*
|
|
25363
25731
|
* @example
|
|
25364
25732
|
* AnalyticDB_CPU
|
|
25365
25733
|
*/
|
|
25366
25734
|
keyName?: string;
|
|
25367
25735
|
/**
|
|
25736
|
+
* @remarks
|
|
25737
|
+
* Specifies whether to select the metric. Valid values:
|
|
25738
|
+
*
|
|
25739
|
+
* * **true**
|
|
25740
|
+
* * **false**
|
|
25741
|
+
*
|
|
25368
25742
|
* @example
|
|
25369
25743
|
* true
|
|
25370
25744
|
*/
|
|
@@ -25390,10 +25764,22 @@ export class DescribePerformanceViewAttributeResponseBodyViewDetailCategoriesKey
|
|
|
25390
25764
|
|
|
25391
25765
|
export class DescribePerformanceViewAttributeResponseBodyViewDetailCategories extends $tea.Model {
|
|
25392
25766
|
/**
|
|
25767
|
+
* @remarks
|
|
25768
|
+
* The name of the metric category. Valid values:
|
|
25769
|
+
*
|
|
25770
|
+
* * **Node**
|
|
25771
|
+
* * **DiskData**
|
|
25772
|
+
* * **WorkLoad**
|
|
25773
|
+
* * **ResourceGroup**
|
|
25774
|
+
*
|
|
25393
25775
|
* @example
|
|
25394
25776
|
* Node
|
|
25395
25777
|
*/
|
|
25396
25778
|
category?: string;
|
|
25779
|
+
/**
|
|
25780
|
+
* @remarks
|
|
25781
|
+
* The metrics.
|
|
25782
|
+
*/
|
|
25397
25783
|
keys?: DescribePerformanceViewAttributeResponseBodyViewDetailCategoriesKeys[];
|
|
25398
25784
|
static names(): { [key: string]: string } {
|
|
25399
25785
|
return {
|
|
@@ -25415,13 +25801,26 @@ export class DescribePerformanceViewAttributeResponseBodyViewDetailCategories ex
|
|
|
25415
25801
|
}
|
|
25416
25802
|
|
|
25417
25803
|
export class DescribePerformanceViewAttributeResponseBodyViewDetail extends $tea.Model {
|
|
25804
|
+
/**
|
|
25805
|
+
* @remarks
|
|
25806
|
+
* The metric category.
|
|
25807
|
+
*/
|
|
25418
25808
|
categories?: DescribePerformanceViewAttributeResponseBodyViewDetailCategories[];
|
|
25419
25809
|
/**
|
|
25810
|
+
* @remarks
|
|
25811
|
+
* Specifies whether to enable the filter interaction feature. Valid values:
|
|
25812
|
+
*
|
|
25813
|
+
* * **true**
|
|
25814
|
+
* * **false**
|
|
25815
|
+
*
|
|
25420
25816
|
* @example
|
|
25421
25817
|
* true
|
|
25422
25818
|
*/
|
|
25423
25819
|
chartLinked?: boolean;
|
|
25424
25820
|
/**
|
|
25821
|
+
* @remarks
|
|
25822
|
+
* The number of charts to display in each row.
|
|
25823
|
+
*
|
|
25425
25824
|
* @example
|
|
25426
25825
|
* 2
|
|
25427
25826
|
*/
|
|
@@ -25449,15 +25848,28 @@ export class DescribePerformanceViewAttributeResponseBodyViewDetail extends $tea
|
|
|
25449
25848
|
|
|
25450
25849
|
export class DescribePerformanceViewsResponseBodyViews extends $tea.Model {
|
|
25451
25850
|
/**
|
|
25851
|
+
* @remarks
|
|
25852
|
+
* The time when created.
|
|
25853
|
+
*
|
|
25452
25854
|
* @example
|
|
25453
25855
|
* 2024-06-18T07:06:53.000+00:00
|
|
25454
25856
|
*/
|
|
25455
25857
|
createTime?: string;
|
|
25456
25858
|
/**
|
|
25859
|
+
* @remarks
|
|
25860
|
+
* The time when updated.
|
|
25861
|
+
*
|
|
25457
25862
|
* @example
|
|
25458
25863
|
* 2024-06-18T07:07:32.000+00:00
|
|
25459
25864
|
*/
|
|
25460
25865
|
updateTime?: string;
|
|
25866
|
+
/**
|
|
25867
|
+
* @remarks
|
|
25868
|
+
* The name of the view.
|
|
25869
|
+
*
|
|
25870
|
+
* @example
|
|
25871
|
+
* Basic
|
|
25872
|
+
*/
|
|
25461
25873
|
viewName?: string;
|
|
25462
25874
|
static names(): { [key: string]: string } {
|
|
25463
25875
|
return {
|
|
@@ -25856,7 +26268,7 @@ export class DescribeSQLPatternsResponseBodyPatternDetails extends $tea.Model {
|
|
|
25856
26268
|
export class DescribeSchemasResponseBodyItemsSchema extends $tea.Model {
|
|
25857
26269
|
/**
|
|
25858
26270
|
* @remarks
|
|
25859
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
26271
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
25860
26272
|
*
|
|
25861
26273
|
* @example
|
|
25862
26274
|
* amv-bp11q28kvl688****
|
|
@@ -26246,7 +26658,7 @@ export class DescribeTableAccessCountResponseBodyItems extends $tea.Model {
|
|
|
26246
26658
|
export class DescribeTablesResponseBodyItemsTable extends $tea.Model {
|
|
26247
26659
|
/**
|
|
26248
26660
|
* @remarks
|
|
26249
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
26661
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
26250
26662
|
*
|
|
26251
26663
|
* @example
|
|
26252
26664
|
* amv-bp1xxxxxxxx47
|
|
@@ -26378,7 +26790,7 @@ export class GetSparkAppAttemptLogResponseBodyData extends $tea.Model {
|
|
|
26378
26790
|
appId?: string;
|
|
26379
26791
|
/**
|
|
26380
26792
|
* @remarks
|
|
26381
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
26793
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
26382
26794
|
*
|
|
26383
26795
|
* @example
|
|
26384
26796
|
* amv-clusterxxx
|
|
@@ -28501,6 +28913,10 @@ export default class Client extends OpenApi {
|
|
|
28501
28913
|
query["BackupSetId"] = request.backupSetId;
|
|
28502
28914
|
}
|
|
28503
28915
|
|
|
28916
|
+
if (!Util.isUnset(request.cloneSourceRegionId)) {
|
|
28917
|
+
query["CloneSourceRegionId"] = request.cloneSourceRegionId;
|
|
28918
|
+
}
|
|
28919
|
+
|
|
28504
28920
|
if (!Util.isUnset(request.computeResource)) {
|
|
28505
28921
|
query["ComputeResource"] = request.computeResource;
|
|
28506
28922
|
}
|
|
@@ -28687,6 +29103,10 @@ export default class Client extends OpenApi {
|
|
|
28687
29103
|
query["MaxComputeResource"] = request.maxComputeResource;
|
|
28688
29104
|
}
|
|
28689
29105
|
|
|
29106
|
+
if (!Util.isUnset(request.maxGpuQuantity)) {
|
|
29107
|
+
query["MaxGpuQuantity"] = request.maxGpuQuantity;
|
|
29108
|
+
}
|
|
29109
|
+
|
|
28690
29110
|
if (!Util.isUnset(request.minClusterCount)) {
|
|
28691
29111
|
query["MinClusterCount"] = request.minClusterCount;
|
|
28692
29112
|
}
|
|
@@ -28695,6 +29115,10 @@ export default class Client extends OpenApi {
|
|
|
28695
29115
|
query["MinComputeResource"] = request.minComputeResource;
|
|
28696
29116
|
}
|
|
28697
29117
|
|
|
29118
|
+
if (!Util.isUnset(request.minGpuQuantity)) {
|
|
29119
|
+
query["MinGpuQuantity"] = request.minGpuQuantity;
|
|
29120
|
+
}
|
|
29121
|
+
|
|
28698
29122
|
if (!Util.isUnset(request.regionId)) {
|
|
28699
29123
|
query["RegionId"] = request.regionId;
|
|
28700
29124
|
}
|
|
@@ -28703,6 +29127,14 @@ export default class Client extends OpenApi {
|
|
|
28703
29127
|
query["Rules"] = request.rulesShrink;
|
|
28704
29128
|
}
|
|
28705
29129
|
|
|
29130
|
+
if (!Util.isUnset(request.specName)) {
|
|
29131
|
+
query["SpecName"] = request.specName;
|
|
29132
|
+
}
|
|
29133
|
+
|
|
29134
|
+
if (!Util.isUnset(request.targetResourceGroupName)) {
|
|
29135
|
+
query["TargetResourceGroupName"] = request.targetResourceGroupName;
|
|
29136
|
+
}
|
|
29137
|
+
|
|
28706
29138
|
let req = new $OpenApi.OpenApiRequest({
|
|
28707
29139
|
query: OpenApiUtil.query(query),
|
|
28708
29140
|
});
|
|
@@ -28875,6 +29307,8 @@ export default class Client extends OpenApi {
|
|
|
28875
29307
|
}
|
|
28876
29308
|
|
|
28877
29309
|
/**
|
|
29310
|
+
* Creates a custom monitoring view.
|
|
29311
|
+
*
|
|
28878
29312
|
* @param tmpReq - CreatePerformanceViewRequest
|
|
28879
29313
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
28880
29314
|
* @returns CreatePerformanceViewResponse
|
|
@@ -28946,6 +29380,8 @@ export default class Client extends OpenApi {
|
|
|
28946
29380
|
}
|
|
28947
29381
|
|
|
28948
29382
|
/**
|
|
29383
|
+
* Creates a custom monitoring view.
|
|
29384
|
+
*
|
|
28949
29385
|
* @param request - CreatePerformanceViewRequest
|
|
28950
29386
|
* @returns CreatePerformanceViewResponse
|
|
28951
29387
|
*/
|
|
@@ -29235,6 +29671,8 @@ export default class Client extends OpenApi {
|
|
|
29235
29671
|
}
|
|
29236
29672
|
|
|
29237
29673
|
/**
|
|
29674
|
+
* Deletes a monitoring view.
|
|
29675
|
+
*
|
|
29238
29676
|
* @param request - DeletePerformanceViewRequest
|
|
29239
29677
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
29240
29678
|
* @returns DeletePerformanceViewResponse
|
|
@@ -29288,6 +29726,8 @@ export default class Client extends OpenApi {
|
|
|
29288
29726
|
}
|
|
29289
29727
|
|
|
29290
29728
|
/**
|
|
29729
|
+
* Deletes a monitoring view.
|
|
29730
|
+
*
|
|
29291
29731
|
* @param request - DeletePerformanceViewRequest
|
|
29292
29732
|
* @returns DeletePerformanceViewResponse
|
|
29293
29733
|
*/
|
|
@@ -29418,9 +29858,9 @@ export default class Client extends OpenApi {
|
|
|
29418
29858
|
* Deletes Spark template files.
|
|
29419
29859
|
*
|
|
29420
29860
|
* @remarks
|
|
29421
|
-
*
|
|
29422
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
29861
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
29423
29862
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
29863
|
+
* > 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.
|
|
29424
29864
|
*
|
|
29425
29865
|
* @param request - DeleteSparkTemplateFileRequest
|
|
29426
29866
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -29458,9 +29898,9 @@ export default class Client extends OpenApi {
|
|
|
29458
29898
|
* Deletes Spark template files.
|
|
29459
29899
|
*
|
|
29460
29900
|
* @remarks
|
|
29461
|
-
*
|
|
29462
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
29901
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
29463
29902
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
29903
|
+
* > 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.
|
|
29464
29904
|
*
|
|
29465
29905
|
* @param request - DeleteSparkTemplateFileRequest
|
|
29466
29906
|
* @returns DeleteSparkTemplateFileResponse
|
|
@@ -29745,7 +30185,7 @@ export default class Client extends OpenApi {
|
|
|
29745
30185
|
}
|
|
29746
30186
|
|
|
29747
30187
|
/**
|
|
29748
|
-
* Queries the information about table columns for an AnalyticDB for MySQL
|
|
30188
|
+
* Queries the information about table columns for an AnalyticDB for MySQL cluster.
|
|
29749
30189
|
*
|
|
29750
30190
|
* @remarks
|
|
29751
30191
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -29792,7 +30232,7 @@ export default class Client extends OpenApi {
|
|
|
29792
30232
|
}
|
|
29793
30233
|
|
|
29794
30234
|
/**
|
|
29795
|
-
* Queries the information about table columns for an AnalyticDB for MySQL
|
|
30235
|
+
* Queries the information about table columns for an AnalyticDB for MySQL cluster.
|
|
29796
30236
|
*
|
|
29797
30237
|
* @remarks
|
|
29798
30238
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -29807,7 +30247,7 @@ export default class Client extends OpenApi {
|
|
|
29807
30247
|
}
|
|
29808
30248
|
|
|
29809
30249
|
/**
|
|
29810
|
-
* Queries a list of databases for an AnalyticDB for MySQL
|
|
30250
|
+
* Queries a list of databases for an AnalyticDB for MySQL cluster.
|
|
29811
30251
|
*
|
|
29812
30252
|
* @remarks
|
|
29813
30253
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -29846,7 +30286,7 @@ export default class Client extends OpenApi {
|
|
|
29846
30286
|
}
|
|
29847
30287
|
|
|
29848
30288
|
/**
|
|
29849
|
-
* Queries a list of databases for an AnalyticDB for MySQL
|
|
30289
|
+
* Queries a list of databases for an AnalyticDB for MySQL cluster.
|
|
29850
30290
|
*
|
|
29851
30291
|
* @remarks
|
|
29852
30292
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -29861,7 +30301,7 @@ export default class Client extends OpenApi {
|
|
|
29861
30301
|
}
|
|
29862
30302
|
|
|
29863
30303
|
/**
|
|
29864
|
-
* Queries a list of tables for an AnalyticDB for MySQL
|
|
30304
|
+
* Queries a list of tables for an AnalyticDB for MySQL cluster.
|
|
29865
30305
|
*
|
|
29866
30306
|
* @remarks
|
|
29867
30307
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -29904,7 +30344,7 @@ export default class Client extends OpenApi {
|
|
|
29904
30344
|
}
|
|
29905
30345
|
|
|
29906
30346
|
/**
|
|
29907
|
-
* Queries a list of tables for an AnalyticDB for MySQL
|
|
30347
|
+
* Queries a list of tables for an AnalyticDB for MySQL cluster.
|
|
29908
30348
|
*
|
|
29909
30349
|
* @remarks
|
|
29910
30350
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -30421,6 +30861,10 @@ export default class Client extends OpenApi {
|
|
|
30421
30861
|
query["DBClusterId"] = request.DBClusterId;
|
|
30422
30862
|
}
|
|
30423
30863
|
|
|
30864
|
+
if (!Util.isUnset(request.regionId)) {
|
|
30865
|
+
query["RegionId"] = request.regionId;
|
|
30866
|
+
}
|
|
30867
|
+
|
|
30424
30868
|
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
30425
30869
|
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
30426
30870
|
}
|
|
@@ -30509,10 +30953,10 @@ export default class Client extends OpenApi {
|
|
|
30509
30953
|
}
|
|
30510
30954
|
|
|
30511
30955
|
/**
|
|
30512
|
-
*
|
|
30956
|
+
* Queries the information about resource usage of an AnalyticDB for MySQL cluster.
|
|
30513
30957
|
*
|
|
30514
30958
|
* @remarks
|
|
30515
|
-
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
30959
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
30516
30960
|
*
|
|
30517
30961
|
* @param request - DescribeClusterResourceDetailRequest
|
|
30518
30962
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -30543,10 +30987,10 @@ export default class Client extends OpenApi {
|
|
|
30543
30987
|
}
|
|
30544
30988
|
|
|
30545
30989
|
/**
|
|
30546
|
-
*
|
|
30990
|
+
* Queries the information about resource usage of an AnalyticDB for MySQL cluster.
|
|
30547
30991
|
*
|
|
30548
30992
|
* @remarks
|
|
30549
|
-
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
30993
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
30550
30994
|
*
|
|
30551
30995
|
* @param request - DescribeClusterResourceDetailRequest
|
|
30552
30996
|
* @returns DescribeClusterResourceDetailResponse
|
|
@@ -31937,6 +32381,8 @@ export default class Client extends OpenApi {
|
|
|
31937
32381
|
}
|
|
31938
32382
|
|
|
31939
32383
|
/**
|
|
32384
|
+
* Queries the information about a monitoring view.
|
|
32385
|
+
*
|
|
31940
32386
|
* @param request - DescribePerformanceViewAttributeRequest
|
|
31941
32387
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
31942
32388
|
* @returns DescribePerformanceViewAttributeResponse
|
|
@@ -31990,6 +32436,8 @@ export default class Client extends OpenApi {
|
|
|
31990
32436
|
}
|
|
31991
32437
|
|
|
31992
32438
|
/**
|
|
32439
|
+
* Queries the information about a monitoring view.
|
|
32440
|
+
*
|
|
31993
32441
|
* @param request - DescribePerformanceViewAttributeRequest
|
|
31994
32442
|
* @returns DescribePerformanceViewAttributeResponse
|
|
31995
32443
|
*/
|
|
@@ -31999,6 +32447,8 @@ export default class Client extends OpenApi {
|
|
|
31999
32447
|
}
|
|
32000
32448
|
|
|
32001
32449
|
/**
|
|
32450
|
+
* Queries a list of monitoring views.
|
|
32451
|
+
*
|
|
32002
32452
|
* @param request - DescribePerformanceViewsRequest
|
|
32003
32453
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
32004
32454
|
* @returns DescribePerformanceViewsResponse
|
|
@@ -32048,6 +32498,8 @@ export default class Client extends OpenApi {
|
|
|
32048
32498
|
}
|
|
32049
32499
|
|
|
32050
32500
|
/**
|
|
32501
|
+
* Queries a list of monitoring views.
|
|
32502
|
+
*
|
|
32051
32503
|
* @param request - DescribePerformanceViewsRequest
|
|
32052
32504
|
* @returns DescribePerformanceViewsResponse
|
|
32053
32505
|
*/
|
|
@@ -32515,6 +32967,9 @@ export default class Client extends OpenApi {
|
|
|
32515
32967
|
/**
|
|
32516
32968
|
* Queries the storage resource usage of an AnalyticDB for MySQL Data Lakehouse Edition (V3.0) cluster.
|
|
32517
32969
|
*
|
|
32970
|
+
* @remarks
|
|
32971
|
+
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
32972
|
+
*
|
|
32518
32973
|
* @param request - DescribeStorageResourceUsageRequest
|
|
32519
32974
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
32520
32975
|
* @returns DescribeStorageResourceUsageResponse
|
|
@@ -32554,6 +33009,9 @@ export default class Client extends OpenApi {
|
|
|
32554
33009
|
/**
|
|
32555
33010
|
* Queries the storage resource usage of an AnalyticDB for MySQL Data Lakehouse Edition (V3.0) cluster.
|
|
32556
33011
|
*
|
|
33012
|
+
* @remarks
|
|
33013
|
+
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
33014
|
+
*
|
|
32557
33015
|
* @param request - DescribeStorageResourceUsageRequest
|
|
32558
33016
|
* @returns DescribeStorageResourceUsageResponse
|
|
32559
33017
|
*/
|
|
@@ -33122,9 +33580,9 @@ export default class Client extends OpenApi {
|
|
|
33122
33580
|
* Queries the information about the retry log of a Spark application.
|
|
33123
33581
|
*
|
|
33124
33582
|
* @remarks
|
|
33125
|
-
*
|
|
33126
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
33583
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
33127
33584
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
33585
|
+
* > 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.
|
|
33128
33586
|
*
|
|
33129
33587
|
* @param request - GetSparkAppAttemptLogRequest
|
|
33130
33588
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -33172,9 +33630,9 @@ export default class Client extends OpenApi {
|
|
|
33172
33630
|
* Queries the information about the retry log of a Spark application.
|
|
33173
33631
|
*
|
|
33174
33632
|
* @remarks
|
|
33175
|
-
*
|
|
33176
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
33633
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
33177
33634
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
33635
|
+
* > 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.
|
|
33178
33636
|
*
|
|
33179
33637
|
* @param request - GetSparkAppAttemptLogRequest
|
|
33180
33638
|
* @returns GetSparkAppAttemptLogResponse
|
|
@@ -33810,9 +34268,9 @@ export default class Client extends OpenApi {
|
|
|
33810
34268
|
* Queries the directory structure of Spark applications.
|
|
33811
34269
|
*
|
|
33812
34270
|
* @remarks
|
|
33813
|
-
*
|
|
33814
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
34271
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
33815
34272
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
34273
|
+
* > 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.
|
|
33816
34274
|
*
|
|
33817
34275
|
* @param request - GetSparkTemplateFullTreeRequest
|
|
33818
34276
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -33846,9 +34304,9 @@ export default class Client extends OpenApi {
|
|
|
33846
34304
|
* Queries the directory structure of Spark applications.
|
|
33847
34305
|
*
|
|
33848
34306
|
* @remarks
|
|
33849
|
-
*
|
|
33850
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
34307
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
33851
34308
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
34309
|
+
* > 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.
|
|
33852
34310
|
*
|
|
33853
34311
|
* @param request - GetSparkTemplateFullTreeRequest
|
|
33854
34312
|
* @returns GetSparkTemplateFullTreeResponse
|
|
@@ -34618,9 +35076,9 @@ export default class Client extends OpenApi {
|
|
|
34618
35076
|
* Queries all Spark template file IDs of an AnalyticDB for MySQL Data Lakehouse Edition (V3.0) cluster.
|
|
34619
35077
|
*
|
|
34620
35078
|
* @remarks
|
|
34621
|
-
*
|
|
34622
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
35079
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
34623
35080
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
35081
|
+
* > 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.
|
|
34624
35082
|
*
|
|
34625
35083
|
* @param request - ListSparkTemplateFileIdsRequest
|
|
34626
35084
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -34654,9 +35112,9 @@ export default class Client extends OpenApi {
|
|
|
34654
35112
|
* Queries all Spark template file IDs of an AnalyticDB for MySQL Data Lakehouse Edition (V3.0) cluster.
|
|
34655
35113
|
*
|
|
34656
35114
|
* @remarks
|
|
34657
|
-
*
|
|
34658
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
35115
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
34659
35116
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
35117
|
+
* > 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.
|
|
34660
35118
|
*
|
|
34661
35119
|
* @param request - ListSparkTemplateFileIdsRequest
|
|
34662
35120
|
* @returns ListSparkTemplateFileIdsResponse
|
|
@@ -35134,7 +35592,7 @@ export default class Client extends OpenApi {
|
|
|
35134
35592
|
* * 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.
|
|
35135
35593
|
* * 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.
|
|
35136
35594
|
* * 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.
|
|
35137
|
-
* * For information about the endpoints of
|
|
35595
|
+
* * For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
35138
35596
|
*
|
|
35139
35597
|
* @param request - ModifyDBClusterRequest
|
|
35140
35598
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -35163,6 +35621,10 @@ export default class Client extends OpenApi {
|
|
|
35163
35621
|
query["OwnerId"] = request.ownerId;
|
|
35164
35622
|
}
|
|
35165
35623
|
|
|
35624
|
+
if (!Util.isUnset(request.productForm)) {
|
|
35625
|
+
query["ProductForm"] = request.productForm;
|
|
35626
|
+
}
|
|
35627
|
+
|
|
35166
35628
|
if (!Util.isUnset(request.regionId)) {
|
|
35167
35629
|
query["RegionId"] = request.regionId;
|
|
35168
35630
|
}
|
|
@@ -35210,7 +35672,7 @@ export default class Client extends OpenApi {
|
|
|
35210
35672
|
* * 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.
|
|
35211
35673
|
* * 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.
|
|
35212
35674
|
* * 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.
|
|
35213
|
-
* * For information about the endpoints of
|
|
35675
|
+
* * For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
35214
35676
|
*
|
|
35215
35677
|
* @param request - ModifyDBClusterRequest
|
|
35216
35678
|
* @returns ModifyDBClusterResponse
|
|
@@ -35383,6 +35845,10 @@ export default class Client extends OpenApi {
|
|
|
35383
35845
|
query["MaxComputeResource"] = request.maxComputeResource;
|
|
35384
35846
|
}
|
|
35385
35847
|
|
|
35848
|
+
if (!Util.isUnset(request.maxGpuQuantity)) {
|
|
35849
|
+
query["MaxGpuQuantity"] = request.maxGpuQuantity;
|
|
35850
|
+
}
|
|
35851
|
+
|
|
35386
35852
|
if (!Util.isUnset(request.minClusterCount)) {
|
|
35387
35853
|
query["MinClusterCount"] = request.minClusterCount;
|
|
35388
35854
|
}
|
|
@@ -35391,6 +35857,10 @@ export default class Client extends OpenApi {
|
|
|
35391
35857
|
query["MinComputeResource"] = request.minComputeResource;
|
|
35392
35858
|
}
|
|
35393
35859
|
|
|
35860
|
+
if (!Util.isUnset(request.minGpuQuantity)) {
|
|
35861
|
+
query["MinGpuQuantity"] = request.minGpuQuantity;
|
|
35862
|
+
}
|
|
35863
|
+
|
|
35394
35864
|
if (!Util.isUnset(request.regionId)) {
|
|
35395
35865
|
query["RegionId"] = request.regionId;
|
|
35396
35866
|
}
|
|
@@ -35399,6 +35869,14 @@ export default class Client extends OpenApi {
|
|
|
35399
35869
|
query["Rules"] = request.rulesShrink;
|
|
35400
35870
|
}
|
|
35401
35871
|
|
|
35872
|
+
if (!Util.isUnset(request.specName)) {
|
|
35873
|
+
query["SpecName"] = request.specName;
|
|
35874
|
+
}
|
|
35875
|
+
|
|
35876
|
+
if (!Util.isUnset(request.targetResourceGroupName)) {
|
|
35877
|
+
query["TargetResourceGroupName"] = request.targetResourceGroupName;
|
|
35878
|
+
}
|
|
35879
|
+
|
|
35402
35880
|
let req = new $OpenApi.OpenApiRequest({
|
|
35403
35881
|
query: OpenApiUtil.query(query),
|
|
35404
35882
|
});
|
|
@@ -35812,9 +36290,9 @@ export default class Client extends OpenApi {
|
|
|
35812
36290
|
* Modifies the Spark log configuration.
|
|
35813
36291
|
*
|
|
35814
36292
|
* @remarks
|
|
35815
|
-
*
|
|
35816
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
36293
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
35817
36294
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
36295
|
+
* > 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.
|
|
35818
36296
|
*
|
|
35819
36297
|
* @param request - SetSparkAppLogRootPathRequest
|
|
35820
36298
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -35856,9 +36334,9 @@ export default class Client extends OpenApi {
|
|
|
35856
36334
|
* Modifies the Spark log configuration.
|
|
35857
36335
|
*
|
|
35858
36336
|
* @remarks
|
|
35859
|
-
*
|
|
35860
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
36337
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
35861
36338
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
36339
|
+
* > 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.
|
|
35862
36340
|
*
|
|
35863
36341
|
* @param request - SetSparkAppLogRootPathRequest
|
|
35864
36342
|
* @returns SetSparkAppLogRootPathResponse
|