tencentcloud-sdk-nodejs-clb 4.1.100 → 4.1.102

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-clb",
3
- "version": "4.1.100",
3
+ "version": "4.1.102",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -1995,6 +1995,10 @@ export interface ModifyLoadBalancerAttributesRequest {
1995
1995
  * 将负载均衡二级域名由mycloud.com改为tencentclb.com,子域名也会变换,修改后mycloud.com域名将失效。不填则不修改。
1996
1996
  */
1997
1997
  ModifyClassicDomain?: boolean;
1998
+ /**
1999
+ * 关联的终端节点Id,可通过[DescribeVpcEndPoint](https://cloud.tencent.com/document/product/215/54679)接口查询。传空字符串代表解除关联。
2000
+ */
2001
+ AssociateEndpoint?: string;
1998
2002
  }
1999
2003
  /**
2000
2004
  * InquiryPriceModifyLoadBalancer返回参数结构体
@@ -6279,4 +6283,8 @@ export interface LoadBalancer {
6279
6283
  * 已绑定的后端服务数量。
6280
6284
  */
6281
6285
  TargetCount?: number;
6286
+ /**
6287
+ * 负载均衡实例关联的Endpoint id。
6288
+ */
6289
+ AssociateEndpoint?: string;
6282
6290
  }