tencentcloud-sdk-nodejs-tke 4.1.2 → 4.1.4
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-tke",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.4",
|
|
4
4
|
"description": "腾讯云 API NODEJS SDK",
|
|
5
5
|
"main": "./tencentcloud/index.js",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"build": "concurrently 'npm:build:cjs' 'npm:build:es'",
|
|
11
11
|
"build:cjs": "tsc -p tsconfig.json",
|
|
12
12
|
"build:es": "tsc -p tsconfig.es.json",
|
|
13
|
+
"build:slim": "node ./scripts/build_slim.js",
|
|
13
14
|
"prettier": "prettier --config prettier.config.js --write 'src/**/*.{tsx,ts,jsx,js,css,json,vue}'",
|
|
14
15
|
"clean": "rimraf tencentcloud es"
|
|
15
16
|
},
|
|
@@ -53,6 +54,7 @@
|
|
|
53
54
|
"babel-eslint": "^10.0.2",
|
|
54
55
|
"chai": "^4.2.0",
|
|
55
56
|
"concurrently": "^6.5.1",
|
|
57
|
+
"esbuild": "^0.25.0",
|
|
56
58
|
"eslint": "^6.8.0",
|
|
57
59
|
"eslint-plugin-react": "^7.17.0",
|
|
58
60
|
"mocha": "^8.4.0",
|
|
@@ -3653,22 +3653,18 @@ export interface ClusterCondition {
|
|
|
3653
3653
|
Status?: string;
|
|
3654
3654
|
/**
|
|
3655
3655
|
* 最后一次探测到该状态的时间
|
|
3656
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3657
3656
|
*/
|
|
3658
3657
|
LastProbeTime?: string;
|
|
3659
3658
|
/**
|
|
3660
3659
|
* 最后一次转换到该过程的时间
|
|
3661
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3662
3660
|
*/
|
|
3663
3661
|
LastTransitionTime?: string;
|
|
3664
3662
|
/**
|
|
3665
3663
|
* 转换到该过程的简明原因
|
|
3666
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3667
3664
|
*/
|
|
3668
3665
|
Reason?: string;
|
|
3669
3666
|
/**
|
|
3670
3667
|
* 转换到该过程的更多信息
|
|
3671
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3672
3668
|
*/
|
|
3673
3669
|
Message?: string;
|
|
3674
3670
|
}
|
|
@@ -3825,17 +3821,14 @@ export interface DescribeAvailableTKEEdgeVersionRequest {
|
|
|
3825
3821
|
export interface OpenConstraintInfo {
|
|
3826
3822
|
/**
|
|
3827
3823
|
* 策略实例名称
|
|
3828
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3829
3824
|
*/
|
|
3830
3825
|
Name?: string;
|
|
3831
3826
|
/**
|
|
3832
3827
|
* 策略实例关联事件数
|
|
3833
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3834
3828
|
*/
|
|
3835
3829
|
EventNums?: number;
|
|
3836
3830
|
/**
|
|
3837
3831
|
* 实例yaml详情base64编码
|
|
3838
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3839
3832
|
*/
|
|
3840
3833
|
YamlDetail?: string;
|
|
3841
3834
|
}
|
|
@@ -7139,27 +7132,22 @@ export interface DescribePrometheusGlobalNotificationRequest {
|
|
|
7139
7132
|
export interface ClusterPublicLB {
|
|
7140
7133
|
/**
|
|
7141
7134
|
* 是否开启公网访问LB
|
|
7142
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
7143
7135
|
*/
|
|
7144
7136
|
Enabled: boolean;
|
|
7145
7137
|
/**
|
|
7146
7138
|
* 允许访问的来源CIDR列表
|
|
7147
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
7148
7139
|
*/
|
|
7149
7140
|
AllowFromCidrs?: Array<string>;
|
|
7150
7141
|
/**
|
|
7151
7142
|
* 安全策略放通单个IP或CIDR(例如: "192.168.1.0/24",默认为拒绝所有)
|
|
7152
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
7153
7143
|
*/
|
|
7154
7144
|
SecurityPolicies?: Array<string>;
|
|
7155
7145
|
/**
|
|
7156
7146
|
* 外网访问相关的扩展参数,格式为json
|
|
7157
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
7158
7147
|
*/
|
|
7159
7148
|
ExtraParam?: string;
|
|
7160
7149
|
/**
|
|
7161
7150
|
* 新内外网功能,需要传递安全组
|
|
7162
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
7163
7151
|
*/
|
|
7164
7152
|
SecurityGroup?: string;
|
|
7165
7153
|
}
|
|
@@ -7182,7 +7170,6 @@ export interface DescribePrometheusTemplateSyncResponse {
|
|
|
7182
7170
|
export interface CreateEksLogConfigResponse {
|
|
7183
7171
|
/**
|
|
7184
7172
|
* 日志采集topicid
|
|
7185
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
7186
7173
|
*/
|
|
7187
7174
|
TopicId?: string;
|
|
7188
7175
|
/**
|
|
@@ -10844,7 +10831,6 @@ export interface CreateClusterEndpointVipRequest {
|
|
|
10844
10831
|
export interface ClusterInternalLB {
|
|
10845
10832
|
/**
|
|
10846
10833
|
* 是否开启内网访问LB
|
|
10847
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
10848
10834
|
*/
|
|
10849
10835
|
Enabled: boolean;
|
|
10850
10836
|
/**
|