tencentcloud-sdk-nodejs-clb 4.1.88 → 4.1.90
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
@@ -3736,7 +3736,7 @@ export interface CreateTargetGroupRequest {
|
|
3736
3736
|
*/
|
3737
3737
|
Type?: string;
|
3738
3738
|
/**
|
3739
|
-
* 目标组后端转发协议。v2新版目标组该项必填。目前支持
|
3739
|
+
* 目标组后端转发协议。v2新版目标组该项必填。目前支持TCP、UDP、HTTP、HTTPS、GRPC。
|
3740
3740
|
*/
|
3741
3741
|
Protocol?: string;
|
3742
3742
|
/**
|
@@ -3753,7 +3753,7 @@ export interface CreateTargetGroupRequest {
|
|
3753
3753
|
*/
|
3754
3754
|
Weight?: number;
|
3755
3755
|
/**
|
3756
|
-
*
|
3756
|
+
* 全监听目标组标识,true表示是全监听目标组,false表示不是全监听目标组。仅V2新版类型目标组支持该参数。
|
3757
3757
|
*/
|
3758
3758
|
FullListenSwitch?: boolean;
|
3759
3759
|
/**
|
@@ -3761,7 +3761,7 @@ export interface CreateTargetGroupRequest {
|
|
3761
3761
|
*/
|
3762
3762
|
KeepaliveEnable?: boolean;
|
3763
3763
|
/**
|
3764
|
-
* 会话保持时间,单位:秒。可选值:30~3600,默认 0
|
3764
|
+
* 会话保持时间,单位:秒。可选值:30~3600,默认 0,表示不开启。仅V2新版且后端转发协议为HTTP/HTTPS/GRPC目标组支持该参数。
|
3765
3765
|
*/
|
3766
3766
|
SessionExpireTime?: number;
|
3767
3767
|
}
|
@@ -5603,13 +5603,12 @@ export interface TargetGroupInfo {
|
|
5603
5603
|
*/
|
5604
5604
|
AssociatedRule?: Array<AssociationItem>;
|
5605
5605
|
/**
|
5606
|
-
*
|
5607
|
-
|
5606
|
+
* 目标组后端转发协议, 仅v2新版目标组返回有效值。
|
5608
5607
|
注意:此字段可能返回 null,表示取不到有效值。
|
5609
5608
|
*/
|
5610
5609
|
Protocol?: string;
|
5611
5610
|
/**
|
5612
|
-
* 目标组类型,当前支持v1(旧版目标组), v2(新版目标组)
|
5611
|
+
* 目标组类型,当前支持v1(旧版目标组), v2(新版目标组)。默认为v1旧版目标组。
|
5613
5612
|
*/
|
5614
5613
|
TargetGroupType?: string;
|
5615
5614
|
/**
|
@@ -5626,12 +5625,21 @@ export interface TargetGroupInfo {
|
|
5626
5625
|
Tag?: Array<TagInfo>;
|
5627
5626
|
/**
|
5628
5627
|
* 默认权重。只有v2类型目标组返回该字段。当返回为NULL时, 表示未设置默认权重。
|
5628
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5629
5629
|
*/
|
5630
5630
|
Weight?: number;
|
5631
5631
|
/**
|
5632
|
-
*
|
5632
|
+
* 是否全监听目标组。
|
5633
5633
|
*/
|
5634
5634
|
FullListenSwitch?: boolean;
|
5635
|
+
/**
|
5636
|
+
* 是否开启长连接, 仅后端转发协议为HTTP/HTTPS/GRPC目标组返回有效值。
|
5637
|
+
*/
|
5638
|
+
KeepaliveEnable?: boolean;
|
5639
|
+
/**
|
5640
|
+
* 会话保持时间,仅后端转发协议为HTTP/HTTPS/GRPC目标组返回有效值。
|
5641
|
+
*/
|
5642
|
+
SessionExpireTime?: number;
|
5635
5643
|
}
|
5636
5644
|
/**
|
5637
5645
|
* DeleteListener返回参数结构体
|