tencentcloud-sdk-nodejs-tsf 4.1.268 → 4.1.280
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
|
@@ -6591,57 +6591,57 @@ export interface BindPluginRequest {
|
|
|
6591
6591
|
*/
|
|
6592
6592
|
export interface HealthCheckSetting {
|
|
6593
6593
|
/**
|
|
6594
|
-
*
|
|
6594
|
+
* <p>健康检查方法。HTTP:通过 HTTP 接口检查;CMD:通过执行命令检查;TCP:通过建立 TCP 连接检查。</p>
|
|
6595
6595
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6596
6596
|
*/
|
|
6597
6597
|
ActionType: string;
|
|
6598
6598
|
/**
|
|
6599
|
-
*
|
|
6599
|
+
* <p>容器延时启动健康检查的时间,单位秒。</p>
|
|
6600
6600
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6601
6601
|
*/
|
|
6602
6602
|
InitialDelaySeconds?: number;
|
|
6603
6603
|
/**
|
|
6604
|
-
*
|
|
6604
|
+
* <p>每次健康检查响应的最大超时时间,单位秒。</p>
|
|
6605
6605
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6606
6606
|
*/
|
|
6607
6607
|
TimeoutSeconds?: number;
|
|
6608
6608
|
/**
|
|
6609
|
-
*
|
|
6609
|
+
* <p>进行健康检查的时间间隔,单位秒。</p>
|
|
6610
6610
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6611
6611
|
*/
|
|
6612
6612
|
PeriodSeconds?: number;
|
|
6613
6613
|
/**
|
|
6614
|
-
*
|
|
6614
|
+
* <p>表示后端容器从失败到成功的连续健康检查成功次数。</p>
|
|
6615
6615
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6616
6616
|
*/
|
|
6617
6617
|
SuccessThreshold?: number;
|
|
6618
6618
|
/**
|
|
6619
|
-
*
|
|
6619
|
+
* <p>表示后端容器从成功到失败的连续健康检查成功次数。</p>
|
|
6620
6620
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6621
6621
|
*/
|
|
6622
6622
|
FailureThreshold?: number;
|
|
6623
6623
|
/**
|
|
6624
|
-
* HTTP 健康检查方法使用的检查协议。支持HTTP、HTTPS
|
|
6624
|
+
* <p>HTTP 健康检查方法使用的检查协议。支持HTTP、HTTPS。</p>
|
|
6625
6625
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6626
6626
|
*/
|
|
6627
6627
|
Scheme?: string;
|
|
6628
6628
|
/**
|
|
6629
|
-
*
|
|
6629
|
+
* <p>健康检查端口,范围 1~65535 。</p>
|
|
6630
6630
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6631
6631
|
*/
|
|
6632
6632
|
Port?: number;
|
|
6633
6633
|
/**
|
|
6634
|
-
* HTTP
|
|
6634
|
+
* <p>HTTP 健康检查接口的请求路径。</p>
|
|
6635
6635
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6636
6636
|
*/
|
|
6637
6637
|
Path?: string;
|
|
6638
6638
|
/**
|
|
6639
|
-
*
|
|
6639
|
+
* <p>执行命令检查方式,执行的命令。</p>
|
|
6640
6640
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6641
6641
|
*/
|
|
6642
6642
|
Command?: Array<string>;
|
|
6643
6643
|
/**
|
|
6644
|
-
* TSF_DEFAULT:tsf 默认就绪探针。K8S_NATIVE:k8s 原生探针。不填默认为 k8s
|
|
6644
|
+
* <p>TSF_DEFAULT:tsf 默认就绪探针。K8S_NATIVE:k8s 原生探针。不填默认为 k8s 原生探针。</p>
|
|
6645
6645
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6646
6646
|
*/
|
|
6647
6647
|
Type?: string;
|