tencentcloud-sdk-nodejs-thpc 4.1.38 → 4.1.65
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
|
@@ -71,6 +71,10 @@ export interface ClusterOverview {
|
|
|
71
71
|
* 节点概览信息。
|
|
72
72
|
*/
|
|
73
73
|
export interface NodeOverview {
|
|
74
|
+
/**
|
|
75
|
+
* 集群ID
|
|
76
|
+
*/
|
|
77
|
+
ClusterId?: string;
|
|
74
78
|
/**
|
|
75
79
|
* 节点实例ID。
|
|
76
80
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -115,6 +119,14 @@ export interface NodeOverview {
|
|
|
115
119
|
* 节点的工作状态
|
|
116
120
|
*/
|
|
117
121
|
NodeAllocateState?: string;
|
|
122
|
+
/**
|
|
123
|
+
* 节点的名称
|
|
124
|
+
*/
|
|
125
|
+
NodeName?: string;
|
|
126
|
+
/**
|
|
127
|
+
* 节点的创建时间
|
|
128
|
+
*/
|
|
129
|
+
CreateTime?: string;
|
|
118
130
|
}
|
|
119
131
|
/**
|
|
120
132
|
* DescribeInitNodeScripts请求参数结构体
|
|
@@ -1535,7 +1547,7 @@ export interface DescribeNodesRequest {
|
|
|
1535
1547
|
/**
|
|
1536
1548
|
* 集群ID。
|
|
1537
1549
|
*/
|
|
1538
|
-
ClusterId
|
|
1550
|
+
ClusterId?: string;
|
|
1539
1551
|
/**
|
|
1540
1552
|
* <ul>
|
|
1541
1553
|
<li><strong>queue-name</strong>
|
|
@@ -1705,7 +1717,7 @@ export interface CreateWorkspacesRequest {
|
|
|
1705
1717
|
*/
|
|
1706
1718
|
InternetAccessible?: SpaceInternetAccessible;
|
|
1707
1719
|
/**
|
|
1708
|
-
*
|
|
1720
|
+
* 购买工作空间实例的数量
|
|
1709
1721
|
*/
|
|
1710
1722
|
SpaceCount?: number;
|
|
1711
1723
|
/**
|