tencentcloud-sdk-nodejs-oceanus 4.1.53 → 4.1.69
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
|
@@ -352,6 +352,18 @@ export interface CreateJobConfigRequest {
|
|
|
352
352
|
* TaskManager 内存
|
|
353
353
|
*/
|
|
354
354
|
TaskManagerMem?: number;
|
|
355
|
+
/**
|
|
356
|
+
* 0=默认使用老的 1=使用新的
|
|
357
|
+
*/
|
|
358
|
+
UseOldSystemConnector?: number;
|
|
359
|
+
/**
|
|
360
|
+
* 压缩参数
|
|
361
|
+
*/
|
|
362
|
+
ProgramArgsAfterGzip?: string;
|
|
363
|
+
/**
|
|
364
|
+
* checkpoint 超时时间
|
|
365
|
+
*/
|
|
366
|
+
CheckpointTimeoutSecond?: number;
|
|
355
367
|
}
|
|
356
368
|
/**
|
|
357
369
|
* 集群的版本相关信息
|
|
@@ -2117,6 +2129,45 @@ export interface DeleteWorkSpaceResponse {
|
|
|
2117
2129
|
*/
|
|
2118
2130
|
RequestId?: string;
|
|
2119
2131
|
}
|
|
2132
|
+
/**
|
|
2133
|
+
* hadoopYarn资源信息
|
|
2134
|
+
*/
|
|
2135
|
+
export interface HadoopYarnItem {
|
|
2136
|
+
/**
|
|
2137
|
+
* ClusterGroupSerialId
|
|
2138
|
+
*/
|
|
2139
|
+
ClusterGroupSerialId: string;
|
|
2140
|
+
/**
|
|
2141
|
+
* 状态
|
|
2142
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2143
|
+
*/
|
|
2144
|
+
Status: number;
|
|
2145
|
+
/**
|
|
2146
|
+
* cpu
|
|
2147
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2148
|
+
*/
|
|
2149
|
+
Cpu: number;
|
|
2150
|
+
/**
|
|
2151
|
+
* mem
|
|
2152
|
+
*/
|
|
2153
|
+
Mem?: number;
|
|
2154
|
+
/**
|
|
2155
|
+
* 创建时间
|
|
2156
|
+
*/
|
|
2157
|
+
CreateTime?: string;
|
|
2158
|
+
/**
|
|
2159
|
+
* 更新时间
|
|
2160
|
+
*/
|
|
2161
|
+
UpdateTime?: string;
|
|
2162
|
+
/**
|
|
2163
|
+
* 配置文件内容
|
|
2164
|
+
*/
|
|
2165
|
+
Config?: string;
|
|
2166
|
+
/**
|
|
2167
|
+
* CreatorUin
|
|
2168
|
+
*/
|
|
2169
|
+
CreatorUin?: string;
|
|
2170
|
+
}
|
|
2120
2171
|
/**
|
|
2121
2172
|
* TriggerJobSavepoint返回参数结构体
|
|
2122
2173
|
*/
|
|
@@ -2757,6 +2808,10 @@ export interface ModifyJobRequest {
|
|
|
2757
2808
|
* 作业描述
|
|
2758
2809
|
*/
|
|
2759
2810
|
Description?: string;
|
|
2811
|
+
/**
|
|
2812
|
+
* 停止持续告警
|
|
2813
|
+
*/
|
|
2814
|
+
ContinueAlarm?: number;
|
|
2760
2815
|
}
|
|
2761
2816
|
/**
|
|
2762
2817
|
* GetMetaTable请求参数结构体
|
|
@@ -3050,6 +3105,11 @@ export interface Cluster {
|
|
|
3050
3105
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3051
3106
|
*/
|
|
3052
3107
|
Setats?: Setats;
|
|
3108
|
+
/**
|
|
3109
|
+
* []
|
|
3110
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3111
|
+
*/
|
|
3112
|
+
Yarns?: Array<HadoopYarnItem>;
|
|
3053
3113
|
}
|
|
3054
3114
|
/**
|
|
3055
3115
|
* 作业运行图
|
|
@@ -3336,6 +3396,10 @@ export interface JobV1 {
|
|
|
3336
3396
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3337
3397
|
*/
|
|
3338
3398
|
ProgressDesc?: string;
|
|
3399
|
+
/**
|
|
3400
|
+
* 停止持续告警
|
|
3401
|
+
*/
|
|
3402
|
+
ContinueAlarm?: number;
|
|
3339
3403
|
}
|
|
3340
3404
|
/**
|
|
3341
3405
|
* 作业配置详情
|
|
@@ -3528,6 +3592,10 @@ export interface JobConfig {
|
|
|
3528
3592
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3529
3593
|
*/
|
|
3530
3594
|
JobConfigItem?: JobConfig;
|
|
3595
|
+
/**
|
|
3596
|
+
* checkpoint 超时时间
|
|
3597
|
+
*/
|
|
3598
|
+
CheckpointTimeoutSecond?: number;
|
|
3531
3599
|
}
|
|
3532
3600
|
/**
|
|
3533
3601
|
* DescribeResourceConfigs请求参数结构体
|