@alicloud/rds20140815 7.0.0 → 7.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +2112 -14
- package/dist/client.js +3175 -50
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +4894 -707
package/dist/client.d.ts
CHANGED
|
@@ -7371,6 +7371,57 @@ export declare class CreatePostgresExtensionsResponse extends $tea.Model {
|
|
|
7371
7371
|
[key: string]: any;
|
|
7372
7372
|
});
|
|
7373
7373
|
}
|
|
7374
|
+
export declare class CreateRCDeploymentSetRequest extends $tea.Model {
|
|
7375
|
+
clientToken?: string;
|
|
7376
|
+
deploymentSetName?: string;
|
|
7377
|
+
description?: string;
|
|
7378
|
+
groupCount?: number;
|
|
7379
|
+
onUnableToRedeployFailedInstance?: string;
|
|
7380
|
+
/**
|
|
7381
|
+
* @remarks
|
|
7382
|
+
* This parameter is required.
|
|
7383
|
+
*/
|
|
7384
|
+
regionId?: string;
|
|
7385
|
+
strategy?: string;
|
|
7386
|
+
static names(): {
|
|
7387
|
+
[key: string]: string;
|
|
7388
|
+
};
|
|
7389
|
+
static types(): {
|
|
7390
|
+
[key: string]: any;
|
|
7391
|
+
};
|
|
7392
|
+
constructor(map?: {
|
|
7393
|
+
[key: string]: any;
|
|
7394
|
+
});
|
|
7395
|
+
}
|
|
7396
|
+
export declare class CreateRCDeploymentSetResponseBody extends $tea.Model {
|
|
7397
|
+
deploymentSetId?: string;
|
|
7398
|
+
requestId?: string;
|
|
7399
|
+
static names(): {
|
|
7400
|
+
[key: string]: string;
|
|
7401
|
+
};
|
|
7402
|
+
static types(): {
|
|
7403
|
+
[key: string]: any;
|
|
7404
|
+
};
|
|
7405
|
+
constructor(map?: {
|
|
7406
|
+
[key: string]: any;
|
|
7407
|
+
});
|
|
7408
|
+
}
|
|
7409
|
+
export declare class CreateRCDeploymentSetResponse extends $tea.Model {
|
|
7410
|
+
headers?: {
|
|
7411
|
+
[key: string]: string;
|
|
7412
|
+
};
|
|
7413
|
+
statusCode?: number;
|
|
7414
|
+
body?: CreateRCDeploymentSetResponseBody;
|
|
7415
|
+
static names(): {
|
|
7416
|
+
[key: string]: string;
|
|
7417
|
+
};
|
|
7418
|
+
static types(): {
|
|
7419
|
+
[key: string]: any;
|
|
7420
|
+
};
|
|
7421
|
+
constructor(map?: {
|
|
7422
|
+
[key: string]: any;
|
|
7423
|
+
});
|
|
7424
|
+
}
|
|
7374
7425
|
export declare class CreateReadOnlyDBInstanceRequest extends $tea.Model {
|
|
7375
7426
|
/**
|
|
7376
7427
|
* @remarks
|
|
@@ -7787,6 +7838,125 @@ export declare class CreateReadOnlyDBInstanceResponse extends $tea.Model {
|
|
|
7787
7838
|
[key: string]: any;
|
|
7788
7839
|
});
|
|
7789
7840
|
}
|
|
7841
|
+
export declare class CreateReplicationLinkRequest extends $tea.Model {
|
|
7842
|
+
/**
|
|
7843
|
+
* @remarks
|
|
7844
|
+
* This parameter is required.
|
|
7845
|
+
*
|
|
7846
|
+
* @example
|
|
7847
|
+
* pgm-bp1trqb4p1xd****
|
|
7848
|
+
*/
|
|
7849
|
+
DBInstanceId?: string;
|
|
7850
|
+
/**
|
|
7851
|
+
* @remarks
|
|
7852
|
+
* This parameter is required.
|
|
7853
|
+
*
|
|
7854
|
+
* @example
|
|
7855
|
+
* false
|
|
7856
|
+
*/
|
|
7857
|
+
dryRun?: boolean;
|
|
7858
|
+
/**
|
|
7859
|
+
* @example
|
|
7860
|
+
* testdbuser
|
|
7861
|
+
*/
|
|
7862
|
+
replicatorAccount?: string;
|
|
7863
|
+
/**
|
|
7864
|
+
* @example
|
|
7865
|
+
* testpassword
|
|
7866
|
+
*/
|
|
7867
|
+
replicatorPassword?: string;
|
|
7868
|
+
/**
|
|
7869
|
+
* @example
|
|
7870
|
+
* pgm-****.pg.rds.aliyuncs.com
|
|
7871
|
+
*/
|
|
7872
|
+
sourceAddress?: string;
|
|
7873
|
+
/**
|
|
7874
|
+
* @example
|
|
7875
|
+
* aliyunRDS
|
|
7876
|
+
*/
|
|
7877
|
+
sourceCategory?: string;
|
|
7878
|
+
/**
|
|
7879
|
+
* @example
|
|
7880
|
+
* testInstance
|
|
7881
|
+
*/
|
|
7882
|
+
sourceInstanceName?: string;
|
|
7883
|
+
/**
|
|
7884
|
+
* @example
|
|
7885
|
+
* cn-hangzhou
|
|
7886
|
+
*/
|
|
7887
|
+
sourceInstanceRegionId?: string;
|
|
7888
|
+
/**
|
|
7889
|
+
* @example
|
|
7890
|
+
* 5432
|
|
7891
|
+
*/
|
|
7892
|
+
sourcePort?: number;
|
|
7893
|
+
/**
|
|
7894
|
+
* @example
|
|
7895
|
+
* 439946016
|
|
7896
|
+
*/
|
|
7897
|
+
taskId?: number;
|
|
7898
|
+
/**
|
|
7899
|
+
* @example
|
|
7900
|
+
* test01
|
|
7901
|
+
*/
|
|
7902
|
+
taskName?: string;
|
|
7903
|
+
static names(): {
|
|
7904
|
+
[key: string]: string;
|
|
7905
|
+
};
|
|
7906
|
+
static types(): {
|
|
7907
|
+
[key: string]: any;
|
|
7908
|
+
};
|
|
7909
|
+
constructor(map?: {
|
|
7910
|
+
[key: string]: any;
|
|
7911
|
+
});
|
|
7912
|
+
}
|
|
7913
|
+
export declare class CreateReplicationLinkResponseBody extends $tea.Model {
|
|
7914
|
+
/**
|
|
7915
|
+
* @example
|
|
7916
|
+
* pgm-****.pg.rds.aliyuncs.com
|
|
7917
|
+
*/
|
|
7918
|
+
DBInstanceId?: string;
|
|
7919
|
+
/**
|
|
7920
|
+
* @example
|
|
7921
|
+
* 9F8C06AD-3F37-57A0-ABBF-ABD7824F55CE
|
|
7922
|
+
*/
|
|
7923
|
+
requestId?: string;
|
|
7924
|
+
/**
|
|
7925
|
+
* @example
|
|
7926
|
+
* 564532302
|
|
7927
|
+
*/
|
|
7928
|
+
taskId?: number;
|
|
7929
|
+
/**
|
|
7930
|
+
* @example
|
|
7931
|
+
* test01
|
|
7932
|
+
*/
|
|
7933
|
+
taskName?: string;
|
|
7934
|
+
static names(): {
|
|
7935
|
+
[key: string]: string;
|
|
7936
|
+
};
|
|
7937
|
+
static types(): {
|
|
7938
|
+
[key: string]: any;
|
|
7939
|
+
};
|
|
7940
|
+
constructor(map?: {
|
|
7941
|
+
[key: string]: any;
|
|
7942
|
+
});
|
|
7943
|
+
}
|
|
7944
|
+
export declare class CreateReplicationLinkResponse extends $tea.Model {
|
|
7945
|
+
headers?: {
|
|
7946
|
+
[key: string]: string;
|
|
7947
|
+
};
|
|
7948
|
+
statusCode?: number;
|
|
7949
|
+
body?: CreateReplicationLinkResponseBody;
|
|
7950
|
+
static names(): {
|
|
7951
|
+
[key: string]: string;
|
|
7952
|
+
};
|
|
7953
|
+
static types(): {
|
|
7954
|
+
[key: string]: any;
|
|
7955
|
+
};
|
|
7956
|
+
constructor(map?: {
|
|
7957
|
+
[key: string]: any;
|
|
7958
|
+
});
|
|
7959
|
+
}
|
|
7790
7960
|
export declare class CreateSecretRequest extends $tea.Model {
|
|
7791
7961
|
/**
|
|
7792
7962
|
* @remarks
|
|
@@ -9527,6 +9697,248 @@ export declare class DeletePostgresExtensionsResponse extends $tea.Model {
|
|
|
9527
9697
|
[key: string]: any;
|
|
9528
9698
|
});
|
|
9529
9699
|
}
|
|
9700
|
+
export declare class DeleteRCDeploymentSetRequest extends $tea.Model {
|
|
9701
|
+
/**
|
|
9702
|
+
* @remarks
|
|
9703
|
+
* This parameter is required.
|
|
9704
|
+
*/
|
|
9705
|
+
deploymentSetId?: string;
|
|
9706
|
+
/**
|
|
9707
|
+
* @remarks
|
|
9708
|
+
* This parameter is required.
|
|
9709
|
+
*/
|
|
9710
|
+
regionId?: string;
|
|
9711
|
+
static names(): {
|
|
9712
|
+
[key: string]: string;
|
|
9713
|
+
};
|
|
9714
|
+
static types(): {
|
|
9715
|
+
[key: string]: any;
|
|
9716
|
+
};
|
|
9717
|
+
constructor(map?: {
|
|
9718
|
+
[key: string]: any;
|
|
9719
|
+
});
|
|
9720
|
+
}
|
|
9721
|
+
export declare class DeleteRCDeploymentSetResponseBody extends $tea.Model {
|
|
9722
|
+
requestId?: string;
|
|
9723
|
+
static names(): {
|
|
9724
|
+
[key: string]: string;
|
|
9725
|
+
};
|
|
9726
|
+
static types(): {
|
|
9727
|
+
[key: string]: any;
|
|
9728
|
+
};
|
|
9729
|
+
constructor(map?: {
|
|
9730
|
+
[key: string]: any;
|
|
9731
|
+
});
|
|
9732
|
+
}
|
|
9733
|
+
export declare class DeleteRCDeploymentSetResponse extends $tea.Model {
|
|
9734
|
+
headers?: {
|
|
9735
|
+
[key: string]: string;
|
|
9736
|
+
};
|
|
9737
|
+
statusCode?: number;
|
|
9738
|
+
body?: DeleteRCDeploymentSetResponseBody;
|
|
9739
|
+
static names(): {
|
|
9740
|
+
[key: string]: string;
|
|
9741
|
+
};
|
|
9742
|
+
static types(): {
|
|
9743
|
+
[key: string]: any;
|
|
9744
|
+
};
|
|
9745
|
+
constructor(map?: {
|
|
9746
|
+
[key: string]: any;
|
|
9747
|
+
});
|
|
9748
|
+
}
|
|
9749
|
+
export declare class DeleteRCInstanceRequest extends $tea.Model {
|
|
9750
|
+
force?: boolean;
|
|
9751
|
+
/**
|
|
9752
|
+
* @remarks
|
|
9753
|
+
* This parameter is required.
|
|
9754
|
+
*/
|
|
9755
|
+
instanceId?: string;
|
|
9756
|
+
/**
|
|
9757
|
+
* @remarks
|
|
9758
|
+
* This parameter is required.
|
|
9759
|
+
*/
|
|
9760
|
+
regionId?: string;
|
|
9761
|
+
static names(): {
|
|
9762
|
+
[key: string]: string;
|
|
9763
|
+
};
|
|
9764
|
+
static types(): {
|
|
9765
|
+
[key: string]: any;
|
|
9766
|
+
};
|
|
9767
|
+
constructor(map?: {
|
|
9768
|
+
[key: string]: any;
|
|
9769
|
+
});
|
|
9770
|
+
}
|
|
9771
|
+
export declare class DeleteRCInstanceResponseBody extends $tea.Model {
|
|
9772
|
+
requestId?: string;
|
|
9773
|
+
static names(): {
|
|
9774
|
+
[key: string]: string;
|
|
9775
|
+
};
|
|
9776
|
+
static types(): {
|
|
9777
|
+
[key: string]: any;
|
|
9778
|
+
};
|
|
9779
|
+
constructor(map?: {
|
|
9780
|
+
[key: string]: any;
|
|
9781
|
+
});
|
|
9782
|
+
}
|
|
9783
|
+
export declare class DeleteRCInstanceResponse extends $tea.Model {
|
|
9784
|
+
headers?: {
|
|
9785
|
+
[key: string]: string;
|
|
9786
|
+
};
|
|
9787
|
+
statusCode?: number;
|
|
9788
|
+
body?: DeleteRCInstanceResponseBody;
|
|
9789
|
+
static names(): {
|
|
9790
|
+
[key: string]: string;
|
|
9791
|
+
};
|
|
9792
|
+
static types(): {
|
|
9793
|
+
[key: string]: any;
|
|
9794
|
+
};
|
|
9795
|
+
constructor(map?: {
|
|
9796
|
+
[key: string]: any;
|
|
9797
|
+
});
|
|
9798
|
+
}
|
|
9799
|
+
export declare class DeleteRCInstancesRequest extends $tea.Model {
|
|
9800
|
+
dryRun?: boolean;
|
|
9801
|
+
force?: boolean;
|
|
9802
|
+
/**
|
|
9803
|
+
* @remarks
|
|
9804
|
+
* This parameter is required.
|
|
9805
|
+
*/
|
|
9806
|
+
instanceId?: string[];
|
|
9807
|
+
regionId?: string;
|
|
9808
|
+
terminateSubscription?: boolean;
|
|
9809
|
+
static names(): {
|
|
9810
|
+
[key: string]: string;
|
|
9811
|
+
};
|
|
9812
|
+
static types(): {
|
|
9813
|
+
[key: string]: any;
|
|
9814
|
+
};
|
|
9815
|
+
constructor(map?: {
|
|
9816
|
+
[key: string]: any;
|
|
9817
|
+
});
|
|
9818
|
+
}
|
|
9819
|
+
export declare class DeleteRCInstancesShrinkRequest extends $tea.Model {
|
|
9820
|
+
dryRun?: boolean;
|
|
9821
|
+
force?: boolean;
|
|
9822
|
+
/**
|
|
9823
|
+
* @remarks
|
|
9824
|
+
* This parameter is required.
|
|
9825
|
+
*/
|
|
9826
|
+
instanceIdShrink?: string;
|
|
9827
|
+
regionId?: string;
|
|
9828
|
+
terminateSubscription?: boolean;
|
|
9829
|
+
static names(): {
|
|
9830
|
+
[key: string]: string;
|
|
9831
|
+
};
|
|
9832
|
+
static types(): {
|
|
9833
|
+
[key: string]: any;
|
|
9834
|
+
};
|
|
9835
|
+
constructor(map?: {
|
|
9836
|
+
[key: string]: any;
|
|
9837
|
+
});
|
|
9838
|
+
}
|
|
9839
|
+
export declare class DeleteRCInstancesResponseBody extends $tea.Model {
|
|
9840
|
+
requestId?: string;
|
|
9841
|
+
static names(): {
|
|
9842
|
+
[key: string]: string;
|
|
9843
|
+
};
|
|
9844
|
+
static types(): {
|
|
9845
|
+
[key: string]: any;
|
|
9846
|
+
};
|
|
9847
|
+
constructor(map?: {
|
|
9848
|
+
[key: string]: any;
|
|
9849
|
+
});
|
|
9850
|
+
}
|
|
9851
|
+
export declare class DeleteRCInstancesResponse extends $tea.Model {
|
|
9852
|
+
headers?: {
|
|
9853
|
+
[key: string]: string;
|
|
9854
|
+
};
|
|
9855
|
+
statusCode?: number;
|
|
9856
|
+
body?: DeleteRCInstancesResponseBody;
|
|
9857
|
+
static names(): {
|
|
9858
|
+
[key: string]: string;
|
|
9859
|
+
};
|
|
9860
|
+
static types(): {
|
|
9861
|
+
[key: string]: any;
|
|
9862
|
+
};
|
|
9863
|
+
constructor(map?: {
|
|
9864
|
+
[key: string]: any;
|
|
9865
|
+
});
|
|
9866
|
+
}
|
|
9867
|
+
export declare class DeleteReplicationLinkRequest extends $tea.Model {
|
|
9868
|
+
/**
|
|
9869
|
+
* @remarks
|
|
9870
|
+
* This parameter is required.
|
|
9871
|
+
*
|
|
9872
|
+
* @example
|
|
9873
|
+
* pgm-bp1trqb4p1xd****
|
|
9874
|
+
*/
|
|
9875
|
+
DBInstanceId?: string;
|
|
9876
|
+
/**
|
|
9877
|
+
* @remarks
|
|
9878
|
+
* This parameter is required.
|
|
9879
|
+
*
|
|
9880
|
+
* @example
|
|
9881
|
+
* true
|
|
9882
|
+
*/
|
|
9883
|
+
promoteToMaster?: boolean;
|
|
9884
|
+
resourceOwnerId?: number;
|
|
9885
|
+
static names(): {
|
|
9886
|
+
[key: string]: string;
|
|
9887
|
+
};
|
|
9888
|
+
static types(): {
|
|
9889
|
+
[key: string]: any;
|
|
9890
|
+
};
|
|
9891
|
+
constructor(map?: {
|
|
9892
|
+
[key: string]: any;
|
|
9893
|
+
});
|
|
9894
|
+
}
|
|
9895
|
+
export declare class DeleteReplicationLinkResponseBody extends $tea.Model {
|
|
9896
|
+
/**
|
|
9897
|
+
* @example
|
|
9898
|
+
* pgm-bp1trqb4p1xd****
|
|
9899
|
+
*/
|
|
9900
|
+
DBInstanceId?: string;
|
|
9901
|
+
/**
|
|
9902
|
+
* @example
|
|
9903
|
+
* 847BA085-B377-4BFA-8267-F82345ECE1D2
|
|
9904
|
+
*/
|
|
9905
|
+
requestId?: string;
|
|
9906
|
+
/**
|
|
9907
|
+
* @example
|
|
9908
|
+
* 3472****
|
|
9909
|
+
*/
|
|
9910
|
+
taskId?: number;
|
|
9911
|
+
/**
|
|
9912
|
+
* @example
|
|
9913
|
+
* test01
|
|
9914
|
+
*/
|
|
9915
|
+
taskName?: string;
|
|
9916
|
+
static names(): {
|
|
9917
|
+
[key: string]: string;
|
|
9918
|
+
};
|
|
9919
|
+
static types(): {
|
|
9920
|
+
[key: string]: any;
|
|
9921
|
+
};
|
|
9922
|
+
constructor(map?: {
|
|
9923
|
+
[key: string]: any;
|
|
9924
|
+
});
|
|
9925
|
+
}
|
|
9926
|
+
export declare class DeleteReplicationLinkResponse extends $tea.Model {
|
|
9927
|
+
headers?: {
|
|
9928
|
+
[key: string]: string;
|
|
9929
|
+
};
|
|
9930
|
+
statusCode?: number;
|
|
9931
|
+
body?: DeleteReplicationLinkResponseBody;
|
|
9932
|
+
static names(): {
|
|
9933
|
+
[key: string]: string;
|
|
9934
|
+
};
|
|
9935
|
+
static types(): {
|
|
9936
|
+
[key: string]: any;
|
|
9937
|
+
};
|
|
9938
|
+
constructor(map?: {
|
|
9939
|
+
[key: string]: any;
|
|
9940
|
+
});
|
|
9941
|
+
}
|
|
9530
9942
|
export declare class DeleteSecretRequest extends $tea.Model {
|
|
9531
9943
|
/**
|
|
9532
9944
|
* @remarks
|
|
@@ -16127,10 +16539,10 @@ export declare class DescribeDBInstancesRequest extends $tea.Model {
|
|
|
16127
16539
|
engineVersion?: string;
|
|
16128
16540
|
/**
|
|
16129
16541
|
* @remarks
|
|
16130
|
-
* Specifies whether
|
|
16542
|
+
* Specifies whether the instances have expired. Valid values:
|
|
16131
16543
|
*
|
|
16132
|
-
* * **True
|
|
16133
|
-
* * **False
|
|
16544
|
+
* * **True**
|
|
16545
|
+
* * **False**
|
|
16134
16546
|
*
|
|
16135
16547
|
* @example
|
|
16136
16548
|
* True
|
|
@@ -16192,7 +16604,7 @@ export declare class DescribeDBInstancesRequest extends $tea.Model {
|
|
|
16192
16604
|
ownerId?: number;
|
|
16193
16605
|
/**
|
|
16194
16606
|
* @remarks
|
|
16195
|
-
* The page number.
|
|
16607
|
+
* The page number. Pages start from 1.
|
|
16196
16608
|
*
|
|
16197
16609
|
* Default value: **1**.
|
|
16198
16610
|
*
|
|
@@ -17961,7 +18373,7 @@ export declare class DescribeDatabasesRequest extends $tea.Model {
|
|
|
17961
18373
|
ownerId?: number;
|
|
17962
18374
|
/**
|
|
17963
18375
|
* @remarks
|
|
17964
|
-
* The
|
|
18376
|
+
* The page number. Pages start from 1.
|
|
17965
18377
|
*
|
|
17966
18378
|
* Default value: **1**.
|
|
17967
18379
|
*
|
|
@@ -19104,7 +19516,7 @@ export declare class DescribeHistoryEventsRequest extends $tea.Model {
|
|
|
19104
19516
|
instanceId?: string;
|
|
19105
19517
|
/**
|
|
19106
19518
|
* @remarks
|
|
19107
|
-
* The page number.
|
|
19519
|
+
* The page number. Pages start from page 1. Default value: **1**.
|
|
19108
19520
|
*
|
|
19109
19521
|
* @example
|
|
19110
19522
|
* 1
|
|
@@ -23112,6 +23524,308 @@ export declare class DescribeQuickSaleConfigResponse extends $tea.Model {
|
|
|
23112
23524
|
[key: string]: any;
|
|
23113
23525
|
});
|
|
23114
23526
|
}
|
|
23527
|
+
export declare class DescribeRCDeploymentSetsRequest extends $tea.Model {
|
|
23528
|
+
deploymentSetIds?: string;
|
|
23529
|
+
deploymentSetName?: string;
|
|
23530
|
+
pageNumber?: number;
|
|
23531
|
+
pageSize?: number;
|
|
23532
|
+
/**
|
|
23533
|
+
* @remarks
|
|
23534
|
+
* This parameter is required.
|
|
23535
|
+
*/
|
|
23536
|
+
regionId?: string;
|
|
23537
|
+
strategy?: string;
|
|
23538
|
+
static names(): {
|
|
23539
|
+
[key: string]: string;
|
|
23540
|
+
};
|
|
23541
|
+
static types(): {
|
|
23542
|
+
[key: string]: any;
|
|
23543
|
+
};
|
|
23544
|
+
constructor(map?: {
|
|
23545
|
+
[key: string]: any;
|
|
23546
|
+
});
|
|
23547
|
+
}
|
|
23548
|
+
export declare class DescribeRCDeploymentSetsResponseBody extends $tea.Model {
|
|
23549
|
+
deploymentSets?: DescribeRCDeploymentSetsResponseBodyDeploymentSets;
|
|
23550
|
+
pageNumber?: number;
|
|
23551
|
+
pageSize?: number;
|
|
23552
|
+
regionId?: string;
|
|
23553
|
+
requestId?: string;
|
|
23554
|
+
totalCount?: number;
|
|
23555
|
+
static names(): {
|
|
23556
|
+
[key: string]: string;
|
|
23557
|
+
};
|
|
23558
|
+
static types(): {
|
|
23559
|
+
[key: string]: any;
|
|
23560
|
+
};
|
|
23561
|
+
constructor(map?: {
|
|
23562
|
+
[key: string]: any;
|
|
23563
|
+
});
|
|
23564
|
+
}
|
|
23565
|
+
export declare class DescribeRCDeploymentSetsResponse extends $tea.Model {
|
|
23566
|
+
headers?: {
|
|
23567
|
+
[key: string]: string;
|
|
23568
|
+
};
|
|
23569
|
+
statusCode?: number;
|
|
23570
|
+
body?: DescribeRCDeploymentSetsResponseBody;
|
|
23571
|
+
static names(): {
|
|
23572
|
+
[key: string]: string;
|
|
23573
|
+
};
|
|
23574
|
+
static types(): {
|
|
23575
|
+
[key: string]: any;
|
|
23576
|
+
};
|
|
23577
|
+
constructor(map?: {
|
|
23578
|
+
[key: string]: any;
|
|
23579
|
+
});
|
|
23580
|
+
}
|
|
23581
|
+
export declare class DescribeRCImageListRequest extends $tea.Model {
|
|
23582
|
+
architecture?: string;
|
|
23583
|
+
pageNumber?: number;
|
|
23584
|
+
pageSize?: number;
|
|
23585
|
+
/**
|
|
23586
|
+
* @remarks
|
|
23587
|
+
* This parameter is required.
|
|
23588
|
+
*/
|
|
23589
|
+
regionId?: string;
|
|
23590
|
+
type?: string;
|
|
23591
|
+
static names(): {
|
|
23592
|
+
[key: string]: string;
|
|
23593
|
+
};
|
|
23594
|
+
static types(): {
|
|
23595
|
+
[key: string]: any;
|
|
23596
|
+
};
|
|
23597
|
+
constructor(map?: {
|
|
23598
|
+
[key: string]: any;
|
|
23599
|
+
});
|
|
23600
|
+
}
|
|
23601
|
+
export declare class DescribeRCImageListResponseBody extends $tea.Model {
|
|
23602
|
+
images?: DescribeRCImageListResponseBodyImages[];
|
|
23603
|
+
pageNumber?: number;
|
|
23604
|
+
pageSize?: number;
|
|
23605
|
+
regionId?: string;
|
|
23606
|
+
requestId?: string;
|
|
23607
|
+
totalCount?: number;
|
|
23608
|
+
static names(): {
|
|
23609
|
+
[key: string]: string;
|
|
23610
|
+
};
|
|
23611
|
+
static types(): {
|
|
23612
|
+
[key: string]: any;
|
|
23613
|
+
};
|
|
23614
|
+
constructor(map?: {
|
|
23615
|
+
[key: string]: any;
|
|
23616
|
+
});
|
|
23617
|
+
}
|
|
23618
|
+
export declare class DescribeRCImageListResponse extends $tea.Model {
|
|
23619
|
+
headers?: {
|
|
23620
|
+
[key: string]: string;
|
|
23621
|
+
};
|
|
23622
|
+
statusCode?: number;
|
|
23623
|
+
body?: DescribeRCImageListResponseBody;
|
|
23624
|
+
static names(): {
|
|
23625
|
+
[key: string]: string;
|
|
23626
|
+
};
|
|
23627
|
+
static types(): {
|
|
23628
|
+
[key: string]: any;
|
|
23629
|
+
};
|
|
23630
|
+
constructor(map?: {
|
|
23631
|
+
[key: string]: any;
|
|
23632
|
+
});
|
|
23633
|
+
}
|
|
23634
|
+
export declare class DescribeRCInstanceAttributeRequest extends $tea.Model {
|
|
23635
|
+
/**
|
|
23636
|
+
* @remarks
|
|
23637
|
+
* This parameter is required.
|
|
23638
|
+
*/
|
|
23639
|
+
instanceId?: string;
|
|
23640
|
+
regionId?: string;
|
|
23641
|
+
static names(): {
|
|
23642
|
+
[key: string]: string;
|
|
23643
|
+
};
|
|
23644
|
+
static types(): {
|
|
23645
|
+
[key: string]: any;
|
|
23646
|
+
};
|
|
23647
|
+
constructor(map?: {
|
|
23648
|
+
[key: string]: any;
|
|
23649
|
+
});
|
|
23650
|
+
}
|
|
23651
|
+
export declare class DescribeRCInstanceAttributeResponseBody extends $tea.Model {
|
|
23652
|
+
clusterId?: string;
|
|
23653
|
+
cpu?: number;
|
|
23654
|
+
creationTime?: string;
|
|
23655
|
+
creditSpecification?: string;
|
|
23656
|
+
dataDisks?: DescribeRCInstanceAttributeResponseBodyDataDisks;
|
|
23657
|
+
/**
|
|
23658
|
+
* **if can be null:**
|
|
23659
|
+
* true
|
|
23660
|
+
*/
|
|
23661
|
+
dedicatedHostAttribute?: DescribeRCInstanceAttributeResponseBodyDedicatedHostAttribute;
|
|
23662
|
+
deploymentSetId?: string;
|
|
23663
|
+
description?: string;
|
|
23664
|
+
diskType?: string;
|
|
23665
|
+
ecsInstanceType?: string;
|
|
23666
|
+
eipAddress?: DescribeRCInstanceAttributeResponseBodyEipAddress;
|
|
23667
|
+
enableJumboFrame?: boolean;
|
|
23668
|
+
expiredTime?: string;
|
|
23669
|
+
hostName?: string;
|
|
23670
|
+
hostType?: string;
|
|
23671
|
+
imageId?: string;
|
|
23672
|
+
innerIpAddress?: DescribeRCInstanceAttributeResponseBodyInnerIpAddress;
|
|
23673
|
+
instanceId?: string;
|
|
23674
|
+
instanceName?: string;
|
|
23675
|
+
instanceNetworkType?: string;
|
|
23676
|
+
instanceType?: string;
|
|
23677
|
+
internetChargeType?: string;
|
|
23678
|
+
internetMaxBandwidthIn?: number;
|
|
23679
|
+
internetMaxBandwidthOut?: number;
|
|
23680
|
+
ioOptimized?: string;
|
|
23681
|
+
memory?: number;
|
|
23682
|
+
operationLocks?: DescribeRCInstanceAttributeResponseBodyOperationLocks;
|
|
23683
|
+
publicIpAddress?: DescribeRCInstanceAttributeResponseBodyPublicIpAddress;
|
|
23684
|
+
regionId?: string;
|
|
23685
|
+
requestId?: string;
|
|
23686
|
+
securityGroupIds?: DescribeRCInstanceAttributeResponseBodySecurityGroupIds;
|
|
23687
|
+
serialNumber?: string;
|
|
23688
|
+
status?: string;
|
|
23689
|
+
stoppedMode?: string;
|
|
23690
|
+
vlanId?: string;
|
|
23691
|
+
/**
|
|
23692
|
+
* **if can be null:**
|
|
23693
|
+
* true
|
|
23694
|
+
*/
|
|
23695
|
+
vpcAttributes?: DescribeRCInstanceAttributeResponseBodyVpcAttributes;
|
|
23696
|
+
zoneId?: string;
|
|
23697
|
+
static names(): {
|
|
23698
|
+
[key: string]: string;
|
|
23699
|
+
};
|
|
23700
|
+
static types(): {
|
|
23701
|
+
[key: string]: any;
|
|
23702
|
+
};
|
|
23703
|
+
constructor(map?: {
|
|
23704
|
+
[key: string]: any;
|
|
23705
|
+
});
|
|
23706
|
+
}
|
|
23707
|
+
export declare class DescribeRCInstanceAttributeResponse extends $tea.Model {
|
|
23708
|
+
headers?: {
|
|
23709
|
+
[key: string]: string;
|
|
23710
|
+
};
|
|
23711
|
+
statusCode?: number;
|
|
23712
|
+
body?: DescribeRCInstanceAttributeResponseBody;
|
|
23713
|
+
static names(): {
|
|
23714
|
+
[key: string]: string;
|
|
23715
|
+
};
|
|
23716
|
+
static types(): {
|
|
23717
|
+
[key: string]: any;
|
|
23718
|
+
};
|
|
23719
|
+
constructor(map?: {
|
|
23720
|
+
[key: string]: any;
|
|
23721
|
+
});
|
|
23722
|
+
}
|
|
23723
|
+
export declare class DescribeRCInstancesRequest extends $tea.Model {
|
|
23724
|
+
instanceId?: string;
|
|
23725
|
+
pageNumber?: number;
|
|
23726
|
+
pageSize?: number;
|
|
23727
|
+
regionId?: string;
|
|
23728
|
+
vpcId?: string;
|
|
23729
|
+
static names(): {
|
|
23730
|
+
[key: string]: string;
|
|
23731
|
+
};
|
|
23732
|
+
static types(): {
|
|
23733
|
+
[key: string]: any;
|
|
23734
|
+
};
|
|
23735
|
+
constructor(map?: {
|
|
23736
|
+
[key: string]: any;
|
|
23737
|
+
});
|
|
23738
|
+
}
|
|
23739
|
+
export declare class DescribeRCInstancesResponseBody extends $tea.Model {
|
|
23740
|
+
pageNumber?: number;
|
|
23741
|
+
pageSize?: number;
|
|
23742
|
+
RCInstances?: DescribeRCInstancesResponseBodyRCInstances[];
|
|
23743
|
+
requestId?: string;
|
|
23744
|
+
totalCount?: number;
|
|
23745
|
+
static names(): {
|
|
23746
|
+
[key: string]: string;
|
|
23747
|
+
};
|
|
23748
|
+
static types(): {
|
|
23749
|
+
[key: string]: any;
|
|
23750
|
+
};
|
|
23751
|
+
constructor(map?: {
|
|
23752
|
+
[key: string]: any;
|
|
23753
|
+
});
|
|
23754
|
+
}
|
|
23755
|
+
export declare class DescribeRCInstancesResponse extends $tea.Model {
|
|
23756
|
+
headers?: {
|
|
23757
|
+
[key: string]: string;
|
|
23758
|
+
};
|
|
23759
|
+
statusCode?: number;
|
|
23760
|
+
body?: DescribeRCInstancesResponseBody;
|
|
23761
|
+
static names(): {
|
|
23762
|
+
[key: string]: string;
|
|
23763
|
+
};
|
|
23764
|
+
static types(): {
|
|
23765
|
+
[key: string]: any;
|
|
23766
|
+
};
|
|
23767
|
+
constructor(map?: {
|
|
23768
|
+
[key: string]: any;
|
|
23769
|
+
});
|
|
23770
|
+
}
|
|
23771
|
+
export declare class DescribeRCMetricListRequest extends $tea.Model {
|
|
23772
|
+
endTime?: string;
|
|
23773
|
+
express?: string;
|
|
23774
|
+
instanceId?: string;
|
|
23775
|
+
length?: string;
|
|
23776
|
+
/**
|
|
23777
|
+
* @remarks
|
|
23778
|
+
* This parameter is required.
|
|
23779
|
+
*/
|
|
23780
|
+
metricName?: string;
|
|
23781
|
+
nextToken?: string;
|
|
23782
|
+
period?: string;
|
|
23783
|
+
regionId?: string;
|
|
23784
|
+
startTime?: string;
|
|
23785
|
+
static names(): {
|
|
23786
|
+
[key: string]: string;
|
|
23787
|
+
};
|
|
23788
|
+
static types(): {
|
|
23789
|
+
[key: string]: any;
|
|
23790
|
+
};
|
|
23791
|
+
constructor(map?: {
|
|
23792
|
+
[key: string]: any;
|
|
23793
|
+
});
|
|
23794
|
+
}
|
|
23795
|
+
export declare class DescribeRCMetricListResponseBody extends $tea.Model {
|
|
23796
|
+
code?: string;
|
|
23797
|
+
datapoints?: string;
|
|
23798
|
+
message?: string;
|
|
23799
|
+
nextToken?: string;
|
|
23800
|
+
period?: string;
|
|
23801
|
+
requestId?: string;
|
|
23802
|
+
success?: boolean;
|
|
23803
|
+
static names(): {
|
|
23804
|
+
[key: string]: string;
|
|
23805
|
+
};
|
|
23806
|
+
static types(): {
|
|
23807
|
+
[key: string]: any;
|
|
23808
|
+
};
|
|
23809
|
+
constructor(map?: {
|
|
23810
|
+
[key: string]: any;
|
|
23811
|
+
});
|
|
23812
|
+
}
|
|
23813
|
+
export declare class DescribeRCMetricListResponse extends $tea.Model {
|
|
23814
|
+
headers?: {
|
|
23815
|
+
[key: string]: string;
|
|
23816
|
+
};
|
|
23817
|
+
statusCode?: number;
|
|
23818
|
+
body?: DescribeRCMetricListResponseBody;
|
|
23819
|
+
static names(): {
|
|
23820
|
+
[key: string]: string;
|
|
23821
|
+
};
|
|
23822
|
+
static types(): {
|
|
23823
|
+
[key: string]: any;
|
|
23824
|
+
};
|
|
23825
|
+
constructor(map?: {
|
|
23826
|
+
[key: string]: any;
|
|
23827
|
+
});
|
|
23828
|
+
}
|
|
23115
23829
|
export declare class DescribeRdsResourceSettingsRequest extends $tea.Model {
|
|
23116
23830
|
ownerId?: number;
|
|
23117
23831
|
/**
|
|
@@ -23566,6 +24280,96 @@ export declare class DescribeRenewalPriceResponse extends $tea.Model {
|
|
|
23566
24280
|
[key: string]: any;
|
|
23567
24281
|
});
|
|
23568
24282
|
}
|
|
24283
|
+
export declare class DescribeReplicationLinkLogsRequest extends $tea.Model {
|
|
24284
|
+
/**
|
|
24285
|
+
* @remarks
|
|
24286
|
+
* This parameter is required.
|
|
24287
|
+
*
|
|
24288
|
+
* @example
|
|
24289
|
+
* pgm-bp1trqb4p1xd****
|
|
24290
|
+
*/
|
|
24291
|
+
DBInstanceId?: string;
|
|
24292
|
+
/**
|
|
24293
|
+
* @example
|
|
24294
|
+
* 1
|
|
24295
|
+
*/
|
|
24296
|
+
pageNumber?: number;
|
|
24297
|
+
/**
|
|
24298
|
+
* @example
|
|
24299
|
+
* 30
|
|
24300
|
+
*/
|
|
24301
|
+
pageSize?: number;
|
|
24302
|
+
/**
|
|
24303
|
+
* @example
|
|
24304
|
+
* 8413252
|
|
24305
|
+
*/
|
|
24306
|
+
taskId?: number;
|
|
24307
|
+
/**
|
|
24308
|
+
* @example
|
|
24309
|
+
* test01
|
|
24310
|
+
*/
|
|
24311
|
+
taskName?: string;
|
|
24312
|
+
/**
|
|
24313
|
+
* @remarks
|
|
24314
|
+
* This parameter is required.
|
|
24315
|
+
*
|
|
24316
|
+
* @example
|
|
24317
|
+
* create
|
|
24318
|
+
*/
|
|
24319
|
+
taskType?: string;
|
|
24320
|
+
static names(): {
|
|
24321
|
+
[key: string]: string;
|
|
24322
|
+
};
|
|
24323
|
+
static types(): {
|
|
24324
|
+
[key: string]: any;
|
|
24325
|
+
};
|
|
24326
|
+
constructor(map?: {
|
|
24327
|
+
[key: string]: any;
|
|
24328
|
+
});
|
|
24329
|
+
}
|
|
24330
|
+
export declare class DescribeReplicationLinkLogsResponseBody extends $tea.Model {
|
|
24331
|
+
/**
|
|
24332
|
+
* @example
|
|
24333
|
+
* pgm-bp1trqb4p1xd****
|
|
24334
|
+
*/
|
|
24335
|
+
DBInstanceId?: string;
|
|
24336
|
+
items?: DescribeReplicationLinkLogsResponseBodyItems[];
|
|
24337
|
+
/**
|
|
24338
|
+
* @example
|
|
24339
|
+
* 16C62438-491B-5C02-9B49-BA924A1372A2
|
|
24340
|
+
*/
|
|
24341
|
+
requestId?: string;
|
|
24342
|
+
/**
|
|
24343
|
+
* @example
|
|
24344
|
+
* 1
|
|
24345
|
+
*/
|
|
24346
|
+
totalSize?: number;
|
|
24347
|
+
static names(): {
|
|
24348
|
+
[key: string]: string;
|
|
24349
|
+
};
|
|
24350
|
+
static types(): {
|
|
24351
|
+
[key: string]: any;
|
|
24352
|
+
};
|
|
24353
|
+
constructor(map?: {
|
|
24354
|
+
[key: string]: any;
|
|
24355
|
+
});
|
|
24356
|
+
}
|
|
24357
|
+
export declare class DescribeReplicationLinkLogsResponse extends $tea.Model {
|
|
24358
|
+
headers?: {
|
|
24359
|
+
[key: string]: string;
|
|
24360
|
+
};
|
|
24361
|
+
statusCode?: number;
|
|
24362
|
+
body?: DescribeReplicationLinkLogsResponseBody;
|
|
24363
|
+
static names(): {
|
|
24364
|
+
[key: string]: string;
|
|
24365
|
+
};
|
|
24366
|
+
static types(): {
|
|
24367
|
+
[key: string]: any;
|
|
24368
|
+
};
|
|
24369
|
+
constructor(map?: {
|
|
24370
|
+
[key: string]: any;
|
|
24371
|
+
});
|
|
24372
|
+
}
|
|
23569
24373
|
export declare class DescribeResourceDetailsRequest extends $tea.Model {
|
|
23570
24374
|
/**
|
|
23571
24375
|
* @remarks
|
|
@@ -28662,7 +29466,7 @@ export declare class ModifyBackupPolicyRequest extends $tea.Model {
|
|
|
28662
29466
|
* Specifies whether to enable the log backup feature. Valid values:
|
|
28663
29467
|
*
|
|
28664
29468
|
* * **True** or **1**: enables the log backup feature.
|
|
28665
|
-
* * **False** or **0**:
|
|
29469
|
+
* * **False** or **0**: disables the log backup feature.
|
|
28666
29470
|
*
|
|
28667
29471
|
* > * You must specify this parameter when you set the **BackupPolicyMode** parameter to **LogBackupPolicy**.
|
|
28668
29472
|
* > * This parameter takes effect only when you set the **BackupPolicyMode** parameter to **LogBackupPolicy**.
|
|
@@ -28689,8 +29493,8 @@ export declare class ModifyBackupPolicyRequest extends $tea.Model {
|
|
|
28689
29493
|
* @remarks
|
|
28690
29494
|
* Specifies whether to forcefully delete log backup files from the instance when the storage usage of the instance exceeds 80% or the amount of remaining storage on the instance is less than 5 GB. Valid values: **Enable and Disable**. You can retain the default value.
|
|
28691
29495
|
*
|
|
28692
|
-
* > *
|
|
28693
|
-
* > * This parameter takes effect only when **BackupPolicyMode**
|
|
29496
|
+
* > * You must specify this parameter when you set the **BackupPolicyMode** parameter to **LogBackupPolicy**.
|
|
29497
|
+
* > * This parameter takes effect only when you set the **BackupPolicyMode** parameter to **LogBackupPolicy**.
|
|
28694
29498
|
*
|
|
28695
29499
|
* @example
|
|
28696
29500
|
* Enable
|
|
@@ -28737,7 +29541,7 @@ export declare class ModifyBackupPolicyRequest extends $tea.Model {
|
|
|
28737
29541
|
* The number of binary log files that you want to retain on the instance. Default value: **60**. Valid values: **6** to **100**.
|
|
28738
29542
|
*
|
|
28739
29543
|
* > * This parameter takes effect only when you set the **BackupPolicyMode** parameter to **LogBackupPolicy**.
|
|
28740
|
-
* > * If the instance runs MySQL, you can set this parameter to
|
|
29544
|
+
* > * If the instance runs MySQL, you can set this parameter to \\*\\*-1\\*\\*. The value \\*\\*-1\\*\\* specifies that an unlimited number of binary log files can be retained on the instance.
|
|
28741
29545
|
*
|
|
28742
29546
|
* @example
|
|
28743
29547
|
* 60
|
|
@@ -28789,13 +29593,14 @@ export declare class ModifyBackupPolicyRequest extends $tea.Model {
|
|
|
28789
29593
|
preferredBackupTime?: string;
|
|
28790
29594
|
/**
|
|
28791
29595
|
* @remarks
|
|
28792
|
-
* The policy that is used to retain archived backup files if the instance is released.
|
|
29596
|
+
* The policy that is used to retain archived backup files if the instance is released. Valid values:
|
|
28793
29597
|
*
|
|
28794
29598
|
* * **None**: No archived backup files are retained.
|
|
28795
29599
|
* * **Lastest**: Only the last archived backup file is retained.
|
|
28796
29600
|
* * **All**: All archived backup files are retained.
|
|
28797
29601
|
*
|
|
28798
|
-
* > This parameter takes effect only when **BackupPolicyMode**
|
|
29602
|
+
* > * This parameter takes effect only when you set the **BackupPolicyMode** parameter to **DataBackupPolicy**.
|
|
29603
|
+
* > * If the instance uses cloud disks and was created on or after February 1, 2024, this parameter is automatically set to **Lastest**. If the instance uses local disks in the same scenario, this parameter is automatically set to **None**. For more information, see [Backup for deleted instances](https://help.aliyun.com/document_detail/2836955.html).
|
|
28799
29604
|
*
|
|
28800
29605
|
* @example
|
|
28801
29606
|
* None
|
|
@@ -33952,7 +34757,7 @@ export declare class ModifyParameterRequest extends $tea.Model {
|
|
|
33952
34757
|
* @remarks
|
|
33953
34758
|
* The time at which the modification takes effect. Valid values:
|
|
33954
34759
|
*
|
|
33955
|
-
* * **
|
|
34760
|
+
* * **Immediate**: immediately modifies the parameter. This is the default value.
|
|
33956
34761
|
* * **MaintainTime**: modifies the parameter during the maintenance window of the instance. You can call the ModifyDBInstanceMaintainTime operation to change the maintenance window.
|
|
33957
34762
|
* * **ScheduleTime**: modifies the parameter at the point in time that you specify. If you specify this value, you must also specify **SwitchTime**.
|
|
33958
34763
|
*
|
|
@@ -34143,6 +34948,107 @@ export declare class ModifyParameterGroupResponse extends $tea.Model {
|
|
|
34143
34948
|
[key: string]: any;
|
|
34144
34949
|
});
|
|
34145
34950
|
}
|
|
34951
|
+
export declare class ModifyRCInstanceRequest extends $tea.Model {
|
|
34952
|
+
autoPay?: boolean;
|
|
34953
|
+
direction?: string;
|
|
34954
|
+
dryRun?: boolean;
|
|
34955
|
+
instanceId?: string;
|
|
34956
|
+
instanceType?: string;
|
|
34957
|
+
regionId?: string;
|
|
34958
|
+
static names(): {
|
|
34959
|
+
[key: string]: string;
|
|
34960
|
+
};
|
|
34961
|
+
static types(): {
|
|
34962
|
+
[key: string]: any;
|
|
34963
|
+
};
|
|
34964
|
+
constructor(map?: {
|
|
34965
|
+
[key: string]: any;
|
|
34966
|
+
});
|
|
34967
|
+
}
|
|
34968
|
+
export declare class ModifyRCInstanceResponseBody extends $tea.Model {
|
|
34969
|
+
orderId?: number;
|
|
34970
|
+
requestId?: string;
|
|
34971
|
+
static names(): {
|
|
34972
|
+
[key: string]: string;
|
|
34973
|
+
};
|
|
34974
|
+
static types(): {
|
|
34975
|
+
[key: string]: any;
|
|
34976
|
+
};
|
|
34977
|
+
constructor(map?: {
|
|
34978
|
+
[key: string]: any;
|
|
34979
|
+
});
|
|
34980
|
+
}
|
|
34981
|
+
export declare class ModifyRCInstanceResponse extends $tea.Model {
|
|
34982
|
+
headers?: {
|
|
34983
|
+
[key: string]: string;
|
|
34984
|
+
};
|
|
34985
|
+
statusCode?: number;
|
|
34986
|
+
body?: ModifyRCInstanceResponseBody;
|
|
34987
|
+
static names(): {
|
|
34988
|
+
[key: string]: string;
|
|
34989
|
+
};
|
|
34990
|
+
static types(): {
|
|
34991
|
+
[key: string]: any;
|
|
34992
|
+
};
|
|
34993
|
+
constructor(map?: {
|
|
34994
|
+
[key: string]: any;
|
|
34995
|
+
});
|
|
34996
|
+
}
|
|
34997
|
+
export declare class ModifyRCInstanceChargeTypeRequest extends $tea.Model {
|
|
34998
|
+
autoPay?: boolean;
|
|
34999
|
+
dryRun?: boolean;
|
|
35000
|
+
includeDataDisks?: boolean;
|
|
35001
|
+
instanceChargeType?: string;
|
|
35002
|
+
/**
|
|
35003
|
+
* @remarks
|
|
35004
|
+
* This parameter is required.
|
|
35005
|
+
*/
|
|
35006
|
+
instanceIds?: string;
|
|
35007
|
+
/**
|
|
35008
|
+
* @remarks
|
|
35009
|
+
* This parameter is required.
|
|
35010
|
+
*/
|
|
35011
|
+
regionId?: string;
|
|
35012
|
+
static names(): {
|
|
35013
|
+
[key: string]: string;
|
|
35014
|
+
};
|
|
35015
|
+
static types(): {
|
|
35016
|
+
[key: string]: any;
|
|
35017
|
+
};
|
|
35018
|
+
constructor(map?: {
|
|
35019
|
+
[key: string]: any;
|
|
35020
|
+
});
|
|
35021
|
+
}
|
|
35022
|
+
export declare class ModifyRCInstanceChargeTypeResponseBody extends $tea.Model {
|
|
35023
|
+
feeOfInstances?: ModifyRCInstanceChargeTypeResponseBodyFeeOfInstances;
|
|
35024
|
+
orderId?: string;
|
|
35025
|
+
requestId?: string;
|
|
35026
|
+
static names(): {
|
|
35027
|
+
[key: string]: string;
|
|
35028
|
+
};
|
|
35029
|
+
static types(): {
|
|
35030
|
+
[key: string]: any;
|
|
35031
|
+
};
|
|
35032
|
+
constructor(map?: {
|
|
35033
|
+
[key: string]: any;
|
|
35034
|
+
});
|
|
35035
|
+
}
|
|
35036
|
+
export declare class ModifyRCInstanceChargeTypeResponse extends $tea.Model {
|
|
35037
|
+
headers?: {
|
|
35038
|
+
[key: string]: string;
|
|
35039
|
+
};
|
|
35040
|
+
statusCode?: number;
|
|
35041
|
+
body?: ModifyRCInstanceChargeTypeResponseBody;
|
|
35042
|
+
static names(): {
|
|
35043
|
+
[key: string]: string;
|
|
35044
|
+
};
|
|
35045
|
+
static types(): {
|
|
35046
|
+
[key: string]: any;
|
|
35047
|
+
};
|
|
35048
|
+
constructor(map?: {
|
|
35049
|
+
[key: string]: any;
|
|
35050
|
+
});
|
|
35051
|
+
}
|
|
34146
35052
|
export declare class ModifyReadWriteSplittingConnectionRequest extends $tea.Model {
|
|
34147
35053
|
/**
|
|
34148
35054
|
* @remarks
|
|
@@ -35617,7 +36523,7 @@ export declare class QueryRecommendByCodeRequest extends $tea.Model {
|
|
|
35617
36523
|
*/
|
|
35618
36524
|
resourceGroupId?: string;
|
|
35619
36525
|
resourceOwnerAccount?: string;
|
|
35620
|
-
resourceOwnerId?:
|
|
36526
|
+
resourceOwnerId?: number;
|
|
35621
36527
|
static names(): {
|
|
35622
36528
|
[key: string]: string;
|
|
35623
36529
|
};
|
|
@@ -35686,6 +36592,53 @@ export declare class QueryRecommendByCodeResponse extends $tea.Model {
|
|
|
35686
36592
|
[key: string]: any;
|
|
35687
36593
|
});
|
|
35688
36594
|
}
|
|
36595
|
+
export declare class RebootRCInstanceRequest extends $tea.Model {
|
|
36596
|
+
dryRun?: boolean;
|
|
36597
|
+
forceStop?: boolean;
|
|
36598
|
+
/**
|
|
36599
|
+
* @remarks
|
|
36600
|
+
* This parameter is required.
|
|
36601
|
+
*/
|
|
36602
|
+
instanceId?: string;
|
|
36603
|
+
regionId?: string;
|
|
36604
|
+
static names(): {
|
|
36605
|
+
[key: string]: string;
|
|
36606
|
+
};
|
|
36607
|
+
static types(): {
|
|
36608
|
+
[key: string]: any;
|
|
36609
|
+
};
|
|
36610
|
+
constructor(map?: {
|
|
36611
|
+
[key: string]: any;
|
|
36612
|
+
});
|
|
36613
|
+
}
|
|
36614
|
+
export declare class RebootRCInstanceResponseBody extends $tea.Model {
|
|
36615
|
+
requestId?: string;
|
|
36616
|
+
static names(): {
|
|
36617
|
+
[key: string]: string;
|
|
36618
|
+
};
|
|
36619
|
+
static types(): {
|
|
36620
|
+
[key: string]: any;
|
|
36621
|
+
};
|
|
36622
|
+
constructor(map?: {
|
|
36623
|
+
[key: string]: any;
|
|
36624
|
+
});
|
|
36625
|
+
}
|
|
36626
|
+
export declare class RebootRCInstanceResponse extends $tea.Model {
|
|
36627
|
+
headers?: {
|
|
36628
|
+
[key: string]: string;
|
|
36629
|
+
};
|
|
36630
|
+
statusCode?: number;
|
|
36631
|
+
body?: RebootRCInstanceResponseBody;
|
|
36632
|
+
static names(): {
|
|
36633
|
+
[key: string]: string;
|
|
36634
|
+
};
|
|
36635
|
+
static types(): {
|
|
36636
|
+
[key: string]: any;
|
|
36637
|
+
};
|
|
36638
|
+
constructor(map?: {
|
|
36639
|
+
[key: string]: any;
|
|
36640
|
+
});
|
|
36641
|
+
}
|
|
35689
36642
|
export declare class RebuildDBInstanceRequest extends $tea.Model {
|
|
35690
36643
|
/**
|
|
35691
36644
|
* @remarks
|
|
@@ -35800,6 +36753,86 @@ export declare class RebuildDBInstanceResponse extends $tea.Model {
|
|
|
35800
36753
|
[key: string]: any;
|
|
35801
36754
|
});
|
|
35802
36755
|
}
|
|
36756
|
+
export declare class RebuildReplicationLinkRequest extends $tea.Model {
|
|
36757
|
+
/**
|
|
36758
|
+
* @remarks
|
|
36759
|
+
* The instance ID.
|
|
36760
|
+
*
|
|
36761
|
+
* This parameter is required.
|
|
36762
|
+
*
|
|
36763
|
+
* @example
|
|
36764
|
+
* pgm-bp1trqb4p1xd****
|
|
36765
|
+
*/
|
|
36766
|
+
DBInstanceId?: string;
|
|
36767
|
+
static names(): {
|
|
36768
|
+
[key: string]: string;
|
|
36769
|
+
};
|
|
36770
|
+
static types(): {
|
|
36771
|
+
[key: string]: any;
|
|
36772
|
+
};
|
|
36773
|
+
constructor(map?: {
|
|
36774
|
+
[key: string]: any;
|
|
36775
|
+
});
|
|
36776
|
+
}
|
|
36777
|
+
export declare class RebuildReplicationLinkResponseBody extends $tea.Model {
|
|
36778
|
+
/**
|
|
36779
|
+
* @remarks
|
|
36780
|
+
* The instance ID.
|
|
36781
|
+
*
|
|
36782
|
+
* @example
|
|
36783
|
+
* pgm-bp1trqb4p1xd****
|
|
36784
|
+
*/
|
|
36785
|
+
DBInstanceId?: string;
|
|
36786
|
+
/**
|
|
36787
|
+
* @remarks
|
|
36788
|
+
* The request ID.
|
|
36789
|
+
*
|
|
36790
|
+
* @example
|
|
36791
|
+
* 65BDA532-28AF-4122-AA39-B382721EEE64
|
|
36792
|
+
*/
|
|
36793
|
+
requestId?: string;
|
|
36794
|
+
/**
|
|
36795
|
+
* @remarks
|
|
36796
|
+
* The task ID.
|
|
36797
|
+
*
|
|
36798
|
+
* @example
|
|
36799
|
+
* 3472****
|
|
36800
|
+
*/
|
|
36801
|
+
taskId?: number;
|
|
36802
|
+
/**
|
|
36803
|
+
* @remarks
|
|
36804
|
+
* The task name.
|
|
36805
|
+
*
|
|
36806
|
+
* @example
|
|
36807
|
+
* test01
|
|
36808
|
+
*/
|
|
36809
|
+
taskName?: string;
|
|
36810
|
+
static names(): {
|
|
36811
|
+
[key: string]: string;
|
|
36812
|
+
};
|
|
36813
|
+
static types(): {
|
|
36814
|
+
[key: string]: any;
|
|
36815
|
+
};
|
|
36816
|
+
constructor(map?: {
|
|
36817
|
+
[key: string]: any;
|
|
36818
|
+
});
|
|
36819
|
+
}
|
|
36820
|
+
export declare class RebuildReplicationLinkResponse extends $tea.Model {
|
|
36821
|
+
headers?: {
|
|
36822
|
+
[key: string]: string;
|
|
36823
|
+
};
|
|
36824
|
+
statusCode?: number;
|
|
36825
|
+
body?: RebuildReplicationLinkResponseBody;
|
|
36826
|
+
static names(): {
|
|
36827
|
+
[key: string]: string;
|
|
36828
|
+
};
|
|
36829
|
+
static types(): {
|
|
36830
|
+
[key: string]: any;
|
|
36831
|
+
};
|
|
36832
|
+
constructor(map?: {
|
|
36833
|
+
[key: string]: any;
|
|
36834
|
+
});
|
|
36835
|
+
}
|
|
35803
36836
|
export declare class ReceiveDBInstanceRequest extends $tea.Model {
|
|
35804
36837
|
/**
|
|
35805
36838
|
* @remarks
|
|
@@ -36714,6 +37747,52 @@ export declare class ResetAccountPasswordResponse extends $tea.Model {
|
|
|
36714
37747
|
[key: string]: any;
|
|
36715
37748
|
});
|
|
36716
37749
|
}
|
|
37750
|
+
export declare class ResizeRCInstanceDiskRequest extends $tea.Model {
|
|
37751
|
+
autoPay?: boolean;
|
|
37752
|
+
dryRun?: boolean;
|
|
37753
|
+
instanceId?: string;
|
|
37754
|
+
newSize?: number;
|
|
37755
|
+
regionId?: string;
|
|
37756
|
+
type?: string;
|
|
37757
|
+
static names(): {
|
|
37758
|
+
[key: string]: string;
|
|
37759
|
+
};
|
|
37760
|
+
static types(): {
|
|
37761
|
+
[key: string]: any;
|
|
37762
|
+
};
|
|
37763
|
+
constructor(map?: {
|
|
37764
|
+
[key: string]: any;
|
|
37765
|
+
});
|
|
37766
|
+
}
|
|
37767
|
+
export declare class ResizeRCInstanceDiskResponseBody extends $tea.Model {
|
|
37768
|
+
orderId?: number;
|
|
37769
|
+
requestId?: string;
|
|
37770
|
+
static names(): {
|
|
37771
|
+
[key: string]: string;
|
|
37772
|
+
};
|
|
37773
|
+
static types(): {
|
|
37774
|
+
[key: string]: any;
|
|
37775
|
+
};
|
|
37776
|
+
constructor(map?: {
|
|
37777
|
+
[key: string]: any;
|
|
37778
|
+
});
|
|
37779
|
+
}
|
|
37780
|
+
export declare class ResizeRCInstanceDiskResponse extends $tea.Model {
|
|
37781
|
+
headers?: {
|
|
37782
|
+
[key: string]: string;
|
|
37783
|
+
};
|
|
37784
|
+
statusCode?: number;
|
|
37785
|
+
body?: ResizeRCInstanceDiskResponseBody;
|
|
37786
|
+
static names(): {
|
|
37787
|
+
[key: string]: string;
|
|
37788
|
+
};
|
|
37789
|
+
static types(): {
|
|
37790
|
+
[key: string]: any;
|
|
37791
|
+
};
|
|
37792
|
+
constructor(map?: {
|
|
37793
|
+
[key: string]: any;
|
|
37794
|
+
});
|
|
37795
|
+
}
|
|
36717
37796
|
export declare class RestartDBInstanceRequest extends $tea.Model {
|
|
36718
37797
|
/**
|
|
36719
37798
|
* @remarks
|
|
@@ -37200,6 +38279,138 @@ export declare class RevokeOperatorPermissionResponse extends $tea.Model {
|
|
|
37200
38279
|
[key: string]: any;
|
|
37201
38280
|
});
|
|
37202
38281
|
}
|
|
38282
|
+
export declare class RunRCInstancesRequest extends $tea.Model {
|
|
38283
|
+
/**
|
|
38284
|
+
* @remarks
|
|
38285
|
+
* This parameter is required.
|
|
38286
|
+
*/
|
|
38287
|
+
amount?: number;
|
|
38288
|
+
autoPay?: boolean;
|
|
38289
|
+
autoRenew?: boolean;
|
|
38290
|
+
clientToken?: string;
|
|
38291
|
+
dataDisk?: RunRCInstancesRequestDataDisk[];
|
|
38292
|
+
deploymentSetId?: string;
|
|
38293
|
+
description?: string;
|
|
38294
|
+
imageId?: string;
|
|
38295
|
+
instanceChargeType?: string;
|
|
38296
|
+
instanceName?: string;
|
|
38297
|
+
/**
|
|
38298
|
+
* @remarks
|
|
38299
|
+
* This parameter is required.
|
|
38300
|
+
*/
|
|
38301
|
+
instanceType?: string;
|
|
38302
|
+
internetChargeType?: string;
|
|
38303
|
+
internetMaxBandwidthOut?: number;
|
|
38304
|
+
ioOptimized?: string;
|
|
38305
|
+
keyPairName?: string;
|
|
38306
|
+
password?: string;
|
|
38307
|
+
period?: number;
|
|
38308
|
+
periodUnit?: string;
|
|
38309
|
+
/**
|
|
38310
|
+
* @remarks
|
|
38311
|
+
* This parameter is required.
|
|
38312
|
+
*/
|
|
38313
|
+
regionId?: string;
|
|
38314
|
+
securityEnhancementStrategy?: string;
|
|
38315
|
+
securityGroupId?: string;
|
|
38316
|
+
systemDisk?: RunRCInstancesRequestSystemDisk;
|
|
38317
|
+
/**
|
|
38318
|
+
* @remarks
|
|
38319
|
+
* This parameter is required.
|
|
38320
|
+
*/
|
|
38321
|
+
vSwitchId?: string;
|
|
38322
|
+
zoneId?: string;
|
|
38323
|
+
static names(): {
|
|
38324
|
+
[key: string]: string;
|
|
38325
|
+
};
|
|
38326
|
+
static types(): {
|
|
38327
|
+
[key: string]: any;
|
|
38328
|
+
};
|
|
38329
|
+
constructor(map?: {
|
|
38330
|
+
[key: string]: any;
|
|
38331
|
+
});
|
|
38332
|
+
}
|
|
38333
|
+
export declare class RunRCInstancesShrinkRequest extends $tea.Model {
|
|
38334
|
+
/**
|
|
38335
|
+
* @remarks
|
|
38336
|
+
* This parameter is required.
|
|
38337
|
+
*/
|
|
38338
|
+
amount?: number;
|
|
38339
|
+
autoPay?: boolean;
|
|
38340
|
+
autoRenew?: boolean;
|
|
38341
|
+
clientToken?: string;
|
|
38342
|
+
dataDiskShrink?: string;
|
|
38343
|
+
deploymentSetId?: string;
|
|
38344
|
+
description?: string;
|
|
38345
|
+
imageId?: string;
|
|
38346
|
+
instanceChargeType?: string;
|
|
38347
|
+
instanceName?: string;
|
|
38348
|
+
/**
|
|
38349
|
+
* @remarks
|
|
38350
|
+
* This parameter is required.
|
|
38351
|
+
*/
|
|
38352
|
+
instanceType?: string;
|
|
38353
|
+
internetChargeType?: string;
|
|
38354
|
+
internetMaxBandwidthOut?: number;
|
|
38355
|
+
ioOptimized?: string;
|
|
38356
|
+
keyPairName?: string;
|
|
38357
|
+
password?: string;
|
|
38358
|
+
period?: number;
|
|
38359
|
+
periodUnit?: string;
|
|
38360
|
+
/**
|
|
38361
|
+
* @remarks
|
|
38362
|
+
* This parameter is required.
|
|
38363
|
+
*/
|
|
38364
|
+
regionId?: string;
|
|
38365
|
+
securityEnhancementStrategy?: string;
|
|
38366
|
+
securityGroupId?: string;
|
|
38367
|
+
systemDiskShrink?: string;
|
|
38368
|
+
/**
|
|
38369
|
+
* @remarks
|
|
38370
|
+
* This parameter is required.
|
|
38371
|
+
*/
|
|
38372
|
+
vSwitchId?: string;
|
|
38373
|
+
zoneId?: string;
|
|
38374
|
+
static names(): {
|
|
38375
|
+
[key: string]: string;
|
|
38376
|
+
};
|
|
38377
|
+
static types(): {
|
|
38378
|
+
[key: string]: any;
|
|
38379
|
+
};
|
|
38380
|
+
constructor(map?: {
|
|
38381
|
+
[key: string]: any;
|
|
38382
|
+
});
|
|
38383
|
+
}
|
|
38384
|
+
export declare class RunRCInstancesResponseBody extends $tea.Model {
|
|
38385
|
+
instanceIdSets?: RunRCInstancesResponseBodyInstanceIdSets;
|
|
38386
|
+
orderId?: string;
|
|
38387
|
+
requestId?: string;
|
|
38388
|
+
static names(): {
|
|
38389
|
+
[key: string]: string;
|
|
38390
|
+
};
|
|
38391
|
+
static types(): {
|
|
38392
|
+
[key: string]: any;
|
|
38393
|
+
};
|
|
38394
|
+
constructor(map?: {
|
|
38395
|
+
[key: string]: any;
|
|
38396
|
+
});
|
|
38397
|
+
}
|
|
38398
|
+
export declare class RunRCInstancesResponse extends $tea.Model {
|
|
38399
|
+
headers?: {
|
|
38400
|
+
[key: string]: string;
|
|
38401
|
+
};
|
|
38402
|
+
statusCode?: number;
|
|
38403
|
+
body?: RunRCInstancesResponseBody;
|
|
38404
|
+
static names(): {
|
|
38405
|
+
[key: string]: string;
|
|
38406
|
+
};
|
|
38407
|
+
static types(): {
|
|
38408
|
+
[key: string]: any;
|
|
38409
|
+
};
|
|
38410
|
+
constructor(map?: {
|
|
38411
|
+
[key: string]: any;
|
|
38412
|
+
});
|
|
38413
|
+
}
|
|
37203
38414
|
export declare class StartDBInstanceRequest extends $tea.Model {
|
|
37204
38415
|
/**
|
|
37205
38416
|
* @remarks
|
|
@@ -37395,6 +38606,51 @@ export declare class StartDBInstanceResponse extends $tea.Model {
|
|
|
37395
38606
|
[key: string]: any;
|
|
37396
38607
|
});
|
|
37397
38608
|
}
|
|
38609
|
+
export declare class StartRCInstanceRequest extends $tea.Model {
|
|
38610
|
+
/**
|
|
38611
|
+
* @remarks
|
|
38612
|
+
* This parameter is required.
|
|
38613
|
+
*/
|
|
38614
|
+
instanceId?: string;
|
|
38615
|
+
regionId?: string;
|
|
38616
|
+
static names(): {
|
|
38617
|
+
[key: string]: string;
|
|
38618
|
+
};
|
|
38619
|
+
static types(): {
|
|
38620
|
+
[key: string]: any;
|
|
38621
|
+
};
|
|
38622
|
+
constructor(map?: {
|
|
38623
|
+
[key: string]: any;
|
|
38624
|
+
});
|
|
38625
|
+
}
|
|
38626
|
+
export declare class StartRCInstanceResponseBody extends $tea.Model {
|
|
38627
|
+
requestId?: string;
|
|
38628
|
+
static names(): {
|
|
38629
|
+
[key: string]: string;
|
|
38630
|
+
};
|
|
38631
|
+
static types(): {
|
|
38632
|
+
[key: string]: any;
|
|
38633
|
+
};
|
|
38634
|
+
constructor(map?: {
|
|
38635
|
+
[key: string]: any;
|
|
38636
|
+
});
|
|
38637
|
+
}
|
|
38638
|
+
export declare class StartRCInstanceResponse extends $tea.Model {
|
|
38639
|
+
headers?: {
|
|
38640
|
+
[key: string]: string;
|
|
38641
|
+
};
|
|
38642
|
+
statusCode?: number;
|
|
38643
|
+
body?: StartRCInstanceResponseBody;
|
|
38644
|
+
static names(): {
|
|
38645
|
+
[key: string]: string;
|
|
38646
|
+
};
|
|
38647
|
+
static types(): {
|
|
38648
|
+
[key: string]: any;
|
|
38649
|
+
};
|
|
38650
|
+
constructor(map?: {
|
|
38651
|
+
[key: string]: any;
|
|
38652
|
+
});
|
|
38653
|
+
}
|
|
37398
38654
|
export declare class StopDBInstanceRequest extends $tea.Model {
|
|
37399
38655
|
/**
|
|
37400
38656
|
* @remarks
|
|
@@ -37464,6 +38720,52 @@ export declare class StopDBInstanceResponse extends $tea.Model {
|
|
|
37464
38720
|
[key: string]: any;
|
|
37465
38721
|
});
|
|
37466
38722
|
}
|
|
38723
|
+
export declare class StopRCInstanceRequest extends $tea.Model {
|
|
38724
|
+
forceStop?: boolean;
|
|
38725
|
+
/**
|
|
38726
|
+
* @remarks
|
|
38727
|
+
* This parameter is required.
|
|
38728
|
+
*/
|
|
38729
|
+
instanceId?: string;
|
|
38730
|
+
regionId?: string;
|
|
38731
|
+
static names(): {
|
|
38732
|
+
[key: string]: string;
|
|
38733
|
+
};
|
|
38734
|
+
static types(): {
|
|
38735
|
+
[key: string]: any;
|
|
38736
|
+
};
|
|
38737
|
+
constructor(map?: {
|
|
38738
|
+
[key: string]: any;
|
|
38739
|
+
});
|
|
38740
|
+
}
|
|
38741
|
+
export declare class StopRCInstanceResponseBody extends $tea.Model {
|
|
38742
|
+
requestId?: string;
|
|
38743
|
+
static names(): {
|
|
38744
|
+
[key: string]: string;
|
|
38745
|
+
};
|
|
38746
|
+
static types(): {
|
|
38747
|
+
[key: string]: any;
|
|
38748
|
+
};
|
|
38749
|
+
constructor(map?: {
|
|
38750
|
+
[key: string]: any;
|
|
38751
|
+
});
|
|
38752
|
+
}
|
|
38753
|
+
export declare class StopRCInstanceResponse extends $tea.Model {
|
|
38754
|
+
headers?: {
|
|
38755
|
+
[key: string]: string;
|
|
38756
|
+
};
|
|
38757
|
+
statusCode?: number;
|
|
38758
|
+
body?: StopRCInstanceResponseBody;
|
|
38759
|
+
static names(): {
|
|
38760
|
+
[key: string]: string;
|
|
38761
|
+
};
|
|
38762
|
+
static types(): {
|
|
38763
|
+
[key: string]: any;
|
|
38764
|
+
};
|
|
38765
|
+
constructor(map?: {
|
|
38766
|
+
[key: string]: any;
|
|
38767
|
+
});
|
|
38768
|
+
}
|
|
37467
38769
|
export declare class SwitchDBInstanceHARequest extends $tea.Model {
|
|
37468
38770
|
/**
|
|
37469
38771
|
* @remarks
|
|
@@ -37766,6 +39068,48 @@ export declare class SwitchDBInstanceVpcResponse extends $tea.Model {
|
|
|
37766
39068
|
[key: string]: any;
|
|
37767
39069
|
});
|
|
37768
39070
|
}
|
|
39071
|
+
export declare class SyncRCKeyPairRequest extends $tea.Model {
|
|
39072
|
+
keyPairName?: string;
|
|
39073
|
+
regionId?: string;
|
|
39074
|
+
static names(): {
|
|
39075
|
+
[key: string]: string;
|
|
39076
|
+
};
|
|
39077
|
+
static types(): {
|
|
39078
|
+
[key: string]: any;
|
|
39079
|
+
};
|
|
39080
|
+
constructor(map?: {
|
|
39081
|
+
[key: string]: any;
|
|
39082
|
+
});
|
|
39083
|
+
}
|
|
39084
|
+
export declare class SyncRCKeyPairResponseBody extends $tea.Model {
|
|
39085
|
+
data?: SyncRCKeyPairResponseBodyData;
|
|
39086
|
+
requestId?: string;
|
|
39087
|
+
static names(): {
|
|
39088
|
+
[key: string]: string;
|
|
39089
|
+
};
|
|
39090
|
+
static types(): {
|
|
39091
|
+
[key: string]: any;
|
|
39092
|
+
};
|
|
39093
|
+
constructor(map?: {
|
|
39094
|
+
[key: string]: any;
|
|
39095
|
+
});
|
|
39096
|
+
}
|
|
39097
|
+
export declare class SyncRCKeyPairResponse extends $tea.Model {
|
|
39098
|
+
headers?: {
|
|
39099
|
+
[key: string]: string;
|
|
39100
|
+
};
|
|
39101
|
+
statusCode?: number;
|
|
39102
|
+
body?: SyncRCKeyPairResponseBody;
|
|
39103
|
+
static names(): {
|
|
39104
|
+
[key: string]: string;
|
|
39105
|
+
};
|
|
39106
|
+
static types(): {
|
|
39107
|
+
[key: string]: any;
|
|
39108
|
+
};
|
|
39109
|
+
constructor(map?: {
|
|
39110
|
+
[key: string]: any;
|
|
39111
|
+
});
|
|
39112
|
+
}
|
|
37769
39113
|
export declare class TagResourcesRequest extends $tea.Model {
|
|
37770
39114
|
ownerId?: number;
|
|
37771
39115
|
/**
|
|
@@ -51264,6 +52608,267 @@ export declare class DescribePriceResponseBodyServerlessPrice extends $tea.Model
|
|
|
51264
52608
|
[key: string]: any;
|
|
51265
52609
|
});
|
|
51266
52610
|
}
|
|
52611
|
+
export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSetCapacitiesCapacity extends $tea.Model {
|
|
52612
|
+
availableAmount?: number;
|
|
52613
|
+
usedAmount?: number;
|
|
52614
|
+
zoneId?: string;
|
|
52615
|
+
static names(): {
|
|
52616
|
+
[key: string]: string;
|
|
52617
|
+
};
|
|
52618
|
+
static types(): {
|
|
52619
|
+
[key: string]: any;
|
|
52620
|
+
};
|
|
52621
|
+
constructor(map?: {
|
|
52622
|
+
[key: string]: any;
|
|
52623
|
+
});
|
|
52624
|
+
}
|
|
52625
|
+
export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSetCapacities extends $tea.Model {
|
|
52626
|
+
capacity?: DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSetCapacitiesCapacity[];
|
|
52627
|
+
static names(): {
|
|
52628
|
+
[key: string]: string;
|
|
52629
|
+
};
|
|
52630
|
+
static types(): {
|
|
52631
|
+
[key: string]: any;
|
|
52632
|
+
};
|
|
52633
|
+
constructor(map?: {
|
|
52634
|
+
[key: string]: any;
|
|
52635
|
+
});
|
|
52636
|
+
}
|
|
52637
|
+
export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSetInstanceIds extends $tea.Model {
|
|
52638
|
+
instanceId?: string[];
|
|
52639
|
+
static names(): {
|
|
52640
|
+
[key: string]: string;
|
|
52641
|
+
};
|
|
52642
|
+
static types(): {
|
|
52643
|
+
[key: string]: any;
|
|
52644
|
+
};
|
|
52645
|
+
constructor(map?: {
|
|
52646
|
+
[key: string]: any;
|
|
52647
|
+
});
|
|
52648
|
+
}
|
|
52649
|
+
export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSet extends $tea.Model {
|
|
52650
|
+
capacities?: DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSetCapacities;
|
|
52651
|
+
createTime?: string;
|
|
52652
|
+
deploymentSetDescription?: string;
|
|
52653
|
+
deploymentSetId?: string;
|
|
52654
|
+
deploymentSetName?: string;
|
|
52655
|
+
deploymentStrategy?: string;
|
|
52656
|
+
domain?: string;
|
|
52657
|
+
granularity?: string;
|
|
52658
|
+
groupCount?: number;
|
|
52659
|
+
instanceAmount?: number;
|
|
52660
|
+
instanceIds?: DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSetInstanceIds;
|
|
52661
|
+
strategy?: string;
|
|
52662
|
+
static names(): {
|
|
52663
|
+
[key: string]: string;
|
|
52664
|
+
};
|
|
52665
|
+
static types(): {
|
|
52666
|
+
[key: string]: any;
|
|
52667
|
+
};
|
|
52668
|
+
constructor(map?: {
|
|
52669
|
+
[key: string]: any;
|
|
52670
|
+
});
|
|
52671
|
+
}
|
|
52672
|
+
export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSets extends $tea.Model {
|
|
52673
|
+
deploymentSet?: DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSet[];
|
|
52674
|
+
static names(): {
|
|
52675
|
+
[key: string]: string;
|
|
52676
|
+
};
|
|
52677
|
+
static types(): {
|
|
52678
|
+
[key: string]: any;
|
|
52679
|
+
};
|
|
52680
|
+
constructor(map?: {
|
|
52681
|
+
[key: string]: any;
|
|
52682
|
+
});
|
|
52683
|
+
}
|
|
52684
|
+
export declare class DescribeRCImageListResponseBodyImages extends $tea.Model {
|
|
52685
|
+
architecture?: string;
|
|
52686
|
+
creationTime?: string;
|
|
52687
|
+
description?: string;
|
|
52688
|
+
imageId?: string;
|
|
52689
|
+
imageName?: string;
|
|
52690
|
+
imageVersion?: string;
|
|
52691
|
+
isPublic?: boolean;
|
|
52692
|
+
OSName?: string;
|
|
52693
|
+
OSNameEn?: string;
|
|
52694
|
+
OSType?: string;
|
|
52695
|
+
size?: number;
|
|
52696
|
+
status?: string;
|
|
52697
|
+
usage?: string;
|
|
52698
|
+
static names(): {
|
|
52699
|
+
[key: string]: string;
|
|
52700
|
+
};
|
|
52701
|
+
static types(): {
|
|
52702
|
+
[key: string]: any;
|
|
52703
|
+
};
|
|
52704
|
+
constructor(map?: {
|
|
52705
|
+
[key: string]: any;
|
|
52706
|
+
});
|
|
52707
|
+
}
|
|
52708
|
+
export declare class DescribeRCInstanceAttributeResponseBodyDataDisksDataDisk extends $tea.Model {
|
|
52709
|
+
category?: string;
|
|
52710
|
+
deleteWithInstance?: boolean;
|
|
52711
|
+
encrypted?: string;
|
|
52712
|
+
performanceLevel?: string;
|
|
52713
|
+
size?: number;
|
|
52714
|
+
static names(): {
|
|
52715
|
+
[key: string]: string;
|
|
52716
|
+
};
|
|
52717
|
+
static types(): {
|
|
52718
|
+
[key: string]: any;
|
|
52719
|
+
};
|
|
52720
|
+
constructor(map?: {
|
|
52721
|
+
[key: string]: any;
|
|
52722
|
+
});
|
|
52723
|
+
}
|
|
52724
|
+
export declare class DescribeRCInstanceAttributeResponseBodyDataDisks extends $tea.Model {
|
|
52725
|
+
dataDisk?: DescribeRCInstanceAttributeResponseBodyDataDisksDataDisk[];
|
|
52726
|
+
static names(): {
|
|
52727
|
+
[key: string]: string;
|
|
52728
|
+
};
|
|
52729
|
+
static types(): {
|
|
52730
|
+
[key: string]: any;
|
|
52731
|
+
};
|
|
52732
|
+
constructor(map?: {
|
|
52733
|
+
[key: string]: any;
|
|
52734
|
+
});
|
|
52735
|
+
}
|
|
52736
|
+
export declare class DescribeRCInstanceAttributeResponseBodyDedicatedHostAttribute extends $tea.Model {
|
|
52737
|
+
dedicatedHostId?: string;
|
|
52738
|
+
dedicatedHostName?: string;
|
|
52739
|
+
static names(): {
|
|
52740
|
+
[key: string]: string;
|
|
52741
|
+
};
|
|
52742
|
+
static types(): {
|
|
52743
|
+
[key: string]: any;
|
|
52744
|
+
};
|
|
52745
|
+
constructor(map?: {
|
|
52746
|
+
[key: string]: any;
|
|
52747
|
+
});
|
|
52748
|
+
}
|
|
52749
|
+
export declare class DescribeRCInstanceAttributeResponseBodyEipAddress extends $tea.Model {
|
|
52750
|
+
allocationId?: string;
|
|
52751
|
+
bandwidth?: number;
|
|
52752
|
+
internetChargeType?: string;
|
|
52753
|
+
ipAddress?: string;
|
|
52754
|
+
static names(): {
|
|
52755
|
+
[key: string]: string;
|
|
52756
|
+
};
|
|
52757
|
+
static types(): {
|
|
52758
|
+
[key: string]: any;
|
|
52759
|
+
};
|
|
52760
|
+
constructor(map?: {
|
|
52761
|
+
[key: string]: any;
|
|
52762
|
+
});
|
|
52763
|
+
}
|
|
52764
|
+
export declare class DescribeRCInstanceAttributeResponseBodyInnerIpAddress extends $tea.Model {
|
|
52765
|
+
ipAddress?: string[];
|
|
52766
|
+
static names(): {
|
|
52767
|
+
[key: string]: string;
|
|
52768
|
+
};
|
|
52769
|
+
static types(): {
|
|
52770
|
+
[key: string]: any;
|
|
52771
|
+
};
|
|
52772
|
+
constructor(map?: {
|
|
52773
|
+
[key: string]: any;
|
|
52774
|
+
});
|
|
52775
|
+
}
|
|
52776
|
+
export declare class DescribeRCInstanceAttributeResponseBodyOperationLocksLockReason extends $tea.Model {
|
|
52777
|
+
lockReason?: string;
|
|
52778
|
+
static names(): {
|
|
52779
|
+
[key: string]: string;
|
|
52780
|
+
};
|
|
52781
|
+
static types(): {
|
|
52782
|
+
[key: string]: any;
|
|
52783
|
+
};
|
|
52784
|
+
constructor(map?: {
|
|
52785
|
+
[key: string]: any;
|
|
52786
|
+
});
|
|
52787
|
+
}
|
|
52788
|
+
export declare class DescribeRCInstanceAttributeResponseBodyOperationLocks extends $tea.Model {
|
|
52789
|
+
lockReason?: DescribeRCInstanceAttributeResponseBodyOperationLocksLockReason[];
|
|
52790
|
+
static names(): {
|
|
52791
|
+
[key: string]: string;
|
|
52792
|
+
};
|
|
52793
|
+
static types(): {
|
|
52794
|
+
[key: string]: any;
|
|
52795
|
+
};
|
|
52796
|
+
constructor(map?: {
|
|
52797
|
+
[key: string]: any;
|
|
52798
|
+
});
|
|
52799
|
+
}
|
|
52800
|
+
export declare class DescribeRCInstanceAttributeResponseBodyPublicIpAddress extends $tea.Model {
|
|
52801
|
+
ipAddress?: string[];
|
|
52802
|
+
static names(): {
|
|
52803
|
+
[key: string]: string;
|
|
52804
|
+
};
|
|
52805
|
+
static types(): {
|
|
52806
|
+
[key: string]: any;
|
|
52807
|
+
};
|
|
52808
|
+
constructor(map?: {
|
|
52809
|
+
[key: string]: any;
|
|
52810
|
+
});
|
|
52811
|
+
}
|
|
52812
|
+
export declare class DescribeRCInstanceAttributeResponseBodySecurityGroupIds extends $tea.Model {
|
|
52813
|
+
securityGroupId?: string[];
|
|
52814
|
+
static names(): {
|
|
52815
|
+
[key: string]: string;
|
|
52816
|
+
};
|
|
52817
|
+
static types(): {
|
|
52818
|
+
[key: string]: any;
|
|
52819
|
+
};
|
|
52820
|
+
constructor(map?: {
|
|
52821
|
+
[key: string]: any;
|
|
52822
|
+
});
|
|
52823
|
+
}
|
|
52824
|
+
export declare class DescribeRCInstanceAttributeResponseBodyVpcAttributesPrivateIpAddress extends $tea.Model {
|
|
52825
|
+
ipAddress?: string[];
|
|
52826
|
+
static names(): {
|
|
52827
|
+
[key: string]: string;
|
|
52828
|
+
};
|
|
52829
|
+
static types(): {
|
|
52830
|
+
[key: string]: any;
|
|
52831
|
+
};
|
|
52832
|
+
constructor(map?: {
|
|
52833
|
+
[key: string]: any;
|
|
52834
|
+
});
|
|
52835
|
+
}
|
|
52836
|
+
export declare class DescribeRCInstanceAttributeResponseBodyVpcAttributes extends $tea.Model {
|
|
52837
|
+
natIpAddress?: string;
|
|
52838
|
+
privateIpAddress?: DescribeRCInstanceAttributeResponseBodyVpcAttributesPrivateIpAddress;
|
|
52839
|
+
vSwitchId?: string;
|
|
52840
|
+
vpcId?: string;
|
|
52841
|
+
static names(): {
|
|
52842
|
+
[key: string]: string;
|
|
52843
|
+
};
|
|
52844
|
+
static types(): {
|
|
52845
|
+
[key: string]: any;
|
|
52846
|
+
};
|
|
52847
|
+
constructor(map?: {
|
|
52848
|
+
[key: string]: any;
|
|
52849
|
+
});
|
|
52850
|
+
}
|
|
52851
|
+
export declare class DescribeRCInstancesResponseBodyRCInstances extends $tea.Model {
|
|
52852
|
+
clusterName?: string;
|
|
52853
|
+
dbType?: string;
|
|
52854
|
+
description?: string;
|
|
52855
|
+
gmtCreated?: string;
|
|
52856
|
+
hostIp?: string;
|
|
52857
|
+
hostName?: string;
|
|
52858
|
+
instanceId?: string;
|
|
52859
|
+
regionId?: string;
|
|
52860
|
+
status?: string;
|
|
52861
|
+
vpcId?: string;
|
|
52862
|
+
static names(): {
|
|
52863
|
+
[key: string]: string;
|
|
52864
|
+
};
|
|
52865
|
+
static types(): {
|
|
52866
|
+
[key: string]: any;
|
|
52867
|
+
};
|
|
52868
|
+
constructor(map?: {
|
|
52869
|
+
[key: string]: any;
|
|
52870
|
+
});
|
|
52871
|
+
}
|
|
51267
52872
|
export declare class DescribeRdsResourceSettingsResponseBodyRdsInstanceResourceSettingsRdsInstanceResourceSetting extends $tea.Model {
|
|
51268
52873
|
endDate?: string;
|
|
51269
52874
|
isTop?: string;
|
|
@@ -51762,6 +53367,97 @@ export declare class DescribeRenewalPriceResponseBodyRules extends $tea.Model {
|
|
|
51762
53367
|
[key: string]: any;
|
|
51763
53368
|
});
|
|
51764
53369
|
}
|
|
53370
|
+
export declare class DescribeReplicationLinkLogsResponseBodyItems extends $tea.Model {
|
|
53371
|
+
/**
|
|
53372
|
+
* @example
|
|
53373
|
+
* [Check rds empty]\\nCheck rds databases: success\\n[Check source connectivity]\\nCheck ip connectable: success\\nCheck port connectable: success\\nCheck database connectable: success\\nCheck account replication privilege: success\\nCheck account createrole privilege: success\\nCheck account monitor privilege: success\\n[Check source version]\\nCheck major version consistent: success\\n[Check source glibc version]\\nCheck source glibc version compatible: warning(warning:source glibc version is not compatible with rds pg)\\n[Check disk size]\\nCheck disk size enough: success\\n[Check wal keep size]\\nCheck wal keep size large enough: success\\n[Check spec params]\\nCheck if spec params too large: success\\n [Check triggers]\\nCheck triggers compatible: success\\n[Check user functions]\\nCheck user functions compatible: success\\n*Migrate check success*
|
|
53374
|
+
*/
|
|
53375
|
+
detail?: string;
|
|
53376
|
+
/**
|
|
53377
|
+
* @example
|
|
53378
|
+
* 2022-02-25T06:57:41Z
|
|
53379
|
+
*/
|
|
53380
|
+
gmtCreated?: string;
|
|
53381
|
+
/**
|
|
53382
|
+
* @example
|
|
53383
|
+
* 2022-03-01T06:39:51Z
|
|
53384
|
+
*/
|
|
53385
|
+
gmtModified?: string;
|
|
53386
|
+
/**
|
|
53387
|
+
* @example
|
|
53388
|
+
* None
|
|
53389
|
+
*/
|
|
53390
|
+
replicationInfo?: string;
|
|
53391
|
+
/**
|
|
53392
|
+
* @example
|
|
53393
|
+
* finish
|
|
53394
|
+
*/
|
|
53395
|
+
replicationState?: string;
|
|
53396
|
+
/**
|
|
53397
|
+
* @example
|
|
53398
|
+
* testdbuser
|
|
53399
|
+
*/
|
|
53400
|
+
replicatorAccount?: string;
|
|
53401
|
+
/**
|
|
53402
|
+
* @example
|
|
53403
|
+
* testpassword
|
|
53404
|
+
*/
|
|
53405
|
+
replicatorPassword?: string;
|
|
53406
|
+
/**
|
|
53407
|
+
* @example
|
|
53408
|
+
* pgm-****.pg.rds.aliyuncs.com
|
|
53409
|
+
*/
|
|
53410
|
+
sourceAddress?: string;
|
|
53411
|
+
/**
|
|
53412
|
+
* @example
|
|
53413
|
+
* aliyunRDS
|
|
53414
|
+
*/
|
|
53415
|
+
sourceCategory?: string;
|
|
53416
|
+
/**
|
|
53417
|
+
* @example
|
|
53418
|
+
* 5432
|
|
53419
|
+
*/
|
|
53420
|
+
sourcePort?: number;
|
|
53421
|
+
/**
|
|
53422
|
+
* @example
|
|
53423
|
+
* pgm-bp1l4dutw453****
|
|
53424
|
+
*/
|
|
53425
|
+
targetInstanceId?: string;
|
|
53426
|
+
/**
|
|
53427
|
+
* @example
|
|
53428
|
+
* 8413252
|
|
53429
|
+
*/
|
|
53430
|
+
taskId?: number;
|
|
53431
|
+
/**
|
|
53432
|
+
* @example
|
|
53433
|
+
* test01
|
|
53434
|
+
*/
|
|
53435
|
+
taskName?: string;
|
|
53436
|
+
/**
|
|
53437
|
+
* @example
|
|
53438
|
+
* increment
|
|
53439
|
+
*/
|
|
53440
|
+
taskStage?: string;
|
|
53441
|
+
/**
|
|
53442
|
+
* @example
|
|
53443
|
+
* success
|
|
53444
|
+
*/
|
|
53445
|
+
taskStatus?: string;
|
|
53446
|
+
/**
|
|
53447
|
+
* @example
|
|
53448
|
+
* create
|
|
53449
|
+
*/
|
|
53450
|
+
taskType?: string;
|
|
53451
|
+
static names(): {
|
|
53452
|
+
[key: string]: string;
|
|
53453
|
+
};
|
|
53454
|
+
static types(): {
|
|
53455
|
+
[key: string]: any;
|
|
53456
|
+
};
|
|
53457
|
+
constructor(map?: {
|
|
53458
|
+
[key: string]: any;
|
|
53459
|
+
});
|
|
53460
|
+
}
|
|
51765
53461
|
export declare class DescribeResourceDetailsResponseBodyRdsEcsSecurityGroupRel extends $tea.Model {
|
|
51766
53462
|
/**
|
|
51767
53463
|
* @remarks
|
|
@@ -54416,6 +56112,32 @@ export declare class ModifyPGHbaConfigRequestHbaItem extends $tea.Model {
|
|
|
54416
56112
|
[key: string]: any;
|
|
54417
56113
|
});
|
|
54418
56114
|
}
|
|
56115
|
+
export declare class ModifyRCInstanceChargeTypeResponseBodyFeeOfInstancesFeeOfInstance extends $tea.Model {
|
|
56116
|
+
currency?: string;
|
|
56117
|
+
fee?: string;
|
|
56118
|
+
instanceId?: string;
|
|
56119
|
+
static names(): {
|
|
56120
|
+
[key: string]: string;
|
|
56121
|
+
};
|
|
56122
|
+
static types(): {
|
|
56123
|
+
[key: string]: any;
|
|
56124
|
+
};
|
|
56125
|
+
constructor(map?: {
|
|
56126
|
+
[key: string]: any;
|
|
56127
|
+
});
|
|
56128
|
+
}
|
|
56129
|
+
export declare class ModifyRCInstanceChargeTypeResponseBodyFeeOfInstances extends $tea.Model {
|
|
56130
|
+
feeOfInstance?: ModifyRCInstanceChargeTypeResponseBodyFeeOfInstancesFeeOfInstance[];
|
|
56131
|
+
static names(): {
|
|
56132
|
+
[key: string]: string;
|
|
56133
|
+
};
|
|
56134
|
+
static types(): {
|
|
56135
|
+
[key: string]: any;
|
|
56136
|
+
};
|
|
56137
|
+
constructor(map?: {
|
|
56138
|
+
[key: string]: any;
|
|
56139
|
+
});
|
|
56140
|
+
}
|
|
54419
56141
|
export declare class ModifySecurityGroupConfigurationResponseBodyItemsEcsSecurityGroupRelation extends $tea.Model {
|
|
54420
56142
|
/**
|
|
54421
56143
|
* @remarks
|
|
@@ -54736,6 +56458,59 @@ export declare class RemoveTagsFromResourceRequestTag extends $tea.Model {
|
|
|
54736
56458
|
[key: string]: any;
|
|
54737
56459
|
});
|
|
54738
56460
|
}
|
|
56461
|
+
export declare class RunRCInstancesRequestDataDisk extends $tea.Model {
|
|
56462
|
+
category?: string;
|
|
56463
|
+
deleteWithInstance?: boolean;
|
|
56464
|
+
encrypted?: string;
|
|
56465
|
+
performanceLevel?: string;
|
|
56466
|
+
size?: number;
|
|
56467
|
+
static names(): {
|
|
56468
|
+
[key: string]: string;
|
|
56469
|
+
};
|
|
56470
|
+
static types(): {
|
|
56471
|
+
[key: string]: any;
|
|
56472
|
+
};
|
|
56473
|
+
constructor(map?: {
|
|
56474
|
+
[key: string]: any;
|
|
56475
|
+
});
|
|
56476
|
+
}
|
|
56477
|
+
export declare class RunRCInstancesRequestSystemDisk extends $tea.Model {
|
|
56478
|
+
category?: string;
|
|
56479
|
+
size?: string;
|
|
56480
|
+
static names(): {
|
|
56481
|
+
[key: string]: string;
|
|
56482
|
+
};
|
|
56483
|
+
static types(): {
|
|
56484
|
+
[key: string]: any;
|
|
56485
|
+
};
|
|
56486
|
+
constructor(map?: {
|
|
56487
|
+
[key: string]: any;
|
|
56488
|
+
});
|
|
56489
|
+
}
|
|
56490
|
+
export declare class RunRCInstancesResponseBodyInstanceIdSets extends $tea.Model {
|
|
56491
|
+
instanceIdSet?: string[];
|
|
56492
|
+
static names(): {
|
|
56493
|
+
[key: string]: string;
|
|
56494
|
+
};
|
|
56495
|
+
static types(): {
|
|
56496
|
+
[key: string]: any;
|
|
56497
|
+
};
|
|
56498
|
+
constructor(map?: {
|
|
56499
|
+
[key: string]: any;
|
|
56500
|
+
});
|
|
56501
|
+
}
|
|
56502
|
+
export declare class SyncRCKeyPairResponseBodyData extends $tea.Model {
|
|
56503
|
+
isSyncInfo?: boolean;
|
|
56504
|
+
static names(): {
|
|
56505
|
+
[key: string]: string;
|
|
56506
|
+
};
|
|
56507
|
+
static types(): {
|
|
56508
|
+
[key: string]: any;
|
|
56509
|
+
};
|
|
56510
|
+
constructor(map?: {
|
|
56511
|
+
[key: string]: any;
|
|
56512
|
+
});
|
|
56513
|
+
}
|
|
54739
56514
|
export declare class TagResourcesRequestTag extends $tea.Model {
|
|
54740
56515
|
/**
|
|
54741
56516
|
* @remarks
|
|
@@ -56055,6 +57830,21 @@ export default class Client extends OpenApi {
|
|
|
56055
57830
|
* @returns CreatePostgresExtensionsResponse
|
|
56056
57831
|
*/
|
|
56057
57832
|
createPostgresExtensions(request: CreatePostgresExtensionsRequest): Promise<CreatePostgresExtensionsResponse>;
|
|
57833
|
+
/**
|
|
57834
|
+
* 创建RDS CUSTOM部署集
|
|
57835
|
+
*
|
|
57836
|
+
* @param request - CreateRCDeploymentSetRequest
|
|
57837
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
57838
|
+
* @returns CreateRCDeploymentSetResponse
|
|
57839
|
+
*/
|
|
57840
|
+
createRCDeploymentSetWithOptions(request: CreateRCDeploymentSetRequest, runtime: $Util.RuntimeOptions): Promise<CreateRCDeploymentSetResponse>;
|
|
57841
|
+
/**
|
|
57842
|
+
* 创建RDS CUSTOM部署集
|
|
57843
|
+
*
|
|
57844
|
+
* @param request - CreateRCDeploymentSetRequest
|
|
57845
|
+
* @returns CreateRCDeploymentSetResponse
|
|
57846
|
+
*/
|
|
57847
|
+
createRCDeploymentSet(request: CreateRCDeploymentSetRequest): Promise<CreateRCDeploymentSetResponse>;
|
|
56058
57848
|
/**
|
|
56059
57849
|
* Creates a read-only instance.
|
|
56060
57850
|
*
|
|
@@ -56092,6 +57882,21 @@ export default class Client extends OpenApi {
|
|
|
56092
57882
|
* @returns CreateReadOnlyDBInstanceResponse
|
|
56093
57883
|
*/
|
|
56094
57884
|
createReadOnlyDBInstance(request: CreateReadOnlyDBInstanceRequest): Promise<CreateReadOnlyDBInstanceResponse>;
|
|
57885
|
+
/**
|
|
57886
|
+
* 创建复制链路
|
|
57887
|
+
*
|
|
57888
|
+
* @param request - CreateReplicationLinkRequest
|
|
57889
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
57890
|
+
* @returns CreateReplicationLinkResponse
|
|
57891
|
+
*/
|
|
57892
|
+
createReplicationLinkWithOptions(request: CreateReplicationLinkRequest, runtime: $Util.RuntimeOptions): Promise<CreateReplicationLinkResponse>;
|
|
57893
|
+
/**
|
|
57894
|
+
* 创建复制链路
|
|
57895
|
+
*
|
|
57896
|
+
* @param request - CreateReplicationLinkRequest
|
|
57897
|
+
* @returns CreateReplicationLinkResponse
|
|
57898
|
+
*/
|
|
57899
|
+
createReplicationLink(request: CreateReplicationLinkRequest): Promise<CreateReplicationLinkResponse>;
|
|
56095
57900
|
/**
|
|
56096
57901
|
* Creates a credential for a user who uses the Data API feature.
|
|
56097
57902
|
*
|
|
@@ -56651,6 +58456,66 @@ export default class Client extends OpenApi {
|
|
|
56651
58456
|
* @returns DeletePostgresExtensionsResponse
|
|
56652
58457
|
*/
|
|
56653
58458
|
deletePostgresExtensions(request: DeletePostgresExtensionsRequest): Promise<DeletePostgresExtensionsResponse>;
|
|
58459
|
+
/**
|
|
58460
|
+
* 删除RDS CUSTOM部署集
|
|
58461
|
+
*
|
|
58462
|
+
* @param request - DeleteRCDeploymentSetRequest
|
|
58463
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
58464
|
+
* @returns DeleteRCDeploymentSetResponse
|
|
58465
|
+
*/
|
|
58466
|
+
deleteRCDeploymentSetWithOptions(request: DeleteRCDeploymentSetRequest, runtime: $Util.RuntimeOptions): Promise<DeleteRCDeploymentSetResponse>;
|
|
58467
|
+
/**
|
|
58468
|
+
* 删除RDS CUSTOM部署集
|
|
58469
|
+
*
|
|
58470
|
+
* @param request - DeleteRCDeploymentSetRequest
|
|
58471
|
+
* @returns DeleteRCDeploymentSetResponse
|
|
58472
|
+
*/
|
|
58473
|
+
deleteRCDeploymentSet(request: DeleteRCDeploymentSetRequest): Promise<DeleteRCDeploymentSetResponse>;
|
|
58474
|
+
/**
|
|
58475
|
+
* 删除RDS用户专属主机实例
|
|
58476
|
+
*
|
|
58477
|
+
* @param request - DeleteRCInstanceRequest
|
|
58478
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
58479
|
+
* @returns DeleteRCInstanceResponse
|
|
58480
|
+
*/
|
|
58481
|
+
deleteRCInstanceWithOptions(request: DeleteRCInstanceRequest, runtime: $Util.RuntimeOptions): Promise<DeleteRCInstanceResponse>;
|
|
58482
|
+
/**
|
|
58483
|
+
* 删除RDS用户专属主机实例
|
|
58484
|
+
*
|
|
58485
|
+
* @param request - DeleteRCInstanceRequest
|
|
58486
|
+
* @returns DeleteRCInstanceResponse
|
|
58487
|
+
*/
|
|
58488
|
+
deleteRCInstance(request: DeleteRCInstanceRequest): Promise<DeleteRCInstanceResponse>;
|
|
58489
|
+
/**
|
|
58490
|
+
* 批量删除RDS用户专属主机实例
|
|
58491
|
+
*
|
|
58492
|
+
* @param tmpReq - DeleteRCInstancesRequest
|
|
58493
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
58494
|
+
* @returns DeleteRCInstancesResponse
|
|
58495
|
+
*/
|
|
58496
|
+
deleteRCInstancesWithOptions(tmpReq: DeleteRCInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteRCInstancesResponse>;
|
|
58497
|
+
/**
|
|
58498
|
+
* 批量删除RDS用户专属主机实例
|
|
58499
|
+
*
|
|
58500
|
+
* @param request - DeleteRCInstancesRequest
|
|
58501
|
+
* @returns DeleteRCInstancesResponse
|
|
58502
|
+
*/
|
|
58503
|
+
deleteRCInstances(request: DeleteRCInstancesRequest): Promise<DeleteRCInstancesResponse>;
|
|
58504
|
+
/**
|
|
58505
|
+
* 删除复制链路
|
|
58506
|
+
*
|
|
58507
|
+
* @param request - DeleteReplicationLinkRequest
|
|
58508
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
58509
|
+
* @returns DeleteReplicationLinkResponse
|
|
58510
|
+
*/
|
|
58511
|
+
deleteReplicationLinkWithOptions(request: DeleteReplicationLinkRequest, runtime: $Util.RuntimeOptions): Promise<DeleteReplicationLinkResponse>;
|
|
58512
|
+
/**
|
|
58513
|
+
* 删除复制链路
|
|
58514
|
+
*
|
|
58515
|
+
* @param request - DeleteReplicationLinkRequest
|
|
58516
|
+
* @returns DeleteReplicationLinkResponse
|
|
58517
|
+
*/
|
|
58518
|
+
deleteReplicationLink(request: DeleteReplicationLinkRequest): Promise<DeleteReplicationLinkResponse>;
|
|
56654
58519
|
/**
|
|
56655
58520
|
* Deletes the credential of a user who uses the Data API feature.
|
|
56656
58521
|
*
|
|
@@ -59343,6 +61208,81 @@ export default class Client extends OpenApi {
|
|
|
59343
61208
|
* @returns DescribeQuickSaleConfigResponse
|
|
59344
61209
|
*/
|
|
59345
61210
|
describeQuickSaleConfig(request: DescribeQuickSaleConfigRequest): Promise<DescribeQuickSaleConfigResponse>;
|
|
61211
|
+
/**
|
|
61212
|
+
* 描述RDS CUSTOM部署集
|
|
61213
|
+
*
|
|
61214
|
+
* @param request - DescribeRCDeploymentSetsRequest
|
|
61215
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
61216
|
+
* @returns DescribeRCDeploymentSetsResponse
|
|
61217
|
+
*/
|
|
61218
|
+
describeRCDeploymentSetsWithOptions(request: DescribeRCDeploymentSetsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRCDeploymentSetsResponse>;
|
|
61219
|
+
/**
|
|
61220
|
+
* 描述RDS CUSTOM部署集
|
|
61221
|
+
*
|
|
61222
|
+
* @param request - DescribeRCDeploymentSetsRequest
|
|
61223
|
+
* @returns DescribeRCDeploymentSetsResponse
|
|
61224
|
+
*/
|
|
61225
|
+
describeRCDeploymentSets(request: DescribeRCDeploymentSetsRequest): Promise<DescribeRCDeploymentSetsResponse>;
|
|
61226
|
+
/**
|
|
61227
|
+
* 查询镜像资源
|
|
61228
|
+
*
|
|
61229
|
+
* @param request - DescribeRCImageListRequest
|
|
61230
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
61231
|
+
* @returns DescribeRCImageListResponse
|
|
61232
|
+
*/
|
|
61233
|
+
describeRCImageListWithOptions(request: DescribeRCImageListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRCImageListResponse>;
|
|
61234
|
+
/**
|
|
61235
|
+
* 查询镜像资源
|
|
61236
|
+
*
|
|
61237
|
+
* @param request - DescribeRCImageListRequest
|
|
61238
|
+
* @returns DescribeRCImageListResponse
|
|
61239
|
+
*/
|
|
61240
|
+
describeRCImageList(request: DescribeRCImageListRequest): Promise<DescribeRCImageListResponse>;
|
|
61241
|
+
/**
|
|
61242
|
+
* 查询RDS用户专属主机实例
|
|
61243
|
+
*
|
|
61244
|
+
* @param request - DescribeRCInstanceAttributeRequest
|
|
61245
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
61246
|
+
* @returns DescribeRCInstanceAttributeResponse
|
|
61247
|
+
*/
|
|
61248
|
+
describeRCInstanceAttributeWithOptions(request: DescribeRCInstanceAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRCInstanceAttributeResponse>;
|
|
61249
|
+
/**
|
|
61250
|
+
* 查询RDS用户专属主机实例
|
|
61251
|
+
*
|
|
61252
|
+
* @param request - DescribeRCInstanceAttributeRequest
|
|
61253
|
+
* @returns DescribeRCInstanceAttributeResponse
|
|
61254
|
+
*/
|
|
61255
|
+
describeRCInstanceAttribute(request: DescribeRCInstanceAttributeRequest): Promise<DescribeRCInstanceAttributeResponse>;
|
|
61256
|
+
/**
|
|
61257
|
+
* 查询RC实例列表
|
|
61258
|
+
*
|
|
61259
|
+
* @param request - DescribeRCInstancesRequest
|
|
61260
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
61261
|
+
* @returns DescribeRCInstancesResponse
|
|
61262
|
+
*/
|
|
61263
|
+
describeRCInstancesWithOptions(request: DescribeRCInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRCInstancesResponse>;
|
|
61264
|
+
/**
|
|
61265
|
+
* 查询RC实例列表
|
|
61266
|
+
*
|
|
61267
|
+
* @param request - DescribeRCInstancesRequest
|
|
61268
|
+
* @returns DescribeRCInstancesResponse
|
|
61269
|
+
*/
|
|
61270
|
+
describeRCInstances(request: DescribeRCInstancesRequest): Promise<DescribeRCInstancesResponse>;
|
|
61271
|
+
/**
|
|
61272
|
+
* 查询指定云产品的指定监控项的监控数据
|
|
61273
|
+
*
|
|
61274
|
+
* @param request - DescribeRCMetricListRequest
|
|
61275
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
61276
|
+
* @returns DescribeRCMetricListResponse
|
|
61277
|
+
*/
|
|
61278
|
+
describeRCMetricListWithOptions(request: DescribeRCMetricListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRCMetricListResponse>;
|
|
61279
|
+
/**
|
|
61280
|
+
* 查询指定云产品的指定监控项的监控数据
|
|
61281
|
+
*
|
|
61282
|
+
* @param request - DescribeRCMetricListRequest
|
|
61283
|
+
* @returns DescribeRCMetricListResponse
|
|
61284
|
+
*/
|
|
61285
|
+
describeRCMetricList(request: DescribeRCMetricListRequest): Promise<DescribeRCMetricListResponse>;
|
|
59346
61286
|
/**
|
|
59347
61287
|
* This operation is deprecated.
|
|
59348
61288
|
*
|
|
@@ -59474,6 +61414,21 @@ export default class Client extends OpenApi {
|
|
|
59474
61414
|
* @returns DescribeRenewalPriceResponse
|
|
59475
61415
|
*/
|
|
59476
61416
|
describeRenewalPrice(request: DescribeRenewalPriceRequest): Promise<DescribeRenewalPriceResponse>;
|
|
61417
|
+
/**
|
|
61418
|
+
* 查询复制链路操作日志
|
|
61419
|
+
*
|
|
61420
|
+
* @param request - DescribeReplicationLinkLogsRequest
|
|
61421
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
61422
|
+
* @returns DescribeReplicationLinkLogsResponse
|
|
61423
|
+
*/
|
|
61424
|
+
describeReplicationLinkLogsWithOptions(request: DescribeReplicationLinkLogsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeReplicationLinkLogsResponse>;
|
|
61425
|
+
/**
|
|
61426
|
+
* 查询复制链路操作日志
|
|
61427
|
+
*
|
|
61428
|
+
* @param request - DescribeReplicationLinkLogsRequest
|
|
61429
|
+
* @returns DescribeReplicationLinkLogsResponse
|
|
61430
|
+
*/
|
|
61431
|
+
describeReplicationLinkLogs(request: DescribeReplicationLinkLogsRequest): Promise<DescribeReplicationLinkLogsResponse>;
|
|
59477
61432
|
/**
|
|
59478
61433
|
* 概览页资源详情
|
|
59479
61434
|
*
|
|
@@ -61981,6 +63936,36 @@ export default class Client extends OpenApi {
|
|
|
61981
63936
|
* @returns ModifyParameterGroupResponse
|
|
61982
63937
|
*/
|
|
61983
63938
|
modifyParameterGroup(request: ModifyParameterGroupRequest): Promise<ModifyParameterGroupResponse>;
|
|
63939
|
+
/**
|
|
63940
|
+
* ModifyRCInstance
|
|
63941
|
+
*
|
|
63942
|
+
* @param request - ModifyRCInstanceRequest
|
|
63943
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
63944
|
+
* @returns ModifyRCInstanceResponse
|
|
63945
|
+
*/
|
|
63946
|
+
modifyRCInstanceWithOptions(request: ModifyRCInstanceRequest, runtime: $Util.RuntimeOptions): Promise<ModifyRCInstanceResponse>;
|
|
63947
|
+
/**
|
|
63948
|
+
* ModifyRCInstance
|
|
63949
|
+
*
|
|
63950
|
+
* @param request - ModifyRCInstanceRequest
|
|
63951
|
+
* @returns ModifyRCInstanceResponse
|
|
63952
|
+
*/
|
|
63953
|
+
modifyRCInstance(request: ModifyRCInstanceRequest): Promise<ModifyRCInstanceResponse>;
|
|
63954
|
+
/**
|
|
63955
|
+
* 修改RDS用户专属主机实例付费类型
|
|
63956
|
+
*
|
|
63957
|
+
* @param request - ModifyRCInstanceChargeTypeRequest
|
|
63958
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
63959
|
+
* @returns ModifyRCInstanceChargeTypeResponse
|
|
63960
|
+
*/
|
|
63961
|
+
modifyRCInstanceChargeTypeWithOptions(request: ModifyRCInstanceChargeTypeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyRCInstanceChargeTypeResponse>;
|
|
63962
|
+
/**
|
|
63963
|
+
* 修改RDS用户专属主机实例付费类型
|
|
63964
|
+
*
|
|
63965
|
+
* @param request - ModifyRCInstanceChargeTypeRequest
|
|
63966
|
+
* @returns ModifyRCInstanceChargeTypeResponse
|
|
63967
|
+
*/
|
|
63968
|
+
modifyRCInstanceChargeType(request: ModifyRCInstanceChargeTypeRequest): Promise<ModifyRCInstanceChargeTypeResponse>;
|
|
61984
63969
|
/**
|
|
61985
63970
|
* Modifies the latency threshold of the read/write splitting link and the read weights of a primary instance and its read-only instances.
|
|
61986
63971
|
*
|
|
@@ -62376,6 +64361,21 @@ export default class Client extends OpenApi {
|
|
|
62376
64361
|
* @returns QueryRecommendByCodeResponse
|
|
62377
64362
|
*/
|
|
62378
64363
|
queryRecommendByCode(request: QueryRecommendByCodeRequest): Promise<QueryRecommendByCodeResponse>;
|
|
64364
|
+
/**
|
|
64365
|
+
* 重启RDS用户专属主机实例
|
|
64366
|
+
*
|
|
64367
|
+
* @param request - RebootRCInstanceRequest
|
|
64368
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
64369
|
+
* @returns RebootRCInstanceResponse
|
|
64370
|
+
*/
|
|
64371
|
+
rebootRCInstanceWithOptions(request: RebootRCInstanceRequest, runtime: $Util.RuntimeOptions): Promise<RebootRCInstanceResponse>;
|
|
64372
|
+
/**
|
|
64373
|
+
* 重启RDS用户专属主机实例
|
|
64374
|
+
*
|
|
64375
|
+
* @param request - RebootRCInstanceRequest
|
|
64376
|
+
* @returns RebootRCInstanceResponse
|
|
64377
|
+
*/
|
|
64378
|
+
rebootRCInstance(request: RebootRCInstanceRequest): Promise<RebootRCInstanceResponse>;
|
|
62379
64379
|
/**
|
|
62380
64380
|
* Rebuilds the secondary instance of a primary instance in a dedicated cluster.
|
|
62381
64381
|
*
|
|
@@ -62397,6 +64397,29 @@ export default class Client extends OpenApi {
|
|
|
62397
64397
|
* @returns RebuildDBInstanceResponse
|
|
62398
64398
|
*/
|
|
62399
64399
|
rebuildDBInstance(request: RebuildDBInstanceRequest): Promise<RebuildDBInstanceResponse>;
|
|
64400
|
+
/**
|
|
64401
|
+
* Re-creates a data synchronization link for a disaster recovery ApsaraDB RDS instance.
|
|
64402
|
+
*
|
|
64403
|
+
* @remarks
|
|
64404
|
+
* ### [](#)Supported database engine
|
|
64405
|
+
* * PostgreSQL
|
|
64406
|
+
*
|
|
64407
|
+
* @param request - RebuildReplicationLinkRequest
|
|
64408
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
64409
|
+
* @returns RebuildReplicationLinkResponse
|
|
64410
|
+
*/
|
|
64411
|
+
rebuildReplicationLinkWithOptions(request: RebuildReplicationLinkRequest, runtime: $Util.RuntimeOptions): Promise<RebuildReplicationLinkResponse>;
|
|
64412
|
+
/**
|
|
64413
|
+
* Re-creates a data synchronization link for a disaster recovery ApsaraDB RDS instance.
|
|
64414
|
+
*
|
|
64415
|
+
* @remarks
|
|
64416
|
+
* ### [](#)Supported database engine
|
|
64417
|
+
* * PostgreSQL
|
|
64418
|
+
*
|
|
64419
|
+
* @param request - RebuildReplicationLinkRequest
|
|
64420
|
+
* @returns RebuildReplicationLinkResponse
|
|
64421
|
+
*/
|
|
64422
|
+
rebuildReplicationLink(request: RebuildReplicationLinkRequest): Promise<RebuildReplicationLinkResponse>;
|
|
62400
64423
|
/**
|
|
62401
64424
|
* Switches a primary instance to a disaster recovery instance or a disaster recovery instance to a primary instance.
|
|
62402
64425
|
*
|
|
@@ -62722,6 +64745,21 @@ export default class Client extends OpenApi {
|
|
|
62722
64745
|
* @returns ResetAccountPasswordResponse
|
|
62723
64746
|
*/
|
|
62724
64747
|
resetAccountPassword(request: ResetAccountPasswordRequest): Promise<ResetAccountPasswordResponse>;
|
|
64748
|
+
/**
|
|
64749
|
+
* ResizeRCInstanceDisk
|
|
64750
|
+
*
|
|
64751
|
+
* @param request - ResizeRCInstanceDiskRequest
|
|
64752
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
64753
|
+
* @returns ResizeRCInstanceDiskResponse
|
|
64754
|
+
*/
|
|
64755
|
+
resizeRCInstanceDiskWithOptions(request: ResizeRCInstanceDiskRequest, runtime: $Util.RuntimeOptions): Promise<ResizeRCInstanceDiskResponse>;
|
|
64756
|
+
/**
|
|
64757
|
+
* ResizeRCInstanceDisk
|
|
64758
|
+
*
|
|
64759
|
+
* @param request - ResizeRCInstanceDiskRequest
|
|
64760
|
+
* @returns ResizeRCInstanceDiskResponse
|
|
64761
|
+
*/
|
|
64762
|
+
resizeRCInstanceDisk(request: ResizeRCInstanceDiskRequest): Promise<ResizeRCInstanceDiskResponse>;
|
|
62725
64763
|
/**
|
|
62726
64764
|
* Restarts an instance.
|
|
62727
64765
|
*
|
|
@@ -62901,6 +64939,21 @@ export default class Client extends OpenApi {
|
|
|
62901
64939
|
* @returns RevokeOperatorPermissionResponse
|
|
62902
64940
|
*/
|
|
62903
64941
|
revokeOperatorPermission(request: RevokeOperatorPermissionRequest): Promise<RevokeOperatorPermissionResponse>;
|
|
64942
|
+
/**
|
|
64943
|
+
* 创建RDS用户专属主机实例
|
|
64944
|
+
*
|
|
64945
|
+
* @param tmpReq - RunRCInstancesRequest
|
|
64946
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
64947
|
+
* @returns RunRCInstancesResponse
|
|
64948
|
+
*/
|
|
64949
|
+
runRCInstancesWithOptions(tmpReq: RunRCInstancesRequest, runtime: $Util.RuntimeOptions): Promise<RunRCInstancesResponse>;
|
|
64950
|
+
/**
|
|
64951
|
+
* 创建RDS用户专属主机实例
|
|
64952
|
+
*
|
|
64953
|
+
* @param request - RunRCInstancesRequest
|
|
64954
|
+
* @returns RunRCInstancesResponse
|
|
64955
|
+
*/
|
|
64956
|
+
runRCInstances(request: RunRCInstancesRequest): Promise<RunRCInstancesResponse>;
|
|
62904
64957
|
/**
|
|
62905
64958
|
* Resumes an instance.
|
|
62906
64959
|
*
|
|
@@ -62938,6 +64991,21 @@ export default class Client extends OpenApi {
|
|
|
62938
64991
|
* @returns StartDBInstanceResponse
|
|
62939
64992
|
*/
|
|
62940
64993
|
startDBInstance(request: StartDBInstanceRequest): Promise<StartDBInstanceResponse>;
|
|
64994
|
+
/**
|
|
64995
|
+
* 启动RDS用户专属主机实例
|
|
64996
|
+
*
|
|
64997
|
+
* @param request - StartRCInstanceRequest
|
|
64998
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
64999
|
+
* @returns StartRCInstanceResponse
|
|
65000
|
+
*/
|
|
65001
|
+
startRCInstanceWithOptions(request: StartRCInstanceRequest, runtime: $Util.RuntimeOptions): Promise<StartRCInstanceResponse>;
|
|
65002
|
+
/**
|
|
65003
|
+
* 启动RDS用户专属主机实例
|
|
65004
|
+
*
|
|
65005
|
+
* @param request - StartRCInstanceRequest
|
|
65006
|
+
* @returns StartRCInstanceResponse
|
|
65007
|
+
*/
|
|
65008
|
+
startRCInstance(request: StartRCInstanceRequest): Promise<StartRCInstanceResponse>;
|
|
62941
65009
|
/**
|
|
62942
65010
|
* Suspends an ApsaraDB RDS instance.
|
|
62943
65011
|
*
|
|
@@ -62975,6 +65043,21 @@ export default class Client extends OpenApi {
|
|
|
62975
65043
|
* @returns StopDBInstanceResponse
|
|
62976
65044
|
*/
|
|
62977
65045
|
stopDBInstance(request: StopDBInstanceRequest): Promise<StopDBInstanceResponse>;
|
|
65046
|
+
/**
|
|
65047
|
+
* 停止RDS用户专属主机实例
|
|
65048
|
+
*
|
|
65049
|
+
* @param request - StopRCInstanceRequest
|
|
65050
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
65051
|
+
* @returns StopRCInstanceResponse
|
|
65052
|
+
*/
|
|
65053
|
+
stopRCInstanceWithOptions(request: StopRCInstanceRequest, runtime: $Util.RuntimeOptions): Promise<StopRCInstanceResponse>;
|
|
65054
|
+
/**
|
|
65055
|
+
* 停止RDS用户专属主机实例
|
|
65056
|
+
*
|
|
65057
|
+
* @param request - StopRCInstanceRequest
|
|
65058
|
+
* @returns StopRCInstanceResponse
|
|
65059
|
+
*/
|
|
65060
|
+
stopRCInstance(request: StopRCInstanceRequest): Promise<StopRCInstanceResponse>;
|
|
62978
65061
|
/**
|
|
62979
65062
|
* Switches workloads between primary and secondary ApsaraDB RDS instances.
|
|
62980
65063
|
*
|
|
@@ -63092,6 +65175,21 @@ export default class Client extends OpenApi {
|
|
|
63092
65175
|
* @returns SwitchDBInstanceVpcResponse
|
|
63093
65176
|
*/
|
|
63094
65177
|
switchDBInstanceVpc(request: SwitchDBInstanceVpcRequest): Promise<SwitchDBInstanceVpcResponse>;
|
|
65178
|
+
/**
|
|
65179
|
+
* 同步密钥对
|
|
65180
|
+
*
|
|
65181
|
+
* @param request - SyncRCKeyPairRequest
|
|
65182
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
65183
|
+
* @returns SyncRCKeyPairResponse
|
|
65184
|
+
*/
|
|
65185
|
+
syncRCKeyPairWithOptions(request: SyncRCKeyPairRequest, runtime: $Util.RuntimeOptions): Promise<SyncRCKeyPairResponse>;
|
|
65186
|
+
/**
|
|
65187
|
+
* 同步密钥对
|
|
65188
|
+
*
|
|
65189
|
+
* @param request - SyncRCKeyPairRequest
|
|
65190
|
+
* @returns SyncRCKeyPairResponse
|
|
65191
|
+
*/
|
|
65192
|
+
syncRCKeyPair(request: SyncRCKeyPairRequest): Promise<SyncRCKeyPairResponse>;
|
|
63095
65193
|
/**
|
|
63096
65194
|
* Creates and adds tags to one or more instances.
|
|
63097
65195
|
*
|