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
@@ -445,6 +445,16 @@ export interface DisassociateTargetGroupsResponse {
|
|
445
445
|
RequestId?: string
|
446
446
|
}
|
447
447
|
|
448
|
+
/**
|
449
|
+
* SetLoadBalancerStartStatus返回参数结构体
|
450
|
+
*/
|
451
|
+
export interface SetLoadBalancerStartStatusResponse {
|
452
|
+
/**
|
453
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
454
|
+
*/
|
455
|
+
RequestId?: string
|
456
|
+
}
|
457
|
+
|
448
458
|
/**
|
449
459
|
* SetLoadBalancerClsLog返回参数结构体
|
450
460
|
*/
|
@@ -4100,6 +4110,37 @@ export interface DescribeLoadBalancersDetailResponse {
|
|
4100
4110
|
RequestId?: string
|
4101
4111
|
}
|
4102
4112
|
|
4113
|
+
/**
|
4114
|
+
* 描述一个Target的健康信息
|
4115
|
+
*/
|
4116
|
+
export interface TargetHealth {
|
4117
|
+
/**
|
4118
|
+
* Target的内网IP
|
4119
|
+
*/
|
4120
|
+
IP: string
|
4121
|
+
/**
|
4122
|
+
* Target绑定的端口
|
4123
|
+
*/
|
4124
|
+
Port: number
|
4125
|
+
/**
|
4126
|
+
* 当前健康状态,true:健康,false:不健康(包括尚未开始探测、探测中、状态异常等几种状态)。只有处于健康状态(且权重大于0),负载均衡才会向其转发流量。
|
4127
|
+
*/
|
4128
|
+
HealthStatus: boolean
|
4129
|
+
/**
|
4130
|
+
* Target的实例ID,如 ins-12345678
|
4131
|
+
*/
|
4132
|
+
TargetId: string
|
4133
|
+
/**
|
4134
|
+
* 当前健康状态的详细信息。如:Alive、Dead、Unknown。Alive状态为健康,Dead状态为异常,Unknown状态包括尚未开始探测、探测中、状态未知。
|
4135
|
+
*/
|
4136
|
+
HealthStatusDetail: string
|
4137
|
+
/**
|
4138
|
+
* (**该参数对象即将下线,不推荐使用,请使用HealthStatusDetail获取健康详情**) 当前健康状态的详细信息。如:Alive、Dead、Unknown。Alive状态为健康,Dead状态为异常,Unknown状态包括尚未开始探测、探测中、状态未知。
|
4139
|
+
* @deprecated
|
4140
|
+
*/
|
4141
|
+
HealthStatusDetial?: string
|
4142
|
+
}
|
4143
|
+
|
4103
4144
|
/**
|
4104
4145
|
* 负载均衡详细信息
|
4105
4146
|
*/
|
@@ -5432,34 +5473,21 @@ export interface DescribeClassicalLBListenersRequest {
|
|
5432
5473
|
}
|
5433
5474
|
|
5434
5475
|
/**
|
5435
|
-
*
|
5476
|
+
* SetLoadBalancerStartStatus请求参数结构体
|
5436
5477
|
*/
|
5437
|
-
export interface
|
5438
|
-
/**
|
5439
|
-
* Target的内网IP
|
5440
|
-
*/
|
5441
|
-
IP: string
|
5442
|
-
/**
|
5443
|
-
* Target绑定的端口
|
5444
|
-
*/
|
5445
|
-
Port: number
|
5446
|
-
/**
|
5447
|
-
* 当前健康状态,true:健康,false:不健康(包括尚未开始探测、探测中、状态异常等几种状态)。只有处于健康状态(且权重大于0),负载均衡才会向其转发流量。
|
5448
|
-
*/
|
5449
|
-
HealthStatus: boolean
|
5478
|
+
export interface SetLoadBalancerStartStatusRequest {
|
5450
5479
|
/**
|
5451
|
-
*
|
5480
|
+
* 操作类型。Start:启动实例,Stop:停止实例。
|
5452
5481
|
*/
|
5453
|
-
|
5482
|
+
OperationType: string
|
5454
5483
|
/**
|
5455
|
-
*
|
5484
|
+
* 负载均衡实例ID。
|
5456
5485
|
*/
|
5457
|
-
|
5486
|
+
LoadBalancerId: string
|
5458
5487
|
/**
|
5459
|
-
*
|
5460
|
-
* @deprecated
|
5488
|
+
* 监听器ID。如果该字段为空,则表示操作负载均衡实例,如果不为空,则表示操作监听器。
|
5461
5489
|
*/
|
5462
|
-
|
5490
|
+
ListenerIds?: Array<string>
|
5463
5491
|
}
|
5464
5492
|
|
5465
5493
|
/**
|