tencentcloud-sdk-nodejs 4.0.1036 → 4.0.1038

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.
Files changed (48) hide show
  1. package/package.json +1 -1
  2. package/src/common/sdk_version.ts +1 -1
  3. package/src/services/asr/v20190614/asr_client.ts +1 -1
  4. package/src/services/batch/v20170312/batch_models.ts +0 -30
  5. package/src/services/ccc/v20200210/ccc_client.ts +6 -2
  6. package/src/services/ccc/v20200210/ccc_models.ts +7 -7
  7. package/src/services/clb/v20180317/clb_client.ts +69 -8
  8. package/src/services/clb/v20180317/clb_models.ts +401 -248
  9. package/src/services/cvm/v20170312/cvm_models.ts +0 -32
  10. package/src/services/cwp/v20180228/cwp_models.ts +2 -20
  11. package/src/services/dts/v20211206/dts_models.ts +1 -1
  12. package/src/services/emr/v20190103/emr_client.ts +33 -20
  13. package/src/services/emr/v20190103/emr_models.ts +311 -256
  14. package/src/services/ess/v20201111/ess_models.ts +2 -2
  15. package/src/services/essbasic/v20210526/essbasic_models.ts +2 -2
  16. package/src/services/live/v20180801/live_models.ts +4 -0
  17. package/src/services/lkeap/v20240522/lkeap_client.ts +8 -5
  18. package/src/services/rce/v20201103/rce_models.ts +15 -65
  19. package/src/services/tcr/v20190924/tcr_models.ts +6 -13
  20. package/src/services/trtc/v20190722/trtc_models.ts +4 -31
  21. package/src/services/waf/v20180125/waf_client.ts +1 -0
  22. package/src/services/waf/v20180125/waf_models.ts +102 -15
  23. package/tencentcloud/common/sdk_version.d.ts +1 -1
  24. package/tencentcloud/common/sdk_version.js +1 -1
  25. package/tencentcloud/services/asr/v20190614/asr_client.d.ts +1 -1
  26. package/tencentcloud/services/asr/v20190614/asr_client.js +1 -1
  27. package/tencentcloud/services/batch/v20170312/batch_models.d.ts +0 -30
  28. package/tencentcloud/services/ccc/v20200210/ccc_client.d.ts +5 -1
  29. package/tencentcloud/services/ccc/v20200210/ccc_client.js +5 -1
  30. package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +7 -7
  31. package/tencentcloud/services/clb/v20180317/clb_client.d.ts +21 -1
  32. package/tencentcloud/services/clb/v20180317/clb_client.js +30 -0
  33. package/tencentcloud/services/clb/v20180317/clb_models.d.ts +390 -248
  34. package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +0 -32
  35. package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +2 -20
  36. package/tencentcloud/services/dts/v20211206/dts_models.d.ts +1 -1
  37. package/tencentcloud/services/emr/v20190103/emr_client.d.ts +7 -3
  38. package/tencentcloud/services/emr/v20190103/emr_client.js +9 -3
  39. package/tencentcloud/services/emr/v20190103/emr_models.d.ts +288 -236
  40. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +2 -2
  41. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +2 -2
  42. package/tencentcloud/services/live/v20180801/live_models.d.ts +4 -0
  43. package/tencentcloud/services/lkeap/v20240522/lkeap_client.d.ts +8 -5
  44. package/tencentcloud/services/lkeap/v20240522/lkeap_client.js +8 -5
  45. package/tencentcloud/services/rce/v20201103/rce_models.d.ts +15 -65
  46. package/tencentcloud/services/tcr/v20190924/tcr_models.d.ts +6 -13
  47. package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +4 -31
  48. package/tencentcloud/services/waf/v20180125/waf_models.d.ts +101 -15
@@ -918,27 +918,34 @@ export interface EmrProductConfigDetail {
918
918
  PublicKeyId?: string;
919
919
  }
920
920
  /**
921
- * DescribeInstances返回参数结构体
921
+ * ResetYarnConfig请求参数结构体
922
922
  */
923
- export interface DescribeInstancesResponse {
923
+ export interface ResetYarnConfigRequest {
924
924
  /**
925
- * 符合条件的实例总数。
925
+ * emr集群的英文id
926
926
  */
927
- TotalCnt?: number;
927
+ InstanceId: string;
928
928
  /**
929
- * EMR实例详细信息列表。
930
- 注意:此字段可能返回 null,表示取不到有效值。
929
+ * 要重置的配置别名,可选值:
930
+
931
+ - capacityLabel:重置标签管理的配置
932
+ - fair:重置公平调度的配置
933
+ - capacity:重置容量调度的配置
931
934
  */
932
- ClusterList?: Array<ClusterInstancesInfo>;
935
+ Key?: string;
936
+ }
937
+ /**
938
+ * 弹性扩缩容按天重复任务描述
939
+ */
940
+ export interface DayRepeatStrategy {
933
941
  /**
934
- * 实例关联的标签键列表。
935
- 注意:此字段可能返回 null,表示取不到有效值。
942
+ * 重复任务执行的具体时刻,例如"01:02:00"
936
943
  */
937
- TagKeys?: Array<string>;
944
+ ExecuteAtTimeOfDay: string;
938
945
  /**
939
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
946
+ * 每隔Step天执行一次
940
947
  */
941
- RequestId?: string;
948
+ Step: number;
942
949
  }
943
950
  /**
944
951
  * DescribeTrinoQueryInfo返回参数结构体
@@ -1146,13 +1153,33 @@ export interface Dps {
1146
1153
  Value?: string;
1147
1154
  }
1148
1155
  /**
1149
- * TerminateTasks返回参数结构体
1156
+ * DescribeSparkQueries请求参数结构体
1150
1157
  */
1151
- export interface TerminateTasksResponse {
1158
+ export interface DescribeSparkQueriesRequest {
1152
1159
  /**
1153
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1160
+ * 集群ID
1154
1161
  */
1155
- RequestId?: string;
1162
+ InstanceId: string;
1163
+ /**
1164
+ * 开始时间
1165
+ */
1166
+ StartTime: number;
1167
+ /**
1168
+ * 结束时间
1169
+ */
1170
+ EndTime: number;
1171
+ /**
1172
+ * 分页起始偏移,从0开始
1173
+ */
1174
+ Offset: number;
1175
+ /**
1176
+ * 分页大小,合法范围[1,100]
1177
+ */
1178
+ Limit: number;
1179
+ /**
1180
+ * 执行状态:RUNNING,COMPLETED,FAILED
1181
+ */
1182
+ Status?: Array<string>;
1156
1183
  }
1157
1184
  /**
1158
1185
  * DeleteAutoScaleStrategy返回参数结构体
@@ -1855,21 +1882,27 @@ export interface ScaleOutInstanceRequest {
1855
1882
  ComputeResourceId?: string;
1856
1883
  }
1857
1884
  /**
1858
- * ResetYarnConfig请求参数结构体
1885
+ * DescribeInstanceRenewNodes返回参数结构体
1859
1886
  */
1860
- export interface ResetYarnConfigRequest {
1887
+ export interface DescribeInstanceRenewNodesResponse {
1861
1888
  /**
1862
- * emr集群的英文id
1889
+ * 查询到的节点总数
1863
1890
  */
1864
- InstanceId: string;
1891
+ TotalCnt?: number;
1865
1892
  /**
1866
- * 要重置的配置别名,可选值:
1867
-
1868
- - capacityLabel:重置标签管理的配置
1869
- - fair:重置公平调度的配置
1870
- - capacity:重置容量调度的配置
1893
+ * 节点详细信息列表
1894
+ 注意:此字段可能返回 null,表示取不到有效值。
1871
1895
  */
1872
- Key?: string;
1896
+ NodeList?: Array<RenewInstancesInfo>;
1897
+ /**
1898
+ * 用户所有的标签键列表
1899
+ 注意:此字段可能返回 null,表示取不到有效值。
1900
+ */
1901
+ MetaInfo?: Array<string>;
1902
+ /**
1903
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1904
+ */
1905
+ RequestId?: string;
1873
1906
  }
1874
1907
  /**
1875
1908
  * Kyuubi查询信息
@@ -2028,33 +2061,27 @@ export interface AttachDisksRequest {
2028
2061
  DeleteWithInstance?: boolean;
2029
2062
  }
2030
2063
  /**
2031
- * DescribeSparkQueries请求参数结构体
2064
+ * DescribeInstances返回参数结构体
2032
2065
  */
2033
- export interface DescribeSparkQueriesRequest {
2034
- /**
2035
- * 集群ID
2036
- */
2037
- InstanceId: string;
2038
- /**
2039
- * 开始时间
2040
- */
2041
- StartTime: number;
2066
+ export interface DescribeInstancesResponse {
2042
2067
  /**
2043
- * 结束时间
2068
+ * 符合条件的实例总数。
2044
2069
  */
2045
- EndTime: number;
2070
+ TotalCnt?: number;
2046
2071
  /**
2047
- * 分页起始偏移,从0开始
2072
+ * EMR实例详细信息列表。
2073
+ 注意:此字段可能返回 null,表示取不到有效值。
2048
2074
  */
2049
- Offset: number;
2075
+ ClusterList?: Array<ClusterInstancesInfo>;
2050
2076
  /**
2051
- * 分页大小,合法范围[1,100]
2077
+ * 实例关联的标签键列表。
2078
+ 注意:此字段可能返回 null,表示取不到有效值。
2052
2079
  */
2053
- Limit: number;
2080
+ TagKeys?: Array<string>;
2054
2081
  /**
2055
- * 执行状态:RUNNING,COMPLETED,FAILED
2082
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2056
2083
  */
2057
- Status?: Array<string>;
2084
+ RequestId?: string;
2058
2085
  }
2059
2086
  /**
2060
2087
  * ModifyYarnDeploy返回参数结构体
@@ -3875,51 +3902,22 @@ export interface TerminateClusterNodesResponse {
3875
3902
  RequestId?: string;
3876
3903
  }
3877
3904
  /**
3878
- * 资源调度-配置集信息
3905
+ * DescribeDAGInfo返回参数结构体
3879
3906
  */
3880
- export interface ConfigSetInfo {
3907
+ export interface DescribeDAGInfoResponse {
3881
3908
  /**
3882
- * 配置集名称
3909
+ * 总数,分页查询时使用
3883
3910
  */
3884
- ConfigSet: string;
3911
+ TotalCount?: number;
3885
3912
  /**
3886
- * 容量调度器会使用,里面设置了标签相关的配置。key的取值与**DescribeYarnQueue**返回的字段一致。
3887
- key的取值信息如下:
3888
- - labelName,标签名称,标签管理里的标签。
3889
- - capacity,容量,取值为**数字字符串**
3890
- - maximum-capacity,最大容量,取值为**数字字符串**
3913
+ * Starrocks 查询信息列表
3891
3914
  注意:此字段可能返回 null,表示取不到有效值。
3892
3915
  */
3893
- LabelParams?: Array<ItemSeq>;
3916
+ DAGInfoList?: Array<DAGInfo>;
3894
3917
  /**
3895
- * 设置配置集相关的参数。key的取值与**DescribeYarnQueue**返回的字段一致。
3896
- ###### 公平调度器
3897
- key的取值信息如下:
3898
- - minResources,最大资源量,取值为**YarnResource类型的json串**或**null**
3899
- - maxResources,最大资源量,取值为**YarnResource类型的json串**或**null**
3900
- - maxChildResources,能够分配给为未声明子队列的最大资源量,取值为**数字字符串**或**null**
3901
- - maxRunningApps,最高可同时处于运行的App数量,取值为**数字字符串**或**null**
3902
- - weight,权重,取值为**数字字符串**或**null**
3903
- - maxAMShare,App Master最大份额,取值为**数字字符串**或**null**,其中数字的范围是[0,1]或-1
3904
-
3905
- ```
3906
- type YarnResource struct {
3907
- Vcores *int `json:"vcores"`
3908
- Memory *int `json:"memory"`
3909
- Type *string `json:"type"` // 取值为`percent`或`null`当值为`percent`时,表示使用的百分比,否则就是使用的绝对数值。只有maxResources、maxChildResources才可以取值为`percent`
3910
- }
3911
- ```
3912
-
3913
- ###### 容量调度器
3914
- key的取值信息如下:
3915
- - minimum-user-limit-percent,用户最小容量,取值为**YarnResource类型的json串**或**null**,其中数字的范围是[0,100]
3916
- - user-limit-factor,用户资源因子,取值为**YarnResource类型的json串**或**null**
3917
- - maximum-applications,最大应用数Max-Applications,取值为**数字字符串**或**null**,其中数字为正整数
3918
- - maximum-am-resource-percent,最大AM比例,取值为**数字字符串**或**null**,其中数字的范围是[0,1]或-1
3919
- - default-application-priority,资源池优先级,取值为**数字字符串**或**null**,其中数字为正整数
3920
- 注意:此字段可能返回 null,表示取不到有效值。
3918
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3921
3919
  */
3922
- BasicParams?: Array<Item>;
3920
+ RequestId?: string;
3923
3921
  }
3924
3922
  /**
3925
3923
  * 动态生成的变更详情
@@ -3974,37 +3972,33 @@ export interface DescribeInsightListRequest {
3974
3972
  Type?: string;
3975
3973
  }
3976
3974
  /**
3977
- * DescribeYarnScheduleHistory请求参数结构体
3975
+ * DescribeSLInstanceList请求参数结构体
3978
3976
  */
3979
- export interface DescribeYarnScheduleHistoryRequest {
3980
- /**
3981
- * 集群id
3982
- */
3983
- InstanceId: string;
3977
+ export interface DescribeSLInstanceListRequest {
3984
3978
  /**
3985
- * 开始时间
3979
+ * 实例筛选策略。取值范围:<li>clusterList:表示查询除了已销毁实例之外的实例列表。</li><li>monitorManage:表示查询除了已销毁、创建中以及创建失败的实例之外的实例列表。</li>
3986
3980
  */
3987
- StartTime?: number;
3981
+ DisplayStrategy: string;
3988
3982
  /**
3989
- * 结束时间
3983
+ * 页编号,默认值为0,表示第一页。
3990
3984
  */
3991
- EndTime?: number;
3985
+ Offset?: number;
3992
3986
  /**
3993
- * 页码
3987
+ * 每页返回数量,默认值为10,最大值为100。
3994
3988
  */
3995
3989
  Limit?: number;
3996
3990
  /**
3997
- * 页大小
3991
+ * 排序字段。取值范围:<li>clusterId:表示按照实例ID排序。</li><li>addTime:表示按照实例创建时间排序。</li><li>status:表示按照实例的状态码排序。</li>
3998
3992
  */
3999
- Offset?: number;
3993
+ OrderField?: string;
4000
3994
  /**
4001
- * 调度器类型 可选值为“ALL”,"Capacity Scheduler", "Fair Scheduler"
3995
+ * 按照OrderField升序或者降序进行排序。取值范围:<li>0:表示升序。</li><li>1:表示降序。</li>默认值为0。
4002
3996
  */
4003
- SchedulerType?: string;
3997
+ Asc?: number;
4004
3998
  /**
4005
- * 任务类型0:等待执行,1:执行中,2:完成,-1:失败 ,-99:全部
3999
+ * 自定义查询过滤器。示例:<li>根据ClusterId过滤实例:[{"Name":"ClusterId","Values":["emr-xxxxxxxx"]}]</li><li>根据clusterName过滤实例:[{"Name": "ClusterName","Values": ["cluster_name"]}]</li><li>根据ClusterStatus过滤实例:[{"Name": "ClusterStatus","Values": ["2"]}]</li>
4006
4000
  */
4007
- TaskState?: number;
4001
+ Filters?: Array<Filters>;
4008
4002
  }
4009
4003
  /**
4010
4004
  * StartStopServiceOrMonitor返回参数结构体
@@ -4062,27 +4056,51 @@ export interface DescribeYarnQueueRequest {
4062
4056
  Scheduler: string;
4063
4057
  }
4064
4058
  /**
4065
- * DescribeInstanceRenewNodes返回参数结构体
4059
+ * 资源调度-配置集信息
4066
4060
  */
4067
- export interface DescribeInstanceRenewNodesResponse {
4061
+ export interface ConfigSetInfo {
4068
4062
  /**
4069
- * 查询到的节点总数
4063
+ * 配置集名称
4070
4064
  */
4071
- TotalCnt?: number;
4065
+ ConfigSet: string;
4072
4066
  /**
4073
- * 节点详细信息列表
4067
+ * 容量调度器会使用,里面设置了标签相关的配置。key的取值与**DescribeYarnQueue**返回的字段一致。
4068
+ key的取值信息如下:
4069
+ - labelName,标签名称,标签管理里的标签。
4070
+ - capacity,容量,取值为**数字字符串**
4071
+ - maximum-capacity,最大容量,取值为**数字字符串**
4074
4072
  注意:此字段可能返回 null,表示取不到有效值。
4075
4073
  */
4076
- NodeList?: Array<RenewInstancesInfo>;
4074
+ LabelParams?: Array<ItemSeq>;
4077
4075
  /**
4078
- * 用户所有的标签键列表
4076
+ * 设置配置集相关的参数。key的取值与**DescribeYarnQueue**返回的字段一致。
4077
+ ###### 公平调度器
4078
+ key的取值信息如下:
4079
+ - minResources,最大资源量,取值为**YarnResource类型的json串**或**null**
4080
+ - maxResources,最大资源量,取值为**YarnResource类型的json串**或**null**
4081
+ - maxChildResources,能够分配给为未声明子队列的最大资源量,取值为**数字字符串**或**null**
4082
+ - maxRunningApps,最高可同时处于运行的App数量,取值为**数字字符串**或**null**
4083
+ - weight,权重,取值为**数字字符串**或**null**
4084
+ - maxAMShare,App Master最大份额,取值为**数字字符串**或**null**,其中数字的范围是[0,1]或-1
4085
+
4086
+ ```
4087
+ type YarnResource struct {
4088
+ Vcores *int `json:"vcores"`
4089
+ Memory *int `json:"memory"`
4090
+ Type *string `json:"type"` // 取值为`percent`或`null`当值为`percent`时,表示使用的百分比,否则就是使用的绝对数值。只有maxResources、maxChildResources才可以取值为`percent`
4091
+ }
4092
+ ```
4093
+
4094
+ ###### 容量调度器
4095
+ key的取值信息如下:
4096
+ - minimum-user-limit-percent,用户最小容量,取值为**YarnResource类型的json串**或**null**,其中数字的范围是[0,100]
4097
+ - user-limit-factor,用户资源因子,取值为**YarnResource类型的json串**或**null**
4098
+ - maximum-applications,最大应用数Max-Applications,取值为**数字字符串**或**null**,其中数字为正整数
4099
+ - maximum-am-resource-percent,最大AM比例,取值为**数字字符串**或**null**,其中数字的范围是[0,1]或-1
4100
+ - default-application-priority,资源池优先级,取值为**数字字符串**或**null**,其中数字为正整数
4079
4101
  注意:此字段可能返回 null,表示取不到有效值。
4080
4102
  */
4081
- MetaInfo?: Array<string>;
4082
- /**
4083
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4084
- */
4085
- RequestId?: string;
4103
+ BasicParams?: Array<Item>;
4086
4104
  }
4087
4105
  /**
4088
4106
  * ModifyResource请求参数结构体
@@ -4316,6 +4334,23 @@ export interface DescribeYarnScheduleHistoryResponse {
4316
4334
  */
4317
4335
  RequestId?: string;
4318
4336
  }
4337
+ /**
4338
+ * DescribeDAGInfo请求参数结构体
4339
+ */
4340
+ export interface DescribeDAGInfoRequest {
4341
+ /**
4342
+ * 集群ID
4343
+ */
4344
+ InstanceID: string;
4345
+ /**
4346
+ * DAG类型,目前只支持STARROCKS
4347
+ */
4348
+ Type: string;
4349
+ /**
4350
+ * 查询ID列表,最大长度为1
4351
+ */
4352
+ IDList: Array<string>;
4353
+ }
4319
4354
  /**
4320
4355
  * DescribeAutoScaleGroupGlobalConf返回参数结构体
4321
4356
  */
@@ -4400,53 +4435,13 @@ export interface Resource {
4400
4435
  DiskNum?: number;
4401
4436
  }
4402
4437
  /**
4403
- * DescribeEmrApplicationStatics请求参数结构体
4438
+ * ResetYarnConfig返回参数结构体
4404
4439
  */
4405
- export interface DescribeEmrApplicationStaticsRequest {
4406
- /**
4407
- * 集群id
4408
- */
4409
- InstanceId: string;
4410
- /**
4411
- * 起始时间,时间戳(秒)
4412
- */
4413
- StartTime?: number;
4414
- /**
4415
- * 结束时间,时间戳(秒)
4416
- */
4417
- EndTime?: number;
4418
- /**
4419
- * 过滤的队列名
4420
- */
4421
- Queues?: Array<string>;
4422
- /**
4423
- * 过滤的用户名
4424
- */
4425
- Users?: Array<string>;
4426
- /**
4427
- * 过滤的作业类型
4428
- */
4429
- ApplicationTypes?: Array<string>;
4430
- /**
4431
- * 分组字段,可选:queue, user, applicationType
4432
- */
4433
- GroupBy?: Array<string>;
4434
- /**
4435
- * 排序字段,可选:sumMemorySeconds, sumVCoreSeconds, sumHDFSBytesWritten, sumHDFSBytesRead
4436
- */
4437
- OrderBy?: string;
4438
- /**
4439
- * 是否顺序排序,0-逆序,1-正序
4440
- */
4441
- IsAsc?: number;
4442
- /**
4443
- * 页号
4444
- */
4445
- Offset?: number;
4440
+ export interface ResetYarnConfigResponse {
4446
4441
  /**
4447
- * 页容量,范围为[10,100]
4442
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4448
4443
  */
4449
- Limit?: number;
4444
+ RequestId?: string;
4450
4445
  }
4451
4446
  /**
4452
4447
  * DescribeClusterNodes返回参数结构体
@@ -4502,41 +4497,37 @@ export interface DescribeYarnApplicationsRequest {
4502
4497
  Limit: number;
4503
4498
  }
4504
4499
  /**
4505
- * InquiryPriceUpdateInstance返回参数结构体
4500
+ * DescribeYarnScheduleHistory请求参数结构体
4506
4501
  */
4507
- export interface InquiryPriceUpdateInstanceResponse {
4502
+ export interface DescribeYarnScheduleHistoryRequest {
4508
4503
  /**
4509
- * 原价,单位为元。
4504
+ * 集群id
4510
4505
  */
4511
- OriginalCost?: number;
4506
+ InstanceId: string;
4512
4507
  /**
4513
- * 折扣价,单位为元。
4508
+ * 开始时间
4514
4509
  */
4515
- DiscountCost?: number;
4510
+ StartTime?: number;
4516
4511
  /**
4517
- * 变配的时间单位。取值范围:
4518
- <li>s:表示秒。</li>
4519
- <li>m:表示月份。</li>
4512
+ * 结束时间
4520
4513
  */
4521
- TimeUnit?: string;
4514
+ EndTime?: number;
4522
4515
  /**
4523
- * 变配的时长。
4516
+ * 页码
4524
4517
  */
4525
- TimeSpan?: number;
4518
+ Limit?: number;
4526
4519
  /**
4527
- * 价格详情
4528
- 注意:此字段可能返回 null,表示取不到有效值。
4520
+ * 页大小
4529
4521
  */
4530
- PriceDetail?: Array<PriceDetail>;
4522
+ Offset?: number;
4531
4523
  /**
4532
- * 新配置价格
4533
- 注意:此字段可能返回 null,表示取不到有效值。
4524
+ * 调度器类型 可选值为“ALL”,"Capacity Scheduler", "Fair Scheduler"
4534
4525
  */
4535
- NewConfigPrice?: PriceResult;
4526
+ SchedulerType?: string;
4536
4527
  /**
4537
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4528
+ * 任务类型0:等待执行,1:执行中,2:完成,-1:失败 ,-99:全部
4538
4529
  */
4539
- RequestId?: string;
4530
+ TaskState?: number;
4540
4531
  }
4541
4532
  /**
4542
4533
  * 资源描述
@@ -4830,6 +4821,36 @@ export interface ModifyResourceSchedulerRequest {
4830
4821
  */
4831
4822
  NewValue: string;
4832
4823
  }
4824
+ /**
4825
+ * 表格schema信息
4826
+ */
4827
+ export interface TableSchemaItem {
4828
+ /**
4829
+ * 列标识
4830
+ */
4831
+ Name?: string;
4832
+ /**
4833
+ * 是否可按该列排序
4834
+ */
4835
+ Sortable?: boolean;
4836
+ /**
4837
+ * 是否可筛选
4838
+ */
4839
+ WithFilter?: boolean;
4840
+ /**
4841
+ * 筛选的候选集
4842
+ 注意:此字段可能返回 null,表示取不到有效值。
4843
+ */
4844
+ Candidates?: Array<string>;
4845
+ /**
4846
+ * 是否可点击
4847
+ */
4848
+ Clickable?: boolean;
4849
+ /**
4850
+ * 展示的名字
4851
+ */
4852
+ Title?: string;
4853
+ }
4833
4854
  /**
4834
4855
  * 登录设置
4835
4856
  */
@@ -5279,33 +5300,21 @@ export interface DescribeCvmQuotaResponse {
5279
5300
  RequestId?: string;
5280
5301
  }
5281
5302
  /**
5282
- * DescribeSLInstanceList请求参数结构体
5303
+ * DAG信息
5283
5304
  */
5284
- export interface DescribeSLInstanceListRequest {
5285
- /**
5286
- * 实例筛选策略。取值范围:<li>clusterList:表示查询除了已销毁实例之外的实例列表。</li><li>monitorManage:表示查询除了已销毁、创建中以及创建失败的实例之外的实例列表。</li>
5287
- */
5288
- DisplayStrategy: string;
5305
+ export interface DAGInfo {
5289
5306
  /**
5290
- * 页编号,默认值为0,表示第一页。
5291
- */
5292
- Offset?: number;
5293
- /**
5294
- * 每页返回数量,默认值为10,最大值为100。
5295
- */
5296
- Limit?: number;
5297
- /**
5298
- * 排序字段。取值范围:<li>clusterId:表示按照实例ID排序。</li><li>addTime:表示按照实例创建时间排序。</li><li>status:表示按照实例的状态码排序。</li>
5307
+ * 查询ID
5299
5308
  */
5300
- OrderField?: string;
5309
+ ID?: string;
5301
5310
  /**
5302
- * 按照OrderField升序或者降序进行排序。取值范围:<li>0:表示升序。</li><li>1:表示降序。</li>默认值为0。
5311
+ * DAG类型,目前只支持starrocks
5303
5312
  */
5304
- Asc?: number;
5313
+ Type?: string;
5305
5314
  /**
5306
- * 自定义查询过滤器。示例:<li>根据ClusterId过滤实例:[{"Name":"ClusterId","Values":["emr-xxxxxxxx"]}]</li><li>根据clusterName过滤实例:[{"Name": "ClusterName","Values": ["cluster_name"]}]</li><li>根据ClusterStatus过滤实例:[{"Name": "ClusterStatus","Values": ["2"]}]</li>
5315
+ * 返回的DAG的JSON字符串
5307
5316
  */
5308
- Filters?: Array<Filters>;
5317
+ Content?: string;
5309
5318
  }
5310
5319
  /**
5311
5320
  * CreateCluster请求参数结构体
@@ -6671,17 +6680,53 @@ export interface Period {
6671
6680
  TimeUnit?: string;
6672
6681
  }
6673
6682
  /**
6674
- * 弹性扩缩容按天重复任务描述
6683
+ * DescribeEmrApplicationStatics请求参数结构体
6675
6684
  */
6676
- export interface DayRepeatStrategy {
6685
+ export interface DescribeEmrApplicationStaticsRequest {
6677
6686
  /**
6678
- * 重复任务执行的具体时刻,例如"01:02:00"
6687
+ * 集群id
6679
6688
  */
6680
- ExecuteAtTimeOfDay: string;
6689
+ InstanceId: string;
6681
6690
  /**
6682
- * 每隔Step天执行一次
6691
+ * 起始时间,时间戳(秒)
6683
6692
  */
6684
- Step: number;
6693
+ StartTime?: number;
6694
+ /**
6695
+ * 结束时间,时间戳(秒)
6696
+ */
6697
+ EndTime?: number;
6698
+ /**
6699
+ * 过滤的队列名
6700
+ */
6701
+ Queues?: Array<string>;
6702
+ /**
6703
+ * 过滤的用户名
6704
+ */
6705
+ Users?: Array<string>;
6706
+ /**
6707
+ * 过滤的作业类型
6708
+ */
6709
+ ApplicationTypes?: Array<string>;
6710
+ /**
6711
+ * 分组字段,可选:queue, user, applicationType
6712
+ */
6713
+ GroupBy?: Array<string>;
6714
+ /**
6715
+ * 排序字段,可选:sumMemorySeconds, sumVCoreSeconds, sumHDFSBytesWritten, sumHDFSBytesRead
6716
+ */
6717
+ OrderBy?: string;
6718
+ /**
6719
+ * 是否顺序排序,0-逆序,1-正序
6720
+ */
6721
+ IsAsc?: number;
6722
+ /**
6723
+ * 页号
6724
+ */
6725
+ Offset?: number;
6726
+ /**
6727
+ * 页容量,范围为[10,100]
6728
+ */
6729
+ Limit?: number;
6685
6730
  }
6686
6731
  /**
6687
6732
  * ModifyInstanceBasic请求参数结构体
@@ -8069,9 +8114,37 @@ export interface RestartPolicy {
8069
8114
  IsDefault?: string;
8070
8115
  }
8071
8116
  /**
8072
- * ModifyYarnQueueV2返回参数结构体
8117
+ * InquiryPriceUpdateInstance返回参数结构体
8073
8118
  */
8074
- export interface ModifyYarnQueueV2Response {
8119
+ export interface InquiryPriceUpdateInstanceResponse {
8120
+ /**
8121
+ * 原价,单位为元。
8122
+ */
8123
+ OriginalCost?: number;
8124
+ /**
8125
+ * 折扣价,单位为元。
8126
+ */
8127
+ DiscountCost?: number;
8128
+ /**
8129
+ * 变配的时间单位。取值范围:
8130
+ <li>s:表示秒。</li>
8131
+ <li>m:表示月份。</li>
8132
+ */
8133
+ TimeUnit?: string;
8134
+ /**
8135
+ * 变配的时长。
8136
+ */
8137
+ TimeSpan?: number;
8138
+ /**
8139
+ * 价格详情
8140
+ 注意:此字段可能返回 null,表示取不到有效值。
8141
+ */
8142
+ PriceDetail?: Array<PriceDetail>;
8143
+ /**
8144
+ * 新配置价格
8145
+ 注意:此字段可能返回 null,表示取不到有效值。
8146
+ */
8147
+ NewConfigPrice?: PriceResult;
8075
8148
  /**
8076
8149
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8077
8150
  */
@@ -8430,15 +8503,6 @@ export interface Item {
8430
8503
  */
8431
8504
  Value: string;
8432
8505
  }
8433
- /**
8434
- * ResetYarnConfig返回参数结构体
8435
- */
8436
- export interface ResetYarnConfigResponse {
8437
- /**
8438
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8439
- */
8440
- RequestId?: string;
8441
- }
8442
8506
  /**
8443
8507
  * SetNodeResourceConfigDefault返回参数结构体
8444
8508
  */
@@ -8467,34 +8531,13 @@ export interface DescribeStarRocksQueryInfoResponse {
8467
8531
  RequestId?: string;
8468
8532
  }
8469
8533
  /**
8470
- * 表格schema信息
8534
+ * ModifyYarnQueueV2返回参数结构体
8471
8535
  */
8472
- export interface TableSchemaItem {
8473
- /**
8474
- * 列标识
8475
- */
8476
- Name?: string;
8477
- /**
8478
- * 是否可按该列排序
8479
- */
8480
- Sortable?: boolean;
8481
- /**
8482
- * 是否可筛选
8483
- */
8484
- WithFilter?: boolean;
8485
- /**
8486
- * 筛选的候选集
8487
- 注意:此字段可能返回 null,表示取不到有效值。
8488
- */
8489
- Candidates?: Array<string>;
8490
- /**
8491
- * 是否可点击
8492
- */
8493
- Clickable?: boolean;
8536
+ export interface ModifyYarnQueueV2Response {
8494
8537
  /**
8495
- * 展示的名字
8538
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8496
8539
  */
8497
- Title?: string;
8540
+ RequestId?: string;
8498
8541
  }
8499
8542
  /**
8500
8543
  * 资源调度 - 队列修改信息
@@ -8807,6 +8850,15 @@ export interface EmrPrice {
8807
8850
  */
8808
8851
  SupportSpotPaid?: boolean;
8809
8852
  }
8853
+ /**
8854
+ * TerminateTasks返回参数结构体
8855
+ */
8856
+ export interface TerminateTasksResponse {
8857
+ /**
8858
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8859
+ */
8860
+ RequestId?: string;
8861
+ }
8810
8862
  /**
8811
8863
  * 节点硬件信息
8812
8864
  */