tencentcloud-sdk-nodejs-batch 4.1.45 → 4.1.48

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-batch",
3
- "version": "4.1.45",
3
+ "version": "4.1.48",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -98,7 +98,7 @@ export interface RetryJobsResponse {
98
98
  */
99
99
  export interface TerminateComputeNodeRequest {
100
100
  /**
101
- * 计算环境ID,环境ID通过调用接口 [DescribeComputeEnv](https://cloud.tencent.com/document/api/599/15892)获取。
101
+ * 计算环境ID,环境ID通过调用接口 [DescribeComputeEnvs](https://cloud.tencent.com/document/api/599/15893)获取。
102
102
  */
103
103
  EnvId: string;
104
104
  /**
@@ -284,6 +284,7 @@ export interface SystemDisk {
284
284
  DiskSize?: number;
285
285
  /**
286
286
  * 所属的独享集群ID。
287
+ 注意:此字段可能返回 null,表示取不到有效值。
287
288
  */
288
289
  CdcId?: string;
289
290
  /**
@@ -821,7 +822,7 @@ export interface LocalDiskType {
821
822
  */
822
823
  export interface DescribeComputeEnvActivitiesRequest {
823
824
  /**
824
- * 计算环境ID,环境ID通过调用接口 [DescribeComputeEnv](https://cloud.tencent.com/document/api/599/15892)获取。
825
+ * 计算环境ID,环境ID通过调用接口 [DescribeComputeEnvs](https://cloud.tencent.com/document/api/599/15893)获取。
825
826
  */
826
827
  EnvId: string;
827
828
  /**
@@ -833,8 +834,7 @@ export interface DescribeComputeEnvActivitiesRequest {
833
834
  */
834
835
  Limit?: number;
835
836
  /**
836
- * 过滤条件
837
- <li> compute-node-id - String - 是否必填:否 -(过滤条件)按照计算节点ID过滤。</li>
837
+ * 过滤条件<li> compute-node-id - String - 是否必填:否 -(过滤条件)按照计算节点ID过滤,节点ID通过调用接口 [DescribeComputeEnv](https://cloud.tencent.com/document/api/599/15892)获取。</li>
838
838
  */
839
839
  Filters?: Filter;
840
840
  }
@@ -912,7 +912,7 @@ export interface Job {
912
912
  */
913
913
  export interface DeleteComputeEnvRequest {
914
914
  /**
915
- * 计算环境ID,环境ID通过调用接口 [DescribeComputeEnv](https://cloud.tencent.com/document/api/599/15892)获取。
915
+ * 计算环境ID,环境ID通过调用接口 [DescribeComputeEnvs](https://cloud.tencent.com/document/api/599/15893)获取,不能对状态处于删除中或者存在计算实例未销毁的环境发起删除动作。
916
916
  */
917
917
  EnvId: string;
918
918
  }
@@ -1050,7 +1050,7 @@ export interface ComputeEnvCreateInfo {
1050
1050
  */
1051
1051
  export interface DescribeComputeEnvCreateInfosRequest {
1052
1052
  /**
1053
- * 计算环境ID列表,与Filters参数不能同时指定,最大限制100。环境ID通过调用接口 [DescribeComputeEnv](https://cloud.tencent.com/document/api/599/15892)获取。
1053
+ * 计算环境ID列表,与Filters参数不能同时指定,最大限制100,环境ID通过调用接口 [DescribeComputeEnvs](https://cloud.tencent.com/document/api/599/15893)获取。
1054
1054
  */
1055
1055
  EnvIds?: Array<string>;
1056
1056
  /**
@@ -1071,7 +1071,7 @@ export interface DescribeComputeEnvCreateInfosRequest {
1071
1071
  */
1072
1072
  export interface DescribeComputeEnvRequest {
1073
1073
  /**
1074
- * 计算环境ID
1074
+ * 计算环境ID,环境ID通过调用接口 [DescribeComputeEnvs](https://cloud.tencent.com/document/api/599/15893)获取。
1075
1075
  */
1076
1076
  EnvId: string;
1077
1077
  }
@@ -1415,7 +1415,7 @@ export interface LoginSettings {
1415
1415
  */
1416
1416
  export interface DetachInstancesRequest {
1417
1417
  /**
1418
- * 计算环境ID,环境ID通过调用接口 [DescribeComputeEnv](https://cloud.tencent.com/document/api/599/15892)获取。
1418
+ * 计算环境ID,环境ID通过调用接口 [DescribeComputeEnvs](https://cloud.tencent.com/document/api/599/15893)获取。
1419
1419
  */
1420
1420
  EnvId: string;
1421
1421
  /**
@@ -1428,11 +1428,11 @@ export interface DetachInstancesRequest {
1428
1428
  */
1429
1429
  export interface Instance {
1430
1430
  /**
1431
- * 实例ID
1431
+ * 实例ID,可通过调用接口[DescribeInstances](https://cloud.tencent.com/document/product/213/15728)获取。
1432
1432
  */
1433
1433
  InstanceId: string;
1434
1434
  /**
1435
- * 镜像ID
1435
+ * 镜像ID,可通过调用接口[DescribeImages](https://cloud.tencent.com/document/product/213/15715)获取。
1436
1436
  */
1437
1437
  ImageId?: string;
1438
1438
  /**
@@ -2417,7 +2417,7 @@ export interface DescribeTaskRequest {
2417
2417
  */
2418
2418
  export interface AttachInstancesRequest {
2419
2419
  /**
2420
- * 计算环境ID,环境ID通过调用接口 [DescribeComputeEnv](https://cloud.tencent.com/document/api/599/15892)获取。
2420
+ * 计算环境ID,环境ID通过调用接口 [DescribeComputeEnvs](https://cloud.tencent.com/document/api/599/15893)获取。
2421
2421
  */
2422
2422
  EnvId: string;
2423
2423
  /**
@@ -2430,7 +2430,7 @@ export interface AttachInstancesRequest {
2430
2430
  */
2431
2431
  export interface DescribeComputeEnvsRequest {
2432
2432
  /**
2433
- * 计算环境ID列表,与Filters参数不能同时指定。最大数量上限100,环境ID通过调用接口 [DescribeComputeEnv](https://cloud.tencent.com/document/api/599/15892)获取。
2433
+ * 计算环境ID列表,与Filters参数不能同时指定。最大数量上限100
2434
2434
  */
2435
2435
  EnvIds?: Array<string>;
2436
2436
  /**
@@ -2595,7 +2595,7 @@ export declare type DescribeInstanceCategoriesRequest = null;
2595
2595
  */
2596
2596
  export interface ModifyComputeEnvRequest {
2597
2597
  /**
2598
- * 计算环境ID,环境ID通过调用接口 [DescribeComputeEnv](https://cloud.tencent.com/document/api/599/15892)获取。
2598
+ * 计算环境ID,环境ID通过调用接口 [DescribeComputeEnvs](https://cloud.tencent.com/document/api/599/15893)获取。
2599
2599
  */
2600
2600
  EnvId: string;
2601
2601
  /**