tencentcloud-sdk-nodejs-thpc 4.1.191 → 4.1.194
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
|
@@ -349,31 +349,33 @@ export interface ModifyInitNodeScriptsRequest {
|
|
|
349
349
|
*/
|
|
350
350
|
export interface AttachNodesRequest {
|
|
351
351
|
/**
|
|
352
|
-
*
|
|
352
|
+
* <p>集群id</p>
|
|
353
353
|
*/
|
|
354
354
|
ClusterId: string;
|
|
355
355
|
/**
|
|
356
|
-
*
|
|
356
|
+
* <p>节点的实例id列表</p>
|
|
357
357
|
*/
|
|
358
358
|
ResourceSet: Array<string>;
|
|
359
359
|
/**
|
|
360
|
-
*
|
|
361
|
-
SLURM默认队列为:compute。
|
|
362
|
-
|
|
360
|
+
* <p>队列名称。不指定则为默认队列:<br>SLURM默认队列为:compute。</p>
|
|
363
361
|
*/
|
|
364
362
|
QueueName?: string;
|
|
365
363
|
/**
|
|
366
|
-
*
|
|
364
|
+
* <p>指定有效的镜像ID,格式形如img-xxx。目前仅支持公有镜像和特定自定义镜像。如不指定,则该字段是默认镜像。</p>
|
|
367
365
|
*/
|
|
368
366
|
ImageId?: string;
|
|
369
367
|
/**
|
|
370
|
-
*
|
|
368
|
+
* <p>要新增节点的资源类型。<li>CVM:CVM实例类型资源</li><li>WORKSPACE:工作空间类型实例资源</li>默认值:CVM。</p>
|
|
371
369
|
*/
|
|
372
370
|
ResourceType?: string;
|
|
373
371
|
/**
|
|
374
|
-
*
|
|
372
|
+
* <p>提供给实例使用的用户数据,需要以 base64 方式编码,支持的最大数据大小为 16KB。关于获取此参数的详细介绍,请参阅<a href="https://cloud.tencent.com/document/product/213/17526">Windows</a>和<a href="https://cloud.tencent.com/document/product/213/17525">Linux</a>启动时运行命令。</p>
|
|
375
373
|
*/
|
|
376
374
|
UserData?: string;
|
|
375
|
+
/**
|
|
376
|
+
* <p>控制实例加入集群是否跳过重装系统</p><p>默认值:False</p>
|
|
377
|
+
*/
|
|
378
|
+
SkipResetInstance?: boolean;
|
|
377
379
|
}
|
|
378
380
|
/**
|
|
379
381
|
* 描述了工作空间的计费模式
|