@alicloud/gpdb20160503 1.1.0 → 1.2.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 +114 -72
- package/dist/client.js +165 -72
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +188 -72
package/dist/client.d.ts
CHANGED
|
@@ -3590,6 +3590,52 @@ export declare class ModifyDBInstanceSSLResponse extends $tea.Model {
|
|
|
3590
3590
|
[key: string]: any;
|
|
3591
3591
|
});
|
|
3592
3592
|
}
|
|
3593
|
+
export declare class ModifyMasterSpecRequest extends $tea.Model {
|
|
3594
|
+
DBInstanceDescription?: string;
|
|
3595
|
+
DBInstanceId?: string;
|
|
3596
|
+
masterCU?: number;
|
|
3597
|
+
resourceGroupId?: string;
|
|
3598
|
+
static names(): {
|
|
3599
|
+
[key: string]: string;
|
|
3600
|
+
};
|
|
3601
|
+
static types(): {
|
|
3602
|
+
[key: string]: any;
|
|
3603
|
+
};
|
|
3604
|
+
constructor(map?: {
|
|
3605
|
+
[key: string]: any;
|
|
3606
|
+
});
|
|
3607
|
+
}
|
|
3608
|
+
export declare class ModifyMasterSpecResponseBody extends $tea.Model {
|
|
3609
|
+
dbInstanceId?: string;
|
|
3610
|
+
errorMessage?: string;
|
|
3611
|
+
requestId?: string;
|
|
3612
|
+
status?: boolean;
|
|
3613
|
+
static names(): {
|
|
3614
|
+
[key: string]: string;
|
|
3615
|
+
};
|
|
3616
|
+
static types(): {
|
|
3617
|
+
[key: string]: any;
|
|
3618
|
+
};
|
|
3619
|
+
constructor(map?: {
|
|
3620
|
+
[key: string]: any;
|
|
3621
|
+
});
|
|
3622
|
+
}
|
|
3623
|
+
export declare class ModifyMasterSpecResponse extends $tea.Model {
|
|
3624
|
+
headers: {
|
|
3625
|
+
[key: string]: string;
|
|
3626
|
+
};
|
|
3627
|
+
statusCode: number;
|
|
3628
|
+
body: ModifyMasterSpecResponseBody;
|
|
3629
|
+
static names(): {
|
|
3630
|
+
[key: string]: string;
|
|
3631
|
+
};
|
|
3632
|
+
static types(): {
|
|
3633
|
+
[key: string]: any;
|
|
3634
|
+
};
|
|
3635
|
+
constructor(map?: {
|
|
3636
|
+
[key: string]: any;
|
|
3637
|
+
});
|
|
3638
|
+
}
|
|
3593
3639
|
export declare class ModifyParametersRequest extends $tea.Model {
|
|
3594
3640
|
DBInstanceId?: string;
|
|
3595
3641
|
forceRestartInstance?: boolean;
|
|
@@ -6194,10 +6240,9 @@ export default class Client extends OpenApi {
|
|
|
6194
6240
|
*/
|
|
6195
6241
|
createDBInstance(request: CreateDBInstanceRequest): Promise<CreateDBInstanceResponse>;
|
|
6196
6242
|
/**
|
|
6197
|
-
*
|
|
6198
|
-
*
|
|
6199
|
-
*
|
|
6200
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6243
|
+
* * The plan management feature is supported only for pay-as-you-go instances.
|
|
6244
|
+
* * When you change the compute node specifications or change the number of compute nodes, transient connections may occur. We recommend that you perform these operations during off-peak hours.
|
|
6245
|
+
* Before you call this operation, make sure that you are familiar with the billing of AnalyticDB for PostgreSQL. For more information, see [Billing methods](~~35406~~) and [AnalyticDB for PostgreSQL pricing](https://www.alibabacloud.com/zh/product/hybriddb-postgresql/pricing).
|
|
6201
6246
|
*
|
|
6202
6247
|
* @param request CreateDBInstancePlanRequest
|
|
6203
6248
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -6205,10 +6250,9 @@ export default class Client extends OpenApi {
|
|
|
6205
6250
|
*/
|
|
6206
6251
|
createDBInstancePlanWithOptions(request: CreateDBInstancePlanRequest, runtime: $Util.RuntimeOptions): Promise<CreateDBInstancePlanResponse>;
|
|
6207
6252
|
/**
|
|
6208
|
-
*
|
|
6209
|
-
*
|
|
6210
|
-
*
|
|
6211
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6253
|
+
* * The plan management feature is supported only for pay-as-you-go instances.
|
|
6254
|
+
* * When you change the compute node specifications or change the number of compute nodes, transient connections may occur. We recommend that you perform these operations during off-peak hours.
|
|
6255
|
+
* Before you call this operation, make sure that you are familiar with the billing of AnalyticDB for PostgreSQL. For more information, see [Billing methods](~~35406~~) and [AnalyticDB for PostgreSQL pricing](https://www.alibabacloud.com/zh/product/hybriddb-postgresql/pricing).
|
|
6212
6256
|
*
|
|
6213
6257
|
* @param request CreateDBInstancePlanRequest
|
|
6214
6258
|
* @return CreateDBInstancePlanResponse
|
|
@@ -6317,9 +6361,7 @@ export default class Client extends OpenApi {
|
|
|
6317
6361
|
*/
|
|
6318
6362
|
describeAccounts(request: DescribeAccountsRequest): Promise<DescribeAccountsResponse>;
|
|
6319
6363
|
/**
|
|
6320
|
-
* When you create an AnalyticDB for PostgreSQL instance, you can call this operation to query the available resources within a
|
|
6321
|
-
* ## Limits
|
|
6322
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6364
|
+
* When you create an AnalyticDB for PostgreSQL instance, you can call this operation to query the available resources within a zone.
|
|
6323
6365
|
*
|
|
6324
6366
|
* @param request DescribeAvailableResourcesRequest
|
|
6325
6367
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -6327,9 +6369,7 @@ export default class Client extends OpenApi {
|
|
|
6327
6369
|
*/
|
|
6328
6370
|
describeAvailableResourcesWithOptions(request: DescribeAvailableResourcesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAvailableResourcesResponse>;
|
|
6329
6371
|
/**
|
|
6330
|
-
* When you create an AnalyticDB for PostgreSQL instance, you can call this operation to query the available resources within a
|
|
6331
|
-
* ## Limits
|
|
6332
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6372
|
+
* When you create an AnalyticDB for PostgreSQL instance, you can call this operation to query the available resources within a zone.
|
|
6333
6373
|
*
|
|
6334
6374
|
* @param request DescribeAvailableResourcesRequest
|
|
6335
6375
|
* @return DescribeAvailableResourcesResponse
|
|
@@ -6357,9 +6397,10 @@ export default class Client extends OpenApi {
|
|
|
6357
6397
|
describeCollectionWithOptions(request: DescribeCollectionRequest, runtime: $Util.RuntimeOptions): Promise<DescribeCollectionResponse>;
|
|
6358
6398
|
describeCollection(request: DescribeCollectionRequest): Promise<DescribeCollectionResponse>;
|
|
6359
6399
|
/**
|
|
6360
|
-
*
|
|
6400
|
+
* ##
|
|
6401
|
+
* You can call this operation to query the information about coordinator and compute nodes in an AnalyticDB for PostgreSQL instance in elastic storage mode or Serverless mode.
|
|
6361
6402
|
* ## Limits
|
|
6362
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered
|
|
6403
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6363
6404
|
*
|
|
6364
6405
|
* @param request DescribeDBClusterNodeRequest
|
|
6365
6406
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -6367,19 +6408,17 @@ export default class Client extends OpenApi {
|
|
|
6367
6408
|
*/
|
|
6368
6409
|
describeDBClusterNodeWithOptions(request: DescribeDBClusterNodeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterNodeResponse>;
|
|
6369
6410
|
/**
|
|
6370
|
-
*
|
|
6411
|
+
* ##
|
|
6412
|
+
* You can call this operation to query the information about coordinator and compute nodes in an AnalyticDB for PostgreSQL instance in elastic storage mode or Serverless mode.
|
|
6371
6413
|
* ## Limits
|
|
6372
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered
|
|
6414
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6373
6415
|
*
|
|
6374
6416
|
* @param request DescribeDBClusterNodeRequest
|
|
6375
6417
|
* @return DescribeDBClusterNodeResponse
|
|
6376
6418
|
*/
|
|
6377
6419
|
describeDBClusterNode(request: DescribeDBClusterNodeRequest): Promise<DescribeDBClusterNodeResponse>;
|
|
6378
6420
|
/**
|
|
6379
|
-
* This operation is called to query the performance metrics of an AnalyticDB for PostgreSQL instance, such as the number of connections, memory usage, CPU utilization, I/O throughput, read IOPS, write IOPS, and disk space usage.
|
|
6380
6421
|
* You can query monitoring information only within the last 30 days.
|
|
6381
|
-
* ## Limits
|
|
6382
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered and may affect your business. We recommend that you take note of the limit when you call this operation.
|
|
6383
6422
|
*
|
|
6384
6423
|
* @param request DescribeDBClusterPerformanceRequest
|
|
6385
6424
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -6387,19 +6426,17 @@ export default class Client extends OpenApi {
|
|
|
6387
6426
|
*/
|
|
6388
6427
|
describeDBClusterPerformanceWithOptions(request: DescribeDBClusterPerformanceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterPerformanceResponse>;
|
|
6389
6428
|
/**
|
|
6390
|
-
* This operation is called to query the performance metrics of an AnalyticDB for PostgreSQL instance, such as the number of connections, memory usage, CPU utilization, I/O throughput, read IOPS, write IOPS, and disk space usage.
|
|
6391
6429
|
* You can query monitoring information only within the last 30 days.
|
|
6392
|
-
* ## Limits
|
|
6393
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered and may affect your business. We recommend that you take note of the limit when you call this operation.
|
|
6394
6430
|
*
|
|
6395
6431
|
* @param request DescribeDBClusterPerformanceRequest
|
|
6396
6432
|
* @return DescribeDBClusterPerformanceResponse
|
|
6397
6433
|
*/
|
|
6398
6434
|
describeDBClusterPerformance(request: DescribeDBClusterPerformanceRequest): Promise<DescribeDBClusterPerformanceResponse>;
|
|
6399
6435
|
/**
|
|
6436
|
+
* ##
|
|
6400
6437
|
* You can call this operation to query the information about an AnalyticDB for PostgreSQL instance, such as the instance type, network type, and instance state.
|
|
6401
6438
|
* ## Limits
|
|
6402
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds
|
|
6439
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6403
6440
|
*
|
|
6404
6441
|
* @param request DescribeDBInstanceAttributeRequest
|
|
6405
6442
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -6407,9 +6444,10 @@ export default class Client extends OpenApi {
|
|
|
6407
6444
|
*/
|
|
6408
6445
|
describeDBInstanceAttributeWithOptions(request: DescribeDBInstanceAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceAttributeResponse>;
|
|
6409
6446
|
/**
|
|
6447
|
+
* ##
|
|
6410
6448
|
* You can call this operation to query the information about an AnalyticDB for PostgreSQL instance, such as the instance type, network type, and instance state.
|
|
6411
6449
|
* ## Limits
|
|
6412
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds
|
|
6450
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6413
6451
|
*
|
|
6414
6452
|
* @param request DescribeDBInstanceAttributeRequest
|
|
6415
6453
|
* @return DescribeDBInstanceAttributeResponse
|
|
@@ -6454,9 +6492,7 @@ export default class Client extends OpenApi {
|
|
|
6454
6492
|
*/
|
|
6455
6493
|
describeDBInstanceDataSkew(request: DescribeDBInstanceDataSkewRequest): Promise<DescribeDBInstanceDataSkewResponse>;
|
|
6456
6494
|
/**
|
|
6457
|
-
* You can call this operation to query the distribution and states of coordinator and compute nodes
|
|
6458
|
-
* ## Limits
|
|
6459
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6495
|
+
* You can call this operation to query the distribution and states of coordinator and compute nodes in an AnalyticDB for PostgreSQL instance.
|
|
6460
6496
|
*
|
|
6461
6497
|
* @param request DescribeDBInstanceDiagnosisSummaryRequest
|
|
6462
6498
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -6464,9 +6500,7 @@ export default class Client extends OpenApi {
|
|
|
6464
6500
|
*/
|
|
6465
6501
|
describeDBInstanceDiagnosisSummaryWithOptions(request: DescribeDBInstanceDiagnosisSummaryRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceDiagnosisSummaryResponse>;
|
|
6466
6502
|
/**
|
|
6467
|
-
* You can call this operation to query the distribution and states of coordinator and compute nodes
|
|
6468
|
-
* ## Limits
|
|
6469
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6503
|
+
* You can call this operation to query the distribution and states of coordinator and compute nodes in an AnalyticDB for PostgreSQL instance.
|
|
6470
6504
|
*
|
|
6471
6505
|
* @param request DescribeDBInstanceDiagnosisSummaryRequest
|
|
6472
6506
|
* @return DescribeDBInstanceDiagnosisSummaryResponse
|
|
@@ -6511,10 +6545,8 @@ export default class Client extends OpenApi {
|
|
|
6511
6545
|
*/
|
|
6512
6546
|
describeDBInstanceIPArrayList(request: DescribeDBInstanceIPArrayListRequest): Promise<DescribeDBInstanceIPArrayListResponse>;
|
|
6513
6547
|
/**
|
|
6514
|
-
* Appropriate indexes can
|
|
6515
|
-
* This operation is available only for instances of V6.3.10.1 or later in elastic storage mode. For
|
|
6516
|
-
* ## Limits
|
|
6517
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6548
|
+
* Appropriate indexes can accelerate database queries. You can call this operation to query the index usage of an AnalyticDB for PostgreSQL instance.
|
|
6549
|
+
* This operation is available only for instances of V6.3.10.1 or later in elastic storage mode. For information about how to view and update the minor version of an instance, see [View the minor engine version](~~277424~~) and [Update the minor engine version](~~139271~~).
|
|
6518
6550
|
*
|
|
6519
6551
|
* @param request DescribeDBInstanceIndexUsageRequest
|
|
6520
6552
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -6522,10 +6554,8 @@ export default class Client extends OpenApi {
|
|
|
6522
6554
|
*/
|
|
6523
6555
|
describeDBInstanceIndexUsageWithOptions(request: DescribeDBInstanceIndexUsageRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceIndexUsageResponse>;
|
|
6524
6556
|
/**
|
|
6525
|
-
* Appropriate indexes can
|
|
6526
|
-
* This operation is available only for instances of V6.3.10.1 or later in elastic storage mode. For
|
|
6527
|
-
* ## Limits
|
|
6528
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6557
|
+
* Appropriate indexes can accelerate database queries. You can call this operation to query the index usage of an AnalyticDB for PostgreSQL instance.
|
|
6558
|
+
* This operation is available only for instances of V6.3.10.1 or later in elastic storage mode. For information about how to view and update the minor version of an instance, see [View the minor engine version](~~277424~~) and [Update the minor engine version](~~139271~~).
|
|
6529
6559
|
*
|
|
6530
6560
|
* @param request DescribeDBInstanceIndexUsageRequest
|
|
6531
6561
|
* @return DescribeDBInstanceIndexUsageResponse
|
|
@@ -6557,7 +6587,8 @@ export default class Client extends OpenApi {
|
|
|
6557
6587
|
describeDBInstanceSSLWithOptions(request: DescribeDBInstanceSSLRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceSSLResponse>;
|
|
6558
6588
|
describeDBInstanceSSL(request: DescribeDBInstanceSSLRequest): Promise<DescribeDBInstanceSSLResponse>;
|
|
6559
6589
|
/**
|
|
6560
|
-
*
|
|
6590
|
+
* ##
|
|
6591
|
+
* You can call this operation to query the instance types, network types, and states of AnalyticDB for PostgreSQL instances within a region.
|
|
6561
6592
|
* ## Limits
|
|
6562
6593
|
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6563
6594
|
*
|
|
@@ -6567,7 +6598,8 @@ export default class Client extends OpenApi {
|
|
|
6567
6598
|
*/
|
|
6568
6599
|
describeDBInstancesWithOptions(tmpReq: DescribeDBInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstancesResponse>;
|
|
6569
6600
|
/**
|
|
6570
|
-
*
|
|
6601
|
+
* ##
|
|
6602
|
+
* You can call this operation to query the instance types, network types, and states of AnalyticDB for PostgreSQL instances within a region.
|
|
6571
6603
|
* ## Limits
|
|
6572
6604
|
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6573
6605
|
*
|
|
@@ -6575,14 +6607,25 @@ export default class Client extends OpenApi {
|
|
|
6575
6607
|
* @return DescribeDBInstancesResponse
|
|
6576
6608
|
*/
|
|
6577
6609
|
describeDBInstances(request: DescribeDBInstancesRequest): Promise<DescribeDBInstancesResponse>;
|
|
6610
|
+
/**
|
|
6611
|
+
* You can call this operation to query a list of backup sets and backup details only for instances in elastic storage mode.
|
|
6612
|
+
*
|
|
6613
|
+
* @param request DescribeDataBackupsRequest
|
|
6614
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6615
|
+
* @return DescribeDataBackupsResponse
|
|
6616
|
+
*/
|
|
6578
6617
|
describeDataBackupsWithOptions(request: DescribeDataBackupsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDataBackupsResponse>;
|
|
6618
|
+
/**
|
|
6619
|
+
* You can call this operation to query a list of backup sets and backup details only for instances in elastic storage mode.
|
|
6620
|
+
*
|
|
6621
|
+
* @param request DescribeDataBackupsRequest
|
|
6622
|
+
* @return DescribeDataBackupsResponse
|
|
6623
|
+
*/
|
|
6579
6624
|
describeDataBackups(request: DescribeDataBackupsRequest): Promise<DescribeDataBackupsResponse>;
|
|
6580
6625
|
describeDataReDistributeInfoWithOptions(request: DescribeDataReDistributeInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDataReDistributeInfoResponse>;
|
|
6581
6626
|
describeDataReDistributeInfo(request: DescribeDataReDistributeInfoRequest): Promise<DescribeDataReDistributeInfoResponse>;
|
|
6582
6627
|
/**
|
|
6583
|
-
*
|
|
6584
|
-
* ## Limits
|
|
6585
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6628
|
+
* Data sharing is supported only for instances in Serverless mode.
|
|
6586
6629
|
*
|
|
6587
6630
|
* @param request DescribeDataShareInstancesRequest
|
|
6588
6631
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -6590,9 +6633,7 @@ export default class Client extends OpenApi {
|
|
|
6590
6633
|
*/
|
|
6591
6634
|
describeDataShareInstancesWithOptions(request: DescribeDataShareInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDataShareInstancesResponse>;
|
|
6592
6635
|
/**
|
|
6593
|
-
*
|
|
6594
|
-
* ## Limits
|
|
6595
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6636
|
+
* Data sharing is supported only for instances in Serverless mode.
|
|
6596
6637
|
*
|
|
6597
6638
|
* @param request DescribeDataShareInstancesRequest
|
|
6598
6639
|
* @return DescribeDataShareInstancesResponse
|
|
@@ -6675,10 +6716,8 @@ export default class Client extends OpenApi {
|
|
|
6675
6716
|
*/
|
|
6676
6717
|
describeDiagnosisRecords(request: DescribeDiagnosisRecordsRequest): Promise<DescribeDiagnosisRecordsResponse>;
|
|
6677
6718
|
/**
|
|
6678
|
-
* You can call this operation to query the
|
|
6679
|
-
* This operation is available only for instances of V6.3.10.1 or later in elastic storage mode. For
|
|
6680
|
-
* ## Limits
|
|
6681
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6719
|
+
* You can call this operation to query the information about a query for an AnalyticDB for PostgreSQL instance, including the SQL statement, execution plan text, and execution plan tree.
|
|
6720
|
+
* This operation is available only for instances of V6.3.10.1 or later in elastic storage mode. For information about how to view and update the minor version of an instance, see [View the minor engine version](~~277424~~) and [Update the minor engine version](~~139271~~).
|
|
6682
6721
|
*
|
|
6683
6722
|
* @param request DescribeDiagnosisSQLInfoRequest
|
|
6684
6723
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -6686,20 +6725,16 @@ export default class Client extends OpenApi {
|
|
|
6686
6725
|
*/
|
|
6687
6726
|
describeDiagnosisSQLInfoWithOptions(request: DescribeDiagnosisSQLInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiagnosisSQLInfoResponse>;
|
|
6688
6727
|
/**
|
|
6689
|
-
* You can call this operation to query the
|
|
6690
|
-
* This operation is available only for instances of V6.3.10.1 or later in elastic storage mode. For
|
|
6691
|
-
* ## Limits
|
|
6692
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6728
|
+
* You can call this operation to query the information about a query for an AnalyticDB for PostgreSQL instance, including the SQL statement, execution plan text, and execution plan tree.
|
|
6729
|
+
* This operation is available only for instances of V6.3.10.1 or later in elastic storage mode. For information about how to view and update the minor version of an instance, see [View the minor engine version](~~277424~~) and [Update the minor engine version](~~139271~~).
|
|
6693
6730
|
*
|
|
6694
6731
|
* @param request DescribeDiagnosisSQLInfoRequest
|
|
6695
6732
|
* @return DescribeDiagnosisSQLInfoResponse
|
|
6696
6733
|
*/
|
|
6697
6734
|
describeDiagnosisSQLInfo(request: DescribeDiagnosisSQLInfoRequest): Promise<DescribeDiagnosisSQLInfoResponse>;
|
|
6698
6735
|
/**
|
|
6699
|
-
* You must call the [DownloadDiagnosisRecords](~~447700~~) operation to
|
|
6700
|
-
* This operation is available only for instances of V6.3.10.1 or later in elastic storage mode. For
|
|
6701
|
-
* ## Limits
|
|
6702
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6736
|
+
* You must call the [DownloadDiagnosisRecords](~~447700~~) operation to download the query diagnostic information before you can call this operation to query the download records and download URLs.
|
|
6737
|
+
* This operation is available only for instances of V6.3.10.1 or later in elastic storage mode. For information about how to view and update the minor version of an instance, see [View the minor engine version](~~277424~~) and [Update the minor engine version](~~139271~~).
|
|
6703
6738
|
*
|
|
6704
6739
|
* @param request DescribeDownloadRecordsRequest
|
|
6705
6740
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -6707,10 +6742,8 @@ export default class Client extends OpenApi {
|
|
|
6707
6742
|
*/
|
|
6708
6743
|
describeDownloadRecordsWithOptions(request: DescribeDownloadRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDownloadRecordsResponse>;
|
|
6709
6744
|
/**
|
|
6710
|
-
* You must call the [DownloadDiagnosisRecords](~~447700~~) operation to
|
|
6711
|
-
* This operation is available only for instances of V6.3.10.1 or later in elastic storage mode. For
|
|
6712
|
-
* ## Limits
|
|
6713
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6745
|
+
* You must call the [DownloadDiagnosisRecords](~~447700~~) operation to download the query diagnostic information before you can call this operation to query the download records and download URLs.
|
|
6746
|
+
* This operation is available only for instances of V6.3.10.1 or later in elastic storage mode. For information about how to view and update the minor version of an instance, see [View the minor engine version](~~277424~~) and [Update the minor engine version](~~139271~~).
|
|
6714
6747
|
*
|
|
6715
6748
|
* @param request DescribeDownloadRecordsRequest
|
|
6716
6749
|
* @return DescribeDownloadRecordsResponse
|
|
@@ -6819,7 +6852,20 @@ export default class Client extends OpenApi {
|
|
|
6819
6852
|
* @return DescribeRegionsResponse
|
|
6820
6853
|
*/
|
|
6821
6854
|
describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse>;
|
|
6855
|
+
/**
|
|
6856
|
+
* This operation is not available for instances in reserved storage mode.
|
|
6857
|
+
*
|
|
6858
|
+
* @param request DescribeSQLLogCountRequest
|
|
6859
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6860
|
+
* @return DescribeSQLLogCountResponse
|
|
6861
|
+
*/
|
|
6822
6862
|
describeSQLLogCountWithOptions(request: DescribeSQLLogCountRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSQLLogCountResponse>;
|
|
6863
|
+
/**
|
|
6864
|
+
* This operation is not available for instances in reserved storage mode.
|
|
6865
|
+
*
|
|
6866
|
+
* @param request DescribeSQLLogCountRequest
|
|
6867
|
+
* @return DescribeSQLLogCountResponse
|
|
6868
|
+
*/
|
|
6823
6869
|
describeSQLLogCount(request: DescribeSQLLogCountRequest): Promise<DescribeSQLLogCountResponse>;
|
|
6824
6870
|
/**
|
|
6825
6871
|
* You can call this operation to query SQL logs of an AnalyticDB for PostgreSQL instance within a specific time range.
|
|
@@ -6995,6 +7041,8 @@ export default class Client extends OpenApi {
|
|
|
6995
7041
|
modifyDBInstanceResourceGroup(request: ModifyDBInstanceResourceGroupRequest): Promise<ModifyDBInstanceResourceGroupResponse>;
|
|
6996
7042
|
modifyDBInstanceSSLWithOptions(request: ModifyDBInstanceSSLRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceSSLResponse>;
|
|
6997
7043
|
modifyDBInstanceSSL(request: ModifyDBInstanceSSLRequest): Promise<ModifyDBInstanceSSLResponse>;
|
|
7044
|
+
modifyMasterSpecWithOptions(request: ModifyMasterSpecRequest, runtime: $Util.RuntimeOptions): Promise<ModifyMasterSpecResponse>;
|
|
7045
|
+
modifyMasterSpec(request: ModifyMasterSpecRequest): Promise<ModifyMasterSpecResponse>;
|
|
6998
7046
|
/**
|
|
6999
7047
|
* This operation can be called to modify parameters of an AnalyticDB for PostgreSQL instance in elastic storage mode or Serverless mode.
|
|
7000
7048
|
* ## Limits
|
|
@@ -7195,11 +7243,8 @@ export default class Client extends OpenApi {
|
|
|
7195
7243
|
*/
|
|
7196
7244
|
updateDBInstancePlan(request: UpdateDBInstancePlanRequest): Promise<UpdateDBInstancePlanResponse>;
|
|
7197
7245
|
/**
|
|
7198
|
-
*
|
|
7199
|
-
* > This operation is not supported for instances in reserved storage mode.
|
|
7246
|
+
* This operation is not available for instances in reserved storage mode.
|
|
7200
7247
|
* Before you call this operation, make sure that you are familiar with the billing of AnalyticDB for PostgreSQL. For more information, see [Billing methods](~~35406~~) and [AnalyticDB for PostgreSQL pricing](https://www.alibabacloud.com/zh/product/hybriddb-postgresql/pricing).
|
|
7201
|
-
* ## Limits
|
|
7202
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
7203
7248
|
*
|
|
7204
7249
|
* @param request UpgradeDBInstanceRequest
|
|
7205
7250
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -7207,11 +7252,8 @@ export default class Client extends OpenApi {
|
|
|
7207
7252
|
*/
|
|
7208
7253
|
upgradeDBInstanceWithOptions(request: UpgradeDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<UpgradeDBInstanceResponse>;
|
|
7209
7254
|
/**
|
|
7210
|
-
*
|
|
7211
|
-
* > This operation is not supported for instances in reserved storage mode.
|
|
7255
|
+
* This operation is not available for instances in reserved storage mode.
|
|
7212
7256
|
* Before you call this operation, make sure that you are familiar with the billing of AnalyticDB for PostgreSQL. For more information, see [Billing methods](~~35406~~) and [AnalyticDB for PostgreSQL pricing](https://www.alibabacloud.com/zh/product/hybriddb-postgresql/pricing).
|
|
7213
|
-
* ## Limits
|
|
7214
|
-
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
7215
7257
|
*
|
|
7216
7258
|
* @param request UpgradeDBInstanceRequest
|
|
7217
7259
|
* @return UpgradeDBInstanceResponse
|