@alicloud/adb20211201 4.0.2 → 4.0.3
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 +1 -0
- package/dist/client.js +25 -2
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +33 -2
package/dist/client.d.ts
CHANGED
|
@@ -6110,6 +6110,7 @@ export declare class DescribeDiagnosisRecordsResponseBodyQuerys extends $dara.Mo
|
|
|
6110
6110
|
});
|
|
6111
6111
|
}
|
|
6112
6112
|
export declare class DescribeDiagnosisSQLInfoResponseBodyStageInfos extends $dara.Model {
|
|
6113
|
+
executionType?: string;
|
|
6113
6114
|
/**
|
|
6114
6115
|
* @remarks
|
|
6115
6116
|
* The total amount of input data in the stage. Unit: bytes.
|
package/dist/client.js
CHANGED
|
@@ -3410,6 +3410,7 @@ exports.DescribeDiagnosisRecordsResponseBodyQuerys = DescribeDiagnosisRecordsRes
|
|
|
3410
3410
|
class DescribeDiagnosisSQLInfoResponseBodyStageInfos extends $dara.Model {
|
|
3411
3411
|
static names() {
|
|
3412
3412
|
return {
|
|
3413
|
+
executionType: 'ExecutionType',
|
|
3413
3414
|
inputDataSize: 'InputDataSize',
|
|
3414
3415
|
inputRows: 'InputRows',
|
|
3415
3416
|
operatorCost: 'OperatorCost',
|
|
@@ -3423,6 +3424,7 @@ class DescribeDiagnosisSQLInfoResponseBodyStageInfos extends $dara.Model {
|
|
|
3423
3424
|
}
|
|
3424
3425
|
static types() {
|
|
3425
3426
|
return {
|
|
3427
|
+
executionType: 'string',
|
|
3426
3428
|
inputDataSize: 'number',
|
|
3427
3429
|
inputRows: 'number',
|
|
3428
3430
|
operatorCost: 'number',
|
|
@@ -30452,7 +30454,28 @@ class Client extends openapi_core_1.default {
|
|
|
30452
30454
|
*/
|
|
30453
30455
|
async describeDiagnosisSQLInfoWithOptions(request, runtime) {
|
|
30454
30456
|
request.validate();
|
|
30455
|
-
let query =
|
|
30457
|
+
let query = {};
|
|
30458
|
+
if (!$dara.isNull(request.DBClusterId)) {
|
|
30459
|
+
query["DBClusterId"] = request.DBClusterId;
|
|
30460
|
+
}
|
|
30461
|
+
if (!$dara.isNull(request.lang)) {
|
|
30462
|
+
query["Lang"] = request.lang;
|
|
30463
|
+
}
|
|
30464
|
+
if (!$dara.isNull(request.processId)) {
|
|
30465
|
+
query["ProcessId"] = request.processId;
|
|
30466
|
+
}
|
|
30467
|
+
if (!$dara.isNull(request.processRcHost)) {
|
|
30468
|
+
query["ProcessRcHost"] = request.processRcHost;
|
|
30469
|
+
}
|
|
30470
|
+
if (!$dara.isNull(request.processStartTime)) {
|
|
30471
|
+
query["ProcessStartTime"] = request.processStartTime;
|
|
30472
|
+
}
|
|
30473
|
+
if (!$dara.isNull(request.processState)) {
|
|
30474
|
+
query["ProcessState"] = request.processState;
|
|
30475
|
+
}
|
|
30476
|
+
if (!$dara.isNull(request.regionId)) {
|
|
30477
|
+
query["RegionId"] = request.regionId;
|
|
30478
|
+
}
|
|
30456
30479
|
let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
|
|
30457
30480
|
query: openapi_core_2.OpenApiUtil.query(query),
|
|
30458
30481
|
});
|
|
@@ -30461,7 +30484,7 @@ class Client extends openapi_core_1.default {
|
|
|
30461
30484
|
version: "2021-12-01",
|
|
30462
30485
|
protocol: "HTTPS",
|
|
30463
30486
|
pathname: "/",
|
|
30464
|
-
method: "
|
|
30487
|
+
method: "POST",
|
|
30465
30488
|
authType: "AK",
|
|
30466
30489
|
style: "RPC",
|
|
30467
30490
|
reqBodyType: "formData",
|