@alicloud/adb20211201 1.0.0 → 1.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 +345 -0
- package/dist/client.js +597 -0
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +758 -27
package/dist/client.d.ts
CHANGED
|
@@ -1443,6 +1443,52 @@ export declare class DescribeAdbMySqlTablesResponse extends $tea.Model {
|
|
|
1443
1443
|
[key: string]: any;
|
|
1444
1444
|
});
|
|
1445
1445
|
}
|
|
1446
|
+
export declare class DescribeAllDataSourceRequest extends $tea.Model {
|
|
1447
|
+
DBClusterId?: string;
|
|
1448
|
+
regionId?: string;
|
|
1449
|
+
schemaName?: string;
|
|
1450
|
+
tableName?: string;
|
|
1451
|
+
static names(): {
|
|
1452
|
+
[key: string]: string;
|
|
1453
|
+
};
|
|
1454
|
+
static types(): {
|
|
1455
|
+
[key: string]: any;
|
|
1456
|
+
};
|
|
1457
|
+
constructor(map?: {
|
|
1458
|
+
[key: string]: any;
|
|
1459
|
+
});
|
|
1460
|
+
}
|
|
1461
|
+
export declare class DescribeAllDataSourceResponseBody extends $tea.Model {
|
|
1462
|
+
columns?: DescribeAllDataSourceResponseBodyColumns;
|
|
1463
|
+
requestId?: string;
|
|
1464
|
+
schemas?: DescribeAllDataSourceResponseBodySchemas;
|
|
1465
|
+
tables?: DescribeAllDataSourceResponseBodyTables;
|
|
1466
|
+
static names(): {
|
|
1467
|
+
[key: string]: string;
|
|
1468
|
+
};
|
|
1469
|
+
static types(): {
|
|
1470
|
+
[key: string]: any;
|
|
1471
|
+
};
|
|
1472
|
+
constructor(map?: {
|
|
1473
|
+
[key: string]: any;
|
|
1474
|
+
});
|
|
1475
|
+
}
|
|
1476
|
+
export declare class DescribeAllDataSourceResponse extends $tea.Model {
|
|
1477
|
+
headers: {
|
|
1478
|
+
[key: string]: string;
|
|
1479
|
+
};
|
|
1480
|
+
statusCode: number;
|
|
1481
|
+
body: DescribeAllDataSourceResponseBody;
|
|
1482
|
+
static names(): {
|
|
1483
|
+
[key: string]: string;
|
|
1484
|
+
};
|
|
1485
|
+
static types(): {
|
|
1486
|
+
[key: string]: any;
|
|
1487
|
+
};
|
|
1488
|
+
constructor(map?: {
|
|
1489
|
+
[key: string]: any;
|
|
1490
|
+
});
|
|
1491
|
+
}
|
|
1446
1492
|
export declare class DescribeApsActionLogsRequest extends $tea.Model {
|
|
1447
1493
|
DBClusterId?: string;
|
|
1448
1494
|
endTime?: string;
|
|
@@ -1693,6 +1739,50 @@ export declare class DescribeClusterNetInfoResponse extends $tea.Model {
|
|
|
1693
1739
|
[key: string]: any;
|
|
1694
1740
|
});
|
|
1695
1741
|
}
|
|
1742
|
+
export declare class DescribeColumnsRequest extends $tea.Model {
|
|
1743
|
+
DBClusterId?: string;
|
|
1744
|
+
regionId?: string;
|
|
1745
|
+
schemaName?: string;
|
|
1746
|
+
tableName?: string;
|
|
1747
|
+
static names(): {
|
|
1748
|
+
[key: string]: string;
|
|
1749
|
+
};
|
|
1750
|
+
static types(): {
|
|
1751
|
+
[key: string]: any;
|
|
1752
|
+
};
|
|
1753
|
+
constructor(map?: {
|
|
1754
|
+
[key: string]: any;
|
|
1755
|
+
});
|
|
1756
|
+
}
|
|
1757
|
+
export declare class DescribeColumnsResponseBody extends $tea.Model {
|
|
1758
|
+
items?: DescribeColumnsResponseBodyItems;
|
|
1759
|
+
requestId?: string;
|
|
1760
|
+
static names(): {
|
|
1761
|
+
[key: string]: string;
|
|
1762
|
+
};
|
|
1763
|
+
static types(): {
|
|
1764
|
+
[key: string]: any;
|
|
1765
|
+
};
|
|
1766
|
+
constructor(map?: {
|
|
1767
|
+
[key: string]: any;
|
|
1768
|
+
});
|
|
1769
|
+
}
|
|
1770
|
+
export declare class DescribeColumnsResponse extends $tea.Model {
|
|
1771
|
+
headers: {
|
|
1772
|
+
[key: string]: string;
|
|
1773
|
+
};
|
|
1774
|
+
statusCode: number;
|
|
1775
|
+
body: DescribeColumnsResponseBody;
|
|
1776
|
+
static names(): {
|
|
1777
|
+
[key: string]: string;
|
|
1778
|
+
};
|
|
1779
|
+
static types(): {
|
|
1780
|
+
[key: string]: any;
|
|
1781
|
+
};
|
|
1782
|
+
constructor(map?: {
|
|
1783
|
+
[key: string]: any;
|
|
1784
|
+
});
|
|
1785
|
+
}
|
|
1696
1786
|
export declare class DescribeDBClusterAttributeRequest extends $tea.Model {
|
|
1697
1787
|
DBClusterId?: string;
|
|
1698
1788
|
static names(): {
|
|
@@ -2499,6 +2589,48 @@ export declare class DescribeSQLPatternsResponse extends $tea.Model {
|
|
|
2499
2589
|
[key: string]: any;
|
|
2500
2590
|
});
|
|
2501
2591
|
}
|
|
2592
|
+
export declare class DescribeSchemasRequest extends $tea.Model {
|
|
2593
|
+
DBClusterId?: string;
|
|
2594
|
+
regionId?: string;
|
|
2595
|
+
static names(): {
|
|
2596
|
+
[key: string]: string;
|
|
2597
|
+
};
|
|
2598
|
+
static types(): {
|
|
2599
|
+
[key: string]: any;
|
|
2600
|
+
};
|
|
2601
|
+
constructor(map?: {
|
|
2602
|
+
[key: string]: any;
|
|
2603
|
+
});
|
|
2604
|
+
}
|
|
2605
|
+
export declare class DescribeSchemasResponseBody extends $tea.Model {
|
|
2606
|
+
items?: DescribeSchemasResponseBodyItems;
|
|
2607
|
+
requestId?: string;
|
|
2608
|
+
static names(): {
|
|
2609
|
+
[key: string]: string;
|
|
2610
|
+
};
|
|
2611
|
+
static types(): {
|
|
2612
|
+
[key: string]: any;
|
|
2613
|
+
};
|
|
2614
|
+
constructor(map?: {
|
|
2615
|
+
[key: string]: any;
|
|
2616
|
+
});
|
|
2617
|
+
}
|
|
2618
|
+
export declare class DescribeSchemasResponse extends $tea.Model {
|
|
2619
|
+
headers: {
|
|
2620
|
+
[key: string]: string;
|
|
2621
|
+
};
|
|
2622
|
+
statusCode: number;
|
|
2623
|
+
body: DescribeSchemasResponseBody;
|
|
2624
|
+
static names(): {
|
|
2625
|
+
[key: string]: string;
|
|
2626
|
+
};
|
|
2627
|
+
static types(): {
|
|
2628
|
+
[key: string]: any;
|
|
2629
|
+
};
|
|
2630
|
+
constructor(map?: {
|
|
2631
|
+
[key: string]: any;
|
|
2632
|
+
});
|
|
2633
|
+
}
|
|
2502
2634
|
export declare class DescribeSparkCodeLogRequest extends $tea.Model {
|
|
2503
2635
|
DBClusterId?: string;
|
|
2504
2636
|
jobId?: number;
|
|
@@ -2735,6 +2867,49 @@ export declare class DescribeTableAccessCountResponse extends $tea.Model {
|
|
|
2735
2867
|
[key: string]: any;
|
|
2736
2868
|
});
|
|
2737
2869
|
}
|
|
2870
|
+
export declare class DescribeTablesRequest extends $tea.Model {
|
|
2871
|
+
DBClusterId?: string;
|
|
2872
|
+
regionId?: string;
|
|
2873
|
+
schemaName?: string;
|
|
2874
|
+
static names(): {
|
|
2875
|
+
[key: string]: string;
|
|
2876
|
+
};
|
|
2877
|
+
static types(): {
|
|
2878
|
+
[key: string]: any;
|
|
2879
|
+
};
|
|
2880
|
+
constructor(map?: {
|
|
2881
|
+
[key: string]: any;
|
|
2882
|
+
});
|
|
2883
|
+
}
|
|
2884
|
+
export declare class DescribeTablesResponseBody extends $tea.Model {
|
|
2885
|
+
items?: DescribeTablesResponseBodyItems;
|
|
2886
|
+
requestId?: string;
|
|
2887
|
+
static names(): {
|
|
2888
|
+
[key: string]: string;
|
|
2889
|
+
};
|
|
2890
|
+
static types(): {
|
|
2891
|
+
[key: string]: any;
|
|
2892
|
+
};
|
|
2893
|
+
constructor(map?: {
|
|
2894
|
+
[key: string]: any;
|
|
2895
|
+
});
|
|
2896
|
+
}
|
|
2897
|
+
export declare class DescribeTablesResponse extends $tea.Model {
|
|
2898
|
+
headers: {
|
|
2899
|
+
[key: string]: string;
|
|
2900
|
+
};
|
|
2901
|
+
statusCode: number;
|
|
2902
|
+
body: DescribeTablesResponseBody;
|
|
2903
|
+
static names(): {
|
|
2904
|
+
[key: string]: string;
|
|
2905
|
+
};
|
|
2906
|
+
static types(): {
|
|
2907
|
+
[key: string]: any;
|
|
2908
|
+
};
|
|
2909
|
+
constructor(map?: {
|
|
2910
|
+
[key: string]: any;
|
|
2911
|
+
});
|
|
2912
|
+
}
|
|
2738
2913
|
export declare class DisableElasticPlanRequest extends $tea.Model {
|
|
2739
2914
|
DBClusterId?: string;
|
|
2740
2915
|
elasticPlanName?: string;
|
|
@@ -5123,6 +5298,87 @@ export declare class DescribeAdbMySqlColumnsResponseBodyColumns extends $tea.Mod
|
|
|
5123
5298
|
[key: string]: any;
|
|
5124
5299
|
});
|
|
5125
5300
|
}
|
|
5301
|
+
export declare class DescribeAllDataSourceResponseBodyColumnsColumn extends $tea.Model {
|
|
5302
|
+
autoIncrementColumn?: boolean;
|
|
5303
|
+
columnName?: string;
|
|
5304
|
+
DBClusterId?: string;
|
|
5305
|
+
primaryKey?: boolean;
|
|
5306
|
+
schemaName?: string;
|
|
5307
|
+
tableName?: string;
|
|
5308
|
+
type?: string;
|
|
5309
|
+
static names(): {
|
|
5310
|
+
[key: string]: string;
|
|
5311
|
+
};
|
|
5312
|
+
static types(): {
|
|
5313
|
+
[key: string]: any;
|
|
5314
|
+
};
|
|
5315
|
+
constructor(map?: {
|
|
5316
|
+
[key: string]: any;
|
|
5317
|
+
});
|
|
5318
|
+
}
|
|
5319
|
+
export declare class DescribeAllDataSourceResponseBodyColumns extends $tea.Model {
|
|
5320
|
+
column?: DescribeAllDataSourceResponseBodyColumnsColumn[];
|
|
5321
|
+
static names(): {
|
|
5322
|
+
[key: string]: string;
|
|
5323
|
+
};
|
|
5324
|
+
static types(): {
|
|
5325
|
+
[key: string]: any;
|
|
5326
|
+
};
|
|
5327
|
+
constructor(map?: {
|
|
5328
|
+
[key: string]: any;
|
|
5329
|
+
});
|
|
5330
|
+
}
|
|
5331
|
+
export declare class DescribeAllDataSourceResponseBodySchemasSchema extends $tea.Model {
|
|
5332
|
+
DBClusterId?: string;
|
|
5333
|
+
schemaName?: string;
|
|
5334
|
+
static names(): {
|
|
5335
|
+
[key: string]: string;
|
|
5336
|
+
};
|
|
5337
|
+
static types(): {
|
|
5338
|
+
[key: string]: any;
|
|
5339
|
+
};
|
|
5340
|
+
constructor(map?: {
|
|
5341
|
+
[key: string]: any;
|
|
5342
|
+
});
|
|
5343
|
+
}
|
|
5344
|
+
export declare class DescribeAllDataSourceResponseBodySchemas extends $tea.Model {
|
|
5345
|
+
schema?: DescribeAllDataSourceResponseBodySchemasSchema[];
|
|
5346
|
+
static names(): {
|
|
5347
|
+
[key: string]: string;
|
|
5348
|
+
};
|
|
5349
|
+
static types(): {
|
|
5350
|
+
[key: string]: any;
|
|
5351
|
+
};
|
|
5352
|
+
constructor(map?: {
|
|
5353
|
+
[key: string]: any;
|
|
5354
|
+
});
|
|
5355
|
+
}
|
|
5356
|
+
export declare class DescribeAllDataSourceResponseBodyTablesTable extends $tea.Model {
|
|
5357
|
+
DBClusterId?: string;
|
|
5358
|
+
schemaName?: string;
|
|
5359
|
+
tableName?: string;
|
|
5360
|
+
static names(): {
|
|
5361
|
+
[key: string]: string;
|
|
5362
|
+
};
|
|
5363
|
+
static types(): {
|
|
5364
|
+
[key: string]: any;
|
|
5365
|
+
};
|
|
5366
|
+
constructor(map?: {
|
|
5367
|
+
[key: string]: any;
|
|
5368
|
+
});
|
|
5369
|
+
}
|
|
5370
|
+
export declare class DescribeAllDataSourceResponseBodyTables extends $tea.Model {
|
|
5371
|
+
table?: DescribeAllDataSourceResponseBodyTablesTable[];
|
|
5372
|
+
static names(): {
|
|
5373
|
+
[key: string]: string;
|
|
5374
|
+
};
|
|
5375
|
+
static types(): {
|
|
5376
|
+
[key: string]: any;
|
|
5377
|
+
};
|
|
5378
|
+
constructor(map?: {
|
|
5379
|
+
[key: string]: any;
|
|
5380
|
+
});
|
|
5381
|
+
}
|
|
5126
5382
|
export declare class DescribeApsActionLogsResponseBodyActionLogs extends $tea.Model {
|
|
5127
5383
|
context?: string;
|
|
5128
5384
|
stage?: string;
|
|
@@ -5246,6 +5502,36 @@ export declare class DescribeClusterNetInfoResponseBodyItems extends $tea.Model
|
|
|
5246
5502
|
[key: string]: any;
|
|
5247
5503
|
});
|
|
5248
5504
|
}
|
|
5505
|
+
export declare class DescribeColumnsResponseBodyItemsColumn extends $tea.Model {
|
|
5506
|
+
autoIncrementColumn?: boolean;
|
|
5507
|
+
columnName?: string;
|
|
5508
|
+
DBClusterId?: string;
|
|
5509
|
+
primaryKey?: boolean;
|
|
5510
|
+
schemaName?: string;
|
|
5511
|
+
tableName?: string;
|
|
5512
|
+
type?: string;
|
|
5513
|
+
static names(): {
|
|
5514
|
+
[key: string]: string;
|
|
5515
|
+
};
|
|
5516
|
+
static types(): {
|
|
5517
|
+
[key: string]: any;
|
|
5518
|
+
};
|
|
5519
|
+
constructor(map?: {
|
|
5520
|
+
[key: string]: any;
|
|
5521
|
+
});
|
|
5522
|
+
}
|
|
5523
|
+
export declare class DescribeColumnsResponseBodyItems extends $tea.Model {
|
|
5524
|
+
column?: DescribeColumnsResponseBodyItemsColumn[];
|
|
5525
|
+
static names(): {
|
|
5526
|
+
[key: string]: string;
|
|
5527
|
+
};
|
|
5528
|
+
static types(): {
|
|
5529
|
+
[key: string]: any;
|
|
5530
|
+
};
|
|
5531
|
+
constructor(map?: {
|
|
5532
|
+
[key: string]: any;
|
|
5533
|
+
});
|
|
5534
|
+
}
|
|
5249
5535
|
export declare class DescribeDBClusterAttributeResponseBodyItemsDBClusterTagsTag extends $tea.Model {
|
|
5250
5536
|
key?: string;
|
|
5251
5537
|
value?: string;
|
|
@@ -5773,6 +6059,31 @@ export declare class DescribeSQLPatternsResponseBodyPatternDetails extends $tea.
|
|
|
5773
6059
|
[key: string]: any;
|
|
5774
6060
|
});
|
|
5775
6061
|
}
|
|
6062
|
+
export declare class DescribeSchemasResponseBodyItemsSchema extends $tea.Model {
|
|
6063
|
+
DBClusterId?: string;
|
|
6064
|
+
schemaName?: string;
|
|
6065
|
+
static names(): {
|
|
6066
|
+
[key: string]: string;
|
|
6067
|
+
};
|
|
6068
|
+
static types(): {
|
|
6069
|
+
[key: string]: any;
|
|
6070
|
+
};
|
|
6071
|
+
constructor(map?: {
|
|
6072
|
+
[key: string]: any;
|
|
6073
|
+
});
|
|
6074
|
+
}
|
|
6075
|
+
export declare class DescribeSchemasResponseBodyItems extends $tea.Model {
|
|
6076
|
+
schema?: DescribeSchemasResponseBodyItemsSchema[];
|
|
6077
|
+
static names(): {
|
|
6078
|
+
[key: string]: string;
|
|
6079
|
+
};
|
|
6080
|
+
static types(): {
|
|
6081
|
+
[key: string]: any;
|
|
6082
|
+
};
|
|
6083
|
+
constructor(map?: {
|
|
6084
|
+
[key: string]: any;
|
|
6085
|
+
});
|
|
6086
|
+
}
|
|
5776
6087
|
export declare class DescribeSqlPatternResponseBodyItems extends $tea.Model {
|
|
5777
6088
|
accessIP?: string;
|
|
5778
6089
|
avgCpuTime?: string;
|
|
@@ -5816,6 +6127,32 @@ export declare class DescribeTableAccessCountResponseBodyItems extends $tea.Mode
|
|
|
5816
6127
|
[key: string]: any;
|
|
5817
6128
|
});
|
|
5818
6129
|
}
|
|
6130
|
+
export declare class DescribeTablesResponseBodyItemsTable extends $tea.Model {
|
|
6131
|
+
DBClusterId?: string;
|
|
6132
|
+
schemaName?: string;
|
|
6133
|
+
tableName?: string;
|
|
6134
|
+
static names(): {
|
|
6135
|
+
[key: string]: string;
|
|
6136
|
+
};
|
|
6137
|
+
static types(): {
|
|
6138
|
+
[key: string]: any;
|
|
6139
|
+
};
|
|
6140
|
+
constructor(map?: {
|
|
6141
|
+
[key: string]: any;
|
|
6142
|
+
});
|
|
6143
|
+
}
|
|
6144
|
+
export declare class DescribeTablesResponseBodyItems extends $tea.Model {
|
|
6145
|
+
table?: DescribeTablesResponseBodyItemsTable[];
|
|
6146
|
+
static names(): {
|
|
6147
|
+
[key: string]: string;
|
|
6148
|
+
};
|
|
6149
|
+
static types(): {
|
|
6150
|
+
[key: string]: any;
|
|
6151
|
+
};
|
|
6152
|
+
constructor(map?: {
|
|
6153
|
+
[key: string]: any;
|
|
6154
|
+
});
|
|
6155
|
+
}
|
|
5819
6156
|
export declare class GetDatabaseObjectsResponseBodyData extends $tea.Model {
|
|
5820
6157
|
databaseSummaryModels?: DatabaseSummaryModel[];
|
|
5821
6158
|
pageNumber?: number;
|
|
@@ -6256,6 +6593,8 @@ export default class Client extends OpenApi {
|
|
|
6256
6593
|
describeAdbMySqlSchemas(request: DescribeAdbMySqlSchemasRequest): Promise<DescribeAdbMySqlSchemasResponse>;
|
|
6257
6594
|
describeAdbMySqlTablesWithOptions(request: DescribeAdbMySqlTablesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAdbMySqlTablesResponse>;
|
|
6258
6595
|
describeAdbMySqlTables(request: DescribeAdbMySqlTablesRequest): Promise<DescribeAdbMySqlTablesResponse>;
|
|
6596
|
+
describeAllDataSourceWithOptions(request: DescribeAllDataSourceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAllDataSourceResponse>;
|
|
6597
|
+
describeAllDataSource(request: DescribeAllDataSourceRequest): Promise<DescribeAllDataSourceResponse>;
|
|
6259
6598
|
describeApsActionLogsWithOptions(request: DescribeApsActionLogsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApsActionLogsResponse>;
|
|
6260
6599
|
describeApsActionLogs(request: DescribeApsActionLogsRequest): Promise<DescribeApsActionLogsResponse>;
|
|
6261
6600
|
describeApsResourceGroupsWithOptions(request: DescribeApsResourceGroupsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApsResourceGroupsResponse>;
|
|
@@ -6266,6 +6605,8 @@ export default class Client extends OpenApi {
|
|
|
6266
6605
|
describeClusterAccessWhiteList(request: DescribeClusterAccessWhiteListRequest): Promise<DescribeClusterAccessWhiteListResponse>;
|
|
6267
6606
|
describeClusterNetInfoWithOptions(request: DescribeClusterNetInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeClusterNetInfoResponse>;
|
|
6268
6607
|
describeClusterNetInfo(request: DescribeClusterNetInfoRequest): Promise<DescribeClusterNetInfoResponse>;
|
|
6608
|
+
describeColumnsWithOptions(request: DescribeColumnsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeColumnsResponse>;
|
|
6609
|
+
describeColumns(request: DescribeColumnsRequest): Promise<DescribeColumnsResponse>;
|
|
6269
6610
|
describeDBClusterAttributeWithOptions(request: DescribeDBClusterAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterAttributeResponse>;
|
|
6270
6611
|
describeDBClusterAttribute(request: DescribeDBClusterAttributeRequest): Promise<DescribeDBClusterAttributeResponse>;
|
|
6271
6612
|
describeDBClusterHealthStatusWithOptions(request: DescribeDBClusterHealthStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterHealthStatusResponse>;
|
|
@@ -6300,6 +6641,8 @@ export default class Client extends OpenApi {
|
|
|
6300
6641
|
describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse>;
|
|
6301
6642
|
describeSQLPatternsWithOptions(request: DescribeSQLPatternsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSQLPatternsResponse>;
|
|
6302
6643
|
describeSQLPatterns(request: DescribeSQLPatternsRequest): Promise<DescribeSQLPatternsResponse>;
|
|
6644
|
+
describeSchemasWithOptions(request: DescribeSchemasRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSchemasResponse>;
|
|
6645
|
+
describeSchemas(request: DescribeSchemasRequest): Promise<DescribeSchemasResponse>;
|
|
6303
6646
|
describeSparkCodeLogWithOptions(request: DescribeSparkCodeLogRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSparkCodeLogResponse>;
|
|
6304
6647
|
describeSparkCodeLog(request: DescribeSparkCodeLogRequest): Promise<DescribeSparkCodeLogResponse>;
|
|
6305
6648
|
describeSparkCodeOutputWithOptions(request: DescribeSparkCodeOutputRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSparkCodeOutputResponse>;
|
|
@@ -6310,6 +6653,8 @@ export default class Client extends OpenApi {
|
|
|
6310
6653
|
describeSqlPattern(request: DescribeSqlPatternRequest): Promise<DescribeSqlPatternResponse>;
|
|
6311
6654
|
describeTableAccessCountWithOptions(request: DescribeTableAccessCountRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTableAccessCountResponse>;
|
|
6312
6655
|
describeTableAccessCount(request: DescribeTableAccessCountRequest): Promise<DescribeTableAccessCountResponse>;
|
|
6656
|
+
describeTablesWithOptions(request: DescribeTablesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTablesResponse>;
|
|
6657
|
+
describeTables(request: DescribeTablesRequest): Promise<DescribeTablesResponse>;
|
|
6313
6658
|
disableElasticPlanWithOptions(request: DisableElasticPlanRequest, runtime: $Util.RuntimeOptions): Promise<DisableElasticPlanResponse>;
|
|
6314
6659
|
disableElasticPlan(request: DisableElasticPlanRequest): Promise<DisableElasticPlanResponse>;
|
|
6315
6660
|
downloadDiagnosisRecordsWithOptions(request: DownloadDiagnosisRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DownloadDiagnosisRecordsResponse>;
|