@alicloud/polardb20170801 5.2.2 → 5.3.1
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 +753 -63
- package/dist/client.js +558 -29
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1171 -62
package/dist/client.d.ts
CHANGED
|
@@ -3,6 +3,91 @@
|
|
|
3
3
|
import * as $Util from '@alicloud/tea-util';
|
|
4
4
|
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
|
|
5
5
|
import * as $tea from '@alicloud/tea-typescript';
|
|
6
|
+
export declare class CancelActiveOperationTasksRequest extends $tea.Model {
|
|
7
|
+
ownerAccount?: string;
|
|
8
|
+
ownerId?: number;
|
|
9
|
+
/**
|
|
10
|
+
* @remarks
|
|
11
|
+
* The region ID.
|
|
12
|
+
*
|
|
13
|
+
* >
|
|
14
|
+
*
|
|
15
|
+
* * You can call the [DescribeRegions](https://help.aliyun.com/document_detail/98041.html) operation to query the region information about all clusters within a specified account.
|
|
16
|
+
*
|
|
17
|
+
* * If you do not specify this parameter, scheduled tasks on your clusters that are deployed in all regions are queried.
|
|
18
|
+
*
|
|
19
|
+
* This parameter is required.
|
|
20
|
+
*
|
|
21
|
+
* @example
|
|
22
|
+
* cn-beijing
|
|
23
|
+
*/
|
|
24
|
+
regionId?: string;
|
|
25
|
+
resourceOwnerAccount?: string;
|
|
26
|
+
resourceOwnerId?: number;
|
|
27
|
+
securityToken?: string;
|
|
28
|
+
/**
|
|
29
|
+
* @remarks
|
|
30
|
+
* The IDs of O\\&M events that are canceled at a time. Separate multiple IDs with commas (,).
|
|
31
|
+
*
|
|
32
|
+
* This parameter is required.
|
|
33
|
+
*
|
|
34
|
+
* @example
|
|
35
|
+
* 2355,2352
|
|
36
|
+
*/
|
|
37
|
+
taskIds?: string;
|
|
38
|
+
static names(): {
|
|
39
|
+
[key: string]: string;
|
|
40
|
+
};
|
|
41
|
+
static types(): {
|
|
42
|
+
[key: string]: any;
|
|
43
|
+
};
|
|
44
|
+
constructor(map?: {
|
|
45
|
+
[key: string]: any;
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
export declare class CancelActiveOperationTasksResponseBody extends $tea.Model {
|
|
49
|
+
/**
|
|
50
|
+
* @remarks
|
|
51
|
+
* The ID of the request.
|
|
52
|
+
*
|
|
53
|
+
* @example
|
|
54
|
+
* 25C70FF3-D49B-594D-BECE-0DE2BA1D8BBB
|
|
55
|
+
*/
|
|
56
|
+
requestId?: string;
|
|
57
|
+
/**
|
|
58
|
+
* @remarks
|
|
59
|
+
* The IDs of O\\&M events that are canceled at a time. Separate multiple IDs with commas (,).
|
|
60
|
+
*
|
|
61
|
+
* @example
|
|
62
|
+
* 2355,2352
|
|
63
|
+
*/
|
|
64
|
+
taskIds?: string;
|
|
65
|
+
static names(): {
|
|
66
|
+
[key: string]: string;
|
|
67
|
+
};
|
|
68
|
+
static types(): {
|
|
69
|
+
[key: string]: any;
|
|
70
|
+
};
|
|
71
|
+
constructor(map?: {
|
|
72
|
+
[key: string]: any;
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
export declare class CancelActiveOperationTasksResponse extends $tea.Model {
|
|
76
|
+
headers?: {
|
|
77
|
+
[key: string]: string;
|
|
78
|
+
};
|
|
79
|
+
statusCode?: number;
|
|
80
|
+
body?: CancelActiveOperationTasksResponseBody;
|
|
81
|
+
static names(): {
|
|
82
|
+
[key: string]: string;
|
|
83
|
+
};
|
|
84
|
+
static types(): {
|
|
85
|
+
[key: string]: any;
|
|
86
|
+
};
|
|
87
|
+
constructor(map?: {
|
|
88
|
+
[key: string]: any;
|
|
89
|
+
});
|
|
90
|
+
}
|
|
6
91
|
export declare class CancelScheduleTasksRequest extends $tea.Model {
|
|
7
92
|
/**
|
|
8
93
|
* @remarks
|
|
@@ -595,8 +680,8 @@ export declare class CreateAccountRequest extends $tea.Model {
|
|
|
595
680
|
* @remarks
|
|
596
681
|
* The password of the account. The password must meet the following requirements:
|
|
597
682
|
*
|
|
598
|
-
* *
|
|
599
|
-
* *
|
|
683
|
+
* * The password must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters.
|
|
684
|
+
* * The password must be 8 to 32 characters in length.
|
|
600
685
|
* * Special characters include `! @ # $ % ^ & * ( ) _ + - =`
|
|
601
686
|
*
|
|
602
687
|
* This parameter is required.
|
|
@@ -632,14 +717,15 @@ export declare class CreateAccountRequest extends $tea.Model {
|
|
|
632
717
|
* The type of the account. Valid values:
|
|
633
718
|
*
|
|
634
719
|
* * **Normal**: standard account
|
|
635
|
-
* * **Super**: privileged account
|
|
720
|
+
* * **Super**: privileged account.
|
|
636
721
|
*
|
|
637
722
|
* >
|
|
638
723
|
*
|
|
639
724
|
* * If you leave this parameter empty, the default value **Super** is used.
|
|
640
725
|
*
|
|
641
|
-
* * You can create multiple privileged accounts for a PolarDB for Oracle or PolarDB for PostgreSQL cluster. A privileged account
|
|
642
|
-
*
|
|
726
|
+
* * You can create multiple privileged accounts for a PolarDB for PostgreSQL (Compatible with Oracle) cluster or a PolarDB for PostgreSQL cluster. A privileged account has more permissions than a standard account. For more information, see [Create a database account](https://help.aliyun.com/document_detail/68508.html).
|
|
727
|
+
*
|
|
728
|
+
* * You can create only one privileged account for a PolarDB for MySQL cluster. A privileged account has more permissions than a standard account. For more information, see [Create a database account](https://help.aliyun.com/document_detail/68508.html).
|
|
643
729
|
*
|
|
644
730
|
* @example
|
|
645
731
|
* Normal
|
|
@@ -675,22 +761,6 @@ export declare class CreateAccountRequest extends $tea.Model {
|
|
|
675
761
|
DBName?: string;
|
|
676
762
|
ownerAccount?: string;
|
|
677
763
|
ownerId?: number;
|
|
678
|
-
/**
|
|
679
|
-
* @remarks
|
|
680
|
-
* Specifies whether to grant the specified account required permissions on all existing databases in the current cluster and databases that will be further created for the current cluster. Valid values:
|
|
681
|
-
*
|
|
682
|
-
* * **0 or unspecified**: does not grant required permissions.
|
|
683
|
-
* * **1**: grants required permissions.
|
|
684
|
-
*
|
|
685
|
-
* >
|
|
686
|
-
*
|
|
687
|
-
* * The parameter is valid only after you configure the `AccountPrivilege` parameter.
|
|
688
|
-
*
|
|
689
|
-
* * If you set the parameter to `1`, the current account is granted to the required permissions on all databases in the current cluster that are specified by the `AccountPrivilege` parameter.
|
|
690
|
-
*
|
|
691
|
-
* @example
|
|
692
|
-
* 0
|
|
693
|
-
*/
|
|
694
764
|
privForAllDB?: string;
|
|
695
765
|
resourceOwnerAccount?: string;
|
|
696
766
|
resourceOwnerId?: number;
|
|
@@ -1267,12 +1337,16 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1267
1337
|
DBNodeClass?: string;
|
|
1268
1338
|
/**
|
|
1269
1339
|
* @remarks
|
|
1270
|
-
*
|
|
1340
|
+
* The number of nodes. This parameter is supported for Standard Edition clusters. Valid values:
|
|
1271
1341
|
*
|
|
1272
|
-
*
|
|
1273
|
-
*
|
|
1274
|
-
*
|
|
1275
|
-
* >
|
|
1342
|
+
* * **1** (default): only one primary node.
|
|
1343
|
+
* * **2**: one read-only node and one primary node.
|
|
1344
|
+
*
|
|
1345
|
+
* >
|
|
1346
|
+
*
|
|
1347
|
+
* * By default, an Enterprise Edition cluster has two nodes and a Standard Edition cluster has one node.
|
|
1348
|
+
*
|
|
1349
|
+
* * This parameter is supported only for PolarDB for MySQL clusters.
|
|
1276
1350
|
*
|
|
1277
1351
|
* @example
|
|
1278
1352
|
* 1
|
|
@@ -1582,6 +1656,8 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1582
1656
|
* Enable
|
|
1583
1657
|
*/
|
|
1584
1658
|
storageAutoScale?: string;
|
|
1659
|
+
storageEncryption?: boolean;
|
|
1660
|
+
storageEncryptionKey?: string;
|
|
1585
1661
|
/**
|
|
1586
1662
|
* @remarks
|
|
1587
1663
|
* The storage billing type, with valid values as follows:
|
|
@@ -1662,6 +1738,7 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1662
1738
|
* List of tags.
|
|
1663
1739
|
*/
|
|
1664
1740
|
tag?: CreateDBClusterRequestTag[];
|
|
1741
|
+
targetMinorVersion?: string;
|
|
1665
1742
|
/**
|
|
1666
1743
|
* @remarks
|
|
1667
1744
|
* If the payment type is **Prepaid**, this parameter is required.
|
|
@@ -4232,6 +4309,9 @@ export declare class DescribeAITaskStatusResponseBody extends $tea.Model {
|
|
|
4232
4309
|
/**
|
|
4233
4310
|
* @remarks
|
|
4234
4311
|
* The name of the database account that is used to connect to the AI nodes in the cluster.
|
|
4312
|
+
*
|
|
4313
|
+
* @example
|
|
4314
|
+
* testacc
|
|
4235
4315
|
*/
|
|
4236
4316
|
accountName?: string;
|
|
4237
4317
|
/**
|
|
@@ -4408,12 +4488,17 @@ export declare class DescribeAccountsResponse extends $tea.Model {
|
|
|
4408
4488
|
}
|
|
4409
4489
|
export declare class DescribeActivationCodeDetailsRequest extends $tea.Model {
|
|
4410
4490
|
/**
|
|
4491
|
+
* @remarks
|
|
4492
|
+
* The ID of the activation code.
|
|
4493
|
+
*
|
|
4411
4494
|
* @example
|
|
4412
4495
|
* 123
|
|
4413
4496
|
*/
|
|
4414
4497
|
activationCodeId?: number;
|
|
4415
4498
|
/**
|
|
4416
4499
|
* @remarks
|
|
4500
|
+
* The Alibaba Cloud order ID (including the virtual order ID).
|
|
4501
|
+
*
|
|
4417
4502
|
* This parameter is required.
|
|
4418
4503
|
*
|
|
4419
4504
|
* @example
|
|
@@ -4436,59 +4521,89 @@ export declare class DescribeActivationCodeDetailsRequest extends $tea.Model {
|
|
|
4436
4521
|
}
|
|
4437
4522
|
export declare class DescribeActivationCodeDetailsResponseBody extends $tea.Model {
|
|
4438
4523
|
/**
|
|
4524
|
+
* @remarks
|
|
4525
|
+
* The time when the activation code takes effect.
|
|
4526
|
+
*
|
|
4439
4527
|
* @example
|
|
4440
4528
|
* 2024-10-16 16:46:20
|
|
4441
4529
|
*/
|
|
4442
4530
|
activateAt?: string;
|
|
4443
4531
|
/**
|
|
4532
|
+
* @remarks
|
|
4533
|
+
* The activation code in the base64 format. The activation code is decoded and stored into a file named license.lic. PolarDB can access and read the license.lic file upon startup to validate the license or perform related operations.
|
|
4534
|
+
*
|
|
4444
4535
|
* @example
|
|
4445
4536
|
* AAEAA******AAA=
|
|
4446
4537
|
*/
|
|
4447
4538
|
certContentB64?: string;
|
|
4448
4539
|
/**
|
|
4540
|
+
* @remarks
|
|
4541
|
+
* The description of the activation code.
|
|
4542
|
+
*
|
|
4449
4543
|
* @example
|
|
4450
4544
|
* testCode
|
|
4451
4545
|
*/
|
|
4452
4546
|
description?: string;
|
|
4453
4547
|
/**
|
|
4548
|
+
* @remarks
|
|
4549
|
+
* The time when the activation code expires.
|
|
4550
|
+
*
|
|
4454
4551
|
* @example
|
|
4455
4552
|
* 2054-10-09 16:46:20
|
|
4456
4553
|
*/
|
|
4457
4554
|
expireAt?: string;
|
|
4458
4555
|
/**
|
|
4556
|
+
* @remarks
|
|
4557
|
+
* The time when the activation code was created.
|
|
4558
|
+
*
|
|
4459
4559
|
* @example
|
|
4460
4560
|
* 2024-10-16 16:46:20
|
|
4461
4561
|
*/
|
|
4462
4562
|
gmtCreated?: string;
|
|
4463
4563
|
/**
|
|
4564
|
+
* @remarks
|
|
4565
|
+
* The time when the activation code was last updated.
|
|
4566
|
+
*
|
|
4464
4567
|
* @example
|
|
4465
4568
|
* 2024-10-16 16:46:20
|
|
4466
4569
|
*/
|
|
4467
4570
|
gmtModified?: string;
|
|
4468
4571
|
/**
|
|
4572
|
+
* @remarks
|
|
4573
|
+
* The ID of the activation code.
|
|
4574
|
+
*
|
|
4469
4575
|
* @example
|
|
4470
4576
|
* 123
|
|
4471
4577
|
*/
|
|
4472
4578
|
id?: number;
|
|
4473
4579
|
/**
|
|
4580
|
+
* @remarks
|
|
4581
|
+
* The MAC address.
|
|
4582
|
+
*
|
|
4474
4583
|
* @example
|
|
4475
4584
|
* 12:34:56:78:98:00
|
|
4476
4585
|
*/
|
|
4477
4586
|
macAddress?: string;
|
|
4478
4587
|
/**
|
|
4588
|
+
* @remarks
|
|
4589
|
+
* The name of the activation code.
|
|
4590
|
+
*
|
|
4479
4591
|
* @example
|
|
4480
4592
|
* testName
|
|
4481
4593
|
*/
|
|
4482
4594
|
name?: string;
|
|
4483
4595
|
/**
|
|
4484
4596
|
* @remarks
|
|
4485
|
-
*
|
|
4597
|
+
* The request ID.
|
|
4486
4598
|
*
|
|
4487
4599
|
* @example
|
|
4488
4600
|
* F2A9EFA7-915F-4572-8299-85A307******
|
|
4489
4601
|
*/
|
|
4490
4602
|
requestId?: string;
|
|
4491
4603
|
/**
|
|
4604
|
+
* @remarks
|
|
4605
|
+
* The system identifier of the database.
|
|
4606
|
+
*
|
|
4492
4607
|
* @example
|
|
4493
4608
|
* 1234567890123456
|
|
4494
4609
|
*/
|
|
@@ -4624,6 +4739,123 @@ export declare class DescribeActivationCodesResponse extends $tea.Model {
|
|
|
4624
4739
|
[key: string]: any;
|
|
4625
4740
|
});
|
|
4626
4741
|
}
|
|
4742
|
+
export declare class DescribeActiveOperationTasksRequest extends $tea.Model {
|
|
4743
|
+
/**
|
|
4744
|
+
* @example
|
|
4745
|
+
* -1
|
|
4746
|
+
*/
|
|
4747
|
+
allowCancel?: number;
|
|
4748
|
+
/**
|
|
4749
|
+
* @example
|
|
4750
|
+
* -1
|
|
4751
|
+
*/
|
|
4752
|
+
allowChange?: number;
|
|
4753
|
+
/**
|
|
4754
|
+
* @example
|
|
4755
|
+
* all
|
|
4756
|
+
*/
|
|
4757
|
+
changeLevel?: string;
|
|
4758
|
+
/**
|
|
4759
|
+
* @example
|
|
4760
|
+
* pc-3ns***********d5d
|
|
4761
|
+
*/
|
|
4762
|
+
DBClusterId?: string;
|
|
4763
|
+
/**
|
|
4764
|
+
* @example
|
|
4765
|
+
* MySQL
|
|
4766
|
+
*/
|
|
4767
|
+
DBType?: string;
|
|
4768
|
+
ownerAccount?: string;
|
|
4769
|
+
ownerId?: number;
|
|
4770
|
+
/**
|
|
4771
|
+
* @example
|
|
4772
|
+
* 1
|
|
4773
|
+
*/
|
|
4774
|
+
pageNumber?: number;
|
|
4775
|
+
/**
|
|
4776
|
+
* @example
|
|
4777
|
+
* 30
|
|
4778
|
+
*/
|
|
4779
|
+
pageSize?: number;
|
|
4780
|
+
/**
|
|
4781
|
+
* @remarks
|
|
4782
|
+
* This parameter is required.
|
|
4783
|
+
*
|
|
4784
|
+
* @example
|
|
4785
|
+
* cn-beijing
|
|
4786
|
+
*/
|
|
4787
|
+
regionId?: string;
|
|
4788
|
+
resourceOwnerAccount?: string;
|
|
4789
|
+
resourceOwnerId?: number;
|
|
4790
|
+
securityToken?: string;
|
|
4791
|
+
/**
|
|
4792
|
+
* @example
|
|
4793
|
+
* -1
|
|
4794
|
+
*/
|
|
4795
|
+
status?: number;
|
|
4796
|
+
/**
|
|
4797
|
+
* @example
|
|
4798
|
+
* DatabaseProxyUpgrading
|
|
4799
|
+
*/
|
|
4800
|
+
taskType?: string;
|
|
4801
|
+
static names(): {
|
|
4802
|
+
[key: string]: string;
|
|
4803
|
+
};
|
|
4804
|
+
static types(): {
|
|
4805
|
+
[key: string]: any;
|
|
4806
|
+
};
|
|
4807
|
+
constructor(map?: {
|
|
4808
|
+
[key: string]: any;
|
|
4809
|
+
});
|
|
4810
|
+
}
|
|
4811
|
+
export declare class DescribeActiveOperationTasksResponseBody extends $tea.Model {
|
|
4812
|
+
items?: DescribeActiveOperationTasksResponseBodyItems[];
|
|
4813
|
+
/**
|
|
4814
|
+
* @example
|
|
4815
|
+
* 1
|
|
4816
|
+
*/
|
|
4817
|
+
pageNumber?: number;
|
|
4818
|
+
/**
|
|
4819
|
+
* @example
|
|
4820
|
+
* 30
|
|
4821
|
+
*/
|
|
4822
|
+
pageSize?: number;
|
|
4823
|
+
/**
|
|
4824
|
+
* @example
|
|
4825
|
+
* FAF88508-D5F8-52B1-8824-262601769E31
|
|
4826
|
+
*/
|
|
4827
|
+
requestId?: string;
|
|
4828
|
+
/**
|
|
4829
|
+
* @example
|
|
4830
|
+
* 1
|
|
4831
|
+
*/
|
|
4832
|
+
totalRecordCount?: number;
|
|
4833
|
+
static names(): {
|
|
4834
|
+
[key: string]: string;
|
|
4835
|
+
};
|
|
4836
|
+
static types(): {
|
|
4837
|
+
[key: string]: any;
|
|
4838
|
+
};
|
|
4839
|
+
constructor(map?: {
|
|
4840
|
+
[key: string]: any;
|
|
4841
|
+
});
|
|
4842
|
+
}
|
|
4843
|
+
export declare class DescribeActiveOperationTasksResponse extends $tea.Model {
|
|
4844
|
+
headers?: {
|
|
4845
|
+
[key: string]: string;
|
|
4846
|
+
};
|
|
4847
|
+
statusCode?: number;
|
|
4848
|
+
body?: DescribeActiveOperationTasksResponseBody;
|
|
4849
|
+
static names(): {
|
|
4850
|
+
[key: string]: string;
|
|
4851
|
+
};
|
|
4852
|
+
static types(): {
|
|
4853
|
+
[key: string]: any;
|
|
4854
|
+
};
|
|
4855
|
+
constructor(map?: {
|
|
4856
|
+
[key: string]: any;
|
|
4857
|
+
});
|
|
4858
|
+
}
|
|
4627
4859
|
export declare class DescribeAutoRenewAttributeRequest extends $tea.Model {
|
|
4628
4860
|
/**
|
|
4629
4861
|
* @remarks
|
|
@@ -5313,7 +5545,7 @@ export declare class DescribeBackupsRequest extends $tea.Model {
|
|
|
5313
5545
|
export declare class DescribeBackupsResponseBody extends $tea.Model {
|
|
5314
5546
|
/**
|
|
5315
5547
|
* @remarks
|
|
5316
|
-
* The
|
|
5548
|
+
* The queried backup sets.
|
|
5317
5549
|
*/
|
|
5318
5550
|
items?: DescribeBackupsResponseBodyItems;
|
|
5319
5551
|
/**
|
|
@@ -5340,6 +5572,10 @@ export declare class DescribeBackupsResponseBody extends $tea.Model {
|
|
|
5340
5572
|
* 24A1990B-4F6E-482B-B8CB-75C612******
|
|
5341
5573
|
*/
|
|
5342
5574
|
requestId?: string;
|
|
5575
|
+
/**
|
|
5576
|
+
* @example
|
|
5577
|
+
* 4639948800
|
|
5578
|
+
*/
|
|
5343
5579
|
totalLevel2BackupSize?: string;
|
|
5344
5580
|
/**
|
|
5345
5581
|
* @remarks
|
|
@@ -5543,7 +5779,7 @@ export declare class DescribeClassListRequest extends $tea.Model {
|
|
|
5543
5779
|
export declare class DescribeClassListResponseBody extends $tea.Model {
|
|
5544
5780
|
/**
|
|
5545
5781
|
* @remarks
|
|
5546
|
-
* The specifications
|
|
5782
|
+
* The cluster specifications.
|
|
5547
5783
|
*/
|
|
5548
5784
|
items?: DescribeClassListResponseBodyItems[];
|
|
5549
5785
|
/**
|
|
@@ -5926,6 +6162,16 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5926
6162
|
* StandbyClusterON
|
|
5927
6163
|
*/
|
|
5928
6164
|
hotStandbyCluster?: string;
|
|
6165
|
+
/**
|
|
6166
|
+
* @remarks
|
|
6167
|
+
* Indicates whether the automatic IMCI-based query acceleration feature is enabled. Valid values:
|
|
6168
|
+
*
|
|
6169
|
+
* * `ON`: enabled
|
|
6170
|
+
* * `OFF`: disabled
|
|
6171
|
+
*
|
|
6172
|
+
* @example
|
|
6173
|
+
* OFF
|
|
6174
|
+
*/
|
|
5929
6175
|
imciAutoIndex?: string;
|
|
5930
6176
|
/**
|
|
5931
6177
|
* @remarks
|
|
@@ -6172,7 +6418,8 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
6172
6418
|
/**
|
|
6173
6419
|
* @remarks
|
|
6174
6420
|
* Storage billing type. Valid values are as follows:
|
|
6175
|
-
* - **Postpaid
|
|
6421
|
+
* - **Postpaid**: Pay-as-you-go (by capacity).
|
|
6422
|
+
* - **Prepaid**: Subscription (by space).
|
|
6176
6423
|
*
|
|
6177
6424
|
* @example
|
|
6178
6425
|
* Prepaid
|
|
@@ -6226,7 +6473,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
6226
6473
|
subCategory?: string;
|
|
6227
6474
|
/**
|
|
6228
6475
|
* @remarks
|
|
6229
|
-
* Indicates whether
|
|
6476
|
+
* Indicates whether queries based on In-Memory Column Indexes (IMCIs) are supported during and after a failover with hot replica.
|
|
6230
6477
|
*
|
|
6231
6478
|
* @example
|
|
6232
6479
|
* ON
|
|
@@ -6787,7 +7034,7 @@ export declare class DescribeDBClusterMigrationResponseBody extends $tea.Model {
|
|
|
6787
7034
|
migrationStatus?: string;
|
|
6788
7035
|
/**
|
|
6789
7036
|
* @remarks
|
|
6790
|
-
* The
|
|
7037
|
+
* The endpoints of the ApsaraDB RDS instance.
|
|
6791
7038
|
*/
|
|
6792
7039
|
rdsEndpointList?: DescribeDBClusterMigrationResponseBodyRdsEndpointList[];
|
|
6793
7040
|
/**
|
|
@@ -6815,6 +7062,12 @@ export declare class DescribeDBClusterMigrationResponseBody extends $tea.Model {
|
|
|
6815
7062
|
*/
|
|
6816
7063
|
sourceRDSDBInstanceId?: string;
|
|
6817
7064
|
/**
|
|
7065
|
+
* @remarks
|
|
7066
|
+
* The type of the source database. Valid values:
|
|
7067
|
+
*
|
|
7068
|
+
* - **PolarDBMySQL**: The source database is a PolarDB for MySQL database when the major version of your PolarDB cluster is upgraded.
|
|
7069
|
+
* - **RDS**: The source database is an ApsaraDB RDS database when data is migrated from ApsaraDB RDS to PolarDB for MySQL.
|
|
7070
|
+
*
|
|
6818
7071
|
* @example
|
|
6819
7072
|
* PolarDBMySQL
|
|
6820
7073
|
*/
|
|
@@ -7116,7 +7369,7 @@ export declare class DescribeDBClusterPerformanceRequest extends $tea.Model {
|
|
|
7116
7369
|
startTime?: string;
|
|
7117
7370
|
/**
|
|
7118
7371
|
* @remarks
|
|
7119
|
-
* The
|
|
7372
|
+
* The query type.
|
|
7120
7373
|
*
|
|
7121
7374
|
* @example
|
|
7122
7375
|
* orca
|
|
@@ -7295,7 +7548,7 @@ export declare class DescribeDBClusterSSLResponse extends $tea.Model {
|
|
|
7295
7548
|
export declare class DescribeDBClusterServerlessConfRequest extends $tea.Model {
|
|
7296
7549
|
/**
|
|
7297
7550
|
* @remarks
|
|
7298
|
-
*
|
|
7551
|
+
* Serverless cluster ID.
|
|
7299
7552
|
*
|
|
7300
7553
|
* This parameter is required.
|
|
7301
7554
|
*
|
|
@@ -7321,10 +7574,11 @@ export declare class DescribeDBClusterServerlessConfResponseBody extends $tea.Mo
|
|
|
7321
7574
|
agileScaleMax?: string;
|
|
7322
7575
|
/**
|
|
7323
7576
|
* @remarks
|
|
7324
|
-
*
|
|
7577
|
+
* Whether to enable idle shutdown. Values:
|
|
7325
7578
|
*
|
|
7326
|
-
*
|
|
7327
|
-
*
|
|
7579
|
+
* - **true**: Enable
|
|
7580
|
+
*
|
|
7581
|
+
* - **false**: Disable (default)
|
|
7328
7582
|
*
|
|
7329
7583
|
* @example
|
|
7330
7584
|
* true
|
|
@@ -7332,7 +7586,7 @@ export declare class DescribeDBClusterServerlessConfResponseBody extends $tea.Mo
|
|
|
7332
7586
|
allowShutDown?: string;
|
|
7333
7587
|
/**
|
|
7334
7588
|
* @remarks
|
|
7335
|
-
*
|
|
7589
|
+
* Serverless cluster ID.
|
|
7336
7590
|
*
|
|
7337
7591
|
* @example
|
|
7338
7592
|
* pc-bp10gr51qasnl****
|
|
@@ -7340,17 +7594,31 @@ export declare class DescribeDBClusterServerlessConfResponseBody extends $tea.Mo
|
|
|
7340
7594
|
DBClusterId?: string;
|
|
7341
7595
|
/**
|
|
7342
7596
|
* @remarks
|
|
7343
|
-
*
|
|
7597
|
+
* Request ID.
|
|
7344
7598
|
*
|
|
7345
7599
|
* @example
|
|
7346
7600
|
* 5E71541A-6007-4DCC-A38A-F872C31FEB45
|
|
7347
7601
|
*/
|
|
7348
7602
|
requestId?: string;
|
|
7603
|
+
/**
|
|
7604
|
+
* @remarks
|
|
7605
|
+
* Maximum limit for the number of read-only column storage nodes. Range: 0~7.
|
|
7606
|
+
*
|
|
7607
|
+
* @example
|
|
7608
|
+
* 1
|
|
7609
|
+
*/
|
|
7349
7610
|
scaleApRoNumMax?: string;
|
|
7611
|
+
/**
|
|
7612
|
+
* @remarks
|
|
7613
|
+
* Minimum limit for the number of read-only column storage nodes. Range: 0~7.
|
|
7614
|
+
*
|
|
7615
|
+
* @example
|
|
7616
|
+
* 1
|
|
7617
|
+
*/
|
|
7350
7618
|
scaleApRoNumMin?: string;
|
|
7351
7619
|
/**
|
|
7352
7620
|
* @remarks
|
|
7353
|
-
*
|
|
7621
|
+
* Maximum scaling limit for a single node. Range: 1 PCU~32 PCU.
|
|
7354
7622
|
*
|
|
7355
7623
|
* @example
|
|
7356
7624
|
* 3
|
|
@@ -7358,7 +7626,7 @@ export declare class DescribeDBClusterServerlessConfResponseBody extends $tea.Mo
|
|
|
7358
7626
|
scaleMax?: string;
|
|
7359
7627
|
/**
|
|
7360
7628
|
* @remarks
|
|
7361
|
-
*
|
|
7629
|
+
* Minimum scaling limit for a single node. Range: 1 PCU~31 PCU.
|
|
7362
7630
|
*
|
|
7363
7631
|
* @example
|
|
7364
7632
|
* 1
|
|
@@ -7366,7 +7634,7 @@ export declare class DescribeDBClusterServerlessConfResponseBody extends $tea.Mo
|
|
|
7366
7634
|
scaleMin?: string;
|
|
7367
7635
|
/**
|
|
7368
7636
|
* @remarks
|
|
7369
|
-
*
|
|
7637
|
+
* Maximum scaling limit for the number of read-only nodes. Range: 0~15.
|
|
7370
7638
|
*
|
|
7371
7639
|
* @example
|
|
7372
7640
|
* 4
|
|
@@ -7374,7 +7642,7 @@ export declare class DescribeDBClusterServerlessConfResponseBody extends $tea.Mo
|
|
|
7374
7642
|
scaleRoNumMax?: string;
|
|
7375
7643
|
/**
|
|
7376
7644
|
* @remarks
|
|
7377
|
-
*
|
|
7645
|
+
* Minimum scaling limit for the number of read-only nodes. Range: 0~15.
|
|
7378
7646
|
*
|
|
7379
7647
|
* @example
|
|
7380
7648
|
* 2
|
|
@@ -7382,15 +7650,51 @@ export declare class DescribeDBClusterServerlessConfResponseBody extends $tea.Mo
|
|
|
7382
7650
|
scaleRoNumMin?: string;
|
|
7383
7651
|
/**
|
|
7384
7652
|
* @remarks
|
|
7385
|
-
*
|
|
7653
|
+
* Detection duration for idle shutdown. Range: 300~86,400. Unit: seconds. The detection duration must be a multiple of 300 seconds.
|
|
7386
7654
|
*
|
|
7387
7655
|
* @example
|
|
7388
7656
|
* 10
|
|
7389
7657
|
*/
|
|
7390
7658
|
secondsUntilAutoPause?: string;
|
|
7659
|
+
/**
|
|
7660
|
+
* @remarks
|
|
7661
|
+
* CPU upscale threshold.
|
|
7662
|
+
*
|
|
7663
|
+
* @example
|
|
7664
|
+
* 60
|
|
7665
|
+
*/
|
|
7391
7666
|
serverlessRuleCpuEnlargeThreshold?: string;
|
|
7667
|
+
/**
|
|
7668
|
+
* @remarks
|
|
7669
|
+
* CPU downscale threshold.
|
|
7670
|
+
*
|
|
7671
|
+
* @example
|
|
7672
|
+
* 30
|
|
7673
|
+
*/
|
|
7392
7674
|
serverlessRuleCpuShrinkThreshold?: string;
|
|
7675
|
+
/**
|
|
7676
|
+
* @remarks
|
|
7677
|
+
* Elasticity sensitivity. Values:
|
|
7678
|
+
*
|
|
7679
|
+
* - normal: Standard
|
|
7680
|
+
*
|
|
7681
|
+
* - flexible: Sensitive
|
|
7682
|
+
*
|
|
7683
|
+
* @example
|
|
7684
|
+
* normal
|
|
7685
|
+
*/
|
|
7393
7686
|
serverlessRuleMode?: string;
|
|
7687
|
+
/**
|
|
7688
|
+
* @remarks
|
|
7689
|
+
* Whether steady state is enabled. Values:
|
|
7690
|
+
*
|
|
7691
|
+
* 1: Enabled
|
|
7692
|
+
*
|
|
7693
|
+
* 0: Disabled
|
|
7694
|
+
*
|
|
7695
|
+
* @example
|
|
7696
|
+
* 1
|
|
7697
|
+
*/
|
|
7394
7698
|
switchs?: string;
|
|
7395
7699
|
traditionalScaleMaxThreshold?: string;
|
|
7396
7700
|
static names(): {
|
|
@@ -7487,6 +7791,7 @@ export declare class DescribeDBClusterTDEResponseBody extends $tea.Model {
|
|
|
7487
7791
|
* 2a4f4ac2-****-****-****-************
|
|
7488
7792
|
*/
|
|
7489
7793
|
encryptionKey?: string;
|
|
7794
|
+
encryptionKeyStatus?: string;
|
|
7490
7795
|
/**
|
|
7491
7796
|
* @remarks
|
|
7492
7797
|
* The ID of the request.
|
|
@@ -9619,6 +9924,8 @@ export declare class DescribeGlobalSecurityIPGroupRelationResponse extends $tea.
|
|
|
9619
9924
|
export declare class DescribeLicenseOrderDetailsRequest extends $tea.Model {
|
|
9620
9925
|
/**
|
|
9621
9926
|
* @remarks
|
|
9927
|
+
* The Alibaba Cloud order ID (or virtual order ID).
|
|
9928
|
+
*
|
|
9622
9929
|
* This parameter is required.
|
|
9623
9930
|
*
|
|
9624
9931
|
* @example
|
|
@@ -9641,71 +9948,119 @@ export declare class DescribeLicenseOrderDetailsRequest extends $tea.Model {
|
|
|
9641
9948
|
}
|
|
9642
9949
|
export declare class DescribeLicenseOrderDetailsResponseBody extends $tea.Model {
|
|
9643
9950
|
/**
|
|
9951
|
+
* @remarks
|
|
9952
|
+
* The number of generated activation codes.
|
|
9953
|
+
*
|
|
9644
9954
|
* @example
|
|
9645
9955
|
* 2
|
|
9646
9956
|
*/
|
|
9647
9957
|
activatedCodeCount?: number;
|
|
9648
9958
|
/**
|
|
9959
|
+
* @remarks
|
|
9960
|
+
* The maximum number of activation codes that you can apply for.
|
|
9961
|
+
*
|
|
9649
9962
|
* @example
|
|
9650
9963
|
* 8
|
|
9651
9964
|
*/
|
|
9652
9965
|
activationCodeQuota?: number;
|
|
9653
9966
|
/**
|
|
9967
|
+
* @remarks
|
|
9968
|
+
* The Alibaba Cloud order ID (including the virtual order ID).
|
|
9969
|
+
*
|
|
9654
9970
|
* @example
|
|
9655
9971
|
* 239618016570503
|
|
9656
9972
|
*/
|
|
9657
9973
|
aliyunOrderId?: string;
|
|
9658
9974
|
/**
|
|
9975
|
+
* @remarks
|
|
9976
|
+
* Indicates whether activation codes can be generated without the system identifier.
|
|
9977
|
+
*
|
|
9659
9978
|
* @example
|
|
9660
9979
|
* false
|
|
9661
9980
|
*/
|
|
9662
9981
|
allowEmptySystemIdentifier?: boolean;
|
|
9663
9982
|
/**
|
|
9983
|
+
* @remarks
|
|
9984
|
+
* The type of the engine. Valid values: PG, Oracle, and MySQL.
|
|
9985
|
+
*
|
|
9664
9986
|
* @example
|
|
9665
9987
|
* PG
|
|
9666
9988
|
*/
|
|
9667
9989
|
engine?: string;
|
|
9668
9990
|
/**
|
|
9991
|
+
* @remarks
|
|
9992
|
+
* The time when the order was created.
|
|
9993
|
+
*
|
|
9669
9994
|
* @example
|
|
9670
9995
|
* 2021-10-19 01:13:45
|
|
9671
9996
|
*/
|
|
9672
9997
|
gmtCreated?: string;
|
|
9673
9998
|
/**
|
|
9999
|
+
* @remarks
|
|
10000
|
+
* The time when the order was last updated.
|
|
10001
|
+
*
|
|
9674
10002
|
* @example
|
|
9675
10003
|
* 2024-10-16 16:46:20
|
|
9676
10004
|
*/
|
|
9677
10005
|
gmtModified?: string;
|
|
9678
10006
|
/**
|
|
10007
|
+
* @remarks
|
|
10008
|
+
* Indicates whether the order is a virtual order (virtual orders allow pre-generation of activation codes).
|
|
10009
|
+
*
|
|
9679
10010
|
* @example
|
|
9680
10011
|
* false
|
|
9681
10012
|
*/
|
|
9682
10013
|
isVirtualOrder?: boolean;
|
|
9683
10014
|
/**
|
|
10015
|
+
* @remarks
|
|
10016
|
+
* Indicates whether the virtual order is frozen (activation codes cannot be generated for a frozen virtual order).
|
|
10017
|
+
*
|
|
9684
10018
|
* @example
|
|
9685
10019
|
* false
|
|
9686
10020
|
*/
|
|
9687
10021
|
isVirtualOrderFrozen?: boolean;
|
|
9688
10022
|
/**
|
|
10023
|
+
* @remarks
|
|
10024
|
+
* The plan type. Valid values:
|
|
10025
|
+
*
|
|
10026
|
+
* * single_node_subscribe
|
|
10027
|
+
* * single_node_long_term
|
|
10028
|
+
* * primary_backup_subscribe
|
|
10029
|
+
* * primary_backup_long_term
|
|
10030
|
+
* * pre_generation_long_term
|
|
10031
|
+
*
|
|
9689
10032
|
* @example
|
|
9690
10033
|
* pre_generation_long_term
|
|
9691
10034
|
*/
|
|
9692
10035
|
packageType?: string;
|
|
9693
10036
|
/**
|
|
10037
|
+
* @remarks
|
|
10038
|
+
* The validity period of the plan, which is one year (common) or thirty years (long-term).
|
|
10039
|
+
*
|
|
9694
10040
|
* @example
|
|
9695
10041
|
* 1 year
|
|
9696
10042
|
*/
|
|
9697
10043
|
packageValidity?: string;
|
|
9698
10044
|
/**
|
|
10045
|
+
* @remarks
|
|
10046
|
+
* The plan validity period, one year (common) or thirty years (long-term).
|
|
10047
|
+
*
|
|
9699
10048
|
* @example
|
|
9700
10049
|
* aliyun_market
|
|
9701
10050
|
*/
|
|
9702
10051
|
purchaseChannel?: string;
|
|
9703
10052
|
/**
|
|
10053
|
+
* @remarks
|
|
10054
|
+
* The request ID.
|
|
10055
|
+
*
|
|
9704
10056
|
* @example
|
|
9705
10057
|
* 22C0ACF0-DD29-4B67-9190-B7A48C******
|
|
9706
10058
|
*/
|
|
9707
10059
|
requestId?: string;
|
|
9708
10060
|
/**
|
|
10061
|
+
* @remarks
|
|
10062
|
+
* The virtual order ID.
|
|
10063
|
+
*
|
|
9709
10064
|
* @example
|
|
9710
10065
|
* 239618016570503
|
|
9711
10066
|
*/
|
|
@@ -9790,6 +10145,9 @@ export declare class DescribeLicenseOrdersRequest extends $tea.Model {
|
|
|
9790
10145
|
/**
|
|
9791
10146
|
* @remarks
|
|
9792
10147
|
* Specifies whether to query only virtual orders.
|
|
10148
|
+
*
|
|
10149
|
+
* @example
|
|
10150
|
+
* true
|
|
9793
10151
|
*/
|
|
9794
10152
|
virtualOrder?: boolean;
|
|
9795
10153
|
static names(): {
|
|
@@ -11681,9 +12039,7 @@ export declare class DescribeUserEncryptionKeyListRequest extends $tea.Model {
|
|
|
11681
12039
|
* @remarks
|
|
11682
12040
|
* The ID of the cluster.
|
|
11683
12041
|
*
|
|
11684
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/98094.html) operation to query information about all clusters that are deployed in a specified region, such as the cluster ID.
|
|
11685
|
-
*
|
|
11686
|
-
* This parameter is required.
|
|
12042
|
+
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/98094.html) operation to query information about all clusters that are deployed in a specified region, such as the cluster ID.
|
|
11687
12043
|
*
|
|
11688
12044
|
* @example
|
|
11689
12045
|
* pc-************
|
|
@@ -12974,6 +13330,118 @@ export declare class ModifyAccountPasswordResponse extends $tea.Model {
|
|
|
12974
13330
|
[key: string]: any;
|
|
12975
13331
|
});
|
|
12976
13332
|
}
|
|
13333
|
+
export declare class ModifyActiveOperationTasksRequest extends $tea.Model {
|
|
13334
|
+
/**
|
|
13335
|
+
* @remarks
|
|
13336
|
+
* Specifies whether to immediately start scheduling. Valid values:
|
|
13337
|
+
*
|
|
13338
|
+
* * 0: No. This is the default value.
|
|
13339
|
+
* * 1: Yes.
|
|
13340
|
+
*
|
|
13341
|
+
* >
|
|
13342
|
+
*
|
|
13343
|
+
* * If you set this parameter to 0, you must specify the SwitchTime parameter.
|
|
13344
|
+
*
|
|
13345
|
+
* * If you set this parameter to 1, the SwitchTime parameter does not take effect. In this case, the start time of the event is set to the current time, and the system determines the switching time based on the start time. Scheduling is started immediately, which is a prerequisite for the switchover. Then, the switchover is performed. You can call the DescribeActiveOperationTasks operation and check the return value of the PrepareInterval parameter for the preparation time.
|
|
13346
|
+
*
|
|
13347
|
+
* @example
|
|
13348
|
+
* 0
|
|
13349
|
+
*/
|
|
13350
|
+
immediateStart?: number;
|
|
13351
|
+
ownerAccount?: string;
|
|
13352
|
+
ownerId?: number;
|
|
13353
|
+
/**
|
|
13354
|
+
* @remarks
|
|
13355
|
+
* The region ID.
|
|
13356
|
+
*
|
|
13357
|
+
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/98041.html) operation to query the region information about all clusters within a specified account.
|
|
13358
|
+
*
|
|
13359
|
+
* This parameter is required.
|
|
13360
|
+
*
|
|
13361
|
+
* @example
|
|
13362
|
+
* cn-beijing
|
|
13363
|
+
*/
|
|
13364
|
+
regionId?: string;
|
|
13365
|
+
resourceOwnerAccount?: string;
|
|
13366
|
+
resourceOwnerId?: number;
|
|
13367
|
+
securityToken?: string;
|
|
13368
|
+
/**
|
|
13369
|
+
* @remarks
|
|
13370
|
+
* The scheduled switching time that you want to specify. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
|
|
13371
|
+
*
|
|
13372
|
+
* >
|
|
13373
|
+
*
|
|
13374
|
+
* * The time that is specified by this parameter cannot be later than the latest execution time.
|
|
13375
|
+
*
|
|
13376
|
+
* * You can call the DescribeActiveOperationTasks operation and check the return value of the Deadline parameter for the latest execution time.
|
|
13377
|
+
*
|
|
13378
|
+
* @example
|
|
13379
|
+
* 2023-04-25T06:00:00Z
|
|
13380
|
+
*/
|
|
13381
|
+
switchTime?: string;
|
|
13382
|
+
/**
|
|
13383
|
+
* @remarks
|
|
13384
|
+
* The task IDs.
|
|
13385
|
+
*
|
|
13386
|
+
* This parameter is required.
|
|
13387
|
+
*
|
|
13388
|
+
* @example
|
|
13389
|
+
* 11111,22222
|
|
13390
|
+
*/
|
|
13391
|
+
taskIds?: string;
|
|
13392
|
+
static names(): {
|
|
13393
|
+
[key: string]: string;
|
|
13394
|
+
};
|
|
13395
|
+
static types(): {
|
|
13396
|
+
[key: string]: any;
|
|
13397
|
+
};
|
|
13398
|
+
constructor(map?: {
|
|
13399
|
+
[key: string]: any;
|
|
13400
|
+
});
|
|
13401
|
+
}
|
|
13402
|
+
export declare class ModifyActiveOperationTasksResponseBody extends $tea.Model {
|
|
13403
|
+
/**
|
|
13404
|
+
* @remarks
|
|
13405
|
+
* The request ID.
|
|
13406
|
+
*
|
|
13407
|
+
* @example
|
|
13408
|
+
* 42CD2EF5-D77E-5AD4-961B-159330D98286
|
|
13409
|
+
*/
|
|
13410
|
+
requestId?: string;
|
|
13411
|
+
/**
|
|
13412
|
+
* @remarks
|
|
13413
|
+
* The task IDs.
|
|
13414
|
+
*
|
|
13415
|
+
* @example
|
|
13416
|
+
* 11111,22222
|
|
13417
|
+
*/
|
|
13418
|
+
taskIds?: string;
|
|
13419
|
+
static names(): {
|
|
13420
|
+
[key: string]: string;
|
|
13421
|
+
};
|
|
13422
|
+
static types(): {
|
|
13423
|
+
[key: string]: any;
|
|
13424
|
+
};
|
|
13425
|
+
constructor(map?: {
|
|
13426
|
+
[key: string]: any;
|
|
13427
|
+
});
|
|
13428
|
+
}
|
|
13429
|
+
export declare class ModifyActiveOperationTasksResponse extends $tea.Model {
|
|
13430
|
+
headers?: {
|
|
13431
|
+
[key: string]: string;
|
|
13432
|
+
};
|
|
13433
|
+
statusCode?: number;
|
|
13434
|
+
body?: ModifyActiveOperationTasksResponseBody;
|
|
13435
|
+
static names(): {
|
|
13436
|
+
[key: string]: string;
|
|
13437
|
+
};
|
|
13438
|
+
static types(): {
|
|
13439
|
+
[key: string]: any;
|
|
13440
|
+
};
|
|
13441
|
+
constructor(map?: {
|
|
13442
|
+
[key: string]: any;
|
|
13443
|
+
});
|
|
13444
|
+
}
|
|
12977
13445
|
export declare class ModifyAutoRenewAttributeRequest extends $tea.Model {
|
|
12978
13446
|
/**
|
|
12979
13447
|
* @remarks
|
|
@@ -13653,7 +14121,7 @@ export declare class ModifyDBClusterAccessWhitelistResponse extends $tea.Model {
|
|
|
13653
14121
|
export declare class ModifyDBClusterAndNodesParametersRequest extends $tea.Model {
|
|
13654
14122
|
/**
|
|
13655
14123
|
* @remarks
|
|
13656
|
-
* The cluster
|
|
14124
|
+
* The ID of the cluster.
|
|
13657
14125
|
*
|
|
13658
14126
|
* This parameter is required.
|
|
13659
14127
|
*
|
|
@@ -13663,9 +14131,9 @@ export declare class ModifyDBClusterAndNodesParametersRequest extends $tea.Model
|
|
|
13663
14131
|
DBClusterId?: string;
|
|
13664
14132
|
/**
|
|
13665
14133
|
* @remarks
|
|
13666
|
-
* The
|
|
14134
|
+
* The IDs of nodes. You can specify this parameter, or leave this parameter empty. Separate multiple node IDs with commas (,).
|
|
13667
14135
|
*
|
|
13668
|
-
* >
|
|
14136
|
+
* > If you do not specify this parameter, only the cluster parameters are modified.
|
|
13669
14137
|
*
|
|
13670
14138
|
* @example
|
|
13671
14139
|
* pi-****************,pi-**********,
|
|
@@ -13686,7 +14154,7 @@ export declare class ModifyDBClusterAndNodesParametersRequest extends $tea.Model
|
|
|
13686
14154
|
ownerId?: number;
|
|
13687
14155
|
/**
|
|
13688
14156
|
* @remarks
|
|
13689
|
-
* The ID of the parameter template
|
|
14157
|
+
* The ID of the parameter template.
|
|
13690
14158
|
*
|
|
13691
14159
|
* @example
|
|
13692
14160
|
* pcpg-**************
|
|
@@ -13730,6 +14198,14 @@ export declare class ModifyDBClusterAndNodesParametersRequest extends $tea.Model
|
|
|
13730
14198
|
plannedStartTime?: string;
|
|
13731
14199
|
resourceOwnerAccount?: string;
|
|
13732
14200
|
resourceOwnerId?: number;
|
|
14201
|
+
/**
|
|
14202
|
+
* @remarks
|
|
14203
|
+
* The secondary clusters in the GDN to which the parameter settings are synchronized.
|
|
14204
|
+
*
|
|
14205
|
+
* @example
|
|
14206
|
+
* gdn-**********,gdn-**********
|
|
14207
|
+
*/
|
|
14208
|
+
standbyClusterIdListNeedToSync?: string;
|
|
13733
14209
|
static names(): {
|
|
13734
14210
|
[key: string]: string;
|
|
13735
14211
|
};
|
|
@@ -18713,6 +19189,143 @@ export declare class DescribeActivationCodesResponseBodyItems extends $tea.Model
|
|
|
18713
19189
|
[key: string]: any;
|
|
18714
19190
|
});
|
|
18715
19191
|
}
|
|
19192
|
+
export declare class DescribeActiveOperationTasksResponseBodyItems extends $tea.Model {
|
|
19193
|
+
/**
|
|
19194
|
+
* @example
|
|
19195
|
+
* 0
|
|
19196
|
+
*/
|
|
19197
|
+
allowCancel?: number;
|
|
19198
|
+
/**
|
|
19199
|
+
* @example
|
|
19200
|
+
* 0
|
|
19201
|
+
*/
|
|
19202
|
+
allowChange?: number;
|
|
19203
|
+
/**
|
|
19204
|
+
* @example
|
|
19205
|
+
* S0
|
|
19206
|
+
*/
|
|
19207
|
+
changeLevel?: string;
|
|
19208
|
+
/**
|
|
19209
|
+
* @example
|
|
19210
|
+
* System maintenance
|
|
19211
|
+
*/
|
|
19212
|
+
changeLevelEn?: string;
|
|
19213
|
+
changeLevelZh?: string;
|
|
19214
|
+
/**
|
|
19215
|
+
* @example
|
|
19216
|
+
* 2020-06-09T22:00:42Z
|
|
19217
|
+
*/
|
|
19218
|
+
createdTime?: string;
|
|
19219
|
+
/**
|
|
19220
|
+
* @example
|
|
19221
|
+
* cn-beijing-h
|
|
19222
|
+
*/
|
|
19223
|
+
currentAVZ?: string;
|
|
19224
|
+
/**
|
|
19225
|
+
* @example
|
|
19226
|
+
* pc-*****************
|
|
19227
|
+
*/
|
|
19228
|
+
DBClusterId?: string;
|
|
19229
|
+
DBNodeIds?: string[];
|
|
19230
|
+
/**
|
|
19231
|
+
* @example
|
|
19232
|
+
* MySQL
|
|
19233
|
+
*/
|
|
19234
|
+
DBType?: string;
|
|
19235
|
+
/**
|
|
19236
|
+
* @example
|
|
19237
|
+
* 8.0
|
|
19238
|
+
*/
|
|
19239
|
+
DBVersion?: string;
|
|
19240
|
+
/**
|
|
19241
|
+
* @example
|
|
19242
|
+
* 2020-06-11T15:59:59Z
|
|
19243
|
+
*/
|
|
19244
|
+
deadline?: string;
|
|
19245
|
+
/**
|
|
19246
|
+
* @example
|
|
19247
|
+
* TransientDisconnection
|
|
19248
|
+
*/
|
|
19249
|
+
impact?: string;
|
|
19250
|
+
/**
|
|
19251
|
+
* @example
|
|
19252
|
+
* Transient instance disconnection
|
|
19253
|
+
*/
|
|
19254
|
+
impactEn?: string;
|
|
19255
|
+
impactZh?: string;
|
|
19256
|
+
/**
|
|
19257
|
+
* @example
|
|
19258
|
+
* test
|
|
19259
|
+
*/
|
|
19260
|
+
insComment?: string;
|
|
19261
|
+
/**
|
|
19262
|
+
* @example
|
|
19263
|
+
* 2020-06-09T22:00:42Z
|
|
19264
|
+
*/
|
|
19265
|
+
modifiedTime?: string;
|
|
19266
|
+
/**
|
|
19267
|
+
* @example
|
|
19268
|
+
* 04:00:00
|
|
19269
|
+
*/
|
|
19270
|
+
prepareInterval?: string;
|
|
19271
|
+
/**
|
|
19272
|
+
* @example
|
|
19273
|
+
* cn-hangzhou
|
|
19274
|
+
*/
|
|
19275
|
+
region?: string;
|
|
19276
|
+
/**
|
|
19277
|
+
* @example
|
|
19278
|
+
* userCancel
|
|
19279
|
+
*/
|
|
19280
|
+
resultInfo?: string;
|
|
19281
|
+
/**
|
|
19282
|
+
* @example
|
|
19283
|
+
* 2023-05-19T02:48:17Z
|
|
19284
|
+
*/
|
|
19285
|
+
startTime?: string;
|
|
19286
|
+
/**
|
|
19287
|
+
* @example
|
|
19288
|
+
* 3
|
|
19289
|
+
*/
|
|
19290
|
+
status?: number;
|
|
19291
|
+
/**
|
|
19292
|
+
* @example
|
|
19293
|
+
* 2020-06-09T22:00:00Z
|
|
19294
|
+
*/
|
|
19295
|
+
switchTime?: string;
|
|
19296
|
+
/**
|
|
19297
|
+
* @example
|
|
19298
|
+
* 107202351
|
|
19299
|
+
*/
|
|
19300
|
+
taskId?: number;
|
|
19301
|
+
/**
|
|
19302
|
+
* @example
|
|
19303
|
+
* {
|
|
19304
|
+
* "Action": "UpgradeDBInstance"
|
|
19305
|
+
* }
|
|
19306
|
+
*/
|
|
19307
|
+
taskParams?: string;
|
|
19308
|
+
/**
|
|
19309
|
+
* @example
|
|
19310
|
+
* DatabaseSoftwareUpgrading
|
|
19311
|
+
*/
|
|
19312
|
+
taskType?: string;
|
|
19313
|
+
/**
|
|
19314
|
+
* @example
|
|
19315
|
+
* Minor version update
|
|
19316
|
+
*/
|
|
19317
|
+
taskTypeEn?: string;
|
|
19318
|
+
taskTypeZh?: string;
|
|
19319
|
+
static names(): {
|
|
19320
|
+
[key: string]: string;
|
|
19321
|
+
};
|
|
19322
|
+
static types(): {
|
|
19323
|
+
[key: string]: any;
|
|
19324
|
+
};
|
|
19325
|
+
constructor(map?: {
|
|
19326
|
+
[key: string]: any;
|
|
19327
|
+
});
|
|
19328
|
+
}
|
|
18716
19329
|
export declare class DescribeAutoRenewAttributeResponseBodyItemsAutoRenewAttribute extends $tea.Model {
|
|
18717
19330
|
/**
|
|
18718
19331
|
* @remarks
|
|
@@ -19067,8 +19680,7 @@ export declare class DescribeBackupsResponseBodyItemsBackup extends $tea.Model {
|
|
|
19067
19680
|
DBClusterId?: string;
|
|
19068
19681
|
/**
|
|
19069
19682
|
* @remarks
|
|
19070
|
-
* The expected expiration time of the backup set.
|
|
19071
|
-
* > This parameter is supported only for instances that are enabled with sparse backup.
|
|
19683
|
+
* The expected expiration time of the backup set (This parameter is supported only for clusters for which sparse backup is enabled).
|
|
19072
19684
|
*
|
|
19073
19685
|
* @example
|
|
19074
19686
|
* 2022-10-24T08:13:23Z
|
|
@@ -19191,6 +19803,13 @@ export declare class DescribeClassListResponseBodyItems extends $tea.Model {
|
|
|
19191
19803
|
* 8
|
|
19192
19804
|
*/
|
|
19193
19805
|
cpu?: string;
|
|
19806
|
+
/**
|
|
19807
|
+
* @remarks
|
|
19808
|
+
* The maximum ESSD storage capacity. Unit: TB.
|
|
19809
|
+
*
|
|
19810
|
+
* @example
|
|
19811
|
+
* 64
|
|
19812
|
+
*/
|
|
19194
19813
|
essdMaxStorageCapacity?: string;
|
|
19195
19814
|
/**
|
|
19196
19815
|
* @remarks
|
|
@@ -19248,6 +19867,13 @@ export declare class DescribeClassListResponseBodyItems extends $tea.Model {
|
|
|
19248
19867
|
* 1000000
|
|
19249
19868
|
*/
|
|
19250
19869
|
pl3MaxIOPS?: string;
|
|
19870
|
+
/**
|
|
19871
|
+
* @remarks
|
|
19872
|
+
* The maximum PSL4/PSL5 storage capacity. Unit: TB.
|
|
19873
|
+
*
|
|
19874
|
+
* @example
|
|
19875
|
+
* 500
|
|
19876
|
+
*/
|
|
19251
19877
|
polarStoreMaxStorageCapacity?: string;
|
|
19252
19878
|
/**
|
|
19253
19879
|
* @remarks
|
|
@@ -20115,6 +20741,12 @@ export declare class DescribeDBClusterMigrationResponseBodyRdsEndpointListAddres
|
|
|
20115
20741
|
*/
|
|
20116
20742
|
port?: string;
|
|
20117
20743
|
/**
|
|
20744
|
+
* @remarks
|
|
20745
|
+
* Indicates whether SSL encryption is enabled. Valid values:
|
|
20746
|
+
*
|
|
20747
|
+
* - **Enabled**
|
|
20748
|
+
* - **Disabled**
|
|
20749
|
+
*
|
|
20118
20750
|
* @example
|
|
20119
20751
|
* Enabled
|
|
20120
20752
|
*/
|
|
@@ -20152,6 +20784,9 @@ export declare class DescribeDBClusterMigrationResponseBodyRdsEndpointList exten
|
|
|
20152
20784
|
*/
|
|
20153
20785
|
addressItems?: DescribeDBClusterMigrationResponseBodyRdsEndpointListAddressItems[];
|
|
20154
20786
|
/**
|
|
20787
|
+
* @remarks
|
|
20788
|
+
* The instance type.
|
|
20789
|
+
*
|
|
20155
20790
|
* @example
|
|
20156
20791
|
* ReadOnly
|
|
20157
20792
|
* Maxscale
|
|
@@ -20159,11 +20794,20 @@ export declare class DescribeDBClusterMigrationResponseBodyRdsEndpointList exten
|
|
|
20159
20794
|
*/
|
|
20160
20795
|
custinsType?: string;
|
|
20161
20796
|
/**
|
|
20797
|
+
* @remarks
|
|
20798
|
+
* The ID of the endpoint.
|
|
20799
|
+
*
|
|
20162
20800
|
* @example
|
|
20163
20801
|
* rm-************-normal
|
|
20164
20802
|
*/
|
|
20165
20803
|
DBEndpointId?: string;
|
|
20166
20804
|
/**
|
|
20805
|
+
* @remarks
|
|
20806
|
+
* The type of the endpoint. Valid values:
|
|
20807
|
+
*
|
|
20808
|
+
* - **Normal**: the standard endpoint
|
|
20809
|
+
* - **ReadWriteSplitting**: the read/write splitting endpoint
|
|
20810
|
+
*
|
|
20167
20811
|
* @example
|
|
20168
20812
|
* Normal
|
|
20169
20813
|
*/
|
|
@@ -20556,6 +21200,7 @@ export declare class DescribeDBClusterSSLResponseBodyItems extends $tea.Model {
|
|
|
20556
21200
|
* pe-************
|
|
20557
21201
|
*/
|
|
20558
21202
|
DBEndpointId?: string;
|
|
21203
|
+
SSLAutoRotate?: string;
|
|
20559
21204
|
/**
|
|
20560
21205
|
* @remarks
|
|
20561
21206
|
* The SSL connection string.
|
|
@@ -24357,6 +25002,21 @@ export default class Client extends OpenApi {
|
|
|
24357
25002
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
24358
25003
|
[key: string]: string;
|
|
24359
25004
|
}, endpoint: string): string;
|
|
25005
|
+
/**
|
|
25006
|
+
* Cancels O\\&M events at a time.
|
|
25007
|
+
*
|
|
25008
|
+
* @param request - CancelActiveOperationTasksRequest
|
|
25009
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
25010
|
+
* @returns CancelActiveOperationTasksResponse
|
|
25011
|
+
*/
|
|
25012
|
+
cancelActiveOperationTasksWithOptions(request: CancelActiveOperationTasksRequest, runtime: $Util.RuntimeOptions): Promise<CancelActiveOperationTasksResponse>;
|
|
25013
|
+
/**
|
|
25014
|
+
* Cancels O\\&M events at a time.
|
|
25015
|
+
*
|
|
25016
|
+
* @param request - CancelActiveOperationTasksRequest
|
|
25017
|
+
* @returns CancelActiveOperationTasksResponse
|
|
25018
|
+
*/
|
|
25019
|
+
cancelActiveOperationTasks(request: CancelActiveOperationTasksRequest): Promise<CancelActiveOperationTasksResponse>;
|
|
24360
25020
|
/**
|
|
24361
25021
|
* Cancels scheduled tasks that are not yet started.
|
|
24362
25022
|
*
|
|
@@ -24545,7 +25205,7 @@ export default class Client extends OpenApi {
|
|
|
24545
25205
|
*/
|
|
24546
25206
|
createColdStorageInstance(request: CreateColdStorageInstanceRequest): Promise<CreateColdStorageInstanceResponse>;
|
|
24547
25207
|
/**
|
|
24548
|
-
*
|
|
25208
|
+
* CreateDBCluster.
|
|
24549
25209
|
*
|
|
24550
25210
|
* @param request - CreateDBClusterRequest
|
|
24551
25211
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -24553,7 +25213,7 @@ export default class Client extends OpenApi {
|
|
|
24553
25213
|
*/
|
|
24554
25214
|
createDBClusterWithOptions(request: CreateDBClusterRequest, runtime: $Util.RuntimeOptions): Promise<CreateDBClusterResponse>;
|
|
24555
25215
|
/**
|
|
24556
|
-
*
|
|
25216
|
+
* CreateDBCluster.
|
|
24557
25217
|
*
|
|
24558
25218
|
* @param request - CreateDBClusterRequest
|
|
24559
25219
|
* @returns CreateDBClusterResponse
|
|
@@ -25027,7 +25687,7 @@ export default class Client extends OpenApi {
|
|
|
25027
25687
|
*/
|
|
25028
25688
|
describeAccounts(request: DescribeAccountsRequest): Promise<DescribeAccountsResponse>;
|
|
25029
25689
|
/**
|
|
25030
|
-
*
|
|
25690
|
+
* Queries the details of an activation code.
|
|
25031
25691
|
*
|
|
25032
25692
|
* @param request - DescribeActivationCodeDetailsRequest
|
|
25033
25693
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -25035,7 +25695,7 @@ export default class Client extends OpenApi {
|
|
|
25035
25695
|
*/
|
|
25036
25696
|
describeActivationCodeDetailsWithOptions(request: DescribeActivationCodeDetailsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeActivationCodeDetailsResponse>;
|
|
25037
25697
|
/**
|
|
25038
|
-
*
|
|
25698
|
+
* Queries the details of an activation code.
|
|
25039
25699
|
*
|
|
25040
25700
|
* @param request - DescribeActivationCodeDetailsRequest
|
|
25041
25701
|
* @returns DescribeActivationCodeDetailsResponse
|
|
@@ -25056,6 +25716,21 @@ export default class Client extends OpenApi {
|
|
|
25056
25716
|
* @returns DescribeActivationCodesResponse
|
|
25057
25717
|
*/
|
|
25058
25718
|
describeActivationCodes(request: DescribeActivationCodesRequest): Promise<DescribeActivationCodesResponse>;
|
|
25719
|
+
/**
|
|
25720
|
+
* 用户侧查询运维任务
|
|
25721
|
+
*
|
|
25722
|
+
* @param request - DescribeActiveOperationTasksRequest
|
|
25723
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
25724
|
+
* @returns DescribeActiveOperationTasksResponse
|
|
25725
|
+
*/
|
|
25726
|
+
describeActiveOperationTasksWithOptions(request: DescribeActiveOperationTasksRequest, runtime: $Util.RuntimeOptions): Promise<DescribeActiveOperationTasksResponse>;
|
|
25727
|
+
/**
|
|
25728
|
+
* 用户侧查询运维任务
|
|
25729
|
+
*
|
|
25730
|
+
* @param request - DescribeActiveOperationTasksRequest
|
|
25731
|
+
* @returns DescribeActiveOperationTasksResponse
|
|
25732
|
+
*/
|
|
25733
|
+
describeActiveOperationTasks(request: DescribeActiveOperationTasksRequest): Promise<DescribeActiveOperationTasksResponse>;
|
|
25059
25734
|
/**
|
|
25060
25735
|
* Queries the auto-renewal attributes of a subscription PolarDB cluster.
|
|
25061
25736
|
*
|
|
@@ -25361,7 +26036,7 @@ export default class Client extends OpenApi {
|
|
|
25361
26036
|
*/
|
|
25362
26037
|
describeDBClusterSSL(request: DescribeDBClusterSSLRequest): Promise<DescribeDBClusterSSLResponse>;
|
|
25363
26038
|
/**
|
|
25364
|
-
*
|
|
26039
|
+
* Query serverless configuration.
|
|
25365
26040
|
*
|
|
25366
26041
|
* @param request - DescribeDBClusterServerlessConfRequest
|
|
25367
26042
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -25369,7 +26044,7 @@ export default class Client extends OpenApi {
|
|
|
25369
26044
|
*/
|
|
25370
26045
|
describeDBClusterServerlessConfWithOptions(request: DescribeDBClusterServerlessConfRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterServerlessConfResponse>;
|
|
25371
26046
|
/**
|
|
25372
|
-
*
|
|
26047
|
+
* Query serverless configuration.
|
|
25373
26048
|
*
|
|
25374
26049
|
* @param request - DescribeDBClusterServerlessConfRequest
|
|
25375
26050
|
* @returns DescribeDBClusterServerlessConfResponse
|
|
@@ -25664,7 +26339,7 @@ export default class Client extends OpenApi {
|
|
|
25664
26339
|
*/
|
|
25665
26340
|
describeGlobalSecurityIPGroupRelation(request: DescribeGlobalSecurityIPGroupRelationRequest): Promise<DescribeGlobalSecurityIPGroupRelationResponse>;
|
|
25666
26341
|
/**
|
|
25667
|
-
*
|
|
26342
|
+
* Queries the information of a license order.
|
|
25668
26343
|
*
|
|
25669
26344
|
* @param request - DescribeLicenseOrderDetailsRequest
|
|
25670
26345
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -25672,7 +26347,7 @@ export default class Client extends OpenApi {
|
|
|
25672
26347
|
*/
|
|
25673
26348
|
describeLicenseOrderDetailsWithOptions(request: DescribeLicenseOrderDetailsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLicenseOrderDetailsResponse>;
|
|
25674
26349
|
/**
|
|
25675
|
-
*
|
|
26350
|
+
* Queries the information of a license order.
|
|
25676
26351
|
*
|
|
25677
26352
|
* @param request - DescribeLicenseOrderDetailsRequest
|
|
25678
26353
|
* @returns DescribeLicenseOrderDetailsResponse
|
|
@@ -26135,6 +26810,21 @@ export default class Client extends OpenApi {
|
|
|
26135
26810
|
* @returns ModifyAccountPasswordResponse
|
|
26136
26811
|
*/
|
|
26137
26812
|
modifyAccountPassword(request: ModifyAccountPasswordRequest): Promise<ModifyAccountPasswordResponse>;
|
|
26813
|
+
/**
|
|
26814
|
+
* Modifies the switching time of scheduled O\\&M events for an instance.
|
|
26815
|
+
*
|
|
26816
|
+
* @param request - ModifyActiveOperationTasksRequest
|
|
26817
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
26818
|
+
* @returns ModifyActiveOperationTasksResponse
|
|
26819
|
+
*/
|
|
26820
|
+
modifyActiveOperationTasksWithOptions(request: ModifyActiveOperationTasksRequest, runtime: $Util.RuntimeOptions): Promise<ModifyActiveOperationTasksResponse>;
|
|
26821
|
+
/**
|
|
26822
|
+
* Modifies the switching time of scheduled O\\&M events for an instance.
|
|
26823
|
+
*
|
|
26824
|
+
* @param request - ModifyActiveOperationTasksRequest
|
|
26825
|
+
* @returns ModifyActiveOperationTasksResponse
|
|
26826
|
+
*/
|
|
26827
|
+
modifyActiveOperationTasks(request: ModifyActiveOperationTasksRequest): Promise<ModifyActiveOperationTasksResponse>;
|
|
26138
26828
|
/**
|
|
26139
26829
|
* Modifies the auto-renewal attributes of a subscription PolarDB cluster.
|
|
26140
26830
|
*
|
|
@@ -26532,7 +27222,7 @@ export default class Client extends OpenApi {
|
|
|
26532
27222
|
*/
|
|
26533
27223
|
modifyDBNodeClass(request: ModifyDBNodeClassRequest): Promise<ModifyDBNodeClassResponse>;
|
|
26534
27224
|
/**
|
|
26535
|
-
* Enables or disables the hot
|
|
27225
|
+
* Enables or disables the failover with hot replica feature for a node in a cluster.
|
|
26536
27226
|
*
|
|
26537
27227
|
* @param request - ModifyDBNodeHotReplicaModeRequest
|
|
26538
27228
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -26540,7 +27230,7 @@ export default class Client extends OpenApi {
|
|
|
26540
27230
|
*/
|
|
26541
27231
|
modifyDBNodeHotReplicaModeWithOptions(request: ModifyDBNodeHotReplicaModeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBNodeHotReplicaModeResponse>;
|
|
26542
27232
|
/**
|
|
26543
|
-
* Enables or disables the hot
|
|
27233
|
+
* Enables or disables the failover with hot replica feature for a node in a cluster.
|
|
26544
27234
|
*
|
|
26545
27235
|
* @param request - ModifyDBNodeHotReplicaModeRequest
|
|
26546
27236
|
* @returns ModifyDBNodeHotReplicaModeResponse
|