@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/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -8428,6 +8428,7 @@ export class DescribeDiagnosisRecordsResponseBodyQuerys extends $dara.Model {
|
|
|
8428
8428
|
}
|
|
8429
8429
|
|
|
8430
8430
|
export class DescribeDiagnosisSQLInfoResponseBodyStageInfos extends $dara.Model {
|
|
8431
|
+
executionType?: string;
|
|
8431
8432
|
/**
|
|
8432
8433
|
* @remarks
|
|
8433
8434
|
* The total amount of input data in the stage. Unit: bytes.
|
|
@@ -8502,6 +8503,7 @@ export class DescribeDiagnosisSQLInfoResponseBodyStageInfos extends $dara.Model
|
|
|
8502
8503
|
state?: string;
|
|
8503
8504
|
static names(): { [key: string]: string } {
|
|
8504
8505
|
return {
|
|
8506
|
+
executionType: 'ExecutionType',
|
|
8505
8507
|
inputDataSize: 'InputDataSize',
|
|
8506
8508
|
inputRows: 'InputRows',
|
|
8507
8509
|
operatorCost: 'OperatorCost',
|
|
@@ -8516,6 +8518,7 @@ export class DescribeDiagnosisSQLInfoResponseBodyStageInfos extends $dara.Model
|
|
|
8516
8518
|
|
|
8517
8519
|
static types(): { [key: string]: any } {
|
|
8518
8520
|
return {
|
|
8521
|
+
executionType: 'string',
|
|
8519
8522
|
inputDataSize: 'number',
|
|
8520
8523
|
inputRows: 'number',
|
|
8521
8524
|
operatorCost: 'number',
|
|
@@ -61362,7 +61365,35 @@ export default class Client extends OpenApi {
|
|
|
61362
61365
|
*/
|
|
61363
61366
|
async describeDiagnosisSQLInfoWithOptions(request: DescribeDiagnosisSQLInfoRequest, runtime: $dara.RuntimeOptions): Promise<DescribeDiagnosisSQLInfoResponse> {
|
|
61364
61367
|
request.validate();
|
|
61365
|
-
let query =
|
|
61368
|
+
let query = { };
|
|
61369
|
+
if (!$dara.isNull(request.DBClusterId)) {
|
|
61370
|
+
query["DBClusterId"] = request.DBClusterId;
|
|
61371
|
+
}
|
|
61372
|
+
|
|
61373
|
+
if (!$dara.isNull(request.lang)) {
|
|
61374
|
+
query["Lang"] = request.lang;
|
|
61375
|
+
}
|
|
61376
|
+
|
|
61377
|
+
if (!$dara.isNull(request.processId)) {
|
|
61378
|
+
query["ProcessId"] = request.processId;
|
|
61379
|
+
}
|
|
61380
|
+
|
|
61381
|
+
if (!$dara.isNull(request.processRcHost)) {
|
|
61382
|
+
query["ProcessRcHost"] = request.processRcHost;
|
|
61383
|
+
}
|
|
61384
|
+
|
|
61385
|
+
if (!$dara.isNull(request.processStartTime)) {
|
|
61386
|
+
query["ProcessStartTime"] = request.processStartTime;
|
|
61387
|
+
}
|
|
61388
|
+
|
|
61389
|
+
if (!$dara.isNull(request.processState)) {
|
|
61390
|
+
query["ProcessState"] = request.processState;
|
|
61391
|
+
}
|
|
61392
|
+
|
|
61393
|
+
if (!$dara.isNull(request.regionId)) {
|
|
61394
|
+
query["RegionId"] = request.regionId;
|
|
61395
|
+
}
|
|
61396
|
+
|
|
61366
61397
|
let req = new $OpenApiUtil.OpenApiRequest({
|
|
61367
61398
|
query: OpenApiUtil.query(query),
|
|
61368
61399
|
});
|
|
@@ -61371,7 +61402,7 @@ export default class Client extends OpenApi {
|
|
|
61371
61402
|
version: "2021-12-01",
|
|
61372
61403
|
protocol: "HTTPS",
|
|
61373
61404
|
pathname: "/",
|
|
61374
|
-
method: "
|
|
61405
|
+
method: "POST",
|
|
61375
61406
|
authType: "AK",
|
|
61376
61407
|
style: "RPC",
|
|
61377
61408
|
reqBodyType: "formData",
|