tencentcloud-sdk-nodejs-gwlb 4.1.162 → 4.1.172
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
|
@@ -430,28 +430,23 @@ export interface GatewayLoadBalancer {
|
|
|
430
430
|
*/
|
|
431
431
|
export interface DescribeGatewayLoadBalancersRequest {
|
|
432
432
|
/**
|
|
433
|
-
*
|
|
433
|
+
* <p>网关负载均衡实例ID。支持批量筛选的实例ID数量上限为20个。</p>
|
|
434
434
|
*/
|
|
435
435
|
LoadBalancerIds?: Array<string>;
|
|
436
436
|
/**
|
|
437
|
-
*
|
|
437
|
+
* <p>一次批量返回网关负载均衡实例的数量,默认为20,最大值为100。</p>
|
|
438
438
|
*/
|
|
439
439
|
Limit?: number;
|
|
440
440
|
/**
|
|
441
|
-
*
|
|
441
|
+
* <p>返回网关负载均衡实例列表的起始偏移量,默认0。</p>
|
|
442
442
|
*/
|
|
443
443
|
Offset?: number;
|
|
444
444
|
/**
|
|
445
|
-
*
|
|
446
|
-
Filter.Name和Filter.Values皆为必填项。详细的过滤条件如下:
|
|
447
|
-
- VpcId - String - 是否必填:否 - (过滤条件)按照网关负载均衡实例所属的私有网络过滤,如“vpc-bhqk****”。
|
|
448
|
-
- Vips - String - 是否必填:否 - (过滤条件)按照网关负载均衡实例所属的私有网络过滤,如“10.1.1.1”
|
|
449
|
-
- tag:tag-key - String - 是否必填:否 - (过滤条件)按照GWLB标签键值对进行过滤,tag-key使用具体的标签键进行替换。
|
|
450
|
-
|
|
445
|
+
* <p>查询负载均衡详细信息列表的过滤条件,每次请求的Filters的上限为10,Filter.Values的上限为100。Filter.Name和Filter.Values皆为必填项。详细的过滤条件如下:- VpcId - String - 是否必填:否 - (过滤条件)按照网关负载均衡实例所属的私有网络过滤,如“vpc-bhqk****”。- Vips - String - 是否必填:否 - (过滤条件)按照网关负载均衡实例的VIP进行过滤,如“10.1.1.1”- tag:tag-key - String - 是否必填:否 - (过滤条件)按照GWLB标签键值对进行过滤,tag-key使用具体的标签键进行替换。</p>
|
|
451
446
|
*/
|
|
452
447
|
Filters?: Array<Filter>;
|
|
453
448
|
/**
|
|
454
|
-
*
|
|
449
|
+
* <p>搜索字段,模糊匹配名称、VIP。</p>
|
|
455
450
|
*/
|
|
456
451
|
SearchKey?: string;
|
|
457
452
|
}
|
|
@@ -994,11 +989,11 @@ export interface TargetGroupInfo {
|
|
|
994
989
|
*/
|
|
995
990
|
export interface DescribeGatewayLoadBalancersResponse {
|
|
996
991
|
/**
|
|
997
|
-
*
|
|
992
|
+
* <p>满足过滤条件的负载均衡实例总数。此数值与入参中的Limit无关。</p>
|
|
998
993
|
*/
|
|
999
994
|
TotalCount?: number;
|
|
1000
995
|
/**
|
|
1001
|
-
*
|
|
996
|
+
* <p>返回的网关负载均衡实例数组。</p>
|
|
1002
997
|
*/
|
|
1003
998
|
LoadBalancerSet?: Array<GatewayLoadBalancer>;
|
|
1004
999
|
/**
|