tencentcloud-sdk-nodejs-oceanus 4.1.86 → 4.1.107
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
|
@@ -364,6 +364,10 @@ export interface CreateJobConfigRequest {
|
|
|
364
364
|
* checkpoint 超时时间
|
|
365
365
|
*/
|
|
366
366
|
CheckpointTimeoutSecond?: number;
|
|
367
|
+
/**
|
|
368
|
+
* checkpoint 间隔时间
|
|
369
|
+
*/
|
|
370
|
+
CheckpointIntervalSecond?: number;
|
|
367
371
|
}
|
|
368
372
|
/**
|
|
369
373
|
* 集群的版本相关信息
|
|
@@ -1182,6 +1186,26 @@ export interface CreateWorkSpaceResponse {
|
|
|
1182
1186
|
*/
|
|
1183
1187
|
RequestId?: string;
|
|
1184
1188
|
}
|
|
1189
|
+
/**
|
|
1190
|
+
* 多可用区支持备区域
|
|
1191
|
+
*/
|
|
1192
|
+
export interface SlaveZone {
|
|
1193
|
+
/**
|
|
1194
|
+
* vpc
|
|
1195
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1196
|
+
*/
|
|
1197
|
+
VpcId?: string;
|
|
1198
|
+
/**
|
|
1199
|
+
* 子网
|
|
1200
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1201
|
+
*/
|
|
1202
|
+
SubnetId?: string;
|
|
1203
|
+
/**
|
|
1204
|
+
* 区
|
|
1205
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1206
|
+
*/
|
|
1207
|
+
Zone?: string;
|
|
1208
|
+
}
|
|
1185
1209
|
/**
|
|
1186
1210
|
* CreateJob返回参数结构体
|
|
1187
1211
|
*/
|
|
@@ -3120,6 +3144,20 @@ export interface Cluster {
|
|
|
3120
3144
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3121
3145
|
*/
|
|
3122
3146
|
Yarns?: Array<HadoopYarnItem>;
|
|
3147
|
+
/**
|
|
3148
|
+
* 0 单可用区 1多可用区
|
|
3149
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3150
|
+
*/
|
|
3151
|
+
DeploymentMode?: number;
|
|
3152
|
+
/**
|
|
3153
|
+
* 备可用区
|
|
3154
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3155
|
+
*/
|
|
3156
|
+
SlaveZones?: Array<SlaveZone>;
|
|
3157
|
+
/**
|
|
3158
|
+
* 集群的日志cos存储
|
|
3159
|
+
*/
|
|
3160
|
+
LogCOSBucket?: string;
|
|
3123
3161
|
}
|
|
3124
3162
|
/**
|
|
3125
3163
|
* 作业运行图
|
|
@@ -3606,6 +3644,10 @@ export interface JobConfig {
|
|
|
3606
3644
|
* checkpoint 超时时间
|
|
3607
3645
|
*/
|
|
3608
3646
|
CheckpointTimeoutSecond?: number;
|
|
3647
|
+
/**
|
|
3648
|
+
* checkpoint 间隔时间
|
|
3649
|
+
*/
|
|
3650
|
+
CheckpointIntervalSecond?: number;
|
|
3609
3651
|
}
|
|
3610
3652
|
/**
|
|
3611
3653
|
* DescribeResourceConfigs请求参数结构体
|