@alicloud/rds20140815 7.3.0 → 8.0.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 +3312 -305
- package/dist/client.js +2720 -314
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +5199 -572
package/dist/client.d.ts
CHANGED
|
@@ -480,6 +480,230 @@ export declare class AllocateReadWriteSplittingConnectionResponse extends $tea.M
|
|
|
480
480
|
[key: string]: any;
|
|
481
481
|
});
|
|
482
482
|
}
|
|
483
|
+
export declare class AttachRCDiskRequest extends $tea.Model {
|
|
484
|
+
/**
|
|
485
|
+
* @example
|
|
486
|
+
* false
|
|
487
|
+
*/
|
|
488
|
+
deleteWithInstance?: boolean;
|
|
489
|
+
/**
|
|
490
|
+
* @remarks
|
|
491
|
+
* This parameter is required.
|
|
492
|
+
*
|
|
493
|
+
* @example
|
|
494
|
+
* rcd-wz98hnpj2sjo85zc7t2w
|
|
495
|
+
*/
|
|
496
|
+
diskId?: string;
|
|
497
|
+
/**
|
|
498
|
+
* @remarks
|
|
499
|
+
* This parameter is required.
|
|
500
|
+
*
|
|
501
|
+
* @example
|
|
502
|
+
* rc-dh2jf9n6j4s14926****
|
|
503
|
+
*/
|
|
504
|
+
instanceId?: string;
|
|
505
|
+
/**
|
|
506
|
+
* @remarks
|
|
507
|
+
* This parameter is required.
|
|
508
|
+
*
|
|
509
|
+
* @example
|
|
510
|
+
* cn-hangzhou
|
|
511
|
+
*/
|
|
512
|
+
regionId?: string;
|
|
513
|
+
static names(): {
|
|
514
|
+
[key: string]: string;
|
|
515
|
+
};
|
|
516
|
+
static types(): {
|
|
517
|
+
[key: string]: any;
|
|
518
|
+
};
|
|
519
|
+
constructor(map?: {
|
|
520
|
+
[key: string]: any;
|
|
521
|
+
});
|
|
522
|
+
}
|
|
523
|
+
export declare class AttachRCDiskResponseBody extends $tea.Model {
|
|
524
|
+
/**
|
|
525
|
+
* @example
|
|
526
|
+
* C19D1668-70CB-5421-AA91-D6D8EE3AB664
|
|
527
|
+
*/
|
|
528
|
+
requestId?: string;
|
|
529
|
+
static names(): {
|
|
530
|
+
[key: string]: string;
|
|
531
|
+
};
|
|
532
|
+
static types(): {
|
|
533
|
+
[key: string]: any;
|
|
534
|
+
};
|
|
535
|
+
constructor(map?: {
|
|
536
|
+
[key: string]: any;
|
|
537
|
+
});
|
|
538
|
+
}
|
|
539
|
+
export declare class AttachRCDiskResponse extends $tea.Model {
|
|
540
|
+
headers?: {
|
|
541
|
+
[key: string]: string;
|
|
542
|
+
};
|
|
543
|
+
statusCode?: number;
|
|
544
|
+
body?: AttachRCDiskResponseBody;
|
|
545
|
+
static names(): {
|
|
546
|
+
[key: string]: string;
|
|
547
|
+
};
|
|
548
|
+
static types(): {
|
|
549
|
+
[key: string]: any;
|
|
550
|
+
};
|
|
551
|
+
constructor(map?: {
|
|
552
|
+
[key: string]: any;
|
|
553
|
+
});
|
|
554
|
+
}
|
|
555
|
+
export declare class AttachRCInstancesRequest extends $tea.Model {
|
|
556
|
+
/**
|
|
557
|
+
* @remarks
|
|
558
|
+
* The node IDs.
|
|
559
|
+
*
|
|
560
|
+
* This parameter is required.
|
|
561
|
+
*/
|
|
562
|
+
instanceIds?: string[];
|
|
563
|
+
/**
|
|
564
|
+
* @remarks
|
|
565
|
+
* The key pair of the node.
|
|
566
|
+
*
|
|
567
|
+
* @example
|
|
568
|
+
* Custom_test
|
|
569
|
+
*/
|
|
570
|
+
keyPair?: string;
|
|
571
|
+
/**
|
|
572
|
+
* @remarks
|
|
573
|
+
* The logon password of the node.
|
|
574
|
+
*
|
|
575
|
+
* @example
|
|
576
|
+
* testPassword
|
|
577
|
+
*/
|
|
578
|
+
password?: string;
|
|
579
|
+
/**
|
|
580
|
+
* @remarks
|
|
581
|
+
* The region ID.
|
|
582
|
+
*
|
|
583
|
+
* @example
|
|
584
|
+
* cn-hangzhou
|
|
585
|
+
*/
|
|
586
|
+
regionId?: string;
|
|
587
|
+
/**
|
|
588
|
+
* @remarks
|
|
589
|
+
* The virtual private cloud (VPC) ID.
|
|
590
|
+
*
|
|
591
|
+
* > This is a reserved parameter.
|
|
592
|
+
*
|
|
593
|
+
* @example
|
|
594
|
+
* None
|
|
595
|
+
*/
|
|
596
|
+
vpcId?: string;
|
|
597
|
+
static names(): {
|
|
598
|
+
[key: string]: string;
|
|
599
|
+
};
|
|
600
|
+
static types(): {
|
|
601
|
+
[key: string]: any;
|
|
602
|
+
};
|
|
603
|
+
constructor(map?: {
|
|
604
|
+
[key: string]: any;
|
|
605
|
+
});
|
|
606
|
+
}
|
|
607
|
+
export declare class AttachRCInstancesShrinkRequest extends $tea.Model {
|
|
608
|
+
/**
|
|
609
|
+
* @remarks
|
|
610
|
+
* The node IDs.
|
|
611
|
+
*
|
|
612
|
+
* This parameter is required.
|
|
613
|
+
*/
|
|
614
|
+
instanceIdsShrink?: string;
|
|
615
|
+
/**
|
|
616
|
+
* @remarks
|
|
617
|
+
* The key pair of the node.
|
|
618
|
+
*
|
|
619
|
+
* @example
|
|
620
|
+
* Custom_test
|
|
621
|
+
*/
|
|
622
|
+
keyPair?: string;
|
|
623
|
+
/**
|
|
624
|
+
* @remarks
|
|
625
|
+
* The logon password of the node.
|
|
626
|
+
*
|
|
627
|
+
* @example
|
|
628
|
+
* testPassword
|
|
629
|
+
*/
|
|
630
|
+
password?: string;
|
|
631
|
+
/**
|
|
632
|
+
* @remarks
|
|
633
|
+
* The region ID.
|
|
634
|
+
*
|
|
635
|
+
* @example
|
|
636
|
+
* cn-hangzhou
|
|
637
|
+
*/
|
|
638
|
+
regionId?: string;
|
|
639
|
+
/**
|
|
640
|
+
* @remarks
|
|
641
|
+
* The virtual private cloud (VPC) ID.
|
|
642
|
+
*
|
|
643
|
+
* > This is a reserved parameter.
|
|
644
|
+
*
|
|
645
|
+
* @example
|
|
646
|
+
* None
|
|
647
|
+
*/
|
|
648
|
+
vpcId?: string;
|
|
649
|
+
static names(): {
|
|
650
|
+
[key: string]: string;
|
|
651
|
+
};
|
|
652
|
+
static types(): {
|
|
653
|
+
[key: string]: any;
|
|
654
|
+
};
|
|
655
|
+
constructor(map?: {
|
|
656
|
+
[key: string]: any;
|
|
657
|
+
});
|
|
658
|
+
}
|
|
659
|
+
export declare class AttachRCInstancesResponseBody extends $tea.Model {
|
|
660
|
+
/**
|
|
661
|
+
* @remarks
|
|
662
|
+
* The request ID.
|
|
663
|
+
*
|
|
664
|
+
* @example
|
|
665
|
+
* 847BA085-B377-4BFA-8267-F82345ECE1D2
|
|
666
|
+
*/
|
|
667
|
+
requestId?: string;
|
|
668
|
+
/**
|
|
669
|
+
* @remarks
|
|
670
|
+
* The response parameters.
|
|
671
|
+
*/
|
|
672
|
+
responses?: AttachRCInstancesResponseBodyResponses[];
|
|
673
|
+
/**
|
|
674
|
+
* @remarks
|
|
675
|
+
* The task ID.
|
|
676
|
+
*
|
|
677
|
+
* @example
|
|
678
|
+
* 178968983
|
|
679
|
+
*/
|
|
680
|
+
taskId?: string;
|
|
681
|
+
static names(): {
|
|
682
|
+
[key: string]: string;
|
|
683
|
+
};
|
|
684
|
+
static types(): {
|
|
685
|
+
[key: string]: any;
|
|
686
|
+
};
|
|
687
|
+
constructor(map?: {
|
|
688
|
+
[key: string]: any;
|
|
689
|
+
});
|
|
690
|
+
}
|
|
691
|
+
export declare class AttachRCInstancesResponse extends $tea.Model {
|
|
692
|
+
headers?: {
|
|
693
|
+
[key: string]: string;
|
|
694
|
+
};
|
|
695
|
+
statusCode?: number;
|
|
696
|
+
body?: AttachRCInstancesResponseBody;
|
|
697
|
+
static names(): {
|
|
698
|
+
[key: string]: string;
|
|
699
|
+
};
|
|
700
|
+
static types(): {
|
|
701
|
+
[key: string]: any;
|
|
702
|
+
};
|
|
703
|
+
constructor(map?: {
|
|
704
|
+
[key: string]: any;
|
|
705
|
+
});
|
|
706
|
+
}
|
|
483
707
|
export declare class AttachWhitelistTemplateToInstanceRequest extends $tea.Model {
|
|
484
708
|
/**
|
|
485
709
|
* @remarks
|
|
@@ -679,7 +903,7 @@ export declare class CalculateDBInstanceWeightResponse extends $tea.Model {
|
|
|
679
903
|
export declare class CancelActiveOperationTasksRequest extends $tea.Model {
|
|
680
904
|
/**
|
|
681
905
|
* @remarks
|
|
682
|
-
*
|
|
906
|
+
* The IDs of tasks that you want to cancel at a time. Separate multiple IDs with commas (,). We recommend that you configure up to 25 IDs at a time.
|
|
683
907
|
*
|
|
684
908
|
* This parameter is required.
|
|
685
909
|
*
|
|
@@ -705,7 +929,7 @@ export declare class CancelActiveOperationTasksRequest extends $tea.Model {
|
|
|
705
929
|
export declare class CancelActiveOperationTasksResponseBody extends $tea.Model {
|
|
706
930
|
/**
|
|
707
931
|
* @remarks
|
|
708
|
-
*
|
|
932
|
+
* The IDs of the tasks that are canceled. Multiple task IDs are separated with commas (,).
|
|
709
933
|
*
|
|
710
934
|
* @example
|
|
711
935
|
* 188****,188****,188****
|
|
@@ -713,7 +937,7 @@ export declare class CancelActiveOperationTasksResponseBody extends $tea.Model {
|
|
|
713
937
|
ids?: string;
|
|
714
938
|
/**
|
|
715
939
|
* @remarks
|
|
716
|
-
*
|
|
940
|
+
* The request ID.
|
|
717
941
|
*
|
|
718
942
|
* @example
|
|
719
943
|
* A807C95D-410C-5BB5-96C0-C6E09F2C3D36
|
|
@@ -813,6 +1037,14 @@ export declare class CheckAccountNameAvailableResponseBody extends $tea.Model {
|
|
|
813
1037
|
* 5E4AA101-1EE5-41C0-AE6D-0F066331AC1C
|
|
814
1038
|
*/
|
|
815
1039
|
requestId?: string;
|
|
1040
|
+
/**
|
|
1041
|
+
* @remarks
|
|
1042
|
+
* The ID of the resource group.
|
|
1043
|
+
*
|
|
1044
|
+
* @example
|
|
1045
|
+
* rg-acfmy****
|
|
1046
|
+
*/
|
|
1047
|
+
resourceGroupId?: string;
|
|
816
1048
|
static names(): {
|
|
817
1049
|
[key: string]: string;
|
|
818
1050
|
};
|
|
@@ -3077,7 +3309,7 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
3077
3309
|
* @remarks
|
|
3078
3310
|
* Specifies whether to enable the automatic payment feature. Valid values:
|
|
3079
3311
|
*
|
|
3080
|
-
* * **true**: enables the feature.
|
|
3312
|
+
* * **true**: enables the feature. Make sure that your account balance is sufficient.
|
|
3081
3313
|
* * **false**: disables the feature. An unpaid order is generated.
|
|
3082
3314
|
*
|
|
3083
3315
|
* > Default value: true. If your account balance is insufficient, you can set the AutoPay parameter to false to generate an unpaid order. Then, you can log on to the ApsaraDB RDS console to complete the payment.
|
|
@@ -3100,6 +3332,17 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
3100
3332
|
* true
|
|
3101
3333
|
*/
|
|
3102
3334
|
autoRenew?: string;
|
|
3335
|
+
/**
|
|
3336
|
+
* @remarks
|
|
3337
|
+
* Specifies whether to use a coupon. Valid values:
|
|
3338
|
+
*
|
|
3339
|
+
* * **true**: uses a coupon.
|
|
3340
|
+
* * **false** (default): does not use a coupon.
|
|
3341
|
+
*
|
|
3342
|
+
* @example
|
|
3343
|
+
* true
|
|
3344
|
+
*/
|
|
3345
|
+
autoUseCoupon?: boolean;
|
|
3103
3346
|
/**
|
|
3104
3347
|
* @remarks
|
|
3105
3348
|
* The configuration of the Babelfish feature for the instance that runs PostgreSQL.
|
|
@@ -3166,9 +3409,9 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
3166
3409
|
* * **serverless_standard**: RDS High-availability Edition for serverless instances. This edition is available only for instances that run MySQL and PostgreSQL.
|
|
3167
3410
|
* * **serverless_ha**: RDS High-availability Edition for serverless instances. This edition is available only for instances that run SQL Server.
|
|
3168
3411
|
*
|
|
3169
|
-
* **
|
|
3170
3412
|
*
|
|
3171
|
-
*
|
|
3413
|
+
*
|
|
3414
|
+
* > This parameter is required when you create a serverless instance.
|
|
3172
3415
|
*
|
|
3173
3416
|
* @example
|
|
3174
3417
|
* HighAvailability
|
|
@@ -3424,15 +3667,10 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
3424
3667
|
* * Valid values when you set Engine to SQLServer: **2016_std_sl**, **2017_std_sl**, and **2019_std_sl**
|
|
3425
3668
|
* * Valid values when you set Engine to PostgreSQL: **14.0**, **15.0**, and **16.0**
|
|
3426
3669
|
*
|
|
3427
|
-
* >
|
|
3428
|
-
*
|
|
3429
|
-
* *
|
|
3430
|
-
*
|
|
3431
|
-
* * RDS instances that run SQL Server: `_ent` specifies SQL Server EE (Always On), `_ent_ha` specifies SQL Server EE, `_std_ha` specifies SQL Server SE, and `_web` specifies SQL Server Web.
|
|
3432
|
-
*
|
|
3433
|
-
* * RDS instances that run SQL Server 2014 are not available for purchase on the international site (alibabacloud.com).
|
|
3434
|
-
*
|
|
3435
|
-
* * Babelfish is supported only for RDS instances that run PostgreSQL 15.
|
|
3670
|
+
* > * ApsaraDB RDS for MariaDB does not support serverless instances.
|
|
3671
|
+
* > * RDS instances that run SQL Server: `_ent` specifies SQL Server EE (Always On), `_ent_ha` specifies SQL Server EE, `_std_ha` specifies SQL Server SE, and `_web` specifies SQL Server Web.
|
|
3672
|
+
* > * RDS instances that run SQL Server 2014 are not available for purchase on the international site (alibabacloud.com).
|
|
3673
|
+
* > * Babelfish is supported only for RDS instances that run PostgreSQL 15.
|
|
3436
3674
|
*
|
|
3437
3675
|
* This parameter is required.
|
|
3438
3676
|
*
|
|
@@ -3444,7 +3682,7 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
3444
3682
|
* @remarks
|
|
3445
3683
|
* The network type of the instance. Valid values:
|
|
3446
3684
|
*
|
|
3447
|
-
* * **VPC**: virtual private cloud (VPC)
|
|
3685
|
+
* * **VPC**: a virtual private cloud (VPC)
|
|
3448
3686
|
* * **Classic**: the classic network
|
|
3449
3687
|
*
|
|
3450
3688
|
* >
|
|
@@ -3520,6 +3758,14 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
3520
3758
|
* 172.16.XX.XX
|
|
3521
3759
|
*/
|
|
3522
3760
|
privateIpAddress?: string;
|
|
3761
|
+
/**
|
|
3762
|
+
* @remarks
|
|
3763
|
+
* The coupon code.
|
|
3764
|
+
*
|
|
3765
|
+
* @example
|
|
3766
|
+
* aliwood-1688-mobile-promotion
|
|
3767
|
+
*/
|
|
3768
|
+
promotionCode?: string;
|
|
3523
3769
|
/**
|
|
3524
3770
|
* @remarks
|
|
3525
3771
|
* The region ID. You can call the DescribeRegions operation to query the most recent region list.
|
|
@@ -3722,10 +3968,11 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
3722
3968
|
VPCId?: string;
|
|
3723
3969
|
/**
|
|
3724
3970
|
* @remarks
|
|
3725
|
-
* The ID
|
|
3971
|
+
* The vSwitch ID. The vSwitch must belong to the zone that is specified by **ZoneId**.
|
|
3726
3972
|
*
|
|
3727
3973
|
* * If you set **InstanceNetworkType** to **VPC**, you must also specify this parameter.
|
|
3728
|
-
* * If you
|
|
3974
|
+
* * If you set the **ZoneSlaveId1** parameter to a value that is not **Auto**, you must specify the IDs of two vSwitches for this parameter and separate the IDs with a comma (,). The ZoneSlaveId1 parameter specifies the zone ID of the secondary node.
|
|
3975
|
+
* * The value cannot contain `spaces`, exclamation points `(!)`, or special characters such as number signs `(#)`, dollar signs `($)`, ampersands `(&)`, and percent signs `(%)`.
|
|
3729
3976
|
*
|
|
3730
3977
|
* @example
|
|
3731
3978
|
* vsw-*****
|
|
@@ -3766,7 +4013,7 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
3766
4013
|
zoneIdSlave1?: string;
|
|
3767
4014
|
/**
|
|
3768
4015
|
* @remarks
|
|
3769
|
-
* This parameter
|
|
4016
|
+
* The zone ID of the other secondary node. When you create an ApsaraDB RDS for MySQL cluster, you can create one to two secondary nodes for the cluster. This parameter applies if you create a cluster that contains two secondary nodes.
|
|
3770
4017
|
*
|
|
3771
4018
|
* @example
|
|
3772
4019
|
* cn-hangzhou-d
|
|
@@ -3812,7 +4059,7 @@ export declare class CreateDBInstanceShrinkRequest extends $tea.Model {
|
|
|
3812
4059
|
* @remarks
|
|
3813
4060
|
* Specifies whether to enable the automatic payment feature. Valid values:
|
|
3814
4061
|
*
|
|
3815
|
-
* * **true**: enables the feature.
|
|
4062
|
+
* * **true**: enables the feature. Make sure that your account balance is sufficient.
|
|
3816
4063
|
* * **false**: disables the feature. An unpaid order is generated.
|
|
3817
4064
|
*
|
|
3818
4065
|
* > Default value: true. If your account balance is insufficient, you can set the AutoPay parameter to false to generate an unpaid order. Then, you can log on to the ApsaraDB RDS console to complete the payment.
|
|
@@ -3835,6 +4082,17 @@ export declare class CreateDBInstanceShrinkRequest extends $tea.Model {
|
|
|
3835
4082
|
* true
|
|
3836
4083
|
*/
|
|
3837
4084
|
autoRenew?: string;
|
|
4085
|
+
/**
|
|
4086
|
+
* @remarks
|
|
4087
|
+
* Specifies whether to use a coupon. Valid values:
|
|
4088
|
+
*
|
|
4089
|
+
* * **true**: uses a coupon.
|
|
4090
|
+
* * **false** (default): does not use a coupon.
|
|
4091
|
+
*
|
|
4092
|
+
* @example
|
|
4093
|
+
* true
|
|
4094
|
+
*/
|
|
4095
|
+
autoUseCoupon?: boolean;
|
|
3838
4096
|
/**
|
|
3839
4097
|
* @remarks
|
|
3840
4098
|
* The configuration of the Babelfish feature for the instance that runs PostgreSQL.
|
|
@@ -3901,9 +4159,9 @@ export declare class CreateDBInstanceShrinkRequest extends $tea.Model {
|
|
|
3901
4159
|
* * **serverless_standard**: RDS High-availability Edition for serverless instances. This edition is available only for instances that run MySQL and PostgreSQL.
|
|
3902
4160
|
* * **serverless_ha**: RDS High-availability Edition for serverless instances. This edition is available only for instances that run SQL Server.
|
|
3903
4161
|
*
|
|
3904
|
-
* **
|
|
3905
4162
|
*
|
|
3906
|
-
*
|
|
4163
|
+
*
|
|
4164
|
+
* > This parameter is required when you create a serverless instance.
|
|
3907
4165
|
*
|
|
3908
4166
|
* @example
|
|
3909
4167
|
* HighAvailability
|
|
@@ -4159,15 +4417,10 @@ export declare class CreateDBInstanceShrinkRequest extends $tea.Model {
|
|
|
4159
4417
|
* * Valid values when you set Engine to SQLServer: **2016_std_sl**, **2017_std_sl**, and **2019_std_sl**
|
|
4160
4418
|
* * Valid values when you set Engine to PostgreSQL: **14.0**, **15.0**, and **16.0**
|
|
4161
4419
|
*
|
|
4162
|
-
* >
|
|
4163
|
-
*
|
|
4164
|
-
* *
|
|
4165
|
-
*
|
|
4166
|
-
* * RDS instances that run SQL Server: `_ent` specifies SQL Server EE (Always On), `_ent_ha` specifies SQL Server EE, `_std_ha` specifies SQL Server SE, and `_web` specifies SQL Server Web.
|
|
4167
|
-
*
|
|
4168
|
-
* * RDS instances that run SQL Server 2014 are not available for purchase on the international site (alibabacloud.com).
|
|
4169
|
-
*
|
|
4170
|
-
* * Babelfish is supported only for RDS instances that run PostgreSQL 15.
|
|
4420
|
+
* > * ApsaraDB RDS for MariaDB does not support serverless instances.
|
|
4421
|
+
* > * RDS instances that run SQL Server: `_ent` specifies SQL Server EE (Always On), `_ent_ha` specifies SQL Server EE, `_std_ha` specifies SQL Server SE, and `_web` specifies SQL Server Web.
|
|
4422
|
+
* > * RDS instances that run SQL Server 2014 are not available for purchase on the international site (alibabacloud.com).
|
|
4423
|
+
* > * Babelfish is supported only for RDS instances that run PostgreSQL 15.
|
|
4171
4424
|
*
|
|
4172
4425
|
* This parameter is required.
|
|
4173
4426
|
*
|
|
@@ -4179,7 +4432,7 @@ export declare class CreateDBInstanceShrinkRequest extends $tea.Model {
|
|
|
4179
4432
|
* @remarks
|
|
4180
4433
|
* The network type of the instance. Valid values:
|
|
4181
4434
|
*
|
|
4182
|
-
* * **VPC**: virtual private cloud (VPC)
|
|
4435
|
+
* * **VPC**: a virtual private cloud (VPC)
|
|
4183
4436
|
* * **Classic**: the classic network
|
|
4184
4437
|
*
|
|
4185
4438
|
* >
|
|
@@ -4255,6 +4508,14 @@ export declare class CreateDBInstanceShrinkRequest extends $tea.Model {
|
|
|
4255
4508
|
* 172.16.XX.XX
|
|
4256
4509
|
*/
|
|
4257
4510
|
privateIpAddress?: string;
|
|
4511
|
+
/**
|
|
4512
|
+
* @remarks
|
|
4513
|
+
* The coupon code.
|
|
4514
|
+
*
|
|
4515
|
+
* @example
|
|
4516
|
+
* aliwood-1688-mobile-promotion
|
|
4517
|
+
*/
|
|
4518
|
+
promotionCode?: string;
|
|
4258
4519
|
/**
|
|
4259
4520
|
* @remarks
|
|
4260
4521
|
* The region ID. You can call the DescribeRegions operation to query the most recent region list.
|
|
@@ -4457,10 +4718,11 @@ export declare class CreateDBInstanceShrinkRequest extends $tea.Model {
|
|
|
4457
4718
|
VPCId?: string;
|
|
4458
4719
|
/**
|
|
4459
4720
|
* @remarks
|
|
4460
|
-
* The ID
|
|
4721
|
+
* The vSwitch ID. The vSwitch must belong to the zone that is specified by **ZoneId**.
|
|
4461
4722
|
*
|
|
4462
4723
|
* * If you set **InstanceNetworkType** to **VPC**, you must also specify this parameter.
|
|
4463
|
-
* * If you
|
|
4724
|
+
* * If you set the **ZoneSlaveId1** parameter to a value that is not **Auto**, you must specify the IDs of two vSwitches for this parameter and separate the IDs with a comma (,). The ZoneSlaveId1 parameter specifies the zone ID of the secondary node.
|
|
4725
|
+
* * The value cannot contain `spaces`, exclamation points `(!)`, or special characters such as number signs `(#)`, dollar signs `($)`, ampersands `(&)`, and percent signs `(%)`.
|
|
4464
4726
|
*
|
|
4465
4727
|
* @example
|
|
4466
4728
|
* vsw-*****
|
|
@@ -4501,7 +4763,7 @@ export declare class CreateDBInstanceShrinkRequest extends $tea.Model {
|
|
|
4501
4763
|
zoneIdSlave1?: string;
|
|
4502
4764
|
/**
|
|
4503
4765
|
* @remarks
|
|
4504
|
-
* This parameter
|
|
4766
|
+
* The zone ID of the other secondary node. When you create an ApsaraDB RDS for MySQL cluster, you can create one to two secondary nodes for the cluster. This parameter applies if you create a cluster that contains two secondary nodes.
|
|
4505
4767
|
*
|
|
4506
4768
|
* @example
|
|
4507
4769
|
* cn-hangzhou-d
|
|
@@ -6236,90 +6498,6 @@ export declare class CreateDdrInstanceResponse extends $tea.Model {
|
|
|
6236
6498
|
[key: string]: any;
|
|
6237
6499
|
});
|
|
6238
6500
|
}
|
|
6239
|
-
export declare class CreateDiagnosticReportRequest extends $tea.Model {
|
|
6240
|
-
/**
|
|
6241
|
-
* @remarks
|
|
6242
|
-
* The ID of the instance.
|
|
6243
|
-
*
|
|
6244
|
-
* This parameter is required.
|
|
6245
|
-
*
|
|
6246
|
-
* @example
|
|
6247
|
-
* rm-uf6wjk521****
|
|
6248
|
-
*/
|
|
6249
|
-
DBInstanceId?: string;
|
|
6250
|
-
/**
|
|
6251
|
-
* @remarks
|
|
6252
|
-
* The end time of the monitored data that is used to generate the diagnostic report. Specify the time in the ISO 8601 standard in the *yyyy-MM-dd*T*HH:mm*Z format. The time must be in UTC.
|
|
6253
|
-
*
|
|
6254
|
-
* This parameter is required.
|
|
6255
|
-
*
|
|
6256
|
-
* @example
|
|
6257
|
-
* 2018-06-12T15:00Z
|
|
6258
|
-
*/
|
|
6259
|
-
endTime?: string;
|
|
6260
|
-
/**
|
|
6261
|
-
* @remarks
|
|
6262
|
-
* The start time of the monitored data that is used to generate the diagnostic report. Specify the time in the ISO 8601 standard in the *yyyy-MM-dd*T*HH:mm*Z format. The time must be in UTC.
|
|
6263
|
-
*
|
|
6264
|
-
* This parameter is required.
|
|
6265
|
-
*
|
|
6266
|
-
* @example
|
|
6267
|
-
* 2018-06-11T15:00Z
|
|
6268
|
-
*/
|
|
6269
|
-
startTime?: string;
|
|
6270
|
-
static names(): {
|
|
6271
|
-
[key: string]: string;
|
|
6272
|
-
};
|
|
6273
|
-
static types(): {
|
|
6274
|
-
[key: string]: any;
|
|
6275
|
-
};
|
|
6276
|
-
constructor(map?: {
|
|
6277
|
-
[key: string]: any;
|
|
6278
|
-
});
|
|
6279
|
-
}
|
|
6280
|
-
export declare class CreateDiagnosticReportResponseBody extends $tea.Model {
|
|
6281
|
-
/**
|
|
6282
|
-
* @remarks
|
|
6283
|
-
* The ID of the diagnostic report.
|
|
6284
|
-
*
|
|
6285
|
-
* @example
|
|
6286
|
-
* 10166270
|
|
6287
|
-
*/
|
|
6288
|
-
reportId?: string;
|
|
6289
|
-
/**
|
|
6290
|
-
* @remarks
|
|
6291
|
-
* The ID of the request.
|
|
6292
|
-
*
|
|
6293
|
-
* @example
|
|
6294
|
-
* 8DA8956A-53DA-423E-9540-387428ED37FF-5711
|
|
6295
|
-
*/
|
|
6296
|
-
requestId?: string;
|
|
6297
|
-
static names(): {
|
|
6298
|
-
[key: string]: string;
|
|
6299
|
-
};
|
|
6300
|
-
static types(): {
|
|
6301
|
-
[key: string]: any;
|
|
6302
|
-
};
|
|
6303
|
-
constructor(map?: {
|
|
6304
|
-
[key: string]: any;
|
|
6305
|
-
});
|
|
6306
|
-
}
|
|
6307
|
-
export declare class CreateDiagnosticReportResponse extends $tea.Model {
|
|
6308
|
-
headers?: {
|
|
6309
|
-
[key: string]: string;
|
|
6310
|
-
};
|
|
6311
|
-
statusCode?: number;
|
|
6312
|
-
body?: CreateDiagnosticReportResponseBody;
|
|
6313
|
-
static names(): {
|
|
6314
|
-
[key: string]: string;
|
|
6315
|
-
};
|
|
6316
|
-
static types(): {
|
|
6317
|
-
[key: string]: any;
|
|
6318
|
-
};
|
|
6319
|
-
constructor(map?: {
|
|
6320
|
-
[key: string]: any;
|
|
6321
|
-
});
|
|
6322
|
-
}
|
|
6323
6501
|
export declare class CreateGADInstanceRequest extends $tea.Model {
|
|
6324
6502
|
/**
|
|
6325
6503
|
* @remarks
|
|
@@ -7638,6 +7816,7 @@ export declare class CreateRCDeploymentSetRequest extends $tea.Model {
|
|
|
7638
7816
|
* Availability
|
|
7639
7817
|
*/
|
|
7640
7818
|
strategy?: string;
|
|
7819
|
+
tag?: CreateRCDeploymentSetRequestTag[];
|
|
7641
7820
|
static names(): {
|
|
7642
7821
|
[key: string]: string;
|
|
7643
7822
|
};
|
|
@@ -7691,13 +7870,355 @@ export declare class CreateRCDeploymentSetResponse extends $tea.Model {
|
|
|
7691
7870
|
[key: string]: any;
|
|
7692
7871
|
});
|
|
7693
7872
|
}
|
|
7873
|
+
export declare class CreateRCDiskRequest extends $tea.Model {
|
|
7874
|
+
/**
|
|
7875
|
+
* @remarks
|
|
7876
|
+
* Specifies whether to enable automatic payment. Valid values:
|
|
7877
|
+
*
|
|
7878
|
+
* * **true**: enables the feature. You must make sure that your account balance is sufficient.
|
|
7879
|
+
* * **false**: disables the feature. An unpaid order is generated.
|
|
7880
|
+
*
|
|
7881
|
+
* > Default value: true. If your account balance is insufficient, you can set AutoPay to false to generate an unpaid order. Then, you can log on to the ApsaraDB RDS console to complete the payment.
|
|
7882
|
+
*
|
|
7883
|
+
* @example
|
|
7884
|
+
* true
|
|
7885
|
+
*/
|
|
7886
|
+
autoPay?: boolean;
|
|
7887
|
+
/**
|
|
7888
|
+
* @remarks
|
|
7889
|
+
* Specifies whether to enable auto-renewal. You must specify this parameter only when the data disk uses the subscription billing method. Valid values:
|
|
7890
|
+
*
|
|
7891
|
+
* * **true**
|
|
7892
|
+
* * **false**
|
|
7893
|
+
*
|
|
7894
|
+
* > The auto-renewal cycle is one month for a monthly subscription. The auto-renewal cycle is one year for a yearly subscription.
|
|
7895
|
+
*
|
|
7896
|
+
* @example
|
|
7897
|
+
* false
|
|
7898
|
+
*/
|
|
7899
|
+
autoRenew?: boolean;
|
|
7900
|
+
/**
|
|
7901
|
+
* @remarks
|
|
7902
|
+
* The disk description. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`. By default, this parameter is left empty.
|
|
7903
|
+
*
|
|
7904
|
+
* @example
|
|
7905
|
+
* test
|
|
7906
|
+
*/
|
|
7907
|
+
description?: string;
|
|
7908
|
+
/**
|
|
7909
|
+
* @remarks
|
|
7910
|
+
* The category of the data disk. Valid values:
|
|
7911
|
+
*
|
|
7912
|
+
* * **cloud** (default): basic disk
|
|
7913
|
+
* * **cloud_efficiency**: ultra disk
|
|
7914
|
+
* * **cloud_ssd**: standard SSD
|
|
7915
|
+
* * **cloud_essd**: Enterprise SSD (ESSD)
|
|
7916
|
+
* * **cloud_auto**: ESSD AutoPL disk
|
|
7917
|
+
* * **cloud_essd_entry**: ESSD Entry disk
|
|
7918
|
+
* * **elastic_ephemeral_disk_standard**: standard elastic ephemeral disk
|
|
7919
|
+
* * **elastic_ephemeral_disk_premium**: premium elastic ephemeral disk
|
|
7920
|
+
*
|
|
7921
|
+
* @example
|
|
7922
|
+
* cloud_ssd
|
|
7923
|
+
*/
|
|
7924
|
+
diskCategory?: string;
|
|
7925
|
+
/**
|
|
7926
|
+
* @remarks
|
|
7927
|
+
* The disk name. The name must be 2 to 128 characters in length and can contain letters and digits. The name can contain colons (:), underscores (_), periods (.), and hyphens (-).
|
|
7928
|
+
*
|
|
7929
|
+
* By default, this parameter is left empty.
|
|
7930
|
+
*
|
|
7931
|
+
* @example
|
|
7932
|
+
* ZStack-Hybrid-Test-ECS-Instance
|
|
7933
|
+
*/
|
|
7934
|
+
diskName?: string;
|
|
7935
|
+
/**
|
|
7936
|
+
* @remarks
|
|
7937
|
+
* The billing method. Set the value to **Postpaid**, which specifies the pay-as-you-go billing method.
|
|
7938
|
+
*
|
|
7939
|
+
* @example
|
|
7940
|
+
* Postpaid
|
|
7941
|
+
*/
|
|
7942
|
+
instanceChargeType?: string;
|
|
7943
|
+
/**
|
|
7944
|
+
* @remarks
|
|
7945
|
+
* The performance level (PL) of the disk if the disk is an ESSD. Valid values:
|
|
7946
|
+
*
|
|
7947
|
+
* * **PL0**: A single ESSD delivers up to 10,000 random read/write IOPS.
|
|
7948
|
+
* * **PL1** (default): A single ESSD can deliver up to 50,000 random read/write IOPS.
|
|
7949
|
+
* * **PL2**: A single ESSD delivers up to 100,000 random read/write IOPS.
|
|
7950
|
+
* * **PL3**: A single ESSD delivers up to 1,000,000 random read/write IOPS.
|
|
7951
|
+
*
|
|
7952
|
+
* For information about ESSD PLs, see [ESSDs](https://help.aliyun.com/document_detail/122389.html).
|
|
7953
|
+
*
|
|
7954
|
+
* @example
|
|
7955
|
+
* PL1
|
|
7956
|
+
*/
|
|
7957
|
+
performanceLevel?: string;
|
|
7958
|
+
/**
|
|
7959
|
+
* @remarks
|
|
7960
|
+
* A reserved parameter. You do not need to specify this parameter.
|
|
7961
|
+
*
|
|
7962
|
+
* @example
|
|
7963
|
+
* none
|
|
7964
|
+
*/
|
|
7965
|
+
period?: number;
|
|
7966
|
+
/**
|
|
7967
|
+
* @remarks
|
|
7968
|
+
* A reserved parameter. You do not need to specify this parameter.
|
|
7969
|
+
*
|
|
7970
|
+
* @example
|
|
7971
|
+
* none
|
|
7972
|
+
*/
|
|
7973
|
+
periodUnit?: string;
|
|
7974
|
+
/**
|
|
7975
|
+
* @remarks
|
|
7976
|
+
* The region ID. You can call the DescribeRegions operation to query the most recent region list.
|
|
7977
|
+
*
|
|
7978
|
+
* This parameter is required.
|
|
7979
|
+
*
|
|
7980
|
+
* @example
|
|
7981
|
+
* cn-hangzhou
|
|
7982
|
+
*/
|
|
7983
|
+
regionId?: string;
|
|
7984
|
+
/**
|
|
7985
|
+
* @remarks
|
|
7986
|
+
* The disk size. Unit: GiB. This parameter is required. Valid values:
|
|
7987
|
+
*
|
|
7988
|
+
* * Valid values if you set DiskCategory to **cloud**: 5 to 2000.
|
|
7989
|
+
*
|
|
7990
|
+
* * Valid values if you set DiskCategory to **cloud_efficiency**: 20 to 32768.
|
|
7991
|
+
*
|
|
7992
|
+
* * Valid values if you set DiskCategory to **cloud_ssd**: 20 to 32768.
|
|
7993
|
+
*
|
|
7994
|
+
* * Valid values if you set DiskCategory to **cloud_essd**: depend on the value of PerformanceLevel.
|
|
7995
|
+
*
|
|
7996
|
+
* * Valid values if PerformanceLevel is set to PL0: 1 to 65536
|
|
7997
|
+
* * Valid values if PerformanceLevel is set to PL1: 20 to 65536
|
|
7998
|
+
* * Valid values if PerformanceLevel is set to PL2: 461 to 65536
|
|
7999
|
+
* * Valid values if PerformanceLevel is set to PL3: 1261 to 65536
|
|
8000
|
+
*
|
|
8001
|
+
* * Valid values if you set DiskCategory to **cloud_auto**: 1 to 65536.
|
|
8002
|
+
*
|
|
8003
|
+
* * Valid values if you set DiskCategory to **cloud_essd_entry**: 10 to 32768.
|
|
8004
|
+
*
|
|
8005
|
+
* * Valid values if you set DiskCategory to **elastic_ephemeral_disk_standard**: 64 to 8192.
|
|
8006
|
+
*
|
|
8007
|
+
* * Valid values if you set DiskCategory to **elastic_ephemeral_disk_premium**: 64 to 8192.
|
|
8008
|
+
*
|
|
8009
|
+
* If `SnapshotId` is specified, the following limits apply to `SnapshotId` and `Size`:
|
|
8010
|
+
*
|
|
8011
|
+
* * If the size of the snapshot specified by `SnapshotId` is larger than the value of `Size`, the size of the created disk is equal to the size of the snapshot.
|
|
8012
|
+
* * If the size of the snapshot specified by `SnapshotId` is smaller than the value of `Size`, the size of the created disk is equal to the value of `Size`.
|
|
8013
|
+
*
|
|
8014
|
+
* @example
|
|
8015
|
+
* 2000
|
|
8016
|
+
*/
|
|
8017
|
+
size?: number;
|
|
8018
|
+
/**
|
|
8019
|
+
* @remarks
|
|
8020
|
+
* The snapshot that you want to use to create the disk. Snapshots that were created on or before July 15, 2013 cannot be used to create disks. The following limits apply to `SnapshotId` and `Size`:
|
|
8021
|
+
*
|
|
8022
|
+
* * If the size of the snapshot specified by `SnapshotId` is larger than the value of `Size`, the size of the created disk is equal to the specified snapshot size.
|
|
8023
|
+
* * If the size of the snapshot specified by `SnapshotId` is smaller than the value of `Size`, the size of the created disk is equal to the value of `Size`.
|
|
8024
|
+
* * You cannot create elastic ephemeral disks from snapshots.
|
|
8025
|
+
*
|
|
8026
|
+
* @example
|
|
8027
|
+
* rcds-umtnkvevqbu****
|
|
8028
|
+
*/
|
|
8029
|
+
snapshotId?: string;
|
|
8030
|
+
/**
|
|
8031
|
+
* @remarks
|
|
8032
|
+
* The zone ID.
|
|
8033
|
+
*
|
|
8034
|
+
* @example
|
|
8035
|
+
* cn-hangzhou-a
|
|
8036
|
+
*/
|
|
8037
|
+
zoneId?: string;
|
|
8038
|
+
static names(): {
|
|
8039
|
+
[key: string]: string;
|
|
8040
|
+
};
|
|
8041
|
+
static types(): {
|
|
8042
|
+
[key: string]: any;
|
|
8043
|
+
};
|
|
8044
|
+
constructor(map?: {
|
|
8045
|
+
[key: string]: any;
|
|
8046
|
+
});
|
|
8047
|
+
}
|
|
8048
|
+
export declare class CreateRCDiskResponseBody extends $tea.Model {
|
|
8049
|
+
/**
|
|
8050
|
+
* @remarks
|
|
8051
|
+
* The disk ID.
|
|
8052
|
+
*
|
|
8053
|
+
* @example
|
|
8054
|
+
* rcd-2zegrjtnkp6dqbe1egca
|
|
8055
|
+
*/
|
|
8056
|
+
diskId?: string;
|
|
8057
|
+
/**
|
|
8058
|
+
* @remarks
|
|
8059
|
+
* The order ID.
|
|
8060
|
+
*
|
|
8061
|
+
* @example
|
|
8062
|
+
* 100789370230206
|
|
8063
|
+
*/
|
|
8064
|
+
orderId?: string;
|
|
8065
|
+
/**
|
|
8066
|
+
* @remarks
|
|
8067
|
+
* The request ID.
|
|
8068
|
+
*
|
|
8069
|
+
* @example
|
|
8070
|
+
* F2911788-25E8-42E5-A3A3-1B38D263F01E
|
|
8071
|
+
*/
|
|
8072
|
+
requestId?: string;
|
|
8073
|
+
static names(): {
|
|
8074
|
+
[key: string]: string;
|
|
8075
|
+
};
|
|
8076
|
+
static types(): {
|
|
8077
|
+
[key: string]: any;
|
|
8078
|
+
};
|
|
8079
|
+
constructor(map?: {
|
|
8080
|
+
[key: string]: any;
|
|
8081
|
+
});
|
|
8082
|
+
}
|
|
8083
|
+
export declare class CreateRCDiskResponse extends $tea.Model {
|
|
8084
|
+
headers?: {
|
|
8085
|
+
[key: string]: string;
|
|
8086
|
+
};
|
|
8087
|
+
statusCode?: number;
|
|
8088
|
+
body?: CreateRCDiskResponseBody;
|
|
8089
|
+
static names(): {
|
|
8090
|
+
[key: string]: string;
|
|
8091
|
+
};
|
|
8092
|
+
static types(): {
|
|
8093
|
+
[key: string]: any;
|
|
8094
|
+
};
|
|
8095
|
+
constructor(map?: {
|
|
8096
|
+
[key: string]: any;
|
|
8097
|
+
});
|
|
8098
|
+
}
|
|
8099
|
+
export declare class CreateRCSnapshotRequest extends $tea.Model {
|
|
8100
|
+
/**
|
|
8101
|
+
* @remarks
|
|
8102
|
+
* The snapshot description. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.
|
|
8103
|
+
*
|
|
8104
|
+
* By default, this parameter is left empty.
|
|
8105
|
+
*
|
|
8106
|
+
* @example
|
|
8107
|
+
* test
|
|
8108
|
+
*/
|
|
8109
|
+
description?: string;
|
|
8110
|
+
/**
|
|
8111
|
+
* @remarks
|
|
8112
|
+
* The cloud disk ID.
|
|
8113
|
+
*
|
|
8114
|
+
* @example
|
|
8115
|
+
* rcd-wz9f3peueu5npsl****
|
|
8116
|
+
*/
|
|
8117
|
+
diskId?: string;
|
|
8118
|
+
/**
|
|
8119
|
+
* @remarks
|
|
8120
|
+
* This parameter is deprecated.
|
|
8121
|
+
*
|
|
8122
|
+
* @example
|
|
8123
|
+
* none
|
|
8124
|
+
*/
|
|
8125
|
+
instantAccess?: boolean;
|
|
8126
|
+
/**
|
|
8127
|
+
* @remarks
|
|
8128
|
+
* This parameter is deprecated.
|
|
8129
|
+
*
|
|
8130
|
+
* @example
|
|
8131
|
+
* none
|
|
8132
|
+
*/
|
|
8133
|
+
instantAccessRetentionDays?: number;
|
|
8134
|
+
/**
|
|
8135
|
+
* @remarks
|
|
8136
|
+
* The region ID.
|
|
8137
|
+
*
|
|
8138
|
+
* This parameter is required.
|
|
8139
|
+
*
|
|
8140
|
+
* @example
|
|
8141
|
+
* cn-hangzhou
|
|
8142
|
+
*/
|
|
8143
|
+
regionId?: string;
|
|
8144
|
+
/**
|
|
8145
|
+
* @remarks
|
|
8146
|
+
* The retention period of the snapshot. Valid values: 1 to 65536. Unit: days. The snapshot is automatically released when its retention period expires.
|
|
8147
|
+
*
|
|
8148
|
+
* By default, this parameter is left empty, which specifies that the snapshot is not automatically released.
|
|
8149
|
+
*
|
|
8150
|
+
* @example
|
|
8151
|
+
* 2
|
|
8152
|
+
*/
|
|
8153
|
+
retentionDays?: number;
|
|
8154
|
+
/**
|
|
8155
|
+
* @remarks
|
|
8156
|
+
* The zone ID.
|
|
8157
|
+
*
|
|
8158
|
+
* @example
|
|
8159
|
+
* cn-hangzhou-b
|
|
8160
|
+
*/
|
|
8161
|
+
zoneId?: string;
|
|
8162
|
+
static names(): {
|
|
8163
|
+
[key: string]: string;
|
|
8164
|
+
};
|
|
8165
|
+
static types(): {
|
|
8166
|
+
[key: string]: any;
|
|
8167
|
+
};
|
|
8168
|
+
constructor(map?: {
|
|
8169
|
+
[key: string]: any;
|
|
8170
|
+
});
|
|
8171
|
+
}
|
|
8172
|
+
export declare class CreateRCSnapshotResponseBody extends $tea.Model {
|
|
8173
|
+
/**
|
|
8174
|
+
* @remarks
|
|
8175
|
+
* The request ID.
|
|
8176
|
+
*
|
|
8177
|
+
* @example
|
|
8178
|
+
* CE93CC0D-B65D-5723-AAB1-08CB8BBABAB9
|
|
8179
|
+
*/
|
|
8180
|
+
requestId?: string;
|
|
8181
|
+
/**
|
|
8182
|
+
* @remarks
|
|
8183
|
+
* The snapshot ID.
|
|
8184
|
+
*
|
|
8185
|
+
* @example
|
|
8186
|
+
* rcds-7mbefjzkqccvdev****
|
|
8187
|
+
*/
|
|
8188
|
+
snapshotId?: string;
|
|
8189
|
+
static names(): {
|
|
8190
|
+
[key: string]: string;
|
|
8191
|
+
};
|
|
8192
|
+
static types(): {
|
|
8193
|
+
[key: string]: any;
|
|
8194
|
+
};
|
|
8195
|
+
constructor(map?: {
|
|
8196
|
+
[key: string]: any;
|
|
8197
|
+
});
|
|
8198
|
+
}
|
|
8199
|
+
export declare class CreateRCSnapshotResponse extends $tea.Model {
|
|
8200
|
+
headers?: {
|
|
8201
|
+
[key: string]: string;
|
|
8202
|
+
};
|
|
8203
|
+
statusCode?: number;
|
|
8204
|
+
body?: CreateRCSnapshotResponseBody;
|
|
8205
|
+
static names(): {
|
|
8206
|
+
[key: string]: string;
|
|
8207
|
+
};
|
|
8208
|
+
static types(): {
|
|
8209
|
+
[key: string]: any;
|
|
8210
|
+
};
|
|
8211
|
+
constructor(map?: {
|
|
8212
|
+
[key: string]: any;
|
|
8213
|
+
});
|
|
8214
|
+
}
|
|
7694
8215
|
export declare class CreateReadOnlyDBInstanceRequest extends $tea.Model {
|
|
7695
8216
|
/**
|
|
7696
8217
|
* @remarks
|
|
7697
8218
|
* Specifies whether to automatically create database proxies. Valid values:
|
|
7698
8219
|
*
|
|
7699
|
-
* * **true**:
|
|
7700
|
-
* * **false**:
|
|
8220
|
+
* * **true**: automatically creates database proxies. By default, general-purpose database proxies are created.
|
|
8221
|
+
* * **false**: does not automatically create database proxies.
|
|
7701
8222
|
*
|
|
7702
8223
|
* @example
|
|
7703
8224
|
* false
|
|
@@ -7705,12 +8226,12 @@ export declare class CreateReadOnlyDBInstanceRequest extends $tea.Model {
|
|
|
7705
8226
|
autoCreateProxy?: boolean;
|
|
7706
8227
|
/**
|
|
7707
8228
|
* @remarks
|
|
7708
|
-
* Specifies whether to
|
|
8229
|
+
* Specifies whether to automatically complete the payment. Valid values:
|
|
7709
8230
|
*
|
|
7710
|
-
* 1. **true**:
|
|
7711
|
-
* 2. **false**:
|
|
8231
|
+
* 1. **true**: automatically completes the payment. Make sure that your account balance is sufficient.
|
|
8232
|
+
* 2. **false**: does not automatically complete the payment. An unpaid order is generated.
|
|
7712
8233
|
*
|
|
7713
|
-
* >
|
|
8234
|
+
* > Default value: true. If your account balance is insufficient, you can set the AutoPay parameter to false to generate an unpaid order. Then, you can log on to the ApsaraDB RDS console to complete the payment.
|
|
7714
8235
|
*
|
|
7715
8236
|
* @example
|
|
7716
8237
|
* false
|
|
@@ -7730,6 +8251,7 @@ export declare class CreateReadOnlyDBInstanceRequest extends $tea.Model {
|
|
|
7730
8251
|
* true
|
|
7731
8252
|
*/
|
|
7732
8253
|
autoRenew?: string;
|
|
8254
|
+
autoUseCoupon?: boolean;
|
|
7733
8255
|
/**
|
|
7734
8256
|
* @remarks
|
|
7735
8257
|
* A reserved parameter. You do not need to specify this parameter.
|
|
@@ -7877,7 +8399,7 @@ export declare class CreateReadOnlyDBInstanceRequest extends $tea.Model {
|
|
|
7877
8399
|
*
|
|
7878
8400
|
* Default value: VPC. If you set this parameter to VPC, you must also specify the **VPCId** and **VSwitchId** parameters.
|
|
7879
8401
|
*
|
|
7880
|
-
* >
|
|
8402
|
+
* > The network type of the read-only instance can be different from the network type of the primary instance.
|
|
7881
8403
|
*
|
|
7882
8404
|
* @example
|
|
7883
8405
|
* Classic
|
|
@@ -7943,6 +8465,7 @@ export declare class CreateReadOnlyDBInstanceRequest extends $tea.Model {
|
|
|
7943
8465
|
* 172.16.XX.XX
|
|
7944
8466
|
*/
|
|
7945
8467
|
privateIpAddress?: string;
|
|
8468
|
+
promotionCode?: string;
|
|
7946
8469
|
/**
|
|
7947
8470
|
* @remarks
|
|
7948
8471
|
* The region ID. The read-only instance and the primary instance must reside in the same region. You can call the DescribeRegions operation to query the most recent region list.
|
|
@@ -8023,6 +8546,10 @@ export declare class CreateReadOnlyDBInstanceRequest extends $tea.Model {
|
|
|
8023
8546
|
* @remarks
|
|
8024
8547
|
* The zone ID. You can call the DescribeRegions operation to query the zone ID.
|
|
8025
8548
|
*
|
|
8549
|
+
* * If you use the single-zone deployment method, set this parameter to the ID of one zone. Example: `cn-hangzhou-b`.
|
|
8550
|
+
* * If you use the multi-zone deployment method, set this parameter to the IDs of multiple zones and separate the IDs with colons (:). Example: `cn-hangzhou-b:cn-hangzhou-c`.
|
|
8551
|
+
* * The number of zone IDs that you specify must be less than or equal to the number of nodes created for the read-only instance. If you create a read-only instance that runs RDS Basic Edition, only one node is provisioned. If you create a read-only instance that runs RDS High-availability Edition, one primary node and one secondary node are provisioned.
|
|
8552
|
+
*
|
|
8026
8553
|
* This parameter is required.
|
|
8027
8554
|
*
|
|
8028
8555
|
* @example
|
|
@@ -10015,6 +10542,127 @@ export declare class DeletePostgresExtensionsResponse extends $tea.Model {
|
|
|
10015
10542
|
[key: string]: any;
|
|
10016
10543
|
});
|
|
10017
10544
|
}
|
|
10545
|
+
export declare class DeleteRCClusterNodesRequest extends $tea.Model {
|
|
10546
|
+
/**
|
|
10547
|
+
* @remarks
|
|
10548
|
+
* The instance IDs.
|
|
10549
|
+
*/
|
|
10550
|
+
instanceIds?: string[];
|
|
10551
|
+
/**
|
|
10552
|
+
* @remarks
|
|
10553
|
+
* The node information.
|
|
10554
|
+
*/
|
|
10555
|
+
nodes?: string[];
|
|
10556
|
+
/**
|
|
10557
|
+
* @remarks
|
|
10558
|
+
* The region ID.
|
|
10559
|
+
*
|
|
10560
|
+
* @example
|
|
10561
|
+
* cn-hangzhou
|
|
10562
|
+
*/
|
|
10563
|
+
regionId?: string;
|
|
10564
|
+
/**
|
|
10565
|
+
* @remarks
|
|
10566
|
+
* The virtual private cloud (VPC) ID.
|
|
10567
|
+
*
|
|
10568
|
+
* > This is a reserved parameter.
|
|
10569
|
+
*
|
|
10570
|
+
* @example
|
|
10571
|
+
* None
|
|
10572
|
+
*/
|
|
10573
|
+
vpcId?: string;
|
|
10574
|
+
static names(): {
|
|
10575
|
+
[key: string]: string;
|
|
10576
|
+
};
|
|
10577
|
+
static types(): {
|
|
10578
|
+
[key: string]: any;
|
|
10579
|
+
};
|
|
10580
|
+
constructor(map?: {
|
|
10581
|
+
[key: string]: any;
|
|
10582
|
+
});
|
|
10583
|
+
}
|
|
10584
|
+
export declare class DeleteRCClusterNodesShrinkRequest extends $tea.Model {
|
|
10585
|
+
/**
|
|
10586
|
+
* @remarks
|
|
10587
|
+
* The instance IDs.
|
|
10588
|
+
*/
|
|
10589
|
+
instanceIdsShrink?: string;
|
|
10590
|
+
/**
|
|
10591
|
+
* @remarks
|
|
10592
|
+
* The node information.
|
|
10593
|
+
*/
|
|
10594
|
+
nodesShrink?: string;
|
|
10595
|
+
/**
|
|
10596
|
+
* @remarks
|
|
10597
|
+
* The region ID.
|
|
10598
|
+
*
|
|
10599
|
+
* @example
|
|
10600
|
+
* cn-hangzhou
|
|
10601
|
+
*/
|
|
10602
|
+
regionId?: string;
|
|
10603
|
+
/**
|
|
10604
|
+
* @remarks
|
|
10605
|
+
* The virtual private cloud (VPC) ID.
|
|
10606
|
+
*
|
|
10607
|
+
* > This is a reserved parameter.
|
|
10608
|
+
*
|
|
10609
|
+
* @example
|
|
10610
|
+
* None
|
|
10611
|
+
*/
|
|
10612
|
+
vpcId?: string;
|
|
10613
|
+
static names(): {
|
|
10614
|
+
[key: string]: string;
|
|
10615
|
+
};
|
|
10616
|
+
static types(): {
|
|
10617
|
+
[key: string]: any;
|
|
10618
|
+
};
|
|
10619
|
+
constructor(map?: {
|
|
10620
|
+
[key: string]: any;
|
|
10621
|
+
});
|
|
10622
|
+
}
|
|
10623
|
+
export declare class DeleteRCClusterNodesResponseBody extends $tea.Model {
|
|
10624
|
+
/**
|
|
10625
|
+
* @remarks
|
|
10626
|
+
* The request ID.
|
|
10627
|
+
*
|
|
10628
|
+
* @example
|
|
10629
|
+
* 7E0970A1-0434-5C83-B560-613EBA11B525
|
|
10630
|
+
*/
|
|
10631
|
+
requestId?: string;
|
|
10632
|
+
/**
|
|
10633
|
+
* @remarks
|
|
10634
|
+
* The task ID.
|
|
10635
|
+
*
|
|
10636
|
+
* @example
|
|
10637
|
+
* 238028563
|
|
10638
|
+
*/
|
|
10639
|
+
taskId?: string;
|
|
10640
|
+
static names(): {
|
|
10641
|
+
[key: string]: string;
|
|
10642
|
+
};
|
|
10643
|
+
static types(): {
|
|
10644
|
+
[key: string]: any;
|
|
10645
|
+
};
|
|
10646
|
+
constructor(map?: {
|
|
10647
|
+
[key: string]: any;
|
|
10648
|
+
});
|
|
10649
|
+
}
|
|
10650
|
+
export declare class DeleteRCClusterNodesResponse extends $tea.Model {
|
|
10651
|
+
headers?: {
|
|
10652
|
+
[key: string]: string;
|
|
10653
|
+
};
|
|
10654
|
+
statusCode?: number;
|
|
10655
|
+
body?: DeleteRCClusterNodesResponseBody;
|
|
10656
|
+
static names(): {
|
|
10657
|
+
[key: string]: string;
|
|
10658
|
+
};
|
|
10659
|
+
static types(): {
|
|
10660
|
+
[key: string]: any;
|
|
10661
|
+
};
|
|
10662
|
+
constructor(map?: {
|
|
10663
|
+
[key: string]: any;
|
|
10664
|
+
});
|
|
10665
|
+
}
|
|
10018
10666
|
export declare class DeleteRCDeploymentSetRequest extends $tea.Model {
|
|
10019
10667
|
/**
|
|
10020
10668
|
* @remarks
|
|
@@ -10081,6 +10729,72 @@ export declare class DeleteRCDeploymentSetResponse extends $tea.Model {
|
|
|
10081
10729
|
[key: string]: any;
|
|
10082
10730
|
});
|
|
10083
10731
|
}
|
|
10732
|
+
export declare class DeleteRCDiskRequest extends $tea.Model {
|
|
10733
|
+
/**
|
|
10734
|
+
* @remarks
|
|
10735
|
+
* The ID of the cloud disk that you want to release.
|
|
10736
|
+
*
|
|
10737
|
+
* This parameter is required.
|
|
10738
|
+
*
|
|
10739
|
+
* @example
|
|
10740
|
+
* rcd-wz9c8isqly8637zw****
|
|
10741
|
+
*/
|
|
10742
|
+
diskId?: string;
|
|
10743
|
+
/**
|
|
10744
|
+
* @remarks
|
|
10745
|
+
* The region ID of the instance.
|
|
10746
|
+
*
|
|
10747
|
+
* This parameter is required.
|
|
10748
|
+
*
|
|
10749
|
+
* @example
|
|
10750
|
+
* cn-hangzhou
|
|
10751
|
+
*/
|
|
10752
|
+
regionId?: string;
|
|
10753
|
+
static names(): {
|
|
10754
|
+
[key: string]: string;
|
|
10755
|
+
};
|
|
10756
|
+
static types(): {
|
|
10757
|
+
[key: string]: any;
|
|
10758
|
+
};
|
|
10759
|
+
constructor(map?: {
|
|
10760
|
+
[key: string]: any;
|
|
10761
|
+
});
|
|
10762
|
+
}
|
|
10763
|
+
export declare class DeleteRCDiskResponseBody extends $tea.Model {
|
|
10764
|
+
/**
|
|
10765
|
+
* @remarks
|
|
10766
|
+
* The request ID.
|
|
10767
|
+
*
|
|
10768
|
+
* @example
|
|
10769
|
+
* 8BE834C8-3C25-5AF8-BE3E-C8A690602A7F
|
|
10770
|
+
*/
|
|
10771
|
+
requestId?: string;
|
|
10772
|
+
static names(): {
|
|
10773
|
+
[key: string]: string;
|
|
10774
|
+
};
|
|
10775
|
+
static types(): {
|
|
10776
|
+
[key: string]: any;
|
|
10777
|
+
};
|
|
10778
|
+
constructor(map?: {
|
|
10779
|
+
[key: string]: any;
|
|
10780
|
+
});
|
|
10781
|
+
}
|
|
10782
|
+
export declare class DeleteRCDiskResponse extends $tea.Model {
|
|
10783
|
+
headers?: {
|
|
10784
|
+
[key: string]: string;
|
|
10785
|
+
};
|
|
10786
|
+
statusCode?: number;
|
|
10787
|
+
body?: DeleteRCDiskResponseBody;
|
|
10788
|
+
static names(): {
|
|
10789
|
+
[key: string]: string;
|
|
10790
|
+
};
|
|
10791
|
+
static types(): {
|
|
10792
|
+
[key: string]: any;
|
|
10793
|
+
};
|
|
10794
|
+
constructor(map?: {
|
|
10795
|
+
[key: string]: any;
|
|
10796
|
+
});
|
|
10797
|
+
}
|
|
10084
10798
|
export declare class DeleteRCInstanceRequest extends $tea.Model {
|
|
10085
10799
|
force?: boolean;
|
|
10086
10800
|
/**
|
|
@@ -10284,6 +10998,83 @@ export declare class DeleteRCInstancesResponse extends $tea.Model {
|
|
|
10284
10998
|
[key: string]: any;
|
|
10285
10999
|
});
|
|
10286
11000
|
}
|
|
11001
|
+
export declare class DeleteRCSnapshotRequest extends $tea.Model {
|
|
11002
|
+
/**
|
|
11003
|
+
* @remarks
|
|
11004
|
+
* Specifies whether to forcefully delete the snapshot that is used to create cloud disks. Valid values:
|
|
11005
|
+
*
|
|
11006
|
+
* * **true**: forcefully deletes the snapshot After the snapshot is forcefully deleted, the cloud disks created from the snapshot cannot be re-initialized.
|
|
11007
|
+
* * **false**(default): does not forcefully delete the snapshot.
|
|
11008
|
+
*
|
|
11009
|
+
* @example
|
|
11010
|
+
* false
|
|
11011
|
+
*/
|
|
11012
|
+
force?: boolean;
|
|
11013
|
+
/**
|
|
11014
|
+
* @remarks
|
|
11015
|
+
* The region ID.
|
|
11016
|
+
*
|
|
11017
|
+
* This parameter is required.
|
|
11018
|
+
*
|
|
11019
|
+
* @example
|
|
11020
|
+
* cn-hangzhou
|
|
11021
|
+
*/
|
|
11022
|
+
regionId?: string;
|
|
11023
|
+
/**
|
|
11024
|
+
* @remarks
|
|
11025
|
+
* The snapshot ID.
|
|
11026
|
+
*
|
|
11027
|
+
* This parameter is required.
|
|
11028
|
+
*
|
|
11029
|
+
* @example
|
|
11030
|
+
* rcds-7mbefjzkqccvdev****
|
|
11031
|
+
*/
|
|
11032
|
+
snapshotId?: string;
|
|
11033
|
+
static names(): {
|
|
11034
|
+
[key: string]: string;
|
|
11035
|
+
};
|
|
11036
|
+
static types(): {
|
|
11037
|
+
[key: string]: any;
|
|
11038
|
+
};
|
|
11039
|
+
constructor(map?: {
|
|
11040
|
+
[key: string]: any;
|
|
11041
|
+
});
|
|
11042
|
+
}
|
|
11043
|
+
export declare class DeleteRCSnapshotResponseBody extends $tea.Model {
|
|
11044
|
+
/**
|
|
11045
|
+
* @remarks
|
|
11046
|
+
* The request ID.
|
|
11047
|
+
*
|
|
11048
|
+
* @example
|
|
11049
|
+
* 8BE834C8-3C25-5AF8-BE3E-C8A690602A7F
|
|
11050
|
+
*/
|
|
11051
|
+
requestId?: string;
|
|
11052
|
+
static names(): {
|
|
11053
|
+
[key: string]: string;
|
|
11054
|
+
};
|
|
11055
|
+
static types(): {
|
|
11056
|
+
[key: string]: any;
|
|
11057
|
+
};
|
|
11058
|
+
constructor(map?: {
|
|
11059
|
+
[key: string]: any;
|
|
11060
|
+
});
|
|
11061
|
+
}
|
|
11062
|
+
export declare class DeleteRCSnapshotResponse extends $tea.Model {
|
|
11063
|
+
headers?: {
|
|
11064
|
+
[key: string]: string;
|
|
11065
|
+
};
|
|
11066
|
+
statusCode?: number;
|
|
11067
|
+
body?: DeleteRCSnapshotResponseBody;
|
|
11068
|
+
static names(): {
|
|
11069
|
+
[key: string]: string;
|
|
11070
|
+
};
|
|
11071
|
+
static types(): {
|
|
11072
|
+
[key: string]: any;
|
|
11073
|
+
};
|
|
11074
|
+
constructor(map?: {
|
|
11075
|
+
[key: string]: any;
|
|
11076
|
+
});
|
|
11077
|
+
}
|
|
10287
11078
|
export declare class DeleteReplicationLinkRequest extends $tea.Model {
|
|
10288
11079
|
/**
|
|
10289
11080
|
* @remarks
|
|
@@ -11126,6 +11917,14 @@ export declare class DescribeAccountsResponseBody extends $tea.Model {
|
|
|
11126
11917
|
* A2E94301-D07F-4457-9B49-6AA2BB388C85
|
|
11127
11918
|
*/
|
|
11128
11919
|
requestId?: string;
|
|
11920
|
+
/**
|
|
11921
|
+
* @remarks
|
|
11922
|
+
* The resource group ID.
|
|
11923
|
+
*
|
|
11924
|
+
* @example
|
|
11925
|
+
* rg-acfmy****
|
|
11926
|
+
*/
|
|
11927
|
+
resourceGroupId?: string;
|
|
11129
11928
|
/**
|
|
11130
11929
|
* @remarks
|
|
11131
11930
|
* The first time when the system admin account was enabled. The time follows the ISO 8601 standard in the *yyyy-MM-dd*T*HH:mm:ss*Z format. The time is displayed in UTC.
|
|
@@ -16809,6 +17608,14 @@ export declare class DescribeDBInstanceTDEResponseBody extends $tea.Model {
|
|
|
16809
17608
|
* > If your instance runs SQL Server 2019 SE or SQL Server EE, you can specify whether to enable TDE at the database level when you enable TDE at the instance level.
|
|
16810
17609
|
*/
|
|
16811
17610
|
databases?: DescribeDBInstanceTDEResponseBodyDatabases;
|
|
17611
|
+
/**
|
|
17612
|
+
* @remarks
|
|
17613
|
+
* The ID of the custom key.
|
|
17614
|
+
*
|
|
17615
|
+
* @example
|
|
17616
|
+
* 749c1df7-****-****-****-****
|
|
17617
|
+
*/
|
|
17618
|
+
encryptionKey?: string;
|
|
16812
17619
|
/**
|
|
16813
17620
|
* @remarks
|
|
16814
17621
|
* The ID of the request.
|
|
@@ -18118,7 +18925,7 @@ export declare class DescribeDBProxyRequest extends $tea.Model {
|
|
|
18118
18925
|
DBInstanceId?: string;
|
|
18119
18926
|
/**
|
|
18120
18927
|
* @remarks
|
|
18121
|
-
* A
|
|
18928
|
+
* A deprecated parameter. You do not need to specify this parameter.
|
|
18122
18929
|
*
|
|
18123
18930
|
* @example
|
|
18124
18931
|
* normal
|
|
@@ -18231,27 +19038,38 @@ export declare class DescribeDBProxyResponseBody extends $tea.Model {
|
|
|
18231
19038
|
DBProxyInstanceStatus?: string;
|
|
18232
19039
|
/**
|
|
18233
19040
|
* @remarks
|
|
18234
|
-
* The type of the database proxy that is enabled on the instance.
|
|
19041
|
+
* The type of the database proxy that is enabled on the instance. Valid values:
|
|
18235
19042
|
*
|
|
18236
|
-
* * 1: shared proxy
|
|
18237
|
-
* * 2: dedicated proxy
|
|
19043
|
+
* * 1: shared database proxy
|
|
19044
|
+
* * 2: dedicated database proxy
|
|
19045
|
+
* * 3: general-purpose database proxy
|
|
18238
19046
|
*
|
|
18239
|
-
* > ApsaraDB RDS for PostgreSQL
|
|
19047
|
+
* > ApsaraDB RDS for PostgreSQL does not support shared database proxies.
|
|
18240
19048
|
*
|
|
18241
19049
|
* @example
|
|
18242
19050
|
* 2
|
|
18243
19051
|
*/
|
|
18244
19052
|
DBProxyInstanceType?: string;
|
|
19053
|
+
/**
|
|
19054
|
+
* @remarks
|
|
19055
|
+
* Internal parameters, no need to pay attention.
|
|
19056
|
+
*
|
|
19057
|
+
* @example
|
|
19058
|
+
* 18
|
|
19059
|
+
*/
|
|
18245
19060
|
DBProxyKindCode?: string;
|
|
19061
|
+
/**
|
|
19062
|
+
* @remarks
|
|
19063
|
+
* The proxy node list.
|
|
19064
|
+
*/
|
|
18246
19065
|
DBProxyNodes?: DescribeDBProxyResponseBodyDBProxyNodes;
|
|
18247
19066
|
/**
|
|
18248
19067
|
* @remarks
|
|
18249
|
-
*
|
|
19068
|
+
* The status of persistence connections. Valid values:
|
|
18250
19069
|
*
|
|
18251
|
-
*
|
|
18252
|
-
*
|
|
18253
|
-
*
|
|
18254
|
-
* - Unsupported: The instance does not support connection persistence
|
|
19070
|
+
* * **Enabled**
|
|
19071
|
+
* * **Disabled**
|
|
19072
|
+
* * **Unsupported**
|
|
18255
19073
|
*
|
|
18256
19074
|
* @example
|
|
18257
19075
|
* Disabled
|
|
@@ -18407,6 +19225,7 @@ export declare class DescribeDBProxyEndpointResponseBody extends $tea.Model {
|
|
|
18407
19225
|
* keaxncrjluwu0gue****
|
|
18408
19226
|
*/
|
|
18409
19227
|
DBProxyEndpointId?: string;
|
|
19228
|
+
DBProxyEndpointMinSlaveCount?: string;
|
|
18410
19229
|
/**
|
|
18411
19230
|
* @remarks
|
|
18412
19231
|
* An internal parameter. You can ignore this parameter.
|
|
@@ -18417,12 +19236,13 @@ export declare class DescribeDBProxyEndpointResponseBody extends $tea.Model {
|
|
|
18417
19236
|
DBProxyEngineType?: string;
|
|
18418
19237
|
/**
|
|
18419
19238
|
* @remarks
|
|
18420
|
-
* The configuration of the proxy terminal. The value of this parameter is a JSON string that consists of the following
|
|
19239
|
+
* The configuration of the proxy terminal. The value of this parameter is a JSON string that consists of the following parameters:
|
|
18421
19240
|
*
|
|
18422
19241
|
* * **TransactionReadSqlRouteOptimizeStatus**: the status of the transaction splitting feature. Valid values: **0** and **1**. The value 0 indicates that the feature is disabled. The value 1 indicates that the feature is enabled.
|
|
18423
|
-
* * **ConnectionPersist**: the status of the connection pooling feature. Valid values: **0**, **1**, and **2**. The value 0 indicates that the connection pooling feature is disabled. The value 1 indicates that the session connection pooling feature is enabled. The value 2 indicates that the transaction connection pooling feature is enabled.
|
|
19242
|
+
* * **ConnectionPersist**: the status of the connection pooling feature. Valid values: **0**, **1**, and **2**. The value 0 indicates that the connection pooling feature is disabled. The value 1 indicates that the session-level connection pooling feature is enabled. The value 2 indicates that the transaction-level connection pooling feature is enabled.
|
|
18424
19243
|
* * **ReadWriteSpliting**: the status of the read/write splitting feature. Valid values: **0** and **1**. The value 0 indicates that the feature is disabled. The value 1 indicates that the feature is enabled.
|
|
18425
|
-
* * **
|
|
19244
|
+
* * **AZProximityAccess**: the status of the nearest access feature. Valid values: **0** and **1**. The value 0 indicates that the feature is disabled. The value 1 indicates that the feature is enabled.
|
|
19245
|
+
* * **PinPreparedStmt**: an internal parameter that is available only for ApsaraDB RDS for PostgrSQL instances.
|
|
18426
19246
|
*
|
|
18427
19247
|
* > If the instance runs PostgreSQL, you can change only the value of the **ReadWriteSpliting** field. The **TransactionReadSqlRouteOptimizeStatus** and **PinPreparedStmt** fields are set to their default values 1.
|
|
18428
19248
|
*
|
|
@@ -18430,6 +19250,10 @@ export declare class DescribeDBProxyEndpointResponseBody extends $tea.Model {
|
|
|
18430
19250
|
* TransactionReadSqlRouteOptimizeStatus:1;ConnectionPersist:0;ReadWriteSpliting:1
|
|
18431
19251
|
*/
|
|
18432
19252
|
DBProxyFeatures?: string;
|
|
19253
|
+
/**
|
|
19254
|
+
* @remarks
|
|
19255
|
+
* The proxy nodes that are associated with the proxy terminal.
|
|
19256
|
+
*/
|
|
18433
19257
|
DBProxyNodes?: DescribeDBProxyEndpointResponseBodyDBProxyNodes;
|
|
18434
19258
|
/**
|
|
18435
19259
|
* @remarks
|
|
@@ -18450,7 +19274,21 @@ export declare class DescribeDBProxyEndpointResponseBody extends $tea.Model {
|
|
|
18450
19274
|
* ReadWrite
|
|
18451
19275
|
*/
|
|
18452
19276
|
dbProxyEndpointReadWriteMode?: string;
|
|
19277
|
+
/**
|
|
19278
|
+
* @remarks
|
|
19279
|
+
* The vSwitch ID of the proxy terminal.
|
|
19280
|
+
*
|
|
19281
|
+
* @example
|
|
19282
|
+
* vsw-****
|
|
19283
|
+
*/
|
|
18453
19284
|
dbProxyEndpointVswitchId?: string;
|
|
19285
|
+
/**
|
|
19286
|
+
* @remarks
|
|
19287
|
+
* The zone ID of the proxy terminal.
|
|
19288
|
+
*
|
|
19289
|
+
* @example
|
|
19290
|
+
* cn-hangzhou-c
|
|
19291
|
+
*/
|
|
18454
19292
|
dbProxyEndpointZoneId?: string;
|
|
18455
19293
|
/**
|
|
18456
19294
|
* @remarks
|
|
@@ -18554,6 +19392,7 @@ export declare class DescribeDBProxyPerformanceRequest extends $tea.Model {
|
|
|
18554
19392
|
* DedicatedProxy
|
|
18555
19393
|
*/
|
|
18556
19394
|
DBProxyInstanceType?: string;
|
|
19395
|
+
dimension?: string;
|
|
18557
19396
|
/**
|
|
18558
19397
|
* @remarks
|
|
18559
19398
|
* The end of the time range to query. The end time must be later than the start 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.
|
|
@@ -23483,7 +24322,7 @@ export declare class DescribePriceRequest extends $tea.Model {
|
|
|
23483
24322
|
instanceUsedType?: number;
|
|
23484
24323
|
/**
|
|
23485
24324
|
* @remarks
|
|
23486
|
-
* The order
|
|
24325
|
+
* The type of the order. Valid values:
|
|
23487
24326
|
*
|
|
23488
24327
|
* * **BUY**: purchase order
|
|
23489
24328
|
* * **UPGRADE**: specification change order
|
|
@@ -23546,7 +24385,7 @@ export declare class DescribePriceRequest extends $tea.Model {
|
|
|
23546
24385
|
timeType?: string;
|
|
23547
24386
|
/**
|
|
23548
24387
|
* @remarks
|
|
23549
|
-
* The subscription duration of the instance.
|
|
24388
|
+
* The subscription duration of the instance. Valid values:
|
|
23550
24389
|
*
|
|
23551
24390
|
* * If you set the **TimeType** parameter to **Year**, the value of the UsedTime parameter ranges from **1 to 100**.
|
|
23552
24391
|
* * If you set the **TimeType** parameter to **Month**, the value of the UsedTime parameter ranges from **1 to 999**.
|
|
@@ -23705,7 +24544,7 @@ export declare class DescribePriceShrinkRequest extends $tea.Model {
|
|
|
23705
24544
|
instanceUsedType?: number;
|
|
23706
24545
|
/**
|
|
23707
24546
|
* @remarks
|
|
23708
|
-
* The order
|
|
24547
|
+
* The type of the order. Valid values:
|
|
23709
24548
|
*
|
|
23710
24549
|
* * **BUY**: purchase order
|
|
23711
24550
|
* * **UPGRADE**: specification change order
|
|
@@ -23768,7 +24607,7 @@ export declare class DescribePriceShrinkRequest extends $tea.Model {
|
|
|
23768
24607
|
timeType?: string;
|
|
23769
24608
|
/**
|
|
23770
24609
|
* @remarks
|
|
23771
|
-
* The subscription duration of the instance.
|
|
24610
|
+
* The subscription duration of the instance. Valid values:
|
|
23772
24611
|
*
|
|
23773
24612
|
* * If you set the **TimeType** parameter to **Year**, the value of the UsedTime parameter ranges from **1 to 100**.
|
|
23774
24613
|
* * If you set the **TimeType** parameter to **Month**, the value of the UsedTime parameter ranges from **1 to 999**.
|
|
@@ -23979,6 +24818,247 @@ export declare class DescribeQuickSaleConfigResponse extends $tea.Model {
|
|
|
23979
24818
|
[key: string]: any;
|
|
23980
24819
|
});
|
|
23981
24820
|
}
|
|
24821
|
+
export declare class DescribeRCClusterConfigRequest extends $tea.Model {
|
|
24822
|
+
/**
|
|
24823
|
+
* @remarks
|
|
24824
|
+
* The region ID.
|
|
24825
|
+
*
|
|
24826
|
+
* @example
|
|
24827
|
+
* cn-hangzhou
|
|
24828
|
+
*/
|
|
24829
|
+
regionId?: string;
|
|
24830
|
+
/**
|
|
24831
|
+
* @remarks
|
|
24832
|
+
* The validity period of the temporary kubeconfig file. Unit: minutes. Valid values: 15 to 4320.
|
|
24833
|
+
*
|
|
24834
|
+
* > If you do not specify this parameter, the system specifies a longer validity period. The validity period is returned in the `expiration` parameter.
|
|
24835
|
+
*
|
|
24836
|
+
* @example
|
|
24837
|
+
* 20
|
|
24838
|
+
*/
|
|
24839
|
+
temporaryDurationMinutes?: number;
|
|
24840
|
+
/**
|
|
24841
|
+
* @remarks
|
|
24842
|
+
* The virtual private cloud (VPC) ID.
|
|
24843
|
+
*
|
|
24844
|
+
* > This is a reserved parameter.
|
|
24845
|
+
*
|
|
24846
|
+
* @example
|
|
24847
|
+
* None
|
|
24848
|
+
*/
|
|
24849
|
+
vpcId?: string;
|
|
24850
|
+
static names(): {
|
|
24851
|
+
[key: string]: string;
|
|
24852
|
+
};
|
|
24853
|
+
static types(): {
|
|
24854
|
+
[key: string]: any;
|
|
24855
|
+
};
|
|
24856
|
+
constructor(map?: {
|
|
24857
|
+
[key: string]: any;
|
|
24858
|
+
});
|
|
24859
|
+
}
|
|
24860
|
+
export declare class DescribeRCClusterConfigResponseBody extends $tea.Model {
|
|
24861
|
+
/**
|
|
24862
|
+
* @remarks
|
|
24863
|
+
* The kubeconfig file of the cluster.
|
|
24864
|
+
*
|
|
24865
|
+
* @example
|
|
24866
|
+
* apiVersion: v1****
|
|
24867
|
+
*/
|
|
24868
|
+
config?: string;
|
|
24869
|
+
/**
|
|
24870
|
+
* @remarks
|
|
24871
|
+
* The expiration time of the kubeconfig file. Format: the UTC time in the RFC3339 format.
|
|
24872
|
+
*
|
|
24873
|
+
* @example
|
|
24874
|
+
* 2024-03-10T09:56:17Z
|
|
24875
|
+
*/
|
|
24876
|
+
expiration?: string;
|
|
24877
|
+
/**
|
|
24878
|
+
* @remarks
|
|
24879
|
+
* The request ID.
|
|
24880
|
+
*
|
|
24881
|
+
* @example
|
|
24882
|
+
* E9DD55F4-1A5F-48CA-BA57-DFB3CA8C4C34
|
|
24883
|
+
*/
|
|
24884
|
+
requestId?: string;
|
|
24885
|
+
static names(): {
|
|
24886
|
+
[key: string]: string;
|
|
24887
|
+
};
|
|
24888
|
+
static types(): {
|
|
24889
|
+
[key: string]: any;
|
|
24890
|
+
};
|
|
24891
|
+
constructor(map?: {
|
|
24892
|
+
[key: string]: any;
|
|
24893
|
+
});
|
|
24894
|
+
}
|
|
24895
|
+
export declare class DescribeRCClusterConfigResponse extends $tea.Model {
|
|
24896
|
+
headers?: {
|
|
24897
|
+
[key: string]: string;
|
|
24898
|
+
};
|
|
24899
|
+
statusCode?: number;
|
|
24900
|
+
body?: DescribeRCClusterConfigResponseBody;
|
|
24901
|
+
static names(): {
|
|
24902
|
+
[key: string]: string;
|
|
24903
|
+
};
|
|
24904
|
+
static types(): {
|
|
24905
|
+
[key: string]: any;
|
|
24906
|
+
};
|
|
24907
|
+
constructor(map?: {
|
|
24908
|
+
[key: string]: any;
|
|
24909
|
+
});
|
|
24910
|
+
}
|
|
24911
|
+
export declare class DescribeRCClusterNodesRequest extends $tea.Model {
|
|
24912
|
+
/**
|
|
24913
|
+
* @remarks
|
|
24914
|
+
* The page number.
|
|
24915
|
+
*
|
|
24916
|
+
* @example
|
|
24917
|
+
* 1
|
|
24918
|
+
*/
|
|
24919
|
+
pageNumber?: number;
|
|
24920
|
+
/**
|
|
24921
|
+
* @remarks
|
|
24922
|
+
* The number of entries per page. Valid values: **1 to 100**.
|
|
24923
|
+
*
|
|
24924
|
+
* Default value: **30**.
|
|
24925
|
+
*
|
|
24926
|
+
* @example
|
|
24927
|
+
* 30
|
|
24928
|
+
*/
|
|
24929
|
+
pageSize?: number;
|
|
24930
|
+
/**
|
|
24931
|
+
* @remarks
|
|
24932
|
+
* The region ID.
|
|
24933
|
+
*
|
|
24934
|
+
* @example
|
|
24935
|
+
* cn-hangzhou
|
|
24936
|
+
*/
|
|
24937
|
+
regionId?: string;
|
|
24938
|
+
/**
|
|
24939
|
+
* @remarks
|
|
24940
|
+
* The virtual private cloud (VPC) ID.
|
|
24941
|
+
*
|
|
24942
|
+
* > This is a reserved parameter.
|
|
24943
|
+
*
|
|
24944
|
+
* @example
|
|
24945
|
+
* None
|
|
24946
|
+
*/
|
|
24947
|
+
vpcId?: string;
|
|
24948
|
+
static names(): {
|
|
24949
|
+
[key: string]: string;
|
|
24950
|
+
};
|
|
24951
|
+
static types(): {
|
|
24952
|
+
[key: string]: any;
|
|
24953
|
+
};
|
|
24954
|
+
constructor(map?: {
|
|
24955
|
+
[key: string]: any;
|
|
24956
|
+
});
|
|
24957
|
+
}
|
|
24958
|
+
export declare class DescribeRCClusterNodesResponseBody extends $tea.Model {
|
|
24959
|
+
/**
|
|
24960
|
+
* @remarks
|
|
24961
|
+
* The details of the nodes.
|
|
24962
|
+
*/
|
|
24963
|
+
nodes?: DescribeRCClusterNodesResponseBodyNodes[];
|
|
24964
|
+
/**
|
|
24965
|
+
* @remarks
|
|
24966
|
+
* The pagination information.
|
|
24967
|
+
*/
|
|
24968
|
+
page?: DescribeRCClusterNodesResponseBodyPage;
|
|
24969
|
+
/**
|
|
24970
|
+
* @remarks
|
|
24971
|
+
* The request ID.
|
|
24972
|
+
*
|
|
24973
|
+
* @example
|
|
24974
|
+
* 16C62438-491B-5C02-9B49-BA924A1372A2
|
|
24975
|
+
*/
|
|
24976
|
+
requestId?: string;
|
|
24977
|
+
static names(): {
|
|
24978
|
+
[key: string]: string;
|
|
24979
|
+
};
|
|
24980
|
+
static types(): {
|
|
24981
|
+
[key: string]: any;
|
|
24982
|
+
};
|
|
24983
|
+
constructor(map?: {
|
|
24984
|
+
[key: string]: any;
|
|
24985
|
+
});
|
|
24986
|
+
}
|
|
24987
|
+
export declare class DescribeRCClusterNodesResponse extends $tea.Model {
|
|
24988
|
+
headers?: {
|
|
24989
|
+
[key: string]: string;
|
|
24990
|
+
};
|
|
24991
|
+
statusCode?: number;
|
|
24992
|
+
body?: DescribeRCClusterNodesResponseBody;
|
|
24993
|
+
static names(): {
|
|
24994
|
+
[key: string]: string;
|
|
24995
|
+
};
|
|
24996
|
+
static types(): {
|
|
24997
|
+
[key: string]: any;
|
|
24998
|
+
};
|
|
24999
|
+
constructor(map?: {
|
|
25000
|
+
[key: string]: any;
|
|
25001
|
+
});
|
|
25002
|
+
}
|
|
25003
|
+
export declare class DescribeRCClustersRequest extends $tea.Model {
|
|
25004
|
+
/**
|
|
25005
|
+
* @remarks
|
|
25006
|
+
* The region ID.
|
|
25007
|
+
*
|
|
25008
|
+
* @example
|
|
25009
|
+
* cn-hangzhou
|
|
25010
|
+
*/
|
|
25011
|
+
regionId?: string;
|
|
25012
|
+
static names(): {
|
|
25013
|
+
[key: string]: string;
|
|
25014
|
+
};
|
|
25015
|
+
static types(): {
|
|
25016
|
+
[key: string]: any;
|
|
25017
|
+
};
|
|
25018
|
+
constructor(map?: {
|
|
25019
|
+
[key: string]: any;
|
|
25020
|
+
});
|
|
25021
|
+
}
|
|
25022
|
+
export declare class DescribeRCClustersResponseBody extends $tea.Model {
|
|
25023
|
+
/**
|
|
25024
|
+
* @remarks
|
|
25025
|
+
* The information about the clusters.
|
|
25026
|
+
*/
|
|
25027
|
+
clusters?: DescribeRCClustersResponseBodyClusters[];
|
|
25028
|
+
/**
|
|
25029
|
+
* @remarks
|
|
25030
|
+
* The request ID.
|
|
25031
|
+
*
|
|
25032
|
+
* @example
|
|
25033
|
+
* 2875D608-A228-53D7-B8C9-35F13EDCF36D
|
|
25034
|
+
*/
|
|
25035
|
+
requestId?: string;
|
|
25036
|
+
static names(): {
|
|
25037
|
+
[key: string]: string;
|
|
25038
|
+
};
|
|
25039
|
+
static types(): {
|
|
25040
|
+
[key: string]: any;
|
|
25041
|
+
};
|
|
25042
|
+
constructor(map?: {
|
|
25043
|
+
[key: string]: any;
|
|
25044
|
+
});
|
|
25045
|
+
}
|
|
25046
|
+
export declare class DescribeRCClustersResponse extends $tea.Model {
|
|
25047
|
+
headers?: {
|
|
25048
|
+
[key: string]: string;
|
|
25049
|
+
};
|
|
25050
|
+
statusCode?: number;
|
|
25051
|
+
body?: DescribeRCClustersResponseBody;
|
|
25052
|
+
static names(): {
|
|
25053
|
+
[key: string]: string;
|
|
25054
|
+
};
|
|
25055
|
+
static types(): {
|
|
25056
|
+
[key: string]: any;
|
|
25057
|
+
};
|
|
25058
|
+
constructor(map?: {
|
|
25059
|
+
[key: string]: any;
|
|
25060
|
+
});
|
|
25061
|
+
}
|
|
23982
25062
|
export declare class DescribeRCDeploymentSetsRequest extends $tea.Model {
|
|
23983
25063
|
/**
|
|
23984
25064
|
* @remarks
|
|
@@ -24043,6 +25123,7 @@ export declare class DescribeRCDeploymentSetsRequest extends $tea.Model {
|
|
|
24043
25123
|
* Availability
|
|
24044
25124
|
*/
|
|
24045
25125
|
strategy?: string;
|
|
25126
|
+
tag?: string;
|
|
24046
25127
|
static names(): {
|
|
24047
25128
|
[key: string]: string;
|
|
24048
25129
|
};
|
|
@@ -24125,6 +25206,123 @@ export declare class DescribeRCDeploymentSetsResponse extends $tea.Model {
|
|
|
24125
25206
|
[key: string]: any;
|
|
24126
25207
|
});
|
|
24127
25208
|
}
|
|
25209
|
+
export declare class DescribeRCDisksRequest extends $tea.Model {
|
|
25210
|
+
/**
|
|
25211
|
+
* @remarks
|
|
25212
|
+
* The IDs of cloud disks, local disks, or elastic ephemeral disks. The value is a JSON array that consists of up to 100 disk IDs. Separate the disk IDs with commas (,).
|
|
25213
|
+
*
|
|
25214
|
+
* @example
|
|
25215
|
+
* ["rcd-bp67acfmxazb4p****", "rcd-bp67acfmxazb4g****", … "rcd-bp67acfmxazb4d****"]
|
|
25216
|
+
*/
|
|
25217
|
+
diskIds?: string;
|
|
25218
|
+
/**
|
|
25219
|
+
* @remarks
|
|
25220
|
+
* The instance ID.
|
|
25221
|
+
*
|
|
25222
|
+
* @example
|
|
25223
|
+
* rc-dh2jf9n6j4s14926****
|
|
25224
|
+
*/
|
|
25225
|
+
instanceId?: string;
|
|
25226
|
+
/**
|
|
25227
|
+
* @remarks
|
|
25228
|
+
* The page number.
|
|
25229
|
+
*
|
|
25230
|
+
* @example
|
|
25231
|
+
* 1
|
|
25232
|
+
*/
|
|
25233
|
+
pageNumber?: number;
|
|
25234
|
+
/**
|
|
25235
|
+
* @remarks
|
|
25236
|
+
* The number of entries per page. Valid values: **30** to **100**. Default value: **30**.
|
|
25237
|
+
*
|
|
25238
|
+
* @example
|
|
25239
|
+
* 50
|
|
25240
|
+
*/
|
|
25241
|
+
pageSize?: number;
|
|
25242
|
+
/**
|
|
25243
|
+
* @remarks
|
|
25244
|
+
* The region ID of the instance.
|
|
25245
|
+
*
|
|
25246
|
+
* This parameter is required.
|
|
25247
|
+
*
|
|
25248
|
+
* @example
|
|
25249
|
+
* cn-hangzhou
|
|
25250
|
+
*/
|
|
25251
|
+
regionId?: string;
|
|
25252
|
+
static names(): {
|
|
25253
|
+
[key: string]: string;
|
|
25254
|
+
};
|
|
25255
|
+
static types(): {
|
|
25256
|
+
[key: string]: any;
|
|
25257
|
+
};
|
|
25258
|
+
constructor(map?: {
|
|
25259
|
+
[key: string]: any;
|
|
25260
|
+
});
|
|
25261
|
+
}
|
|
25262
|
+
export declare class DescribeRCDisksResponseBody extends $tea.Model {
|
|
25263
|
+
/**
|
|
25264
|
+
* @remarks
|
|
25265
|
+
* The information about the disks.
|
|
25266
|
+
*/
|
|
25267
|
+
disks?: DescribeRCDisksResponseBodyDisks[];
|
|
25268
|
+
/**
|
|
25269
|
+
* @remarks
|
|
25270
|
+
* The page number.
|
|
25271
|
+
*
|
|
25272
|
+
* @example
|
|
25273
|
+
* 1
|
|
25274
|
+
*/
|
|
25275
|
+
pageNumber?: number;
|
|
25276
|
+
/**
|
|
25277
|
+
* @remarks
|
|
25278
|
+
* The number of entries returned per page.
|
|
25279
|
+
*
|
|
25280
|
+
* @example
|
|
25281
|
+
* 30
|
|
25282
|
+
*/
|
|
25283
|
+
pageSize?: number;
|
|
25284
|
+
/**
|
|
25285
|
+
* @remarks
|
|
25286
|
+
* The request ID.
|
|
25287
|
+
*
|
|
25288
|
+
* @example
|
|
25289
|
+
* 8B993DA9-5272-5414-94E3-4CA8BA0146C2
|
|
25290
|
+
*/
|
|
25291
|
+
requestId?: string;
|
|
25292
|
+
/**
|
|
25293
|
+
* @remarks
|
|
25294
|
+
* The total number of entries returned.
|
|
25295
|
+
*
|
|
25296
|
+
* @example
|
|
25297
|
+
* 12
|
|
25298
|
+
*/
|
|
25299
|
+
totalCount?: number;
|
|
25300
|
+
static names(): {
|
|
25301
|
+
[key: string]: string;
|
|
25302
|
+
};
|
|
25303
|
+
static types(): {
|
|
25304
|
+
[key: string]: any;
|
|
25305
|
+
};
|
|
25306
|
+
constructor(map?: {
|
|
25307
|
+
[key: string]: any;
|
|
25308
|
+
});
|
|
25309
|
+
}
|
|
25310
|
+
export declare class DescribeRCDisksResponse extends $tea.Model {
|
|
25311
|
+
headers?: {
|
|
25312
|
+
[key: string]: string;
|
|
25313
|
+
};
|
|
25314
|
+
statusCode?: number;
|
|
25315
|
+
body?: DescribeRCDisksResponseBody;
|
|
25316
|
+
static names(): {
|
|
25317
|
+
[key: string]: string;
|
|
25318
|
+
};
|
|
25319
|
+
static types(): {
|
|
25320
|
+
[key: string]: any;
|
|
25321
|
+
};
|
|
25322
|
+
constructor(map?: {
|
|
25323
|
+
[key: string]: any;
|
|
25324
|
+
});
|
|
25325
|
+
}
|
|
24128
25326
|
export declare class DescribeRCImageListRequest extends $tea.Model {
|
|
24129
25327
|
/**
|
|
24130
25328
|
* @remarks
|
|
@@ -24137,6 +25335,8 @@ export declare class DescribeRCImageListRequest extends $tea.Model {
|
|
|
24137
25335
|
* x86_64
|
|
24138
25336
|
*/
|
|
24139
25337
|
architecture?: string;
|
|
25338
|
+
imageId?: string;
|
|
25339
|
+
imageName?: string;
|
|
24140
25340
|
/**
|
|
24141
25341
|
* @remarks
|
|
24142
25342
|
* The page number.
|
|
@@ -24322,6 +25522,7 @@ export declare class DescribeRCInstanceAttributeResponseBody extends $tea.Model
|
|
|
24322
25522
|
* The details of the data disk.
|
|
24323
25523
|
*/
|
|
24324
25524
|
dataDisks?: DescribeRCInstanceAttributeResponseBodyDataDisks;
|
|
25525
|
+
dbType?: string;
|
|
24325
25526
|
/**
|
|
24326
25527
|
* @remarks
|
|
24327
25528
|
* The attributes of the dedicated hosts.
|
|
@@ -24550,6 +25751,7 @@ export declare class DescribeRCInstanceAttributeResponseBody extends $tea.Model
|
|
|
24550
25751
|
* b076f6ff-46d1-4234-a608-4e951ed6****
|
|
24551
25752
|
*/
|
|
24552
25753
|
serialNumber?: string;
|
|
25754
|
+
spotStrategy?: string;
|
|
24553
25755
|
/**
|
|
24554
25756
|
* @remarks
|
|
24555
25757
|
* The instance status. Valid values:
|
|
@@ -24628,6 +25830,89 @@ export declare class DescribeRCInstanceAttributeResponse extends $tea.Model {
|
|
|
24628
25830
|
[key: string]: any;
|
|
24629
25831
|
});
|
|
24630
25832
|
}
|
|
25833
|
+
export declare class DescribeRCInstanceVncUrlRequest extends $tea.Model {
|
|
25834
|
+
/**
|
|
25835
|
+
* @remarks
|
|
25836
|
+
* The database engine. Valid values:
|
|
25837
|
+
*
|
|
25838
|
+
* * **mssql**: SQL Server
|
|
25839
|
+
* * **mysql**: MySQL
|
|
25840
|
+
*
|
|
25841
|
+
* @example
|
|
25842
|
+
* mysql
|
|
25843
|
+
*/
|
|
25844
|
+
dbType?: string;
|
|
25845
|
+
/**
|
|
25846
|
+
* @remarks
|
|
25847
|
+
* The instance ID.
|
|
25848
|
+
*
|
|
25849
|
+
* @example
|
|
25850
|
+
* rc-e6e3757b8px27oa5****
|
|
25851
|
+
*/
|
|
25852
|
+
instanceId?: string;
|
|
25853
|
+
/**
|
|
25854
|
+
* @remarks
|
|
25855
|
+
* The region ID.
|
|
25856
|
+
*
|
|
25857
|
+
* @example
|
|
25858
|
+
* cn-chengdu
|
|
25859
|
+
*/
|
|
25860
|
+
regionId?: string;
|
|
25861
|
+
static names(): {
|
|
25862
|
+
[key: string]: string;
|
|
25863
|
+
};
|
|
25864
|
+
static types(): {
|
|
25865
|
+
[key: string]: any;
|
|
25866
|
+
};
|
|
25867
|
+
constructor(map?: {
|
|
25868
|
+
[key: string]: any;
|
|
25869
|
+
});
|
|
25870
|
+
}
|
|
25871
|
+
export declare class DescribeRCInstanceVncUrlResponseBody extends $tea.Model {
|
|
25872
|
+
/**
|
|
25873
|
+
* @remarks
|
|
25874
|
+
* The VNC logon address.
|
|
25875
|
+
*
|
|
25876
|
+
* > The address returned is valid only for 15 seconds. If you do not use the returned address to establish a connection within 15 seconds, the address expires and you must call the operation again to obtain a new address.
|
|
25877
|
+
*
|
|
25878
|
+
* @example
|
|
25879
|
+
* https://g.alicdn.com/aliyun/ecs-console-vnc2/0.0.8/index.html?vncUrl=****&instanceId=i-2vcb1qjj8z5dl8iw****&isWindows=false
|
|
25880
|
+
*/
|
|
25881
|
+
loginUrl?: string;
|
|
25882
|
+
/**
|
|
25883
|
+
* @remarks
|
|
25884
|
+
* The request ID.
|
|
25885
|
+
*
|
|
25886
|
+
* @example
|
|
25887
|
+
* F2911788-25E8-42E5-A3A3-1B38D263F01E
|
|
25888
|
+
*/
|
|
25889
|
+
requestId?: string;
|
|
25890
|
+
static names(): {
|
|
25891
|
+
[key: string]: string;
|
|
25892
|
+
};
|
|
25893
|
+
static types(): {
|
|
25894
|
+
[key: string]: any;
|
|
25895
|
+
};
|
|
25896
|
+
constructor(map?: {
|
|
25897
|
+
[key: string]: any;
|
|
25898
|
+
});
|
|
25899
|
+
}
|
|
25900
|
+
export declare class DescribeRCInstanceVncUrlResponse extends $tea.Model {
|
|
25901
|
+
headers?: {
|
|
25902
|
+
[key: string]: string;
|
|
25903
|
+
};
|
|
25904
|
+
statusCode?: number;
|
|
25905
|
+
body?: DescribeRCInstanceVncUrlResponseBody;
|
|
25906
|
+
static names(): {
|
|
25907
|
+
[key: string]: string;
|
|
25908
|
+
};
|
|
25909
|
+
static types(): {
|
|
25910
|
+
[key: string]: any;
|
|
25911
|
+
};
|
|
25912
|
+
constructor(map?: {
|
|
25913
|
+
[key: string]: any;
|
|
25914
|
+
});
|
|
25915
|
+
}
|
|
24631
25916
|
export declare class DescribeRCInstancesRequest extends $tea.Model {
|
|
24632
25917
|
/**
|
|
24633
25918
|
* @remarks
|
|
@@ -24935,6 +26220,125 @@ export declare class DescribeRCMetricListResponse extends $tea.Model {
|
|
|
24935
26220
|
[key: string]: any;
|
|
24936
26221
|
});
|
|
24937
26222
|
}
|
|
26223
|
+
export declare class DescribeRCSnapshotsRequest extends $tea.Model {
|
|
26224
|
+
/**
|
|
26225
|
+
* @remarks
|
|
26226
|
+
* The cloud disk ID.
|
|
26227
|
+
*
|
|
26228
|
+
* @example
|
|
26229
|
+
* rcd-wz9c8isqly8637zw****
|
|
26230
|
+
*/
|
|
26231
|
+
diskId?: string;
|
|
26232
|
+
/**
|
|
26233
|
+
* @remarks
|
|
26234
|
+
* The page number.
|
|
26235
|
+
*
|
|
26236
|
+
* @example
|
|
26237
|
+
* 1
|
|
26238
|
+
*/
|
|
26239
|
+
pageNumber?: number;
|
|
26240
|
+
/**
|
|
26241
|
+
* @remarks
|
|
26242
|
+
* The number of entries per page. Valid values: **30** to **100**. Default value: **30**.
|
|
26243
|
+
*
|
|
26244
|
+
* @example
|
|
26245
|
+
* 30
|
|
26246
|
+
*/
|
|
26247
|
+
pageSize?: number;
|
|
26248
|
+
/**
|
|
26249
|
+
* @remarks
|
|
26250
|
+
* The region ID. You can call the DescribeRegions operation to query the most recent region list.
|
|
26251
|
+
*
|
|
26252
|
+
* This parameter is required.
|
|
26253
|
+
*
|
|
26254
|
+
* @example
|
|
26255
|
+
* cn-hangzhou
|
|
26256
|
+
*/
|
|
26257
|
+
regionId?: string;
|
|
26258
|
+
/**
|
|
26259
|
+
* @remarks
|
|
26260
|
+
* The snapshot IDs.
|
|
26261
|
+
*
|
|
26262
|
+
* You can specify a maximum of 100 IDs. Separate multiple IDs with commas (,).
|
|
26263
|
+
*
|
|
26264
|
+
* @example
|
|
26265
|
+
* ["rcds-bp67acfmxazb4p****", "rcds-bp67acfmxazb5p****", … "rcds-bp67acfmxazb6p****"]
|
|
26266
|
+
*/
|
|
26267
|
+
snapshotIds?: string;
|
|
26268
|
+
static names(): {
|
|
26269
|
+
[key: string]: string;
|
|
26270
|
+
};
|
|
26271
|
+
static types(): {
|
|
26272
|
+
[key: string]: any;
|
|
26273
|
+
};
|
|
26274
|
+
constructor(map?: {
|
|
26275
|
+
[key: string]: any;
|
|
26276
|
+
});
|
|
26277
|
+
}
|
|
26278
|
+
export declare class DescribeRCSnapshotsResponseBody extends $tea.Model {
|
|
26279
|
+
/**
|
|
26280
|
+
* @remarks
|
|
26281
|
+
* The page number.
|
|
26282
|
+
*
|
|
26283
|
+
* @example
|
|
26284
|
+
* 1
|
|
26285
|
+
*/
|
|
26286
|
+
pageNumber?: number;
|
|
26287
|
+
/**
|
|
26288
|
+
* @remarks
|
|
26289
|
+
* The number of entries returned per page.
|
|
26290
|
+
*
|
|
26291
|
+
* @example
|
|
26292
|
+
* 30
|
|
26293
|
+
*/
|
|
26294
|
+
pageSize?: number;
|
|
26295
|
+
/**
|
|
26296
|
+
* @remarks
|
|
26297
|
+
* The request ID.
|
|
26298
|
+
*
|
|
26299
|
+
* @example
|
|
26300
|
+
* 9DAC759A-F4F0-5D02-8335-BC458C0CCB94
|
|
26301
|
+
*/
|
|
26302
|
+
requestId?: string;
|
|
26303
|
+
/**
|
|
26304
|
+
* @remarks
|
|
26305
|
+
* The details of snapshots.
|
|
26306
|
+
*/
|
|
26307
|
+
snapshots?: DescribeRCSnapshotsResponseBodySnapshots[];
|
|
26308
|
+
/**
|
|
26309
|
+
* @remarks
|
|
26310
|
+
* The total number of entries returned.
|
|
26311
|
+
*
|
|
26312
|
+
* @example
|
|
26313
|
+
* 7
|
|
26314
|
+
*/
|
|
26315
|
+
totalCount?: number;
|
|
26316
|
+
static names(): {
|
|
26317
|
+
[key: string]: string;
|
|
26318
|
+
};
|
|
26319
|
+
static types(): {
|
|
26320
|
+
[key: string]: any;
|
|
26321
|
+
};
|
|
26322
|
+
constructor(map?: {
|
|
26323
|
+
[key: string]: any;
|
|
26324
|
+
});
|
|
26325
|
+
}
|
|
26326
|
+
export declare class DescribeRCSnapshotsResponse extends $tea.Model {
|
|
26327
|
+
headers?: {
|
|
26328
|
+
[key: string]: string;
|
|
26329
|
+
};
|
|
26330
|
+
statusCode?: number;
|
|
26331
|
+
body?: DescribeRCSnapshotsResponseBody;
|
|
26332
|
+
static names(): {
|
|
26333
|
+
[key: string]: string;
|
|
26334
|
+
};
|
|
26335
|
+
static types(): {
|
|
26336
|
+
[key: string]: any;
|
|
26337
|
+
};
|
|
26338
|
+
constructor(map?: {
|
|
26339
|
+
[key: string]: any;
|
|
26340
|
+
});
|
|
26341
|
+
}
|
|
24938
26342
|
export declare class DescribeRdsResourceSettingsRequest extends $tea.Model {
|
|
24939
26343
|
ownerId?: number;
|
|
24940
26344
|
/**
|
|
@@ -27382,7 +28786,7 @@ export declare class DescribeTasksRequest extends $tea.Model {
|
|
|
27382
28786
|
ownerId?: number;
|
|
27383
28787
|
/**
|
|
27384
28788
|
* @remarks
|
|
27385
|
-
* The
|
|
28789
|
+
* The page number. Valid values: any non-zero positive integer. Default value: **1**.
|
|
27386
28790
|
*
|
|
27387
28791
|
* @example
|
|
27388
28792
|
* 1
|
|
@@ -27390,7 +28794,7 @@ export declare class DescribeTasksRequest extends $tea.Model {
|
|
|
27390
28794
|
pageNumber?: number;
|
|
27391
28795
|
/**
|
|
27392
28796
|
* @remarks
|
|
27393
|
-
* The number of entries to return
|
|
28797
|
+
* The number of entries to return per page. Valid values: **30 to 100**. Default value: **30**.
|
|
27394
28798
|
*
|
|
27395
28799
|
* @example
|
|
27396
28800
|
* 30
|
|
@@ -28301,6 +29705,90 @@ export declare class DetachGadInstanceMemberResponse extends $tea.Model {
|
|
|
28301
29705
|
[key: string]: any;
|
|
28302
29706
|
});
|
|
28303
29707
|
}
|
|
29708
|
+
export declare class DetachRCDiskRequest extends $tea.Model {
|
|
29709
|
+
/**
|
|
29710
|
+
* @remarks
|
|
29711
|
+
* The reserved parameter. This parameter is not supported.
|
|
29712
|
+
*
|
|
29713
|
+
* @example
|
|
29714
|
+
* true
|
|
29715
|
+
*/
|
|
29716
|
+
deleteWithInstance?: boolean;
|
|
29717
|
+
/**
|
|
29718
|
+
* @remarks
|
|
29719
|
+
* The ID of the disk that you want to detach.
|
|
29720
|
+
*
|
|
29721
|
+
* This parameter is required.
|
|
29722
|
+
*
|
|
29723
|
+
* @example
|
|
29724
|
+
* rcd-f8zh55g5gbk1byjr****
|
|
29725
|
+
*/
|
|
29726
|
+
diskId?: string;
|
|
29727
|
+
/**
|
|
29728
|
+
* @remarks
|
|
29729
|
+
* The instance ID.
|
|
29730
|
+
*
|
|
29731
|
+
* This parameter is required.
|
|
29732
|
+
*
|
|
29733
|
+
* @example
|
|
29734
|
+
* rc-dh2jf9n6j4s14926****
|
|
29735
|
+
*/
|
|
29736
|
+
instanceId?: string;
|
|
29737
|
+
/**
|
|
29738
|
+
* @remarks
|
|
29739
|
+
* The region ID. You can call the DescribeRegions operation to query the most recent region list.
|
|
29740
|
+
*
|
|
29741
|
+
* This parameter is required.
|
|
29742
|
+
*
|
|
29743
|
+
* @example
|
|
29744
|
+
* cn-hangzhou
|
|
29745
|
+
*/
|
|
29746
|
+
regionId?: string;
|
|
29747
|
+
static names(): {
|
|
29748
|
+
[key: string]: string;
|
|
29749
|
+
};
|
|
29750
|
+
static types(): {
|
|
29751
|
+
[key: string]: any;
|
|
29752
|
+
};
|
|
29753
|
+
constructor(map?: {
|
|
29754
|
+
[key: string]: any;
|
|
29755
|
+
});
|
|
29756
|
+
}
|
|
29757
|
+
export declare class DetachRCDiskResponseBody extends $tea.Model {
|
|
29758
|
+
/**
|
|
29759
|
+
* @remarks
|
|
29760
|
+
* The request ID.
|
|
29761
|
+
*
|
|
29762
|
+
* @example
|
|
29763
|
+
* C8E88DED-533F-4B3C-9207-731FBF394CCA
|
|
29764
|
+
*/
|
|
29765
|
+
requestId?: string;
|
|
29766
|
+
static names(): {
|
|
29767
|
+
[key: string]: string;
|
|
29768
|
+
};
|
|
29769
|
+
static types(): {
|
|
29770
|
+
[key: string]: any;
|
|
29771
|
+
};
|
|
29772
|
+
constructor(map?: {
|
|
29773
|
+
[key: string]: any;
|
|
29774
|
+
});
|
|
29775
|
+
}
|
|
29776
|
+
export declare class DetachRCDiskResponse extends $tea.Model {
|
|
29777
|
+
headers?: {
|
|
29778
|
+
[key: string]: string;
|
|
29779
|
+
};
|
|
29780
|
+
statusCode?: number;
|
|
29781
|
+
body?: DetachRCDiskResponseBody;
|
|
29782
|
+
static names(): {
|
|
29783
|
+
[key: string]: string;
|
|
29784
|
+
};
|
|
29785
|
+
static types(): {
|
|
29786
|
+
[key: string]: any;
|
|
29787
|
+
};
|
|
29788
|
+
constructor(map?: {
|
|
29789
|
+
[key: string]: any;
|
|
29790
|
+
});
|
|
29791
|
+
}
|
|
28304
29792
|
export declare class DetachWhitelistTemplateToInstanceRequest extends $tea.Model {
|
|
28305
29793
|
/**
|
|
28306
29794
|
* @remarks
|
|
@@ -28926,6 +30414,14 @@ export declare class ImportUserBackupFileRequest extends $tea.Model {
|
|
|
28926
30414
|
* BackupTest
|
|
28927
30415
|
*/
|
|
28928
30416
|
comment?: string;
|
|
30417
|
+
/**
|
|
30418
|
+
* @remarks
|
|
30419
|
+
* The instance ID.
|
|
30420
|
+
*
|
|
30421
|
+
* @example
|
|
30422
|
+
* rm-uf6wjk5****
|
|
30423
|
+
*/
|
|
30424
|
+
DBInstanceId?: string;
|
|
28929
30425
|
/**
|
|
28930
30426
|
* @remarks
|
|
28931
30427
|
* The version of the database engine that is run on the self-managed MySQL database and ApsaraDB RDS for MySQL instance. Set the value to **5.7**.
|
|
@@ -33417,6 +34913,14 @@ export declare class ModifyDBInstanceSpecRequest extends $tea.Model {
|
|
|
33417
34913
|
* Postpaid
|
|
33418
34914
|
*/
|
|
33419
34915
|
payType?: string;
|
|
34916
|
+
promotionCode?: string;
|
|
34917
|
+
/**
|
|
34918
|
+
* @remarks
|
|
34919
|
+
* Target specifications for read-only instances when changing a MySQL high-availability local disk instance to a cloud disk.
|
|
34920
|
+
*
|
|
34921
|
+
* @example
|
|
34922
|
+
* mysqlro.n2.large.c
|
|
34923
|
+
*/
|
|
33420
34924
|
readOnlyDBInstanceClass?: string;
|
|
33421
34925
|
/**
|
|
33422
34926
|
* @remarks
|
|
@@ -33715,6 +35219,14 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $tea.Model {
|
|
|
33715
35219
|
* Postpaid
|
|
33716
35220
|
*/
|
|
33717
35221
|
payType?: string;
|
|
35222
|
+
promotionCode?: string;
|
|
35223
|
+
/**
|
|
35224
|
+
* @remarks
|
|
35225
|
+
* Target specifications for read-only instances when changing a MySQL high-availability local disk instance to a cloud disk.
|
|
35226
|
+
*
|
|
35227
|
+
* @example
|
|
35228
|
+
* mysqlro.n2.large.c
|
|
35229
|
+
*/
|
|
33718
35230
|
readOnlyDBInstanceClass?: string;
|
|
33719
35231
|
/**
|
|
33720
35232
|
* @remarks
|
|
@@ -34307,8 +35819,9 @@ export declare class ModifyDBProxyRequest extends $tea.Model {
|
|
|
34307
35819
|
* @remarks
|
|
34308
35820
|
* Specifies whether to enable or disable the database proxy feature. Valid values:
|
|
34309
35821
|
*
|
|
34310
|
-
* * **Startup**: enables the
|
|
34311
|
-
* * **Shutdown**: disables the
|
|
35822
|
+
* * **Startup**: enables the feature.
|
|
35823
|
+
* * **Shutdown**: disables the feature.
|
|
35824
|
+
* * **Modify**: modifies the configuration of the feature.
|
|
34312
35825
|
*
|
|
34313
35826
|
* This parameter is required.
|
|
34314
35827
|
*
|
|
@@ -34328,7 +35841,7 @@ export declare class ModifyDBProxyRequest extends $tea.Model {
|
|
|
34328
35841
|
DBInstanceId?: string;
|
|
34329
35842
|
/**
|
|
34330
35843
|
* @remarks
|
|
34331
|
-
* A
|
|
35844
|
+
* A deprecated parameter. You do not need to specify this parameter.
|
|
34332
35845
|
*
|
|
34333
35846
|
* @example
|
|
34334
35847
|
* normal
|
|
@@ -34346,12 +35859,19 @@ export declare class ModifyDBProxyRequest extends $tea.Model {
|
|
|
34346
35859
|
DBProxyInstanceNum?: string;
|
|
34347
35860
|
/**
|
|
34348
35861
|
* @remarks
|
|
34349
|
-
*
|
|
35862
|
+
* The database proxy type. Valid values:
|
|
35863
|
+
*
|
|
35864
|
+
* * **common**: general-purpose database proxy
|
|
35865
|
+
* * **exclusive** (default): dedicated database proxy
|
|
34350
35866
|
*
|
|
34351
35867
|
* @example
|
|
34352
35868
|
* common
|
|
34353
35869
|
*/
|
|
34354
35870
|
DBProxyInstanceType?: string;
|
|
35871
|
+
/**
|
|
35872
|
+
* @remarks
|
|
35873
|
+
* The proxy nodes.
|
|
35874
|
+
*/
|
|
34355
35875
|
DBProxyNodes?: ModifyDBProxyRequestDBProxyNodes[];
|
|
34356
35876
|
/**
|
|
34357
35877
|
* @remarks
|
|
@@ -34366,13 +35886,16 @@ export declare class ModifyDBProxyRequest extends $tea.Model {
|
|
|
34366
35886
|
ownerId?: number;
|
|
34367
35887
|
/**
|
|
34368
35888
|
* @remarks
|
|
34369
|
-
*
|
|
35889
|
+
* Specifies whether to enable persistent connections. Valid values:
|
|
34370
35890
|
*
|
|
34371
|
-
*
|
|
34372
|
-
*
|
|
35891
|
+
* * **Enabled**
|
|
35892
|
+
* * **Disabled**
|
|
34373
35893
|
*
|
|
34374
|
-
* >
|
|
34375
|
-
*
|
|
35894
|
+
* >
|
|
35895
|
+
*
|
|
35896
|
+
* * This parameter is available only for instances that run MySQL.
|
|
35897
|
+
*
|
|
35898
|
+
* * If you want to modify persistent connections, you must set the **ConfigDBProxyService** parameter to **Modify**.
|
|
34376
35899
|
*
|
|
34377
35900
|
* @example
|
|
34378
35901
|
* Enabled
|
|
@@ -34431,8 +35954,9 @@ export declare class ModifyDBProxyShrinkRequest extends $tea.Model {
|
|
|
34431
35954
|
* @remarks
|
|
34432
35955
|
* Specifies whether to enable or disable the database proxy feature. Valid values:
|
|
34433
35956
|
*
|
|
34434
|
-
* * **Startup**: enables the
|
|
34435
|
-
* * **Shutdown**: disables the
|
|
35957
|
+
* * **Startup**: enables the feature.
|
|
35958
|
+
* * **Shutdown**: disables the feature.
|
|
35959
|
+
* * **Modify**: modifies the configuration of the feature.
|
|
34436
35960
|
*
|
|
34437
35961
|
* This parameter is required.
|
|
34438
35962
|
*
|
|
@@ -34452,7 +35976,7 @@ export declare class ModifyDBProxyShrinkRequest extends $tea.Model {
|
|
|
34452
35976
|
DBInstanceId?: string;
|
|
34453
35977
|
/**
|
|
34454
35978
|
* @remarks
|
|
34455
|
-
* A
|
|
35979
|
+
* A deprecated parameter. You do not need to specify this parameter.
|
|
34456
35980
|
*
|
|
34457
35981
|
* @example
|
|
34458
35982
|
* normal
|
|
@@ -34470,12 +35994,19 @@ export declare class ModifyDBProxyShrinkRequest extends $tea.Model {
|
|
|
34470
35994
|
DBProxyInstanceNum?: string;
|
|
34471
35995
|
/**
|
|
34472
35996
|
* @remarks
|
|
34473
|
-
*
|
|
35997
|
+
* The database proxy type. Valid values:
|
|
35998
|
+
*
|
|
35999
|
+
* * **common**: general-purpose database proxy
|
|
36000
|
+
* * **exclusive** (default): dedicated database proxy
|
|
34474
36001
|
*
|
|
34475
36002
|
* @example
|
|
34476
36003
|
* common
|
|
34477
36004
|
*/
|
|
34478
36005
|
DBProxyInstanceType?: string;
|
|
36006
|
+
/**
|
|
36007
|
+
* @remarks
|
|
36008
|
+
* The proxy nodes.
|
|
36009
|
+
*/
|
|
34479
36010
|
DBProxyNodesShrink?: string;
|
|
34480
36011
|
/**
|
|
34481
36012
|
* @remarks
|
|
@@ -34490,13 +36021,16 @@ export declare class ModifyDBProxyShrinkRequest extends $tea.Model {
|
|
|
34490
36021
|
ownerId?: number;
|
|
34491
36022
|
/**
|
|
34492
36023
|
* @remarks
|
|
34493
|
-
*
|
|
36024
|
+
* Specifies whether to enable persistent connections. Valid values:
|
|
34494
36025
|
*
|
|
34495
|
-
*
|
|
34496
|
-
*
|
|
36026
|
+
* * **Enabled**
|
|
36027
|
+
* * **Disabled**
|
|
36028
|
+
*
|
|
36029
|
+
* >
|
|
36030
|
+
*
|
|
36031
|
+
* * This parameter is available only for instances that run MySQL.
|
|
34497
36032
|
*
|
|
34498
|
-
*
|
|
34499
|
-
* > - When you modify the connection persistence state, the value of **ConfigDBProxyService** is modify.
|
|
36033
|
+
* * If you want to modify persistent connections, you must set the **ConfigDBProxyService** parameter to **Modify**.
|
|
34500
36034
|
*
|
|
34501
36035
|
* @example
|
|
34502
36036
|
* Enabled
|
|
@@ -34644,6 +36178,7 @@ export declare class ModifyDBProxyEndpointRequest extends $tea.Model {
|
|
|
34644
36178
|
* test-proxy
|
|
34645
36179
|
*/
|
|
34646
36180
|
dbEndpointAliases?: string;
|
|
36181
|
+
dbEndpointMinSlaveCount?: string;
|
|
34647
36182
|
/**
|
|
34648
36183
|
* @remarks
|
|
34649
36184
|
* The type of operation that you want to perform. Valid values:
|
|
@@ -34678,7 +36213,31 @@ export declare class ModifyDBProxyEndpointRequest extends $tea.Model {
|
|
|
34678
36213
|
* RWSplit
|
|
34679
36214
|
*/
|
|
34680
36215
|
dbEndpointType?: string;
|
|
36216
|
+
/**
|
|
36217
|
+
* @remarks
|
|
36218
|
+
* The specified time takes effect. Format: yyyy-MM-ddTHH:mm:ssZ (UTC time).
|
|
36219
|
+
*
|
|
36220
|
+
* > This parameter must be passed when EffectiveTime is SpecificTime.
|
|
36221
|
+
*
|
|
36222
|
+
* @example
|
|
36223
|
+
* 2023-05-06T07:08:09Z
|
|
36224
|
+
*/
|
|
34681
36225
|
effectiveSpecificTime?: string;
|
|
36226
|
+
/**
|
|
36227
|
+
* @remarks
|
|
36228
|
+
* Effective time, value:
|
|
36229
|
+
*
|
|
36230
|
+
* - **Immediate**: effective immediately.
|
|
36231
|
+
*
|
|
36232
|
+
* - **MaintainTime**: effective during the operational and maintainable time period, see ModifyDBInstanceMaintainTime.
|
|
36233
|
+
*
|
|
36234
|
+
* - **SpecificTime**: effective at a specified time.
|
|
36235
|
+
*
|
|
36236
|
+
* Default value: MaintainTime.
|
|
36237
|
+
*
|
|
36238
|
+
* @example
|
|
36239
|
+
* MaintainTime
|
|
36240
|
+
*/
|
|
34682
36241
|
effectiveTime?: string;
|
|
34683
36242
|
ownerId?: number;
|
|
34684
36243
|
/**
|
|
@@ -34733,6 +36292,9 @@ export declare class ModifyDBProxyEndpointRequest extends $tea.Model {
|
|
|
34733
36292
|
resourceOwnerAccount?: string;
|
|
34734
36293
|
resourceOwnerId?: number;
|
|
34735
36294
|
/**
|
|
36295
|
+
* @remarks
|
|
36296
|
+
* Specifies the switch ID corresponding to the availability zone of the proxy connection address. By default, it is the switch ID corresponding to the default terminal of the proxy instance. You can query the created switch by calling the DescribeVSwitches interface.
|
|
36297
|
+
*
|
|
34736
36298
|
* @example
|
|
34737
36299
|
* vsw-uf6adz52c2p****
|
|
34738
36300
|
*/
|
|
@@ -34795,15 +36357,15 @@ export declare class ModifyDBProxyEndpointAddressRequest extends $tea.Model {
|
|
|
34795
36357
|
DBInstanceId?: string;
|
|
34796
36358
|
/**
|
|
34797
36359
|
* @remarks
|
|
34798
|
-
* The network type of the proxy endpoint. Valid values:
|
|
36360
|
+
* The network type of the database proxy endpoint. Valid values:
|
|
34799
36361
|
*
|
|
34800
36362
|
* * **Public**: Internet
|
|
34801
36363
|
* * **VPC**: virtual private cloud (VPC)
|
|
34802
36364
|
* * **Classic**: classic network
|
|
34803
36365
|
*
|
|
34804
|
-
* If the instance runs MySQL, the default value
|
|
36366
|
+
* If the instance runs MySQL, the default value is **Classic**.
|
|
34805
36367
|
*
|
|
34806
|
-
* >
|
|
36368
|
+
* > If the instance runs PostgreSQL, you must set this parameter to **Public** or **VPC**.
|
|
34807
36369
|
*
|
|
34808
36370
|
* @example
|
|
34809
36371
|
* Public
|
|
@@ -34811,7 +36373,7 @@ export declare class ModifyDBProxyEndpointAddressRequest extends $tea.Model {
|
|
|
34811
36373
|
DBProxyConnectStringNetType?: string;
|
|
34812
36374
|
/**
|
|
34813
36375
|
* @remarks
|
|
34814
|
-
* The ID of the
|
|
36376
|
+
* The ID of the database proxy endpoint. You can call the DescribeDBProxyEndpoint operation to query the ID of the database proxy endpoint.
|
|
34815
36377
|
*
|
|
34816
36378
|
* This parameter is required.
|
|
34817
36379
|
*
|
|
@@ -34821,7 +36383,7 @@ export declare class ModifyDBProxyEndpointAddressRequest extends $tea.Model {
|
|
|
34821
36383
|
DBProxyEndpointId?: string;
|
|
34822
36384
|
/**
|
|
34823
36385
|
* @remarks
|
|
34824
|
-
* A
|
|
36386
|
+
* A deprecated parameter. You do not need to specify this parameter.
|
|
34825
36387
|
*
|
|
34826
36388
|
* @example
|
|
34827
36389
|
* normal
|
|
@@ -34829,9 +36391,9 @@ export declare class ModifyDBProxyEndpointAddressRequest extends $tea.Model {
|
|
|
34829
36391
|
DBProxyEngineType?: string;
|
|
34830
36392
|
/**
|
|
34831
36393
|
* @remarks
|
|
34832
|
-
* The
|
|
36394
|
+
* The prefix of the new database proxy endpoint. A custom value is supported.
|
|
34833
36395
|
*
|
|
34834
|
-
* >
|
|
36396
|
+
* > You must specify at least one of the **DBProxyNewConnectString** and **DBProxyNewConnectStringPort** parameters.
|
|
34835
36397
|
*
|
|
34836
36398
|
* @example
|
|
34837
36399
|
* test123456
|
|
@@ -34839,9 +36401,9 @@ export declare class ModifyDBProxyEndpointAddressRequest extends $tea.Model {
|
|
|
34839
36401
|
DBProxyNewConnectString?: string;
|
|
34840
36402
|
/**
|
|
34841
36403
|
* @remarks
|
|
34842
|
-
* The port number that is associated with the proxy endpoint.
|
|
36404
|
+
* The port number that is associated with the database proxy endpoint. A custom value is supported.
|
|
34843
36405
|
*
|
|
34844
|
-
* >
|
|
36406
|
+
* > You must specify at least one of the **DBProxyNewConnectString** and **DBProxyNewConnectStringPort** parameters.
|
|
34845
36407
|
*
|
|
34846
36408
|
* @example
|
|
34847
36409
|
* 3307
|
|
@@ -34939,6 +36501,12 @@ export declare class ModifyDBProxyInstanceRequest extends $tea.Model {
|
|
|
34939
36501
|
* DedicatedProxy
|
|
34940
36502
|
*/
|
|
34941
36503
|
DBProxyInstanceType?: string;
|
|
36504
|
+
/**
|
|
36505
|
+
* @remarks
|
|
36506
|
+
* List of proxy nodes.
|
|
36507
|
+
*
|
|
36508
|
+
* > This parameter must be passed when the current proxy instance is deployed in multiple availability zones.
|
|
36509
|
+
*/
|
|
34942
36510
|
DBProxyNodes?: ModifyDBProxyInstanceRequestDBProxyNodes[];
|
|
34943
36511
|
/**
|
|
34944
36512
|
* @remarks
|
|
@@ -34964,6 +36532,12 @@ export declare class ModifyDBProxyInstanceRequest extends $tea.Model {
|
|
|
34964
36532
|
* MaintainTime
|
|
34965
36533
|
*/
|
|
34966
36534
|
effectiveTime?: string;
|
|
36535
|
+
/**
|
|
36536
|
+
* @remarks
|
|
36537
|
+
* The list of available zones for migration agents.
|
|
36538
|
+
*
|
|
36539
|
+
* > Currently, only RDS MySQL cloud disk version agent instance migration is supported.
|
|
36540
|
+
*/
|
|
34967
36541
|
migrateAZ?: ModifyDBProxyInstanceRequestMigrateAZ[];
|
|
34968
36542
|
ownerId?: number;
|
|
34969
36543
|
/**
|
|
@@ -35040,6 +36614,12 @@ export declare class ModifyDBProxyInstanceShrinkRequest extends $tea.Model {
|
|
|
35040
36614
|
* DedicatedProxy
|
|
35041
36615
|
*/
|
|
35042
36616
|
DBProxyInstanceType?: string;
|
|
36617
|
+
/**
|
|
36618
|
+
* @remarks
|
|
36619
|
+
* List of proxy nodes.
|
|
36620
|
+
*
|
|
36621
|
+
* > This parameter must be passed when the current proxy instance is deployed in multiple availability zones.
|
|
36622
|
+
*/
|
|
35043
36623
|
DBProxyNodesShrink?: string;
|
|
35044
36624
|
/**
|
|
35045
36625
|
* @remarks
|
|
@@ -35065,6 +36645,12 @@ export declare class ModifyDBProxyInstanceShrinkRequest extends $tea.Model {
|
|
|
35065
36645
|
* MaintainTime
|
|
35066
36646
|
*/
|
|
35067
36647
|
effectiveTime?: string;
|
|
36648
|
+
/**
|
|
36649
|
+
* @remarks
|
|
36650
|
+
* The list of available zones for migration agents.
|
|
36651
|
+
*
|
|
36652
|
+
* > Currently, only RDS MySQL cloud disk version agent instance migration is supported.
|
|
36653
|
+
*/
|
|
35068
36654
|
migrateAZShrink?: string;
|
|
35069
36655
|
ownerId?: number;
|
|
35070
36656
|
/**
|
|
@@ -36731,6 +38317,98 @@ export declare class ModifyRCInstanceResponse extends $tea.Model {
|
|
|
36731
38317
|
[key: string]: any;
|
|
36732
38318
|
});
|
|
36733
38319
|
}
|
|
38320
|
+
export declare class ModifyRCInstanceAttributeRequest extends $tea.Model {
|
|
38321
|
+
/**
|
|
38322
|
+
* @remarks
|
|
38323
|
+
* The hostname of the instance.
|
|
38324
|
+
*
|
|
38325
|
+
* @example
|
|
38326
|
+
* testHost1
|
|
38327
|
+
*/
|
|
38328
|
+
hostName?: string;
|
|
38329
|
+
/**
|
|
38330
|
+
* @remarks
|
|
38331
|
+
* The instance ID.
|
|
38332
|
+
*
|
|
38333
|
+
* @example
|
|
38334
|
+
* rm-uf62br2491p5l****
|
|
38335
|
+
*/
|
|
38336
|
+
instanceId?: string;
|
|
38337
|
+
/**
|
|
38338
|
+
* @remarks
|
|
38339
|
+
* The new password of the instance.
|
|
38340
|
+
*
|
|
38341
|
+
* * The value must be 8 to 30 characters in length.
|
|
38342
|
+
* * The value must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include `()` ~ ! @ # $ % ^ & \\* - _ + = \\`
|
|
38343
|
+
*
|
|
38344
|
+
* @example
|
|
38345
|
+
* 2F9e9@a69c!e18b569c8
|
|
38346
|
+
*/
|
|
38347
|
+
password?: string;
|
|
38348
|
+
/**
|
|
38349
|
+
* @remarks
|
|
38350
|
+
* Specifies whether to restart the instance. Valid values:
|
|
38351
|
+
*
|
|
38352
|
+
* * **true**
|
|
38353
|
+
* * **false** (default)
|
|
38354
|
+
*
|
|
38355
|
+
* @example
|
|
38356
|
+
* true
|
|
38357
|
+
*/
|
|
38358
|
+
reboot?: boolean;
|
|
38359
|
+
/**
|
|
38360
|
+
* @remarks
|
|
38361
|
+
* The region ID of the instance. You can call the DescribeRegions operation to query the most recent region list.
|
|
38362
|
+
*
|
|
38363
|
+
* @example
|
|
38364
|
+
* cn-hangzhou
|
|
38365
|
+
*/
|
|
38366
|
+
regionId?: string;
|
|
38367
|
+
static names(): {
|
|
38368
|
+
[key: string]: string;
|
|
38369
|
+
};
|
|
38370
|
+
static types(): {
|
|
38371
|
+
[key: string]: any;
|
|
38372
|
+
};
|
|
38373
|
+
constructor(map?: {
|
|
38374
|
+
[key: string]: any;
|
|
38375
|
+
});
|
|
38376
|
+
}
|
|
38377
|
+
export declare class ModifyRCInstanceAttributeResponseBody extends $tea.Model {
|
|
38378
|
+
/**
|
|
38379
|
+
* @remarks
|
|
38380
|
+
* The request ID.
|
|
38381
|
+
*
|
|
38382
|
+
* @example
|
|
38383
|
+
* 776C5EC4-7714-5E40-AD5C-51F7C472A68E
|
|
38384
|
+
*/
|
|
38385
|
+
requestId?: string;
|
|
38386
|
+
static names(): {
|
|
38387
|
+
[key: string]: string;
|
|
38388
|
+
};
|
|
38389
|
+
static types(): {
|
|
38390
|
+
[key: string]: any;
|
|
38391
|
+
};
|
|
38392
|
+
constructor(map?: {
|
|
38393
|
+
[key: string]: any;
|
|
38394
|
+
});
|
|
38395
|
+
}
|
|
38396
|
+
export declare class ModifyRCInstanceAttributeResponse extends $tea.Model {
|
|
38397
|
+
headers?: {
|
|
38398
|
+
[key: string]: string;
|
|
38399
|
+
};
|
|
38400
|
+
statusCode?: number;
|
|
38401
|
+
body?: ModifyRCInstanceAttributeResponseBody;
|
|
38402
|
+
static names(): {
|
|
38403
|
+
[key: string]: string;
|
|
38404
|
+
};
|
|
38405
|
+
static types(): {
|
|
38406
|
+
[key: string]: any;
|
|
38407
|
+
};
|
|
38408
|
+
constructor(map?: {
|
|
38409
|
+
[key: string]: any;
|
|
38410
|
+
});
|
|
38411
|
+
}
|
|
36734
38412
|
export declare class ModifyRCInstanceChargeTypeRequest extends $tea.Model {
|
|
36735
38413
|
autoPay?: boolean;
|
|
36736
38414
|
dryRun?: boolean;
|
|
@@ -36786,6 +38464,129 @@ export declare class ModifyRCInstanceChargeTypeResponse extends $tea.Model {
|
|
|
36786
38464
|
[key: string]: any;
|
|
36787
38465
|
});
|
|
36788
38466
|
}
|
|
38467
|
+
export declare class ModifyRCInstanceDescriptionRequest extends $tea.Model {
|
|
38468
|
+
instanceDescription?: string;
|
|
38469
|
+
instanceId?: string;
|
|
38470
|
+
regionId?: string;
|
|
38471
|
+
static names(): {
|
|
38472
|
+
[key: string]: string;
|
|
38473
|
+
};
|
|
38474
|
+
static types(): {
|
|
38475
|
+
[key: string]: any;
|
|
38476
|
+
};
|
|
38477
|
+
constructor(map?: {
|
|
38478
|
+
[key: string]: any;
|
|
38479
|
+
});
|
|
38480
|
+
}
|
|
38481
|
+
export declare class ModifyRCInstanceDescriptionResponseBody extends $tea.Model {
|
|
38482
|
+
requestId?: string;
|
|
38483
|
+
static names(): {
|
|
38484
|
+
[key: string]: string;
|
|
38485
|
+
};
|
|
38486
|
+
static types(): {
|
|
38487
|
+
[key: string]: any;
|
|
38488
|
+
};
|
|
38489
|
+
constructor(map?: {
|
|
38490
|
+
[key: string]: any;
|
|
38491
|
+
});
|
|
38492
|
+
}
|
|
38493
|
+
export declare class ModifyRCInstanceDescriptionResponse extends $tea.Model {
|
|
38494
|
+
headers?: {
|
|
38495
|
+
[key: string]: string;
|
|
38496
|
+
};
|
|
38497
|
+
statusCode?: number;
|
|
38498
|
+
body?: ModifyRCInstanceDescriptionResponseBody;
|
|
38499
|
+
static names(): {
|
|
38500
|
+
[key: string]: string;
|
|
38501
|
+
};
|
|
38502
|
+
static types(): {
|
|
38503
|
+
[key: string]: any;
|
|
38504
|
+
};
|
|
38505
|
+
constructor(map?: {
|
|
38506
|
+
[key: string]: any;
|
|
38507
|
+
});
|
|
38508
|
+
}
|
|
38509
|
+
export declare class ModifyRCInstanceKeyPairRequest extends $tea.Model {
|
|
38510
|
+
/**
|
|
38511
|
+
* @remarks
|
|
38512
|
+
* The instance ID.
|
|
38513
|
+
*
|
|
38514
|
+
* @example
|
|
38515
|
+
* rc-m5sc1271fv344a1r****
|
|
38516
|
+
*/
|
|
38517
|
+
instanceId?: string;
|
|
38518
|
+
/**
|
|
38519
|
+
* @remarks
|
|
38520
|
+
* The name of the key pair.
|
|
38521
|
+
*
|
|
38522
|
+
* @example
|
|
38523
|
+
* customer_keypairs
|
|
38524
|
+
*/
|
|
38525
|
+
keyPairName?: string;
|
|
38526
|
+
/**
|
|
38527
|
+
* @remarks
|
|
38528
|
+
* Specifies whether to restart the instance.
|
|
38529
|
+
*
|
|
38530
|
+
* * **true**
|
|
38531
|
+
* * **false**
|
|
38532
|
+
*
|
|
38533
|
+
* @example
|
|
38534
|
+
* ture
|
|
38535
|
+
*/
|
|
38536
|
+
reboot?: boolean;
|
|
38537
|
+
/**
|
|
38538
|
+
* @remarks
|
|
38539
|
+
* The region ID.
|
|
38540
|
+
*
|
|
38541
|
+
* @example
|
|
38542
|
+
* cn-hangzhou
|
|
38543
|
+
*/
|
|
38544
|
+
regionId?: string;
|
|
38545
|
+
static names(): {
|
|
38546
|
+
[key: string]: string;
|
|
38547
|
+
};
|
|
38548
|
+
static types(): {
|
|
38549
|
+
[key: string]: any;
|
|
38550
|
+
};
|
|
38551
|
+
constructor(map?: {
|
|
38552
|
+
[key: string]: any;
|
|
38553
|
+
});
|
|
38554
|
+
}
|
|
38555
|
+
export declare class ModifyRCInstanceKeyPairResponseBody extends $tea.Model {
|
|
38556
|
+
/**
|
|
38557
|
+
* @remarks
|
|
38558
|
+
* The request ID.
|
|
38559
|
+
*
|
|
38560
|
+
* @example
|
|
38561
|
+
* 6C36770E-21AE-5689-BAA6-313DA58D5467
|
|
38562
|
+
*/
|
|
38563
|
+
requestId?: string;
|
|
38564
|
+
static names(): {
|
|
38565
|
+
[key: string]: string;
|
|
38566
|
+
};
|
|
38567
|
+
static types(): {
|
|
38568
|
+
[key: string]: any;
|
|
38569
|
+
};
|
|
38570
|
+
constructor(map?: {
|
|
38571
|
+
[key: string]: any;
|
|
38572
|
+
});
|
|
38573
|
+
}
|
|
38574
|
+
export declare class ModifyRCInstanceKeyPairResponse extends $tea.Model {
|
|
38575
|
+
headers?: {
|
|
38576
|
+
[key: string]: string;
|
|
38577
|
+
};
|
|
38578
|
+
statusCode?: number;
|
|
38579
|
+
body?: ModifyRCInstanceKeyPairResponseBody;
|
|
38580
|
+
static names(): {
|
|
38581
|
+
[key: string]: string;
|
|
38582
|
+
};
|
|
38583
|
+
static types(): {
|
|
38584
|
+
[key: string]: any;
|
|
38585
|
+
};
|
|
38586
|
+
constructor(map?: {
|
|
38587
|
+
[key: string]: any;
|
|
38588
|
+
});
|
|
38589
|
+
}
|
|
36789
38590
|
export declare class ModifyReadWriteSplittingConnectionRequest extends $tea.Model {
|
|
36790
38591
|
/**
|
|
36791
38592
|
* @remarks
|
|
@@ -39265,6 +41066,7 @@ export declare class RenewInstanceRequest extends $tea.Model {
|
|
|
39265
41066
|
* true
|
|
39266
41067
|
*/
|
|
39267
41068
|
autoRenew?: string;
|
|
41069
|
+
autoUseCoupon?: boolean;
|
|
39268
41070
|
/**
|
|
39269
41071
|
* @remarks
|
|
39270
41072
|
* The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the generated token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.
|
|
@@ -39301,6 +41103,7 @@ export declare class RenewInstanceRequest extends $tea.Model {
|
|
|
39301
41103
|
* 12
|
|
39302
41104
|
*/
|
|
39303
41105
|
period?: number;
|
|
41106
|
+
promotionCode?: string;
|
|
39304
41107
|
resourceOwnerAccount?: string;
|
|
39305
41108
|
resourceOwnerId?: number;
|
|
39306
41109
|
static names(): {
|
|
@@ -39356,6 +41159,51 @@ export declare class RenewInstanceResponse extends $tea.Model {
|
|
|
39356
41159
|
[key: string]: any;
|
|
39357
41160
|
});
|
|
39358
41161
|
}
|
|
41162
|
+
export declare class ReplaceRCInstanceSystemDiskRequest extends $tea.Model {
|
|
41163
|
+
imageId?: string;
|
|
41164
|
+
instanceId?: string;
|
|
41165
|
+
isLocalDisk?: boolean;
|
|
41166
|
+
keyPairName?: string;
|
|
41167
|
+
password?: string;
|
|
41168
|
+
regionId?: string;
|
|
41169
|
+
static names(): {
|
|
41170
|
+
[key: string]: string;
|
|
41171
|
+
};
|
|
41172
|
+
static types(): {
|
|
41173
|
+
[key: string]: any;
|
|
41174
|
+
};
|
|
41175
|
+
constructor(map?: {
|
|
41176
|
+
[key: string]: any;
|
|
41177
|
+
});
|
|
41178
|
+
}
|
|
41179
|
+
export declare class ReplaceRCInstanceSystemDiskResponseBody extends $tea.Model {
|
|
41180
|
+
requestId?: string;
|
|
41181
|
+
static names(): {
|
|
41182
|
+
[key: string]: string;
|
|
41183
|
+
};
|
|
41184
|
+
static types(): {
|
|
41185
|
+
[key: string]: any;
|
|
41186
|
+
};
|
|
41187
|
+
constructor(map?: {
|
|
41188
|
+
[key: string]: any;
|
|
41189
|
+
});
|
|
41190
|
+
}
|
|
41191
|
+
export declare class ReplaceRCInstanceSystemDiskResponse extends $tea.Model {
|
|
41192
|
+
headers?: {
|
|
41193
|
+
[key: string]: string;
|
|
41194
|
+
};
|
|
41195
|
+
statusCode?: number;
|
|
41196
|
+
body?: ReplaceRCInstanceSystemDiskResponseBody;
|
|
41197
|
+
static names(): {
|
|
41198
|
+
[key: string]: string;
|
|
41199
|
+
};
|
|
41200
|
+
static types(): {
|
|
41201
|
+
[key: string]: any;
|
|
41202
|
+
};
|
|
41203
|
+
constructor(map?: {
|
|
41204
|
+
[key: string]: any;
|
|
41205
|
+
});
|
|
41206
|
+
}
|
|
39359
41207
|
export declare class ResetAccountRequest extends $tea.Model {
|
|
39360
41208
|
/**
|
|
39361
41209
|
* @remarks
|
|
@@ -39542,6 +41390,7 @@ export declare class ResizeRCInstanceDiskRequest extends $tea.Model {
|
|
|
39542
41390
|
* false
|
|
39543
41391
|
*/
|
|
39544
41392
|
autoPay?: boolean;
|
|
41393
|
+
diskId?: string;
|
|
39545
41394
|
/**
|
|
39546
41395
|
* @remarks
|
|
39547
41396
|
* Specifies whether to perform only a dry run, without performing the actual request. Valid values:
|
|
@@ -40328,6 +42177,7 @@ export declare class RunRCInstancesRequest extends $tea.Model {
|
|
|
40328
42177
|
* sg-uf6av412xaxixuezol6w
|
|
40329
42178
|
*/
|
|
40330
42179
|
securityGroupId?: string;
|
|
42180
|
+
spotStrategy?: string;
|
|
40331
42181
|
/**
|
|
40332
42182
|
* @remarks
|
|
40333
42183
|
* The specification of the system disk.
|
|
@@ -40567,6 +42417,7 @@ export declare class RunRCInstancesShrinkRequest extends $tea.Model {
|
|
|
40567
42417
|
* sg-uf6av412xaxixuezol6w
|
|
40568
42418
|
*/
|
|
40569
42419
|
securityGroupId?: string;
|
|
42420
|
+
spotStrategy?: string;
|
|
40570
42421
|
/**
|
|
40571
42422
|
* @remarks
|
|
40572
42423
|
* The specification of the system disk.
|
|
@@ -41594,6 +43445,7 @@ export declare class TransformDBInstancePayTypeRequest extends $tea.Model {
|
|
|
41594
43445
|
* true
|
|
41595
43446
|
*/
|
|
41596
43447
|
autoRenew?: string;
|
|
43448
|
+
autoUseCoupon?: boolean;
|
|
41597
43449
|
/**
|
|
41598
43450
|
* @remarks
|
|
41599
43451
|
* The additional business information about the instance.
|
|
@@ -41648,6 +43500,7 @@ export declare class TransformDBInstancePayTypeRequest extends $tea.Model {
|
|
|
41648
43500
|
* Month
|
|
41649
43501
|
*/
|
|
41650
43502
|
period?: string;
|
|
43503
|
+
promotionCode?: string;
|
|
41651
43504
|
resourceOwnerAccount?: string;
|
|
41652
43505
|
resourceOwnerId?: number;
|
|
41653
43506
|
/**
|
|
@@ -42882,6 +44735,43 @@ export declare class AddTagsToResourceRequestTag extends $tea.Model {
|
|
|
42882
44735
|
[key: string]: any;
|
|
42883
44736
|
});
|
|
42884
44737
|
}
|
|
44738
|
+
export declare class AttachRCInstancesResponseBodyResponses extends $tea.Model {
|
|
44739
|
+
/**
|
|
44740
|
+
* @remarks
|
|
44741
|
+
* The HTTP status code returned.
|
|
44742
|
+
*
|
|
44743
|
+
* @example
|
|
44744
|
+
* 200
|
|
44745
|
+
*/
|
|
44746
|
+
code?: string;
|
|
44747
|
+
/**
|
|
44748
|
+
* @remarks
|
|
44749
|
+
* The node ID.
|
|
44750
|
+
*
|
|
44751
|
+
* @example
|
|
44752
|
+
* rc-e2g521l55k038cr8****
|
|
44753
|
+
*/
|
|
44754
|
+
instanceId?: string;
|
|
44755
|
+
/**
|
|
44756
|
+
* @remarks
|
|
44757
|
+
* The message returned.
|
|
44758
|
+
*
|
|
44759
|
+
* > If the request is successful, **Successful** is returned. If the request fails, an error message that contains information such as an error code is returned.
|
|
44760
|
+
*
|
|
44761
|
+
* @example
|
|
44762
|
+
* Successful
|
|
44763
|
+
*/
|
|
44764
|
+
message?: string;
|
|
44765
|
+
static names(): {
|
|
44766
|
+
[key: string]: string;
|
|
44767
|
+
};
|
|
44768
|
+
static types(): {
|
|
44769
|
+
[key: string]: any;
|
|
44770
|
+
};
|
|
44771
|
+
constructor(map?: {
|
|
44772
|
+
[key: string]: any;
|
|
44773
|
+
});
|
|
44774
|
+
}
|
|
42885
44775
|
export declare class AttachWhitelistTemplateToInstanceResponseBodyData extends $tea.Model {
|
|
42886
44776
|
/**
|
|
42887
44777
|
* @remarks
|
|
@@ -43068,7 +44958,7 @@ export declare class CreateDBInstanceRequestServerlessConfig extends $tea.Model
|
|
|
43068
44958
|
*
|
|
43069
44959
|
* * Serverless ApsaraDB RDS for MySQL instances: **0.5 to 32**.
|
|
43070
44960
|
* * Serverless ApsaraDB RDS for SQL Server instances: **2 to 8**. Only integers are supported.
|
|
43071
|
-
* * Serverless ApsaraDB RDS for PostgreSQL instances: **0.5 to 14
|
|
44961
|
+
* * Serverless ApsaraDB RDS for PostgreSQL instances: **0.5 to 14**
|
|
43072
44962
|
*
|
|
43073
44963
|
* > The value of this parameter must be less than or equal to the value of the **MaxCapacity** parameter.
|
|
43074
44964
|
*
|
|
@@ -43794,6 +45684,19 @@ export declare class CreateMaskingRulesRequestRuleConfig extends $tea.Model {
|
|
|
43794
45684
|
[key: string]: any;
|
|
43795
45685
|
});
|
|
43796
45686
|
}
|
|
45687
|
+
export declare class CreateRCDeploymentSetRequestTag extends $tea.Model {
|
|
45688
|
+
key?: string;
|
|
45689
|
+
value?: string;
|
|
45690
|
+
static names(): {
|
|
45691
|
+
[key: string]: string;
|
|
45692
|
+
};
|
|
45693
|
+
static types(): {
|
|
45694
|
+
[key: string]: any;
|
|
45695
|
+
};
|
|
45696
|
+
constructor(map?: {
|
|
45697
|
+
[key: string]: any;
|
|
45698
|
+
});
|
|
45699
|
+
}
|
|
43797
45700
|
export declare class DeleteBackupFileResponseBodyDeletedBaksetIds extends $tea.Model {
|
|
43798
45701
|
deletedBaksetIds?: number[];
|
|
43799
45702
|
static names(): {
|
|
@@ -47266,6 +49169,13 @@ export declare class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttri
|
|
|
47266
49169
|
* 150
|
|
47267
49170
|
*/
|
|
47268
49171
|
maxIOPS?: number;
|
|
49172
|
+
/**
|
|
49173
|
+
* @remarks
|
|
49174
|
+
* Indicates whether auto scaling is being performed on the instance. If the value **true** is returned, auto scaling is being performed on the instance. If no value is returned, auto scaling is not being performed on the instance.
|
|
49175
|
+
*
|
|
49176
|
+
* @example
|
|
49177
|
+
* true
|
|
49178
|
+
*/
|
|
47269
49179
|
multipleTempUpgrade?: boolean;
|
|
47270
49180
|
/**
|
|
47271
49181
|
* @remarks
|
|
@@ -50472,12 +52382,29 @@ export declare class DescribeDBProxyResponseBodyDBProxyConnectStringItems extend
|
|
|
50472
52382
|
});
|
|
50473
52383
|
}
|
|
50474
52384
|
export declare class DescribeDBProxyResponseBodyDBProxyNodesDBProxyNodes extends $tea.Model {
|
|
52385
|
+
/**
|
|
52386
|
+
* @remarks
|
|
52387
|
+
* The number of cpu cores for the node.
|
|
52388
|
+
*
|
|
52389
|
+
* @example
|
|
52390
|
+
* 2
|
|
52391
|
+
*/
|
|
50475
52392
|
cpuCores?: string;
|
|
50476
52393
|
/**
|
|
52394
|
+
* @remarks
|
|
52395
|
+
* The proxy node id.
|
|
52396
|
+
*
|
|
50477
52397
|
* @example
|
|
50478
52398
|
* pn-xxxxxxx01
|
|
50479
52399
|
*/
|
|
50480
52400
|
nodeId?: string;
|
|
52401
|
+
/**
|
|
52402
|
+
* @remarks
|
|
52403
|
+
* The id of the availability zone where the node is located.
|
|
52404
|
+
*
|
|
52405
|
+
* @example
|
|
52406
|
+
* cn-hangzhou-c
|
|
52407
|
+
*/
|
|
50481
52408
|
zoneId?: string;
|
|
50482
52409
|
static names(): {
|
|
50483
52410
|
[key: string]: string;
|
|
@@ -50563,8 +52490,29 @@ export declare class DescribeDBProxyResponseBodyDbProxyEndpointItems extends $te
|
|
|
50563
52490
|
});
|
|
50564
52491
|
}
|
|
50565
52492
|
export declare class DescribeDBProxyEndpointResponseBodyDBProxyNodesDBProxyNodes extends $tea.Model {
|
|
52493
|
+
/**
|
|
52494
|
+
* @remarks
|
|
52495
|
+
* The number of CPU cores of the node.
|
|
52496
|
+
*
|
|
52497
|
+
* @example
|
|
52498
|
+
* 2
|
|
52499
|
+
*/
|
|
50566
52500
|
cpuCores?: string;
|
|
52501
|
+
/**
|
|
52502
|
+
* @remarks
|
|
52503
|
+
* The ID of the node in the zone.
|
|
52504
|
+
*
|
|
52505
|
+
* @example
|
|
52506
|
+
* pn-xxxxxxx01
|
|
52507
|
+
*/
|
|
50567
52508
|
nodeId?: string;
|
|
52509
|
+
/**
|
|
52510
|
+
* @remarks
|
|
52511
|
+
* The zone ID of the node.
|
|
52512
|
+
*
|
|
52513
|
+
* @example
|
|
52514
|
+
* cn-hangzhou-c
|
|
52515
|
+
*/
|
|
50568
52516
|
zoneId?: string;
|
|
50569
52517
|
static names(): {
|
|
50570
52518
|
[key: string]: string;
|
|
@@ -50687,6 +52635,7 @@ export declare class DescribeDBProxyPerformanceResponseBodyPerformanceKeysPerfor
|
|
|
50687
52635
|
* cpu_ratio
|
|
50688
52636
|
*/
|
|
50689
52637
|
key?: string;
|
|
52638
|
+
service?: string;
|
|
50690
52639
|
/**
|
|
50691
52640
|
* @remarks
|
|
50692
52641
|
* The format in which the value of the performance metric is returned.
|
|
@@ -55069,6 +57018,203 @@ export declare class DescribePriceResponseBodyServerlessPrice extends $tea.Model
|
|
|
55069
57018
|
[key: string]: any;
|
|
55070
57019
|
});
|
|
55071
57020
|
}
|
|
57021
|
+
export declare class DescribeRCClusterNodesResponseBodyNodes extends $tea.Model {
|
|
57022
|
+
/**
|
|
57023
|
+
* @remarks
|
|
57024
|
+
* The time when the node was created.
|
|
57025
|
+
*
|
|
57026
|
+
* @example
|
|
57027
|
+
* 2024-10-21T07:20:09Z
|
|
57028
|
+
*/
|
|
57029
|
+
creationTime?: string;
|
|
57030
|
+
/**
|
|
57031
|
+
* @remarks
|
|
57032
|
+
* The container version.
|
|
57033
|
+
*
|
|
57034
|
+
* @example
|
|
57035
|
+
* 1.0
|
|
57036
|
+
*/
|
|
57037
|
+
dockerVersion?: string;
|
|
57038
|
+
/**
|
|
57039
|
+
* @remarks
|
|
57040
|
+
* The image ID of the node.
|
|
57041
|
+
*
|
|
57042
|
+
* @example
|
|
57043
|
+
* m-2oqiu973jwcxe****
|
|
57044
|
+
*/
|
|
57045
|
+
imageId?: string;
|
|
57046
|
+
/**
|
|
57047
|
+
* @remarks
|
|
57048
|
+
* The node ID.
|
|
57049
|
+
*
|
|
57050
|
+
* @example
|
|
57051
|
+
* rc-u79597n5f54s5bnz****
|
|
57052
|
+
*/
|
|
57053
|
+
instanceId?: string;
|
|
57054
|
+
/**
|
|
57055
|
+
* @remarks
|
|
57056
|
+
* The node role. Valid values:
|
|
57057
|
+
*
|
|
57058
|
+
* * **Master**: master node
|
|
57059
|
+
* * **Worker**: worker node
|
|
57060
|
+
*
|
|
57061
|
+
* @example
|
|
57062
|
+
* Master
|
|
57063
|
+
*/
|
|
57064
|
+
instanceRole?: string;
|
|
57065
|
+
/**
|
|
57066
|
+
* @remarks
|
|
57067
|
+
* The IP address.
|
|
57068
|
+
*/
|
|
57069
|
+
ipAddresses?: string[];
|
|
57070
|
+
/**
|
|
57071
|
+
* @remarks
|
|
57072
|
+
* Indicates whether the node is provided by Alibaba Cloud. Valid values:
|
|
57073
|
+
*
|
|
57074
|
+
* * **true**
|
|
57075
|
+
* * **false**
|
|
57076
|
+
*
|
|
57077
|
+
* @example
|
|
57078
|
+
* true
|
|
57079
|
+
*/
|
|
57080
|
+
isAliyunNode?: boolean;
|
|
57081
|
+
/**
|
|
57082
|
+
* @remarks
|
|
57083
|
+
* The node name, which is the identifier of the RDS Custom node in the cluster.
|
|
57084
|
+
*
|
|
57085
|
+
* @example
|
|
57086
|
+
* cn-hangzhou.192.168.XXX.XXX
|
|
57087
|
+
*/
|
|
57088
|
+
nodeName?: string;
|
|
57089
|
+
/**
|
|
57090
|
+
* @remarks
|
|
57091
|
+
* The node pool ID.
|
|
57092
|
+
*
|
|
57093
|
+
* @example
|
|
57094
|
+
* None
|
|
57095
|
+
*/
|
|
57096
|
+
nodePoolId?: string;
|
|
57097
|
+
/**
|
|
57098
|
+
* @remarks
|
|
57099
|
+
* Indicates whether the node is ready. Valid values:
|
|
57100
|
+
*
|
|
57101
|
+
* * **Ready**: The node is ready.
|
|
57102
|
+
* * **NotReady**: The node is not ready.
|
|
57103
|
+
* * **Unknown**: The status of the node is unknown.
|
|
57104
|
+
* * **Offline**: The node is offline.
|
|
57105
|
+
*
|
|
57106
|
+
* @example
|
|
57107
|
+
* Ready
|
|
57108
|
+
*/
|
|
57109
|
+
nodeStatus?: string;
|
|
57110
|
+
/**
|
|
57111
|
+
* @remarks
|
|
57112
|
+
* The runtime of the ACK cluster.
|
|
57113
|
+
*
|
|
57114
|
+
* @example
|
|
57115
|
+
* 2024-10-21T07:20:09Z
|
|
57116
|
+
*/
|
|
57117
|
+
runtimeVersion?: string;
|
|
57118
|
+
/**
|
|
57119
|
+
* @remarks
|
|
57120
|
+
* The node status. Valid values:
|
|
57121
|
+
*
|
|
57122
|
+
* * **pending**
|
|
57123
|
+
* * **running**
|
|
57124
|
+
* * **starting**
|
|
57125
|
+
* * **stopping**
|
|
57126
|
+
* * **stopped**
|
|
57127
|
+
*
|
|
57128
|
+
* @example
|
|
57129
|
+
* running
|
|
57130
|
+
*/
|
|
57131
|
+
state?: string;
|
|
57132
|
+
static names(): {
|
|
57133
|
+
[key: string]: string;
|
|
57134
|
+
};
|
|
57135
|
+
static types(): {
|
|
57136
|
+
[key: string]: any;
|
|
57137
|
+
};
|
|
57138
|
+
constructor(map?: {
|
|
57139
|
+
[key: string]: any;
|
|
57140
|
+
});
|
|
57141
|
+
}
|
|
57142
|
+
export declare class DescribeRCClusterNodesResponseBodyPage extends $tea.Model {
|
|
57143
|
+
/**
|
|
57144
|
+
* @remarks
|
|
57145
|
+
* The page number.
|
|
57146
|
+
*
|
|
57147
|
+
* @example
|
|
57148
|
+
* 2
|
|
57149
|
+
*/
|
|
57150
|
+
pageNumber?: number;
|
|
57151
|
+
/**
|
|
57152
|
+
* @remarks
|
|
57153
|
+
* The maximum number of entries returned per page.
|
|
57154
|
+
*
|
|
57155
|
+
* @example
|
|
57156
|
+
* 10
|
|
57157
|
+
*/
|
|
57158
|
+
pageSize?: number;
|
|
57159
|
+
/**
|
|
57160
|
+
* @remarks
|
|
57161
|
+
* The total number of entries returned.
|
|
57162
|
+
*
|
|
57163
|
+
* @example
|
|
57164
|
+
* 4
|
|
57165
|
+
*/
|
|
57166
|
+
totalCount?: number;
|
|
57167
|
+
static names(): {
|
|
57168
|
+
[key: string]: string;
|
|
57169
|
+
};
|
|
57170
|
+
static types(): {
|
|
57171
|
+
[key: string]: any;
|
|
57172
|
+
};
|
|
57173
|
+
constructor(map?: {
|
|
57174
|
+
[key: string]: any;
|
|
57175
|
+
});
|
|
57176
|
+
}
|
|
57177
|
+
export declare class DescribeRCClustersResponseBodyClusters extends $tea.Model {
|
|
57178
|
+
/**
|
|
57179
|
+
* @remarks
|
|
57180
|
+
* The cluster name.
|
|
57181
|
+
*
|
|
57182
|
+
* @example
|
|
57183
|
+
* test01
|
|
57184
|
+
*/
|
|
57185
|
+
clusterName?: string;
|
|
57186
|
+
/**
|
|
57187
|
+
* @remarks
|
|
57188
|
+
* The time when the cluster was created.
|
|
57189
|
+
*
|
|
57190
|
+
* @example
|
|
57191
|
+
* 2024-10-30T02:16:04Z
|
|
57192
|
+
*/
|
|
57193
|
+
createTime?: string;
|
|
57194
|
+
/**
|
|
57195
|
+
* @remarks
|
|
57196
|
+
* The cluster status. Valid values:
|
|
57197
|
+
*
|
|
57198
|
+
* * **Pending**
|
|
57199
|
+
* * **Running**
|
|
57200
|
+
* * **Starting**
|
|
57201
|
+
* * **Stopping**
|
|
57202
|
+
* * **Stopped**
|
|
57203
|
+
*
|
|
57204
|
+
* @example
|
|
57205
|
+
* Running
|
|
57206
|
+
*/
|
|
57207
|
+
status?: string;
|
|
57208
|
+
static names(): {
|
|
57209
|
+
[key: string]: string;
|
|
57210
|
+
};
|
|
57211
|
+
static types(): {
|
|
57212
|
+
[key: string]: any;
|
|
57213
|
+
};
|
|
57214
|
+
constructor(map?: {
|
|
57215
|
+
[key: string]: any;
|
|
57216
|
+
});
|
|
57217
|
+
}
|
|
55072
57218
|
export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSetCapacitiesCapacity extends $tea.Model {
|
|
55073
57219
|
/**
|
|
55074
57220
|
* @remarks
|
|
@@ -55128,6 +57274,33 @@ export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymen
|
|
|
55128
57274
|
[key: string]: any;
|
|
55129
57275
|
});
|
|
55130
57276
|
}
|
|
57277
|
+
export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSetTagResourcesTagResources extends $tea.Model {
|
|
57278
|
+
resourceId?: string;
|
|
57279
|
+
resourceType?: string;
|
|
57280
|
+
tagKey?: string;
|
|
57281
|
+
tagValue?: string;
|
|
57282
|
+
static names(): {
|
|
57283
|
+
[key: string]: string;
|
|
57284
|
+
};
|
|
57285
|
+
static types(): {
|
|
57286
|
+
[key: string]: any;
|
|
57287
|
+
};
|
|
57288
|
+
constructor(map?: {
|
|
57289
|
+
[key: string]: any;
|
|
57290
|
+
});
|
|
57291
|
+
}
|
|
57292
|
+
export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSetTagResources extends $tea.Model {
|
|
57293
|
+
tagResources?: DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSetTagResourcesTagResources[];
|
|
57294
|
+
static names(): {
|
|
57295
|
+
[key: string]: string;
|
|
57296
|
+
};
|
|
57297
|
+
static types(): {
|
|
57298
|
+
[key: string]: any;
|
|
57299
|
+
};
|
|
57300
|
+
constructor(map?: {
|
|
57301
|
+
[key: string]: any;
|
|
57302
|
+
});
|
|
57303
|
+
}
|
|
55131
57304
|
export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSet extends $tea.Model {
|
|
55132
57305
|
/**
|
|
55133
57306
|
* @remarks
|
|
@@ -55221,6 +57394,7 @@ export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymen
|
|
|
55221
57394
|
* LooseDispersion
|
|
55222
57395
|
*/
|
|
55223
57396
|
strategy?: string;
|
|
57397
|
+
tagResources?: DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSetTagResources;
|
|
55224
57398
|
static names(): {
|
|
55225
57399
|
[key: string]: string;
|
|
55226
57400
|
};
|
|
@@ -55243,6 +57417,260 @@ export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSets extends
|
|
|
55243
57417
|
[key: string]: any;
|
|
55244
57418
|
});
|
|
55245
57419
|
}
|
|
57420
|
+
export declare class DescribeRCDisksResponseBodyDisks extends $tea.Model {
|
|
57421
|
+
/**
|
|
57422
|
+
* @remarks
|
|
57423
|
+
* The disk category. Valid values:
|
|
57424
|
+
*
|
|
57425
|
+
* * cloud: basic disk
|
|
57426
|
+
* * cloud_efficiency: utra disk
|
|
57427
|
+
* * cloud_ssd: standard SSD
|
|
57428
|
+
* * cloud_essd: Enterprise SSD (ESSD)
|
|
57429
|
+
* * cloud_auto: ESSD AutoPL disk
|
|
57430
|
+
* * local_ssd_pro: I/O-intensive local disk
|
|
57431
|
+
* * local_hdd_pro: throughput-intensive local disk
|
|
57432
|
+
* * cloud_essd_entry: ESSD Entry disk
|
|
57433
|
+
* * elastic_ephemeral_disk_standard: standard elastic ephemeral disk
|
|
57434
|
+
* * elastic_ephemeral_disk_premium: premium static ephemeral disk
|
|
57435
|
+
* * ephemeral: retired local disk
|
|
57436
|
+
* * ephemeral_ssd: retired local SSD
|
|
57437
|
+
*
|
|
57438
|
+
* @example
|
|
57439
|
+
* cloud_ssd
|
|
57440
|
+
*/
|
|
57441
|
+
category?: string;
|
|
57442
|
+
/**
|
|
57443
|
+
* @remarks
|
|
57444
|
+
* The creation time.
|
|
57445
|
+
*
|
|
57446
|
+
* @example
|
|
57447
|
+
* 2024-10-22T02:41:37Z
|
|
57448
|
+
*/
|
|
57449
|
+
creationTime?: string;
|
|
57450
|
+
/**
|
|
57451
|
+
* @remarks
|
|
57452
|
+
* Indicates whether the automatic snapshots of the cloud disk are deleted after the disk is released. Valid values:
|
|
57453
|
+
*
|
|
57454
|
+
* * true
|
|
57455
|
+
* * false
|
|
57456
|
+
*
|
|
57457
|
+
* @example
|
|
57458
|
+
* true
|
|
57459
|
+
*/
|
|
57460
|
+
deleteAutoSnapshot?: boolean;
|
|
57461
|
+
/**
|
|
57462
|
+
* @remarks
|
|
57463
|
+
* Indicates whether the cloud disk is released when its associated instance is released. Valid values:
|
|
57464
|
+
*
|
|
57465
|
+
* * true
|
|
57466
|
+
* * false
|
|
57467
|
+
*
|
|
57468
|
+
* @example
|
|
57469
|
+
* true
|
|
57470
|
+
*/
|
|
57471
|
+
deleteWithInstance?: boolean;
|
|
57472
|
+
/**
|
|
57473
|
+
* @remarks
|
|
57474
|
+
* The disk description.
|
|
57475
|
+
*
|
|
57476
|
+
* @example
|
|
57477
|
+
* zd_test
|
|
57478
|
+
*/
|
|
57479
|
+
description?: string;
|
|
57480
|
+
/**
|
|
57481
|
+
* @remarks
|
|
57482
|
+
* The mount point of the disk.
|
|
57483
|
+
*
|
|
57484
|
+
* @example
|
|
57485
|
+
* /dev/xvda
|
|
57486
|
+
*/
|
|
57487
|
+
device?: string;
|
|
57488
|
+
/**
|
|
57489
|
+
* @remarks
|
|
57490
|
+
* The billing method of the disk.
|
|
57491
|
+
*
|
|
57492
|
+
* PostPaid: pay-as-you-go
|
|
57493
|
+
*
|
|
57494
|
+
* @example
|
|
57495
|
+
* PostPaid
|
|
57496
|
+
*/
|
|
57497
|
+
diskChargeType?: string;
|
|
57498
|
+
/**
|
|
57499
|
+
* @remarks
|
|
57500
|
+
* The disk ID.
|
|
57501
|
+
*
|
|
57502
|
+
* @example
|
|
57503
|
+
* rcd-wz9f3peueu5npsl****
|
|
57504
|
+
*/
|
|
57505
|
+
diskId?: string;
|
|
57506
|
+
/**
|
|
57507
|
+
* @remarks
|
|
57508
|
+
* The disk name.
|
|
57509
|
+
*
|
|
57510
|
+
* @example
|
|
57511
|
+
* fvt-ecs-bcfb3627
|
|
57512
|
+
*/
|
|
57513
|
+
diskName?: string;
|
|
57514
|
+
/**
|
|
57515
|
+
* @remarks
|
|
57516
|
+
* Indicates whether only encrypted cloud disks are queried. Valid values:
|
|
57517
|
+
*
|
|
57518
|
+
* * true
|
|
57519
|
+
* * false (default)
|
|
57520
|
+
*
|
|
57521
|
+
* @example
|
|
57522
|
+
* true
|
|
57523
|
+
*/
|
|
57524
|
+
encrypted?: boolean;
|
|
57525
|
+
/**
|
|
57526
|
+
* @remarks
|
|
57527
|
+
* A reserved parameter. You do not need to specify this parameter.
|
|
57528
|
+
*
|
|
57529
|
+
* @example
|
|
57530
|
+
* none
|
|
57531
|
+
*/
|
|
57532
|
+
expiredTime?: string;
|
|
57533
|
+
/**
|
|
57534
|
+
* @remarks
|
|
57535
|
+
* The provisioned read/write IOPS of the ESSD AutoPL disk. Valid values: 0 to min{50,000, 1,000 × Storage capacity - Baseline performance}. Baseline performance = min{1,800 + 50 × Storage capacity, 50,000}.
|
|
57536
|
+
*
|
|
57537
|
+
* This parameter is available only when the `Category` parameter is set to `cloud_auto`.
|
|
57538
|
+
*
|
|
57539
|
+
* @example
|
|
57540
|
+
* 4000
|
|
57541
|
+
*/
|
|
57542
|
+
IOPS?: number;
|
|
57543
|
+
/**
|
|
57544
|
+
* @remarks
|
|
57545
|
+
* The ID of the image that is used to create the instance. This parameter is returned only if the cloud disk is created from an image. The value of this parameter remains unchanged throughout the lifecycle of the cloud disk.
|
|
57546
|
+
*
|
|
57547
|
+
* @example
|
|
57548
|
+
* m-2zeb24dw6wripjn2****
|
|
57549
|
+
*/
|
|
57550
|
+
imageId?: string;
|
|
57551
|
+
/**
|
|
57552
|
+
* @remarks
|
|
57553
|
+
* The instance ID.
|
|
57554
|
+
*
|
|
57555
|
+
* @example
|
|
57556
|
+
* rc-e8w1cn7634kiam****
|
|
57557
|
+
*/
|
|
57558
|
+
instanceId?: string;
|
|
57559
|
+
/**
|
|
57560
|
+
* @remarks
|
|
57561
|
+
* The performance level (PL) of the ESSD. Valid values:
|
|
57562
|
+
*
|
|
57563
|
+
* * PL0: A single ESSD can deliver up to 10,000 random read/write IOPS.
|
|
57564
|
+
* * PL1: A single ESSD can deliver up to 50,000 random read/write IOPS.
|
|
57565
|
+
* * PL2: A single ESSD can deliver up to 100,000 random read/write IOPS.
|
|
57566
|
+
* * PL3: A single ESSD can deliver up to 1,000,000 random read/write IOPS.
|
|
57567
|
+
*
|
|
57568
|
+
* @example
|
|
57569
|
+
* PL0
|
|
57570
|
+
*/
|
|
57571
|
+
performanceLevel?: string;
|
|
57572
|
+
/**
|
|
57573
|
+
* @remarks
|
|
57574
|
+
* The region ID.
|
|
57575
|
+
*
|
|
57576
|
+
* @example
|
|
57577
|
+
* cn-hangzhou
|
|
57578
|
+
*/
|
|
57579
|
+
regionId?: string;
|
|
57580
|
+
/**
|
|
57581
|
+
* @remarks
|
|
57582
|
+
* The ID of the resource group to which the disk belongs.
|
|
57583
|
+
*
|
|
57584
|
+
* @example
|
|
57585
|
+
* rg-aekzescnje5khnq
|
|
57586
|
+
*/
|
|
57587
|
+
resourceGroupId?: string;
|
|
57588
|
+
/**
|
|
57589
|
+
* @remarks
|
|
57590
|
+
* The serial number of the disk.
|
|
57591
|
+
*
|
|
57592
|
+
* @example
|
|
57593
|
+
* bp18um4r4f2fve2****
|
|
57594
|
+
*/
|
|
57595
|
+
serialNumber?: string;
|
|
57596
|
+
/**
|
|
57597
|
+
* @remarks
|
|
57598
|
+
* The size of the disk. Unit: GiB.
|
|
57599
|
+
*
|
|
57600
|
+
* @example
|
|
57601
|
+
* 60
|
|
57602
|
+
*/
|
|
57603
|
+
size?: number;
|
|
57604
|
+
/**
|
|
57605
|
+
* @remarks
|
|
57606
|
+
* The ID of the snapshot that was used to create the cloud disk.
|
|
57607
|
+
*
|
|
57608
|
+
* This parameter is empty unless the cloud disk was created from a snapshot. The value of this parameter remains unchanged throughout the lifecycle of the cloud disk.
|
|
57609
|
+
*
|
|
57610
|
+
* @example
|
|
57611
|
+
* rcds-bp67acfmxazb4p****
|
|
57612
|
+
*/
|
|
57613
|
+
sourceSnapshotId?: string;
|
|
57614
|
+
/**
|
|
57615
|
+
* @remarks
|
|
57616
|
+
* The status of the disk. Valid values:
|
|
57617
|
+
*
|
|
57618
|
+
* * In_use: The disk is in use.
|
|
57619
|
+
* * Available: The disk can be attached.
|
|
57620
|
+
* * Attaching: The disk is being attached.
|
|
57621
|
+
* * Detaching: The cloud disk is being detached.
|
|
57622
|
+
* * Creating: The disk is being created.
|
|
57623
|
+
* * ReIniting: The disk is being initialized.
|
|
57624
|
+
*
|
|
57625
|
+
* @example
|
|
57626
|
+
* In_use
|
|
57627
|
+
*/
|
|
57628
|
+
status?: string;
|
|
57629
|
+
/**
|
|
57630
|
+
* @remarks
|
|
57631
|
+
* The ID of the dedicated block storage cluster to which the cloud disk belongs. If your cloud disk belongs to the public block storage cluster, an empty value is returned.
|
|
57632
|
+
*
|
|
57633
|
+
* @example
|
|
57634
|
+
* dbsc-cn-zvp2rl601****
|
|
57635
|
+
*/
|
|
57636
|
+
storageClusterId?: string;
|
|
57637
|
+
/**
|
|
57638
|
+
* @remarks
|
|
57639
|
+
* The storage set ID.
|
|
57640
|
+
*
|
|
57641
|
+
* @example
|
|
57642
|
+
* ss-i-bp1j4i2jdf3owlhe****
|
|
57643
|
+
*/
|
|
57644
|
+
storageSetId?: string;
|
|
57645
|
+
/**
|
|
57646
|
+
* @remarks
|
|
57647
|
+
* The disk type. Valid values:
|
|
57648
|
+
*
|
|
57649
|
+
* * system: system disk
|
|
57650
|
+
* * data: data disk
|
|
57651
|
+
*
|
|
57652
|
+
* @example
|
|
57653
|
+
* data
|
|
57654
|
+
*/
|
|
57655
|
+
type?: string;
|
|
57656
|
+
/**
|
|
57657
|
+
* @remarks
|
|
57658
|
+
* The zone ID.
|
|
57659
|
+
*
|
|
57660
|
+
* @example
|
|
57661
|
+
* cn-hangzhou-j
|
|
57662
|
+
*/
|
|
57663
|
+
zoneId?: string;
|
|
57664
|
+
static names(): {
|
|
57665
|
+
[key: string]: string;
|
|
57666
|
+
};
|
|
57667
|
+
static types(): {
|
|
57668
|
+
[key: string]: any;
|
|
57669
|
+
};
|
|
57670
|
+
constructor(map?: {
|
|
57671
|
+
[key: string]: any;
|
|
57672
|
+
});
|
|
57673
|
+
}
|
|
55246
57674
|
export declare class DescribeRCImageListResponseBodyImages extends $tea.Model {
|
|
55247
57675
|
/**
|
|
55248
57676
|
* @remarks
|
|
@@ -55306,6 +57734,7 @@ export declare class DescribeRCImageListResponseBodyImages extends $tea.Model {
|
|
|
55306
57734
|
* false
|
|
55307
57735
|
*/
|
|
55308
57736
|
isPublic?: boolean;
|
|
57737
|
+
isSupportRdsCustom?: boolean;
|
|
55309
57738
|
/**
|
|
55310
57739
|
* @remarks
|
|
55311
57740
|
* The display name of the operating system in Chinese.
|
|
@@ -55641,6 +58070,21 @@ export declare class DescribeRCInstanceAttributeResponseBodyVpcAttributes extend
|
|
|
55641
58070
|
[key: string]: any;
|
|
55642
58071
|
});
|
|
55643
58072
|
}
|
|
58073
|
+
export declare class DescribeRCInstancesResponseBodyRCInstancesTagResources extends $tea.Model {
|
|
58074
|
+
resourceId?: string;
|
|
58075
|
+
resourceType?: string;
|
|
58076
|
+
tagKey?: string;
|
|
58077
|
+
tagValue?: string;
|
|
58078
|
+
static names(): {
|
|
58079
|
+
[key: string]: string;
|
|
58080
|
+
};
|
|
58081
|
+
static types(): {
|
|
58082
|
+
[key: string]: any;
|
|
58083
|
+
};
|
|
58084
|
+
constructor(map?: {
|
|
58085
|
+
[key: string]: any;
|
|
58086
|
+
});
|
|
58087
|
+
}
|
|
55644
58088
|
export declare class DescribeRCInstancesResponseBodyRCInstances extends $tea.Model {
|
|
55645
58089
|
/**
|
|
55646
58090
|
* @remarks
|
|
@@ -55708,6 +58152,7 @@ export declare class DescribeRCInstancesResponseBodyRCInstances extends $tea.Mod
|
|
|
55708
58152
|
* cn-hangzhou
|
|
55709
58153
|
*/
|
|
55710
58154
|
regionId?: string;
|
|
58155
|
+
spotStrategy?: string;
|
|
55711
58156
|
/**
|
|
55712
58157
|
* @remarks
|
|
55713
58158
|
* The instance status. Valid values:
|
|
@@ -55724,6 +58169,7 @@ export declare class DescribeRCInstancesResponseBodyRCInstances extends $tea.Mod
|
|
|
55724
58169
|
* Running
|
|
55725
58170
|
*/
|
|
55726
58171
|
status?: string;
|
|
58172
|
+
tagResources?: DescribeRCInstancesResponseBodyRCInstancesTagResources[];
|
|
55727
58173
|
/**
|
|
55728
58174
|
* @remarks
|
|
55729
58175
|
* The VPC ID.
|
|
@@ -55732,6 +58178,179 @@ export declare class DescribeRCInstancesResponseBodyRCInstances extends $tea.Mod
|
|
|
55732
58178
|
* vpc-uf6f7l4fg90****
|
|
55733
58179
|
*/
|
|
55734
58180
|
vpcId?: string;
|
|
58181
|
+
zoneId?: string;
|
|
58182
|
+
static names(): {
|
|
58183
|
+
[key: string]: string;
|
|
58184
|
+
};
|
|
58185
|
+
static types(): {
|
|
58186
|
+
[key: string]: any;
|
|
58187
|
+
};
|
|
58188
|
+
constructor(map?: {
|
|
58189
|
+
[key: string]: any;
|
|
58190
|
+
});
|
|
58191
|
+
}
|
|
58192
|
+
export declare class DescribeRCSnapshotsResponseBodySnapshots extends $tea.Model {
|
|
58193
|
+
/**
|
|
58194
|
+
* @remarks
|
|
58195
|
+
* Indicates whether the snapshot can be shared and used to create or roll back a cloud disk. Valid values:
|
|
58196
|
+
*
|
|
58197
|
+
* * true
|
|
58198
|
+
* * false
|
|
58199
|
+
*
|
|
58200
|
+
* @example
|
|
58201
|
+
* true
|
|
58202
|
+
*/
|
|
58203
|
+
available?: boolean;
|
|
58204
|
+
/**
|
|
58205
|
+
* @remarks
|
|
58206
|
+
* The snapshot type. Valid values:
|
|
58207
|
+
*
|
|
58208
|
+
* * Standard: standard snapshot
|
|
58209
|
+
* * Flash: local snapshot This value will be deprecated. The local snapshot feature is replaced with the instant access feature.
|
|
58210
|
+
* * archive: archived snapshot
|
|
58211
|
+
*
|
|
58212
|
+
* @example
|
|
58213
|
+
* Standard
|
|
58214
|
+
*/
|
|
58215
|
+
category?: string;
|
|
58216
|
+
/**
|
|
58217
|
+
* @remarks
|
|
58218
|
+
* The creation time. The time follows the [ISO 8601](https://help.aliyun.com/document_detail/25696.html) standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
|
|
58219
|
+
*
|
|
58220
|
+
* @example
|
|
58221
|
+
* 2024-10-18T09:37:14Z
|
|
58222
|
+
*/
|
|
58223
|
+
creationTime?: string;
|
|
58224
|
+
/**
|
|
58225
|
+
* @remarks
|
|
58226
|
+
* The snapshot description.
|
|
58227
|
+
*
|
|
58228
|
+
* @example
|
|
58229
|
+
* zd_test
|
|
58230
|
+
*/
|
|
58231
|
+
description?: string;
|
|
58232
|
+
/**
|
|
58233
|
+
* @remarks
|
|
58234
|
+
* Indicates whether the snapshot was encrypted. Valid values:
|
|
58235
|
+
*
|
|
58236
|
+
* * true
|
|
58237
|
+
* * false
|
|
58238
|
+
*
|
|
58239
|
+
* @example
|
|
58240
|
+
* true
|
|
58241
|
+
*/
|
|
58242
|
+
encrypted?: boolean;
|
|
58243
|
+
/**
|
|
58244
|
+
* @remarks
|
|
58245
|
+
* This parameter is deprecated.
|
|
58246
|
+
*
|
|
58247
|
+
* @example
|
|
58248
|
+
* none
|
|
58249
|
+
*/
|
|
58250
|
+
instantAccess?: boolean;
|
|
58251
|
+
/**
|
|
58252
|
+
* @remarks
|
|
58253
|
+
* The progress of the snapshot creation task in percentage.
|
|
58254
|
+
*
|
|
58255
|
+
* @example
|
|
58256
|
+
* 100
|
|
58257
|
+
*/
|
|
58258
|
+
progress?: string;
|
|
58259
|
+
/**
|
|
58260
|
+
* @remarks
|
|
58261
|
+
* The region ID.
|
|
58262
|
+
*
|
|
58263
|
+
* @example
|
|
58264
|
+
* cn-hangzhou
|
|
58265
|
+
*/
|
|
58266
|
+
regionId?: string;
|
|
58267
|
+
/**
|
|
58268
|
+
* @remarks
|
|
58269
|
+
* The snapshot ID.
|
|
58270
|
+
*
|
|
58271
|
+
* @example
|
|
58272
|
+
* rcds-hc1zg51xobdg4****
|
|
58273
|
+
*/
|
|
58274
|
+
snapshotId?: string;
|
|
58275
|
+
/**
|
|
58276
|
+
* @remarks
|
|
58277
|
+
* The snapshot name.
|
|
58278
|
+
*/
|
|
58279
|
+
snapshotName?: string;
|
|
58280
|
+
/**
|
|
58281
|
+
* @remarks
|
|
58282
|
+
* The snapshot type. Valid values:
|
|
58283
|
+
*
|
|
58284
|
+
* * auto or timer: automatically created snapshot
|
|
58285
|
+
* * user: manually created snapshot
|
|
58286
|
+
* * all: all snapshot types
|
|
58287
|
+
*
|
|
58288
|
+
* @example
|
|
58289
|
+
* auto
|
|
58290
|
+
*/
|
|
58291
|
+
snapshotType?: string;
|
|
58292
|
+
/**
|
|
58293
|
+
* @remarks
|
|
58294
|
+
* The ID of the original disk. This parameter is retained even after the original disk for which the snapshot was created is released.
|
|
58295
|
+
*
|
|
58296
|
+
* @example
|
|
58297
|
+
* rcd-bp67acfmxazb4ph****
|
|
58298
|
+
*/
|
|
58299
|
+
sourceDiskId?: string;
|
|
58300
|
+
/**
|
|
58301
|
+
* @remarks
|
|
58302
|
+
* The storage capacity of the original disk. Unit: GiB.
|
|
58303
|
+
*
|
|
58304
|
+
* @example
|
|
58305
|
+
* 60
|
|
58306
|
+
*/
|
|
58307
|
+
sourceDiskSize?: number;
|
|
58308
|
+
/**
|
|
58309
|
+
* @remarks
|
|
58310
|
+
* The type of the original disk. Valid values:
|
|
58311
|
+
*
|
|
58312
|
+
* * SYSTEM: system disk
|
|
58313
|
+
* * DATA: data disk
|
|
58314
|
+
*
|
|
58315
|
+
* @example
|
|
58316
|
+
* data
|
|
58317
|
+
*/
|
|
58318
|
+
sourceDiskType?: string;
|
|
58319
|
+
/**
|
|
58320
|
+
* @remarks
|
|
58321
|
+
* The type of the original disk.
|
|
58322
|
+
*
|
|
58323
|
+
* > This parameter will be removed in the future. To ensure future compatibility, we recommend that you use other parameters.
|
|
58324
|
+
*
|
|
58325
|
+
* @example
|
|
58326
|
+
* disk
|
|
58327
|
+
*/
|
|
58328
|
+
sourceStorageType?: string;
|
|
58329
|
+
/**
|
|
58330
|
+
* @remarks
|
|
58331
|
+
* The snapshot status. Valid values:
|
|
58332
|
+
*
|
|
58333
|
+
* * progressing: The snapshot is being created.
|
|
58334
|
+
* * accomplished: The snapshot is created.
|
|
58335
|
+
* * failed: The snapshot fails to be created.
|
|
58336
|
+
*
|
|
58337
|
+
* @example
|
|
58338
|
+
* progressing
|
|
58339
|
+
*/
|
|
58340
|
+
status?: string;
|
|
58341
|
+
/**
|
|
58342
|
+
* @remarks
|
|
58343
|
+
* Indicates whether the snapshot is used to create custom images or disks. Valid values:
|
|
58344
|
+
*
|
|
58345
|
+
* * image: The snapshot is used to create custom images.
|
|
58346
|
+
* * disk: The snapshot is used to create disks.
|
|
58347
|
+
* * image_disk: The snapshot is used to create custom images and data disks.
|
|
58348
|
+
* * none: The snapshot is not used to create custom images or disks.
|
|
58349
|
+
*
|
|
58350
|
+
* @example
|
|
58351
|
+
* none
|
|
58352
|
+
*/
|
|
58353
|
+
usage?: string;
|
|
55735
58354
|
static names(): {
|
|
55736
58355
|
[key: string]: string;
|
|
55737
58356
|
};
|
|
@@ -57789,6 +60408,38 @@ export declare class DescribeUpgradeMajorVersionPrecheckTaskResponseBodyItems ex
|
|
|
57789
60408
|
* 1635748703000
|
|
57790
60409
|
*/
|
|
57791
60410
|
effectiveTime?: string;
|
|
60411
|
+
/**
|
|
60412
|
+
* @remarks
|
|
60413
|
+
* The minimum recommended disk capacity for upgrading. Unit: GB.
|
|
60414
|
+
*
|
|
60415
|
+
* > This parameter is returned only for RDS PostgreSQL instances.
|
|
60416
|
+
*
|
|
60417
|
+
* @example
|
|
60418
|
+
* 100
|
|
60419
|
+
*/
|
|
60420
|
+
recommendDiskSize?: number;
|
|
60421
|
+
/**
|
|
60422
|
+
* @remarks
|
|
60423
|
+
* The minimum recommended memory for upgrading. Unit: GB.
|
|
60424
|
+
*
|
|
60425
|
+
* > This parameter is returned only for RDS PostgreSQL instances.
|
|
60426
|
+
*
|
|
60427
|
+
* @example
|
|
60428
|
+
* 8
|
|
60429
|
+
*/
|
|
60430
|
+
recommendLeastMemSize?: number;
|
|
60431
|
+
/**
|
|
60432
|
+
* @remarks
|
|
60433
|
+
* Recommended memory when upgrading. Unit: GB.
|
|
60434
|
+
*
|
|
60435
|
+
* When the memory of the instance is greater than or equal to the recommended memory, it will be upgraded at the fastest speed to minimize the read-only time of the instance.
|
|
60436
|
+
*
|
|
60437
|
+
* > This parameter is returned only for RDS PostgreSQL instances.
|
|
60438
|
+
*
|
|
60439
|
+
* @example
|
|
60440
|
+
* 32
|
|
60441
|
+
*/
|
|
60442
|
+
recommendMemSize?: number;
|
|
57792
60443
|
/**
|
|
57793
60444
|
* @remarks
|
|
57794
60445
|
* The result of the upgrade check.
|
|
@@ -57908,6 +60559,16 @@ export declare class DescribeUpgradeMajorVersionTasksResponseBodyItems extends $
|
|
|
57908
60559
|
* 1614236007000
|
|
57909
60560
|
*/
|
|
57910
60561
|
startTime?: string;
|
|
60562
|
+
/**
|
|
60563
|
+
* @remarks
|
|
60564
|
+
* The end time of the switching from the original instance to the new instance.
|
|
60565
|
+
*
|
|
60566
|
+
* Expressed in Unix timestamp. Unit: milliseconds.
|
|
60567
|
+
*
|
|
60568
|
+
* @example
|
|
60569
|
+
* 1714237539000
|
|
60570
|
+
*/
|
|
60571
|
+
switchEndTime?: string;
|
|
57911
60572
|
/**
|
|
57912
60573
|
* @remarks
|
|
57913
60574
|
* The time at which your workloads are switched over from the original instance to the new instance.
|
|
@@ -58954,16 +61615,31 @@ export declare class ModifyDBNodeRequestDBNode extends $tea.Model {
|
|
|
58954
61615
|
}
|
|
58955
61616
|
export declare class ModifyDBProxyRequestDBProxyNodes extends $tea.Model {
|
|
58956
61617
|
/**
|
|
61618
|
+
* @remarks
|
|
61619
|
+
* The number of CPU cores of the node. Valid values: **1** to **16**.
|
|
61620
|
+
*
|
|
61621
|
+
* > This parameter is required when you configure the **DBProxyNodes** parameter.
|
|
61622
|
+
*
|
|
58957
61623
|
* @example
|
|
58958
61624
|
* 1
|
|
58959
61625
|
*/
|
|
58960
61626
|
cpuCores?: string;
|
|
58961
61627
|
/**
|
|
61628
|
+
* @remarks
|
|
61629
|
+
* The number of proxy nodes in the zone. Valid values: **1** and **2**.
|
|
61630
|
+
*
|
|
61631
|
+
* > This parameter is required when you configure the **DBProxyNodes** parameter.
|
|
61632
|
+
*
|
|
58962
61633
|
* @example
|
|
58963
61634
|
* 2
|
|
58964
61635
|
*/
|
|
58965
61636
|
nodeCounts?: string;
|
|
58966
61637
|
/**
|
|
61638
|
+
* @remarks
|
|
61639
|
+
* The ID of the zone in which the node resides.
|
|
61640
|
+
*
|
|
61641
|
+
* > This parameter is required when you configure the **DBProxyNodes** parameter.
|
|
61642
|
+
*
|
|
58967
61643
|
* @example
|
|
58968
61644
|
* cn-hagnzhou-c
|
|
58969
61645
|
*/
|
|
@@ -58980,16 +61656,28 @@ export declare class ModifyDBProxyRequestDBProxyNodes extends $tea.Model {
|
|
|
58980
61656
|
}
|
|
58981
61657
|
export declare class ModifyDBProxyInstanceRequestDBProxyNodes extends $tea.Model {
|
|
58982
61658
|
/**
|
|
61659
|
+
* @remarks
|
|
61660
|
+
* The number of cpu cores for the node, valid values: **1** to **16**.
|
|
61661
|
+
* >This parameter is required when selecting **DBProxyNodes**.
|
|
61662
|
+
*
|
|
58983
61663
|
* @example
|
|
58984
61664
|
* 1
|
|
58985
61665
|
*/
|
|
58986
61666
|
cpuCores?: string;
|
|
58987
61667
|
/**
|
|
61668
|
+
* @remarks
|
|
61669
|
+
* The number of proxy nodes in the availability zone, valid values: **1** to **16**.
|
|
61670
|
+
* >This parameter is required when selecting **DBProxyNodes**.
|
|
61671
|
+
*
|
|
58988
61672
|
* @example
|
|
58989
61673
|
* 2
|
|
58990
61674
|
*/
|
|
58991
61675
|
nodeCounts?: string;
|
|
58992
61676
|
/**
|
|
61677
|
+
* @remarks
|
|
61678
|
+
* The id of the availability zone where the node is located.
|
|
61679
|
+
* >This parameter is required when selecting **DBProxyNodes**.
|
|
61680
|
+
*
|
|
58993
61681
|
* @example
|
|
58994
61682
|
* cn-hagnzhou-c
|
|
58995
61683
|
*/
|
|
@@ -59005,7 +61693,25 @@ export declare class ModifyDBProxyInstanceRequestDBProxyNodes extends $tea.Model
|
|
|
59005
61693
|
});
|
|
59006
61694
|
}
|
|
59007
61695
|
export declare class ModifyDBProxyInstanceRequestMigrateAZ extends $tea.Model {
|
|
61696
|
+
/**
|
|
61697
|
+
* @remarks
|
|
61698
|
+
* The proxy connection address ID. You can obtain it through the DescribeDBProxyEndpoint interface.
|
|
61699
|
+
*
|
|
61700
|
+
* > This parameter is required when MigrateAZ is selected.
|
|
61701
|
+
*
|
|
61702
|
+
* @example
|
|
61703
|
+
* yhw429********
|
|
61704
|
+
*/
|
|
59008
61705
|
dbProxyEndpointId?: string;
|
|
61706
|
+
/**
|
|
61707
|
+
* @remarks
|
|
61708
|
+
* The target VSwitchId corresponding to the proxy instance migration.
|
|
61709
|
+
*
|
|
61710
|
+
* > This parameter is required when MigrateAZ is selected.
|
|
61711
|
+
*
|
|
61712
|
+
* @example
|
|
61713
|
+
* vsw-sw0qq49d1m****
|
|
61714
|
+
*/
|
|
59009
61715
|
destVSwitchId?: string;
|
|
59010
61716
|
static names(): {
|
|
59011
61717
|
[key: string]: string;
|
|
@@ -59558,7 +62264,7 @@ export declare class RunRCInstancesRequestSystemDisk extends $tea.Model {
|
|
|
59558
62264
|
* @example
|
|
59559
62265
|
* 20
|
|
59560
62266
|
*/
|
|
59561
|
-
size?:
|
|
62267
|
+
size?: number;
|
|
59562
62268
|
static names(): {
|
|
59563
62269
|
[key: string]: string;
|
|
59564
62270
|
};
|
|
@@ -59823,6 +62529,36 @@ export default class Client extends OpenApi {
|
|
|
59823
62529
|
* @returns AllocateReadWriteSplittingConnectionResponse
|
|
59824
62530
|
*/
|
|
59825
62531
|
allocateReadWriteSplittingConnection(request: AllocateReadWriteSplittingConnectionRequest): Promise<AllocateReadWriteSplittingConnectionResponse>;
|
|
62532
|
+
/**
|
|
62533
|
+
* 挂载RC云盘
|
|
62534
|
+
*
|
|
62535
|
+
* @param request - AttachRCDiskRequest
|
|
62536
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
62537
|
+
* @returns AttachRCDiskResponse
|
|
62538
|
+
*/
|
|
62539
|
+
attachRCDiskWithOptions(request: AttachRCDiskRequest, runtime: $Util.RuntimeOptions): Promise<AttachRCDiskResponse>;
|
|
62540
|
+
/**
|
|
62541
|
+
* 挂载RC云盘
|
|
62542
|
+
*
|
|
62543
|
+
* @param request - AttachRCDiskRequest
|
|
62544
|
+
* @returns AttachRCDiskResponse
|
|
62545
|
+
*/
|
|
62546
|
+
attachRCDisk(request: AttachRCDiskRequest): Promise<AttachRCDiskResponse>;
|
|
62547
|
+
/**
|
|
62548
|
+
* Adds RDS Custom nodes to a Container Service for Kubernetes (ACK) cluster.
|
|
62549
|
+
*
|
|
62550
|
+
* @param tmpReq - AttachRCInstancesRequest
|
|
62551
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
62552
|
+
* @returns AttachRCInstancesResponse
|
|
62553
|
+
*/
|
|
62554
|
+
attachRCInstancesWithOptions(tmpReq: AttachRCInstancesRequest, runtime: $Util.RuntimeOptions): Promise<AttachRCInstancesResponse>;
|
|
62555
|
+
/**
|
|
62556
|
+
* Adds RDS Custom nodes to a Container Service for Kubernetes (ACK) cluster.
|
|
62557
|
+
*
|
|
62558
|
+
* @param request - AttachRCInstancesRequest
|
|
62559
|
+
* @returns AttachRCInstancesResponse
|
|
62560
|
+
*/
|
|
62561
|
+
attachRCInstances(request: AttachRCInstancesRequest): Promise<AttachRCInstancesResponse>;
|
|
59826
62562
|
/**
|
|
59827
62563
|
* Associates a whitelist template with an instance.
|
|
59828
62564
|
*
|
|
@@ -59894,25 +62630,25 @@ export default class Client extends OpenApi {
|
|
|
59894
62630
|
*/
|
|
59895
62631
|
calculateDBInstanceWeight(request: CalculateDBInstanceWeightRequest): Promise<CalculateDBInstanceWeightResponse>;
|
|
59896
62632
|
/**
|
|
59897
|
-
*
|
|
59898
|
-
*
|
|
59899
|
-
* @remarks
|
|
59900
|
-
* ### Supported
|
|
59901
|
-
*
|
|
59902
|
-
*
|
|
59903
|
-
*
|
|
59904
|
-
*
|
|
59905
|
-
* ###
|
|
59906
|
-
* >
|
|
59907
|
-
*
|
|
59908
|
-
*
|
|
59909
|
-
*
|
|
59910
|
-
*
|
|
59911
|
-
* ### Usage
|
|
59912
|
-
*
|
|
59913
|
-
*
|
|
59914
|
-
*
|
|
59915
|
-
*
|
|
62633
|
+
* Cancels O\\&M tasks that are not started.
|
|
62634
|
+
*
|
|
62635
|
+
* @remarks
|
|
62636
|
+
* ### [](#)Supported database engines
|
|
62637
|
+
* * MySQL
|
|
62638
|
+
* * PostgreSQL
|
|
62639
|
+
* * SQL Server
|
|
62640
|
+
* * MariaDB
|
|
62641
|
+
* ### [](#)References
|
|
62642
|
+
* > Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
62643
|
+
* * [Scheduled events for ApsaraDB RDS for MySQL instances](https://help.aliyun.com/document_detail/104183.html)
|
|
62644
|
+
* * [Scheduled events for ApsaraDB RDS for PostgreSQL instances](https://help.aliyun.com/document_detail/104452.html)
|
|
62645
|
+
* * [Scheduled events for ApsaraDB RDS for SQL Server instances](https://help.aliyun.com/document_detail/104451.html)
|
|
62646
|
+
* * [Scheduled events for ApsaraDB RDS for MariaDB instances](https://help.aliyun.com/document_detail/104454.html)
|
|
62647
|
+
* ### [](#)Usage notes
|
|
62648
|
+
* Tasks cannot be canceled in the following situations:
|
|
62649
|
+
* * The allowCancel parameter is set to 0.
|
|
62650
|
+
* * The current time is later than the task start time.
|
|
62651
|
+
* * The status of the task is not set to 3. The value 3 specifies that the task is waiting to be executed.
|
|
59916
62652
|
*
|
|
59917
62653
|
* @param request - CancelActiveOperationTasksRequest
|
|
59918
62654
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -59920,25 +62656,25 @@ export default class Client extends OpenApi {
|
|
|
59920
62656
|
*/
|
|
59921
62657
|
cancelActiveOperationTasksWithOptions(request: CancelActiveOperationTasksRequest, runtime: $Util.RuntimeOptions): Promise<CancelActiveOperationTasksResponse>;
|
|
59922
62658
|
/**
|
|
59923
|
-
*
|
|
59924
|
-
*
|
|
59925
|
-
* @remarks
|
|
59926
|
-
* ### Supported
|
|
59927
|
-
*
|
|
59928
|
-
*
|
|
59929
|
-
*
|
|
59930
|
-
*
|
|
59931
|
-
* ###
|
|
59932
|
-
* >
|
|
59933
|
-
*
|
|
59934
|
-
*
|
|
59935
|
-
*
|
|
59936
|
-
*
|
|
59937
|
-
* ### Usage
|
|
59938
|
-
*
|
|
59939
|
-
*
|
|
59940
|
-
*
|
|
59941
|
-
*
|
|
62659
|
+
* Cancels O\\&M tasks that are not started.
|
|
62660
|
+
*
|
|
62661
|
+
* @remarks
|
|
62662
|
+
* ### [](#)Supported database engines
|
|
62663
|
+
* * MySQL
|
|
62664
|
+
* * PostgreSQL
|
|
62665
|
+
* * SQL Server
|
|
62666
|
+
* * MariaDB
|
|
62667
|
+
* ### [](#)References
|
|
62668
|
+
* > Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
62669
|
+
* * [Scheduled events for ApsaraDB RDS for MySQL instances](https://help.aliyun.com/document_detail/104183.html)
|
|
62670
|
+
* * [Scheduled events for ApsaraDB RDS for PostgreSQL instances](https://help.aliyun.com/document_detail/104452.html)
|
|
62671
|
+
* * [Scheduled events for ApsaraDB RDS for SQL Server instances](https://help.aliyun.com/document_detail/104451.html)
|
|
62672
|
+
* * [Scheduled events for ApsaraDB RDS for MariaDB instances](https://help.aliyun.com/document_detail/104454.html)
|
|
62673
|
+
* ### [](#)Usage notes
|
|
62674
|
+
* Tasks cannot be canceled in the following situations:
|
|
62675
|
+
* * The allowCancel parameter is set to 0.
|
|
62676
|
+
* * The current time is later than the task start time.
|
|
62677
|
+
* * The status of the task is not set to 3. The value 3 specifies that the task is waiting to be executed.
|
|
59942
62678
|
*
|
|
59943
62679
|
* @param request - CancelActiveOperationTasksRequest
|
|
59944
62680
|
* @returns CancelActiveOperationTasksResponse
|
|
@@ -60734,29 +63470,6 @@ export default class Client extends OpenApi {
|
|
|
60734
63470
|
* @returns CreateDdrInstanceResponse
|
|
60735
63471
|
*/
|
|
60736
63472
|
createDdrInstance(request: CreateDdrInstanceRequest): Promise<CreateDdrInstanceResponse>;
|
|
60737
|
-
/**
|
|
60738
|
-
* Creates a diagnostic report.
|
|
60739
|
-
*
|
|
60740
|
-
* @remarks
|
|
60741
|
-
* > This operation is no longer maintained. You can call the CreateDiagnosticReport operation of Database Autonomy Service (DAS) to create a diagnostic report.
|
|
60742
|
-
* After you call this operation to create a diagnostic report, you can call the DescribeDiagnosticReportList operation to download the diagnostic report.
|
|
60743
|
-
*
|
|
60744
|
-
* @param request - CreateDiagnosticReportRequest
|
|
60745
|
-
* @param runtime - runtime options for this request RuntimeOptions
|
|
60746
|
-
* @returns CreateDiagnosticReportResponse
|
|
60747
|
-
*/
|
|
60748
|
-
createDiagnosticReportWithOptions(request: CreateDiagnosticReportRequest, runtime: $Util.RuntimeOptions): Promise<CreateDiagnosticReportResponse>;
|
|
60749
|
-
/**
|
|
60750
|
-
* Creates a diagnostic report.
|
|
60751
|
-
*
|
|
60752
|
-
* @remarks
|
|
60753
|
-
* > This operation is no longer maintained. You can call the CreateDiagnosticReport operation of Database Autonomy Service (DAS) to create a diagnostic report.
|
|
60754
|
-
* After you call this operation to create a diagnostic report, you can call the DescribeDiagnosticReportList operation to download the diagnostic report.
|
|
60755
|
-
*
|
|
60756
|
-
* @param request - CreateDiagnosticReportRequest
|
|
60757
|
-
* @returns CreateDiagnosticReportResponse
|
|
60758
|
-
*/
|
|
60759
|
-
createDiagnosticReport(request: CreateDiagnosticReportRequest): Promise<CreateDiagnosticReportResponse>;
|
|
60760
63473
|
/**
|
|
60761
63474
|
* Creates an ApsaraDB RDS global active database cluster.
|
|
60762
63475
|
*
|
|
@@ -60967,14 +63680,14 @@ export default class Client extends OpenApi {
|
|
|
60967
63680
|
*
|
|
60968
63681
|
* @remarks
|
|
60969
63682
|
* ### [](#)Supported database engines
|
|
60970
|
-
*
|
|
63683
|
+
* PostgreSQL
|
|
60971
63684
|
* ### [](#)References
|
|
60972
|
-
* >
|
|
63685
|
+
* > Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
60973
63686
|
* [Manage extensions](https://help.aliyun.com/document_detail/2402409.html)
|
|
60974
|
-
* ### [](#)
|
|
60975
|
-
* Install only the
|
|
60976
|
-
* * For more information, see [
|
|
60977
|
-
* * You can call
|
|
63687
|
+
* ### [](#)Usage notes
|
|
63688
|
+
* Install only the extensions that are supported by the major engine version of the instance. Otherwise, the installation fails.
|
|
63689
|
+
* * For more information, see [Supported extensions](https://help.aliyun.com/document_detail/142340.html).
|
|
63690
|
+
* * You can call an API operation to query the major engine version of the instance. For more information, see [DescribeDBInstanceAttribute](https://help.aliyun.com/document_detail/610394.html).
|
|
60978
63691
|
*
|
|
60979
63692
|
* @param request - CreatePostgresExtensionsRequest
|
|
60980
63693
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -60986,14 +63699,14 @@ export default class Client extends OpenApi {
|
|
|
60986
63699
|
*
|
|
60987
63700
|
* @remarks
|
|
60988
63701
|
* ### [](#)Supported database engines
|
|
60989
|
-
*
|
|
63702
|
+
* PostgreSQL
|
|
60990
63703
|
* ### [](#)References
|
|
60991
|
-
* >
|
|
63704
|
+
* > Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
60992
63705
|
* [Manage extensions](https://help.aliyun.com/document_detail/2402409.html)
|
|
60993
|
-
* ### [](#)
|
|
60994
|
-
* Install only the
|
|
60995
|
-
* * For more information, see [
|
|
60996
|
-
* * You can call
|
|
63706
|
+
* ### [](#)Usage notes
|
|
63707
|
+
* Install only the extensions that are supported by the major engine version of the instance. Otherwise, the installation fails.
|
|
63708
|
+
* * For more information, see [Supported extensions](https://help.aliyun.com/document_detail/142340.html).
|
|
63709
|
+
* * You can call an API operation to query the major engine version of the instance. For more information, see [DescribeDBInstanceAttribute](https://help.aliyun.com/document_detail/610394.html).
|
|
60997
63710
|
*
|
|
60998
63711
|
* @param request - CreatePostgresExtensionsRequest
|
|
60999
63712
|
* @returns CreatePostgresExtensionsResponse
|
|
@@ -61014,6 +63727,58 @@ export default class Client extends OpenApi {
|
|
|
61014
63727
|
* @returns CreateRCDeploymentSetResponse
|
|
61015
63728
|
*/
|
|
61016
63729
|
createRCDeploymentSet(request: CreateRCDeploymentSetRequest): Promise<CreateRCDeploymentSetResponse>;
|
|
63730
|
+
/**
|
|
63731
|
+
* Creates a data disk for an RDS Custom instance.
|
|
63732
|
+
*
|
|
63733
|
+
* @param request - CreateRCDiskRequest
|
|
63734
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
63735
|
+
* @returns CreateRCDiskResponse
|
|
63736
|
+
*/
|
|
63737
|
+
createRCDiskWithOptions(request: CreateRCDiskRequest, runtime: $Util.RuntimeOptions): Promise<CreateRCDiskResponse>;
|
|
63738
|
+
/**
|
|
63739
|
+
* Creates a data disk for an RDS Custom instance.
|
|
63740
|
+
*
|
|
63741
|
+
* @param request - CreateRCDiskRequest
|
|
63742
|
+
* @returns CreateRCDiskResponse
|
|
63743
|
+
*/
|
|
63744
|
+
createRCDisk(request: CreateRCDiskRequest): Promise<CreateRCDiskResponse>;
|
|
63745
|
+
/**
|
|
63746
|
+
* Creates a snapshot for a cloud disk.
|
|
63747
|
+
*
|
|
63748
|
+
* @remarks
|
|
63749
|
+
* In the following scenarios, you cannot create snapshots for a specific disk:
|
|
63750
|
+
* * The number of manual snapshots of the disk has reached 256.
|
|
63751
|
+
* * A snapshot is being created for the disk.
|
|
63752
|
+
* * The instance to which the disk is attached has never been started.
|
|
63753
|
+
* * The instance to which the disk is attached is not in the **Stopped** or **Running** state.
|
|
63754
|
+
* When you create a snapshot, take note of the following items:
|
|
63755
|
+
* * If a snapshot is being created, the snapshot cannot be used to create a custom image by calling the CreateImage operation.
|
|
63756
|
+
* * When a snapshot is being created for a disk that is attached to an RDS Custom instance, do not change the instance state.
|
|
63757
|
+
* * You can create snapshots for a disk that is in the **Expired** state. If the release time scheduled for a disk arrives when a snapshot is being created for the disk, the snapshot in the Creating state is deleted when the disk is released.
|
|
63758
|
+
*
|
|
63759
|
+
* @param request - CreateRCSnapshotRequest
|
|
63760
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
63761
|
+
* @returns CreateRCSnapshotResponse
|
|
63762
|
+
*/
|
|
63763
|
+
createRCSnapshotWithOptions(request: CreateRCSnapshotRequest, runtime: $Util.RuntimeOptions): Promise<CreateRCSnapshotResponse>;
|
|
63764
|
+
/**
|
|
63765
|
+
* Creates a snapshot for a cloud disk.
|
|
63766
|
+
*
|
|
63767
|
+
* @remarks
|
|
63768
|
+
* In the following scenarios, you cannot create snapshots for a specific disk:
|
|
63769
|
+
* * The number of manual snapshots of the disk has reached 256.
|
|
63770
|
+
* * A snapshot is being created for the disk.
|
|
63771
|
+
* * The instance to which the disk is attached has never been started.
|
|
63772
|
+
* * The instance to which the disk is attached is not in the **Stopped** or **Running** state.
|
|
63773
|
+
* When you create a snapshot, take note of the following items:
|
|
63774
|
+
* * If a snapshot is being created, the snapshot cannot be used to create a custom image by calling the CreateImage operation.
|
|
63775
|
+
* * When a snapshot is being created for a disk that is attached to an RDS Custom instance, do not change the instance state.
|
|
63776
|
+
* * You can create snapshots for a disk that is in the **Expired** state. If the release time scheduled for a disk arrives when a snapshot is being created for the disk, the snapshot in the Creating state is deleted when the disk is released.
|
|
63777
|
+
*
|
|
63778
|
+
* @param request - CreateRCSnapshotRequest
|
|
63779
|
+
* @returns CreateRCSnapshotResponse
|
|
63780
|
+
*/
|
|
63781
|
+
createRCSnapshot(request: CreateRCSnapshotRequest): Promise<CreateRCSnapshotResponse>;
|
|
61017
63782
|
/**
|
|
61018
63783
|
* Creates a read-only instance.
|
|
61019
63784
|
*
|
|
@@ -61633,6 +64398,21 @@ export default class Client extends OpenApi {
|
|
|
61633
64398
|
* @returns DeletePostgresExtensionsResponse
|
|
61634
64399
|
*/
|
|
61635
64400
|
deletePostgresExtensions(request: DeletePostgresExtensionsRequest): Promise<DeletePostgresExtensionsResponse>;
|
|
64401
|
+
/**
|
|
64402
|
+
* Deletes a RDS Custom node from a Container Service for Kubernetes (ACK) cluster.
|
|
64403
|
+
*
|
|
64404
|
+
* @param tmpReq - DeleteRCClusterNodesRequest
|
|
64405
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
64406
|
+
* @returns DeleteRCClusterNodesResponse
|
|
64407
|
+
*/
|
|
64408
|
+
deleteRCClusterNodesWithOptions(tmpReq: DeleteRCClusterNodesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteRCClusterNodesResponse>;
|
|
64409
|
+
/**
|
|
64410
|
+
* Deletes a RDS Custom node from a Container Service for Kubernetes (ACK) cluster.
|
|
64411
|
+
*
|
|
64412
|
+
* @param request - DeleteRCClusterNodesRequest
|
|
64413
|
+
* @returns DeleteRCClusterNodesResponse
|
|
64414
|
+
*/
|
|
64415
|
+
deleteRCClusterNodes(request: DeleteRCClusterNodesRequest): Promise<DeleteRCClusterNodesResponse>;
|
|
61636
64416
|
/**
|
|
61637
64417
|
* Deletes a deployment set for an RDS Custom instance. Before you call this operation, you must specify parameters such as RegionId and DeploymentSetId.
|
|
61638
64418
|
*
|
|
@@ -61648,6 +64428,33 @@ export default class Client extends OpenApi {
|
|
|
61648
64428
|
* @returns DeleteRCDeploymentSetResponse
|
|
61649
64429
|
*/
|
|
61650
64430
|
deleteRCDeploymentSet(request: DeleteRCDeploymentSetRequest): Promise<DeleteRCDeploymentSetResponse>;
|
|
64431
|
+
/**
|
|
64432
|
+
* Releases a pay-as-you-go data disk. The data disk can be a basic disk, an ultra disk, a standard SSD, or an Enterprise SSD (ESSD).
|
|
64433
|
+
*
|
|
64434
|
+
* @remarks
|
|
64435
|
+
* Before you call this operation, take note of the following items:
|
|
64436
|
+
* * Manual snapshots of the disk are retained.
|
|
64437
|
+
* * The disk must be in the Unattached (Available) state.
|
|
64438
|
+
* * If no disk with the specified disk ID exists, the request will be ignored.
|
|
64439
|
+
*
|
|
64440
|
+
* @param request - DeleteRCDiskRequest
|
|
64441
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
64442
|
+
* @returns DeleteRCDiskResponse
|
|
64443
|
+
*/
|
|
64444
|
+
deleteRCDiskWithOptions(request: DeleteRCDiskRequest, runtime: $Util.RuntimeOptions): Promise<DeleteRCDiskResponse>;
|
|
64445
|
+
/**
|
|
64446
|
+
* Releases a pay-as-you-go data disk. The data disk can be a basic disk, an ultra disk, a standard SSD, or an Enterprise SSD (ESSD).
|
|
64447
|
+
*
|
|
64448
|
+
* @remarks
|
|
64449
|
+
* Before you call this operation, take note of the following items:
|
|
64450
|
+
* * Manual snapshots of the disk are retained.
|
|
64451
|
+
* * The disk must be in the Unattached (Available) state.
|
|
64452
|
+
* * If no disk with the specified disk ID exists, the request will be ignored.
|
|
64453
|
+
*
|
|
64454
|
+
* @param request - DeleteRCDiskRequest
|
|
64455
|
+
* @returns DeleteRCDiskResponse
|
|
64456
|
+
*/
|
|
64457
|
+
deleteRCDisk(request: DeleteRCDiskRequest): Promise<DeleteRCDiskResponse>;
|
|
61651
64458
|
/**
|
|
61652
64459
|
* 删除RDS用户专属主机实例
|
|
61653
64460
|
*
|
|
@@ -61684,6 +64491,33 @@ export default class Client extends OpenApi {
|
|
|
61684
64491
|
* @returns DeleteRCInstancesResponse
|
|
61685
64492
|
*/
|
|
61686
64493
|
deleteRCInstances(request: DeleteRCInstancesRequest): Promise<DeleteRCInstancesResponse>;
|
|
64494
|
+
/**
|
|
64495
|
+
* Deletes a cloud disk snapshot.
|
|
64496
|
+
*
|
|
64497
|
+
* @remarks
|
|
64498
|
+
* Before you call this operation, take note of the following items:
|
|
64499
|
+
* * If the specified snapshot ID does not exist, the request will be ignored.
|
|
64500
|
+
* * If the snapshot is used to create custom images, the snapshot cannot be deleted. You must delete the created custom images before you can delete the snapshot.
|
|
64501
|
+
* * If the snapshot is used to create cloud disks and `Force` is not specified or is set to `false`, the snapshot cannot be directly deleted. If you want to delete the snapshot, set `Force` to true to forcefully delete the snapshot. The cloud disks created from the snapshot cannot be re-initialized after the snapshot is forcefully deleted.
|
|
64502
|
+
*
|
|
64503
|
+
* @param request - DeleteRCSnapshotRequest
|
|
64504
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
64505
|
+
* @returns DeleteRCSnapshotResponse
|
|
64506
|
+
*/
|
|
64507
|
+
deleteRCSnapshotWithOptions(request: DeleteRCSnapshotRequest, runtime: $Util.RuntimeOptions): Promise<DeleteRCSnapshotResponse>;
|
|
64508
|
+
/**
|
|
64509
|
+
* Deletes a cloud disk snapshot.
|
|
64510
|
+
*
|
|
64511
|
+
* @remarks
|
|
64512
|
+
* Before you call this operation, take note of the following items:
|
|
64513
|
+
* * If the specified snapshot ID does not exist, the request will be ignored.
|
|
64514
|
+
* * If the snapshot is used to create custom images, the snapshot cannot be deleted. You must delete the created custom images before you can delete the snapshot.
|
|
64515
|
+
* * If the snapshot is used to create cloud disks and `Force` is not specified or is set to `false`, the snapshot cannot be directly deleted. If you want to delete the snapshot, set `Force` to true to forcefully delete the snapshot. The cloud disks created from the snapshot cannot be re-initialized after the snapshot is forcefully deleted.
|
|
64516
|
+
*
|
|
64517
|
+
* @param request - DeleteRCSnapshotRequest
|
|
64518
|
+
* @returns DeleteRCSnapshotResponse
|
|
64519
|
+
*/
|
|
64520
|
+
deleteRCSnapshot(request: DeleteRCSnapshotRequest): Promise<DeleteRCSnapshotResponse>;
|
|
61687
64521
|
/**
|
|
61688
64522
|
* Deletes the data synchronization link of a disaster recovery RDS instance and promotes the disaster recovery instance to the primary instance.
|
|
61689
64523
|
*
|
|
@@ -62569,12 +65403,16 @@ export default class Client extends OpenApi {
|
|
|
62569
65403
|
*/
|
|
62570
65404
|
describeCurrentModifyOrder(request: DescribeCurrentModifyOrderRequest): Promise<DescribeCurrentModifyOrderResponse>;
|
|
62571
65405
|
/**
|
|
65406
|
+
* 查询实例资源使用情况
|
|
65407
|
+
*
|
|
62572
65408
|
* @param request - DescribeCustinsResourceInfoRequest
|
|
62573
65409
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
62574
65410
|
* @returns DescribeCustinsResourceInfoResponse
|
|
62575
65411
|
*/
|
|
62576
65412
|
describeCustinsResourceInfoWithOptions(request: DescribeCustinsResourceInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeCustinsResourceInfoResponse>;
|
|
62577
65413
|
/**
|
|
65414
|
+
* 查询实例资源使用情况
|
|
65415
|
+
*
|
|
62578
65416
|
* @param request - DescribeCustinsResourceInfoRequest
|
|
62579
65417
|
* @returns DescribeCustinsResourceInfoResponse
|
|
62580
65418
|
*/
|
|
@@ -63251,7 +66089,7 @@ export default class Client extends OpenApi {
|
|
|
63251
66089
|
*/
|
|
63252
66090
|
describeDBMiniEngineVersions(request: DescribeDBMiniEngineVersionsRequest): Promise<DescribeDBMiniEngineVersionsResponse>;
|
|
63253
66091
|
/**
|
|
63254
|
-
* Queries the settings of the
|
|
66092
|
+
* Queries the settings of the database proxy feature for an instance.
|
|
63255
66093
|
*
|
|
63256
66094
|
* @remarks
|
|
63257
66095
|
* ### [](#)Supported database engines
|
|
@@ -63264,7 +66102,7 @@ export default class Client extends OpenApi {
|
|
|
63264
66102
|
*/
|
|
63265
66103
|
describeDBProxyWithOptions(request: DescribeDBProxyRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBProxyResponse>;
|
|
63266
66104
|
/**
|
|
63267
|
-
* Queries the settings of the
|
|
66105
|
+
* Queries the settings of the database proxy feature for an instance.
|
|
63268
66106
|
*
|
|
63269
66107
|
* @remarks
|
|
63270
66108
|
* ### [](#)Supported database engines
|
|
@@ -63729,12 +66567,16 @@ export default class Client extends OpenApi {
|
|
|
63729
66567
|
*/
|
|
63730
66568
|
describeHistoryTasksStat(request: DescribeHistoryTasksStatRequest): Promise<DescribeHistoryTasksStatResponse>;
|
|
63731
66569
|
/**
|
|
66570
|
+
* 查询主机组弹性策略参数
|
|
66571
|
+
*
|
|
63732
66572
|
* @param request - DescribeHostGroupElasticStrategyParametersRequest
|
|
63733
66573
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
63734
66574
|
* @returns DescribeHostGroupElasticStrategyParametersResponse
|
|
63735
66575
|
*/
|
|
63736
66576
|
describeHostGroupElasticStrategyParametersWithOptions(request: DescribeHostGroupElasticStrategyParametersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHostGroupElasticStrategyParametersResponse>;
|
|
63737
66577
|
/**
|
|
66578
|
+
* 查询主机组弹性策略参数
|
|
66579
|
+
*
|
|
63738
66580
|
* @param request - DescribeHostGroupElasticStrategyParametersRequest
|
|
63739
66581
|
* @returns DescribeHostGroupElasticStrategyParametersResponse
|
|
63740
66582
|
*/
|
|
@@ -64399,6 +67241,57 @@ export default class Client extends OpenApi {
|
|
|
64399
67241
|
* @returns DescribeQuickSaleConfigResponse
|
|
64400
67242
|
*/
|
|
64401
67243
|
describeQuickSaleConfig(request: DescribeQuickSaleConfigRequest): Promise<DescribeQuickSaleConfigResponse>;
|
|
67244
|
+
/**
|
|
67245
|
+
* Queries the kubeconfig file of a Container Service for Kubernetes (ACK) cluster in which an RDS Custom instance resides.
|
|
67246
|
+
*
|
|
67247
|
+
* @remarks
|
|
67248
|
+
* Kubeconfig files store identity and authentication information that is used by clients to access ACK clusters. To use kubectl to manage an ACK cluster, you must use the kubeconfig file to connect to the ACK cluster. We recommend that you keep kubeconfig files confidential and revoke kubeconfig files that are not in use. This helps prevent data leaks caused by the disclosure of kubeconfig files.
|
|
67249
|
+
*
|
|
67250
|
+
* @param request - DescribeRCClusterConfigRequest
|
|
67251
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
67252
|
+
* @returns DescribeRCClusterConfigResponse
|
|
67253
|
+
*/
|
|
67254
|
+
describeRCClusterConfigWithOptions(request: DescribeRCClusterConfigRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRCClusterConfigResponse>;
|
|
67255
|
+
/**
|
|
67256
|
+
* Queries the kubeconfig file of a Container Service for Kubernetes (ACK) cluster in which an RDS Custom instance resides.
|
|
67257
|
+
*
|
|
67258
|
+
* @remarks
|
|
67259
|
+
* Kubeconfig files store identity and authentication information that is used by clients to access ACK clusters. To use kubectl to manage an ACK cluster, you must use the kubeconfig file to connect to the ACK cluster. We recommend that you keep kubeconfig files confidential and revoke kubeconfig files that are not in use. This helps prevent data leaks caused by the disclosure of kubeconfig files.
|
|
67260
|
+
*
|
|
67261
|
+
* @param request - DescribeRCClusterConfigRequest
|
|
67262
|
+
* @returns DescribeRCClusterConfigResponse
|
|
67263
|
+
*/
|
|
67264
|
+
describeRCClusterConfig(request: DescribeRCClusterConfigRequest): Promise<DescribeRCClusterConfigResponse>;
|
|
67265
|
+
/**
|
|
67266
|
+
* Queries the RDS custom nodes in a Container Service for Kubernetes (ACK) cluster.
|
|
67267
|
+
*
|
|
67268
|
+
* @param request - DescribeRCClusterNodesRequest
|
|
67269
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
67270
|
+
* @returns DescribeRCClusterNodesResponse
|
|
67271
|
+
*/
|
|
67272
|
+
describeRCClusterNodesWithOptions(request: DescribeRCClusterNodesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRCClusterNodesResponse>;
|
|
67273
|
+
/**
|
|
67274
|
+
* Queries the RDS custom nodes in a Container Service for Kubernetes (ACK) cluster.
|
|
67275
|
+
*
|
|
67276
|
+
* @param request - DescribeRCClusterNodesRequest
|
|
67277
|
+
* @returns DescribeRCClusterNodesResponse
|
|
67278
|
+
*/
|
|
67279
|
+
describeRCClusterNodes(request: DescribeRCClusterNodesRequest): Promise<DescribeRCClusterNodesResponse>;
|
|
67280
|
+
/**
|
|
67281
|
+
* Queries Container Service for Kubernetes (ACK) clusters to which RDS Custom nodes reside in a specific region.
|
|
67282
|
+
*
|
|
67283
|
+
* @param request - DescribeRCClustersRequest
|
|
67284
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
67285
|
+
* @returns DescribeRCClustersResponse
|
|
67286
|
+
*/
|
|
67287
|
+
describeRCClustersWithOptions(request: DescribeRCClustersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRCClustersResponse>;
|
|
67288
|
+
/**
|
|
67289
|
+
* Queries Container Service for Kubernetes (ACK) clusters to which RDS Custom nodes reside in a specific region.
|
|
67290
|
+
*
|
|
67291
|
+
* @param request - DescribeRCClustersRequest
|
|
67292
|
+
* @returns DescribeRCClustersResponse
|
|
67293
|
+
*/
|
|
67294
|
+
describeRCClusters(request: DescribeRCClustersRequest): Promise<DescribeRCClustersResponse>;
|
|
64402
67295
|
/**
|
|
64403
67296
|
* Queries the details of one or more deployment sets for RDS Custom instances. Before you call this operation, you must specify parameters such as DeploymentSetIds, Strategy, and DeploymentSetName.
|
|
64404
67297
|
*
|
|
@@ -64414,6 +67307,21 @@ export default class Client extends OpenApi {
|
|
|
64414
67307
|
* @returns DescribeRCDeploymentSetsResponse
|
|
64415
67308
|
*/
|
|
64416
67309
|
describeRCDeploymentSets(request: DescribeRCDeploymentSetsRequest): Promise<DescribeRCDeploymentSetsResponse>;
|
|
67310
|
+
/**
|
|
67311
|
+
* Queries the disk information about an RDS Custom instance.
|
|
67312
|
+
*
|
|
67313
|
+
* @param request - DescribeRCDisksRequest
|
|
67314
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
67315
|
+
* @returns DescribeRCDisksResponse
|
|
67316
|
+
*/
|
|
67317
|
+
describeRCDisksWithOptions(request: DescribeRCDisksRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRCDisksResponse>;
|
|
67318
|
+
/**
|
|
67319
|
+
* Queries the disk information about an RDS Custom instance.
|
|
67320
|
+
*
|
|
67321
|
+
* @param request - DescribeRCDisksRequest
|
|
67322
|
+
* @returns DescribeRCDisksResponse
|
|
67323
|
+
*/
|
|
67324
|
+
describeRCDisks(request: DescribeRCDisksRequest): Promise<DescribeRCDisksResponse>;
|
|
64417
67325
|
/**
|
|
64418
67326
|
* Queries custom images that can be used to create an RDS Custom instance. Before you call this operation, you must specify parameters such as RegionId.
|
|
64419
67327
|
*
|
|
@@ -64444,6 +67352,27 @@ export default class Client extends OpenApi {
|
|
|
64444
67352
|
* @returns DescribeRCInstanceAttributeResponse
|
|
64445
67353
|
*/
|
|
64446
67354
|
describeRCInstanceAttribute(request: DescribeRCInstanceAttributeRequest): Promise<DescribeRCInstanceAttributeResponse>;
|
|
67355
|
+
/**
|
|
67356
|
+
* Queries the Virtual Network Computing (VNC) logon address of an RDS Custom instance.
|
|
67357
|
+
*
|
|
67358
|
+
* @remarks
|
|
67359
|
+
* The address returned is valid only for 15 seconds. If you do not use the returned address to establish a connection within 15 seconds, the address expires and you must call the operation again to obtain a new address.
|
|
67360
|
+
*
|
|
67361
|
+
* @param request - DescribeRCInstanceVncUrlRequest
|
|
67362
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
67363
|
+
* @returns DescribeRCInstanceVncUrlResponse
|
|
67364
|
+
*/
|
|
67365
|
+
describeRCInstanceVncUrlWithOptions(request: DescribeRCInstanceVncUrlRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRCInstanceVncUrlResponse>;
|
|
67366
|
+
/**
|
|
67367
|
+
* Queries the Virtual Network Computing (VNC) logon address of an RDS Custom instance.
|
|
67368
|
+
*
|
|
67369
|
+
* @remarks
|
|
67370
|
+
* The address returned is valid only for 15 seconds. If you do not use the returned address to establish a connection within 15 seconds, the address expires and you must call the operation again to obtain a new address.
|
|
67371
|
+
*
|
|
67372
|
+
* @param request - DescribeRCInstanceVncUrlRequest
|
|
67373
|
+
* @returns DescribeRCInstanceVncUrlResponse
|
|
67374
|
+
*/
|
|
67375
|
+
describeRCInstanceVncUrl(request: DescribeRCInstanceVncUrlRequest): Promise<DescribeRCInstanceVncUrlResponse>;
|
|
64447
67376
|
/**
|
|
64448
67377
|
* Queries the details of an RDS Custom instance.
|
|
64449
67378
|
*
|
|
@@ -64474,6 +67403,21 @@ export default class Client extends OpenApi {
|
|
|
64474
67403
|
* @returns DescribeRCMetricListResponse
|
|
64475
67404
|
*/
|
|
64476
67405
|
describeRCMetricList(request: DescribeRCMetricListRequest): Promise<DescribeRCMetricListResponse>;
|
|
67406
|
+
/**
|
|
67407
|
+
* Queries the details of snapshots. The details include the status of the snapshots, the amount of remaining time required to create the snapshots, and the retention period of the automatic snapshots in days.
|
|
67408
|
+
*
|
|
67409
|
+
* @param request - DescribeRCSnapshotsRequest
|
|
67410
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
67411
|
+
* @returns DescribeRCSnapshotsResponse
|
|
67412
|
+
*/
|
|
67413
|
+
describeRCSnapshotsWithOptions(request: DescribeRCSnapshotsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRCSnapshotsResponse>;
|
|
67414
|
+
/**
|
|
67415
|
+
* Queries the details of snapshots. The details include the status of the snapshots, the amount of remaining time required to create the snapshots, and the retention period of the automatic snapshots in days.
|
|
67416
|
+
*
|
|
67417
|
+
* @param request - DescribeRCSnapshotsRequest
|
|
67418
|
+
* @returns DescribeRCSnapshotsResponse
|
|
67419
|
+
*/
|
|
67420
|
+
describeRCSnapshots(request: DescribeRCSnapshotsRequest): Promise<DescribeRCSnapshotsResponse>;
|
|
64477
67421
|
/**
|
|
64478
67422
|
* This operation is deprecated.
|
|
64479
67423
|
*
|
|
@@ -65260,6 +68204,21 @@ export default class Client extends OpenApi {
|
|
|
65260
68204
|
* @returns DetachGadInstanceMemberResponse
|
|
65261
68205
|
*/
|
|
65262
68206
|
detachGadInstanceMember(request: DetachGadInstanceMemberRequest): Promise<DetachGadInstanceMemberResponse>;
|
|
68207
|
+
/**
|
|
68208
|
+
* Detaches a pay-as-you-go data disk or a system disk from an RDS Custom instance.
|
|
68209
|
+
*
|
|
68210
|
+
* @param request - DetachRCDiskRequest
|
|
68211
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
68212
|
+
* @returns DetachRCDiskResponse
|
|
68213
|
+
*/
|
|
68214
|
+
detachRCDiskWithOptions(request: DetachRCDiskRequest, runtime: $Util.RuntimeOptions): Promise<DetachRCDiskResponse>;
|
|
68215
|
+
/**
|
|
68216
|
+
* Detaches a pay-as-you-go data disk or a system disk from an RDS Custom instance.
|
|
68217
|
+
*
|
|
68218
|
+
* @param request - DetachRCDiskRequest
|
|
68219
|
+
* @returns DetachRCDiskResponse
|
|
68220
|
+
*/
|
|
68221
|
+
detachRCDisk(request: DetachRCDiskRequest): Promise<DetachRCDiskResponse>;
|
|
65263
68222
|
/**
|
|
65264
68223
|
* Disassociates a whitelist template from an instance.
|
|
65265
68224
|
*
|
|
@@ -65307,10 +68266,7 @@ export default class Client extends OpenApi {
|
|
|
65307
68266
|
*
|
|
65308
68267
|
* @remarks
|
|
65309
68268
|
* ### Supported database engines
|
|
65310
|
-
*
|
|
65311
|
-
* * RDS PostgreSQL
|
|
65312
|
-
* * RDS SQL Server
|
|
65313
|
-
* * RDS MariaDB
|
|
68269
|
+
* RDS MySQL
|
|
65314
68270
|
*
|
|
65315
68271
|
* @param request - GetDBInstanceTopologyRequest
|
|
65316
68272
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -65322,10 +68278,7 @@ export default class Client extends OpenApi {
|
|
|
65322
68278
|
*
|
|
65323
68279
|
* @remarks
|
|
65324
68280
|
* ### Supported database engines
|
|
65325
|
-
*
|
|
65326
|
-
* * RDS PostgreSQL
|
|
65327
|
-
* * RDS SQL Server
|
|
65328
|
-
* * RDS MariaDB
|
|
68281
|
+
* RDS MySQL
|
|
65329
68282
|
*
|
|
65330
68283
|
* @param request - GetDBInstanceTopologyRequest
|
|
65331
68284
|
* @returns GetDBInstanceTopologyResponse
|
|
@@ -66655,17 +69608,17 @@ export default class Client extends OpenApi {
|
|
|
66655
69608
|
*/
|
|
66656
69609
|
modifyDBNode(request: ModifyDBNodeRequest): Promise<ModifyDBNodeResponse>;
|
|
66657
69610
|
/**
|
|
66658
|
-
* Enables or
|
|
69611
|
+
* Enables or modifies the database proxy feature for an instance.
|
|
66659
69612
|
*
|
|
66660
69613
|
* @remarks
|
|
66661
69614
|
* ### [](#)Supported database engines
|
|
66662
69615
|
* * MySQL
|
|
66663
69616
|
* * PostgreSQL
|
|
66664
|
-
* > Starting October 17, 2023, ApsaraDB RDS
|
|
69617
|
+
* > Starting October 17, 2023, ApsaraDB RDS for MySQL instances that run RDS Cluster Edition offer one free-of-charge dedicated database proxy for each unit in phases. For more information, see [[Special offers/Price changes\\] One dedicated proxy is provided free of charge for ApsaraDB RDS for MySQL instances on RDS Cluster Edition](~~2555466~~).
|
|
66665
69618
|
* ### [](#)References
|
|
66666
|
-
* >
|
|
66667
|
-
* * [Enable
|
|
66668
|
-
* * [Enable
|
|
69619
|
+
* > Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
69620
|
+
* * [Enable the database proxy feature of ApsaraDB RDS for MySQL](https://help.aliyun.com/document_detail/197456.html)
|
|
69621
|
+
* * [Enable the database proxy feature of ApsaraDB RDS for PostgreSQL](https://help.aliyun.com/document_detail/418272.html)
|
|
66669
69622
|
*
|
|
66670
69623
|
* @param tmpReq - ModifyDBProxyRequest
|
|
66671
69624
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -66673,17 +69626,17 @@ export default class Client extends OpenApi {
|
|
|
66673
69626
|
*/
|
|
66674
69627
|
modifyDBProxyWithOptions(tmpReq: ModifyDBProxyRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBProxyResponse>;
|
|
66675
69628
|
/**
|
|
66676
|
-
* Enables or
|
|
69629
|
+
* Enables or modifies the database proxy feature for an instance.
|
|
66677
69630
|
*
|
|
66678
69631
|
* @remarks
|
|
66679
69632
|
* ### [](#)Supported database engines
|
|
66680
69633
|
* * MySQL
|
|
66681
69634
|
* * PostgreSQL
|
|
66682
|
-
* > Starting October 17, 2023, ApsaraDB RDS
|
|
69635
|
+
* > Starting October 17, 2023, ApsaraDB RDS for MySQL instances that run RDS Cluster Edition offer one free-of-charge dedicated database proxy for each unit in phases. For more information, see [[Special offers/Price changes\\] One dedicated proxy is provided free of charge for ApsaraDB RDS for MySQL instances on RDS Cluster Edition](~~2555466~~).
|
|
66683
69636
|
* ### [](#)References
|
|
66684
|
-
* >
|
|
66685
|
-
* * [Enable
|
|
66686
|
-
* * [Enable
|
|
69637
|
+
* > Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
69638
|
+
* * [Enable the database proxy feature of ApsaraDB RDS for MySQL](https://help.aliyun.com/document_detail/197456.html)
|
|
69639
|
+
* * [Enable the database proxy feature of ApsaraDB RDS for PostgreSQL](https://help.aliyun.com/document_detail/418272.html)
|
|
66687
69640
|
*
|
|
66688
69641
|
* @param request - ModifyDBProxyRequest
|
|
66689
69642
|
* @returns ModifyDBProxyResponse
|
|
@@ -66723,16 +69676,16 @@ export default class Client extends OpenApi {
|
|
|
66723
69676
|
*/
|
|
66724
69677
|
modifyDBProxyEndpoint(request: ModifyDBProxyEndpointRequest): Promise<ModifyDBProxyEndpointResponse>;
|
|
66725
69678
|
/**
|
|
66726
|
-
*
|
|
69679
|
+
* Modifies the database proxy endpoint of an instance.
|
|
66727
69680
|
*
|
|
66728
69681
|
* @remarks
|
|
66729
|
-
* ### Supported database engines
|
|
69682
|
+
* ### [](#)Supported database engines
|
|
66730
69683
|
* * MySQL
|
|
66731
69684
|
* * PostgreSQL
|
|
66732
|
-
* ### References
|
|
66733
|
-
* >
|
|
66734
|
-
* * [Configure the
|
|
66735
|
-
* * [Configure the
|
|
69685
|
+
* ### [](#)References
|
|
69686
|
+
* > Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
69687
|
+
* * [Configure the database proxy endpoint of an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/184921.html)
|
|
69688
|
+
* * [Configure the database proxy endpoint of an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/418274.html)
|
|
66736
69689
|
*
|
|
66737
69690
|
* @param request - ModifyDBProxyEndpointAddressRequest
|
|
66738
69691
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -66740,16 +69693,16 @@ export default class Client extends OpenApi {
|
|
|
66740
69693
|
*/
|
|
66741
69694
|
modifyDBProxyEndpointAddressWithOptions(request: ModifyDBProxyEndpointAddressRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBProxyEndpointAddressResponse>;
|
|
66742
69695
|
/**
|
|
66743
|
-
*
|
|
69696
|
+
* Modifies the database proxy endpoint of an instance.
|
|
66744
69697
|
*
|
|
66745
69698
|
* @remarks
|
|
66746
|
-
* ### Supported database engines
|
|
69699
|
+
* ### [](#)Supported database engines
|
|
66747
69700
|
* * MySQL
|
|
66748
69701
|
* * PostgreSQL
|
|
66749
|
-
* ### References
|
|
66750
|
-
* >
|
|
66751
|
-
* * [Configure the
|
|
66752
|
-
* * [Configure the
|
|
69702
|
+
* ### [](#)References
|
|
69703
|
+
* > Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
69704
|
+
* * [Configure the database proxy endpoint of an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/184921.html)
|
|
69705
|
+
* * [Configure the database proxy endpoint of an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/418274.html)
|
|
66753
69706
|
*
|
|
66754
69707
|
* @param request - ModifyDBProxyEndpointAddressRequest
|
|
66755
69708
|
* @returns ModifyDBProxyEndpointAddressResponse
|
|
@@ -66848,12 +69801,11 @@ export default class Client extends OpenApi {
|
|
|
66848
69801
|
* Modifies the property settings of an ApsaraDB RDS for SQL Server instance.
|
|
66849
69802
|
*
|
|
66850
69803
|
* @remarks
|
|
66851
|
-
* ### [](#)Supported database
|
|
69804
|
+
* ### [](#)Supported database engine
|
|
66852
69805
|
* * SQL Server
|
|
66853
69806
|
* ### [](#)References
|
|
66854
|
-
*
|
|
66855
|
-
*
|
|
66856
|
-
* > : Before you call this operation, read the preceding topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
69807
|
+
* You can call this operation to modify the database properties of an ApsaraDB RDS for SQL Server instance and archive data from an instance that uses cloud disks to an Object Storage Service (OSS) bucket. Before you call this operation to archive data to an OSS bucket, you must enable the data archiving feature in the ApsaraDB RDS console. For more information, see [Modify database properties](https://help.aliyun.com/document_detail/2401398.html) and [Archive cloud disk data to an OSS bucket](https://help.aliyun.com/document_detail/2767189.html).
|
|
69808
|
+
* > Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
66857
69809
|
*
|
|
66858
69810
|
* @param request - ModifyDatabaseConfigRequest
|
|
66859
69811
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -66864,12 +69816,11 @@ export default class Client extends OpenApi {
|
|
|
66864
69816
|
* Modifies the property settings of an ApsaraDB RDS for SQL Server instance.
|
|
66865
69817
|
*
|
|
66866
69818
|
* @remarks
|
|
66867
|
-
* ### [](#)Supported database
|
|
69819
|
+
* ### [](#)Supported database engine
|
|
66868
69820
|
* * SQL Server
|
|
66869
69821
|
* ### [](#)References
|
|
66870
|
-
*
|
|
66871
|
-
*
|
|
66872
|
-
* > : Before you call this operation, read the preceding topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
69822
|
+
* You can call this operation to modify the database properties of an ApsaraDB RDS for SQL Server instance and archive data from an instance that uses cloud disks to an Object Storage Service (OSS) bucket. Before you call this operation to archive data to an OSS bucket, you must enable the data archiving feature in the ApsaraDB RDS console. For more information, see [Modify database properties](https://help.aliyun.com/document_detail/2401398.html) and [Archive cloud disk data to an OSS bucket](https://help.aliyun.com/document_detail/2767189.html).
|
|
69823
|
+
* > Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
66873
69824
|
*
|
|
66874
69825
|
* @param request - ModifyDatabaseConfigRequest
|
|
66875
69826
|
* @returns ModifyDatabaseConfigResponse
|
|
@@ -67226,6 +70177,21 @@ export default class Client extends OpenApi {
|
|
|
67226
70177
|
* @returns ModifyRCInstanceResponse
|
|
67227
70178
|
*/
|
|
67228
70179
|
modifyRCInstance(request: ModifyRCInstanceRequest): Promise<ModifyRCInstanceResponse>;
|
|
70180
|
+
/**
|
|
70181
|
+
* Modifies specific attributes of an RDS Custom instance, such as the password or hostname.
|
|
70182
|
+
*
|
|
70183
|
+
* @param request - ModifyRCInstanceAttributeRequest
|
|
70184
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
70185
|
+
* @returns ModifyRCInstanceAttributeResponse
|
|
70186
|
+
*/
|
|
70187
|
+
modifyRCInstanceAttributeWithOptions(request: ModifyRCInstanceAttributeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyRCInstanceAttributeResponse>;
|
|
70188
|
+
/**
|
|
70189
|
+
* Modifies specific attributes of an RDS Custom instance, such as the password or hostname.
|
|
70190
|
+
*
|
|
70191
|
+
* @param request - ModifyRCInstanceAttributeRequest
|
|
70192
|
+
* @returns ModifyRCInstanceAttributeResponse
|
|
70193
|
+
*/
|
|
70194
|
+
modifyRCInstanceAttribute(request: ModifyRCInstanceAttributeRequest): Promise<ModifyRCInstanceAttributeResponse>;
|
|
67229
70195
|
/**
|
|
67230
70196
|
* 修改RDS用户专属主机实例付费类型
|
|
67231
70197
|
*
|
|
@@ -67241,6 +70207,36 @@ export default class Client extends OpenApi {
|
|
|
67241
70207
|
* @returns ModifyRCInstanceChargeTypeResponse
|
|
67242
70208
|
*/
|
|
67243
70209
|
modifyRCInstanceChargeType(request: ModifyRCInstanceChargeTypeRequest): Promise<ModifyRCInstanceChargeTypeResponse>;
|
|
70210
|
+
/**
|
|
70211
|
+
* 修改RC实例描述
|
|
70212
|
+
*
|
|
70213
|
+
* @param request - ModifyRCInstanceDescriptionRequest
|
|
70214
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
70215
|
+
* @returns ModifyRCInstanceDescriptionResponse
|
|
70216
|
+
*/
|
|
70217
|
+
modifyRCInstanceDescriptionWithOptions(request: ModifyRCInstanceDescriptionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyRCInstanceDescriptionResponse>;
|
|
70218
|
+
/**
|
|
70219
|
+
* 修改RC实例描述
|
|
70220
|
+
*
|
|
70221
|
+
* @param request - ModifyRCInstanceDescriptionRequest
|
|
70222
|
+
* @returns ModifyRCInstanceDescriptionResponse
|
|
70223
|
+
*/
|
|
70224
|
+
modifyRCInstanceDescription(request: ModifyRCInstanceDescriptionRequest): Promise<ModifyRCInstanceDescriptionResponse>;
|
|
70225
|
+
/**
|
|
70226
|
+
* Modifies the key pair of an RDS Custom instance.
|
|
70227
|
+
*
|
|
70228
|
+
* @param request - ModifyRCInstanceKeyPairRequest
|
|
70229
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
70230
|
+
* @returns ModifyRCInstanceKeyPairResponse
|
|
70231
|
+
*/
|
|
70232
|
+
modifyRCInstanceKeyPairWithOptions(request: ModifyRCInstanceKeyPairRequest, runtime: $Util.RuntimeOptions): Promise<ModifyRCInstanceKeyPairResponse>;
|
|
70233
|
+
/**
|
|
70234
|
+
* Modifies the key pair of an RDS Custom instance.
|
|
70235
|
+
*
|
|
70236
|
+
* @param request - ModifyRCInstanceKeyPairRequest
|
|
70237
|
+
* @returns ModifyRCInstanceKeyPairResponse
|
|
70238
|
+
*/
|
|
70239
|
+
modifyRCInstanceKeyPair(request: ModifyRCInstanceKeyPairRequest): Promise<ModifyRCInstanceKeyPairResponse>;
|
|
67244
70240
|
/**
|
|
67245
70241
|
* Modifies the latency threshold of the read/write splitting link and the read weights of a primary instance and its read-only instances.
|
|
67246
70242
|
*
|
|
@@ -67539,12 +70535,16 @@ export default class Client extends OpenApi {
|
|
|
67539
70535
|
*/
|
|
67540
70536
|
modifyWhitelistTemplate(request: ModifyWhitelistTemplateRequest): Promise<ModifyWhitelistTemplateResponse>;
|
|
67541
70537
|
/**
|
|
70538
|
+
* 删除节点创建订单预检查
|
|
70539
|
+
*
|
|
67542
70540
|
* @param tmpReq - PreCheckCreateOrderForDeleteDBNodesRequest
|
|
67543
70541
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
67544
70542
|
* @returns PreCheckCreateOrderForDeleteDBNodesResponse
|
|
67545
70543
|
*/
|
|
67546
70544
|
preCheckCreateOrderForDeleteDBNodesWithOptions(tmpReq: PreCheckCreateOrderForDeleteDBNodesRequest, runtime: $Util.RuntimeOptions): Promise<PreCheckCreateOrderForDeleteDBNodesResponse>;
|
|
67547
70545
|
/**
|
|
70546
|
+
* 删除节点创建订单预检查
|
|
70547
|
+
*
|
|
67548
70548
|
* @param request - PreCheckCreateOrderForDeleteDBNodesRequest
|
|
67549
70549
|
* @returns PreCheckCreateOrderForDeleteDBNodesResponse
|
|
67550
70550
|
*/
|
|
@@ -67946,6 +70946,21 @@ export default class Client extends OpenApi {
|
|
|
67946
70946
|
* @returns RenewInstanceResponse
|
|
67947
70947
|
*/
|
|
67948
70948
|
renewInstance(request: RenewInstanceRequest): Promise<RenewInstanceResponse>;
|
|
70949
|
+
/**
|
|
70950
|
+
* 更换rds custom实例系统盘
|
|
70951
|
+
*
|
|
70952
|
+
* @param request - ReplaceRCInstanceSystemDiskRequest
|
|
70953
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
70954
|
+
* @returns ReplaceRCInstanceSystemDiskResponse
|
|
70955
|
+
*/
|
|
70956
|
+
replaceRCInstanceSystemDiskWithOptions(request: ReplaceRCInstanceSystemDiskRequest, runtime: $Util.RuntimeOptions): Promise<ReplaceRCInstanceSystemDiskResponse>;
|
|
70957
|
+
/**
|
|
70958
|
+
* 更换rds custom实例系统盘
|
|
70959
|
+
*
|
|
70960
|
+
* @param request - ReplaceRCInstanceSystemDiskRequest
|
|
70961
|
+
* @returns ReplaceRCInstanceSystemDiskResponse
|
|
70962
|
+
*/
|
|
70963
|
+
replaceRCInstanceSystemDisk(request: ReplaceRCInstanceSystemDiskRequest): Promise<ReplaceRCInstanceSystemDiskResponse>;
|
|
67949
70964
|
/**
|
|
67950
70965
|
* Resets the permissions of the privileged account.
|
|
67951
70966
|
*
|
|
@@ -68243,15 +71258,13 @@ export default class Client extends OpenApi {
|
|
|
68243
71258
|
* Resumes an instance.
|
|
68244
71259
|
*
|
|
68245
71260
|
* @remarks
|
|
68246
|
-
* ### Supported database engines
|
|
71261
|
+
* ### [](#)Supported database engines
|
|
68247
71262
|
* * MySQL
|
|
68248
71263
|
* * PostgreSQL
|
|
68249
71264
|
* * SQL Server
|
|
68250
|
-
* ### References
|
|
68251
|
-
* >
|
|
68252
|
-
*
|
|
68253
|
-
* * [Resume an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/452314.html)
|
|
68254
|
-
* * [Resume an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/462504.html)
|
|
71265
|
+
* ### [](#)References
|
|
71266
|
+
* > Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
71267
|
+
* [Start an ApsaraDB RDS for SQL instance](https://help.aliyun.com/document_detail/462504.html)
|
|
68255
71268
|
*
|
|
68256
71269
|
* @param request - StartDBInstanceRequest
|
|
68257
71270
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -68262,15 +71275,13 @@ export default class Client extends OpenApi {
|
|
|
68262
71275
|
* Resumes an instance.
|
|
68263
71276
|
*
|
|
68264
71277
|
* @remarks
|
|
68265
|
-
* ### Supported database engines
|
|
71278
|
+
* ### [](#)Supported database engines
|
|
68266
71279
|
* * MySQL
|
|
68267
71280
|
* * PostgreSQL
|
|
68268
71281
|
* * SQL Server
|
|
68269
|
-
* ### References
|
|
68270
|
-
* >
|
|
68271
|
-
*
|
|
68272
|
-
* * [Resume an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/452314.html)
|
|
68273
|
-
* * [Resume an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/462504.html)
|
|
71282
|
+
* ### [](#)References
|
|
71283
|
+
* > Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
71284
|
+
* [Start an ApsaraDB RDS for SQL instance](https://help.aliyun.com/document_detail/462504.html)
|
|
68274
71285
|
*
|
|
68275
71286
|
* @param request - StartDBInstanceRequest
|
|
68276
71287
|
* @returns StartDBInstanceResponse
|
|
@@ -68301,9 +71312,7 @@ export default class Client extends OpenApi {
|
|
|
68301
71312
|
* * SQL Server
|
|
68302
71313
|
* ### References
|
|
68303
71314
|
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
68304
|
-
*
|
|
68305
|
-
* * [Suspend an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/452314.html)
|
|
68306
|
-
* * [Suspend an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/462504.html)
|
|
71315
|
+
* [Suspend an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/462504.html)
|
|
68307
71316
|
*
|
|
68308
71317
|
* @param request - StopDBInstanceRequest
|
|
68309
71318
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -68320,9 +71329,7 @@ export default class Client extends OpenApi {
|
|
|
68320
71329
|
* * SQL Server
|
|
68321
71330
|
* ### References
|
|
68322
71331
|
* > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
68323
|
-
*
|
|
68324
|
-
* * [Suspend an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/452314.html)
|
|
68325
|
-
* * [Suspend an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/462504.html)
|
|
71332
|
+
* [Suspend an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/462504.html)
|
|
68326
71333
|
*
|
|
68327
71334
|
* @param request - StopDBInstanceRequest
|
|
68328
71335
|
* @returns StopDBInstanceResponse
|