tencentcloud-sdk-nodejs-es 4.1.98 → 4.1.101
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
|
@@ -2818,6 +2818,11 @@ export interface NodeInfo {
|
|
|
2818
2818
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2819
2819
|
*/
|
|
2820
2820
|
DiskEnhance?: number;
|
|
2821
|
+
/**
|
|
2822
|
+
* 节点Gpu信息
|
|
2823
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2824
|
+
*/
|
|
2825
|
+
GpuInfo?: GpuInfo;
|
|
2821
2826
|
}
|
|
2822
2827
|
/**
|
|
2823
2828
|
* ES cos自动备份信息
|
|
@@ -3621,6 +3626,10 @@ export interface InstanceInfo {
|
|
|
3621
3626
|
* kibana内网访问地址
|
|
3622
3627
|
*/
|
|
3623
3628
|
ShowKibanaIpPort?: string;
|
|
3629
|
+
/**
|
|
3630
|
+
* 是否为CDZLite可用区
|
|
3631
|
+
*/
|
|
3632
|
+
IsCdzLite?: boolean;
|
|
3624
3633
|
}
|
|
3625
3634
|
/**
|
|
3626
3635
|
* 数据接入cvm实例信息
|
|
@@ -5072,6 +5081,19 @@ export interface DescribeDiagnoseRequest {
|
|
|
5072
5081
|
*/
|
|
5073
5082
|
Limit?: number;
|
|
5074
5083
|
}
|
|
5084
|
+
/**
|
|
5085
|
+
* 节点Gpu信息
|
|
5086
|
+
*/
|
|
5087
|
+
export interface GpuInfo {
|
|
5088
|
+
/**
|
|
5089
|
+
* Gpu块数
|
|
5090
|
+
*/
|
|
5091
|
+
GpuCount?: number;
|
|
5092
|
+
/**
|
|
5093
|
+
* Gpu类型
|
|
5094
|
+
*/
|
|
5095
|
+
GpuType?: string;
|
|
5096
|
+
}
|
|
5075
5097
|
/**
|
|
5076
5098
|
* DescribeInstancePluginList返回参数结构体
|
|
5077
5099
|
*/
|