tencentcloud-sdk-nodejs-clb 4.1.294 → 4.1.298

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.294",
3
+ "version": "4.1.298",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -775,27 +775,29 @@ export interface DisassociateCustomizedConfigRequest {
775
775
  */
776
776
  export interface CreateTopicRequest {
777
777
  /**
778
- * 日志主题的名称。
778
+ * <p>日志主题的名称。</p>
779
779
  */
780
780
  TopicName: string;
781
781
  /**
782
- * 主题分区Partition的数量,不传参默认创建1个,最大创建允许10个,分裂/合并操作会改变分区数量,整体上限50个。
782
+ * <p>主题分区Partition的数量,不传参默认创建1个,最大创建允许10个,分裂/合并操作会改变分区数量,整体上限50个。</p>
783
783
  */
784
784
  PartitionCount?: number;
785
785
  /**
786
- * 日志类型,ACCESS:访问日志,HEALTH:健康检查日志,默认ACCESS
786
+ * <p>日志类型,ACCESS:访问日志,HEALTH:健康检查日志,默认ACCESS。</p>
787
787
  */
788
788
  TopicType?: string;
789
789
  /**
790
- * 存储时间,单位天,默认为 30
791
- - 日志接入标准存储时,支持1至3600天,值为3640时代表永久保存。
792
- - 日志接入低频存储时,支持7至3600天,值为3640时代表永久保存。
790
+ * <p>存储时间,单位天,默认为 30。</p><ul><li>日志接入标准存储时,支持1至3600天,值为3640时代表永久保存。</li><li>日志接入低频存储时,支持7至3600天,值为3640时代表永久保存。</li></ul>
793
791
  */
794
792
  Period?: number;
795
793
  /**
796
- * 日志主题的存储类型,可选值 HOT(标准存储),COLD(低频存储);默认为HOT
794
+ * <p>日志主题的存储类型,可选值 HOT(标准存储),COLD(低频存储);默认为HOT。</p>
797
795
  */
798
796
  StorageType?: string;
797
+ /**
798
+ * <p>标签</p><p>最多支持一次传入20个</p>
799
+ */
800
+ Tags?: Array<TagInfo>;
799
801
  }
800
802
  /**
801
803
  * DeleteListener请求参数结构体
@@ -6953,32 +6955,31 @@ export interface BatchModifyTargetWeightRequest {
6953
6955
  */
6954
6956
  export interface BatchTarget {
6955
6957
  /**
6956
- * 监听器 ID
6958
+ * <p>监听器 ID。</p>
6957
6959
  */
6958
6960
  ListenerId: string;
6959
6961
  /**
6960
- * 绑定端口。
6962
+ * <p>绑定端口。</p>
6961
6963
  */
6962
6964
  Port: number;
6963
6965
  /**
6964
- * 子机 ID。表示绑定主网卡主 IP
6966
+ * <p>子机 ID。表示绑定主网卡主 IP。</p>
6965
6967
  */
6966
6968
  InstanceId?: string;
6967
6969
  /**
6968
- * 绑定 IP 时需要传入此参数,支持弹性网卡的 IP 和其他内网 IP,如果是弹性网卡则必须先绑定至CVM,然后才能绑定到负载均衡实例。
6969
- 注意:参数 InstanceId、EniIp 只能传入一个且必须传入一个。如果绑定双栈IPV6子机,必须传该参数。
6970
+ * <p>绑定 IP 时需要传入此参数,支持弹性网卡的 IP 和其他内网 IP,如果是弹性网卡则必须先绑定至CVM,然后才能绑定到负载均衡实例。注意:参数 InstanceId、EniIp 只能传入一个且必须传入一个。如果绑定双栈IPV6子机,必须传该参数。如果是跨地域绑定,则必须传该参数,不支持传InstanceId参数。</p>
6970
6971
  */
6971
6972
  EniIp?: string;
6972
6973
  /**
6973
- * 子机权重,范围[0, 100]。绑定时如果不存在,则默认为10
6974
+ * <p>子机权重,范围[0, 100]。绑定时如果不存在,则默认为10。</p>
6974
6975
  */
6975
6976
  Weight?: number;
6976
6977
  /**
6977
- * 七层规则 ID。7层负载均衡该参数必填
6978
+ * <p>七层规则 ID。7层负载均衡该参数必填</p>
6978
6979
  */
6979
6980
  LocationId?: string;
6980
6981
  /**
6981
- * 标签。
6982
+ * <p>标签。</p>
6982
6983
  */
6983
6984
  Tag?: string;
6984
6985
  }
@@ -9353,7 +9354,7 @@ export interface KeyDetailItem {
9353
9354
  */
9354
9355
  export interface CreateTopicResponse {
9355
9356
  /**
9356
- * 日志主题的 ID
9357
+ * <p>日志主题的 ID。</p>
9357
9358
  */
9358
9359
  TopicId?: string;
9359
9360
  /**