@alicloud/rds20140815 8.0.2 → 9.0.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 +404 -8
- package/dist/client.js +439 -36
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +673 -12
package/dist/client.d.ts
CHANGED
|
@@ -480,6 +480,48 @@ export declare class AllocateReadWriteSplittingConnectionResponse extends $tea.M
|
|
|
480
480
|
[key: string]: any;
|
|
481
481
|
});
|
|
482
482
|
}
|
|
483
|
+
export declare class AssociateEipAddressWithRCInstanceRequest extends $tea.Model {
|
|
484
|
+
allocationId?: string;
|
|
485
|
+
instanceId?: string;
|
|
486
|
+
regionId?: string;
|
|
487
|
+
static names(): {
|
|
488
|
+
[key: string]: string;
|
|
489
|
+
};
|
|
490
|
+
static types(): {
|
|
491
|
+
[key: string]: any;
|
|
492
|
+
};
|
|
493
|
+
constructor(map?: {
|
|
494
|
+
[key: string]: any;
|
|
495
|
+
});
|
|
496
|
+
}
|
|
497
|
+
export declare class AssociateEipAddressWithRCInstanceResponseBody extends $tea.Model {
|
|
498
|
+
requestId?: string;
|
|
499
|
+
static names(): {
|
|
500
|
+
[key: string]: string;
|
|
501
|
+
};
|
|
502
|
+
static types(): {
|
|
503
|
+
[key: string]: any;
|
|
504
|
+
};
|
|
505
|
+
constructor(map?: {
|
|
506
|
+
[key: string]: any;
|
|
507
|
+
});
|
|
508
|
+
}
|
|
509
|
+
export declare class AssociateEipAddressWithRCInstanceResponse extends $tea.Model {
|
|
510
|
+
headers?: {
|
|
511
|
+
[key: string]: string;
|
|
512
|
+
};
|
|
513
|
+
statusCode?: number;
|
|
514
|
+
body?: AssociateEipAddressWithRCInstanceResponseBody;
|
|
515
|
+
static names(): {
|
|
516
|
+
[key: string]: string;
|
|
517
|
+
};
|
|
518
|
+
static types(): {
|
|
519
|
+
[key: string]: any;
|
|
520
|
+
};
|
|
521
|
+
constructor(map?: {
|
|
522
|
+
[key: string]: any;
|
|
523
|
+
});
|
|
524
|
+
}
|
|
483
525
|
export declare class AttachRCDiskRequest extends $tea.Model {
|
|
484
526
|
/**
|
|
485
527
|
* @remarks
|
|
@@ -3709,6 +3751,19 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
3709
3751
|
* 0
|
|
3710
3752
|
*/
|
|
3711
3753
|
ioAccelerationEnabled?: string;
|
|
3754
|
+
/**
|
|
3755
|
+
* @remarks
|
|
3756
|
+
* Specifies whether to enable the write optimization feature.
|
|
3757
|
+
*
|
|
3758
|
+
* * **optimized**: enables the feature.
|
|
3759
|
+
* * **none**: disables the feature.
|
|
3760
|
+
*
|
|
3761
|
+
* > For more information about the write optimization feature, see [Write optimization](https://help.aliyun.com/document_detail/2858761.html).
|
|
3762
|
+
*
|
|
3763
|
+
* @example
|
|
3764
|
+
* optimized
|
|
3765
|
+
*/
|
|
3766
|
+
optimizedWrites?: string;
|
|
3712
3767
|
/**
|
|
3713
3768
|
* @remarks
|
|
3714
3769
|
* The billing method of the instance. Valid values:
|
|
@@ -4455,6 +4510,19 @@ export declare class CreateDBInstanceShrinkRequest extends $tea.Model {
|
|
|
4455
4510
|
* 0
|
|
4456
4511
|
*/
|
|
4457
4512
|
ioAccelerationEnabled?: string;
|
|
4513
|
+
/**
|
|
4514
|
+
* @remarks
|
|
4515
|
+
* Specifies whether to enable the write optimization feature.
|
|
4516
|
+
*
|
|
4517
|
+
* * **optimized**: enables the feature.
|
|
4518
|
+
* * **none**: disables the feature.
|
|
4519
|
+
*
|
|
4520
|
+
* > For more information about the write optimization feature, see [Write optimization](https://help.aliyun.com/document_detail/2858761.html).
|
|
4521
|
+
*
|
|
4522
|
+
* @example
|
|
4523
|
+
* optimized
|
|
4524
|
+
*/
|
|
4525
|
+
optimizedWrites?: string;
|
|
4458
4526
|
/**
|
|
4459
4527
|
* @remarks
|
|
4460
4528
|
* The billing method of the instance. Valid values:
|
|
@@ -8246,6 +8314,16 @@ export declare class CreateReadOnlyDBInstanceRequest extends $tea.Model {
|
|
|
8246
8314
|
* true
|
|
8247
8315
|
*/
|
|
8248
8316
|
autoRenew?: string;
|
|
8317
|
+
/**
|
|
8318
|
+
* @remarks
|
|
8319
|
+
* Specifies whether to use a coupon. Valid values:
|
|
8320
|
+
*
|
|
8321
|
+
* * **true**: uses a coupon.
|
|
8322
|
+
* * **false** (default): does not use a coupon.
|
|
8323
|
+
*
|
|
8324
|
+
* @example
|
|
8325
|
+
* true
|
|
8326
|
+
*/
|
|
8249
8327
|
autoUseCoupon?: boolean;
|
|
8250
8328
|
/**
|
|
8251
8329
|
* @remarks
|
|
@@ -8460,6 +8538,13 @@ export declare class CreateReadOnlyDBInstanceRequest extends $tea.Model {
|
|
|
8460
8538
|
* 172.16.XX.XX
|
|
8461
8539
|
*/
|
|
8462
8540
|
privateIpAddress?: string;
|
|
8541
|
+
/**
|
|
8542
|
+
* @remarks
|
|
8543
|
+
* The coupon code.
|
|
8544
|
+
*
|
|
8545
|
+
* @example
|
|
8546
|
+
* 717446260784
|
|
8547
|
+
*/
|
|
8463
8548
|
promotionCode?: string;
|
|
8464
8549
|
/**
|
|
8465
8550
|
* @remarks
|
|
@@ -19394,6 +19479,13 @@ export declare class DescribeDBProxyPerformanceRequest extends $tea.Model {
|
|
|
19394
19479
|
* DedicatedProxy
|
|
19395
19480
|
*/
|
|
19396
19481
|
DBProxyInstanceType?: string;
|
|
19482
|
+
/**
|
|
19483
|
+
* @remarks
|
|
19484
|
+
* Dimension.
|
|
19485
|
+
*
|
|
19486
|
+
* @example
|
|
19487
|
+
* service
|
|
19488
|
+
*/
|
|
19397
19489
|
dimension?: string;
|
|
19398
19490
|
/**
|
|
19399
19491
|
* @remarks
|
|
@@ -25461,12 +25553,11 @@ export declare class DescribeRCInstanceAttributeRequest extends $tea.Model {
|
|
|
25461
25553
|
* @remarks
|
|
25462
25554
|
* The instance ID.
|
|
25463
25555
|
*
|
|
25464
|
-
* This parameter is required.
|
|
25465
|
-
*
|
|
25466
25556
|
* @example
|
|
25467
25557
|
* rc-dh2jf9n6j4s14926****
|
|
25468
25558
|
*/
|
|
25469
25559
|
instanceId?: string;
|
|
25560
|
+
privateIpAddress?: string;
|
|
25470
25561
|
/**
|
|
25471
25562
|
* @remarks
|
|
25472
25563
|
* The region ID.
|
|
@@ -25781,6 +25872,7 @@ export declare class DescribeRCInstanceAttributeResponseBody extends $tea.Model
|
|
|
25781
25872
|
* Not-applicable
|
|
25782
25873
|
*/
|
|
25783
25874
|
stoppedMode?: string;
|
|
25875
|
+
tags?: DescribeRCInstanceAttributeResponseBodyTags;
|
|
25784
25876
|
/**
|
|
25785
25877
|
* @remarks
|
|
25786
25878
|
* The virtual LAN (VLAN) ID of the instance.
|
|
@@ -33018,6 +33110,26 @@ export declare class ModifyDBInstanceConfigRequest extends $tea.Model {
|
|
|
33018
33110
|
resourceGroupId?: string;
|
|
33019
33111
|
resourceOwnerAccount?: string;
|
|
33020
33112
|
resourceOwnerId?: number;
|
|
33113
|
+
/**
|
|
33114
|
+
* @remarks
|
|
33115
|
+
* The update time. Specify the time in the ISO 8601 standard in the *yyyy-MM-dd*T*HH:mm:ss*Z format. The time must be in UTC.
|
|
33116
|
+
*
|
|
33117
|
+
* @example
|
|
33118
|
+
* 2022-05-06T09:24:00Z
|
|
33119
|
+
*/
|
|
33120
|
+
switchTime?: string;
|
|
33121
|
+
/**
|
|
33122
|
+
* @remarks
|
|
33123
|
+
* The time at which the modification takes effect. Valid values:
|
|
33124
|
+
*
|
|
33125
|
+
* - **Immediate**: immediately modifies the parameter. This is the default value.
|
|
33126
|
+
* - **MaintainTime**: modifies the parameter during the maintenance window of the instance. You can call the ModifyDBInstanceMaintainTime operation to change the maintenance window.
|
|
33127
|
+
* - **ScheduleTime**: modifies the parameter at the point in time that you specify. If you specify this value, you must also specify **SwitchTime**.
|
|
33128
|
+
*
|
|
33129
|
+
* @example
|
|
33130
|
+
* Immediate
|
|
33131
|
+
*/
|
|
33132
|
+
switchTimeMode?: string;
|
|
33021
33133
|
static names(): {
|
|
33022
33134
|
[key: string]: string;
|
|
33023
33135
|
};
|
|
@@ -34902,6 +35014,19 @@ export declare class ModifyDBInstanceSpecRequest extends $tea.Model {
|
|
|
34902
35014
|
* None
|
|
34903
35015
|
*/
|
|
34904
35016
|
ioAccelerationEnabled?: string;
|
|
35017
|
+
/**
|
|
35018
|
+
* @remarks
|
|
35019
|
+
* Specifies whether to enable the write optimization feature.
|
|
35020
|
+
*
|
|
35021
|
+
* * **optimized**: enables the feature.
|
|
35022
|
+
* * **none**: disables the feature.
|
|
35023
|
+
*
|
|
35024
|
+
* > For more information about the write optimization feature, see [Write optimization](https://help.aliyun.com/document_detail/2858761.html).
|
|
35025
|
+
*
|
|
35026
|
+
* @example
|
|
35027
|
+
* optimized
|
|
35028
|
+
*/
|
|
35029
|
+
optimizedWrites?: string;
|
|
34905
35030
|
ownerAccount?: string;
|
|
34906
35031
|
ownerId?: number;
|
|
34907
35032
|
/**
|
|
@@ -34916,6 +35041,13 @@ export declare class ModifyDBInstanceSpecRequest extends $tea.Model {
|
|
|
34916
35041
|
* Postpaid
|
|
34917
35042
|
*/
|
|
34918
35043
|
payType?: string;
|
|
35044
|
+
/**
|
|
35045
|
+
* @remarks
|
|
35046
|
+
* The coupon code.
|
|
35047
|
+
*
|
|
35048
|
+
* @example
|
|
35049
|
+
* 723298850895
|
|
35050
|
+
*/
|
|
34919
35051
|
promotionCode?: string;
|
|
34920
35052
|
/**
|
|
34921
35053
|
* @remarks
|
|
@@ -35208,6 +35340,19 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $tea.Model {
|
|
|
35208
35340
|
* None
|
|
35209
35341
|
*/
|
|
35210
35342
|
ioAccelerationEnabled?: string;
|
|
35343
|
+
/**
|
|
35344
|
+
* @remarks
|
|
35345
|
+
* Specifies whether to enable the write optimization feature.
|
|
35346
|
+
*
|
|
35347
|
+
* * **optimized**: enables the feature.
|
|
35348
|
+
* * **none**: disables the feature.
|
|
35349
|
+
*
|
|
35350
|
+
* > For more information about the write optimization feature, see [Write optimization](https://help.aliyun.com/document_detail/2858761.html).
|
|
35351
|
+
*
|
|
35352
|
+
* @example
|
|
35353
|
+
* optimized
|
|
35354
|
+
*/
|
|
35355
|
+
optimizedWrites?: string;
|
|
35211
35356
|
ownerAccount?: string;
|
|
35212
35357
|
ownerId?: number;
|
|
35213
35358
|
/**
|
|
@@ -35222,6 +35367,13 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $tea.Model {
|
|
|
35222
35367
|
* Postpaid
|
|
35223
35368
|
*/
|
|
35224
35369
|
payType?: string;
|
|
35370
|
+
/**
|
|
35371
|
+
* @remarks
|
|
35372
|
+
* The coupon code.
|
|
35373
|
+
*
|
|
35374
|
+
* @example
|
|
35375
|
+
* 723298850895
|
|
35376
|
+
*/
|
|
35225
35377
|
promotionCode?: string;
|
|
35226
35378
|
/**
|
|
35227
35379
|
* @remarks
|
|
@@ -36186,6 +36338,13 @@ export declare class ModifyDBProxyEndpointRequest extends $tea.Model {
|
|
|
36186
36338
|
* test-proxy
|
|
36187
36339
|
*/
|
|
36188
36340
|
dbEndpointAliases?: string;
|
|
36341
|
+
/**
|
|
36342
|
+
* @remarks
|
|
36343
|
+
* The minimum number of reserved instances.
|
|
36344
|
+
*
|
|
36345
|
+
* @example
|
|
36346
|
+
* 2
|
|
36347
|
+
*/
|
|
36189
36348
|
dbEndpointMinSlaveCount?: string;
|
|
36190
36349
|
/**
|
|
36191
36350
|
* @remarks
|
|
@@ -36261,9 +36420,13 @@ export declare class ModifyDBProxyEndpointRequest extends $tea.Model {
|
|
|
36261
36420
|
readOnlyInstanceDistributionType?: string;
|
|
36262
36421
|
/**
|
|
36263
36422
|
* @remarks
|
|
36264
|
-
* The latency threshold that is allowed for read/write splitting. If the latency on a read-only instance exceeds the threshold that you specified, the system no longer forwards read requests to the read-only instance.
|
|
36423
|
+
* The maximum latency threshold that is allowed for read/write splitting. If the latency on a read-only instance exceeds the threshold that you specified, the system no longer forwards read requests to the read-only instance. If you do not specify this parameter, the original value of this parameter is retained. Valid values: **0** to **3600**.
|
|
36424
|
+
*
|
|
36425
|
+
* >
|
|
36265
36426
|
*
|
|
36266
|
-
*
|
|
36427
|
+
* * You must specify this parameter only when read/write splitting is enabled.
|
|
36428
|
+
*
|
|
36429
|
+
* * If the database proxy endpoint has the read and write attributes, the default value of this parameter is **30** and read/write splitting is supported. If the database proxy endpoint has the read-only attribute, the default value of this parameter is **-1** and read/write splitting is not supported. Unit: seconds.
|
|
36267
36430
|
*
|
|
36268
36431
|
* @example
|
|
36269
36432
|
* 30
|
|
@@ -38876,6 +39039,14 @@ export declare class ModifyResourceGroupRequest extends $tea.Model {
|
|
|
38876
39039
|
resourceGroupId?: string;
|
|
38877
39040
|
resourceOwnerAccount?: string;
|
|
38878
39041
|
resourceOwnerId?: number;
|
|
39042
|
+
/**
|
|
39043
|
+
* @remarks
|
|
39044
|
+
* The resource type.
|
|
39045
|
+
*
|
|
39046
|
+
* @example
|
|
39047
|
+
* Instance
|
|
39048
|
+
*/
|
|
39049
|
+
resourceType?: string;
|
|
38879
39050
|
static names(): {
|
|
38880
39051
|
[key: string]: string;
|
|
38881
39052
|
};
|
|
@@ -41102,6 +41273,16 @@ export declare class RenewInstanceRequest extends $tea.Model {
|
|
|
41102
41273
|
* true
|
|
41103
41274
|
*/
|
|
41104
41275
|
autoRenew?: string;
|
|
41276
|
+
/**
|
|
41277
|
+
* @remarks
|
|
41278
|
+
* Specifies whether to use a coupon. Valid values:
|
|
41279
|
+
*
|
|
41280
|
+
* * **true**: uses a coupon.
|
|
41281
|
+
* * **false** (default): does not use a coupon.
|
|
41282
|
+
*
|
|
41283
|
+
* @example
|
|
41284
|
+
* true
|
|
41285
|
+
*/
|
|
41105
41286
|
autoUseCoupon?: boolean;
|
|
41106
41287
|
/**
|
|
41107
41288
|
* @remarks
|
|
@@ -41139,6 +41320,13 @@ export declare class RenewInstanceRequest extends $tea.Model {
|
|
|
41139
41320
|
* 12
|
|
41140
41321
|
*/
|
|
41141
41322
|
period?: number;
|
|
41323
|
+
/**
|
|
41324
|
+
* @remarks
|
|
41325
|
+
* The coupon code.
|
|
41326
|
+
*
|
|
41327
|
+
* @example
|
|
41328
|
+
* 726702810223
|
|
41329
|
+
*/
|
|
41142
41330
|
promotionCode?: string;
|
|
41143
41331
|
resourceOwnerAccount?: string;
|
|
41144
41332
|
resourceOwnerId?: number;
|
|
@@ -43313,6 +43501,48 @@ export declare class SyncRCKeyPairResponse extends $tea.Model {
|
|
|
43313
43501
|
[key: string]: any;
|
|
43314
43502
|
});
|
|
43315
43503
|
}
|
|
43504
|
+
export declare class SyncRCSecurityGroupRequest extends $tea.Model {
|
|
43505
|
+
instanceId?: string;
|
|
43506
|
+
regionId?: string;
|
|
43507
|
+
securityGroupId?: string;
|
|
43508
|
+
static names(): {
|
|
43509
|
+
[key: string]: string;
|
|
43510
|
+
};
|
|
43511
|
+
static types(): {
|
|
43512
|
+
[key: string]: any;
|
|
43513
|
+
};
|
|
43514
|
+
constructor(map?: {
|
|
43515
|
+
[key: string]: any;
|
|
43516
|
+
});
|
|
43517
|
+
}
|
|
43518
|
+
export declare class SyncRCSecurityGroupResponseBody extends $tea.Model {
|
|
43519
|
+
requestId?: string;
|
|
43520
|
+
static names(): {
|
|
43521
|
+
[key: string]: string;
|
|
43522
|
+
};
|
|
43523
|
+
static types(): {
|
|
43524
|
+
[key: string]: any;
|
|
43525
|
+
};
|
|
43526
|
+
constructor(map?: {
|
|
43527
|
+
[key: string]: any;
|
|
43528
|
+
});
|
|
43529
|
+
}
|
|
43530
|
+
export declare class SyncRCSecurityGroupResponse extends $tea.Model {
|
|
43531
|
+
headers?: {
|
|
43532
|
+
[key: string]: string;
|
|
43533
|
+
};
|
|
43534
|
+
statusCode?: number;
|
|
43535
|
+
body?: SyncRCSecurityGroupResponseBody;
|
|
43536
|
+
static names(): {
|
|
43537
|
+
[key: string]: string;
|
|
43538
|
+
};
|
|
43539
|
+
static types(): {
|
|
43540
|
+
[key: string]: any;
|
|
43541
|
+
};
|
|
43542
|
+
constructor(map?: {
|
|
43543
|
+
[key: string]: any;
|
|
43544
|
+
});
|
|
43545
|
+
}
|
|
43316
43546
|
export declare class TagResourcesRequest extends $tea.Model {
|
|
43317
43547
|
ownerId?: number;
|
|
43318
43548
|
/**
|
|
@@ -43481,6 +43711,16 @@ export declare class TransformDBInstancePayTypeRequest extends $tea.Model {
|
|
|
43481
43711
|
* true
|
|
43482
43712
|
*/
|
|
43483
43713
|
autoRenew?: string;
|
|
43714
|
+
/**
|
|
43715
|
+
* @remarks
|
|
43716
|
+
* Specifies whether to use vouchers to offset fees. Valid values:
|
|
43717
|
+
*
|
|
43718
|
+
* * **true**
|
|
43719
|
+
* * **false** (default)
|
|
43720
|
+
*
|
|
43721
|
+
* @example
|
|
43722
|
+
* true
|
|
43723
|
+
*/
|
|
43484
43724
|
autoUseCoupon?: boolean;
|
|
43485
43725
|
/**
|
|
43486
43726
|
* @remarks
|
|
@@ -43536,6 +43776,13 @@ export declare class TransformDBInstancePayTypeRequest extends $tea.Model {
|
|
|
43536
43776
|
* Month
|
|
43537
43777
|
*/
|
|
43538
43778
|
period?: string;
|
|
43779
|
+
/**
|
|
43780
|
+
* @remarks
|
|
43781
|
+
* The coupon code.
|
|
43782
|
+
*
|
|
43783
|
+
* @example
|
|
43784
|
+
* 726702810223
|
|
43785
|
+
*/
|
|
43539
43786
|
promotionCode?: string;
|
|
43540
43787
|
resourceOwnerAccount?: string;
|
|
43541
43788
|
resourceOwnerId?: number;
|
|
@@ -43634,6 +43881,48 @@ export declare class TransformDBInstancePayTypeResponse extends $tea.Model {
|
|
|
43634
43881
|
[key: string]: any;
|
|
43635
43882
|
});
|
|
43636
43883
|
}
|
|
43884
|
+
export declare class UnassociateEipAddressWithRCInstanceRequest extends $tea.Model {
|
|
43885
|
+
allocationId?: string;
|
|
43886
|
+
instanceId?: string;
|
|
43887
|
+
regionId?: string;
|
|
43888
|
+
static names(): {
|
|
43889
|
+
[key: string]: string;
|
|
43890
|
+
};
|
|
43891
|
+
static types(): {
|
|
43892
|
+
[key: string]: any;
|
|
43893
|
+
};
|
|
43894
|
+
constructor(map?: {
|
|
43895
|
+
[key: string]: any;
|
|
43896
|
+
});
|
|
43897
|
+
}
|
|
43898
|
+
export declare class UnassociateEipAddressWithRCInstanceResponseBody extends $tea.Model {
|
|
43899
|
+
requestId?: string;
|
|
43900
|
+
static names(): {
|
|
43901
|
+
[key: string]: string;
|
|
43902
|
+
};
|
|
43903
|
+
static types(): {
|
|
43904
|
+
[key: string]: any;
|
|
43905
|
+
};
|
|
43906
|
+
constructor(map?: {
|
|
43907
|
+
[key: string]: any;
|
|
43908
|
+
});
|
|
43909
|
+
}
|
|
43910
|
+
export declare class UnassociateEipAddressWithRCInstanceResponse extends $tea.Model {
|
|
43911
|
+
headers?: {
|
|
43912
|
+
[key: string]: string;
|
|
43913
|
+
};
|
|
43914
|
+
statusCode?: number;
|
|
43915
|
+
body?: UnassociateEipAddressWithRCInstanceResponseBody;
|
|
43916
|
+
static names(): {
|
|
43917
|
+
[key: string]: string;
|
|
43918
|
+
};
|
|
43919
|
+
static types(): {
|
|
43920
|
+
[key: string]: any;
|
|
43921
|
+
};
|
|
43922
|
+
constructor(map?: {
|
|
43923
|
+
[key: string]: any;
|
|
43924
|
+
});
|
|
43925
|
+
}
|
|
43637
43926
|
export declare class UnlockAccountRequest extends $tea.Model {
|
|
43638
43927
|
/**
|
|
43639
43928
|
* @remarks
|
|
@@ -49210,6 +49499,18 @@ export declare class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttri
|
|
|
49210
49499
|
* true
|
|
49211
49500
|
*/
|
|
49212
49501
|
multipleTempUpgrade?: boolean;
|
|
49502
|
+
/**
|
|
49503
|
+
* @remarks
|
|
49504
|
+
* OptimizedWritesInfo contains two fields:
|
|
49505
|
+
*
|
|
49506
|
+
* - optimized_writes: Whether write optimization is enabled for the current instance.
|
|
49507
|
+
*
|
|
49508
|
+
* - init_optimized_writes: Whether write optimization can be enabled for the instance. Some instances do not display the write optimization switch in the console because init_optimized_writes is false.
|
|
49509
|
+
*
|
|
49510
|
+
* @example
|
|
49511
|
+
* {"optimized_writes":true,"init_optimized_writes":true}
|
|
49512
|
+
*/
|
|
49513
|
+
optimizedWritesInfo?: string;
|
|
49213
49514
|
/**
|
|
49214
49515
|
* @remarks
|
|
49215
49516
|
* Indicates whether PgBouncer is enabled.
|
|
@@ -52668,6 +52969,13 @@ export declare class DescribeDBProxyPerformanceResponseBodyPerformanceKeysPerfor
|
|
|
52668
52969
|
* cpu_ratio
|
|
52669
52970
|
*/
|
|
52670
52971
|
key?: string;
|
|
52972
|
+
/**
|
|
52973
|
+
* @remarks
|
|
52974
|
+
* The service dimension.
|
|
52975
|
+
*
|
|
52976
|
+
* @example
|
|
52977
|
+
* reserve_3
|
|
52978
|
+
*/
|
|
52671
52979
|
service?: string;
|
|
52672
52980
|
/**
|
|
52673
52981
|
* @remarks
|
|
@@ -57309,7 +57617,7 @@ export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymen
|
|
|
57309
57617
|
[key: string]: any;
|
|
57310
57618
|
});
|
|
57311
57619
|
}
|
|
57312
|
-
export declare class
|
|
57620
|
+
export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSetTagsTag extends $tea.Model {
|
|
57313
57621
|
resourceId?: string;
|
|
57314
57622
|
resourceType?: string;
|
|
57315
57623
|
tagKey?: string;
|
|
@@ -57324,8 +57632,8 @@ export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymen
|
|
|
57324
57632
|
[key: string]: any;
|
|
57325
57633
|
});
|
|
57326
57634
|
}
|
|
57327
|
-
export declare class
|
|
57328
|
-
|
|
57635
|
+
export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSetTags extends $tea.Model {
|
|
57636
|
+
tag?: DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSetTagsTag[];
|
|
57329
57637
|
static names(): {
|
|
57330
57638
|
[key: string]: string;
|
|
57331
57639
|
};
|
|
@@ -57429,7 +57737,7 @@ export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymen
|
|
|
57429
57737
|
* LooseDispersion
|
|
57430
57738
|
*/
|
|
57431
57739
|
strategy?: string;
|
|
57432
|
-
|
|
57740
|
+
tags?: DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSetTags;
|
|
57433
57741
|
static names(): {
|
|
57434
57742
|
[key: string]: string;
|
|
57435
57743
|
};
|
|
@@ -58053,6 +58361,33 @@ export declare class DescribeRCInstanceAttributeResponseBodySecurityGroupIds ext
|
|
|
58053
58361
|
[key: string]: any;
|
|
58054
58362
|
});
|
|
58055
58363
|
}
|
|
58364
|
+
export declare class DescribeRCInstanceAttributeResponseBodyTagsTag extends $tea.Model {
|
|
58365
|
+
resourceId?: string;
|
|
58366
|
+
resourceType?: string;
|
|
58367
|
+
tagKey?: string;
|
|
58368
|
+
tagValue?: string;
|
|
58369
|
+
static names(): {
|
|
58370
|
+
[key: string]: string;
|
|
58371
|
+
};
|
|
58372
|
+
static types(): {
|
|
58373
|
+
[key: string]: any;
|
|
58374
|
+
};
|
|
58375
|
+
constructor(map?: {
|
|
58376
|
+
[key: string]: any;
|
|
58377
|
+
});
|
|
58378
|
+
}
|
|
58379
|
+
export declare class DescribeRCInstanceAttributeResponseBodyTags extends $tea.Model {
|
|
58380
|
+
tag?: DescribeRCInstanceAttributeResponseBodyTagsTag[];
|
|
58381
|
+
static names(): {
|
|
58382
|
+
[key: string]: string;
|
|
58383
|
+
};
|
|
58384
|
+
static types(): {
|
|
58385
|
+
[key: string]: any;
|
|
58386
|
+
};
|
|
58387
|
+
constructor(map?: {
|
|
58388
|
+
[key: string]: any;
|
|
58389
|
+
});
|
|
58390
|
+
}
|
|
58056
58391
|
export declare class DescribeRCInstanceAttributeResponseBodyVpcAttributesPrivateIpAddress extends $tea.Model {
|
|
58057
58392
|
ipAddress?: string[];
|
|
58058
58393
|
static names(): {
|
|
@@ -58120,6 +58455,21 @@ export declare class DescribeRCInstancesResponseBodyRCInstancesTagResources exte
|
|
|
58120
58455
|
[key: string]: any;
|
|
58121
58456
|
});
|
|
58122
58457
|
}
|
|
58458
|
+
export declare class DescribeRCInstancesResponseBodyRCInstancesTags extends $tea.Model {
|
|
58459
|
+
resourceId?: string;
|
|
58460
|
+
resourceType?: string;
|
|
58461
|
+
tagKey?: string;
|
|
58462
|
+
tagValue?: string;
|
|
58463
|
+
static names(): {
|
|
58464
|
+
[key: string]: string;
|
|
58465
|
+
};
|
|
58466
|
+
static types(): {
|
|
58467
|
+
[key: string]: any;
|
|
58468
|
+
};
|
|
58469
|
+
constructor(map?: {
|
|
58470
|
+
[key: string]: any;
|
|
58471
|
+
});
|
|
58472
|
+
}
|
|
58123
58473
|
export declare class DescribeRCInstancesResponseBodyRCInstances extends $tea.Model {
|
|
58124
58474
|
/**
|
|
58125
58475
|
* @remarks
|
|
@@ -58205,6 +58555,7 @@ export declare class DescribeRCInstancesResponseBodyRCInstances extends $tea.Mod
|
|
|
58205
58555
|
*/
|
|
58206
58556
|
status?: string;
|
|
58207
58557
|
tagResources?: DescribeRCInstancesResponseBodyRCInstancesTagResources[];
|
|
58558
|
+
tags?: DescribeRCInstancesResponseBodyRCInstancesTags[];
|
|
58208
58559
|
/**
|
|
58209
58560
|
* @remarks
|
|
58210
58561
|
* The VPC ID.
|
|
@@ -62564,6 +62915,21 @@ export default class Client extends OpenApi {
|
|
|
62564
62915
|
* @returns AllocateReadWriteSplittingConnectionResponse
|
|
62565
62916
|
*/
|
|
62566
62917
|
allocateReadWriteSplittingConnection(request: AllocateReadWriteSplittingConnectionRequest): Promise<AllocateReadWriteSplittingConnectionResponse>;
|
|
62918
|
+
/**
|
|
62919
|
+
* 绑定弹性网卡到RDS Custom实例
|
|
62920
|
+
*
|
|
62921
|
+
* @param request - AssociateEipAddressWithRCInstanceRequest
|
|
62922
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
62923
|
+
* @returns AssociateEipAddressWithRCInstanceResponse
|
|
62924
|
+
*/
|
|
62925
|
+
associateEipAddressWithRCInstanceWithOptions(request: AssociateEipAddressWithRCInstanceRequest, runtime: $Util.RuntimeOptions): Promise<AssociateEipAddressWithRCInstanceResponse>;
|
|
62926
|
+
/**
|
|
62927
|
+
* 绑定弹性网卡到RDS Custom实例
|
|
62928
|
+
*
|
|
62929
|
+
* @param request - AssociateEipAddressWithRCInstanceRequest
|
|
62930
|
+
* @returns AssociateEipAddressWithRCInstanceResponse
|
|
62931
|
+
*/
|
|
62932
|
+
associateEipAddressWithRCInstance(request: AssociateEipAddressWithRCInstanceRequest): Promise<AssociateEipAddressWithRCInstanceResponse>;
|
|
62567
62933
|
/**
|
|
62568
62934
|
* 挂载RC云盘
|
|
62569
62935
|
*
|
|
@@ -71517,6 +71883,21 @@ export default class Client extends OpenApi {
|
|
|
71517
71883
|
* @returns SyncRCKeyPairResponse
|
|
71518
71884
|
*/
|
|
71519
71885
|
syncRCKeyPair(request: SyncRCKeyPairRequest): Promise<SyncRCKeyPairResponse>;
|
|
71886
|
+
/**
|
|
71887
|
+
* 同步RDS Custom的安全组
|
|
71888
|
+
*
|
|
71889
|
+
* @param request - SyncRCSecurityGroupRequest
|
|
71890
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
71891
|
+
* @returns SyncRCSecurityGroupResponse
|
|
71892
|
+
*/
|
|
71893
|
+
syncRCSecurityGroupWithOptions(request: SyncRCSecurityGroupRequest, runtime: $Util.RuntimeOptions): Promise<SyncRCSecurityGroupResponse>;
|
|
71894
|
+
/**
|
|
71895
|
+
* 同步RDS Custom的安全组
|
|
71896
|
+
*
|
|
71897
|
+
* @param request - SyncRCSecurityGroupRequest
|
|
71898
|
+
* @returns SyncRCSecurityGroupResponse
|
|
71899
|
+
*/
|
|
71900
|
+
syncRCSecurityGroup(request: SyncRCSecurityGroupRequest): Promise<SyncRCSecurityGroupResponse>;
|
|
71520
71901
|
/**
|
|
71521
71902
|
* Creates and adds tags to one or more instances.
|
|
71522
71903
|
*
|
|
@@ -71622,6 +72003,21 @@ export default class Client extends OpenApi {
|
|
|
71622
72003
|
* @returns TransformDBInstancePayTypeResponse
|
|
71623
72004
|
*/
|
|
71624
72005
|
transformDBInstancePayType(request: TransformDBInstancePayTypeRequest): Promise<TransformDBInstancePayTypeResponse>;
|
|
72006
|
+
/**
|
|
72007
|
+
* 解绑RDS Custom实例的弹性公网
|
|
72008
|
+
*
|
|
72009
|
+
* @param request - UnassociateEipAddressWithRCInstanceRequest
|
|
72010
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
72011
|
+
* @returns UnassociateEipAddressWithRCInstanceResponse
|
|
72012
|
+
*/
|
|
72013
|
+
unassociateEipAddressWithRCInstanceWithOptions(request: UnassociateEipAddressWithRCInstanceRequest, runtime: $Util.RuntimeOptions): Promise<UnassociateEipAddressWithRCInstanceResponse>;
|
|
72014
|
+
/**
|
|
72015
|
+
* 解绑RDS Custom实例的弹性公网
|
|
72016
|
+
*
|
|
72017
|
+
* @param request - UnassociateEipAddressWithRCInstanceRequest
|
|
72018
|
+
* @returns UnassociateEipAddressWithRCInstanceResponse
|
|
72019
|
+
*/
|
|
72020
|
+
unassociateEipAddressWithRCInstance(request: UnassociateEipAddressWithRCInstanceRequest): Promise<UnassociateEipAddressWithRCInstanceResponse>;
|
|
71625
72021
|
/**
|
|
71626
72022
|
* Unlocks a database account of an ApsaraDB RDS for PostgreSQL instance.
|
|
71627
72023
|
*
|