tencentcloud-sdk-nodejs-tke 4.1.41 → 4.1.42

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.41",
3
+ "version": "4.1.42",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -60,13 +60,17 @@ export interface NativeNodeInfo {
60
60
  */
61
61
  RenewFlag?: string;
62
62
  /**
63
- * 节点计费模式(已弃用)
63
+ * 节点计费模式
64
64
  */
65
65
  PayMode?: string;
66
66
  /**
67
67
  * 节点内存容量,单位:`GB`
68
68
  */
69
69
  Memory?: number;
70
+ /**
71
+ * 节点系统盘配置信息
72
+ */
73
+ SystemDisk?: Disk;
70
74
  /**
71
75
  * 公网带宽相关信息设置
72
76
  */
@@ -88,6 +92,26 @@ export interface NativeNodeInfo {
88
92
  注意:此字段可能返回 null,表示取不到有效值。
89
93
  */
90
94
  ExpiredTime?: string;
95
+ /**
96
+ * 节点外网 IP
97
+ 注意:此字段可能返回 null,表示取不到有效值。
98
+ */
99
+ WanIp?: string;
100
+ /**
101
+ * 节点密钥 ID 列表
102
+ 注意:此字段可能返回 null,表示取不到有效值。
103
+ */
104
+ KeyIds?: Array<string>;
105
+ /**
106
+ * 节点GPU相关配置
107
+ 注意:此字段可能返回 null,表示取不到有效值。
108
+ */
109
+ GPUParams?: GPUParams;
110
+ /**
111
+ * 数据盘列表
112
+ 注意:此字段可能返回 null,表示取不到有效值。
113
+ */
114
+ DataDisks?: Array<DataDisk>;
91
115
  /**
92
116
  * 安全组列表
93
117
  注意:此字段可能返回 null,表示取不到有效值。
@@ -106,6 +130,13 @@ export interface NativeNodeInfo {
106
130
  注意:此字段可能返回 null,表示取不到有效值。
107
131
  */
108
132
  OsImage?: string;
133
+ /**
134
+ * **原生节点的 Machine 类型**
135
+
136
+ - Native 表示 CXM 类型的原生节点
137
+ - NativeCVM 表示 CVM 类型的原生节点
138
+ */
139
+ MachineType?: string;
109
140
  /**
110
141
  * **原生节点对应的实例 ID**
111
142