tencentcloud-sdk-nodejs-clb 4.0.512 → 4.0.514
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 +348 -0
- package/SERVICE_CHANGELOG.md +386 -92
- package/package.json +1 -1
- package/products.md +15 -15
- package/src/services/clb/v20180317/clb_client.ts +62 -15
- package/src/services/clb/v20180317/clb_models.ts +102 -0
- package/tencentcloud/services/clb/v20180317/clb_client.d.ts +37 -8
- package/tencentcloud/services/clb/v20180317/clb_client.js +42 -9
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +87 -0
@@ -789,6 +789,10 @@ export interface RsWeightRule {
|
|
789
789
|
*/
|
790
790
|
Weight?: number;
|
791
791
|
}
|
792
|
+
/**
|
793
|
+
* RegisterFunctionTargets请求参数结构体
|
794
|
+
*/
|
795
|
+
export declare type RegisterFunctionTargetsRequest = null;
|
792
796
|
/**
|
793
797
|
* DeregisterTargetsFromClassicalLB请求参数结构体
|
794
798
|
*/
|
@@ -1248,6 +1252,15 @@ export interface DescribeClassicalLBTargetsRequest {
|
|
1248
1252
|
*/
|
1249
1253
|
LoadBalancerId: string;
|
1250
1254
|
}
|
1255
|
+
/**
|
1256
|
+
* DeregisterFunctionTargets返回参数结构体
|
1257
|
+
*/
|
1258
|
+
export interface DeregisterFunctionTargetsResponse {
|
1259
|
+
/**
|
1260
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1261
|
+
*/
|
1262
|
+
RequestId?: string;
|
1263
|
+
}
|
1251
1264
|
/**
|
1252
1265
|
* DescribeCustomizedConfigList请求参数结构体
|
1253
1266
|
*/
|
@@ -1321,6 +1334,28 @@ export interface DescribeCrossTargetsResponse {
|
|
1321
1334
|
*/
|
1322
1335
|
RequestId?: string;
|
1323
1336
|
}
|
1337
|
+
/**
|
1338
|
+
* SCF云函数(Serverless Cloud Function)相关信息。
|
1339
|
+
*/
|
1340
|
+
export interface FunctionInfo {
|
1341
|
+
/**
|
1342
|
+
* 函数命名空间
|
1343
|
+
*/
|
1344
|
+
FunctionNamespace: string;
|
1345
|
+
/**
|
1346
|
+
* 函数名称
|
1347
|
+
*/
|
1348
|
+
FunctionName: string;
|
1349
|
+
/**
|
1350
|
+
* 函数的版本名称或别名
|
1351
|
+
*/
|
1352
|
+
FunctionQualifier: string;
|
1353
|
+
/**
|
1354
|
+
* 标识 FunctionQualifier 参数的类型,可取值: VERSION(版本)、ALIAS(别名)
|
1355
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1356
|
+
*/
|
1357
|
+
FunctionQualifierType?: string;
|
1358
|
+
}
|
1324
1359
|
/**
|
1325
1360
|
* DescribeLoadBalancerListByCertId返回参数结构体
|
1326
1361
|
*/
|
@@ -2135,6 +2170,35 @@ export interface TargetGroupBackend {
|
|
2135
2170
|
*/
|
2136
2171
|
ZoneId: number;
|
2137
2172
|
}
|
2173
|
+
/**
|
2174
|
+
* DeregisterFunctionTargets请求参数结构体
|
2175
|
+
*/
|
2176
|
+
export interface DeregisterFunctionTargetsRequest {
|
2177
|
+
/**
|
2178
|
+
* 负载均衡实例 ID。
|
2179
|
+
*/
|
2180
|
+
LoadBalancerId: string;
|
2181
|
+
/**
|
2182
|
+
* 负载均衡监听器 ID。
|
2183
|
+
*/
|
2184
|
+
ListenerId: string;
|
2185
|
+
/**
|
2186
|
+
* 待解绑的云函数列表。
|
2187
|
+
*/
|
2188
|
+
FunctionTargets: Array<FunctionTarget>;
|
2189
|
+
/**
|
2190
|
+
* 目标转发规则的 ID,当将云函数从七层转发规则上解绑时,必须输入此参数或 Domain+Url 参数。
|
2191
|
+
*/
|
2192
|
+
LocationId?: string;
|
2193
|
+
/**
|
2194
|
+
* 目标转发规则的域名,若已经输入 LocationId 参数,则本参数不生效。
|
2195
|
+
*/
|
2196
|
+
Domain?: string;
|
2197
|
+
/**
|
2198
|
+
* 目标转发规则的 URL,若已经输入 LocationId 参数,则本参数不生效。
|
2199
|
+
*/
|
2200
|
+
Url?: string;
|
2201
|
+
}
|
2138
2202
|
/**
|
2139
2203
|
* DescribeClassicalLBByInstanceId请求参数结构体
|
2140
2204
|
*/
|
@@ -2144,6 +2208,20 @@ export interface DescribeClassicalLBByInstanceIdRequest {
|
|
2144
2208
|
*/
|
2145
2209
|
InstanceIds: Array<string>;
|
2146
2210
|
}
|
2211
|
+
/**
|
2212
|
+
* SCF云函数(Serverless Cloud Function)作为后端服务
|
2213
|
+
*/
|
2214
|
+
export interface FunctionTarget {
|
2215
|
+
/**
|
2216
|
+
* 云函数相关信息
|
2217
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2218
|
+
*/
|
2219
|
+
Function: FunctionInfo;
|
2220
|
+
/**
|
2221
|
+
* 权重
|
2222
|
+
*/
|
2223
|
+
Weight?: number;
|
2224
|
+
}
|
2147
2225
|
/**
|
2148
2226
|
* DescribeResources返回参数结构体
|
2149
2227
|
*/
|
@@ -2760,6 +2838,15 @@ export interface RuleOutput {
|
|
2760
2838
|
*/
|
2761
2839
|
TargetGroupList: Array<BasicTargetGroupInfo>;
|
2762
2840
|
}
|
2841
|
+
/**
|
2842
|
+
* RegisterFunctionTargets返回参数结构体
|
2843
|
+
*/
|
2844
|
+
export interface RegisterFunctionTargetsResponse {
|
2845
|
+
/**
|
2846
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2847
|
+
*/
|
2848
|
+
RequestId?: string;
|
2849
|
+
}
|
2763
2850
|
/**
|
2764
2851
|
* CreateTopic返回参数结构体
|
2765
2852
|
*/
|