tencentcloud-sdk-nodejs-bh 4.1.184 → 4.1.186

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-bh",
3
- "version": "4.1.184",
3
+ "version": "4.1.186",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -2013,6 +2013,10 @@ export interface SearchSubtaskResultByIdResponse {
2013
2013
  * 记录数
2014
2014
  */
2015
2015
  TotalCount?: number;
2016
+ /**
2017
+ * 运维子任务执行结果
2018
+ */
2019
+ SubtaskResult?: Array<SubtaskResult>;
2016
2020
  /**
2017
2021
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2018
2022
  */
@@ -2039,7 +2043,7 @@ export interface SearchSubtaskResultByIdRequest {
2039
2043
  */
2040
2044
  Id?: string;
2041
2045
  /**
2042
- * 运维父任务执行状态
2046
+ * 运维父任务执行状态。1 - 执行中,2 - 成功,3 - 失败,4 - 超时
2043
2047
  */
2044
2048
  Status?: Array<number | bigint>;
2045
2049
  }
@@ -5541,6 +5545,72 @@ export interface RunOperationTaskRequest {
5541
5545
  */
5542
5546
  Id: number;
5543
5547
  }
5548
+ /**
5549
+ * 运维子任务执行结果
5550
+ */
5551
+ export interface SubtaskResult {
5552
+ /**
5553
+ * 执行日志ID
5554
+ */
5555
+ Id?: string;
5556
+ /**
5557
+ * 执行主机实例ID
5558
+ */
5559
+ InstanceId?: string;
5560
+ /**
5561
+ * 执行主机名称
5562
+ * @deprecated
5563
+ */
5564
+ Name?: string;
5565
+ /**
5566
+ * 执行主机地域
5567
+ */
5568
+ ApCode?: string;
5569
+ /**
5570
+ * 执行主机外网IP
5571
+ */
5572
+ PublicIp?: string;
5573
+ /**
5574
+ * 执行主机内网IP
5575
+ */
5576
+ PrivateIp?: string;
5577
+ /**
5578
+ * 运维任务状态 1 - 执行中,2 - 成功, 3 - 失败,4 - 超时
5579
+ */
5580
+ Status?: number;
5581
+ /**
5582
+ * 运维任务失败原因
5583
+ */
5584
+ Reason?: string;
5585
+ /**
5586
+ * 运维任务命令退出码
5587
+ */
5588
+ ExitCode?: number;
5589
+ /**
5590
+ * 运维任务开始时间
5591
+ */
5592
+ StartTime?: string;
5593
+ /**
5594
+ * 运维任务结束时间
5595
+ */
5596
+ EndTime?: string;
5597
+ /**
5598
+ * 运维任务执行结果输出。默认超出16384字节的内容会被自动截断
5599
+ */
5600
+ StdOut?: string;
5601
+ /**
5602
+ * 运维任务执行结果错误
5603
+ */
5604
+ StdErr?: string;
5605
+ /**
5606
+ * 资产名
5607
+ */
5608
+ DeviceName?: string;
5609
+ /**
5610
+ * 资产账号
5611
+ */
5612
+ Account?: string;
5613
+ }
5544
5614
  /**
5545
5615
  * 访问权限
5546
5616
  */