tencentcloud-sdk-nodejs-oceanus 4.0.1048 → 4.1.15
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/README.md +27 -5
- package/es/index.js +1 -0
- package/es/services/index.js +1 -0
- package/es/services/oceanus/index.js +4 -0
- package/es/services/oceanus/v20190422/index.js +6 -0
- package/es/services/oceanus/v20190422/oceanus_client.js +123 -0
- package/es/services/oceanus/v20190422/oceanus_models.js +0 -0
- package/package.json +26 -8
- package/tencentcloud/services/oceanus/v20190422/index.js +2 -1
- package/tencentcloud/services/oceanus/v20190422/oceanus_client.js +2 -1
- package/tencentcloud/services/oceanus/v20190422/oceanus_models.d.ts +6 -0
- package/index.d.ts +0 -2
- package/index.js +0 -6
- package/prettier.config.js +0 -38
- package/src/index.ts +0 -1
- package/src/services/index.ts +0 -1
- package/src/services/oceanus/index.ts +0 -5
- package/src/services/oceanus/v20190422/index.ts +0 -6
- package/src/services/oceanus/v20190422/oceanus_client.ts +0 -561
- package/src/services/oceanus/v20190422/oceanus_models.ts +0 -4180
- package/tsconfig.json +0 -33
- package/typings/index.d.ts +0 -2
|
@@ -1,4180 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
|
3
|
-
*
|
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing,
|
|
11
|
-
* software distributed under the License is distributed on an
|
|
12
|
-
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
13
|
-
* KIND, either express or implied. See the License for the
|
|
14
|
-
* specific language governing permissions and limitations
|
|
15
|
-
* under the License.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
* 复制作业单条明细结果
|
|
20
|
-
*/
|
|
21
|
-
export interface CopyJobResult {
|
|
22
|
-
/**
|
|
23
|
-
* 原作业id
|
|
24
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
25
|
-
*/
|
|
26
|
-
JobId: string
|
|
27
|
-
/**
|
|
28
|
-
* 原作业名称
|
|
29
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
30
|
-
*/
|
|
31
|
-
JobName: string
|
|
32
|
-
/**
|
|
33
|
-
* 新作业名称
|
|
34
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
35
|
-
*/
|
|
36
|
-
TargetJobName: string
|
|
37
|
-
/**
|
|
38
|
-
* 新作业id
|
|
39
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
40
|
-
*/
|
|
41
|
-
TargetJobId: string
|
|
42
|
-
/**
|
|
43
|
-
* 失败时候的信息
|
|
44
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
45
|
-
*/
|
|
46
|
-
Message: string
|
|
47
|
-
/**
|
|
48
|
-
* 0 成功 -1 失败
|
|
49
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
50
|
-
*/
|
|
51
|
-
Result: number
|
|
52
|
-
/**
|
|
53
|
-
* 目标集群名称
|
|
54
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
55
|
-
*/
|
|
56
|
-
ClusterName: string
|
|
57
|
-
/**
|
|
58
|
-
* 目标集群id
|
|
59
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
60
|
-
*/
|
|
61
|
-
ClusterId: string
|
|
62
|
-
/**
|
|
63
|
-
* 作业类型
|
|
64
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
65
|
-
*/
|
|
66
|
-
JobType: number
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
/**
|
|
70
|
-
* CreateResource请求参数结构体
|
|
71
|
-
*/
|
|
72
|
-
export interface CreateResourceRequest {
|
|
73
|
-
/**
|
|
74
|
-
* 资源位置
|
|
75
|
-
*/
|
|
76
|
-
ResourceLoc: ResourceLoc
|
|
77
|
-
/**
|
|
78
|
-
* 资源类型。目前只支持 JAR,取值为 1
|
|
79
|
-
*/
|
|
80
|
-
ResourceType: number
|
|
81
|
-
/**
|
|
82
|
-
* 资源描述
|
|
83
|
-
*/
|
|
84
|
-
Remark?: string
|
|
85
|
-
/**
|
|
86
|
-
* 资源名称
|
|
87
|
-
*/
|
|
88
|
-
Name?: string
|
|
89
|
-
/**
|
|
90
|
-
* 资源版本描述
|
|
91
|
-
*/
|
|
92
|
-
ResourceConfigRemark?: string
|
|
93
|
-
/**
|
|
94
|
-
* 目录ID
|
|
95
|
-
*/
|
|
96
|
-
FolderId?: string
|
|
97
|
-
/**
|
|
98
|
-
* 工作空间 SerialId
|
|
99
|
-
*/
|
|
100
|
-
WorkSpaceId?: string
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
/**
|
|
104
|
-
* ModifyFolder请求参数结构体
|
|
105
|
-
*/
|
|
106
|
-
export interface ModifyFolderRequest {
|
|
107
|
-
/**
|
|
108
|
-
* 文件夹ID(必填)
|
|
109
|
-
*/
|
|
110
|
-
SourceFolderId?: string
|
|
111
|
-
/**
|
|
112
|
-
* 如需拖拽文件夹,需传入目标文件夹ID
|
|
113
|
-
*/
|
|
114
|
-
TargetFolderId?: string
|
|
115
|
-
/**
|
|
116
|
-
* 如需修改文件夹名,需传入FolderName字段
|
|
117
|
-
*/
|
|
118
|
-
FolderName?: string
|
|
119
|
-
/**
|
|
120
|
-
* 文件夹类型,0是任务文件夹,1是依赖文件夹
|
|
121
|
-
*/
|
|
122
|
-
FolderType?: number
|
|
123
|
-
/**
|
|
124
|
-
* 批量移动的作业serial id 列表
|
|
125
|
-
*/
|
|
126
|
-
SourceJobIds?: Array<string>
|
|
127
|
-
/**
|
|
128
|
-
* 工作空间 SerialId
|
|
129
|
-
*/
|
|
130
|
-
WorkSpaceId?: string
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
/**
|
|
134
|
-
* DescribeJobSubmissionLog返回参数结构体
|
|
135
|
-
*/
|
|
136
|
-
export interface DescribeJobSubmissionLogResponse {
|
|
137
|
-
/**
|
|
138
|
-
* 日志搜索的游标,需要搜索更多时透传这个值
|
|
139
|
-
*/
|
|
140
|
-
Cursor?: string
|
|
141
|
-
/**
|
|
142
|
-
* 是否返回了所有的日志记录
|
|
143
|
-
*/
|
|
144
|
-
ListOver?: boolean
|
|
145
|
-
/**
|
|
146
|
-
* 作业启动的requestId
|
|
147
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
148
|
-
*/
|
|
149
|
-
JobRequestId?: string
|
|
150
|
-
/**
|
|
151
|
-
* 该时间段内符合关键字的所有的作业实例列表
|
|
152
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
153
|
-
*/
|
|
154
|
-
JobInstanceList?: Array<JobInstanceForSubmissionLog>
|
|
155
|
-
/**
|
|
156
|
-
* 废弃,请使用LogContentList
|
|
157
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
158
|
-
*/
|
|
159
|
-
LogList?: Array<string>
|
|
160
|
-
/**
|
|
161
|
-
* 日志列表
|
|
162
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
163
|
-
*/
|
|
164
|
-
LogContentList?: Array<LogContent>
|
|
165
|
-
/**
|
|
166
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
167
|
-
*/
|
|
168
|
-
RequestId?: string
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
/**
|
|
172
|
-
* DeleteJobs请求参数结构体
|
|
173
|
-
*/
|
|
174
|
-
export interface DeleteJobsRequest {
|
|
175
|
-
/**
|
|
176
|
-
* 作业Id列表
|
|
177
|
-
*/
|
|
178
|
-
JobIds: Array<string>
|
|
179
|
-
/**
|
|
180
|
-
* 工作空间Id
|
|
181
|
-
*/
|
|
182
|
-
WorkSpaceId?: string
|
|
183
|
-
/**
|
|
184
|
-
* 作业名称列表
|
|
185
|
-
*/
|
|
186
|
-
JobNames?: Array<string>
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
/**
|
|
190
|
-
* ModifyWorkSpace请求参数结构体
|
|
191
|
-
*/
|
|
192
|
-
export interface ModifyWorkSpaceRequest {
|
|
193
|
-
/**
|
|
194
|
-
* 工作空间 SerialId
|
|
195
|
-
*/
|
|
196
|
-
WorkSpaceId: string
|
|
197
|
-
/**
|
|
198
|
-
* 待修改的工作空间名称
|
|
199
|
-
*/
|
|
200
|
-
WorkSpaceName?: string
|
|
201
|
-
/**
|
|
202
|
-
* 待修改的工作空间备注
|
|
203
|
-
*/
|
|
204
|
-
Description?: string
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
/**
|
|
208
|
-
* ModifyJob返回参数结构体
|
|
209
|
-
*/
|
|
210
|
-
export interface ModifyJobResponse {
|
|
211
|
-
/**
|
|
212
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
213
|
-
*/
|
|
214
|
-
RequestId?: string
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
/**
|
|
218
|
-
* CreateJobConfig返回参数结构体
|
|
219
|
-
*/
|
|
220
|
-
export interface CreateJobConfigResponse {
|
|
221
|
-
/**
|
|
222
|
-
* 作业配置版本号
|
|
223
|
-
*/
|
|
224
|
-
Version?: number
|
|
225
|
-
/**
|
|
226
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
227
|
-
*/
|
|
228
|
-
RequestId?: string
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
/**
|
|
232
|
-
* CreateResourceConfig返回参数结构体
|
|
233
|
-
*/
|
|
234
|
-
export interface CreateResourceConfigResponse {
|
|
235
|
-
/**
|
|
236
|
-
* 资源版本ID
|
|
237
|
-
*/
|
|
238
|
-
Version?: number
|
|
239
|
-
/**
|
|
240
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
241
|
-
*/
|
|
242
|
-
RequestId?: string
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
/**
|
|
246
|
-
* CreateJobConfig请求参数结构体
|
|
247
|
-
*/
|
|
248
|
-
export interface CreateJobConfigRequest {
|
|
249
|
-
/**
|
|
250
|
-
* 作业Id
|
|
251
|
-
*/
|
|
252
|
-
JobId: string
|
|
253
|
-
/**
|
|
254
|
-
* 主类
|
|
255
|
-
*/
|
|
256
|
-
EntrypointClass?: string
|
|
257
|
-
/**
|
|
258
|
-
* 主类入参
|
|
259
|
-
*/
|
|
260
|
-
ProgramArgs?: string
|
|
261
|
-
/**
|
|
262
|
-
* 备注
|
|
263
|
-
*/
|
|
264
|
-
Remark?: string
|
|
265
|
-
/**
|
|
266
|
-
* 资源引用数组
|
|
267
|
-
*/
|
|
268
|
-
ResourceRefs?: Array<ResourceRef>
|
|
269
|
-
/**
|
|
270
|
-
* 作业默认并行度
|
|
271
|
-
*/
|
|
272
|
-
DefaultParallelism?: number
|
|
273
|
-
/**
|
|
274
|
-
* 系统参数
|
|
275
|
-
*/
|
|
276
|
-
Properties?: Array<Property>
|
|
277
|
-
/**
|
|
278
|
-
* 1: 作业配置达到上限之后,自动删除可删除的最早版本
|
|
279
|
-
*/
|
|
280
|
-
AutoDelete?: number
|
|
281
|
-
/**
|
|
282
|
-
* 作业使用的 COS 存储桶名
|
|
283
|
-
*/
|
|
284
|
-
COSBucket?: string
|
|
285
|
-
/**
|
|
286
|
-
* 是否采集作业日志
|
|
287
|
-
*/
|
|
288
|
-
LogCollect?: boolean
|
|
289
|
-
/**
|
|
290
|
-
* JobManager规格
|
|
291
|
-
*/
|
|
292
|
-
JobManagerSpec?: number
|
|
293
|
-
/**
|
|
294
|
-
* TaskManager规格
|
|
295
|
-
*/
|
|
296
|
-
TaskManagerSpec?: number
|
|
297
|
-
/**
|
|
298
|
-
* CLS日志集ID
|
|
299
|
-
*/
|
|
300
|
-
ClsLogsetId?: string
|
|
301
|
-
/**
|
|
302
|
-
* CLS日志主题ID
|
|
303
|
-
*/
|
|
304
|
-
ClsTopicId?: string
|
|
305
|
-
/**
|
|
306
|
-
* 日志采集类型 2:CLS;3:COS
|
|
307
|
-
*/
|
|
308
|
-
LogCollectType?: number
|
|
309
|
-
/**
|
|
310
|
-
* pyflink作业运行时使用的python版本
|
|
311
|
-
*/
|
|
312
|
-
PythonVersion?: string
|
|
313
|
-
/**
|
|
314
|
-
* 工作空间 SerialId
|
|
315
|
-
*/
|
|
316
|
-
WorkSpaceId?: string
|
|
317
|
-
/**
|
|
318
|
-
* 日志级别
|
|
319
|
-
*/
|
|
320
|
-
LogLevel?: string
|
|
321
|
-
/**
|
|
322
|
-
* Oceanus 平台恢复作业开关 1:开启 -1: 关闭
|
|
323
|
-
*/
|
|
324
|
-
AutoRecover?: number
|
|
325
|
-
/**
|
|
326
|
-
* 类日志级别
|
|
327
|
-
*/
|
|
328
|
-
ClazzLevels?: Array<ClazzLevel>
|
|
329
|
-
/**
|
|
330
|
-
* 是否打开专家模式
|
|
331
|
-
*/
|
|
332
|
-
ExpertModeOn?: boolean
|
|
333
|
-
/**
|
|
334
|
-
* 专家模式的配置
|
|
335
|
-
*/
|
|
336
|
-
ExpertModeConfiguration?: ExpertModeConfiguration
|
|
337
|
-
/**
|
|
338
|
-
* trace链路
|
|
339
|
-
*/
|
|
340
|
-
TraceModeOn?: boolean
|
|
341
|
-
/**
|
|
342
|
-
* trace链路配置
|
|
343
|
-
*/
|
|
344
|
-
TraceModeConfiguration?: TraceModeConfiguration
|
|
345
|
-
/**
|
|
346
|
-
* checkpoint保留个数
|
|
347
|
-
*/
|
|
348
|
-
CheckpointRetainedNum?: number
|
|
349
|
-
/**
|
|
350
|
-
* 算子拓扑图
|
|
351
|
-
*/
|
|
352
|
-
JobGraph?: JobGraph
|
|
353
|
-
/**
|
|
354
|
-
* es索引名称
|
|
355
|
-
*/
|
|
356
|
-
EsServerlessIndex?: string
|
|
357
|
-
/**
|
|
358
|
-
* es索引空间
|
|
359
|
-
*/
|
|
360
|
-
EsServerlessSpace?: string
|
|
361
|
-
/**
|
|
362
|
-
* flink版本
|
|
363
|
-
*/
|
|
364
|
-
FlinkVersion?: string
|
|
365
|
-
/**
|
|
366
|
-
* JobManager cpu
|
|
367
|
-
*/
|
|
368
|
-
JobManagerCpu?: number
|
|
369
|
-
/**
|
|
370
|
-
* JobManager 内存
|
|
371
|
-
*/
|
|
372
|
-
JobManagerMem?: number
|
|
373
|
-
/**
|
|
374
|
-
* TaskManager cpu
|
|
375
|
-
*/
|
|
376
|
-
TaskManagerCpu?: number
|
|
377
|
-
/**
|
|
378
|
-
* TaskManager 内存
|
|
379
|
-
*/
|
|
380
|
-
TaskManagerMem?: number
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
/**
|
|
384
|
-
* 集群的版本相关信息
|
|
385
|
-
*/
|
|
386
|
-
export interface ClusterVersion {
|
|
387
|
-
/**
|
|
388
|
-
* 集群的Flink版本
|
|
389
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
390
|
-
*/
|
|
391
|
-
Flink: string
|
|
392
|
-
/**
|
|
393
|
-
* 集群支持的Flink版本
|
|
394
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
395
|
-
*/
|
|
396
|
-
SupportedFlink: Array<string>
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
/**
|
|
400
|
-
* DescribeTreeJobs返回参数结构体
|
|
401
|
-
*/
|
|
402
|
-
export interface DescribeTreeJobsResponse {
|
|
403
|
-
/**
|
|
404
|
-
* 父节点ID
|
|
405
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
406
|
-
*/
|
|
407
|
-
ParentId?: string
|
|
408
|
-
/**
|
|
409
|
-
* 当前文件夹ID
|
|
410
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
411
|
-
*/
|
|
412
|
-
Id?: string
|
|
413
|
-
/**
|
|
414
|
-
* 当前文件夹名
|
|
415
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
416
|
-
*/
|
|
417
|
-
Name?: string
|
|
418
|
-
/**
|
|
419
|
-
* 当前文件夹下的作业列表
|
|
420
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
421
|
-
*/
|
|
422
|
-
JobSet?: Array<TreeJobSets>
|
|
423
|
-
/**
|
|
424
|
-
* 迭代子目录
|
|
425
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
426
|
-
*/
|
|
427
|
-
Children?: Array<DescribeTreeJobsRsp>
|
|
428
|
-
/**
|
|
429
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
430
|
-
*/
|
|
431
|
-
RequestId?: string
|
|
432
|
-
}
|
|
433
|
-
|
|
434
|
-
/**
|
|
435
|
-
* CopyJobs请求参数结构体
|
|
436
|
-
*/
|
|
437
|
-
export interface CopyJobsRequest {
|
|
438
|
-
/**
|
|
439
|
-
* 复制明细列表
|
|
440
|
-
*/
|
|
441
|
-
JobItems: Array<CopyJobItem>
|
|
442
|
-
/**
|
|
443
|
-
* 工作空间 SerialId
|
|
444
|
-
*/
|
|
445
|
-
WorkSpaceId?: string
|
|
446
|
-
/**
|
|
447
|
-
* 目标工作空间 SerialId
|
|
448
|
-
*/
|
|
449
|
-
TargetWorkspaceId?: string
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
/**
|
|
453
|
-
* CopyJobs返回参数结构体
|
|
454
|
-
*/
|
|
455
|
-
export interface CopyJobsResponse {
|
|
456
|
-
/**
|
|
457
|
-
* 成功条数
|
|
458
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
459
|
-
*/
|
|
460
|
-
SuccessCount?: number
|
|
461
|
-
/**
|
|
462
|
-
* 失败条数
|
|
463
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
464
|
-
*/
|
|
465
|
-
FailCount?: number
|
|
466
|
-
/**
|
|
467
|
-
* 结果列表
|
|
468
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
469
|
-
*/
|
|
470
|
-
CopyJobsResults?: Array<CopyJobResult>
|
|
471
|
-
/**
|
|
472
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
473
|
-
*/
|
|
474
|
-
RequestId?: string
|
|
475
|
-
}
|
|
476
|
-
|
|
477
|
-
/**
|
|
478
|
-
* TriggerJobSavepoint请求参数结构体
|
|
479
|
-
*/
|
|
480
|
-
export interface TriggerJobSavepointRequest {
|
|
481
|
-
/**
|
|
482
|
-
* 作业 SerialId
|
|
483
|
-
*/
|
|
484
|
-
JobId: string
|
|
485
|
-
/**
|
|
486
|
-
* 描述
|
|
487
|
-
*/
|
|
488
|
-
Description?: string
|
|
489
|
-
/**
|
|
490
|
-
* 工作空间 SerialId
|
|
491
|
-
*/
|
|
492
|
-
WorkSpaceId?: string
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
/**
|
|
496
|
-
* 日志查询的每行日志信息
|
|
497
|
-
*/
|
|
498
|
-
export interface LogContent {
|
|
499
|
-
/**
|
|
500
|
-
* 日志内容
|
|
501
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
502
|
-
*/
|
|
503
|
-
Log: string
|
|
504
|
-
/**
|
|
505
|
-
* 毫秒级时间戳
|
|
506
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
507
|
-
*/
|
|
508
|
-
Time: number
|
|
509
|
-
/**
|
|
510
|
-
* 日志组Id
|
|
511
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
512
|
-
*/
|
|
513
|
-
PkgId: string
|
|
514
|
-
/**
|
|
515
|
-
* 日志Id,在日志组范围里唯一
|
|
516
|
-
*/
|
|
517
|
-
PkgLogId: number
|
|
518
|
-
/**
|
|
519
|
-
* 日志所属的容器名
|
|
520
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
521
|
-
*/
|
|
522
|
-
ContainerName: string
|
|
523
|
-
}
|
|
524
|
-
|
|
525
|
-
/**
|
|
526
|
-
* DeleteJobConfigs请求参数结构体
|
|
527
|
-
*/
|
|
528
|
-
export interface DeleteJobConfigsRequest {
|
|
529
|
-
/**
|
|
530
|
-
* 作业ID
|
|
531
|
-
*/
|
|
532
|
-
JobId: string
|
|
533
|
-
/**
|
|
534
|
-
* 作业配置版本数组
|
|
535
|
-
*/
|
|
536
|
-
JobConfigVersions: Array<number | bigint>
|
|
537
|
-
/**
|
|
538
|
-
* 工作空间 SerialId
|
|
539
|
-
*/
|
|
540
|
-
WorkSpaceId?: string
|
|
541
|
-
}
|
|
542
|
-
|
|
543
|
-
/**
|
|
544
|
-
* 事件信息
|
|
545
|
-
*/
|
|
546
|
-
export interface JobEventInfo {
|
|
547
|
-
/**
|
|
548
|
-
* 异常事件总数
|
|
549
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
550
|
-
*/
|
|
551
|
-
ErrorEventTotal?: number
|
|
552
|
-
}
|
|
553
|
-
|
|
554
|
-
/**
|
|
555
|
-
* 资源参数描述
|
|
556
|
-
*/
|
|
557
|
-
export interface ResourceLocParam {
|
|
558
|
-
/**
|
|
559
|
-
* 资源bucket
|
|
560
|
-
*/
|
|
561
|
-
Bucket: string
|
|
562
|
-
/**
|
|
563
|
-
* 资源路径
|
|
564
|
-
*/
|
|
565
|
-
Path: string
|
|
566
|
-
/**
|
|
567
|
-
* 资源所在地域,如果不填,则使用Resource的Region
|
|
568
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
569
|
-
*/
|
|
570
|
-
Region?: string
|
|
571
|
-
}
|
|
572
|
-
|
|
573
|
-
/**
|
|
574
|
-
* 专家模式 计算节点的配置信息
|
|
575
|
-
*/
|
|
576
|
-
export interface NodeConfig {
|
|
577
|
-
/**
|
|
578
|
-
* Node ID
|
|
579
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
580
|
-
*/
|
|
581
|
-
Id: number
|
|
582
|
-
/**
|
|
583
|
-
* Node parallelism
|
|
584
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
585
|
-
*/
|
|
586
|
-
Parallelism?: number
|
|
587
|
-
/**
|
|
588
|
-
* Slot sharing group
|
|
589
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
590
|
-
*/
|
|
591
|
-
SlotSharingGroup?: string
|
|
592
|
-
/**
|
|
593
|
-
* Configuration properties
|
|
594
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
595
|
-
*/
|
|
596
|
-
Configuration?: Array<Property>
|
|
597
|
-
/**
|
|
598
|
-
* 节点的状态ttl配置, 多个用 ; 分割
|
|
599
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
600
|
-
*/
|
|
601
|
-
StateTTL?: string
|
|
602
|
-
}
|
|
603
|
-
|
|
604
|
-
/**
|
|
605
|
-
* 工作空间详情
|
|
606
|
-
*/
|
|
607
|
-
export interface WorkSpaceSetItem {
|
|
608
|
-
/**
|
|
609
|
-
* 工作空间 SerialId
|
|
610
|
-
*/
|
|
611
|
-
SerialId: string
|
|
612
|
-
/**
|
|
613
|
-
* 用户 APPID
|
|
614
|
-
*/
|
|
615
|
-
AppId: number
|
|
616
|
-
/**
|
|
617
|
-
* 主账号 UIN
|
|
618
|
-
*/
|
|
619
|
-
OwnerUin: string
|
|
620
|
-
/**
|
|
621
|
-
* 创建者 UIN
|
|
622
|
-
*/
|
|
623
|
-
CreatorUin: string
|
|
624
|
-
/**
|
|
625
|
-
* 工作空间名称
|
|
626
|
-
*/
|
|
627
|
-
WorkSpaceName: string
|
|
628
|
-
/**
|
|
629
|
-
* 区域
|
|
630
|
-
*/
|
|
631
|
-
Region: string
|
|
632
|
-
/**
|
|
633
|
-
* 创建时间
|
|
634
|
-
*/
|
|
635
|
-
CreateTime: string
|
|
636
|
-
/**
|
|
637
|
-
* 更新时间
|
|
638
|
-
*/
|
|
639
|
-
UpdateTime: string
|
|
640
|
-
/**
|
|
641
|
-
* 1 未初始化 2 可用 -1 已删除
|
|
642
|
-
*/
|
|
643
|
-
Status: number
|
|
644
|
-
/**
|
|
645
|
-
* 工作空间描述
|
|
646
|
-
*/
|
|
647
|
-
Description: string
|
|
648
|
-
/**
|
|
649
|
-
* 工作空间包含集群信息
|
|
650
|
-
*/
|
|
651
|
-
ClusterGroupSetItem: Array<ClusterGroupSetItem>
|
|
652
|
-
/**
|
|
653
|
-
* 工作空间角色的信息
|
|
654
|
-
*/
|
|
655
|
-
RoleAuth: Array<RoleAuth>
|
|
656
|
-
/**
|
|
657
|
-
* 工作空间成员数量
|
|
658
|
-
*/
|
|
659
|
-
RoleAuthCount: number
|
|
660
|
-
/**
|
|
661
|
-
* 工作空间 SerialId
|
|
662
|
-
*/
|
|
663
|
-
WorkSpaceId: string
|
|
664
|
-
/**
|
|
665
|
-
* 1
|
|
666
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
667
|
-
*/
|
|
668
|
-
JobsCount: number
|
|
669
|
-
}
|
|
670
|
-
|
|
671
|
-
/**
|
|
672
|
-
* DescribeJobSavepoint请求参数结构体
|
|
673
|
-
*/
|
|
674
|
-
export interface DescribeJobSavepointRequest {
|
|
675
|
-
/**
|
|
676
|
-
* 作业 SerialId
|
|
677
|
-
*/
|
|
678
|
-
JobId: string
|
|
679
|
-
/**
|
|
680
|
-
* 分页参数,单页总数
|
|
681
|
-
*/
|
|
682
|
-
Limit: number
|
|
683
|
-
/**
|
|
684
|
-
* 分页参数,偏移量
|
|
685
|
-
*/
|
|
686
|
-
Offset: number
|
|
687
|
-
/**
|
|
688
|
-
* 工作空间 SerialId
|
|
689
|
-
*/
|
|
690
|
-
WorkSpaceId?: string
|
|
691
|
-
/**
|
|
692
|
-
* 2 是checkpoint
|
|
693
|
-
1 是触发savepoint
|
|
694
|
-
3 停止触发的savepoint
|
|
695
|
-
*/
|
|
696
|
-
RecordTypes?: Array<number | bigint>
|
|
697
|
-
}
|
|
698
|
-
|
|
699
|
-
/**
|
|
700
|
-
* Sql Gateway返回Column类型
|
|
701
|
-
*/
|
|
702
|
-
export interface ResultColumn {
|
|
703
|
-
/**
|
|
704
|
-
* 名称
|
|
705
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
706
|
-
*/
|
|
707
|
-
Name?: string
|
|
708
|
-
/**
|
|
709
|
-
* 本地类型描述
|
|
710
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
711
|
-
*/
|
|
712
|
-
LogicalType?: LogicalType
|
|
713
|
-
/**
|
|
714
|
-
* 备注
|
|
715
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
716
|
-
*/
|
|
717
|
-
Comment?: string
|
|
718
|
-
}
|
|
719
|
-
|
|
720
|
-
/**
|
|
721
|
-
* 自定义树结构出参作业列表
|
|
722
|
-
*/
|
|
723
|
-
export interface TreeJobSets {
|
|
724
|
-
/**
|
|
725
|
-
* 作业Id
|
|
726
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
727
|
-
*/
|
|
728
|
-
JobId?: string
|
|
729
|
-
/**
|
|
730
|
-
* 作业名
|
|
731
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
732
|
-
*/
|
|
733
|
-
Name?: string
|
|
734
|
-
/**
|
|
735
|
-
* 作业类型
|
|
736
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
737
|
-
*/
|
|
738
|
-
JobType?: number
|
|
739
|
-
/**
|
|
740
|
-
* 作业占用资源
|
|
741
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
742
|
-
*/
|
|
743
|
-
RunningCu?: number
|
|
744
|
-
/**
|
|
745
|
-
* 作业状态 启动或者停止或者暂停
|
|
746
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
747
|
-
*/
|
|
748
|
-
Status?: number
|
|
749
|
-
/**
|
|
750
|
-
* 0:代表没开启调优任务,1:开启智能调优,2:代表定时调优
|
|
751
|
-
|
|
752
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
753
|
-
*/
|
|
754
|
-
ScalingType?: number
|
|
755
|
-
/**
|
|
756
|
-
* RunningCpu
|
|
757
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
758
|
-
*/
|
|
759
|
-
RunningCpu?: number
|
|
760
|
-
/**
|
|
761
|
-
* RunningMem
|
|
762
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
763
|
-
*/
|
|
764
|
-
RunningMem?: number
|
|
765
|
-
/**
|
|
766
|
-
* sql
|
|
767
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
768
|
-
*/
|
|
769
|
-
DecodeSqlCode?: string
|
|
770
|
-
}
|
|
771
|
-
|
|
772
|
-
/**
|
|
773
|
-
* 资源详细描述
|
|
774
|
-
*/
|
|
775
|
-
export interface ResourceItem {
|
|
776
|
-
/**
|
|
777
|
-
* 资源ID
|
|
778
|
-
*/
|
|
779
|
-
ResourceId?: string
|
|
780
|
-
/**
|
|
781
|
-
* 资源名称
|
|
782
|
-
*/
|
|
783
|
-
Name?: string
|
|
784
|
-
/**
|
|
785
|
-
* 资源类型
|
|
786
|
-
*/
|
|
787
|
-
ResourceType?: number
|
|
788
|
-
/**
|
|
789
|
-
* 资源位置
|
|
790
|
-
*/
|
|
791
|
-
ResourceLoc?: ResourceLoc
|
|
792
|
-
/**
|
|
793
|
-
* 资源地域
|
|
794
|
-
*/
|
|
795
|
-
Region?: string
|
|
796
|
-
/**
|
|
797
|
-
* 应用ID
|
|
798
|
-
*/
|
|
799
|
-
AppId?: number
|
|
800
|
-
/**
|
|
801
|
-
* 主账号Uin
|
|
802
|
-
*/
|
|
803
|
-
OwnerUin?: string
|
|
804
|
-
/**
|
|
805
|
-
* 子账号Uin
|
|
806
|
-
*/
|
|
807
|
-
CreatorUin?: string
|
|
808
|
-
/**
|
|
809
|
-
* 资源创建时间
|
|
810
|
-
*/
|
|
811
|
-
CreateTime?: string
|
|
812
|
-
/**
|
|
813
|
-
* 资源最后更新时间
|
|
814
|
-
*/
|
|
815
|
-
UpdateTime?: string
|
|
816
|
-
/**
|
|
817
|
-
* 资源的资源版本ID
|
|
818
|
-
*/
|
|
819
|
-
LatestResourceConfigVersion?: number
|
|
820
|
-
/**
|
|
821
|
-
* 资源备注
|
|
822
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
823
|
-
*/
|
|
824
|
-
Remark?: string
|
|
825
|
-
/**
|
|
826
|
-
* 版本个数
|
|
827
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
828
|
-
*/
|
|
829
|
-
VersionCount?: number
|
|
830
|
-
/**
|
|
831
|
-
* 关联作业数
|
|
832
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
833
|
-
*/
|
|
834
|
-
RefJobCount?: number
|
|
835
|
-
/**
|
|
836
|
-
* 作业运行状态
|
|
837
|
-
*/
|
|
838
|
-
IsJobRun?: number
|
|
839
|
-
/**
|
|
840
|
-
* 文件名
|
|
841
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
842
|
-
*/
|
|
843
|
-
FileName?: string
|
|
844
|
-
/**
|
|
845
|
-
* 工作空间ID
|
|
846
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
847
|
-
*/
|
|
848
|
-
WorkSpaceId?: number
|
|
849
|
-
/**
|
|
850
|
-
* 分状态统计关联作业数
|
|
851
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
852
|
-
*/
|
|
853
|
-
RefJobStatusCountSet?: Array<RefJobStatusCountItem>
|
|
854
|
-
/**
|
|
855
|
-
* 连接器名称
|
|
856
|
-
*/
|
|
857
|
-
Connector?: string
|
|
858
|
-
/**
|
|
859
|
-
* 连接器版本
|
|
860
|
-
*/
|
|
861
|
-
ConnectorVersion?: string
|
|
862
|
-
/**
|
|
863
|
-
* 连接方式
|
|
864
|
-
*/
|
|
865
|
-
ConnectionMethod?: string
|
|
866
|
-
/**
|
|
867
|
-
* connector关联的资源id
|
|
868
|
-
*/
|
|
869
|
-
RelatedResourceId?: string
|
|
870
|
-
/**
|
|
871
|
-
* 图标
|
|
872
|
-
*/
|
|
873
|
-
Icon?: string
|
|
874
|
-
/**
|
|
875
|
-
* 连接器中文名
|
|
876
|
-
*/
|
|
877
|
-
ConnectorName?: string
|
|
878
|
-
/**
|
|
879
|
-
* 连接器官网链接
|
|
880
|
-
*/
|
|
881
|
-
ConnectorUrl?: string
|
|
882
|
-
}
|
|
883
|
-
|
|
884
|
-
/**
|
|
885
|
-
* 依赖作业分状态计数信息
|
|
886
|
-
*/
|
|
887
|
-
export interface RefJobStatusCountItem {
|
|
888
|
-
/**
|
|
889
|
-
* 作业状态
|
|
890
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
891
|
-
*/
|
|
892
|
-
JobStatus?: number
|
|
893
|
-
/**
|
|
894
|
-
* 作业数量
|
|
895
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
896
|
-
*/
|
|
897
|
-
Count?: number
|
|
898
|
-
}
|
|
899
|
-
|
|
900
|
-
/**
|
|
901
|
-
* RunSqlGatewayStatement请求参数结构体
|
|
902
|
-
*/
|
|
903
|
-
export interface RunSqlGatewayStatementRequest {
|
|
904
|
-
/**
|
|
905
|
-
* 集群ID
|
|
906
|
-
*/
|
|
907
|
-
ClusterId: string
|
|
908
|
-
/**
|
|
909
|
-
* 需要执行的sql,该sql会被Sql Gateway执行,当前支持的是paimon修改需求,因此主要是DDL语句
|
|
910
|
-
*/
|
|
911
|
-
Sql: string
|
|
912
|
-
/**
|
|
913
|
-
* Sql Gateway会话ID,可不填,如果不填则会自动创建一个会话ID,每个会话ID都有一个存活时间,测试环境为10分钟,线上默认是30分钟
|
|
914
|
-
*/
|
|
915
|
-
SessionId?: string
|
|
916
|
-
}
|
|
917
|
-
|
|
918
|
-
/**
|
|
919
|
-
* DescribeFolder返回参数结构体
|
|
920
|
-
*/
|
|
921
|
-
export interface DescribeFolderResponse {
|
|
922
|
-
/**
|
|
923
|
-
* folder id
|
|
924
|
-
*/
|
|
925
|
-
FolderId?: string
|
|
926
|
-
/**
|
|
927
|
-
* folder name
|
|
928
|
-
*/
|
|
929
|
-
FolderName?: string
|
|
930
|
-
/**
|
|
931
|
-
* 父文件夹id
|
|
932
|
-
*/
|
|
933
|
-
ParentId?: string
|
|
934
|
-
/**
|
|
935
|
-
* 文件夹类型
|
|
936
|
-
*/
|
|
937
|
-
FolderType?: number
|
|
938
|
-
/**
|
|
939
|
-
* workspace id
|
|
940
|
-
*/
|
|
941
|
-
WorkSpaceId?: string
|
|
942
|
-
/**
|
|
943
|
-
* 子文件夹信息
|
|
944
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
945
|
-
*/
|
|
946
|
-
SubFolderInfo?: Array<SubFolderInfo>
|
|
947
|
-
/**
|
|
948
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
949
|
-
*/
|
|
950
|
-
RequestId?: string
|
|
951
|
-
}
|
|
952
|
-
|
|
953
|
-
/**
|
|
954
|
-
* 资源位置描述
|
|
955
|
-
*/
|
|
956
|
-
export interface ResourceLoc {
|
|
957
|
-
/**
|
|
958
|
-
* 资源位置的存储类型,目前只支持1:COS
|
|
959
|
-
*/
|
|
960
|
-
StorageType: number
|
|
961
|
-
/**
|
|
962
|
-
* 描述资源位置的json
|
|
963
|
-
*/
|
|
964
|
-
Param: ResourceLocParam
|
|
965
|
-
}
|
|
966
|
-
|
|
967
|
-
/**
|
|
968
|
-
* 云联网描述信息
|
|
969
|
-
*/
|
|
970
|
-
export interface CCN {
|
|
971
|
-
/**
|
|
972
|
-
* 私有网络 ID
|
|
973
|
-
*/
|
|
974
|
-
VpcId: string
|
|
975
|
-
/**
|
|
976
|
-
* 子网 ID
|
|
977
|
-
*/
|
|
978
|
-
SubnetId: string
|
|
979
|
-
/**
|
|
980
|
-
* 云联网 ID,如 ccn-rahigzjd
|
|
981
|
-
*/
|
|
982
|
-
CcnId: string
|
|
983
|
-
}
|
|
984
|
-
|
|
985
|
-
/**
|
|
986
|
-
* DescribeWorkSpaces请求参数结构体
|
|
987
|
-
*/
|
|
988
|
-
export interface DescribeWorkSpacesRequest {
|
|
989
|
-
/**
|
|
990
|
-
* 偏移量,默认 0
|
|
991
|
-
*/
|
|
992
|
-
Offset?: number
|
|
993
|
-
/**
|
|
994
|
-
* 1 按照创建时间降序排序(默认) 2.按照创建时间升序排序,3. 按照状态降序排序 4. 按照状态升序排序 默认为0
|
|
995
|
-
*/
|
|
996
|
-
OrderType?: number
|
|
997
|
-
/**
|
|
998
|
-
* 请求的集群数量,默认 20
|
|
999
|
-
*/
|
|
1000
|
-
Limit?: number
|
|
1001
|
-
/**
|
|
1002
|
-
* 过滤规则
|
|
1003
|
-
*/
|
|
1004
|
-
Filters?: Array<Filter>
|
|
1005
|
-
}
|
|
1006
|
-
|
|
1007
|
-
/**
|
|
1008
|
-
* 资源被Job 引用信息
|
|
1009
|
-
*/
|
|
1010
|
-
export interface ResourceRefJobInfo {
|
|
1011
|
-
/**
|
|
1012
|
-
* Job id
|
|
1013
|
-
*/
|
|
1014
|
-
JobId?: string
|
|
1015
|
-
/**
|
|
1016
|
-
* Job配置版本
|
|
1017
|
-
*/
|
|
1018
|
-
JobConfigVersion?: number
|
|
1019
|
-
/**
|
|
1020
|
-
* 资源版本
|
|
1021
|
-
*/
|
|
1022
|
-
ResourceVersion?: number
|
|
1023
|
-
}
|
|
1024
|
-
|
|
1025
|
-
/**
|
|
1026
|
-
* SqlGateway返回LogicalType类型
|
|
1027
|
-
*/
|
|
1028
|
-
export interface LogicalType {
|
|
1029
|
-
/**
|
|
1030
|
-
* 类型
|
|
1031
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1032
|
-
*/
|
|
1033
|
-
Type?: string
|
|
1034
|
-
/**
|
|
1035
|
-
* 是否允许为空
|
|
1036
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1037
|
-
*/
|
|
1038
|
-
NullAble?: boolean
|
|
1039
|
-
/**
|
|
1040
|
-
* 长度
|
|
1041
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1042
|
-
*/
|
|
1043
|
-
Length?: number
|
|
1044
|
-
}
|
|
1045
|
-
|
|
1046
|
-
/**
|
|
1047
|
-
* DescribeTreeResources请求参数结构体
|
|
1048
|
-
*/
|
|
1049
|
-
export interface DescribeTreeResourcesRequest {
|
|
1050
|
-
/**
|
|
1051
|
-
* 筛选条件字段
|
|
1052
|
-
*/
|
|
1053
|
-
Filters?: Array<Filter>
|
|
1054
|
-
/**
|
|
1055
|
-
* 工作空间 SerialId
|
|
1056
|
-
*/
|
|
1057
|
-
WorkSpaceId?: string
|
|
1058
|
-
/**
|
|
1059
|
-
* 分页游标
|
|
1060
|
-
*/
|
|
1061
|
-
Offset?: number
|
|
1062
|
-
/**
|
|
1063
|
-
* 单页显示数
|
|
1064
|
-
*/
|
|
1065
|
-
Limit?: number
|
|
1066
|
-
}
|
|
1067
|
-
|
|
1068
|
-
/**
|
|
1069
|
-
* DescribeResourceConfigs返回参数结构体
|
|
1070
|
-
*/
|
|
1071
|
-
export interface DescribeResourceConfigsResponse {
|
|
1072
|
-
/**
|
|
1073
|
-
* 资源配置描述数组
|
|
1074
|
-
*/
|
|
1075
|
-
ResourceConfigSet?: Array<ResourceConfigItem>
|
|
1076
|
-
/**
|
|
1077
|
-
* 资源配置数量
|
|
1078
|
-
*/
|
|
1079
|
-
TotalCount?: number
|
|
1080
|
-
/**
|
|
1081
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1082
|
-
*/
|
|
1083
|
-
RequestId?: string
|
|
1084
|
-
}
|
|
1085
|
-
|
|
1086
|
-
/**
|
|
1087
|
-
* DescribeClusters请求参数结构体
|
|
1088
|
-
*/
|
|
1089
|
-
export interface DescribeClustersRequest {
|
|
1090
|
-
/**
|
|
1091
|
-
* 按照一个或者多个集群 ID 查询,每次请求的集群上限为 100
|
|
1092
|
-
*/
|
|
1093
|
-
ClusterIds?: Array<string>
|
|
1094
|
-
/**
|
|
1095
|
-
* 偏移量,默认 0
|
|
1096
|
-
*/
|
|
1097
|
-
Offset?: number
|
|
1098
|
-
/**
|
|
1099
|
-
* 请求的集群数量,默认 20,最大值 100
|
|
1100
|
-
*/
|
|
1101
|
-
Limit?: number
|
|
1102
|
-
/**
|
|
1103
|
-
* 集群信息结果排序规则,1 按时间降序,2 按照时间升序,3 按照状态排序
|
|
1104
|
-
*/
|
|
1105
|
-
OrderType?: number
|
|
1106
|
-
/**
|
|
1107
|
-
* 过滤规则
|
|
1108
|
-
*/
|
|
1109
|
-
Filters?: Array<Filter>
|
|
1110
|
-
/**
|
|
1111
|
-
* 工作空间 SerialId
|
|
1112
|
-
*/
|
|
1113
|
-
WorkSpaceId?: string
|
|
1114
|
-
}
|
|
1115
|
-
|
|
1116
|
-
/**
|
|
1117
|
-
* CreateWorkSpace返回参数结构体
|
|
1118
|
-
*/
|
|
1119
|
-
export interface CreateWorkSpaceResponse {
|
|
1120
|
-
/**
|
|
1121
|
-
* 工作空间 SerialId
|
|
1122
|
-
*/
|
|
1123
|
-
WorkSpaceId?: string
|
|
1124
|
-
/**
|
|
1125
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1126
|
-
*/
|
|
1127
|
-
RequestId?: string
|
|
1128
|
-
}
|
|
1129
|
-
|
|
1130
|
-
/**
|
|
1131
|
-
* CreateJob返回参数结构体
|
|
1132
|
-
*/
|
|
1133
|
-
export interface CreateJobResponse {
|
|
1134
|
-
/**
|
|
1135
|
-
* 作业Id
|
|
1136
|
-
*/
|
|
1137
|
-
JobId?: string
|
|
1138
|
-
/**
|
|
1139
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1140
|
-
*/
|
|
1141
|
-
RequestId?: string
|
|
1142
|
-
}
|
|
1143
|
-
|
|
1144
|
-
/**
|
|
1145
|
-
* SqlGateway配置信息
|
|
1146
|
-
*/
|
|
1147
|
-
export interface SqlGatewayItem {
|
|
1148
|
-
/**
|
|
1149
|
-
* 唯一标识
|
|
1150
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1151
|
-
*/
|
|
1152
|
-
SerialId?: string
|
|
1153
|
-
/**
|
|
1154
|
-
* Flink内核版本
|
|
1155
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1156
|
-
*/
|
|
1157
|
-
FlinkVersion?: string
|
|
1158
|
-
/**
|
|
1159
|
-
* 状态,1.停止 2. 开启中 3. 开启 4. 开启失败 5. 停止中
|
|
1160
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1161
|
-
*/
|
|
1162
|
-
Status?: number
|
|
1163
|
-
/**
|
|
1164
|
-
* 创建人
|
|
1165
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1166
|
-
*/
|
|
1167
|
-
CreatorUin?: string
|
|
1168
|
-
/**
|
|
1169
|
-
* 引用资源
|
|
1170
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1171
|
-
*/
|
|
1172
|
-
ResourceRefs?: Array<GatewayRefItem>
|
|
1173
|
-
/**
|
|
1174
|
-
* Cu规格
|
|
1175
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1176
|
-
*/
|
|
1177
|
-
CuSpec?: number
|
|
1178
|
-
/**
|
|
1179
|
-
* 创建时间
|
|
1180
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1181
|
-
*/
|
|
1182
|
-
CreateTime?: string
|
|
1183
|
-
/**
|
|
1184
|
-
* 更新时间
|
|
1185
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1186
|
-
*/
|
|
1187
|
-
UpdateTime?: string
|
|
1188
|
-
/**
|
|
1189
|
-
* 配置参数
|
|
1190
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1191
|
-
*/
|
|
1192
|
-
Properties?: Array<Property>
|
|
1193
|
-
/**
|
|
1194
|
-
* Cpu
|
|
1195
|
-
*/
|
|
1196
|
-
Cpu?: number
|
|
1197
|
-
/**
|
|
1198
|
-
* Mem
|
|
1199
|
-
*/
|
|
1200
|
-
Mem?: number
|
|
1201
|
-
}
|
|
1202
|
-
|
|
1203
|
-
/**
|
|
1204
|
-
* DescribeJobRuntimeInfo返回参数结构体
|
|
1205
|
-
*/
|
|
1206
|
-
export interface DescribeJobRuntimeInfoResponse {
|
|
1207
|
-
/**
|
|
1208
|
-
* 作业运行时信息
|
|
1209
|
-
*/
|
|
1210
|
-
JobRuntimeInfo?: Array<JobRuntimeInfo>
|
|
1211
|
-
/**
|
|
1212
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1213
|
-
*/
|
|
1214
|
-
RequestId?: string
|
|
1215
|
-
}
|
|
1216
|
-
|
|
1217
|
-
/**
|
|
1218
|
-
* 停止作业的描述信息
|
|
1219
|
-
*/
|
|
1220
|
-
export interface StopJobDescription {
|
|
1221
|
-
/**
|
|
1222
|
-
* 作业Id
|
|
1223
|
-
*/
|
|
1224
|
-
JobId: string
|
|
1225
|
-
/**
|
|
1226
|
-
* 停止类型,1 停止 2 暂停
|
|
1227
|
-
*/
|
|
1228
|
-
StopType: number
|
|
1229
|
-
}
|
|
1230
|
-
|
|
1231
|
-
/**
|
|
1232
|
-
* CreateFolder请求参数结构体
|
|
1233
|
-
*/
|
|
1234
|
-
export interface CreateFolderRequest {
|
|
1235
|
-
/**
|
|
1236
|
-
* 新建文件夹名
|
|
1237
|
-
*/
|
|
1238
|
-
FolderName: string
|
|
1239
|
-
/**
|
|
1240
|
-
* 新建文件夹的父目录ID(根目录为"root")
|
|
1241
|
-
*/
|
|
1242
|
-
ParentId: string
|
|
1243
|
-
/**
|
|
1244
|
-
* 文件夹类型,0是任务文件夹,1是依赖文件夹
|
|
1245
|
-
*/
|
|
1246
|
-
FolderType?: number
|
|
1247
|
-
/**
|
|
1248
|
-
* 工作空间 SerialId
|
|
1249
|
-
*/
|
|
1250
|
-
WorkSpaceId?: string
|
|
1251
|
-
}
|
|
1252
|
-
|
|
1253
|
-
/**
|
|
1254
|
-
* DeleteJobConfigs返回参数结构体
|
|
1255
|
-
*/
|
|
1256
|
-
export interface DeleteJobConfigsResponse {
|
|
1257
|
-
/**
|
|
1258
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1259
|
-
*/
|
|
1260
|
-
RequestId?: string
|
|
1261
|
-
}
|
|
1262
|
-
|
|
1263
|
-
/**
|
|
1264
|
-
* DeleteTableConfig请求参数结构体
|
|
1265
|
-
*/
|
|
1266
|
-
export interface DeleteTableConfigRequest {
|
|
1267
|
-
/**
|
|
1268
|
-
* 作业ID
|
|
1269
|
-
*/
|
|
1270
|
-
JobId: string
|
|
1271
|
-
/**
|
|
1272
|
-
* 调试作业ID
|
|
1273
|
-
*/
|
|
1274
|
-
DebugId: number
|
|
1275
|
-
/**
|
|
1276
|
-
* 表名
|
|
1277
|
-
*/
|
|
1278
|
-
TableName: string
|
|
1279
|
-
/**
|
|
1280
|
-
* 工作空间 SerialId
|
|
1281
|
-
*/
|
|
1282
|
-
WorkSpaceId?: string
|
|
1283
|
-
}
|
|
1284
|
-
|
|
1285
|
-
/**
|
|
1286
|
-
* Sql Gateway 返回Result结构类型
|
|
1287
|
-
*/
|
|
1288
|
-
export interface StatementResult {
|
|
1289
|
-
/**
|
|
1290
|
-
* 返回结果列
|
|
1291
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1292
|
-
*/
|
|
1293
|
-
Columns?: Array<ResultColumn>
|
|
1294
|
-
/**
|
|
1295
|
-
* 格式
|
|
1296
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1297
|
-
*/
|
|
1298
|
-
RowFormat?: string
|
|
1299
|
-
/**
|
|
1300
|
-
* 结果值
|
|
1301
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1302
|
-
*/
|
|
1303
|
-
Data?: Array<ResultData>
|
|
1304
|
-
}
|
|
1305
|
-
|
|
1306
|
-
/**
|
|
1307
|
-
* 自定义树结构遍历子节点
|
|
1308
|
-
*/
|
|
1309
|
-
export interface DescribeTreeJobsRsp {
|
|
1310
|
-
/**
|
|
1311
|
-
* 父节点ID
|
|
1312
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1313
|
-
*/
|
|
1314
|
-
ParentId?: string
|
|
1315
|
-
/**
|
|
1316
|
-
* 当前文件夹ID
|
|
1317
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1318
|
-
*/
|
|
1319
|
-
Id?: string
|
|
1320
|
-
/**
|
|
1321
|
-
* 当前文件夹名
|
|
1322
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1323
|
-
*/
|
|
1324
|
-
Name?: string
|
|
1325
|
-
/**
|
|
1326
|
-
* 当前文件夹下的作业集合
|
|
1327
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1328
|
-
*/
|
|
1329
|
-
JobSet?: Array<TreeJobSets>
|
|
1330
|
-
/**
|
|
1331
|
-
* 迭代子目录
|
|
1332
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1333
|
-
*/
|
|
1334
|
-
Children?: Array<DescribeTreeJobsRsp>
|
|
1335
|
-
/**
|
|
1336
|
-
* 请求ID
|
|
1337
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1338
|
-
*/
|
|
1339
|
-
RequestId?: string
|
|
1340
|
-
}
|
|
1341
|
-
|
|
1342
|
-
/**
|
|
1343
|
-
* DeleteResources返回参数结构体
|
|
1344
|
-
*/
|
|
1345
|
-
export interface DeleteResourcesResponse {
|
|
1346
|
-
/**
|
|
1347
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1348
|
-
*/
|
|
1349
|
-
RequestId?: string
|
|
1350
|
-
}
|
|
1351
|
-
|
|
1352
|
-
/**
|
|
1353
|
-
* DeleteTableConfig返回参数结构体
|
|
1354
|
-
*/
|
|
1355
|
-
export interface DeleteTableConfigResponse {
|
|
1356
|
-
/**
|
|
1357
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1358
|
-
*/
|
|
1359
|
-
RequestId?: string
|
|
1360
|
-
}
|
|
1361
|
-
|
|
1362
|
-
/**
|
|
1363
|
-
* SlotSharingGroup的规格描述
|
|
1364
|
-
*/
|
|
1365
|
-
export interface SlotSharingGroupSpec {
|
|
1366
|
-
/**
|
|
1367
|
-
* 适用的cpu
|
|
1368
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1369
|
-
*/
|
|
1370
|
-
CPU: number
|
|
1371
|
-
/**
|
|
1372
|
-
* 默认为b, 支持单位有 b, kb, mb, gb
|
|
1373
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1374
|
-
*/
|
|
1375
|
-
HeapMemory: string
|
|
1376
|
-
/**
|
|
1377
|
-
* 默认为b, 支持单位有 b, kb, mb, gb
|
|
1378
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1379
|
-
*/
|
|
1380
|
-
OffHeapMemory?: string
|
|
1381
|
-
/**
|
|
1382
|
-
* 默认为b, 支持单位有 b, kb, mb, gb
|
|
1383
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1384
|
-
*/
|
|
1385
|
-
ManagedMemory?: string
|
|
1386
|
-
}
|
|
1387
|
-
|
|
1388
|
-
/**
|
|
1389
|
-
* 标签
|
|
1390
|
-
*/
|
|
1391
|
-
export interface Tag {
|
|
1392
|
-
/**
|
|
1393
|
-
* 标签键
|
|
1394
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1395
|
-
*/
|
|
1396
|
-
TagKey?: string
|
|
1397
|
-
/**
|
|
1398
|
-
* 标签值
|
|
1399
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1400
|
-
*/
|
|
1401
|
-
TagValue?: string
|
|
1402
|
-
}
|
|
1403
|
-
|
|
1404
|
-
/**
|
|
1405
|
-
* GetMetaTable返回参数结构体
|
|
1406
|
-
*/
|
|
1407
|
-
export interface GetMetaTableResponse {
|
|
1408
|
-
/**
|
|
1409
|
-
* 元数据表唯一标识
|
|
1410
|
-
*/
|
|
1411
|
-
SerialId?: string
|
|
1412
|
-
/**
|
|
1413
|
-
* 目录名
|
|
1414
|
-
*/
|
|
1415
|
-
Catalog?: string
|
|
1416
|
-
/**
|
|
1417
|
-
* 库名
|
|
1418
|
-
*/
|
|
1419
|
-
Database?: string
|
|
1420
|
-
/**
|
|
1421
|
-
* 表名
|
|
1422
|
-
*/
|
|
1423
|
-
Table?: string
|
|
1424
|
-
/**
|
|
1425
|
-
* 建表语句,使用 Base64 编码。
|
|
1426
|
-
例如
|
|
1427
|
-
Q1JFQVRFIFRBQkxFIGRhdGFnZW5fc291cmNlX3RhYmxlICggCiAgICBpZCBJTlQsIAogICAgbmFtZSBTVFJJTkcgCikgV0lUSCAoCidjb25uZWN0b3InPSdkYXRhZ2VuJywKJ3Jvd3MtcGVyLXNlY29uZCcgPSAnMScKKTs=
|
|
1428
|
-
*/
|
|
1429
|
-
DDL?: string
|
|
1430
|
-
/**
|
|
1431
|
-
* 创建时间
|
|
1432
|
-
*/
|
|
1433
|
-
CreateTime?: string
|
|
1434
|
-
/**
|
|
1435
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1436
|
-
*/
|
|
1437
|
-
RequestId?: string
|
|
1438
|
-
}
|
|
1439
|
-
|
|
1440
|
-
/**
|
|
1441
|
-
* FetchSqlGatewayStatementResult返回参数结构体
|
|
1442
|
-
*/
|
|
1443
|
-
export interface FetchSqlGatewayStatementResultResponse {
|
|
1444
|
-
/**
|
|
1445
|
-
* 错误信息
|
|
1446
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1447
|
-
*/
|
|
1448
|
-
ErrorMessage?: Array<string>
|
|
1449
|
-
/**
|
|
1450
|
-
* 返回类型
|
|
1451
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1452
|
-
*/
|
|
1453
|
-
ResultType?: string
|
|
1454
|
-
/**
|
|
1455
|
-
* 是否DQL结果
|
|
1456
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1457
|
-
*/
|
|
1458
|
-
IsQueryResult?: boolean
|
|
1459
|
-
/**
|
|
1460
|
-
* 结果类型
|
|
1461
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1462
|
-
*/
|
|
1463
|
-
ResultKind?: string
|
|
1464
|
-
/**
|
|
1465
|
-
* 结果
|
|
1466
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1467
|
-
*/
|
|
1468
|
-
Results?: StatementResult
|
|
1469
|
-
/**
|
|
1470
|
-
* 下一次请求的uri
|
|
1471
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1472
|
-
*/
|
|
1473
|
-
NextResultUri?: string
|
|
1474
|
-
/**
|
|
1475
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1476
|
-
*/
|
|
1477
|
-
RequestId?: string
|
|
1478
|
-
}
|
|
1479
|
-
|
|
1480
|
-
/**
|
|
1481
|
-
* Flink Job 运行图的点信息
|
|
1482
|
-
*/
|
|
1483
|
-
export interface JobGraphNode {
|
|
1484
|
-
/**
|
|
1485
|
-
* 节点ID
|
|
1486
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1487
|
-
*/
|
|
1488
|
-
Id: number
|
|
1489
|
-
/**
|
|
1490
|
-
* 节点描述
|
|
1491
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1492
|
-
*/
|
|
1493
|
-
Description: string
|
|
1494
|
-
/**
|
|
1495
|
-
* 节点名称
|
|
1496
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1497
|
-
*/
|
|
1498
|
-
Name: string
|
|
1499
|
-
/**
|
|
1500
|
-
* 节点并行度
|
|
1501
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1502
|
-
*/
|
|
1503
|
-
Parallelism: number
|
|
1504
|
-
}
|
|
1505
|
-
|
|
1506
|
-
/**
|
|
1507
|
-
* CreateWorkSpace请求参数结构体
|
|
1508
|
-
*/
|
|
1509
|
-
export interface CreateWorkSpaceRequest {
|
|
1510
|
-
/**
|
|
1511
|
-
* 工作空间名称
|
|
1512
|
-
*/
|
|
1513
|
-
WorkSpaceName: string
|
|
1514
|
-
/**
|
|
1515
|
-
* 项目空间备注
|
|
1516
|
-
*/
|
|
1517
|
-
Description?: string
|
|
1518
|
-
}
|
|
1519
|
-
|
|
1520
|
-
/**
|
|
1521
|
-
* DeleteResourceConfigs请求参数结构体
|
|
1522
|
-
*/
|
|
1523
|
-
export interface DeleteResourceConfigsRequest {
|
|
1524
|
-
/**
|
|
1525
|
-
* 资源ID
|
|
1526
|
-
*/
|
|
1527
|
-
ResourceId: string
|
|
1528
|
-
/**
|
|
1529
|
-
* 资源版本数组
|
|
1530
|
-
*/
|
|
1531
|
-
ResourceConfigVersions: Array<number | bigint>
|
|
1532
|
-
/**
|
|
1533
|
-
* 工作空间 SerialId
|
|
1534
|
-
*/
|
|
1535
|
-
WorkSpaceId?: string
|
|
1536
|
-
}
|
|
1537
|
-
|
|
1538
|
-
/**
|
|
1539
|
-
* DescribeJobSavepoint返回参数结构体
|
|
1540
|
-
*/
|
|
1541
|
-
export interface DescribeJobSavepointResponse {
|
|
1542
|
-
/**
|
|
1543
|
-
* 快照列表总数
|
|
1544
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1545
|
-
*/
|
|
1546
|
-
TotalNumber?: number
|
|
1547
|
-
/**
|
|
1548
|
-
* 快照列表
|
|
1549
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1550
|
-
*/
|
|
1551
|
-
Savepoint?: Array<Savepoint>
|
|
1552
|
-
/**
|
|
1553
|
-
* 进行中的快照列表
|
|
1554
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1555
|
-
*/
|
|
1556
|
-
RunningSavepoint?: Array<Savepoint>
|
|
1557
|
-
/**
|
|
1558
|
-
* 进行中的快照列表总数
|
|
1559
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1560
|
-
*/
|
|
1561
|
-
RunningTotalNumber?: number
|
|
1562
|
-
/**
|
|
1563
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1564
|
-
*/
|
|
1565
|
-
RequestId?: string
|
|
1566
|
-
}
|
|
1567
|
-
|
|
1568
|
-
/**
|
|
1569
|
-
* DeleteFolders请求参数结构体
|
|
1570
|
-
*/
|
|
1571
|
-
export interface DeleteFoldersRequest {
|
|
1572
|
-
/**
|
|
1573
|
-
* 需删除的文件夹唯一ID
|
|
1574
|
-
*/
|
|
1575
|
-
FolderIds: Array<string>
|
|
1576
|
-
/**
|
|
1577
|
-
* 文件夹类型,0是任务文件夹,1是依赖文件夹
|
|
1578
|
-
*/
|
|
1579
|
-
FolderType?: number
|
|
1580
|
-
/**
|
|
1581
|
-
* 工作空间 SerialId
|
|
1582
|
-
*/
|
|
1583
|
-
WorkSpaceId?: string
|
|
1584
|
-
}
|
|
1585
|
-
|
|
1586
|
-
/**
|
|
1587
|
-
* DeleteWorkSpace请求参数结构体
|
|
1588
|
-
*/
|
|
1589
|
-
export interface DeleteWorkSpaceRequest {
|
|
1590
|
-
/**
|
|
1591
|
-
* 工作空间 SerialId
|
|
1592
|
-
*/
|
|
1593
|
-
WorkSpaceId: string
|
|
1594
|
-
}
|
|
1595
|
-
|
|
1596
|
-
/**
|
|
1597
|
-
* DescribeJobRuntimeInfo请求参数结构体
|
|
1598
|
-
*/
|
|
1599
|
-
export interface DescribeJobRuntimeInfoRequest {
|
|
1600
|
-
/**
|
|
1601
|
-
* 作业ID
|
|
1602
|
-
*/
|
|
1603
|
-
JobId: string
|
|
1604
|
-
/**
|
|
1605
|
-
* 工作空间ID
|
|
1606
|
-
*/
|
|
1607
|
-
WorkSpaceId: string
|
|
1608
|
-
/**
|
|
1609
|
-
* 作业运行信息 key
|
|
1610
|
-
*/
|
|
1611
|
-
IncludeInfo: Array<string>
|
|
1612
|
-
}
|
|
1613
|
-
|
|
1614
|
-
/**
|
|
1615
|
-
* DescribeWorkSpaces返回参数结构体
|
|
1616
|
-
*/
|
|
1617
|
-
export interface DescribeWorkSpacesResponse {
|
|
1618
|
-
/**
|
|
1619
|
-
* 空间详情列表
|
|
1620
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1621
|
-
*/
|
|
1622
|
-
WorkSpaceSetItem?: Array<WorkSpaceSetItem>
|
|
1623
|
-
/**
|
|
1624
|
-
* 空间总数
|
|
1625
|
-
*/
|
|
1626
|
-
TotalCount?: number
|
|
1627
|
-
/**
|
|
1628
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1629
|
-
*/
|
|
1630
|
-
RequestId?: string
|
|
1631
|
-
}
|
|
1632
|
-
|
|
1633
|
-
/**
|
|
1634
|
-
* Gateway引用资源信息
|
|
1635
|
-
*/
|
|
1636
|
-
export interface GatewayRefItem {
|
|
1637
|
-
/**
|
|
1638
|
-
* 空间唯一标识
|
|
1639
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1640
|
-
*/
|
|
1641
|
-
WorkspaceId: string
|
|
1642
|
-
/**
|
|
1643
|
-
* 资源唯一标识
|
|
1644
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1645
|
-
*/
|
|
1646
|
-
ResourceId: string
|
|
1647
|
-
/**
|
|
1648
|
-
* 版本号
|
|
1649
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1650
|
-
*/
|
|
1651
|
-
Version: number
|
|
1652
|
-
/**
|
|
1653
|
-
* 引用类型,0:用户资源
|
|
1654
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1655
|
-
*/
|
|
1656
|
-
Type: number
|
|
1657
|
-
}
|
|
1658
|
-
|
|
1659
|
-
/**
|
|
1660
|
-
* CreateResource返回参数结构体
|
|
1661
|
-
*/
|
|
1662
|
-
export interface CreateResourceResponse {
|
|
1663
|
-
/**
|
|
1664
|
-
* 资源ID
|
|
1665
|
-
*/
|
|
1666
|
-
ResourceId?: string
|
|
1667
|
-
/**
|
|
1668
|
-
* 资源版本
|
|
1669
|
-
*/
|
|
1670
|
-
Version?: number
|
|
1671
|
-
/**
|
|
1672
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1673
|
-
*/
|
|
1674
|
-
RequestId?: string
|
|
1675
|
-
}
|
|
1676
|
-
|
|
1677
|
-
/**
|
|
1678
|
-
* DescribeSystemResources请求参数结构体
|
|
1679
|
-
*/
|
|
1680
|
-
export interface DescribeSystemResourcesRequest {
|
|
1681
|
-
/**
|
|
1682
|
-
* 需要查询的资源ID数组
|
|
1683
|
-
*/
|
|
1684
|
-
ResourceIds?: Array<string>
|
|
1685
|
-
/**
|
|
1686
|
-
* 偏移量,仅当设置 Limit 参数时有效
|
|
1687
|
-
*/
|
|
1688
|
-
Offset?: number
|
|
1689
|
-
/**
|
|
1690
|
-
* 条数限制,默认返回 20 条
|
|
1691
|
-
*/
|
|
1692
|
-
Limit?: number
|
|
1693
|
-
/**
|
|
1694
|
-
* 查询资源配置列表, 如果不填写,返回该 ResourceIds.N 下所有作业配置列表
|
|
1695
|
-
*/
|
|
1696
|
-
Filters?: Array<Filter>
|
|
1697
|
-
/**
|
|
1698
|
-
* 集群ID
|
|
1699
|
-
*/
|
|
1700
|
-
ClusterId?: string
|
|
1701
|
-
/**
|
|
1702
|
-
* 查询对应Flink版本的内置connector
|
|
1703
|
-
*/
|
|
1704
|
-
FlinkVersion?: string
|
|
1705
|
-
/**
|
|
1706
|
-
* 空间
|
|
1707
|
-
*/
|
|
1708
|
-
WorkSpaceId?: string
|
|
1709
|
-
}
|
|
1710
|
-
|
|
1711
|
-
/**
|
|
1712
|
-
* CreateFolder返回参数结构体
|
|
1713
|
-
*/
|
|
1714
|
-
export interface CreateFolderResponse {
|
|
1715
|
-
/**
|
|
1716
|
-
* 新建文件夹的唯一ID
|
|
1717
|
-
*/
|
|
1718
|
-
FolderId?: string
|
|
1719
|
-
/**
|
|
1720
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1721
|
-
*/
|
|
1722
|
-
RequestId?: string
|
|
1723
|
-
}
|
|
1724
|
-
|
|
1725
|
-
/**
|
|
1726
|
-
* DescribeResources返回参数结构体
|
|
1727
|
-
*/
|
|
1728
|
-
export interface DescribeResourcesResponse {
|
|
1729
|
-
/**
|
|
1730
|
-
* 资源详细信息集合
|
|
1731
|
-
*/
|
|
1732
|
-
ResourceSet?: Array<ResourceItem>
|
|
1733
|
-
/**
|
|
1734
|
-
* 总数量
|
|
1735
|
-
*/
|
|
1736
|
-
TotalCount?: number
|
|
1737
|
-
/**
|
|
1738
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1739
|
-
*/
|
|
1740
|
-
RequestId?: string
|
|
1741
|
-
}
|
|
1742
|
-
|
|
1743
|
-
/**
|
|
1744
|
-
* 作业启动详情
|
|
1745
|
-
*/
|
|
1746
|
-
export interface RunJobDescription {
|
|
1747
|
-
/**
|
|
1748
|
-
* 作业Id
|
|
1749
|
-
*/
|
|
1750
|
-
JobId: string
|
|
1751
|
-
/**
|
|
1752
|
-
* 运行类型,1:启动,2:恢复
|
|
1753
|
-
*/
|
|
1754
|
-
RunType: number
|
|
1755
|
-
/**
|
|
1756
|
-
* 兼容旧版 SQL 类型作业启动参数:指定数据源消费起始时间点(建议传值)
|
|
1757
|
-
保证参数为 LATEST、EARLIEST、T+Timestamp (例:T1557394288000)
|
|
1758
|
-
*/
|
|
1759
|
-
StartMode?: string
|
|
1760
|
-
/**
|
|
1761
|
-
* 当前作业的某个版本
|
|
1762
|
-
(不传默认为非草稿的作业版本)
|
|
1763
|
-
*/
|
|
1764
|
-
JobConfigVersion?: number
|
|
1765
|
-
/**
|
|
1766
|
-
* Savepoint路径
|
|
1767
|
-
*/
|
|
1768
|
-
SavepointPath?: string
|
|
1769
|
-
/**
|
|
1770
|
-
* Savepoint的Id
|
|
1771
|
-
*/
|
|
1772
|
-
SavepointId?: string
|
|
1773
|
-
/**
|
|
1774
|
-
* 使用历史版本系统依赖
|
|
1775
|
-
*/
|
|
1776
|
-
UseOldSystemConnector?: boolean
|
|
1777
|
-
/**
|
|
1778
|
-
* 自定义时间戳
|
|
1779
|
-
*/
|
|
1780
|
-
CustomTimestamp?: number
|
|
1781
|
-
/**
|
|
1782
|
-
* timestamp; latest-offset; earliest-offset; 任选一种
|
|
1783
|
-
*/
|
|
1784
|
-
KafkaScanMode?: string
|
|
1785
|
-
}
|
|
1786
|
-
|
|
1787
|
-
/**
|
|
1788
|
-
* DescribeResourceRelatedJobs返回参数结构体
|
|
1789
|
-
*/
|
|
1790
|
-
export interface DescribeResourceRelatedJobsResponse {
|
|
1791
|
-
/**
|
|
1792
|
-
* 总数
|
|
1793
|
-
*/
|
|
1794
|
-
TotalCount?: number
|
|
1795
|
-
/**
|
|
1796
|
-
* 关联作业信息
|
|
1797
|
-
*/
|
|
1798
|
-
RefJobInfos?: Array<ResourceRefJobInfo>
|
|
1799
|
-
/**
|
|
1800
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1801
|
-
*/
|
|
1802
|
-
RequestId?: string
|
|
1803
|
-
}
|
|
1804
|
-
|
|
1805
|
-
/**
|
|
1806
|
-
* 描述作业发生的一个事件
|
|
1807
|
-
*/
|
|
1808
|
-
export interface JobEvent {
|
|
1809
|
-
/**
|
|
1810
|
-
* 内部定义的事件类型
|
|
1811
|
-
*/
|
|
1812
|
-
Type: string
|
|
1813
|
-
/**
|
|
1814
|
-
* 事件类型的说明文字
|
|
1815
|
-
*/
|
|
1816
|
-
Description: string
|
|
1817
|
-
/**
|
|
1818
|
-
* 事件发生的 Unix 时间戳(秒)
|
|
1819
|
-
*/
|
|
1820
|
-
Timestamp: number
|
|
1821
|
-
/**
|
|
1822
|
-
* 事件发生时的运行 ID
|
|
1823
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1824
|
-
*/
|
|
1825
|
-
RunningOrderId: number
|
|
1826
|
-
/**
|
|
1827
|
-
* 事件的一些可选说明
|
|
1828
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1829
|
-
*/
|
|
1830
|
-
Message: string
|
|
1831
|
-
/**
|
|
1832
|
-
* 异常事件的排查手册链接
|
|
1833
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1834
|
-
*/
|
|
1835
|
-
SolutionLink: string
|
|
1836
|
-
}
|
|
1837
|
-
|
|
1838
|
-
/**
|
|
1839
|
-
* 资源引用参数
|
|
1840
|
-
*/
|
|
1841
|
-
export interface ResourceRef {
|
|
1842
|
-
/**
|
|
1843
|
-
* 资源ID
|
|
1844
|
-
*/
|
|
1845
|
-
ResourceId: string
|
|
1846
|
-
/**
|
|
1847
|
-
* 资源版本ID,-1表示使用最新版本
|
|
1848
|
-
*/
|
|
1849
|
-
Version: number
|
|
1850
|
-
/**
|
|
1851
|
-
* 引用资源类型,例如主资源设置为1,代表main class所在的jar包
|
|
1852
|
-
*/
|
|
1853
|
-
Type: number
|
|
1854
|
-
}
|
|
1855
|
-
|
|
1856
|
-
/**
|
|
1857
|
-
* DescribeSystemResources返回参数结构体
|
|
1858
|
-
*/
|
|
1859
|
-
export interface DescribeSystemResourcesResponse {
|
|
1860
|
-
/**
|
|
1861
|
-
* 资源详细信息集合
|
|
1862
|
-
*/
|
|
1863
|
-
ResourceSet?: Array<SystemResourceItem>
|
|
1864
|
-
/**
|
|
1865
|
-
* 总数量
|
|
1866
|
-
*/
|
|
1867
|
-
TotalCount?: number
|
|
1868
|
-
/**
|
|
1869
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1870
|
-
*/
|
|
1871
|
-
RequestId?: string
|
|
1872
|
-
}
|
|
1873
|
-
|
|
1874
|
-
/**
|
|
1875
|
-
* {
|
|
1876
|
-
"Clazz": "c1", // java类全路径
|
|
1877
|
-
"Level": "WARN" // 日志级别 TRACE,DEBUG、INFO、WARN、ERROR
|
|
1878
|
-
}
|
|
1879
|
-
*/
|
|
1880
|
-
export interface ClazzLevel {
|
|
1881
|
-
/**
|
|
1882
|
-
* java类全路径
|
|
1883
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1884
|
-
*/
|
|
1885
|
-
Clazz: string
|
|
1886
|
-
/**
|
|
1887
|
-
* 日志级别 TRACE,DEBUG、INFO、WARN、ERROR
|
|
1888
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1889
|
-
*/
|
|
1890
|
-
Level: string
|
|
1891
|
-
}
|
|
1892
|
-
|
|
1893
|
-
/**
|
|
1894
|
-
* 混合计费
|
|
1895
|
-
*/
|
|
1896
|
-
export interface SubEks {
|
|
1897
|
-
/**
|
|
1898
|
-
* 集群id
|
|
1899
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1900
|
-
*/
|
|
1901
|
-
SerialId?: string
|
|
1902
|
-
/**
|
|
1903
|
-
* cu数
|
|
1904
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1905
|
-
*/
|
|
1906
|
-
CuNum?: number
|
|
1907
|
-
/**
|
|
1908
|
-
* 状态
|
|
1909
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1910
|
-
*/
|
|
1911
|
-
Status?: number
|
|
1912
|
-
/**
|
|
1913
|
-
* 状态描述
|
|
1914
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1915
|
-
*/
|
|
1916
|
-
StatusDesc?: string
|
|
1917
|
-
/**
|
|
1918
|
-
* 运行cu
|
|
1919
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1920
|
-
*/
|
|
1921
|
-
RunningCu?: number
|
|
1922
|
-
/**
|
|
1923
|
-
* 总的CPU
|
|
1924
|
-
*/
|
|
1925
|
-
TotalCpu?: number
|
|
1926
|
-
/**
|
|
1927
|
-
* 总的内存
|
|
1928
|
-
*/
|
|
1929
|
-
TotalMem?: number
|
|
1930
|
-
/**
|
|
1931
|
-
* 运行的CPU
|
|
1932
|
-
*/
|
|
1933
|
-
RunningCpu?: number
|
|
1934
|
-
/**
|
|
1935
|
-
* 运行的内存
|
|
1936
|
-
*/
|
|
1937
|
-
RunningMem?: number
|
|
1938
|
-
}
|
|
1939
|
-
|
|
1940
|
-
/**
|
|
1941
|
-
* 空间和集群绑定关系
|
|
1942
|
-
*/
|
|
1943
|
-
export interface WorkSpaceClusterItem {
|
|
1944
|
-
/**
|
|
1945
|
-
* 集群 ID
|
|
1946
|
-
*/
|
|
1947
|
-
ClusterGroupId: number
|
|
1948
|
-
/**
|
|
1949
|
-
* 集群 SerialId
|
|
1950
|
-
*/
|
|
1951
|
-
ClusterGroupSerialId: string
|
|
1952
|
-
/**
|
|
1953
|
-
* 集群名称
|
|
1954
|
-
*/
|
|
1955
|
-
ClusterName: string
|
|
1956
|
-
/**
|
|
1957
|
-
* 工作空间 SerialId
|
|
1958
|
-
*/
|
|
1959
|
-
WorkSpaceId: string
|
|
1960
|
-
/**
|
|
1961
|
-
* 工作空间名称
|
|
1962
|
-
*/
|
|
1963
|
-
WorkSpaceName: string
|
|
1964
|
-
/**
|
|
1965
|
-
* 绑定状态 2 绑定 1 解除绑定
|
|
1966
|
-
*/
|
|
1967
|
-
Status: number
|
|
1968
|
-
/**
|
|
1969
|
-
* 项目ID
|
|
1970
|
-
*/
|
|
1971
|
-
ProjectId: number
|
|
1972
|
-
/**
|
|
1973
|
-
* 项目ID string类型
|
|
1974
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1975
|
-
*/
|
|
1976
|
-
ProjectIdStr: string
|
|
1977
|
-
}
|
|
1978
|
-
|
|
1979
|
-
/**
|
|
1980
|
-
* CheckSavepoint请求参数结构体
|
|
1981
|
-
*/
|
|
1982
|
-
export interface CheckSavepointRequest {
|
|
1983
|
-
/**
|
|
1984
|
-
* 作业 id
|
|
1985
|
-
*/
|
|
1986
|
-
JobId: string
|
|
1987
|
-
/**
|
|
1988
|
-
* 快照资源 id
|
|
1989
|
-
*/
|
|
1990
|
-
SerialId: string
|
|
1991
|
-
/**
|
|
1992
|
-
* 快照类型 1: savepoint;2: checkpoint;3: cancelWithSavepoint
|
|
1993
|
-
*/
|
|
1994
|
-
RecordType: number
|
|
1995
|
-
/**
|
|
1996
|
-
* 快照路径,目前只支持 cos 路径
|
|
1997
|
-
*/
|
|
1998
|
-
SavepointPath: string
|
|
1999
|
-
/**
|
|
2000
|
-
* 工作空间 id
|
|
2001
|
-
*/
|
|
2002
|
-
WorkSpaceId: string
|
|
2003
|
-
}
|
|
2004
|
-
|
|
2005
|
-
/**
|
|
2006
|
-
* 作业运行时信息
|
|
2007
|
-
*/
|
|
2008
|
-
export interface JobRuntimeInfo {
|
|
2009
|
-
/**
|
|
2010
|
-
* 运行信息的key,目前支持:TaskManagers:taskmanager pod 列表; StreamGraph:作业对应的 StreamGraph;SubTasks:作业的 subtask 列表
|
|
2011
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2012
|
-
*/
|
|
2013
|
-
Key?: string
|
|
2014
|
-
/**
|
|
2015
|
-
* 运行信息
|
|
2016
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2017
|
-
*/
|
|
2018
|
-
Value?: string
|
|
2019
|
-
}
|
|
2020
|
-
|
|
2021
|
-
/**
|
|
2022
|
-
* StopJobs请求参数结构体
|
|
2023
|
-
*/
|
|
2024
|
-
export interface StopJobsRequest {
|
|
2025
|
-
/**
|
|
2026
|
-
* 批量停止作业的描述信息
|
|
2027
|
-
*/
|
|
2028
|
-
StopJobDescriptions: Array<StopJobDescription>
|
|
2029
|
-
/**
|
|
2030
|
-
* 工作空间 SerialId
|
|
2031
|
-
*/
|
|
2032
|
-
WorkSpaceId?: string
|
|
2033
|
-
}
|
|
2034
|
-
|
|
2035
|
-
/**
|
|
2036
|
-
* {
|
|
2037
|
-
"Rate": "0.01", ///如1%转换为0.01
|
|
2038
|
-
"Operator": "1:OUT,2:IN_AND_OUT,3:IN" ///如1%转换为0.01
|
|
2039
|
-
}
|
|
2040
|
-
Operator
|
|
2041
|
-
算子ID顺序配置,可以对每个算子配置IN、OUT、IN_AND_OUT三个值,分别表示采集输入数据、采集输出数据、同时采集输入和输出数据,配置示例:
|
|
2042
|
-
*/
|
|
2043
|
-
export interface TraceModeConfiguration {
|
|
2044
|
-
/**
|
|
2045
|
-
* 如1%转换为0.01
|
|
2046
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2047
|
-
*/
|
|
2048
|
-
Rate?: string
|
|
2049
|
-
/**
|
|
2050
|
-
* 按照算子ID顺序配置,可以对每个算子配置IN、OUT、IN_AND_OUT三个值,分别表示采集输入数据、采集输出数据、同时采集输入和输出数据
|
|
2051
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2052
|
-
*/
|
|
2053
|
-
Operator?: string
|
|
2054
|
-
}
|
|
2055
|
-
|
|
2056
|
-
/**
|
|
2057
|
-
* RunJobs请求参数结构体
|
|
2058
|
-
*/
|
|
2059
|
-
export interface RunJobsRequest {
|
|
2060
|
-
/**
|
|
2061
|
-
* 批量启动作业的描述信息
|
|
2062
|
-
*/
|
|
2063
|
-
RunJobDescriptions: Array<RunJobDescription>
|
|
2064
|
-
/**
|
|
2065
|
-
* 工作空间 SerialId
|
|
2066
|
-
*/
|
|
2067
|
-
WorkSpaceId?: string
|
|
2068
|
-
}
|
|
2069
|
-
|
|
2070
|
-
/**
|
|
2071
|
-
* DeleteWorkSpace返回参数结构体
|
|
2072
|
-
*/
|
|
2073
|
-
export interface DeleteWorkSpaceResponse {
|
|
2074
|
-
/**
|
|
2075
|
-
* 是否删除
|
|
2076
|
-
*/
|
|
2077
|
-
Delete?: boolean
|
|
2078
|
-
/**
|
|
2079
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2080
|
-
*/
|
|
2081
|
-
RequestId?: string
|
|
2082
|
-
}
|
|
2083
|
-
|
|
2084
|
-
/**
|
|
2085
|
-
* TriggerJobSavepoint返回参数结构体
|
|
2086
|
-
*/
|
|
2087
|
-
export interface TriggerJobSavepointResponse {
|
|
2088
|
-
/**
|
|
2089
|
-
* 是否成功
|
|
2090
|
-
*/
|
|
2091
|
-
SavepointTrigger?: boolean
|
|
2092
|
-
/**
|
|
2093
|
-
* 错误消息
|
|
2094
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2095
|
-
*/
|
|
2096
|
-
ErrorMsg?: string
|
|
2097
|
-
/**
|
|
2098
|
-
* 快照路径
|
|
2099
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2100
|
-
*/
|
|
2101
|
-
FinalSavepointPath?: string
|
|
2102
|
-
/**
|
|
2103
|
-
* 快照 ID
|
|
2104
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2105
|
-
*/
|
|
2106
|
-
SavepointId?: string
|
|
2107
|
-
/**
|
|
2108
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2109
|
-
*/
|
|
2110
|
-
RequestId?: string
|
|
2111
|
-
}
|
|
2112
|
-
|
|
2113
|
-
/**
|
|
2114
|
-
* DeleteJobs返回参数结构体
|
|
2115
|
-
*/
|
|
2116
|
-
export interface DeleteJobsResponse {
|
|
2117
|
-
/**
|
|
2118
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2119
|
-
*/
|
|
2120
|
-
RequestId?: string
|
|
2121
|
-
}
|
|
2122
|
-
|
|
2123
|
-
/**
|
|
2124
|
-
* 系统配置属性
|
|
2125
|
-
*/
|
|
2126
|
-
export interface Property {
|
|
2127
|
-
/**
|
|
2128
|
-
* 系统配置的Key
|
|
2129
|
-
*/
|
|
2130
|
-
Key: string
|
|
2131
|
-
/**
|
|
2132
|
-
* 系统配置的Value
|
|
2133
|
-
*/
|
|
2134
|
-
Value: string
|
|
2135
|
-
}
|
|
2136
|
-
|
|
2137
|
-
/**
|
|
2138
|
-
* Flink Job 运行图的边信息
|
|
2139
|
-
*/
|
|
2140
|
-
export interface JobGraphEdge {
|
|
2141
|
-
/**
|
|
2142
|
-
* 边的起始节点ID
|
|
2143
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2144
|
-
*/
|
|
2145
|
-
Source: number
|
|
2146
|
-
/**
|
|
2147
|
-
* 边的目标节点ID
|
|
2148
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2149
|
-
*/
|
|
2150
|
-
Target: number
|
|
2151
|
-
}
|
|
2152
|
-
|
|
2153
|
-
/**
|
|
2154
|
-
* 描述Savepoint信息
|
|
2155
|
-
*/
|
|
2156
|
-
export interface Savepoint {
|
|
2157
|
-
/**
|
|
2158
|
-
* 主键
|
|
2159
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2160
|
-
*/
|
|
2161
|
-
Id?: number
|
|
2162
|
-
/**
|
|
2163
|
-
* 版本号
|
|
2164
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2165
|
-
*/
|
|
2166
|
-
VersionId?: number
|
|
2167
|
-
/**
|
|
2168
|
-
* 状态 1: Active; 2: Expired; 3: InProgress; 4: Failed; 5: Timeout
|
|
2169
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2170
|
-
*/
|
|
2171
|
-
Status?: number
|
|
2172
|
-
/**
|
|
2173
|
-
* 创建时间
|
|
2174
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2175
|
-
*/
|
|
2176
|
-
CreateTime?: number
|
|
2177
|
-
/**
|
|
2178
|
-
* 更新时间
|
|
2179
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2180
|
-
*/
|
|
2181
|
-
UpdateTime?: number
|
|
2182
|
-
/**
|
|
2183
|
-
* 路径
|
|
2184
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2185
|
-
*/
|
|
2186
|
-
Path?: string
|
|
2187
|
-
/**
|
|
2188
|
-
* 大小
|
|
2189
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2190
|
-
*/
|
|
2191
|
-
Size?: number
|
|
2192
|
-
/**
|
|
2193
|
-
* 快照类型 1: savepoint;2: checkpoint;3: cancelWithSavepoint
|
|
2194
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2195
|
-
*/
|
|
2196
|
-
RecordType?: number
|
|
2197
|
-
/**
|
|
2198
|
-
* 运行作业实例的顺序 ID
|
|
2199
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2200
|
-
*/
|
|
2201
|
-
JobRuntimeId?: number
|
|
2202
|
-
/**
|
|
2203
|
-
* 描述
|
|
2204
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2205
|
-
*/
|
|
2206
|
-
Description?: string
|
|
2207
|
-
/**
|
|
2208
|
-
* 固定超时时间
|
|
2209
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2210
|
-
*/
|
|
2211
|
-
Timeout?: number
|
|
2212
|
-
/**
|
|
2213
|
-
* 快照 serialId
|
|
2214
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2215
|
-
*/
|
|
2216
|
-
SerialId?: string
|
|
2217
|
-
/**
|
|
2218
|
-
* 耗时
|
|
2219
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2220
|
-
*/
|
|
2221
|
-
TimeConsuming?: number
|
|
2222
|
-
/**
|
|
2223
|
-
* 快照路径状态 1:可用;2:不可用;
|
|
2224
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2225
|
-
*/
|
|
2226
|
-
PathStatus?: number
|
|
2227
|
-
}
|
|
2228
|
-
|
|
2229
|
-
/**
|
|
2230
|
-
* 系统资源返回值
|
|
2231
|
-
*/
|
|
2232
|
-
export interface SystemResourceItem {
|
|
2233
|
-
/**
|
|
2234
|
-
* 资源ID
|
|
2235
|
-
*/
|
|
2236
|
-
ResourceId?: string
|
|
2237
|
-
/**
|
|
2238
|
-
* 资源名称
|
|
2239
|
-
*/
|
|
2240
|
-
Name?: string
|
|
2241
|
-
/**
|
|
2242
|
-
* 资源类型。1 表示 JAR 包,目前只支持该值。
|
|
2243
|
-
*/
|
|
2244
|
-
ResourceType?: number
|
|
2245
|
-
/**
|
|
2246
|
-
* 资源备注
|
|
2247
|
-
*/
|
|
2248
|
-
Remark?: string
|
|
2249
|
-
/**
|
|
2250
|
-
* 资源所属地域
|
|
2251
|
-
*/
|
|
2252
|
-
Region?: string
|
|
2253
|
-
/**
|
|
2254
|
-
* 资源的最新版本
|
|
2255
|
-
*/
|
|
2256
|
-
LatestResourceConfigVersion?: number
|
|
2257
|
-
/**
|
|
2258
|
-
* 1 是系统提供资源 2 用户提供CONNECTOR
|
|
2259
|
-
*/
|
|
2260
|
-
SystemProvide?: number
|
|
2261
|
-
}
|
|
2262
|
-
|
|
2263
|
-
/**
|
|
2264
|
-
* DescribeResourceRelatedJobs请求参数结构体
|
|
2265
|
-
*/
|
|
2266
|
-
export interface DescribeResourceRelatedJobsRequest {
|
|
2267
|
-
/**
|
|
2268
|
-
* 资源ID
|
|
2269
|
-
*/
|
|
2270
|
-
ResourceId: string
|
|
2271
|
-
/**
|
|
2272
|
-
* 默认0; 1: 按照作业版本创建时间降序
|
|
2273
|
-
*/
|
|
2274
|
-
DESCByJobConfigCreateTime?: number
|
|
2275
|
-
/**
|
|
2276
|
-
* 偏移量,默认为0
|
|
2277
|
-
*/
|
|
2278
|
-
Offset?: number
|
|
2279
|
-
/**
|
|
2280
|
-
* 分页大小,默认为20,最大值为100
|
|
2281
|
-
*/
|
|
2282
|
-
Limit?: number
|
|
2283
|
-
/**
|
|
2284
|
-
* 资源版本号
|
|
2285
|
-
*/
|
|
2286
|
-
ResourceConfigVersion?: number
|
|
2287
|
-
/**
|
|
2288
|
-
* 工作空间 SerialId
|
|
2289
|
-
*/
|
|
2290
|
-
WorkSpaceId?: string
|
|
2291
|
-
}
|
|
2292
|
-
|
|
2293
|
-
/**
|
|
2294
|
-
* 描述资源配置的返回参数
|
|
2295
|
-
*/
|
|
2296
|
-
export interface ResourceConfigItem {
|
|
2297
|
-
/**
|
|
2298
|
-
* 资源ID
|
|
2299
|
-
*/
|
|
2300
|
-
ResourceId: string
|
|
2301
|
-
/**
|
|
2302
|
-
* 资源类型
|
|
2303
|
-
*/
|
|
2304
|
-
ResourceType: number
|
|
2305
|
-
/**
|
|
2306
|
-
* 资源所属地域
|
|
2307
|
-
*/
|
|
2308
|
-
Region: string
|
|
2309
|
-
/**
|
|
2310
|
-
* 资源所属AppId
|
|
2311
|
-
*/
|
|
2312
|
-
AppId: number
|
|
2313
|
-
/**
|
|
2314
|
-
* 主账号Uin
|
|
2315
|
-
*/
|
|
2316
|
-
OwnerUin: string
|
|
2317
|
-
/**
|
|
2318
|
-
* 子账号Uin
|
|
2319
|
-
*/
|
|
2320
|
-
CreatorUin: string
|
|
2321
|
-
/**
|
|
2322
|
-
* 资源位置描述
|
|
2323
|
-
*/
|
|
2324
|
-
ResourceLoc: ResourceLoc
|
|
2325
|
-
/**
|
|
2326
|
-
* 资源创建时间
|
|
2327
|
-
*/
|
|
2328
|
-
CreateTime: string
|
|
2329
|
-
/**
|
|
2330
|
-
* 资源版本
|
|
2331
|
-
*/
|
|
2332
|
-
Version: number
|
|
2333
|
-
/**
|
|
2334
|
-
* 资源描述
|
|
2335
|
-
*/
|
|
2336
|
-
Remark: string
|
|
2337
|
-
/**
|
|
2338
|
-
* 资源状态:0: 资源同步中,1:资源已就绪
|
|
2339
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2340
|
-
*/
|
|
2341
|
-
Status: number
|
|
2342
|
-
/**
|
|
2343
|
-
* 关联作业个数
|
|
2344
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2345
|
-
*/
|
|
2346
|
-
RefJobCount: number
|
|
2347
|
-
/**
|
|
2348
|
-
* 分状态统计关联作业数
|
|
2349
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2350
|
-
*/
|
|
2351
|
-
RefJobStatusCountSet?: Array<RefJobStatusCountItem>
|
|
2352
|
-
}
|
|
2353
|
-
|
|
2354
|
-
/**
|
|
2355
|
-
* 角色授权信息
|
|
2356
|
-
*/
|
|
2357
|
-
export interface RoleAuth {
|
|
2358
|
-
/**
|
|
2359
|
-
* 用户 AppID
|
|
2360
|
-
*/
|
|
2361
|
-
AppId?: number
|
|
2362
|
-
/**
|
|
2363
|
-
* 工作空间 SerialId
|
|
2364
|
-
*/
|
|
2365
|
-
WorkSpaceSerialId?: string
|
|
2366
|
-
/**
|
|
2367
|
-
* 主账号 UIN
|
|
2368
|
-
*/
|
|
2369
|
-
OwnerUin?: string
|
|
2370
|
-
/**
|
|
2371
|
-
* 创建者 UIN
|
|
2372
|
-
*/
|
|
2373
|
-
CreatorUin?: string
|
|
2374
|
-
/**
|
|
2375
|
-
* 绑定授权的 UIN
|
|
2376
|
-
*/
|
|
2377
|
-
AuthSubAccountUin?: string
|
|
2378
|
-
/**
|
|
2379
|
-
* 对应 role表的id
|
|
2380
|
-
*/
|
|
2381
|
-
Permission?: number
|
|
2382
|
-
/**
|
|
2383
|
-
* 创建时间
|
|
2384
|
-
*/
|
|
2385
|
-
CreateTime?: string
|
|
2386
|
-
/**
|
|
2387
|
-
* 最后一次操作时间
|
|
2388
|
-
*/
|
|
2389
|
-
UpdateTime?: string
|
|
2390
|
-
/**
|
|
2391
|
-
* 2 启用 1 停用
|
|
2392
|
-
*/
|
|
2393
|
-
Status?: number
|
|
2394
|
-
/**
|
|
2395
|
-
* id
|
|
2396
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2397
|
-
*/
|
|
2398
|
-
Id?: number
|
|
2399
|
-
/**
|
|
2400
|
-
* 工作空间id
|
|
2401
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2402
|
-
*/
|
|
2403
|
-
WorkSpaceId?: number
|
|
2404
|
-
/**
|
|
2405
|
-
* 权限名称
|
|
2406
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2407
|
-
*/
|
|
2408
|
-
RoleName?: string
|
|
2409
|
-
}
|
|
2410
|
-
|
|
2411
|
-
/**
|
|
2412
|
-
* 树状结构资源列表对象
|
|
2413
|
-
*/
|
|
2414
|
-
export interface DescribeTreeResourcesRsp {
|
|
2415
|
-
/**
|
|
2416
|
-
* 父节点ID
|
|
2417
|
-
*/
|
|
2418
|
-
ParentId?: string
|
|
2419
|
-
/**
|
|
2420
|
-
* 文件夹ID
|
|
2421
|
-
*/
|
|
2422
|
-
Id?: string
|
|
2423
|
-
/**
|
|
2424
|
-
* 文件夹名称
|
|
2425
|
-
*/
|
|
2426
|
-
Name?: string
|
|
2427
|
-
/**
|
|
2428
|
-
* 文件夹下资源数字
|
|
2429
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2430
|
-
*/
|
|
2431
|
-
Items?: Array<TreeResourceItem>
|
|
2432
|
-
/**
|
|
2433
|
-
* 子节点
|
|
2434
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2435
|
-
*/
|
|
2436
|
-
Children?: Array<DescribeTreeResourcesRsp>
|
|
2437
|
-
/**
|
|
2438
|
-
* 资源总数
|
|
2439
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2440
|
-
*/
|
|
2441
|
-
TotalCount?: number
|
|
2442
|
-
}
|
|
2443
|
-
|
|
2444
|
-
/**
|
|
2445
|
-
* JobConfig引用资源信息
|
|
2446
|
-
*/
|
|
2447
|
-
export interface ResourceRefDetail {
|
|
2448
|
-
/**
|
|
2449
|
-
* 资源id
|
|
2450
|
-
*/
|
|
2451
|
-
ResourceId?: string
|
|
2452
|
-
/**
|
|
2453
|
-
* 资源版本,-1表示使用最新版本
|
|
2454
|
-
*/
|
|
2455
|
-
Version?: number
|
|
2456
|
-
/**
|
|
2457
|
-
* 资源名称
|
|
2458
|
-
*/
|
|
2459
|
-
Name?: string
|
|
2460
|
-
/**
|
|
2461
|
-
* 1: 主资源
|
|
2462
|
-
*/
|
|
2463
|
-
Type?: number
|
|
2464
|
-
/**
|
|
2465
|
-
* 1: 系统内置资源
|
|
2466
|
-
*/
|
|
2467
|
-
SystemProvide?: number
|
|
2468
|
-
/**
|
|
2469
|
-
* Connector
|
|
2470
|
-
*/
|
|
2471
|
-
Connector?: string
|
|
2472
|
-
}
|
|
2473
|
-
|
|
2474
|
-
/**
|
|
2475
|
-
* 树状结构资源对象
|
|
2476
|
-
*/
|
|
2477
|
-
export interface TreeResourceItem {
|
|
2478
|
-
/**
|
|
2479
|
-
* 资源ID
|
|
2480
|
-
*/
|
|
2481
|
-
ResourceId: string
|
|
2482
|
-
/**
|
|
2483
|
-
* 资源名称
|
|
2484
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2485
|
-
*/
|
|
2486
|
-
Name: string
|
|
2487
|
-
/**
|
|
2488
|
-
* 资源类型
|
|
2489
|
-
*/
|
|
2490
|
-
ResourceType: number
|
|
2491
|
-
/**
|
|
2492
|
-
* 备注
|
|
2493
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2494
|
-
*/
|
|
2495
|
-
Remark: string
|
|
2496
|
-
/**
|
|
2497
|
-
* 文件名
|
|
2498
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2499
|
-
*/
|
|
2500
|
-
FileName: string
|
|
2501
|
-
/**
|
|
2502
|
-
* 目录ID
|
|
2503
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2504
|
-
*/
|
|
2505
|
-
FolderId: string
|
|
2506
|
-
/**
|
|
2507
|
-
* 分状态统计关联作业数
|
|
2508
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2509
|
-
*/
|
|
2510
|
-
RefJobStatusCountSet?: Array<RefJobStatusCountItem>
|
|
2511
|
-
}
|
|
2512
|
-
|
|
2513
|
-
/**
|
|
2514
|
-
* 作业配置 -- 专家模式的详细配置
|
|
2515
|
-
*/
|
|
2516
|
-
export interface ExpertModeConfiguration {
|
|
2517
|
-
/**
|
|
2518
|
-
* Job graph
|
|
2519
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2520
|
-
*/
|
|
2521
|
-
JobGraph?: JobGraph
|
|
2522
|
-
/**
|
|
2523
|
-
* Node configuration
|
|
2524
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2525
|
-
*/
|
|
2526
|
-
NodeConfig?: Array<NodeConfig>
|
|
2527
|
-
/**
|
|
2528
|
-
* Slot sharing groups
|
|
2529
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2530
|
-
*/
|
|
2531
|
-
SlotSharingGroups?: Array<SlotSharingGroup>
|
|
2532
|
-
}
|
|
2533
|
-
|
|
2534
|
-
/**
|
|
2535
|
-
* RunJobs返回参数结构体
|
|
2536
|
-
*/
|
|
2537
|
-
export interface RunJobsResponse {
|
|
2538
|
-
/**
|
|
2539
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2540
|
-
*/
|
|
2541
|
-
RequestId?: string
|
|
2542
|
-
}
|
|
2543
|
-
|
|
2544
|
-
/**
|
|
2545
|
-
* 查询作业列表时的过滤器
|
|
2546
|
-
*/
|
|
2547
|
-
export interface Filter {
|
|
2548
|
-
/**
|
|
2549
|
-
* 要过滤的字段
|
|
2550
|
-
*/
|
|
2551
|
-
Name: string
|
|
2552
|
-
/**
|
|
2553
|
-
* 字段的过滤值
|
|
2554
|
-
*/
|
|
2555
|
-
Values: Array<string>
|
|
2556
|
-
}
|
|
2557
|
-
|
|
2558
|
-
/**
|
|
2559
|
-
* DeleteResources请求参数结构体
|
|
2560
|
-
*/
|
|
2561
|
-
export interface DeleteResourcesRequest {
|
|
2562
|
-
/**
|
|
2563
|
-
* 待删除资源ID列表
|
|
2564
|
-
*/
|
|
2565
|
-
ResourceIds: Array<string>
|
|
2566
|
-
/**
|
|
2567
|
-
* 工作空间 SerialId
|
|
2568
|
-
*/
|
|
2569
|
-
WorkSpaceId?: string
|
|
2570
|
-
}
|
|
2571
|
-
|
|
2572
|
-
/**
|
|
2573
|
-
* 工作空间集群组信息
|
|
2574
|
-
*/
|
|
2575
|
-
export interface ClusterGroupSetItem {
|
|
2576
|
-
/**
|
|
2577
|
-
* clusterGroup 的 SerialId
|
|
2578
|
-
*/
|
|
2579
|
-
ClusterId?: string
|
|
2580
|
-
/**
|
|
2581
|
-
* 集群名称
|
|
2582
|
-
*/
|
|
2583
|
-
Name?: string
|
|
2584
|
-
/**
|
|
2585
|
-
* 地域
|
|
2586
|
-
*/
|
|
2587
|
-
Region?: string
|
|
2588
|
-
/**
|
|
2589
|
-
* 区
|
|
2590
|
-
*/
|
|
2591
|
-
Zone?: string
|
|
2592
|
-
/**
|
|
2593
|
-
* 账号 APPID
|
|
2594
|
-
*/
|
|
2595
|
-
AppId?: number
|
|
2596
|
-
/**
|
|
2597
|
-
* 主账号 UIN
|
|
2598
|
-
*/
|
|
2599
|
-
OwnerUin?: string
|
|
2600
|
-
/**
|
|
2601
|
-
* 创建账号 UIN
|
|
2602
|
-
*/
|
|
2603
|
-
CreatorUin?: string
|
|
2604
|
-
/**
|
|
2605
|
-
* CU 数量
|
|
2606
|
-
*/
|
|
2607
|
-
CuNum?: number
|
|
2608
|
-
/**
|
|
2609
|
-
* CU 内存规格
|
|
2610
|
-
*/
|
|
2611
|
-
CuMem?: number
|
|
2612
|
-
/**
|
|
2613
|
-
* 集群状态, 1 未初始化,,3 初始化中,2 运行中
|
|
2614
|
-
*/
|
|
2615
|
-
Status?: number
|
|
2616
|
-
/**
|
|
2617
|
-
* 状态描述
|
|
2618
|
-
*/
|
|
2619
|
-
StatusDesc?: string
|
|
2620
|
-
/**
|
|
2621
|
-
* 集群创建时间
|
|
2622
|
-
*/
|
|
2623
|
-
CreateTime?: string
|
|
2624
|
-
/**
|
|
2625
|
-
* 最后一次操作集群的时间
|
|
2626
|
-
*/
|
|
2627
|
-
UpdateTime?: string
|
|
2628
|
-
/**
|
|
2629
|
-
* 描述
|
|
2630
|
-
*/
|
|
2631
|
-
Remark?: string
|
|
2632
|
-
/**
|
|
2633
|
-
* 网络
|
|
2634
|
-
*/
|
|
2635
|
-
NetEnvironmentType?: number
|
|
2636
|
-
/**
|
|
2637
|
-
* 空闲 CU
|
|
2638
|
-
*/
|
|
2639
|
-
FreeCuNum?: number
|
|
2640
|
-
/**
|
|
2641
|
-
* 细粒度资源下的空闲CU
|
|
2642
|
-
*/
|
|
2643
|
-
FreeCu?: number
|
|
2644
|
-
/**
|
|
2645
|
-
* 运行中CU
|
|
2646
|
-
*/
|
|
2647
|
-
RunningCu?: number
|
|
2648
|
-
/**
|
|
2649
|
-
* 付费模式
|
|
2650
|
-
*/
|
|
2651
|
-
PayMode?: number
|
|
2652
|
-
/**
|
|
2653
|
-
* 弹性
|
|
2654
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2655
|
-
*/
|
|
2656
|
-
SubEks?: SubEks
|
|
2657
|
-
/**
|
|
2658
|
-
* 默认 "" 包销模式 "exclusiveSale"
|
|
2659
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2660
|
-
*/
|
|
2661
|
-
BillingResourceMode?: string
|
|
2662
|
-
/**
|
|
2663
|
-
* TotalCpu
|
|
2664
|
-
*/
|
|
2665
|
-
TotalCpu?: number
|
|
2666
|
-
/**
|
|
2667
|
-
* TotalMem
|
|
2668
|
-
*/
|
|
2669
|
-
TotalMem?: number
|
|
2670
|
-
/**
|
|
2671
|
-
* RunningCpu
|
|
2672
|
-
*/
|
|
2673
|
-
RunningCpu?: number
|
|
2674
|
-
/**
|
|
2675
|
-
* RunningMem
|
|
2676
|
-
*/
|
|
2677
|
-
RunningMem?: number
|
|
2678
|
-
}
|
|
2679
|
-
|
|
2680
|
-
/**
|
|
2681
|
-
* DescribeJobConfigs请求参数结构体
|
|
2682
|
-
*/
|
|
2683
|
-
export interface DescribeJobConfigsRequest {
|
|
2684
|
-
/**
|
|
2685
|
-
* 作业Id
|
|
2686
|
-
*/
|
|
2687
|
-
JobId: string
|
|
2688
|
-
/**
|
|
2689
|
-
* 作业配置版本
|
|
2690
|
-
*/
|
|
2691
|
-
JobConfigVersions?: Array<number | bigint>
|
|
2692
|
-
/**
|
|
2693
|
-
* 偏移量,默认0
|
|
2694
|
-
*/
|
|
2695
|
-
Offset?: number
|
|
2696
|
-
/**
|
|
2697
|
-
* 分页大小,默认20,最大100
|
|
2698
|
-
*/
|
|
2699
|
-
Limit?: number
|
|
2700
|
-
/**
|
|
2701
|
-
* 过滤条件
|
|
2702
|
-
*/
|
|
2703
|
-
Filters?: Array<Filter>
|
|
2704
|
-
/**
|
|
2705
|
-
* true 表示只展示草稿
|
|
2706
|
-
*/
|
|
2707
|
-
OnlyDraft?: boolean
|
|
2708
|
-
/**
|
|
2709
|
-
* 工作空间 SerialId
|
|
2710
|
-
*/
|
|
2711
|
-
WorkSpaceId?: string
|
|
2712
|
-
}
|
|
2713
|
-
|
|
2714
|
-
/**
|
|
2715
|
-
* ModifyJob请求参数结构体
|
|
2716
|
-
*/
|
|
2717
|
-
export interface ModifyJobRequest {
|
|
2718
|
-
/**
|
|
2719
|
-
* 作业Id
|
|
2720
|
-
*/
|
|
2721
|
-
JobId: string
|
|
2722
|
-
/**
|
|
2723
|
-
* 作业名称,支持长度小于50的中文/英文/数字/”-”/”_”/”.”,不能重名
|
|
2724
|
-
*/
|
|
2725
|
-
Name?: string
|
|
2726
|
-
/**
|
|
2727
|
-
* 描述
|
|
2728
|
-
*/
|
|
2729
|
-
Remark?: string
|
|
2730
|
-
/**
|
|
2731
|
-
* 拖拽文件需传入此参数
|
|
2732
|
-
*/
|
|
2733
|
-
TargetFolderId?: string
|
|
2734
|
-
/**
|
|
2735
|
-
* 工作空间 SerialId
|
|
2736
|
-
*/
|
|
2737
|
-
WorkSpaceId?: string
|
|
2738
|
-
/**
|
|
2739
|
-
* 作业描述
|
|
2740
|
-
*/
|
|
2741
|
-
Description?: string
|
|
2742
|
-
}
|
|
2743
|
-
|
|
2744
|
-
/**
|
|
2745
|
-
* GetMetaTable请求参数结构体
|
|
2746
|
-
*/
|
|
2747
|
-
export interface GetMetaTableRequest {
|
|
2748
|
-
/**
|
|
2749
|
-
* 目录名
|
|
2750
|
-
*/
|
|
2751
|
-
Catalog: string
|
|
2752
|
-
/**
|
|
2753
|
-
* 库名
|
|
2754
|
-
*/
|
|
2755
|
-
Database: string
|
|
2756
|
-
/**
|
|
2757
|
-
* 表名
|
|
2758
|
-
*/
|
|
2759
|
-
Table: string
|
|
2760
|
-
/**
|
|
2761
|
-
* 空间唯一标识
|
|
2762
|
-
*/
|
|
2763
|
-
WorkSpaceId: string
|
|
2764
|
-
}
|
|
2765
|
-
|
|
2766
|
-
/**
|
|
2767
|
-
* Sql Gateway返回数据
|
|
2768
|
-
*/
|
|
2769
|
-
export interface ResultData {
|
|
2770
|
-
/**
|
|
2771
|
-
* 操作类型
|
|
2772
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2773
|
-
*/
|
|
2774
|
-
Kind?: string
|
|
2775
|
-
/**
|
|
2776
|
-
* 结果
|
|
2777
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2778
|
-
*/
|
|
2779
|
-
Fields?: Array<string>
|
|
2780
|
-
}
|
|
2781
|
-
|
|
2782
|
-
/**
|
|
2783
|
-
* DeleteResourceConfigs返回参数结构体
|
|
2784
|
-
*/
|
|
2785
|
-
export interface DeleteResourceConfigsResponse {
|
|
2786
|
-
/**
|
|
2787
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2788
|
-
*/
|
|
2789
|
-
RequestId?: string
|
|
2790
|
-
}
|
|
2791
|
-
|
|
2792
|
-
/**
|
|
2793
|
-
* 描述用户创建的集群信息
|
|
2794
|
-
*/
|
|
2795
|
-
export interface Cluster {
|
|
2796
|
-
/**
|
|
2797
|
-
* 集群 ID
|
|
2798
|
-
*/
|
|
2799
|
-
ClusterId?: string
|
|
2800
|
-
/**
|
|
2801
|
-
* 集群名称
|
|
2802
|
-
*/
|
|
2803
|
-
Name?: string
|
|
2804
|
-
/**
|
|
2805
|
-
* 地域
|
|
2806
|
-
*/
|
|
2807
|
-
Region?: string
|
|
2808
|
-
/**
|
|
2809
|
-
* 用户 AppID
|
|
2810
|
-
*/
|
|
2811
|
-
AppId?: number
|
|
2812
|
-
/**
|
|
2813
|
-
* 主账号 UIN
|
|
2814
|
-
*/
|
|
2815
|
-
OwnerUin?: string
|
|
2816
|
-
/**
|
|
2817
|
-
* 创建者 UIN
|
|
2818
|
-
*/
|
|
2819
|
-
CreatorUin?: string
|
|
2820
|
-
/**
|
|
2821
|
-
* 集群状态, 1 未初始化,,3 初始化中,2 运行中
|
|
2822
|
-
*/
|
|
2823
|
-
Status?: number
|
|
2824
|
-
/**
|
|
2825
|
-
* 描述
|
|
2826
|
-
*/
|
|
2827
|
-
Remark?: string
|
|
2828
|
-
/**
|
|
2829
|
-
* 集群创建时间
|
|
2830
|
-
*/
|
|
2831
|
-
CreateTime?: string
|
|
2832
|
-
/**
|
|
2833
|
-
* 最后一次操作集群的时间
|
|
2834
|
-
*/
|
|
2835
|
-
UpdateTime?: string
|
|
2836
|
-
/**
|
|
2837
|
-
* CU 数量
|
|
2838
|
-
*/
|
|
2839
|
-
CuNum?: number
|
|
2840
|
-
/**
|
|
2841
|
-
* CU 内存规格
|
|
2842
|
-
*/
|
|
2843
|
-
CuMem?: number
|
|
2844
|
-
/**
|
|
2845
|
-
* 可用区
|
|
2846
|
-
*/
|
|
2847
|
-
Zone?: string
|
|
2848
|
-
/**
|
|
2849
|
-
* 状态描述
|
|
2850
|
-
*/
|
|
2851
|
-
StatusDesc?: string
|
|
2852
|
-
/**
|
|
2853
|
-
* 网络
|
|
2854
|
-
*/
|
|
2855
|
-
CCNs?: Array<CCN>
|
|
2856
|
-
/**
|
|
2857
|
-
* 网络
|
|
2858
|
-
*/
|
|
2859
|
-
NetEnvironmentType?: number
|
|
2860
|
-
/**
|
|
2861
|
-
* 空闲 CU
|
|
2862
|
-
*/
|
|
2863
|
-
FreeCuNum?: number
|
|
2864
|
-
/**
|
|
2865
|
-
* 集群绑定的标签
|
|
2866
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2867
|
-
*/
|
|
2868
|
-
Tags?: Array<Tag>
|
|
2869
|
-
/**
|
|
2870
|
-
* 集群隔离时间; 没隔离时间,则为 -
|
|
2871
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2872
|
-
*/
|
|
2873
|
-
IsolatedTime?: string
|
|
2874
|
-
/**
|
|
2875
|
-
* 集群过期时间; 没过期概念,则为 -
|
|
2876
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2877
|
-
*/
|
|
2878
|
-
ExpireTime?: string
|
|
2879
|
-
/**
|
|
2880
|
-
* 距离过期还有多少秒; 没过期概念,则为 -
|
|
2881
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2882
|
-
*/
|
|
2883
|
-
SecondsUntilExpiry?: string
|
|
2884
|
-
/**
|
|
2885
|
-
* 自动续费标记,0 表示默认状态 (用户未设置,即初始状态,用户开通了预付费不停服特权会进行自动续费), 1 表示自动续费,2表示明确不自动续费(用户设置)
|
|
2886
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2887
|
-
*/
|
|
2888
|
-
AutoRenewFlag?: number
|
|
2889
|
-
/**
|
|
2890
|
-
* 集群的默认 COS 存储桶
|
|
2891
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2892
|
-
*/
|
|
2893
|
-
DefaultCOSBucket?: string
|
|
2894
|
-
/**
|
|
2895
|
-
* 集群的CLS 日志集 LogSet
|
|
2896
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2897
|
-
*/
|
|
2898
|
-
CLSLogSet?: string
|
|
2899
|
-
/**
|
|
2900
|
-
* 集群的CLS 日志主题 TopicId
|
|
2901
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2902
|
-
*/
|
|
2903
|
-
CLSTopicId?: string
|
|
2904
|
-
/**
|
|
2905
|
-
* 集群的CLS 日志集 名字
|
|
2906
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2907
|
-
*/
|
|
2908
|
-
CLSLogName?: string
|
|
2909
|
-
/**
|
|
2910
|
-
* 集群的CLS 日志主题 名字
|
|
2911
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2912
|
-
*/
|
|
2913
|
-
CLSTopicName?: string
|
|
2914
|
-
/**
|
|
2915
|
-
* 集群的版本信息
|
|
2916
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2917
|
-
*/
|
|
2918
|
-
Version?: ClusterVersion
|
|
2919
|
-
/**
|
|
2920
|
-
* 细粒度资源下的空闲CU
|
|
2921
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2922
|
-
*/
|
|
2923
|
-
FreeCu?: number
|
|
2924
|
-
/**
|
|
2925
|
-
* 集群的默认日志采集配置
|
|
2926
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2927
|
-
*/
|
|
2928
|
-
DefaultLogCollectConf?: string
|
|
2929
|
-
/**
|
|
2930
|
-
* 取值:0-没有设置,1-已设置,2-不允许设置
|
|
2931
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2932
|
-
*/
|
|
2933
|
-
CustomizedDNSEnabled?: number
|
|
2934
|
-
/**
|
|
2935
|
-
* 空间信息
|
|
2936
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2937
|
-
*/
|
|
2938
|
-
Correlations?: Array<WorkSpaceClusterItem>
|
|
2939
|
-
/**
|
|
2940
|
-
* 运行CU
|
|
2941
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2942
|
-
*/
|
|
2943
|
-
RunningCu?: number
|
|
2944
|
-
/**
|
|
2945
|
-
* 0 后付费,1 预付费
|
|
2946
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2947
|
-
*/
|
|
2948
|
-
PayMode?: number
|
|
2949
|
-
/**
|
|
2950
|
-
* 前端区分 集群是否需要2CU逻辑 因为历史集群 变配不需要, default 1 新集群都需要
|
|
2951
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2952
|
-
*/
|
|
2953
|
-
IsNeedManageNode?: number
|
|
2954
|
-
/**
|
|
2955
|
-
* session集群信息
|
|
2956
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2957
|
-
*/
|
|
2958
|
-
ClusterSessions?: Array<ClusterSession>
|
|
2959
|
-
/**
|
|
2960
|
-
* V3版本 = 2
|
|
2961
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2962
|
-
*/
|
|
2963
|
-
ArchGeneration?: number
|
|
2964
|
-
/**
|
|
2965
|
-
* 0:TKE, 1:EKS
|
|
2966
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2967
|
-
*/
|
|
2968
|
-
ClusterType?: number
|
|
2969
|
-
/**
|
|
2970
|
-
* 订单信息
|
|
2971
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2972
|
-
*/
|
|
2973
|
-
Orders?: Array<Order>
|
|
2974
|
-
/**
|
|
2975
|
-
* Gateway信息
|
|
2976
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2977
|
-
*/
|
|
2978
|
-
SqlGateways?: Array<SqlGatewayItem>
|
|
2979
|
-
/**
|
|
2980
|
-
* 0 公网访问 // 1 内网访问
|
|
2981
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2982
|
-
*/
|
|
2983
|
-
WebUIType?: number
|
|
2984
|
-
/**
|
|
2985
|
-
* 2 独享集群
|
|
2986
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2987
|
-
*/
|
|
2988
|
-
Type?: number
|
|
2989
|
-
/**
|
|
2990
|
-
* 子eks集群
|
|
2991
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2992
|
-
*/
|
|
2993
|
-
SubEks?: SubEks
|
|
2994
|
-
/**
|
|
2995
|
-
* 上级集群
|
|
2996
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2997
|
-
*/
|
|
2998
|
-
AgentSerialId?: string
|
|
2999
|
-
/**
|
|
3000
|
-
* 资源类型
|
|
3001
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3002
|
-
*/
|
|
3003
|
-
ResourceType?: number
|
|
3004
|
-
/**
|
|
3005
|
-
* 集群类型
|
|
3006
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3007
|
-
*/
|
|
3008
|
-
BillingResourceMode?: string
|
|
3009
|
-
/**
|
|
3010
|
-
* Cu比例
|
|
3011
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3012
|
-
*/
|
|
3013
|
-
MemRatio?: number
|
|
3014
|
-
/**
|
|
3015
|
-
* 是否开启跨租户弹性网卡
|
|
3016
|
-
*/
|
|
3017
|
-
CrossTenantEniMode?: number
|
|
3018
|
-
/**
|
|
3019
|
-
* 总的CPU
|
|
3020
|
-
*/
|
|
3021
|
-
TotalCpu?: number
|
|
3022
|
-
/**
|
|
3023
|
-
* 总的内存
|
|
3024
|
-
*/
|
|
3025
|
-
TotalMem?: number
|
|
3026
|
-
/**
|
|
3027
|
-
* 运行的CPU
|
|
3028
|
-
*/
|
|
3029
|
-
RunningCpu?: number
|
|
3030
|
-
/**
|
|
3031
|
-
* 运行的内存
|
|
3032
|
-
*/
|
|
3033
|
-
RunningMem?: number
|
|
3034
|
-
}
|
|
3035
|
-
|
|
3036
|
-
/**
|
|
3037
|
-
* 作业运行图
|
|
3038
|
-
*/
|
|
3039
|
-
export interface JobGraph {
|
|
3040
|
-
/**
|
|
3041
|
-
* 运行图的点集合
|
|
3042
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3043
|
-
*/
|
|
3044
|
-
Nodes?: Array<JobGraphNode>
|
|
3045
|
-
/**
|
|
3046
|
-
* 运行图的边集合
|
|
3047
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3048
|
-
*/
|
|
3049
|
-
Edges?: Array<JobGraphEdge>
|
|
3050
|
-
}
|
|
3051
|
-
|
|
3052
|
-
/**
|
|
3053
|
-
* DescribeJobSubmissionLog请求参数结构体
|
|
3054
|
-
*/
|
|
3055
|
-
export interface DescribeJobSubmissionLogRequest {
|
|
3056
|
-
/**
|
|
3057
|
-
* 作业ID,例如:cql-6v1jkxrn
|
|
3058
|
-
*/
|
|
3059
|
-
JobId: string
|
|
3060
|
-
/**
|
|
3061
|
-
* 起始时间,unix时间戳,毫秒级,例如:1611754219108
|
|
3062
|
-
*/
|
|
3063
|
-
StartTime: number
|
|
3064
|
-
/**
|
|
3065
|
-
* 结束时间,unix时间戳,毫秒级,例如:1611754219108
|
|
3066
|
-
*/
|
|
3067
|
-
EndTime: number
|
|
3068
|
-
/**
|
|
3069
|
-
* 作业运行的实例ID, 例如:1,2,3。默认为0,表示未选中任何实例,搜索该时间段内最近的一个实例的日志
|
|
3070
|
-
*/
|
|
3071
|
-
RunningOrderId?: number
|
|
3072
|
-
/**
|
|
3073
|
-
* 日志搜索的关键词,默认为空
|
|
3074
|
-
*/
|
|
3075
|
-
Keyword?: string
|
|
3076
|
-
/**
|
|
3077
|
-
* 日志搜索的游标,可透传上次返回的值,默认为空
|
|
3078
|
-
*/
|
|
3079
|
-
Cursor?: string
|
|
3080
|
-
/**
|
|
3081
|
-
* 时间戳排序规则,asc - 升序,desc - 降序。默认为升序
|
|
3082
|
-
*/
|
|
3083
|
-
OrderType?: string
|
|
3084
|
-
/**
|
|
3085
|
-
* 搜索的日志条数上限值,最大为100
|
|
3086
|
-
*/
|
|
3087
|
-
Limit?: number
|
|
3088
|
-
}
|
|
3089
|
-
|
|
3090
|
-
/**
|
|
3091
|
-
* DescribeJobs请求参数结构体
|
|
3092
|
-
*/
|
|
3093
|
-
export interface DescribeJobsRequest {
|
|
3094
|
-
/**
|
|
3095
|
-
* 按照一个或者多个作业ID查询。作业ID形如:cql-11112222,每次请求的作业上限为100。参数不支持同时指定JobIds和Filters。
|
|
3096
|
-
*/
|
|
3097
|
-
JobIds?: Array<string>
|
|
3098
|
-
/**
|
|
3099
|
-
* 过滤条件,支持的 Filter.Name 为:作业名 Name、作业状态 Status、所属集群 ClusterId、作业id JobId、集群名称 ClusterName。 每次请求的 Filters 个数的上限为 5,Filter.Values 的个数上限为 5。参数不支持同时指定 JobIds 和 Filters。
|
|
3100
|
-
*/
|
|
3101
|
-
Filters?: Array<Filter>
|
|
3102
|
-
/**
|
|
3103
|
-
* 偏移量,默认为0
|
|
3104
|
-
*/
|
|
3105
|
-
Offset?: number
|
|
3106
|
-
/**
|
|
3107
|
-
* 分页大小,默认为20,最大值为100
|
|
3108
|
-
*/
|
|
3109
|
-
Limit?: number
|
|
3110
|
-
/**
|
|
3111
|
-
* 工作空间 SerialId
|
|
3112
|
-
*/
|
|
3113
|
-
WorkSpaceId?: string
|
|
3114
|
-
/**
|
|
3115
|
-
* 查询额外的作业信息,例如 JobEventInfo
|
|
3116
|
-
*/
|
|
3117
|
-
ExtraResult?: Array<string>
|
|
3118
|
-
}
|
|
3119
|
-
|
|
3120
|
-
/**
|
|
3121
|
-
* Job详细信息
|
|
3122
|
-
*/
|
|
3123
|
-
export interface JobV1 {
|
|
3124
|
-
/**
|
|
3125
|
-
* 作业ID
|
|
3126
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3127
|
-
*/
|
|
3128
|
-
JobId?: string
|
|
3129
|
-
/**
|
|
3130
|
-
* 地域
|
|
3131
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3132
|
-
*/
|
|
3133
|
-
Region?: string
|
|
3134
|
-
/**
|
|
3135
|
-
* 可用区
|
|
3136
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3137
|
-
*/
|
|
3138
|
-
Zone?: string
|
|
3139
|
-
/**
|
|
3140
|
-
* 用户AppId
|
|
3141
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3142
|
-
*/
|
|
3143
|
-
AppId?: number
|
|
3144
|
-
/**
|
|
3145
|
-
* 用户UIN
|
|
3146
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3147
|
-
*/
|
|
3148
|
-
OwnerUin?: string
|
|
3149
|
-
/**
|
|
3150
|
-
* 创建者UIN
|
|
3151
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3152
|
-
*/
|
|
3153
|
-
CreatorUin?: string
|
|
3154
|
-
/**
|
|
3155
|
-
* 作业名字
|
|
3156
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3157
|
-
*/
|
|
3158
|
-
Name?: string
|
|
3159
|
-
/**
|
|
3160
|
-
* 作业类型,1:sql作业,2:Jar作业
|
|
3161
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3162
|
-
*/
|
|
3163
|
-
JobType?: number
|
|
3164
|
-
/**
|
|
3165
|
-
* 作业状态,1:未初始化,2:未发布,3:操作中,4:运行中,5:停止,6:暂停,-1:故障
|
|
3166
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3167
|
-
*/
|
|
3168
|
-
Status?: number
|
|
3169
|
-
/**
|
|
3170
|
-
* 作业创建时间
|
|
3171
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3172
|
-
*/
|
|
3173
|
-
CreateTime?: string
|
|
3174
|
-
/**
|
|
3175
|
-
* 作业启动时间
|
|
3176
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3177
|
-
*/
|
|
3178
|
-
StartTime?: string
|
|
3179
|
-
/**
|
|
3180
|
-
* 作业停止时间
|
|
3181
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3182
|
-
*/
|
|
3183
|
-
StopTime?: string
|
|
3184
|
-
/**
|
|
3185
|
-
* 作业更新时间
|
|
3186
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3187
|
-
*/
|
|
3188
|
-
UpdateTime?: string
|
|
3189
|
-
/**
|
|
3190
|
-
* 作业累计运行时间
|
|
3191
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3192
|
-
*/
|
|
3193
|
-
TotalRunMillis?: number
|
|
3194
|
-
/**
|
|
3195
|
-
* 备注信息
|
|
3196
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3197
|
-
*/
|
|
3198
|
-
Remark?: string
|
|
3199
|
-
/**
|
|
3200
|
-
* 操作错误提示信息
|
|
3201
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3202
|
-
*/
|
|
3203
|
-
LastOpResult?: string
|
|
3204
|
-
/**
|
|
3205
|
-
* 集群名字
|
|
3206
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3207
|
-
*/
|
|
3208
|
-
ClusterName?: string
|
|
3209
|
-
/**
|
|
3210
|
-
* 最新配置版本号
|
|
3211
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3212
|
-
*/
|
|
3213
|
-
LatestJobConfigVersion?: number
|
|
3214
|
-
/**
|
|
3215
|
-
* 已发布的配置版本
|
|
3216
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3217
|
-
*/
|
|
3218
|
-
PublishedJobConfigVersion?: number
|
|
3219
|
-
/**
|
|
3220
|
-
* 运行的CU数量
|
|
3221
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3222
|
-
*/
|
|
3223
|
-
RunningCuNum?: number
|
|
3224
|
-
/**
|
|
3225
|
-
* 作业内存规格
|
|
3226
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3227
|
-
*/
|
|
3228
|
-
CuMem?: number
|
|
3229
|
-
/**
|
|
3230
|
-
* 作业状态描述
|
|
3231
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3232
|
-
*/
|
|
3233
|
-
StatusDesc?: string
|
|
3234
|
-
/**
|
|
3235
|
-
* 运行状态时表示单次运行时间
|
|
3236
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3237
|
-
*/
|
|
3238
|
-
CurrentRunMillis?: number
|
|
3239
|
-
/**
|
|
3240
|
-
* 作业所在的集群ID
|
|
3241
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3242
|
-
*/
|
|
3243
|
-
ClusterId?: string
|
|
3244
|
-
/**
|
|
3245
|
-
* 作业管理WEB UI 入口
|
|
3246
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3247
|
-
*/
|
|
3248
|
-
WebUIUrl?: string
|
|
3249
|
-
/**
|
|
3250
|
-
* 作业所在集群类型
|
|
3251
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3252
|
-
*/
|
|
3253
|
-
SchedulerType?: number
|
|
3254
|
-
/**
|
|
3255
|
-
* 作业所在集群状态
|
|
3256
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3257
|
-
*/
|
|
3258
|
-
ClusterStatus?: number
|
|
3259
|
-
/**
|
|
3260
|
-
* 细粒度下的运行的CU数量
|
|
3261
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3262
|
-
*/
|
|
3263
|
-
RunningCu?: number
|
|
3264
|
-
/**
|
|
3265
|
-
* 作业运行的 Flink 版本
|
|
3266
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3267
|
-
*/
|
|
3268
|
-
FlinkVersion?: string
|
|
3269
|
-
/**
|
|
3270
|
-
* 工作空间 SerialId
|
|
3271
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3272
|
-
*/
|
|
3273
|
-
WorkSpaceId?: string
|
|
3274
|
-
/**
|
|
3275
|
-
* 工作空间名称
|
|
3276
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3277
|
-
*/
|
|
3278
|
-
WorkSpaceName?: string
|
|
3279
|
-
/**
|
|
3280
|
-
* 作业标签
|
|
3281
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3282
|
-
*/
|
|
3283
|
-
Tags?: Array<Tag>
|
|
3284
|
-
/**
|
|
3285
|
-
* 作业异常事件信息
|
|
3286
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3287
|
-
*/
|
|
3288
|
-
EventInfo?: JobEventInfo
|
|
3289
|
-
/**
|
|
3290
|
-
* 描述信息
|
|
3291
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3292
|
-
*/
|
|
3293
|
-
Description?: string
|
|
3294
|
-
/**
|
|
3295
|
-
* 0:代表没开启调优任务,1:开启智能调优,2:代表定时调优
|
|
3296
|
-
|
|
3297
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3298
|
-
*/
|
|
3299
|
-
ScalingType?: number
|
|
3300
|
-
/**
|
|
3301
|
-
* 使用CPU数目
|
|
3302
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3303
|
-
*/
|
|
3304
|
-
RunningCpu?: number
|
|
3305
|
-
/**
|
|
3306
|
-
* 使用内存数量
|
|
3307
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3308
|
-
*/
|
|
3309
|
-
RunningMem?: number
|
|
3310
|
-
/**
|
|
3311
|
-
* 是否开了默认告警
|
|
3312
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3313
|
-
*/
|
|
3314
|
-
OpenJobDefaultAlarm?: number
|
|
3315
|
-
/**
|
|
3316
|
-
* 操作中描述
|
|
3317
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3318
|
-
*/
|
|
3319
|
-
ProgressDesc?: string
|
|
3320
|
-
}
|
|
3321
|
-
|
|
3322
|
-
/**
|
|
3323
|
-
* 作业配置详情
|
|
3324
|
-
*/
|
|
3325
|
-
export interface JobConfig {
|
|
3326
|
-
/**
|
|
3327
|
-
* 作业Id
|
|
3328
|
-
*/
|
|
3329
|
-
JobId?: string
|
|
3330
|
-
/**
|
|
3331
|
-
* 主类
|
|
3332
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3333
|
-
*/
|
|
3334
|
-
EntrypointClass?: string
|
|
3335
|
-
/**
|
|
3336
|
-
* 主类入参
|
|
3337
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3338
|
-
*/
|
|
3339
|
-
ProgramArgs?: string
|
|
3340
|
-
/**
|
|
3341
|
-
* 备注
|
|
3342
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3343
|
-
*/
|
|
3344
|
-
Remark?: string
|
|
3345
|
-
/**
|
|
3346
|
-
* 作业配置创建时间
|
|
3347
|
-
*/
|
|
3348
|
-
CreateTime?: string
|
|
3349
|
-
/**
|
|
3350
|
-
* 作业配置的版本号
|
|
3351
|
-
*/
|
|
3352
|
-
Version?: number
|
|
3353
|
-
/**
|
|
3354
|
-
* 作业默认并行度
|
|
3355
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3356
|
-
*/
|
|
3357
|
-
DefaultParallelism?: number
|
|
3358
|
-
/**
|
|
3359
|
-
* 系统参数
|
|
3360
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3361
|
-
*/
|
|
3362
|
-
Properties?: Array<Property>
|
|
3363
|
-
/**
|
|
3364
|
-
* 引用资源
|
|
3365
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3366
|
-
*/
|
|
3367
|
-
ResourceRefDetails?: Array<ResourceRefDetail>
|
|
3368
|
-
/**
|
|
3369
|
-
* 创建者uin
|
|
3370
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3371
|
-
*/
|
|
3372
|
-
CreatorUin?: string
|
|
3373
|
-
/**
|
|
3374
|
-
* 作业配置上次启动时间
|
|
3375
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3376
|
-
*/
|
|
3377
|
-
UpdateTime?: string
|
|
3378
|
-
/**
|
|
3379
|
-
* 作业绑定的存储桶
|
|
3380
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3381
|
-
*/
|
|
3382
|
-
COSBucket?: string
|
|
3383
|
-
/**
|
|
3384
|
-
* 是否启用日志收集,0-未启用,1-已启用,2-历史集群未设置日志集,3-历史集群已开启
|
|
3385
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3386
|
-
*/
|
|
3387
|
-
LogCollect?: number
|
|
3388
|
-
/**
|
|
3389
|
-
* 作业的最大并行度
|
|
3390
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3391
|
-
*/
|
|
3392
|
-
MaxParallelism?: number
|
|
3393
|
-
/**
|
|
3394
|
-
* JobManager规格
|
|
3395
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3396
|
-
*/
|
|
3397
|
-
JobManagerSpec?: number
|
|
3398
|
-
/**
|
|
3399
|
-
* TaskManager规格
|
|
3400
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3401
|
-
*/
|
|
3402
|
-
TaskManagerSpec?: number
|
|
3403
|
-
/**
|
|
3404
|
-
* CLS日志集ID
|
|
3405
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3406
|
-
*/
|
|
3407
|
-
ClsLogsetId?: string
|
|
3408
|
-
/**
|
|
3409
|
-
* CLS日志主题ID
|
|
3410
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3411
|
-
*/
|
|
3412
|
-
ClsTopicId?: string
|
|
3413
|
-
/**
|
|
3414
|
-
* pyflink作业运行的python版本
|
|
3415
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3416
|
-
*/
|
|
3417
|
-
PythonVersion?: string
|
|
3418
|
-
/**
|
|
3419
|
-
* Oceanus 平台恢复作业开关 1:开启 -1: 关闭
|
|
3420
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3421
|
-
*/
|
|
3422
|
-
AutoRecover?: number
|
|
3423
|
-
/**
|
|
3424
|
-
* 日志级别
|
|
3425
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3426
|
-
*/
|
|
3427
|
-
LogLevel?: string
|
|
3428
|
-
/**
|
|
3429
|
-
* 类日志级别
|
|
3430
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3431
|
-
*/
|
|
3432
|
-
ClazzLevels?: Array<ClazzLevel>
|
|
3433
|
-
/**
|
|
3434
|
-
* 是否开启专家模式
|
|
3435
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3436
|
-
*/
|
|
3437
|
-
ExpertModeOn?: boolean
|
|
3438
|
-
/**
|
|
3439
|
-
* 专家模式的配置
|
|
3440
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3441
|
-
*/
|
|
3442
|
-
ExpertModeConfiguration?: ExpertModeConfiguration
|
|
3443
|
-
/**
|
|
3444
|
-
* trace链路
|
|
3445
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3446
|
-
*/
|
|
3447
|
-
TraceModeOn?: boolean
|
|
3448
|
-
/**
|
|
3449
|
-
* trace链路配置
|
|
3450
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3451
|
-
*/
|
|
3452
|
-
TraceModeConfiguration?: TraceModeConfiguration
|
|
3453
|
-
/**
|
|
3454
|
-
* checkpoint保留个数
|
|
3455
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3456
|
-
*/
|
|
3457
|
-
CheckpointRetainedNum?: number
|
|
3458
|
-
/**
|
|
3459
|
-
* 算子拓扑图
|
|
3460
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3461
|
-
*/
|
|
3462
|
-
JobGraph?: JobGraph
|
|
3463
|
-
/**
|
|
3464
|
-
* es索引
|
|
3465
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3466
|
-
*/
|
|
3467
|
-
EsServerlessIndex?: string
|
|
3468
|
-
/**
|
|
3469
|
-
* es空间
|
|
3470
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3471
|
-
*/
|
|
3472
|
-
EsServerlessSpace?: string
|
|
3473
|
-
/**
|
|
3474
|
-
* es索引中文
|
|
3475
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3476
|
-
*/
|
|
3477
|
-
IndexName?: string
|
|
3478
|
-
/**
|
|
3479
|
-
* es空间中文
|
|
3480
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3481
|
-
*/
|
|
3482
|
-
WorkspaceName?: string
|
|
3483
|
-
/**
|
|
3484
|
-
* flink 版本
|
|
3485
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3486
|
-
*/
|
|
3487
|
-
FlinkVersion?: string
|
|
3488
|
-
/**
|
|
3489
|
-
* jm使用cpu数目
|
|
3490
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3491
|
-
*/
|
|
3492
|
-
JobManagerCpu?: number
|
|
3493
|
-
/**
|
|
3494
|
-
* jm使用内存数目
|
|
3495
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3496
|
-
*/
|
|
3497
|
-
JobManagerMem?: number
|
|
3498
|
-
/**
|
|
3499
|
-
* tm使用cpu数
|
|
3500
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3501
|
-
*/
|
|
3502
|
-
TaskManagerCpu?: number
|
|
3503
|
-
/**
|
|
3504
|
-
* tm使用mem数
|
|
3505
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3506
|
-
*/
|
|
3507
|
-
TaskManagerMem?: number
|
|
3508
|
-
/**
|
|
3509
|
-
* 运行中配置
|
|
3510
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3511
|
-
*/
|
|
3512
|
-
JobConfigItem?: JobConfig
|
|
3513
|
-
}
|
|
3514
|
-
|
|
3515
|
-
/**
|
|
3516
|
-
* DescribeResourceConfigs请求参数结构体
|
|
3517
|
-
*/
|
|
3518
|
-
export interface DescribeResourceConfigsRequest {
|
|
3519
|
-
/**
|
|
3520
|
-
* 资源ID
|
|
3521
|
-
*/
|
|
3522
|
-
ResourceId?: string
|
|
3523
|
-
/**
|
|
3524
|
-
* 偏移量,仅当设置 Limit 时该参数有效
|
|
3525
|
-
*/
|
|
3526
|
-
Offset?: number
|
|
3527
|
-
/**
|
|
3528
|
-
* 返回值大小,不填则返回全量数据
|
|
3529
|
-
*/
|
|
3530
|
-
Limit?: number
|
|
3531
|
-
/**
|
|
3532
|
-
* 资源配置Versions集合
|
|
3533
|
-
*/
|
|
3534
|
-
ResourceConfigVersions?: Array<number | bigint>
|
|
3535
|
-
/**
|
|
3536
|
-
* 作业配置版本
|
|
3537
|
-
*/
|
|
3538
|
-
JobConfigVersion?: number
|
|
3539
|
-
/**
|
|
3540
|
-
* 作业ID
|
|
3541
|
-
*/
|
|
3542
|
-
JobId?: string
|
|
3543
|
-
/**
|
|
3544
|
-
* 工作空间 SerialId
|
|
3545
|
-
*/
|
|
3546
|
-
WorkSpaceId?: string
|
|
3547
|
-
}
|
|
3548
|
-
|
|
3549
|
-
/**
|
|
3550
|
-
* ModifyFolder返回参数结构体
|
|
3551
|
-
*/
|
|
3552
|
-
export interface ModifyFolderResponse {
|
|
3553
|
-
/**
|
|
3554
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3555
|
-
*/
|
|
3556
|
-
RequestId?: string
|
|
3557
|
-
}
|
|
3558
|
-
|
|
3559
|
-
/**
|
|
3560
|
-
* SlotSharingGroup 描述
|
|
3561
|
-
*/
|
|
3562
|
-
export interface SlotSharingGroup {
|
|
3563
|
-
/**
|
|
3564
|
-
* SlotSharingGroup的名字
|
|
3565
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3566
|
-
*/
|
|
3567
|
-
Name: string
|
|
3568
|
-
/**
|
|
3569
|
-
* SlotSharingGroup的规格
|
|
3570
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3571
|
-
*/
|
|
3572
|
-
Spec: SlotSharingGroupSpec
|
|
3573
|
-
/**
|
|
3574
|
-
* SlotSharingGroup的描述
|
|
3575
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3576
|
-
*/
|
|
3577
|
-
Description?: string
|
|
3578
|
-
/**
|
|
3579
|
-
* SlotSharingGroup的配置
|
|
3580
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3581
|
-
*/
|
|
3582
|
-
Configuration?: Array<Property>
|
|
3583
|
-
}
|
|
3584
|
-
|
|
3585
|
-
/**
|
|
3586
|
-
* ModifyWorkSpace返回参数结构体
|
|
3587
|
-
*/
|
|
3588
|
-
export interface ModifyWorkSpaceResponse {
|
|
3589
|
-
/**
|
|
3590
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3591
|
-
*/
|
|
3592
|
-
RequestId?: string
|
|
3593
|
-
}
|
|
3594
|
-
|
|
3595
|
-
/**
|
|
3596
|
-
* RunSqlGatewayStatement返回参数结构体
|
|
3597
|
-
*/
|
|
3598
|
-
export interface RunSqlGatewayStatementResponse {
|
|
3599
|
-
/**
|
|
3600
|
-
* 错误信息
|
|
3601
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3602
|
-
*/
|
|
3603
|
-
ErrorMessage?: Array<string>
|
|
3604
|
-
/**
|
|
3605
|
-
* 会话id,若入参未传,则返回自动创建的会话id,若入参已经传递,则返回值与原传入值一致
|
|
3606
|
-
*/
|
|
3607
|
-
SessionId?: string
|
|
3608
|
-
/**
|
|
3609
|
-
* 返回执行id,可以根据该执行id和会话id获取执行结果
|
|
3610
|
-
*/
|
|
3611
|
-
OperationHandleId?: string
|
|
3612
|
-
/**
|
|
3613
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3614
|
-
*/
|
|
3615
|
-
RequestId?: string
|
|
3616
|
-
}
|
|
3617
|
-
|
|
3618
|
-
/**
|
|
3619
|
-
* CreateJob请求参数结构体
|
|
3620
|
-
*/
|
|
3621
|
-
export interface CreateJobRequest {
|
|
3622
|
-
/**
|
|
3623
|
-
* 作业名称,允许输入长度小于50个字符的中文、英文、数字、-(横线)、_(下划线)、.(点),且符号必须半角字符。注意作业名不能和现有作业同名
|
|
3624
|
-
*/
|
|
3625
|
-
Name: string
|
|
3626
|
-
/**
|
|
3627
|
-
* 作业的类型,1 表示 SQL 作业,2 表示 JAR 作业
|
|
3628
|
-
*/
|
|
3629
|
-
JobType: number
|
|
3630
|
-
/**
|
|
3631
|
-
* 集群的类型,1 表示共享集群,2 表示独享集群
|
|
3632
|
-
*/
|
|
3633
|
-
ClusterType: number
|
|
3634
|
-
/**
|
|
3635
|
-
* 当 ClusterType=2 时,必选,用来指定该作业提交的独享集群 ID
|
|
3636
|
-
*/
|
|
3637
|
-
ClusterId?: string
|
|
3638
|
-
/**
|
|
3639
|
-
* 设置每 CU 的内存规格,单位为 GB,支持 2、4、8、16(需申请开通白名单后使用)。默认为 4,即 1 CU 对应 4 GB 的运行内存
|
|
3640
|
-
*/
|
|
3641
|
-
CuMem?: number
|
|
3642
|
-
/**
|
|
3643
|
-
* 作业的备注信息,可以随意设置
|
|
3644
|
-
*/
|
|
3645
|
-
Remark?: string
|
|
3646
|
-
/**
|
|
3647
|
-
* 作业名所属文件夹ID,根目录为"root"
|
|
3648
|
-
*/
|
|
3649
|
-
FolderId?: string
|
|
3650
|
-
/**
|
|
3651
|
-
* 作业运行的Flink版本
|
|
3652
|
-
*/
|
|
3653
|
-
FlinkVersion?: string
|
|
3654
|
-
/**
|
|
3655
|
-
* 工作空间 SerialId
|
|
3656
|
-
*/
|
|
3657
|
-
WorkSpaceId?: string
|
|
3658
|
-
/**
|
|
3659
|
-
* 作业标签
|
|
3660
|
-
*/
|
|
3661
|
-
Tags?: Array<Tag>
|
|
3662
|
-
/**
|
|
3663
|
-
* 作业描述
|
|
3664
|
-
*/
|
|
3665
|
-
Description?: string
|
|
3666
|
-
/**
|
|
3667
|
-
* 开启默认告警
|
|
3668
|
-
*/
|
|
3669
|
-
OpenJobDefaultAlarm?: number
|
|
3670
|
-
}
|
|
3671
|
-
|
|
3672
|
-
/**
|
|
3673
|
-
* 搜索启动日志时返回的作业实例
|
|
3674
|
-
*/
|
|
3675
|
-
export interface JobInstanceForSubmissionLog {
|
|
3676
|
-
/**
|
|
3677
|
-
* 实例的Id, 按照启动的时间顺序,从1开始
|
|
3678
|
-
*/
|
|
3679
|
-
RunningOrderId: number
|
|
3680
|
-
/**
|
|
3681
|
-
* 作业实例的启动时间
|
|
3682
|
-
*/
|
|
3683
|
-
JobInstanceStartTime: string
|
|
3684
|
-
/**
|
|
3685
|
-
* 作业实例启动的时间(毫秒)
|
|
3686
|
-
*/
|
|
3687
|
-
StartingMillis: number
|
|
3688
|
-
}
|
|
3689
|
-
|
|
3690
|
-
/**
|
|
3691
|
-
* DescribeFolder请求参数结构体
|
|
3692
|
-
*/
|
|
3693
|
-
export interface DescribeFolderRequest {
|
|
3694
|
-
/**
|
|
3695
|
-
* folder id
|
|
3696
|
-
*/
|
|
3697
|
-
FolderId: string
|
|
3698
|
-
/**
|
|
3699
|
-
* workspace id
|
|
3700
|
-
*/
|
|
3701
|
-
WorkSpaceId: string
|
|
3702
|
-
/**
|
|
3703
|
-
* 1:资源文件夹
|
|
3704
|
-
其他:作业文件夹
|
|
3705
|
-
*/
|
|
3706
|
-
FolderType: number
|
|
3707
|
-
}
|
|
3708
|
-
|
|
3709
|
-
/**
|
|
3710
|
-
* DeleteFolders返回参数结构体
|
|
3711
|
-
*/
|
|
3712
|
-
export interface DeleteFoldersResponse {
|
|
3713
|
-
/**
|
|
3714
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3715
|
-
*/
|
|
3716
|
-
RequestId?: string
|
|
3717
|
-
}
|
|
3718
|
-
|
|
3719
|
-
/**
|
|
3720
|
-
* 子目录信息
|
|
3721
|
-
*/
|
|
3722
|
-
export interface SubFolderInfo {
|
|
3723
|
-
/**
|
|
3724
|
-
* folder id
|
|
3725
|
-
*/
|
|
3726
|
-
FolderId?: string
|
|
3727
|
-
/**
|
|
3728
|
-
* folder name
|
|
3729
|
-
*/
|
|
3730
|
-
FolderName?: string
|
|
3731
|
-
}
|
|
3732
|
-
|
|
3733
|
-
/**
|
|
3734
|
-
* session集群信息
|
|
3735
|
-
*/
|
|
3736
|
-
export interface ClusterSession {
|
|
3737
|
-
/**
|
|
3738
|
-
* 集群SerialId
|
|
3739
|
-
*/
|
|
3740
|
-
ClusterGroupSerialId?: string
|
|
3741
|
-
/**
|
|
3742
|
-
* 创建者appId
|
|
3743
|
-
*/
|
|
3744
|
-
AppId?: number
|
|
3745
|
-
/**
|
|
3746
|
-
* 创建者主账号
|
|
3747
|
-
*/
|
|
3748
|
-
OwnerUin?: string
|
|
3749
|
-
/**
|
|
3750
|
-
* 创建者账号
|
|
3751
|
-
*/
|
|
3752
|
-
CreatorUin?: string
|
|
3753
|
-
/**
|
|
3754
|
-
* 区域
|
|
3755
|
-
*/
|
|
3756
|
-
Region?: string
|
|
3757
|
-
/**
|
|
3758
|
-
* zone
|
|
3759
|
-
*/
|
|
3760
|
-
Zone?: string
|
|
3761
|
-
/**
|
|
3762
|
-
* Session集群状态
|
|
3763
|
-
*/
|
|
3764
|
-
Status?: number
|
|
3765
|
-
/**
|
|
3766
|
-
* Session集群消耗的cu数量
|
|
3767
|
-
*/
|
|
3768
|
-
CuNum?: number
|
|
3769
|
-
/**
|
|
3770
|
-
* Session集群的Flink版本
|
|
3771
|
-
*/
|
|
3772
|
-
FlinkVersion?: string
|
|
3773
|
-
/**
|
|
3774
|
-
* session集群FlinkUi地址
|
|
3775
|
-
*/
|
|
3776
|
-
WebUIUrl?: string
|
|
3777
|
-
/**
|
|
3778
|
-
* session集群高级参数
|
|
3779
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3780
|
-
*/
|
|
3781
|
-
Properties?: Array<Property>
|
|
3782
|
-
/**
|
|
3783
|
-
* 引用资源
|
|
3784
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3785
|
-
*/
|
|
3786
|
-
ResourceRefs?: Array<SessionClusterRefItem>
|
|
3787
|
-
/**
|
|
3788
|
-
* JobManager的规格
|
|
3789
|
-
*/
|
|
3790
|
-
JobManagerCuSpec?: number
|
|
3791
|
-
/**
|
|
3792
|
-
* TaskManager的规格
|
|
3793
|
-
*/
|
|
3794
|
-
TaskManagerCuSpec?: number
|
|
3795
|
-
/**
|
|
3796
|
-
* TaskManager启动的数量
|
|
3797
|
-
*/
|
|
3798
|
-
TaskManagerNum?: number
|
|
3799
|
-
/**
|
|
3800
|
-
* 创建时间
|
|
3801
|
-
*/
|
|
3802
|
-
CreateTime?: string
|
|
3803
|
-
/**
|
|
3804
|
-
* 更新时间
|
|
3805
|
-
*/
|
|
3806
|
-
UpdateTime?: string
|
|
3807
|
-
/**
|
|
3808
|
-
* JobManagerCpu
|
|
3809
|
-
*/
|
|
3810
|
-
JobManagerCpu?: number
|
|
3811
|
-
/**
|
|
3812
|
-
* JobManagerMem
|
|
3813
|
-
*/
|
|
3814
|
-
JobManagerMem?: number
|
|
3815
|
-
/**
|
|
3816
|
-
* TaskManagerCpu
|
|
3817
|
-
*/
|
|
3818
|
-
TaskManagerCpu?: number
|
|
3819
|
-
/**
|
|
3820
|
-
* TaskManagerMem
|
|
3821
|
-
*/
|
|
3822
|
-
TaskManagerMem?: number
|
|
3823
|
-
}
|
|
3824
|
-
|
|
3825
|
-
/**
|
|
3826
|
-
* CreateResourceConfig请求参数结构体
|
|
3827
|
-
*/
|
|
3828
|
-
export interface CreateResourceConfigRequest {
|
|
3829
|
-
/**
|
|
3830
|
-
* 资源ID
|
|
3831
|
-
*/
|
|
3832
|
-
ResourceId: string
|
|
3833
|
-
/**
|
|
3834
|
-
* 位置信息
|
|
3835
|
-
*/
|
|
3836
|
-
ResourceLoc: ResourceLoc
|
|
3837
|
-
/**
|
|
3838
|
-
* 资源描述信息
|
|
3839
|
-
*/
|
|
3840
|
-
Remark?: string
|
|
3841
|
-
/**
|
|
3842
|
-
* 1: 资源版本达到上限,自动删除最早可删除的版本
|
|
3843
|
-
*/
|
|
3844
|
-
AutoDelete?: number
|
|
3845
|
-
/**
|
|
3846
|
-
* 工作空间 SerialId
|
|
3847
|
-
*/
|
|
3848
|
-
WorkSpaceId?: string
|
|
3849
|
-
}
|
|
3850
|
-
|
|
3851
|
-
/**
|
|
3852
|
-
* StopJobs返回参数结构体
|
|
3853
|
-
*/
|
|
3854
|
-
export interface StopJobsResponse {
|
|
3855
|
-
/**
|
|
3856
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3857
|
-
*/
|
|
3858
|
-
RequestId?: string
|
|
3859
|
-
}
|
|
3860
|
-
|
|
3861
|
-
/**
|
|
3862
|
-
* DescribeClusters返回参数结构体
|
|
3863
|
-
*/
|
|
3864
|
-
export interface DescribeClustersResponse {
|
|
3865
|
-
/**
|
|
3866
|
-
* 集群总数
|
|
3867
|
-
*/
|
|
3868
|
-
TotalCount?: number
|
|
3869
|
-
/**
|
|
3870
|
-
* 集群列表
|
|
3871
|
-
*/
|
|
3872
|
-
ClusterSet?: Array<Cluster>
|
|
3873
|
-
/**
|
|
3874
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3875
|
-
*/
|
|
3876
|
-
RequestId?: string
|
|
3877
|
-
}
|
|
3878
|
-
|
|
3879
|
-
/**
|
|
3880
|
-
* DescribeResources请求参数结构体
|
|
3881
|
-
*/
|
|
3882
|
-
export interface DescribeResourcesRequest {
|
|
3883
|
-
/**
|
|
3884
|
-
* 需要查询的资源ID数组,数量不超过100个。如果填写了该参数则忽略Filters参数。
|
|
3885
|
-
*/
|
|
3886
|
-
ResourceIds?: Array<string>
|
|
3887
|
-
/**
|
|
3888
|
-
* 偏移量,仅当设置 Limit 参数时有效
|
|
3889
|
-
*/
|
|
3890
|
-
Offset?: number
|
|
3891
|
-
/**
|
|
3892
|
-
* 条数限制。如果不填,默认返回 20 条
|
|
3893
|
-
*/
|
|
3894
|
-
Limit?: number
|
|
3895
|
-
/**
|
|
3896
|
-
* <li><strong>ResourceName</strong></li>
|
|
3897
|
-
<p style="padding-left: 30px;">按照资源名字过滤,支持模糊过滤。传入的过滤名字不超过5个</p><p style="padding-left: 30px;">类型: String</p><p style="padding-left: 30px;">必选: 否</p>
|
|
3898
|
-
*/
|
|
3899
|
-
Filters?: Array<Filter>
|
|
3900
|
-
/**
|
|
3901
|
-
* 工作空间 SerialId
|
|
3902
|
-
*/
|
|
3903
|
-
WorkSpaceId?: string
|
|
3904
|
-
/**
|
|
3905
|
-
* 资源类型,0=用户,1系统connector,2=用户自定义connector
|
|
3906
|
-
*/
|
|
3907
|
-
SystemResource?: number
|
|
3908
|
-
}
|
|
3909
|
-
|
|
3910
|
-
/**
|
|
3911
|
-
* DescribeJobEvents请求参数结构体
|
|
3912
|
-
*/
|
|
3913
|
-
export interface DescribeJobEventsRequest {
|
|
3914
|
-
/**
|
|
3915
|
-
* 作业的 ID
|
|
3916
|
-
*/
|
|
3917
|
-
JobId: string
|
|
3918
|
-
/**
|
|
3919
|
-
* 筛选条件:起始 Unix 时间戳(秒)
|
|
3920
|
-
*/
|
|
3921
|
-
StartTimestamp: number
|
|
3922
|
-
/**
|
|
3923
|
-
* 筛选条件:结束 Unix 时间戳(秒)
|
|
3924
|
-
*/
|
|
3925
|
-
EndTimestamp: number
|
|
3926
|
-
/**
|
|
3927
|
-
* 事件类型。如果不传则返回所有类型的数据
|
|
3928
|
-
*/
|
|
3929
|
-
Types?: Array<string>
|
|
3930
|
-
/**
|
|
3931
|
-
* 运行实例 ID 数组
|
|
3932
|
-
*/
|
|
3933
|
-
RunningOrderIds?: Array<number | bigint>
|
|
3934
|
-
/**
|
|
3935
|
-
* 工作空间 SerialId
|
|
3936
|
-
*/
|
|
3937
|
-
WorkSpaceId?: string
|
|
3938
|
-
}
|
|
3939
|
-
|
|
3940
|
-
/**
|
|
3941
|
-
* CheckSavepoint返回参数结构体
|
|
3942
|
-
*/
|
|
3943
|
-
export interface CheckSavepointResponse {
|
|
3944
|
-
/**
|
|
3945
|
-
* 资源 id
|
|
3946
|
-
*/
|
|
3947
|
-
SerialId?: string
|
|
3948
|
-
/**
|
|
3949
|
-
* 1=可用,2=不可用
|
|
3950
|
-
*/
|
|
3951
|
-
SavepointStatus?: number
|
|
3952
|
-
/**
|
|
3953
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3954
|
-
*/
|
|
3955
|
-
RequestId?: string
|
|
3956
|
-
}
|
|
3957
|
-
|
|
3958
|
-
/**
|
|
3959
|
-
* DescribeJobs返回参数结构体
|
|
3960
|
-
*/
|
|
3961
|
-
export interface DescribeJobsResponse {
|
|
3962
|
-
/**
|
|
3963
|
-
* 作业总数
|
|
3964
|
-
*/
|
|
3965
|
-
TotalCount?: number
|
|
3966
|
-
/**
|
|
3967
|
-
* 作业列表
|
|
3968
|
-
*/
|
|
3969
|
-
JobSet?: Array<JobV1>
|
|
3970
|
-
/**
|
|
3971
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3972
|
-
*/
|
|
3973
|
-
RequestId?: string
|
|
3974
|
-
}
|
|
3975
|
-
|
|
3976
|
-
/**
|
|
3977
|
-
* DescribeTreeResources返回参数结构体
|
|
3978
|
-
*/
|
|
3979
|
-
export interface DescribeTreeResourcesResponse {
|
|
3980
|
-
/**
|
|
3981
|
-
* 父节点ID
|
|
3982
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3983
|
-
*/
|
|
3984
|
-
ParentId?: string
|
|
3985
|
-
/**
|
|
3986
|
-
* 文件夹ID
|
|
3987
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3988
|
-
*/
|
|
3989
|
-
Id?: string
|
|
3990
|
-
/**
|
|
3991
|
-
* 文件夹名
|
|
3992
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3993
|
-
*/
|
|
3994
|
-
Name?: string
|
|
3995
|
-
/**
|
|
3996
|
-
* 文件列表
|
|
3997
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3998
|
-
*/
|
|
3999
|
-
Items?: Array<TreeResourceItem>
|
|
4000
|
-
/**
|
|
4001
|
-
* 子目录列表
|
|
4002
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4003
|
-
*/
|
|
4004
|
-
Children?: Array<DescribeTreeResourcesRsp>
|
|
4005
|
-
/**
|
|
4006
|
-
* 资源总数
|
|
4007
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4008
|
-
*/
|
|
4009
|
-
TotalCount?: number
|
|
4010
|
-
/**
|
|
4011
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4012
|
-
*/
|
|
4013
|
-
RequestId?: string
|
|
4014
|
-
}
|
|
4015
|
-
|
|
4016
|
-
/**
|
|
4017
|
-
* 集群购买、扩缩容、续费订单信息
|
|
4018
|
-
*/
|
|
4019
|
-
export interface Order {
|
|
4020
|
-
/**
|
|
4021
|
-
* 创建、续费、扩缩容 1 2 3
|
|
4022
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4023
|
-
*/
|
|
4024
|
-
Type?: number
|
|
4025
|
-
/**
|
|
4026
|
-
* 自动续费 1
|
|
4027
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4028
|
-
*/
|
|
4029
|
-
AutoRenewFlag?: number
|
|
4030
|
-
/**
|
|
4031
|
-
* 操作人的UIN
|
|
4032
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4033
|
-
*/
|
|
4034
|
-
OperateUin?: string
|
|
4035
|
-
/**
|
|
4036
|
-
* 最终集群的CU数量
|
|
4037
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4038
|
-
*/
|
|
4039
|
-
ComputeCu?: number
|
|
4040
|
-
/**
|
|
4041
|
-
* 订单的时间
|
|
4042
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4043
|
-
*/
|
|
4044
|
-
OrderTime?: string
|
|
4045
|
-
}
|
|
4046
|
-
|
|
4047
|
-
/**
|
|
4048
|
-
* 复制作业单条明细
|
|
4049
|
-
*/
|
|
4050
|
-
export interface CopyJobItem {
|
|
4051
|
-
/**
|
|
4052
|
-
* 需要复制的作业serial id
|
|
4053
|
-
*/
|
|
4054
|
-
SourceId: string
|
|
4055
|
-
/**
|
|
4056
|
-
* 目标集群的cluster serial id
|
|
4057
|
-
*/
|
|
4058
|
-
TargetClusterId: string
|
|
4059
|
-
/**
|
|
4060
|
-
* 需要复制的作业名称
|
|
4061
|
-
*/
|
|
4062
|
-
SourceName?: string
|
|
4063
|
-
/**
|
|
4064
|
-
* 新作业的名称
|
|
4065
|
-
*/
|
|
4066
|
-
TargetName?: string
|
|
4067
|
-
/**
|
|
4068
|
-
* 新作业的目录id
|
|
4069
|
-
*/
|
|
4070
|
-
TargetFolderId?: string
|
|
4071
|
-
/**
|
|
4072
|
-
* 源作业类型
|
|
4073
|
-
*/
|
|
4074
|
-
JobType?: number
|
|
4075
|
-
}
|
|
4076
|
-
|
|
4077
|
-
/**
|
|
4078
|
-
* DescribeTreeJobs请求参数结构体
|
|
4079
|
-
*/
|
|
4080
|
-
export interface DescribeTreeJobsRequest {
|
|
4081
|
-
/**
|
|
4082
|
-
* 筛选条件字段
|
|
4083
|
-
*/
|
|
4084
|
-
Filters?: Array<Filter>
|
|
4085
|
-
/**
|
|
4086
|
-
* 工作空间 Serialid
|
|
4087
|
-
*/
|
|
4088
|
-
WorkSpaceId?: string
|
|
4089
|
-
}
|
|
4090
|
-
|
|
4091
|
-
/**
|
|
4092
|
-
* DescribeJobConfigs返回参数结构体
|
|
4093
|
-
*/
|
|
4094
|
-
export interface DescribeJobConfigsResponse {
|
|
4095
|
-
/**
|
|
4096
|
-
* 总的配置版本数量
|
|
4097
|
-
*/
|
|
4098
|
-
TotalCount?: number
|
|
4099
|
-
/**
|
|
4100
|
-
* 作业配置列表
|
|
4101
|
-
*/
|
|
4102
|
-
JobConfigSet?: Array<JobConfig>
|
|
4103
|
-
/**
|
|
4104
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4105
|
-
*/
|
|
4106
|
-
RequestId?: string
|
|
4107
|
-
}
|
|
4108
|
-
|
|
4109
|
-
/**
|
|
4110
|
-
* FetchSqlGatewayStatementResult请求参数结构体
|
|
4111
|
-
*/
|
|
4112
|
-
export interface FetchSqlGatewayStatementResultRequest {
|
|
4113
|
-
/**
|
|
4114
|
-
* 集群ID
|
|
4115
|
-
*/
|
|
4116
|
-
ClusterId: string
|
|
4117
|
-
/**
|
|
4118
|
-
* Sql Gateway会话ID
|
|
4119
|
-
*/
|
|
4120
|
-
SessionId?: string
|
|
4121
|
-
/**
|
|
4122
|
-
* sql的查询id
|
|
4123
|
-
*/
|
|
4124
|
-
OperationHandleId?: string
|
|
4125
|
-
/**
|
|
4126
|
-
* 下一条结果的获取url,首次获取执行结果时可以为空,当获取下一批查询结果时需要传递
|
|
4127
|
-
*/
|
|
4128
|
-
ResultUri?: string
|
|
4129
|
-
}
|
|
4130
|
-
|
|
4131
|
-
/**
|
|
4132
|
-
* session集群引用资源信息
|
|
4133
|
-
*/
|
|
4134
|
-
export interface SessionClusterRefItem {
|
|
4135
|
-
/**
|
|
4136
|
-
* 空间唯一标识
|
|
4137
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4138
|
-
*/
|
|
4139
|
-
WorkspaceId: string
|
|
4140
|
-
/**
|
|
4141
|
-
* 资源唯一标识
|
|
4142
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4143
|
-
*/
|
|
4144
|
-
ResourceId: string
|
|
4145
|
-
/**
|
|
4146
|
-
* 版本号
|
|
4147
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4148
|
-
*/
|
|
4149
|
-
Version: number
|
|
4150
|
-
/**
|
|
4151
|
-
* 引用类型,0:用户资源
|
|
4152
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4153
|
-
*/
|
|
4154
|
-
Type: number
|
|
4155
|
-
}
|
|
4156
|
-
|
|
4157
|
-
/**
|
|
4158
|
-
* DescribeJobEvents返回参数结构体
|
|
4159
|
-
*/
|
|
4160
|
-
export interface DescribeJobEventsResponse {
|
|
4161
|
-
/**
|
|
4162
|
-
* 该作业指定范围内的事件列表
|
|
4163
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4164
|
-
*/
|
|
4165
|
-
Events: Array<JobEvent>
|
|
4166
|
-
/**
|
|
4167
|
-
* 该作业指定范围内运行实例 ID 数组,仅当入参没有传入 RunningOrderIds 参数时才会返回。倒序输出
|
|
4168
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4169
|
-
*/
|
|
4170
|
-
RunningOrderIds: Array<number | bigint>
|
|
4171
|
-
/**
|
|
4172
|
-
* 事件的总数
|
|
4173
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4174
|
-
*/
|
|
4175
|
-
TotalCount: number
|
|
4176
|
-
/**
|
|
4177
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4178
|
-
*/
|
|
4179
|
-
RequestId?: string
|
|
4180
|
-
}
|