@alicloud/adb20211201 3.0.0 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +713 -20
- package/dist/client.js +700 -22
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1134 -4
package/dist/client.d.ts
CHANGED
|
@@ -1070,6 +1070,65 @@ export declare class BindDBResourceGroupWithUserResponse extends $tea.Model {
|
|
|
1070
1070
|
[key: string]: any;
|
|
1071
1071
|
});
|
|
1072
1072
|
}
|
|
1073
|
+
export declare class CancelSparkReplStatementRequest extends $tea.Model {
|
|
1074
|
+
/**
|
|
1075
|
+
* @example
|
|
1076
|
+
* s202411071444hzdvk486d9d2001****
|
|
1077
|
+
*/
|
|
1078
|
+
appId?: string;
|
|
1079
|
+
/**
|
|
1080
|
+
* @example
|
|
1081
|
+
* 456
|
|
1082
|
+
*/
|
|
1083
|
+
sessionId?: number;
|
|
1084
|
+
/**
|
|
1085
|
+
* @example
|
|
1086
|
+
* 123
|
|
1087
|
+
*/
|
|
1088
|
+
statementId?: number;
|
|
1089
|
+
static names(): {
|
|
1090
|
+
[key: string]: string;
|
|
1091
|
+
};
|
|
1092
|
+
static types(): {
|
|
1093
|
+
[key: string]: any;
|
|
1094
|
+
};
|
|
1095
|
+
constructor(map?: {
|
|
1096
|
+
[key: string]: any;
|
|
1097
|
+
});
|
|
1098
|
+
}
|
|
1099
|
+
export declare class CancelSparkReplStatementResponseBody extends $tea.Model {
|
|
1100
|
+
data?: CancelSparkReplStatementResponseBodyData;
|
|
1101
|
+
/**
|
|
1102
|
+
* @example
|
|
1103
|
+
* 1AD222E9-E606-4A42-BF6D-8A4442913CEF
|
|
1104
|
+
*/
|
|
1105
|
+
requestId?: string;
|
|
1106
|
+
static names(): {
|
|
1107
|
+
[key: string]: string;
|
|
1108
|
+
};
|
|
1109
|
+
static types(): {
|
|
1110
|
+
[key: string]: any;
|
|
1111
|
+
};
|
|
1112
|
+
constructor(map?: {
|
|
1113
|
+
[key: string]: any;
|
|
1114
|
+
});
|
|
1115
|
+
}
|
|
1116
|
+
export declare class CancelSparkReplStatementResponse extends $tea.Model {
|
|
1117
|
+
headers?: {
|
|
1118
|
+
[key: string]: string;
|
|
1119
|
+
};
|
|
1120
|
+
statusCode?: number;
|
|
1121
|
+
body?: CancelSparkReplStatementResponseBody;
|
|
1122
|
+
static names(): {
|
|
1123
|
+
[key: string]: string;
|
|
1124
|
+
};
|
|
1125
|
+
static types(): {
|
|
1126
|
+
[key: string]: any;
|
|
1127
|
+
};
|
|
1128
|
+
constructor(map?: {
|
|
1129
|
+
[key: string]: any;
|
|
1130
|
+
});
|
|
1131
|
+
}
|
|
1073
1132
|
export declare class CheckBindRamUserRequest extends $tea.Model {
|
|
1074
1133
|
/**
|
|
1075
1134
|
* @remarks
|
|
@@ -5436,6 +5495,8 @@ export declare class DescribeColumnsResponse extends $tea.Model {
|
|
|
5436
5495
|
export declare class DescribeCompactionServiceSwitchRequest extends $tea.Model {
|
|
5437
5496
|
/**
|
|
5438
5497
|
* @remarks
|
|
5498
|
+
* The cluster ID.
|
|
5499
|
+
*
|
|
5439
5500
|
* This parameter is required.
|
|
5440
5501
|
*
|
|
5441
5502
|
* @example
|
|
@@ -5453,8 +5514,15 @@ export declare class DescribeCompactionServiceSwitchRequest extends $tea.Model {
|
|
|
5453
5514
|
});
|
|
5454
5515
|
}
|
|
5455
5516
|
export declare class DescribeCompactionServiceSwitchResponseBody extends $tea.Model {
|
|
5517
|
+
/**
|
|
5518
|
+
* @remarks
|
|
5519
|
+
* The returned data.
|
|
5520
|
+
*/
|
|
5456
5521
|
data?: DescribeCompactionServiceSwitchResponseBodyData;
|
|
5457
5522
|
/**
|
|
5523
|
+
* @remarks
|
|
5524
|
+
* The request ID.
|
|
5525
|
+
*
|
|
5458
5526
|
* @example
|
|
5459
5527
|
* D761DA51-12F8-5457-AAA9-F52B9F436D2D
|
|
5460
5528
|
*/
|
|
@@ -10137,6 +10205,79 @@ export declare class EnableElasticPlanResponse extends $tea.Model {
|
|
|
10137
10205
|
[key: string]: any;
|
|
10138
10206
|
});
|
|
10139
10207
|
}
|
|
10208
|
+
export declare class ExecuteSparkReplStatementRequest extends $tea.Model {
|
|
10209
|
+
/**
|
|
10210
|
+
* @example
|
|
10211
|
+
* s202411071444hzdvk486d9d2001****
|
|
10212
|
+
*/
|
|
10213
|
+
appId?: string;
|
|
10214
|
+
/**
|
|
10215
|
+
* @remarks
|
|
10216
|
+
* This parameter is required.
|
|
10217
|
+
*
|
|
10218
|
+
* @example
|
|
10219
|
+
* print(1+1)
|
|
10220
|
+
*/
|
|
10221
|
+
code?: string;
|
|
10222
|
+
/**
|
|
10223
|
+
* @remarks
|
|
10224
|
+
* This parameter is required.
|
|
10225
|
+
*
|
|
10226
|
+
* @example
|
|
10227
|
+
* PYTHON
|
|
10228
|
+
*/
|
|
10229
|
+
codeType?: string;
|
|
10230
|
+
/**
|
|
10231
|
+
* @remarks
|
|
10232
|
+
* This parameter is required.
|
|
10233
|
+
*
|
|
10234
|
+
* @example
|
|
10235
|
+
* 123
|
|
10236
|
+
*/
|
|
10237
|
+
sessionId?: number;
|
|
10238
|
+
static names(): {
|
|
10239
|
+
[key: string]: string;
|
|
10240
|
+
};
|
|
10241
|
+
static types(): {
|
|
10242
|
+
[key: string]: any;
|
|
10243
|
+
};
|
|
10244
|
+
constructor(map?: {
|
|
10245
|
+
[key: string]: any;
|
|
10246
|
+
});
|
|
10247
|
+
}
|
|
10248
|
+
export declare class ExecuteSparkReplStatementResponseBody extends $tea.Model {
|
|
10249
|
+
data?: ExecuteSparkReplStatementResponseBodyData;
|
|
10250
|
+
/**
|
|
10251
|
+
* @example
|
|
10252
|
+
* 1AD222E9-E606-4A42-BF6D-8A4442913CEF
|
|
10253
|
+
*/
|
|
10254
|
+
requestId?: string;
|
|
10255
|
+
static names(): {
|
|
10256
|
+
[key: string]: string;
|
|
10257
|
+
};
|
|
10258
|
+
static types(): {
|
|
10259
|
+
[key: string]: any;
|
|
10260
|
+
};
|
|
10261
|
+
constructor(map?: {
|
|
10262
|
+
[key: string]: any;
|
|
10263
|
+
});
|
|
10264
|
+
}
|
|
10265
|
+
export declare class ExecuteSparkReplStatementResponse extends $tea.Model {
|
|
10266
|
+
headers?: {
|
|
10267
|
+
[key: string]: string;
|
|
10268
|
+
};
|
|
10269
|
+
statusCode?: number;
|
|
10270
|
+
body?: ExecuteSparkReplStatementResponseBody;
|
|
10271
|
+
static names(): {
|
|
10272
|
+
[key: string]: string;
|
|
10273
|
+
};
|
|
10274
|
+
static types(): {
|
|
10275
|
+
[key: string]: any;
|
|
10276
|
+
};
|
|
10277
|
+
constructor(map?: {
|
|
10278
|
+
[key: string]: any;
|
|
10279
|
+
});
|
|
10280
|
+
}
|
|
10140
10281
|
export declare class ExistRunningSQLEngineRequest extends $tea.Model {
|
|
10141
10282
|
/**
|
|
10142
10283
|
* @remarks
|
|
@@ -10994,6 +11135,122 @@ export declare class GetSparkLogAnalyzeTaskResponse extends $tea.Model {
|
|
|
10994
11135
|
[key: string]: any;
|
|
10995
11136
|
});
|
|
10996
11137
|
}
|
|
11138
|
+
export declare class GetSparkReplSessionRequest extends $tea.Model {
|
|
11139
|
+
/**
|
|
11140
|
+
* @example
|
|
11141
|
+
* s202411071444hzdvk486d9d200****
|
|
11142
|
+
*/
|
|
11143
|
+
appId?: string;
|
|
11144
|
+
/**
|
|
11145
|
+
* @remarks
|
|
11146
|
+
* This parameter is required.
|
|
11147
|
+
*
|
|
11148
|
+
* @example
|
|
11149
|
+
* 1
|
|
11150
|
+
*/
|
|
11151
|
+
sessionId?: number;
|
|
11152
|
+
static names(): {
|
|
11153
|
+
[key: string]: string;
|
|
11154
|
+
};
|
|
11155
|
+
static types(): {
|
|
11156
|
+
[key: string]: any;
|
|
11157
|
+
};
|
|
11158
|
+
constructor(map?: {
|
|
11159
|
+
[key: string]: any;
|
|
11160
|
+
});
|
|
11161
|
+
}
|
|
11162
|
+
export declare class GetSparkReplSessionResponseBody extends $tea.Model {
|
|
11163
|
+
data?: GetSparkReplSessionResponseBodyData;
|
|
11164
|
+
/**
|
|
11165
|
+
* @example
|
|
11166
|
+
* 4CE6DF97-AEA4-484F-906F-C407EE3770EB
|
|
11167
|
+
*/
|
|
11168
|
+
requestId?: string;
|
|
11169
|
+
static names(): {
|
|
11170
|
+
[key: string]: string;
|
|
11171
|
+
};
|
|
11172
|
+
static types(): {
|
|
11173
|
+
[key: string]: any;
|
|
11174
|
+
};
|
|
11175
|
+
constructor(map?: {
|
|
11176
|
+
[key: string]: any;
|
|
11177
|
+
});
|
|
11178
|
+
}
|
|
11179
|
+
export declare class GetSparkReplSessionResponse extends $tea.Model {
|
|
11180
|
+
headers?: {
|
|
11181
|
+
[key: string]: string;
|
|
11182
|
+
};
|
|
11183
|
+
statusCode?: number;
|
|
11184
|
+
body?: GetSparkReplSessionResponseBody;
|
|
11185
|
+
static names(): {
|
|
11186
|
+
[key: string]: string;
|
|
11187
|
+
};
|
|
11188
|
+
static types(): {
|
|
11189
|
+
[key: string]: any;
|
|
11190
|
+
};
|
|
11191
|
+
constructor(map?: {
|
|
11192
|
+
[key: string]: any;
|
|
11193
|
+
});
|
|
11194
|
+
}
|
|
11195
|
+
export declare class GetSparkReplStatementRequest extends $tea.Model {
|
|
11196
|
+
/**
|
|
11197
|
+
* @example
|
|
11198
|
+
* s202411071444hzdvk486d9d200****
|
|
11199
|
+
*/
|
|
11200
|
+
appId?: string;
|
|
11201
|
+
/**
|
|
11202
|
+
* @example
|
|
11203
|
+
* 1
|
|
11204
|
+
*/
|
|
11205
|
+
sessionId?: number;
|
|
11206
|
+
/**
|
|
11207
|
+
* @example
|
|
11208
|
+
* 123
|
|
11209
|
+
*/
|
|
11210
|
+
statementId?: number;
|
|
11211
|
+
static names(): {
|
|
11212
|
+
[key: string]: string;
|
|
11213
|
+
};
|
|
11214
|
+
static types(): {
|
|
11215
|
+
[key: string]: any;
|
|
11216
|
+
};
|
|
11217
|
+
constructor(map?: {
|
|
11218
|
+
[key: string]: any;
|
|
11219
|
+
});
|
|
11220
|
+
}
|
|
11221
|
+
export declare class GetSparkReplStatementResponseBody extends $tea.Model {
|
|
11222
|
+
data?: GetSparkReplStatementResponseBodyData;
|
|
11223
|
+
/**
|
|
11224
|
+
* @example
|
|
11225
|
+
* 1AD222E9-E606-4A42-BF6D-8A4442913CEF
|
|
11226
|
+
*/
|
|
11227
|
+
requestId?: string;
|
|
11228
|
+
static names(): {
|
|
11229
|
+
[key: string]: string;
|
|
11230
|
+
};
|
|
11231
|
+
static types(): {
|
|
11232
|
+
[key: string]: any;
|
|
11233
|
+
};
|
|
11234
|
+
constructor(map?: {
|
|
11235
|
+
[key: string]: any;
|
|
11236
|
+
});
|
|
11237
|
+
}
|
|
11238
|
+
export declare class GetSparkReplStatementResponse extends $tea.Model {
|
|
11239
|
+
headers?: {
|
|
11240
|
+
[key: string]: string;
|
|
11241
|
+
};
|
|
11242
|
+
statusCode?: number;
|
|
11243
|
+
body?: GetSparkReplStatementResponseBody;
|
|
11244
|
+
static names(): {
|
|
11245
|
+
[key: string]: string;
|
|
11246
|
+
};
|
|
11247
|
+
static types(): {
|
|
11248
|
+
[key: string]: any;
|
|
11249
|
+
};
|
|
11250
|
+
constructor(map?: {
|
|
11251
|
+
[key: string]: any;
|
|
11252
|
+
});
|
|
11253
|
+
}
|
|
10997
11254
|
export declare class GetSparkSQLEngineStateRequest extends $tea.Model {
|
|
10998
11255
|
/**
|
|
10999
11256
|
* @remarks
|
|
@@ -13543,6 +13800,8 @@ export declare class ModifyClusterConnectionStringResponse extends $tea.Model {
|
|
|
13543
13800
|
export declare class ModifyCompactionServiceSwitchRequest extends $tea.Model {
|
|
13544
13801
|
/**
|
|
13545
13802
|
* @remarks
|
|
13803
|
+
* The cluster ID.
|
|
13804
|
+
*
|
|
13546
13805
|
* This parameter is required.
|
|
13547
13806
|
*
|
|
13548
13807
|
* @example
|
|
@@ -13551,6 +13810,13 @@ export declare class ModifyCompactionServiceSwitchRequest extends $tea.Model {
|
|
|
13551
13810
|
DBClusterId?: string;
|
|
13552
13811
|
/**
|
|
13553
13812
|
* @remarks
|
|
13813
|
+
* Specifies whether to enable the remote build feature.
|
|
13814
|
+
*
|
|
13815
|
+
* Valid values:
|
|
13816
|
+
*
|
|
13817
|
+
* * true
|
|
13818
|
+
* * false
|
|
13819
|
+
*
|
|
13554
13820
|
* This parameter is required.
|
|
13555
13821
|
*
|
|
13556
13822
|
* @example
|
|
@@ -13569,6 +13835,9 @@ export declare class ModifyCompactionServiceSwitchRequest extends $tea.Model {
|
|
|
13569
13835
|
}
|
|
13570
13836
|
export declare class ModifyCompactionServiceSwitchResponseBody extends $tea.Model {
|
|
13571
13837
|
/**
|
|
13838
|
+
* @remarks
|
|
13839
|
+
* The request ID.
|
|
13840
|
+
*
|
|
13572
13841
|
* @example
|
|
13573
13842
|
* 21ABF219-10E0-571B-94B8-9C9AE5022BF8
|
|
13574
13843
|
*/
|
|
@@ -15120,10 +15389,10 @@ export declare class SetSparkAppLogRootPathResponse extends $tea.Model {
|
|
|
15120
15389
|
[key: string]: any;
|
|
15121
15390
|
});
|
|
15122
15391
|
}
|
|
15123
|
-
export declare class
|
|
15392
|
+
export declare class StartSparkReplSessionRequest extends $tea.Model {
|
|
15124
15393
|
/**
|
|
15125
15394
|
* @remarks
|
|
15126
|
-
*
|
|
15395
|
+
* This parameter is required.
|
|
15127
15396
|
*
|
|
15128
15397
|
* @example
|
|
15129
15398
|
* { "spark.shuffle.timeout": ":0s" }
|
|
@@ -15131,30 +15400,98 @@ export declare class StartSparkSQLEngineRequest extends $tea.Model {
|
|
|
15131
15400
|
config?: string;
|
|
15132
15401
|
/**
|
|
15133
15402
|
* @remarks
|
|
15134
|
-
* The cluster ID.
|
|
15135
|
-
*
|
|
15136
15403
|
* This parameter is required.
|
|
15137
15404
|
*
|
|
15138
15405
|
* @example
|
|
15139
|
-
* amv-
|
|
15406
|
+
* amv-bp1mfe9qm****
|
|
15140
15407
|
*/
|
|
15141
15408
|
DBClusterId?: string;
|
|
15142
15409
|
/**
|
|
15143
15410
|
* @remarks
|
|
15144
|
-
*
|
|
15145
|
-
*
|
|
15146
|
-
* @example
|
|
15147
|
-
* oss://testBuckname/test.jar,oss://testBuckname/test2.jar
|
|
15148
|
-
*/
|
|
15149
|
-
jars?: string;
|
|
15150
|
-
/**
|
|
15151
|
-
* @remarks
|
|
15152
|
-
* The maximum number of executors that are required to execute SQL statements. Valid values: 1 to 2000. If this value exceeds the total number of executes that are supported by the resource group, the Spark SQL engine fails to be started.
|
|
15411
|
+
* This parameter is required.
|
|
15153
15412
|
*
|
|
15154
15413
|
* @example
|
|
15155
|
-
*
|
|
15414
|
+
* test
|
|
15156
15415
|
*/
|
|
15157
|
-
|
|
15416
|
+
resourceGroupName?: string;
|
|
15417
|
+
static names(): {
|
|
15418
|
+
[key: string]: string;
|
|
15419
|
+
};
|
|
15420
|
+
static types(): {
|
|
15421
|
+
[key: string]: any;
|
|
15422
|
+
};
|
|
15423
|
+
constructor(map?: {
|
|
15424
|
+
[key: string]: any;
|
|
15425
|
+
});
|
|
15426
|
+
}
|
|
15427
|
+
export declare class StartSparkReplSessionResponseBody extends $tea.Model {
|
|
15428
|
+
data?: StartSparkReplSessionResponseBodyData;
|
|
15429
|
+
/**
|
|
15430
|
+
* @example
|
|
15431
|
+
* C1797FEA-B7D6-5ED6-A24B-2C8C5F4D7361
|
|
15432
|
+
*/
|
|
15433
|
+
requestId?: string;
|
|
15434
|
+
static names(): {
|
|
15435
|
+
[key: string]: string;
|
|
15436
|
+
};
|
|
15437
|
+
static types(): {
|
|
15438
|
+
[key: string]: any;
|
|
15439
|
+
};
|
|
15440
|
+
constructor(map?: {
|
|
15441
|
+
[key: string]: any;
|
|
15442
|
+
});
|
|
15443
|
+
}
|
|
15444
|
+
export declare class StartSparkReplSessionResponse extends $tea.Model {
|
|
15445
|
+
headers?: {
|
|
15446
|
+
[key: string]: string;
|
|
15447
|
+
};
|
|
15448
|
+
statusCode?: number;
|
|
15449
|
+
body?: StartSparkReplSessionResponseBody;
|
|
15450
|
+
static names(): {
|
|
15451
|
+
[key: string]: string;
|
|
15452
|
+
};
|
|
15453
|
+
static types(): {
|
|
15454
|
+
[key: string]: any;
|
|
15455
|
+
};
|
|
15456
|
+
constructor(map?: {
|
|
15457
|
+
[key: string]: any;
|
|
15458
|
+
});
|
|
15459
|
+
}
|
|
15460
|
+
export declare class StartSparkSQLEngineRequest extends $tea.Model {
|
|
15461
|
+
/**
|
|
15462
|
+
* @remarks
|
|
15463
|
+
* The configuration that is required to start the Spark SQL engine. Specify this value in the JSON format. For more information, see [Conf configuration parameters](https://help.aliyun.com/document_detail/471203.html).
|
|
15464
|
+
*
|
|
15465
|
+
* @example
|
|
15466
|
+
* { "spark.shuffle.timeout": ":0s" }
|
|
15467
|
+
*/
|
|
15468
|
+
config?: string;
|
|
15469
|
+
/**
|
|
15470
|
+
* @remarks
|
|
15471
|
+
* The cluster ID.
|
|
15472
|
+
*
|
|
15473
|
+
* This parameter is required.
|
|
15474
|
+
*
|
|
15475
|
+
* @example
|
|
15476
|
+
* amv-abcd****
|
|
15477
|
+
*/
|
|
15478
|
+
DBClusterId?: string;
|
|
15479
|
+
/**
|
|
15480
|
+
* @remarks
|
|
15481
|
+
* The Object Storage Service (OSS) paths of third-party JAR packages that are required to start the Spark SQL engine. Separate multiple OSS paths with commas (,).
|
|
15482
|
+
*
|
|
15483
|
+
* @example
|
|
15484
|
+
* oss://testBuckname/test.jar,oss://testBuckname/test2.jar
|
|
15485
|
+
*/
|
|
15486
|
+
jars?: string;
|
|
15487
|
+
/**
|
|
15488
|
+
* @remarks
|
|
15489
|
+
* The maximum number of executors that are required to execute SQL statements. Valid values: 1 to 2000. If this value exceeds the total number of executes that are supported by the resource group, the Spark SQL engine fails to be started.
|
|
15490
|
+
*
|
|
15491
|
+
* @example
|
|
15492
|
+
* 10
|
|
15493
|
+
*/
|
|
15494
|
+
maxExecutor?: number;
|
|
15158
15495
|
/**
|
|
15159
15496
|
* @remarks
|
|
15160
15497
|
* The minimum number of executors that are required to execute SQL statements. Valid values: 0 to 2000. A value of 0 indicates that no executors are permanent if no SQL statements are executed. If this value exceeds the total number of executors that are supported by the resource group, the Spark SQL engine fails to be started. The value must be less than the value of MaxExecutor.
|
|
@@ -15711,6 +16048,68 @@ export declare class OperatorNodeStats extends $tea.Model {
|
|
|
15711
16048
|
[key: string]: any;
|
|
15712
16049
|
});
|
|
15713
16050
|
}
|
|
16051
|
+
export declare class CancelSparkReplStatementResponseBodyData extends $tea.Model {
|
|
16052
|
+
/**
|
|
16053
|
+
* @example
|
|
16054
|
+
* 190063530332****
|
|
16055
|
+
*/
|
|
16056
|
+
aliyunUid?: number;
|
|
16057
|
+
/**
|
|
16058
|
+
* @example
|
|
16059
|
+
* print(1+1)
|
|
16060
|
+
*/
|
|
16061
|
+
code?: string;
|
|
16062
|
+
/**
|
|
16063
|
+
* @example
|
|
16064
|
+
* RUNNING
|
|
16065
|
+
*/
|
|
16066
|
+
codeState?: string;
|
|
16067
|
+
/**
|
|
16068
|
+
* @example
|
|
16069
|
+
* PYTHON
|
|
16070
|
+
*/
|
|
16071
|
+
codeType?: string;
|
|
16072
|
+
columns?: string[];
|
|
16073
|
+
/**
|
|
16074
|
+
* @example
|
|
16075
|
+
* 1730968056000
|
|
16076
|
+
*/
|
|
16077
|
+
endTime?: number;
|
|
16078
|
+
/**
|
|
16079
|
+
* @example
|
|
16080
|
+
* StackOverflow Exception:
|
|
16081
|
+
*/
|
|
16082
|
+
error?: string;
|
|
16083
|
+
/**
|
|
16084
|
+
* @example
|
|
16085
|
+
* {"text/plain": "2"}
|
|
16086
|
+
*/
|
|
16087
|
+
output?: string;
|
|
16088
|
+
/**
|
|
16089
|
+
* @example
|
|
16090
|
+
* TEXT
|
|
16091
|
+
*/
|
|
16092
|
+
outputType?: string;
|
|
16093
|
+
/**
|
|
16094
|
+
* @example
|
|
16095
|
+
* 1730968056000
|
|
16096
|
+
*/
|
|
16097
|
+
startTime?: number;
|
|
16098
|
+
/**
|
|
16099
|
+
* @example
|
|
16100
|
+
* 123
|
|
16101
|
+
*/
|
|
16102
|
+
statementId?: number;
|
|
16103
|
+
static names(): {
|
|
16104
|
+
[key: string]: string;
|
|
16105
|
+
};
|
|
16106
|
+
static types(): {
|
|
16107
|
+
[key: string]: any;
|
|
16108
|
+
};
|
|
16109
|
+
constructor(map?: {
|
|
16110
|
+
[key: string]: any;
|
|
16111
|
+
});
|
|
16112
|
+
}
|
|
15714
16113
|
export declare class CreateDBClusterRequestTag extends $tea.Model {
|
|
15715
16114
|
/**
|
|
15716
16115
|
* @remarks
|
|
@@ -17343,6 +17742,14 @@ export declare class DescribeColumnsResponseBodyItems extends $tea.Model {
|
|
|
17343
17742
|
}
|
|
17344
17743
|
export declare class DescribeCompactionServiceSwitchResponseBodyData extends $tea.Model {
|
|
17345
17744
|
/**
|
|
17745
|
+
* @remarks
|
|
17746
|
+
* Indicates whether the remote build feature is enabled.
|
|
17747
|
+
*
|
|
17748
|
+
* Valid values:
|
|
17749
|
+
*
|
|
17750
|
+
* * true
|
|
17751
|
+
* * false
|
|
17752
|
+
*
|
|
17346
17753
|
* @example
|
|
17347
17754
|
* true
|
|
17348
17755
|
*/
|
|
@@ -20977,6 +21384,68 @@ export declare class DescribeTablesResponseBodyItems extends $tea.Model {
|
|
|
20977
21384
|
[key: string]: any;
|
|
20978
21385
|
});
|
|
20979
21386
|
}
|
|
21387
|
+
export declare class ExecuteSparkReplStatementResponseBodyData extends $tea.Model {
|
|
21388
|
+
/**
|
|
21389
|
+
* @example
|
|
21390
|
+
* 17108278707****
|
|
21391
|
+
*/
|
|
21392
|
+
aliyunUid?: number;
|
|
21393
|
+
/**
|
|
21394
|
+
* @example
|
|
21395
|
+
* print(1+1)
|
|
21396
|
+
*/
|
|
21397
|
+
code?: string;
|
|
21398
|
+
/**
|
|
21399
|
+
* @example
|
|
21400
|
+
* RUNNING
|
|
21401
|
+
*/
|
|
21402
|
+
codeState?: string;
|
|
21403
|
+
/**
|
|
21404
|
+
* @example
|
|
21405
|
+
* PYTHON
|
|
21406
|
+
*/
|
|
21407
|
+
codeType?: string;
|
|
21408
|
+
columns?: string[];
|
|
21409
|
+
/**
|
|
21410
|
+
* @example
|
|
21411
|
+
* 1730968125000
|
|
21412
|
+
*/
|
|
21413
|
+
endTime?: number;
|
|
21414
|
+
/**
|
|
21415
|
+
* @example
|
|
21416
|
+
* StackOverflow Exception
|
|
21417
|
+
*/
|
|
21418
|
+
error?: string;
|
|
21419
|
+
/**
|
|
21420
|
+
* @example
|
|
21421
|
+
* {"text/plain": 2}
|
|
21422
|
+
*/
|
|
21423
|
+
output?: string;
|
|
21424
|
+
/**
|
|
21425
|
+
* @example
|
|
21426
|
+
* TEXT
|
|
21427
|
+
*/
|
|
21428
|
+
outputType?: string;
|
|
21429
|
+
/**
|
|
21430
|
+
* @example
|
|
21431
|
+
* 1730968125000
|
|
21432
|
+
*/
|
|
21433
|
+
startTime?: number;
|
|
21434
|
+
/**
|
|
21435
|
+
* @example
|
|
21436
|
+
* 123
|
|
21437
|
+
*/
|
|
21438
|
+
statementId?: number;
|
|
21439
|
+
static names(): {
|
|
21440
|
+
[key: string]: string;
|
|
21441
|
+
};
|
|
21442
|
+
static types(): {
|
|
21443
|
+
[key: string]: any;
|
|
21444
|
+
};
|
|
21445
|
+
constructor(map?: {
|
|
21446
|
+
[key: string]: any;
|
|
21447
|
+
});
|
|
21448
|
+
}
|
|
20980
21449
|
export declare class GetDatabaseObjectsResponseBodyData extends $tea.Model {
|
|
20981
21450
|
/**
|
|
20982
21451
|
* @remarks
|
|
@@ -21352,6 +21821,114 @@ export declare class GetSparkConfigLogPathResponseBodyData extends $tea.Model {
|
|
|
21352
21821
|
[key: string]: any;
|
|
21353
21822
|
});
|
|
21354
21823
|
}
|
|
21824
|
+
export declare class GetSparkReplSessionResponseBodyData extends $tea.Model {
|
|
21825
|
+
/**
|
|
21826
|
+
* @example
|
|
21827
|
+
* true
|
|
21828
|
+
*/
|
|
21829
|
+
active?: string;
|
|
21830
|
+
/**
|
|
21831
|
+
* @example
|
|
21832
|
+
* 178157466101****
|
|
21833
|
+
*/
|
|
21834
|
+
aliyunUid?: string;
|
|
21835
|
+
/**
|
|
21836
|
+
* @example
|
|
21837
|
+
* s202301061000hz57d797b00002****
|
|
21838
|
+
*/
|
|
21839
|
+
attemptId?: string;
|
|
21840
|
+
/**
|
|
21841
|
+
* @example
|
|
21842
|
+
* Session timed out
|
|
21843
|
+
*/
|
|
21844
|
+
error?: string;
|
|
21845
|
+
/**
|
|
21846
|
+
* @example
|
|
21847
|
+
* 1
|
|
21848
|
+
*/
|
|
21849
|
+
sessionId?: number;
|
|
21850
|
+
/**
|
|
21851
|
+
* @example
|
|
21852
|
+
* IDEL
|
|
21853
|
+
*/
|
|
21854
|
+
state?: string;
|
|
21855
|
+
/**
|
|
21856
|
+
* @example
|
|
21857
|
+
* https://adbsparkui-cn-hangzhou.aliyuncs.com/?token=****
|
|
21858
|
+
*/
|
|
21859
|
+
webUiAddress?: string;
|
|
21860
|
+
static names(): {
|
|
21861
|
+
[key: string]: string;
|
|
21862
|
+
};
|
|
21863
|
+
static types(): {
|
|
21864
|
+
[key: string]: any;
|
|
21865
|
+
};
|
|
21866
|
+
constructor(map?: {
|
|
21867
|
+
[key: string]: any;
|
|
21868
|
+
});
|
|
21869
|
+
}
|
|
21870
|
+
export declare class GetSparkReplStatementResponseBodyData extends $tea.Model {
|
|
21871
|
+
/**
|
|
21872
|
+
* @example
|
|
21873
|
+
* 144740799645****
|
|
21874
|
+
*/
|
|
21875
|
+
aliyunUid?: number;
|
|
21876
|
+
/**
|
|
21877
|
+
* @example
|
|
21878
|
+
* print(1+1)
|
|
21879
|
+
*/
|
|
21880
|
+
code?: string;
|
|
21881
|
+
/**
|
|
21882
|
+
* @example
|
|
21883
|
+
* RUNNING
|
|
21884
|
+
*/
|
|
21885
|
+
codeState?: string;
|
|
21886
|
+
/**
|
|
21887
|
+
* @example
|
|
21888
|
+
* PYTHON
|
|
21889
|
+
*/
|
|
21890
|
+
codeType?: string;
|
|
21891
|
+
columns?: string[];
|
|
21892
|
+
/**
|
|
21893
|
+
* @example
|
|
21894
|
+
* 1730968194000
|
|
21895
|
+
*/
|
|
21896
|
+
endTime?: number;
|
|
21897
|
+
/**
|
|
21898
|
+
* @example
|
|
21899
|
+
* stackoverflow error
|
|
21900
|
+
*/
|
|
21901
|
+
error?: string;
|
|
21902
|
+
/**
|
|
21903
|
+
* @example
|
|
21904
|
+
* {"text/plain": 2}
|
|
21905
|
+
*/
|
|
21906
|
+
output?: string;
|
|
21907
|
+
/**
|
|
21908
|
+
* @example
|
|
21909
|
+
* TEXT
|
|
21910
|
+
*/
|
|
21911
|
+
outputType?: string;
|
|
21912
|
+
/**
|
|
21913
|
+
* @example
|
|
21914
|
+
* 1730968194000
|
|
21915
|
+
*/
|
|
21916
|
+
startTime?: number;
|
|
21917
|
+
/**
|
|
21918
|
+
* @example
|
|
21919
|
+
* 123
|
|
21920
|
+
*/
|
|
21921
|
+
statementId?: number;
|
|
21922
|
+
static names(): {
|
|
21923
|
+
[key: string]: string;
|
|
21924
|
+
};
|
|
21925
|
+
static types(): {
|
|
21926
|
+
[key: string]: any;
|
|
21927
|
+
};
|
|
21928
|
+
constructor(map?: {
|
|
21929
|
+
[key: string]: any;
|
|
21930
|
+
});
|
|
21931
|
+
}
|
|
21355
21932
|
export declare class GetSparkSQLEngineStateResponseBodyData extends $tea.Model {
|
|
21356
21933
|
/**
|
|
21357
21934
|
* @remarks
|
|
@@ -22275,6 +22852,47 @@ export declare class SetSparkAppLogRootPathResponseBodyData extends $tea.Model {
|
|
|
22275
22852
|
[key: string]: any;
|
|
22276
22853
|
});
|
|
22277
22854
|
}
|
|
22855
|
+
export declare class StartSparkReplSessionResponseBodyData extends $tea.Model {
|
|
22856
|
+
/**
|
|
22857
|
+
* @example
|
|
22858
|
+
* 178157466******
|
|
22859
|
+
*/
|
|
22860
|
+
aliyunUid?: string;
|
|
22861
|
+
/**
|
|
22862
|
+
* @example
|
|
22863
|
+
* s202301061000h****
|
|
22864
|
+
*/
|
|
22865
|
+
attemptId?: string;
|
|
22866
|
+
/**
|
|
22867
|
+
* @example
|
|
22868
|
+
* session time out
|
|
22869
|
+
*/
|
|
22870
|
+
error?: string;
|
|
22871
|
+
/**
|
|
22872
|
+
* @example
|
|
22873
|
+
* 1
|
|
22874
|
+
*/
|
|
22875
|
+
sessionId?: number;
|
|
22876
|
+
/**
|
|
22877
|
+
* @example
|
|
22878
|
+
* IDLE
|
|
22879
|
+
*/
|
|
22880
|
+
state?: string;
|
|
22881
|
+
/**
|
|
22882
|
+
* @example
|
|
22883
|
+
* https://adbsparkui-cn-hangzhou.aliyuncs.com/?token=****
|
|
22884
|
+
*/
|
|
22885
|
+
webUiAddress?: string;
|
|
22886
|
+
static names(): {
|
|
22887
|
+
[key: string]: string;
|
|
22888
|
+
};
|
|
22889
|
+
static types(): {
|
|
22890
|
+
[key: string]: any;
|
|
22891
|
+
};
|
|
22892
|
+
constructor(map?: {
|
|
22893
|
+
[key: string]: any;
|
|
22894
|
+
});
|
|
22895
|
+
}
|
|
22278
22896
|
export declare class StartSparkSQLEngineResponseBodyData extends $tea.Model {
|
|
22279
22897
|
/**
|
|
22280
22898
|
* @remarks
|
|
@@ -22481,6 +23099,21 @@ export default class Client extends OpenApi {
|
|
|
22481
23099
|
* @returns BindDBResourceGroupWithUserResponse
|
|
22482
23100
|
*/
|
|
22483
23101
|
bindDBResourceGroupWithUser(request: BindDBResourceGroupWithUserRequest): Promise<BindDBResourceGroupWithUserResponse>;
|
|
23102
|
+
/**
|
|
23103
|
+
* 终止一段代码
|
|
23104
|
+
*
|
|
23105
|
+
* @param request - CancelSparkReplStatementRequest
|
|
23106
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
23107
|
+
* @returns CancelSparkReplStatementResponse
|
|
23108
|
+
*/
|
|
23109
|
+
cancelSparkReplStatementWithOptions(request: CancelSparkReplStatementRequest, runtime: $Util.RuntimeOptions): Promise<CancelSparkReplStatementResponse>;
|
|
23110
|
+
/**
|
|
23111
|
+
* 终止一段代码
|
|
23112
|
+
*
|
|
23113
|
+
* @param request - CancelSparkReplStatementRequest
|
|
23114
|
+
* @returns CancelSparkReplStatementResponse
|
|
23115
|
+
*/
|
|
23116
|
+
cancelSparkReplStatement(request: CancelSparkReplStatementRequest): Promise<CancelSparkReplStatementResponse>;
|
|
22484
23117
|
/**
|
|
22485
23118
|
* Queries whether a database account of an AnalyticDB for MySQL cluster is associated with a Resource Access Management (RAM) user.
|
|
22486
23119
|
*
|
|
@@ -23244,7 +23877,7 @@ export default class Client extends OpenApi {
|
|
|
23244
23877
|
*/
|
|
23245
23878
|
describeColumns(request: DescribeColumnsRequest): Promise<DescribeColumnsResponse>;
|
|
23246
23879
|
/**
|
|
23247
|
-
*
|
|
23880
|
+
* Queries whether the remote build feature is enabled in the query acceleration configuration of an AnalyticDB for MySQL cluster.
|
|
23248
23881
|
*
|
|
23249
23882
|
* @param request - DescribeCompactionServiceSwitchRequest
|
|
23250
23883
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -23252,7 +23885,7 @@ export default class Client extends OpenApi {
|
|
|
23252
23885
|
*/
|
|
23253
23886
|
describeCompactionServiceSwitchWithOptions(request: DescribeCompactionServiceSwitchRequest, runtime: $Util.RuntimeOptions): Promise<DescribeCompactionServiceSwitchResponse>;
|
|
23254
23887
|
/**
|
|
23255
|
-
*
|
|
23888
|
+
* Queries whether the remote build feature is enabled in the query acceleration configuration of an AnalyticDB for MySQL cluster.
|
|
23256
23889
|
*
|
|
23257
23890
|
* @param request - DescribeCompactionServiceSwitchRequest
|
|
23258
23891
|
* @returns DescribeCompactionServiceSwitchResponse
|
|
@@ -24081,6 +24714,21 @@ export default class Client extends OpenApi {
|
|
|
24081
24714
|
* @returns EnableElasticPlanResponse
|
|
24082
24715
|
*/
|
|
24083
24716
|
enableElasticPlan(request: EnableElasticPlanRequest): Promise<EnableElasticPlanResponse>;
|
|
24717
|
+
/**
|
|
24718
|
+
* 执行一段代码
|
|
24719
|
+
*
|
|
24720
|
+
* @param request - ExecuteSparkReplStatementRequest
|
|
24721
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
24722
|
+
* @returns ExecuteSparkReplStatementResponse
|
|
24723
|
+
*/
|
|
24724
|
+
executeSparkReplStatementWithOptions(request: ExecuteSparkReplStatementRequest, runtime: $Util.RuntimeOptions): Promise<ExecuteSparkReplStatementResponse>;
|
|
24725
|
+
/**
|
|
24726
|
+
* 执行一段代码
|
|
24727
|
+
*
|
|
24728
|
+
* @param request - ExecuteSparkReplStatementRequest
|
|
24729
|
+
* @returns ExecuteSparkReplStatementResponse
|
|
24730
|
+
*/
|
|
24731
|
+
executeSparkReplStatement(request: ExecuteSparkReplStatementRequest): Promise<ExecuteSparkReplStatementResponse>;
|
|
24084
24732
|
/**
|
|
24085
24733
|
* Queries whether a running SQL engine exists.
|
|
24086
24734
|
*
|
|
@@ -24329,6 +24977,36 @@ export default class Client extends OpenApi {
|
|
|
24329
24977
|
* @returns GetSparkLogAnalyzeTaskResponse
|
|
24330
24978
|
*/
|
|
24331
24979
|
getSparkLogAnalyzeTask(request: GetSparkLogAnalyzeTaskRequest): Promise<GetSparkLogAnalyzeTaskResponse>;
|
|
24980
|
+
/**
|
|
24981
|
+
* 获取一个可交互Session
|
|
24982
|
+
*
|
|
24983
|
+
* @param request - GetSparkReplSessionRequest
|
|
24984
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
24985
|
+
* @returns GetSparkReplSessionResponse
|
|
24986
|
+
*/
|
|
24987
|
+
getSparkReplSessionWithOptions(request: GetSparkReplSessionRequest, runtime: $Util.RuntimeOptions): Promise<GetSparkReplSessionResponse>;
|
|
24988
|
+
/**
|
|
24989
|
+
* 获取一个可交互Session
|
|
24990
|
+
*
|
|
24991
|
+
* @param request - GetSparkReplSessionRequest
|
|
24992
|
+
* @returns GetSparkReplSessionResponse
|
|
24993
|
+
*/
|
|
24994
|
+
getSparkReplSession(request: GetSparkReplSessionRequest): Promise<GetSparkReplSessionResponse>;
|
|
24995
|
+
/**
|
|
24996
|
+
* 获取一段代码的执行结果
|
|
24997
|
+
*
|
|
24998
|
+
* @param request - GetSparkReplStatementRequest
|
|
24999
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
25000
|
+
* @returns GetSparkReplStatementResponse
|
|
25001
|
+
*/
|
|
25002
|
+
getSparkReplStatementWithOptions(request: GetSparkReplStatementRequest, runtime: $Util.RuntimeOptions): Promise<GetSparkReplStatementResponse>;
|
|
25003
|
+
/**
|
|
25004
|
+
* 获取一段代码的执行结果
|
|
25005
|
+
*
|
|
25006
|
+
* @param request - GetSparkReplStatementRequest
|
|
25007
|
+
* @returns GetSparkReplStatementResponse
|
|
25008
|
+
*/
|
|
25009
|
+
getSparkReplStatement(request: GetSparkReplStatementRequest): Promise<GetSparkReplStatementResponse>;
|
|
24332
25010
|
/**
|
|
24333
25011
|
* Queries the state information about the Spark SQL engine.
|
|
24334
25012
|
*
|
|
@@ -24886,7 +25564,7 @@ export default class Client extends OpenApi {
|
|
|
24886
25564
|
*/
|
|
24887
25565
|
modifyClusterConnectionString(request: ModifyClusterConnectionStringRequest): Promise<ModifyClusterConnectionStringResponse>;
|
|
24888
25566
|
/**
|
|
24889
|
-
*
|
|
25567
|
+
* Modifies the status of the remote build feature in the query acceleration configuration of an AnalyticDB for MySQL cluster.
|
|
24890
25568
|
*
|
|
24891
25569
|
* @param request - ModifyCompactionServiceSwitchRequest
|
|
24892
25570
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -24894,7 +25572,7 @@ export default class Client extends OpenApi {
|
|
|
24894
25572
|
*/
|
|
24895
25573
|
modifyCompactionServiceSwitchWithOptions(request: ModifyCompactionServiceSwitchRequest, runtime: $Util.RuntimeOptions): Promise<ModifyCompactionServiceSwitchResponse>;
|
|
24896
25574
|
/**
|
|
24897
|
-
*
|
|
25575
|
+
* Modifies the status of the remote build feature in the query acceleration configuration of an AnalyticDB for MySQL cluster.
|
|
24898
25576
|
*
|
|
24899
25577
|
* @param request - ModifyCompactionServiceSwitchRequest
|
|
24900
25578
|
* @returns ModifyCompactionServiceSwitchResponse
|
|
@@ -25195,6 +25873,21 @@ export default class Client extends OpenApi {
|
|
|
25195
25873
|
* @returns SetSparkAppLogRootPathResponse
|
|
25196
25874
|
*/
|
|
25197
25875
|
setSparkAppLogRootPath(request: SetSparkAppLogRootPathRequest): Promise<SetSparkAppLogRootPathResponse>;
|
|
25876
|
+
/**
|
|
25877
|
+
* 启动一个可交互Session
|
|
25878
|
+
*
|
|
25879
|
+
* @param request - StartSparkReplSessionRequest
|
|
25880
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
25881
|
+
* @returns StartSparkReplSessionResponse
|
|
25882
|
+
*/
|
|
25883
|
+
startSparkReplSessionWithOptions(request: StartSparkReplSessionRequest, runtime: $Util.RuntimeOptions): Promise<StartSparkReplSessionResponse>;
|
|
25884
|
+
/**
|
|
25885
|
+
* 启动一个可交互Session
|
|
25886
|
+
*
|
|
25887
|
+
* @param request - StartSparkReplSessionRequest
|
|
25888
|
+
* @returns StartSparkReplSessionResponse
|
|
25889
|
+
*/
|
|
25890
|
+
startSparkReplSession(request: StartSparkReplSessionRequest): Promise<StartSparkReplSessionResponse>;
|
|
25198
25891
|
/**
|
|
25199
25892
|
* Starts the Spark SQL engine.
|
|
25200
25893
|
*
|