tencentcloud-sdk-nodejs-clb 4.0.252 → 4.0.258
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/CHANGELOG.md +1036 -63
- package/package.json +1 -1
- package/products.md +48 -48
- package/src/services/clb/v20180317/clb_client.ts +44 -18
- package/src/services/clb/v20180317/clb_models.ts +180 -64
- package/tencentcloud/services/clb/v20180317/clb_client.d.ts +18 -9
- package/tencentcloud/services/clb/v20180317/clb_client.js +23 -10
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +157 -58
@@ -867,6 +867,45 @@ export interface CreateRuleResponse {
|
|
867
867
|
*/
|
868
868
|
RequestId?: string;
|
869
869
|
}
|
870
|
+
/**
|
871
|
+
* 跨域2.0云联网下子机和网卡信息
|
872
|
+
*/
|
873
|
+
export interface CrossTargets {
|
874
|
+
/**
|
875
|
+
* 本地私有网络ID,即负载均衡的VpcId。
|
876
|
+
*/
|
877
|
+
LocalVpcId: string;
|
878
|
+
/**
|
879
|
+
* 子机或网卡所属的私有网络ID。
|
880
|
+
*/
|
881
|
+
VpcId: string;
|
882
|
+
/**
|
883
|
+
* 子机或网卡的IP地址
|
884
|
+
*/
|
885
|
+
IP: string;
|
886
|
+
/**
|
887
|
+
* 子机或网卡所属的私有网络名称。
|
888
|
+
*/
|
889
|
+
VpcName: string;
|
890
|
+
/**
|
891
|
+
* 子机的网卡ID。
|
892
|
+
*/
|
893
|
+
EniId: string;
|
894
|
+
/**
|
895
|
+
* 子机实例ID。
|
896
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
897
|
+
*/
|
898
|
+
InstanceId: string;
|
899
|
+
/**
|
900
|
+
* 子机实例名称。
|
901
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
902
|
+
*/
|
903
|
+
InstanceName: string;
|
904
|
+
/**
|
905
|
+
* 子机或者网卡所属的地域。
|
906
|
+
*/
|
907
|
+
Region: string;
|
908
|
+
}
|
870
909
|
/**
|
871
910
|
* 一条转发规则的健康检查状态
|
872
911
|
*/
|
@@ -1139,6 +1178,23 @@ export interface AutoRewriteRequest {
|
|
1139
1178
|
*/
|
1140
1179
|
TakeUrls?: Array<boolean>;
|
1141
1180
|
}
|
1181
|
+
/**
|
1182
|
+
* DescribeCrossTargets返回参数结构体
|
1183
|
+
*/
|
1184
|
+
export interface DescribeCrossTargetsResponse {
|
1185
|
+
/**
|
1186
|
+
* 后端服务列表总数。
|
1187
|
+
*/
|
1188
|
+
TotalCount: number;
|
1189
|
+
/**
|
1190
|
+
* 后端服务列表。
|
1191
|
+
*/
|
1192
|
+
CrossTargetSet: Array<CrossTargets>;
|
1193
|
+
/**
|
1194
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1195
|
+
*/
|
1196
|
+
RequestId?: string;
|
1197
|
+
}
|
1142
1198
|
/**
|
1143
1199
|
* DescribeLoadBalancerListByCertId返回参数结构体
|
1144
1200
|
*/
|
@@ -1252,7 +1308,7 @@ export interface DescribeLBListenersRequest {
|
|
1252
1308
|
Backends: Array<LbRsItem>;
|
1253
1309
|
}
|
1254
1310
|
/**
|
1255
|
-
*
|
1311
|
+
* 性能容量型变配参数
|
1256
1312
|
*/
|
1257
1313
|
export interface SlaUpdateParam {
|
1258
1314
|
/**
|
@@ -1260,7 +1316,7 @@ export interface SlaUpdateParam {
|
|
1260
1316
|
*/
|
1261
1317
|
LoadBalancerId: string;
|
1262
1318
|
/**
|
1263
|
-
*
|
1319
|
+
* 变更为性能容量型,固定为SLA
|
1264
1320
|
*/
|
1265
1321
|
SlaType: string;
|
1266
1322
|
}
|
@@ -1814,6 +1870,19 @@ export interface ModifyTargetPortResponse {
|
|
1814
1870
|
*/
|
1815
1871
|
RequestId?: string;
|
1816
1872
|
}
|
1873
|
+
/**
|
1874
|
+
* MigrateClassicalLoadBalancers请求参数结构体
|
1875
|
+
*/
|
1876
|
+
export interface MigrateClassicalLoadBalancersRequest {
|
1877
|
+
/**
|
1878
|
+
* 传统型负载均衡ID数组
|
1879
|
+
*/
|
1880
|
+
LoadBalancerIds: Array<string>;
|
1881
|
+
/**
|
1882
|
+
* 独占集群信息
|
1883
|
+
*/
|
1884
|
+
ExclusiveCluster?: ExclusiveCluster;
|
1885
|
+
}
|
1817
1886
|
/**
|
1818
1887
|
* DescribeLoadBalancersDetail请求参数结构体
|
1819
1888
|
*/
|
@@ -2093,50 +2162,25 @@ export interface CreateClsLogSetResponse {
|
|
2093
2162
|
RequestId?: string;
|
2094
2163
|
}
|
2095
2164
|
/**
|
2096
|
-
*
|
2165
|
+
* DescribeCrossTargets请求参数结构体
|
2097
2166
|
*/
|
2098
|
-
export interface
|
2099
|
-
/**
|
2100
|
-
* 后端服务的类型,可取:CVM、ENI
|
2101
|
-
*/
|
2102
|
-
Type: string;
|
2103
|
-
/**
|
2104
|
-
* 后端服务的唯一 ID,如 ins-abcd1234
|
2105
|
-
*/
|
2106
|
-
InstanceId: string;
|
2167
|
+
export interface DescribeCrossTargetsRequest {
|
2107
2168
|
/**
|
2108
|
-
*
|
2169
|
+
* 返回后端服务列表数目,默认20,最大值100。
|
2109
2170
|
*/
|
2110
|
-
|
2171
|
+
Limit?: number;
|
2111
2172
|
/**
|
2112
|
-
*
|
2173
|
+
* 返回后端服务列表起始偏移量,默认0。
|
2113
2174
|
*/
|
2114
|
-
|
2115
|
-
/**
|
2116
|
-
* 后端服务的外网 IP
|
2117
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2118
|
-
*/
|
2119
|
-
PublicIpAddresses: Array<string>;
|
2120
|
-
/**
|
2121
|
-
* 后端服务的内网 IP
|
2122
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2123
|
-
*/
|
2124
|
-
PrivateIpAddresses: Array<string>;
|
2125
|
-
/**
|
2126
|
-
* 后端服务的实例名称
|
2127
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2128
|
-
*/
|
2129
|
-
InstanceName: string;
|
2175
|
+
Offset?: number;
|
2130
2176
|
/**
|
2131
|
-
*
|
2132
|
-
|
2177
|
+
* 查询跨域2.0版本云联网后端子机和网卡服务列表条件,详细的过滤条件如下:
|
2178
|
+
<li> vpc-id - String - 是否必填:否 - (过滤条件)按照 本地私有网络ID,即负载均衡的VpcId 过滤,如:"vpc-12345678"。</li>
|
2179
|
+
<li> ip - String - 是否必填:否 - (过滤条件)按照 后端服务ip 过滤,如:"192.168.0.1"。</li>
|
2180
|
+
<li> listener-id - String - 是否必填:否 - (过滤条件)按照 监听器ID 过滤,如:"lbl-12345678"。</li>
|
2181
|
+
<li> location-id - String - 是否必填:否 - (过滤条件)按照 七层监听器规则ID 过滤,如:"loc-12345678"。</li>
|
2133
2182
|
*/
|
2134
|
-
|
2135
|
-
/**
|
2136
|
-
* 弹性网卡唯一ID,如 eni-1234abcd
|
2137
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2138
|
-
*/
|
2139
|
-
EniId: string;
|
2183
|
+
Filters?: Array<Filter>;
|
2140
2184
|
}
|
2141
2185
|
/**
|
2142
2186
|
* lb实例包年包月相关配置属性
|
@@ -2344,6 +2388,15 @@ export interface CreateTargetGroupResponse {
|
|
2344
2388
|
*/
|
2345
2389
|
RequestId?: string;
|
2346
2390
|
}
|
2391
|
+
/**
|
2392
|
+
* MigrateClassicalLoadBalancers返回参数结构体
|
2393
|
+
*/
|
2394
|
+
export interface MigrateClassicalLoadBalancersResponse {
|
2395
|
+
/**
|
2396
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2397
|
+
*/
|
2398
|
+
RequestId?: string;
|
2399
|
+
}
|
2347
2400
|
/**
|
2348
2401
|
* CreateLoadBalancerSnatIps返回参数结构体
|
2349
2402
|
*/
|
@@ -3803,7 +3856,7 @@ export interface DescribeExclusiveClustersRequest {
|
|
3803
3856
|
*/
|
3804
3857
|
export interface ModifyLoadBalancerSlaRequest {
|
3805
3858
|
/**
|
3806
|
-
*
|
3859
|
+
* 负载均衡实例信息
|
3807
3860
|
*/
|
3808
3861
|
LoadBalancerSla: Array<SlaUpdateParam>;
|
3809
3862
|
}
|
@@ -4081,6 +4134,41 @@ export interface DescribeLBListenersResponse {
|
|
4081
4134
|
*/
|
4082
4135
|
RequestId?: string;
|
4083
4136
|
}
|
4137
|
+
/**
|
4138
|
+
* 目标组信息
|
4139
|
+
*/
|
4140
|
+
export interface TargetGroupInfo {
|
4141
|
+
/**
|
4142
|
+
* 目标组ID
|
4143
|
+
*/
|
4144
|
+
TargetGroupId: string;
|
4145
|
+
/**
|
4146
|
+
* 目标组的vpcid
|
4147
|
+
*/
|
4148
|
+
VpcId: string;
|
4149
|
+
/**
|
4150
|
+
* 目标组的名字
|
4151
|
+
*/
|
4152
|
+
TargetGroupName: string;
|
4153
|
+
/**
|
4154
|
+
* 目标组的默认端口
|
4155
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4156
|
+
*/
|
4157
|
+
Port: number;
|
4158
|
+
/**
|
4159
|
+
* 目标组的创建时间
|
4160
|
+
*/
|
4161
|
+
CreatedTime: string;
|
4162
|
+
/**
|
4163
|
+
* 目标组的修改时间
|
4164
|
+
*/
|
4165
|
+
UpdatedTime: string;
|
4166
|
+
/**
|
4167
|
+
* 关联到的规则数组
|
4168
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4169
|
+
*/
|
4170
|
+
AssociatedRule: Array<AssociationItem>;
|
4171
|
+
}
|
4084
4172
|
/**
|
4085
4173
|
* DeleteListener返回参数结构体
|
4086
4174
|
*/
|
@@ -4269,39 +4357,50 @@ export interface AssociationItem {
|
|
4269
4357
|
ListenerName: string;
|
4270
4358
|
}
|
4271
4359
|
/**
|
4272
|
-
*
|
4360
|
+
* 监听器绑定的后端服务的详细信息
|
4273
4361
|
*/
|
4274
|
-
export interface
|
4362
|
+
export interface Backend {
|
4275
4363
|
/**
|
4276
|
-
*
|
4364
|
+
* 后端服务的类型,可取:CVM、ENI
|
4277
4365
|
*/
|
4278
|
-
|
4366
|
+
Type: string;
|
4279
4367
|
/**
|
4280
|
-
*
|
4368
|
+
* 后端服务的唯一 ID,如 ins-abcd1234
|
4281
4369
|
*/
|
4282
|
-
|
4370
|
+
InstanceId: string;
|
4283
4371
|
/**
|
4284
|
-
*
|
4372
|
+
* 后端服务的监听端口
|
4285
4373
|
*/
|
4286
|
-
|
4374
|
+
Port: number;
|
4287
4375
|
/**
|
4288
|
-
|
4376
|
+
* 后端服务的转发权重,取值范围:[0, 100],默认为 10。
|
4377
|
+
*/
|
4378
|
+
Weight: number;
|
4379
|
+
/**
|
4380
|
+
* 后端服务的外网 IP
|
4289
4381
|
注意:此字段可能返回 null,表示取不到有效值。
|
4290
4382
|
*/
|
4291
|
-
|
4383
|
+
PublicIpAddresses: Array<string>;
|
4292
4384
|
/**
|
4293
|
-
|
4294
|
-
|
4295
|
-
|
4385
|
+
* 后端服务的内网 IP
|
4386
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4387
|
+
*/
|
4388
|
+
PrivateIpAddresses: Array<string>;
|
4296
4389
|
/**
|
4297
|
-
|
4298
|
-
|
4299
|
-
|
4390
|
+
* 后端服务的实例名称
|
4391
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4392
|
+
*/
|
4393
|
+
InstanceName: string;
|
4300
4394
|
/**
|
4301
|
-
*
|
4395
|
+
* 后端服务被绑定的时间
|
4302
4396
|
注意:此字段可能返回 null,表示取不到有效值。
|
4303
4397
|
*/
|
4304
|
-
|
4398
|
+
RegisteredTime: string;
|
4399
|
+
/**
|
4400
|
+
* 弹性网卡唯一ID,如 eni-1234abcd
|
4401
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4402
|
+
*/
|
4403
|
+
EniId: string;
|
4305
4404
|
}
|
4306
4405
|
/**
|
4307
4406
|
* RegisterTargetGroupInstances请求参数结构体
|