tencentcloud-sdk-nodejs-cdb 4.1.187 → 4.1.193
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/package.json
CHANGED
|
@@ -5718,68 +5718,67 @@ export interface ModifyCdbProxyParamRequest {
|
|
|
5718
5718
|
*/
|
|
5719
5719
|
export interface RoGroup {
|
|
5720
5720
|
/**
|
|
5721
|
-
*
|
|
5721
|
+
* <p>只读组模式,可选值为:alone-系统自动分配只读组;allinone-新建只读组;join-使用现有只读组。</p>
|
|
5722
5722
|
*/
|
|
5723
5723
|
RoGroupMode: string;
|
|
5724
5724
|
/**
|
|
5725
|
-
*
|
|
5726
|
-
说明:若此数据结构在购买实例操作中被使用,则当只读组模式选择 join 时,此项为必填。
|
|
5725
|
+
* <p>只读组 ID。<br>说明:若此数据结构在购买实例操作中被使用,则当只读组模式选择 join 时,此项为必填。</p>
|
|
5727
5726
|
*/
|
|
5728
5727
|
RoGroupId?: string;
|
|
5729
5728
|
/**
|
|
5730
|
-
*
|
|
5729
|
+
* <p>只读组名称。</p>
|
|
5731
5730
|
*/
|
|
5732
5731
|
RoGroupName?: string;
|
|
5733
5732
|
/**
|
|
5734
|
-
*
|
|
5733
|
+
* <p>是否启用延迟超限剔除功能,启用该功能后,只读实例与主实例的延迟超过延迟阈值,只读实例将被隔离。可选值:1-启用;0-不启用。</p>
|
|
5735
5734
|
*/
|
|
5736
5735
|
RoOfflineDelay?: number;
|
|
5737
5736
|
/**
|
|
5738
|
-
*
|
|
5737
|
+
* <p>延迟阈值。单位:秒。值范围:1-10000,整数。</p>
|
|
5739
5738
|
*/
|
|
5740
5739
|
RoMaxDelayTime?: number;
|
|
5741
5740
|
/**
|
|
5742
|
-
*
|
|
5741
|
+
* <p>最少实例保留个数,若购买只读实例数量小于设置数量将不做剔除。</p>
|
|
5743
5742
|
*/
|
|
5744
5743
|
MinRoInGroup?: number;
|
|
5745
5744
|
/**
|
|
5746
|
-
*
|
|
5745
|
+
* <p>读写权重分配模式,可选值:system-系统自动分配;custom-自定义。</p>
|
|
5747
5746
|
*/
|
|
5748
5747
|
WeightMode?: string;
|
|
5749
5748
|
/**
|
|
5750
|
-
*
|
|
5749
|
+
* <p>该字段已经废弃,无意义。查看只读实例的权重,请查看 RoInstances 字段里的 Weight 值。</p>
|
|
5751
5750
|
*/
|
|
5752
5751
|
Weight?: number;
|
|
5753
5752
|
/**
|
|
5754
|
-
*
|
|
5753
|
+
* <p>只读组中的只读实例详情。</p>
|
|
5755
5754
|
*/
|
|
5756
5755
|
RoInstances?: Array<RoInstanceInfo>;
|
|
5757
5756
|
/**
|
|
5758
|
-
*
|
|
5757
|
+
* <p>只读组的内网 IP。</p>
|
|
5759
5758
|
*/
|
|
5760
5759
|
Vip?: string;
|
|
5761
5760
|
/**
|
|
5762
|
-
*
|
|
5761
|
+
* <p>只读组的内网端口号。</p>
|
|
5763
5762
|
*/
|
|
5764
5763
|
Vport?: number;
|
|
5765
5764
|
/**
|
|
5766
|
-
*
|
|
5765
|
+
* <p>私有网络 ID。</p>
|
|
5767
5766
|
*/
|
|
5768
5767
|
UniqVpcId?: string;
|
|
5769
5768
|
/**
|
|
5770
|
-
*
|
|
5769
|
+
* <p>子网 ID。</p>
|
|
5771
5770
|
*/
|
|
5772
5771
|
UniqSubnetId?: string;
|
|
5773
5772
|
/**
|
|
5774
|
-
*
|
|
5773
|
+
* <p>只读组所在的地域。</p>
|
|
5775
5774
|
*/
|
|
5776
5775
|
RoGroupRegion?: string;
|
|
5777
5776
|
/**
|
|
5778
|
-
*
|
|
5777
|
+
* <p>只读组所在的可用区。</p>
|
|
5779
5778
|
*/
|
|
5780
5779
|
RoGroupZone?: string;
|
|
5781
5780
|
/**
|
|
5782
|
-
*
|
|
5781
|
+
* <p>延迟复制时间。单位:秒。值范围:1-259200,整数。</p>
|
|
5783
5782
|
*/
|
|
5784
5783
|
DelayReplicationTime?: number;
|
|
5785
5784
|
}
|