tencentcloud-sdk-nodejs-clb 4.0.781 → 4.0.801
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/README.md +6 -0
- package/package.json +1 -1
- package/products.md +98 -97
- package/src/services/clb/v20180317/clb_client.ts +619 -605
- package/src/services/clb/v20180317/clb_models.ts +49 -21
- package/tencentcloud/services/clb/v20180317/clb_client.d.ts +245 -239
- package/tencentcloud/services/clb/v20180317/clb_client.js +349 -341
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +47 -21
@@ -413,6 +413,15 @@ export interface DisassociateTargetGroupsResponse {
|
|
413
413
|
*/
|
414
414
|
RequestId?: string;
|
415
415
|
}
|
416
|
+
/**
|
417
|
+
* SetLoadBalancerStartStatus返回参数结构体
|
418
|
+
*/
|
419
|
+
export interface SetLoadBalancerStartStatusResponse {
|
420
|
+
/**
|
421
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
422
|
+
*/
|
423
|
+
RequestId?: string;
|
424
|
+
}
|
416
425
|
/**
|
417
426
|
* SetLoadBalancerClsLog返回参数结构体
|
418
427
|
*/
|
@@ -3912,6 +3921,36 @@ export interface DescribeLoadBalancersDetailResponse {
|
|
3912
3921
|
*/
|
3913
3922
|
RequestId?: string;
|
3914
3923
|
}
|
3924
|
+
/**
|
3925
|
+
* 描述一个Target的健康信息
|
3926
|
+
*/
|
3927
|
+
export interface TargetHealth {
|
3928
|
+
/**
|
3929
|
+
* Target的内网IP
|
3930
|
+
*/
|
3931
|
+
IP: string;
|
3932
|
+
/**
|
3933
|
+
* Target绑定的端口
|
3934
|
+
*/
|
3935
|
+
Port: number;
|
3936
|
+
/**
|
3937
|
+
* 当前健康状态,true:健康,false:不健康(包括尚未开始探测、探测中、状态异常等几种状态)。只有处于健康状态(且权重大于0),负载均衡才会向其转发流量。
|
3938
|
+
*/
|
3939
|
+
HealthStatus: boolean;
|
3940
|
+
/**
|
3941
|
+
* Target的实例ID,如 ins-12345678
|
3942
|
+
*/
|
3943
|
+
TargetId: string;
|
3944
|
+
/**
|
3945
|
+
* 当前健康状态的详细信息。如:Alive、Dead、Unknown。Alive状态为健康,Dead状态为异常,Unknown状态包括尚未开始探测、探测中、状态未知。
|
3946
|
+
*/
|
3947
|
+
HealthStatusDetail: string;
|
3948
|
+
/**
|
3949
|
+
* (**该参数对象即将下线,不推荐使用,请使用HealthStatusDetail获取健康详情**) 当前健康状态的详细信息。如:Alive、Dead、Unknown。Alive状态为健康,Dead状态为异常,Unknown状态包括尚未开始探测、探测中、状态未知。
|
3950
|
+
* @deprecated
|
3951
|
+
*/
|
3952
|
+
HealthStatusDetial?: string;
|
3953
|
+
}
|
3915
3954
|
/**
|
3916
3955
|
* 负载均衡详细信息
|
3917
3956
|
*/
|
@@ -5182,34 +5221,21 @@ export interface DescribeClassicalLBListenersRequest {
|
|
5182
5221
|
Status?: number;
|
5183
5222
|
}
|
5184
5223
|
/**
|
5185
|
-
*
|
5224
|
+
* SetLoadBalancerStartStatus请求参数结构体
|
5186
5225
|
*/
|
5187
|
-
export interface
|
5226
|
+
export interface SetLoadBalancerStartStatusRequest {
|
5188
5227
|
/**
|
5189
|
-
*
|
5190
|
-
*/
|
5191
|
-
IP: string;
|
5192
|
-
/**
|
5193
|
-
* Target绑定的端口
|
5228
|
+
* 操作类型。Start:启动实例,Stop:停止实例。
|
5194
5229
|
*/
|
5195
|
-
|
5196
|
-
/**
|
5197
|
-
* 当前健康状态,true:健康,false:不健康(包括尚未开始探测、探测中、状态异常等几种状态)。只有处于健康状态(且权重大于0),负载均衡才会向其转发流量。
|
5198
|
-
*/
|
5199
|
-
HealthStatus: boolean;
|
5200
|
-
/**
|
5201
|
-
* Target的实例ID,如 ins-12345678
|
5202
|
-
*/
|
5203
|
-
TargetId: string;
|
5230
|
+
OperationType: string;
|
5204
5231
|
/**
|
5205
|
-
*
|
5232
|
+
* 负载均衡实例ID。
|
5206
5233
|
*/
|
5207
|
-
|
5234
|
+
LoadBalancerId: string;
|
5208
5235
|
/**
|
5209
|
-
*
|
5210
|
-
* @deprecated
|
5236
|
+
* 监听器ID。如果该字段为空,则表示操作负载均衡实例,如果不为空,则表示操作监听器。
|
5211
5237
|
*/
|
5212
|
-
|
5238
|
+
ListenerIds?: Array<string>;
|
5213
5239
|
}
|
5214
5240
|
/**
|
5215
5241
|
* 规则与目标组的关联关系
|