tencentcloud-sdk-nodejs-cdwdoris 4.0.904 → 4.0.909
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/products.md +52 -52
- package/src/services/cdwdoris/v20211228/cdwdoris_client.ts +616 -96
- package/src/services/cdwdoris/v20211228/cdwdoris_models.ts +3241 -797
- package/tencentcloud/services/cdwdoris/v20211228/cdwdoris_client.d.ts +187 -23
- package/tencentcloud/services/cdwdoris/v20211228/cdwdoris_client.js +279 -33
- package/tencentcloud/services/cdwdoris/v20211228/cdwdoris_models.d.ts +3130 -796
|
@@ -16,31 +16,29 @@
|
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* DescribeDatabaseAuditResource请求参数结构体
|
|
20
20
|
*/
|
|
21
|
-
export interface
|
|
21
|
+
export interface DescribeDatabaseAuditResourceRequest {
|
|
22
22
|
/**
|
|
23
|
-
*
|
|
23
|
+
* 实例ID
|
|
24
24
|
*/
|
|
25
|
-
|
|
25
|
+
InstanceId: string
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
29
|
+
* DescribeDorisMetricFiles返回参数结构体
|
|
30
30
|
*/
|
|
31
|
-
export interface
|
|
31
|
+
export interface DescribeDorisMetricFilesResponse {
|
|
32
32
|
/**
|
|
33
|
-
*
|
|
34
|
-
|
|
35
|
-
FlowId?: string
|
|
36
|
-
/**
|
|
37
|
-
* 集群ID
|
|
33
|
+
* ErrorMsg
|
|
34
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
38
35
|
*/
|
|
39
|
-
|
|
36
|
+
ErrorMsg?: string
|
|
40
37
|
/**
|
|
41
|
-
*
|
|
38
|
+
* 返回数据
|
|
39
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
42
40
|
*/
|
|
43
|
-
|
|
41
|
+
ReturnData?: string
|
|
44
42
|
/**
|
|
45
43
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
46
44
|
*/
|
|
@@ -48,126 +46,71 @@ export interface DestroyInstanceResponse {
|
|
|
48
46
|
}
|
|
49
47
|
|
|
50
48
|
/**
|
|
51
|
-
*
|
|
52
|
-
*/
|
|
53
|
-
export interface DescribeSlowQueryRecordsDownloadRequest {
|
|
54
|
-
/**
|
|
55
|
-
* 实例ID
|
|
56
|
-
*/
|
|
57
|
-
InstanceId: string
|
|
58
|
-
/**
|
|
59
|
-
* 慢查询时间
|
|
60
|
-
*/
|
|
61
|
-
QueryDurationMs: number
|
|
62
|
-
/**
|
|
63
|
-
* 开始时间
|
|
64
|
-
*/
|
|
65
|
-
StartTime: string
|
|
66
|
-
/**
|
|
67
|
-
* 结束时间
|
|
68
|
-
*/
|
|
69
|
-
EndTime: string
|
|
70
|
-
/**
|
|
71
|
-
* 排序参数
|
|
72
|
-
*/
|
|
73
|
-
DurationMs?: string
|
|
74
|
-
/**
|
|
75
|
-
* 查询sql
|
|
76
|
-
*/
|
|
77
|
-
Sql?: string
|
|
78
|
-
/**
|
|
79
|
-
* 排序参数
|
|
80
|
-
*/
|
|
81
|
-
ReadRows?: string
|
|
82
|
-
/**
|
|
83
|
-
* 排序参数
|
|
84
|
-
*/
|
|
85
|
-
ResultBytes?: string
|
|
86
|
-
/**
|
|
87
|
-
* 排序参数
|
|
88
|
-
*/
|
|
89
|
-
MemoryUsage?: string
|
|
90
|
-
/**
|
|
91
|
-
* IsQuery条件
|
|
92
|
-
*/
|
|
93
|
-
IsQuery?: number
|
|
94
|
-
/**
|
|
95
|
-
* 数据库名称
|
|
96
|
-
*/
|
|
97
|
-
DbName?: Array<string>
|
|
98
|
-
/**
|
|
99
|
-
* catalog名称
|
|
100
|
-
*/
|
|
101
|
-
CatalogName?: Array<string>
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
/**
|
|
105
|
-
* ResizeDisk请求参数结构体
|
|
49
|
+
* DescribeInstanceUsedSubnets返回参数结构体
|
|
106
50
|
*/
|
|
107
|
-
export interface
|
|
51
|
+
export interface DescribeInstanceUsedSubnetsResponse {
|
|
108
52
|
/**
|
|
109
|
-
*
|
|
53
|
+
* 集群使用的vpc信息
|
|
54
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
110
55
|
*/
|
|
111
|
-
|
|
56
|
+
VpcId?: string
|
|
112
57
|
/**
|
|
113
|
-
*
|
|
58
|
+
* 集群使用的subnet信息
|
|
59
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
114
60
|
*/
|
|
115
|
-
|
|
61
|
+
UsedSubnets?: Array<string>
|
|
116
62
|
/**
|
|
117
|
-
*
|
|
63
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
118
64
|
*/
|
|
119
|
-
|
|
65
|
+
RequestId?: string
|
|
120
66
|
}
|
|
121
67
|
|
|
122
68
|
/**
|
|
123
|
-
*
|
|
69
|
+
* DescribeFrontEnd请求参数结构体
|
|
124
70
|
*/
|
|
125
|
-
export interface
|
|
71
|
+
export interface DescribeFrontEndRequest {
|
|
126
72
|
/**
|
|
127
|
-
*
|
|
128
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
73
|
+
* 实例id
|
|
129
74
|
*/
|
|
130
|
-
|
|
75
|
+
InstanceId?: string
|
|
131
76
|
/**
|
|
132
|
-
*
|
|
133
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
77
|
+
* 文件类型
|
|
134
78
|
*/
|
|
135
|
-
|
|
79
|
+
ConfigType?: string
|
|
136
80
|
/**
|
|
137
|
-
*
|
|
138
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
81
|
+
* 参数1
|
|
139
82
|
*/
|
|
140
|
-
|
|
83
|
+
Param1?: string
|
|
141
84
|
/**
|
|
142
|
-
*
|
|
143
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
85
|
+
* 参数2
|
|
144
86
|
*/
|
|
145
|
-
|
|
87
|
+
Param2?: string
|
|
146
88
|
/**
|
|
147
|
-
*
|
|
148
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
89
|
+
* 参数3
|
|
149
90
|
*/
|
|
150
|
-
|
|
91
|
+
Param3?: string
|
|
151
92
|
/**
|
|
152
|
-
*
|
|
153
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
93
|
+
* 参数4
|
|
154
94
|
*/
|
|
155
|
-
|
|
95
|
+
Param4?: string
|
|
156
96
|
/**
|
|
157
|
-
*
|
|
158
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
97
|
+
* 参数5
|
|
159
98
|
*/
|
|
160
|
-
|
|
99
|
+
Param5?: string
|
|
161
100
|
}
|
|
162
101
|
|
|
163
102
|
/**
|
|
164
|
-
*
|
|
103
|
+
* CreateInstanceNew返回参数结构体
|
|
165
104
|
*/
|
|
166
|
-
export interface
|
|
105
|
+
export interface CreateInstanceNewResponse {
|
|
167
106
|
/**
|
|
168
|
-
*
|
|
107
|
+
* 流程ID
|
|
169
108
|
*/
|
|
170
|
-
FlowId?:
|
|
109
|
+
FlowId?: string
|
|
110
|
+
/**
|
|
111
|
+
* 实例ID
|
|
112
|
+
*/
|
|
113
|
+
InstanceId?: string
|
|
171
114
|
/**
|
|
172
115
|
* 错误信息
|
|
173
116
|
*/
|
|
@@ -179,18 +122,17 @@ export interface RestartClusterForNodeResponse {
|
|
|
179
122
|
}
|
|
180
123
|
|
|
181
124
|
/**
|
|
182
|
-
*
|
|
125
|
+
* DescribeClusterConfigsHistory返回参数结构体
|
|
183
126
|
*/
|
|
184
|
-
export interface
|
|
127
|
+
export interface DescribeClusterConfigsHistoryResponse {
|
|
185
128
|
/**
|
|
186
|
-
*
|
|
129
|
+
* 实例总数
|
|
187
130
|
*/
|
|
188
131
|
TotalCount?: number
|
|
189
132
|
/**
|
|
190
|
-
*
|
|
191
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
133
|
+
* 配置文件修改历史
|
|
192
134
|
*/
|
|
193
|
-
|
|
135
|
+
ClusterConfHistory?: Array<ClusterConfigsHistory>
|
|
194
136
|
/**
|
|
195
137
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
196
138
|
*/
|
|
@@ -198,13 +140,29 @@ export interface DescribeInstanceNodesResponse {
|
|
|
198
140
|
}
|
|
199
141
|
|
|
200
142
|
/**
|
|
201
|
-
*
|
|
143
|
+
* DescribeInstanceOperations请求参数结构体
|
|
202
144
|
*/
|
|
203
|
-
export interface
|
|
145
|
+
export interface DescribeInstanceOperationsRequest {
|
|
204
146
|
/**
|
|
205
|
-
*
|
|
147
|
+
* 集群ID
|
|
206
148
|
*/
|
|
207
149
|
InstanceId: string
|
|
150
|
+
/**
|
|
151
|
+
* 分页参数,偏移量,从0开始
|
|
152
|
+
*/
|
|
153
|
+
Offset?: number
|
|
154
|
+
/**
|
|
155
|
+
* 分页参数,每页数目,默认为10
|
|
156
|
+
*/
|
|
157
|
+
Limit?: number
|
|
158
|
+
/**
|
|
159
|
+
* 开始时间
|
|
160
|
+
*/
|
|
161
|
+
StartTime?: string
|
|
162
|
+
/**
|
|
163
|
+
* 结束时间
|
|
164
|
+
*/
|
|
165
|
+
EndTime?: string
|
|
208
166
|
}
|
|
209
167
|
|
|
210
168
|
/**
|
|
@@ -248,259 +206,299 @@ export interface ScaleOutInstanceResponse {
|
|
|
248
206
|
}
|
|
249
207
|
|
|
250
208
|
/**
|
|
251
|
-
*
|
|
209
|
+
* ModifyUserPrivilegesV3返回参数结构体
|
|
252
210
|
*/
|
|
253
|
-
export interface
|
|
211
|
+
export interface ModifyUserPrivilegesV3Response {
|
|
254
212
|
/**
|
|
255
|
-
*
|
|
213
|
+
* 错误信息,为空就是没有错误
|
|
214
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
256
215
|
*/
|
|
257
|
-
|
|
216
|
+
ErrorMsg?: string
|
|
258
217
|
/**
|
|
259
|
-
*
|
|
218
|
+
* 集群id
|
|
260
219
|
*/
|
|
261
|
-
|
|
220
|
+
InstanceId?: string
|
|
262
221
|
/**
|
|
263
|
-
*
|
|
222
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
264
223
|
*/
|
|
265
|
-
|
|
224
|
+
RequestId?: string
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
/**
|
|
228
|
+
* DescribeFederationToken请求参数结构体
|
|
229
|
+
*/
|
|
230
|
+
export type DescribeFederationTokenRequest = null
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* ModifyWorkloadGroupStatus返回参数结构体
|
|
234
|
+
*/
|
|
235
|
+
export interface ModifyWorkloadGroupStatusResponse {
|
|
266
236
|
/**
|
|
267
|
-
*
|
|
237
|
+
* 错误信息
|
|
268
238
|
*/
|
|
269
|
-
|
|
239
|
+
ErrorMsg?: string
|
|
270
240
|
/**
|
|
271
|
-
*
|
|
241
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
272
242
|
*/
|
|
273
|
-
|
|
243
|
+
RequestId?: string
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* 资源组绑定的用户信息,需要username和host信息进行授权
|
|
248
|
+
*/
|
|
249
|
+
export interface BindUser {
|
|
274
250
|
/**
|
|
275
|
-
*
|
|
251
|
+
* 用户名
|
|
252
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
276
253
|
*/
|
|
277
|
-
|
|
254
|
+
UserName?: string
|
|
278
255
|
/**
|
|
279
|
-
*
|
|
256
|
+
* 主机信息
|
|
257
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
280
258
|
*/
|
|
281
|
-
|
|
259
|
+
Host?: string
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
/**
|
|
263
|
+
* CancelBackupJob请求参数结构体
|
|
264
|
+
*/
|
|
265
|
+
export interface CancelBackupJobRequest {
|
|
282
266
|
/**
|
|
283
|
-
*
|
|
267
|
+
* 集群id
|
|
284
268
|
*/
|
|
285
|
-
|
|
269
|
+
InstanceId: string
|
|
286
270
|
/**
|
|
287
|
-
*
|
|
271
|
+
* 需要取消的备份实例id
|
|
288
272
|
*/
|
|
289
|
-
|
|
273
|
+
BackUpJobId?: number
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
/**
|
|
277
|
+
* ModifyWorkloadGroup请求参数结构体
|
|
278
|
+
*/
|
|
279
|
+
export interface ModifyWorkloadGroupRequest {
|
|
290
280
|
/**
|
|
291
|
-
*
|
|
281
|
+
* 集群id
|
|
292
282
|
*/
|
|
293
|
-
|
|
283
|
+
InstanceId: string
|
|
294
284
|
/**
|
|
295
|
-
*
|
|
296
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
285
|
+
* 修改的资源组信息
|
|
297
286
|
*/
|
|
298
|
-
|
|
287
|
+
WorkloadGroup?: WorkloadGroupConfig
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
/**
|
|
291
|
+
* 集群内节点的规格描述
|
|
292
|
+
*/
|
|
293
|
+
export interface ResourceNodeSpec {
|
|
299
294
|
/**
|
|
300
|
-
*
|
|
295
|
+
* 节点类型,“DATA"数据节点,”COMMON" zookeeper节点
|
|
296
|
+
*/
|
|
297
|
+
Type: string
|
|
298
|
+
/**
|
|
299
|
+
* 节点规格名称,例如 “SCH1","SCH2”等
|
|
300
|
+
*/
|
|
301
|
+
SpecName: string
|
|
302
|
+
/**
|
|
303
|
+
* 节点数目
|
|
304
|
+
*/
|
|
305
|
+
Count: number
|
|
306
|
+
/**
|
|
307
|
+
* 磁盘规格描述
|
|
301
308
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
302
309
|
*/
|
|
303
|
-
|
|
310
|
+
DiskSpec?: ResourceNodeDiskSpec
|
|
304
311
|
/**
|
|
305
|
-
*
|
|
312
|
+
* 云盘是否加密,0不加密/1加密 默认为0
|
|
306
313
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
307
314
|
*/
|
|
308
|
-
|
|
315
|
+
Encrypt?: number
|
|
309
316
|
/**
|
|
310
|
-
*
|
|
317
|
+
* 额外信息
|
|
311
318
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
312
319
|
*/
|
|
313
|
-
|
|
320
|
+
Extra?: SpecExtra
|
|
314
321
|
/**
|
|
315
|
-
*
|
|
322
|
+
* 挂载云盘信息
|
|
316
323
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
317
324
|
*/
|
|
318
|
-
|
|
325
|
+
AttachCBSSpec?: ResourceNodeDiskSpec
|
|
319
326
|
}
|
|
320
327
|
|
|
321
328
|
/**
|
|
322
|
-
*
|
|
329
|
+
* 用户绑定资源组信息
|
|
323
330
|
*/
|
|
324
|
-
export interface
|
|
325
|
-
/**
|
|
326
|
-
* 集群实例ID
|
|
327
|
-
*/
|
|
328
|
-
InstanceId: string
|
|
331
|
+
export interface UserWorkloadGroup {
|
|
329
332
|
/**
|
|
330
|
-
*
|
|
333
|
+
* test
|
|
334
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
331
335
|
*/
|
|
332
|
-
|
|
336
|
+
UserName?: string
|
|
333
337
|
/**
|
|
334
|
-
*
|
|
338
|
+
* normal
|
|
339
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
335
340
|
*/
|
|
336
|
-
|
|
341
|
+
WorkloadGroupName?: string
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
/**
|
|
345
|
+
* DescribeSlowQueryRecordsDownload返回参数结构体
|
|
346
|
+
*/
|
|
347
|
+
export interface DescribeSlowQueryRecordsDownloadResponse {
|
|
337
348
|
/**
|
|
338
|
-
*
|
|
349
|
+
* cos地址
|
|
339
350
|
*/
|
|
340
|
-
|
|
351
|
+
CosUrl?: string
|
|
341
352
|
/**
|
|
342
|
-
*
|
|
353
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
343
354
|
*/
|
|
344
|
-
|
|
355
|
+
RequestId?: string
|
|
345
356
|
}
|
|
346
357
|
|
|
347
358
|
/**
|
|
348
|
-
*
|
|
359
|
+
* DeleteWorkloadGroup请求参数结构体
|
|
349
360
|
*/
|
|
350
|
-
export interface
|
|
361
|
+
export interface DeleteWorkloadGroupRequest {
|
|
351
362
|
/**
|
|
352
|
-
*
|
|
363
|
+
* 集群id
|
|
353
364
|
*/
|
|
354
365
|
InstanceId: string
|
|
355
366
|
/**
|
|
356
|
-
*
|
|
367
|
+
* 需要删除的资源组名称
|
|
357
368
|
*/
|
|
358
|
-
|
|
369
|
+
WorkloadGroupName?: string
|
|
359
370
|
}
|
|
360
371
|
|
|
361
372
|
/**
|
|
362
|
-
*
|
|
373
|
+
* 资源组相关配置
|
|
363
374
|
*/
|
|
364
|
-
export interface
|
|
375
|
+
export interface WorkloadGroupConfig {
|
|
365
376
|
/**
|
|
366
|
-
*
|
|
377
|
+
* 资源组名称
|
|
367
378
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
368
379
|
*/
|
|
369
|
-
|
|
380
|
+
WorkloadGroupName?: string
|
|
370
381
|
/**
|
|
371
|
-
*
|
|
382
|
+
* CPU权重
|
|
372
383
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
373
384
|
*/
|
|
374
|
-
|
|
385
|
+
CpuShare?: number
|
|
375
386
|
/**
|
|
376
|
-
*
|
|
387
|
+
* 内存限制,所有资源组的内存限制值之和应该小于等于100
|
|
377
388
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
378
389
|
*/
|
|
379
|
-
|
|
390
|
+
MemoryLimit?: number
|
|
380
391
|
/**
|
|
381
|
-
*
|
|
392
|
+
* 是否允许超配分配
|
|
382
393
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
383
394
|
*/
|
|
384
|
-
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
/**
|
|
388
|
-
* Instance表detail字段
|
|
389
|
-
*/
|
|
390
|
-
export interface InstanceDetail {
|
|
395
|
+
EnableMemoryOverCommit?: boolean
|
|
391
396
|
/**
|
|
392
|
-
*
|
|
397
|
+
* cpu硬限制
|
|
393
398
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
394
399
|
*/
|
|
395
|
-
|
|
400
|
+
CpuHardLimit?: string
|
|
396
401
|
}
|
|
397
402
|
|
|
398
403
|
/**
|
|
399
|
-
*
|
|
404
|
+
* FitClsLog请求参数结构体
|
|
400
405
|
*/
|
|
401
|
-
export interface
|
|
402
|
-
/**
|
|
403
|
-
* 配置文件名称
|
|
404
|
-
*/
|
|
405
|
-
FileName?: string
|
|
406
|
-
/**
|
|
407
|
-
* 配置文件对应的相关属性信息
|
|
408
|
-
*/
|
|
409
|
-
FileConf?: string
|
|
410
|
-
/**
|
|
411
|
-
* 配置文件对应的其他属性信息
|
|
412
|
-
*/
|
|
413
|
-
KeyConf?: string
|
|
414
|
-
/**
|
|
415
|
-
* 配置文件的内容,base64编码
|
|
416
|
-
*/
|
|
417
|
-
OriParam?: string
|
|
418
|
-
/**
|
|
419
|
-
* 用于表示当前配置文件是不是有过修改后没有重启,提醒用户需要重启
|
|
420
|
-
*/
|
|
421
|
-
NeedRestart?: number
|
|
406
|
+
export interface FitClsLogRequest {
|
|
422
407
|
/**
|
|
423
|
-
*
|
|
424
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
408
|
+
* 集群ID,例如cdwch-xxxx
|
|
425
409
|
*/
|
|
426
|
-
|
|
410
|
+
InstanceId: string
|
|
427
411
|
/**
|
|
428
|
-
*
|
|
429
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
430
|
-
* @deprecated
|
|
412
|
+
* cls日志集ID
|
|
431
413
|
*/
|
|
432
|
-
|
|
414
|
+
ClsLogSetId: string
|
|
433
415
|
/**
|
|
434
|
-
*
|
|
435
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
416
|
+
* 日志的类型,es还是cls_topic
|
|
436
417
|
*/
|
|
437
|
-
|
|
418
|
+
LogType?: string
|
|
438
419
|
}
|
|
439
420
|
|
|
440
421
|
/**
|
|
441
|
-
*
|
|
422
|
+
* 集群内节点的规格磁盘规格描述
|
|
442
423
|
*/
|
|
443
|
-
export interface
|
|
424
|
+
export interface ResourceNodeDiskSpec {
|
|
444
425
|
/**
|
|
445
|
-
*
|
|
426
|
+
* 节点磁盘类型,例如“CLOUD_SSD”\"CLOUD_PREMIUM"
|
|
446
427
|
*/
|
|
447
|
-
|
|
428
|
+
DiskType?: string
|
|
448
429
|
/**
|
|
449
|
-
*
|
|
430
|
+
* 磁盘容量,单位G
|
|
450
431
|
*/
|
|
451
|
-
|
|
432
|
+
DiskSize?: number
|
|
452
433
|
/**
|
|
453
|
-
*
|
|
434
|
+
* 磁盘总数
|
|
454
435
|
*/
|
|
455
|
-
|
|
436
|
+
DiskCount?: number
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
/**
|
|
440
|
+
* DescribeDmsSqlHistory请求参数结构体
|
|
441
|
+
*/
|
|
442
|
+
export interface DescribeDmsSqlHistoryRequest {
|
|
456
443
|
/**
|
|
457
|
-
*
|
|
444
|
+
* 查询节点ip
|
|
458
445
|
*/
|
|
459
|
-
|
|
446
|
+
QueryNode?: Array<string>
|
|
460
447
|
/**
|
|
461
|
-
*
|
|
448
|
+
* 运行状态
|
|
462
449
|
*/
|
|
463
|
-
|
|
450
|
+
QueryStatus?: Array<string>
|
|
464
451
|
/**
|
|
465
|
-
*
|
|
452
|
+
* 模糊搜索sql
|
|
466
453
|
*/
|
|
467
|
-
|
|
454
|
+
QuerySql?: string
|
|
468
455
|
/**
|
|
469
|
-
*
|
|
456
|
+
* 根据报错原因搜索
|
|
470
457
|
*/
|
|
471
|
-
|
|
458
|
+
QueryErrMsg?: string
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
/**
|
|
462
|
+
* DescribeFederationToken返回参数结构体
|
|
463
|
+
*/
|
|
464
|
+
export interface DescribeFederationTokenResponse {
|
|
472
465
|
/**
|
|
473
|
-
*
|
|
474
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
466
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
475
467
|
*/
|
|
476
|
-
|
|
468
|
+
RequestId?: string
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
/**
|
|
472
|
+
* 客户提供cos认证信息。
|
|
473
|
+
*/
|
|
474
|
+
export interface CosSourceInfo {
|
|
477
475
|
/**
|
|
478
|
-
*
|
|
476
|
+
* cos认证中的Id
|
|
479
477
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
480
478
|
*/
|
|
481
|
-
|
|
479
|
+
SecretId?: string
|
|
482
480
|
/**
|
|
483
|
-
*
|
|
481
|
+
* cos认证中的key
|
|
484
482
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
485
483
|
*/
|
|
486
|
-
|
|
484
|
+
SecretKey?: string
|
|
487
485
|
/**
|
|
488
|
-
*
|
|
486
|
+
* cos认证中的路径
|
|
489
487
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
490
488
|
*/
|
|
491
|
-
|
|
489
|
+
CosPath?: string
|
|
492
490
|
}
|
|
493
491
|
|
|
494
492
|
/**
|
|
495
|
-
*
|
|
493
|
+
* ReduceInstance返回参数结构体
|
|
496
494
|
*/
|
|
497
|
-
export interface
|
|
495
|
+
export interface ReduceInstanceResponse {
|
|
498
496
|
/**
|
|
499
497
|
* 流程ID
|
|
500
498
|
*/
|
|
501
499
|
FlowId?: string
|
|
502
500
|
/**
|
|
503
|
-
*
|
|
501
|
+
* 集群ID
|
|
504
502
|
*/
|
|
505
503
|
InstanceId?: string
|
|
506
504
|
/**
|
|
@@ -514,500 +512,2880 @@ export interface CreateInstanceNewResponse {
|
|
|
514
512
|
}
|
|
515
513
|
|
|
516
514
|
/**
|
|
517
|
-
*
|
|
515
|
+
* DescribeBackUpTaskDetail请求参数结构体
|
|
518
516
|
*/
|
|
519
|
-
export interface
|
|
517
|
+
export interface DescribeBackUpTaskDetailRequest {
|
|
520
518
|
/**
|
|
521
|
-
*
|
|
519
|
+
* 集群id
|
|
522
520
|
*/
|
|
523
|
-
|
|
521
|
+
InstanceId: string
|
|
524
522
|
/**
|
|
525
|
-
*
|
|
523
|
+
* 任务id
|
|
526
524
|
*/
|
|
527
|
-
|
|
525
|
+
BackUpJobId: number
|
|
528
526
|
}
|
|
529
527
|
|
|
530
528
|
/**
|
|
531
|
-
*
|
|
529
|
+
* 检查doris内核是否支持新语法。
|
|
532
530
|
*/
|
|
533
|
-
export interface
|
|
531
|
+
export interface VersionReplicaItem {
|
|
534
532
|
/**
|
|
535
|
-
*
|
|
533
|
+
* 版本描述
|
|
534
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
536
535
|
*/
|
|
537
|
-
|
|
536
|
+
ReplicaFlag: number
|
|
537
|
+
/**
|
|
538
|
+
* 错误信息
|
|
539
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
540
|
+
*/
|
|
541
|
+
ErrorMsg: string
|
|
538
542
|
}
|
|
539
543
|
|
|
540
544
|
/**
|
|
541
|
-
*
|
|
545
|
+
* RecoverBackUpJob请求参数结构体
|
|
542
546
|
*/
|
|
543
|
-
export interface
|
|
547
|
+
export interface RecoverBackUpJobRequest {
|
|
544
548
|
/**
|
|
545
|
-
*
|
|
549
|
+
* 集群id
|
|
546
550
|
*/
|
|
547
|
-
|
|
551
|
+
InstanceId: string
|
|
548
552
|
/**
|
|
549
|
-
*
|
|
553
|
+
* 任务id
|
|
550
554
|
*/
|
|
551
|
-
|
|
555
|
+
BackUpJobId: number
|
|
552
556
|
/**
|
|
553
|
-
*
|
|
557
|
+
* 恢复出来的新表副本数
|
|
554
558
|
*/
|
|
555
|
-
|
|
559
|
+
ReplicationNum?: number
|
|
556
560
|
/**
|
|
557
|
-
*
|
|
561
|
+
* 恢复是否保持源表中的配置,1时表示保留源表中的配置
|
|
558
562
|
*/
|
|
559
|
-
|
|
563
|
+
ReserveSourceConfig?: number
|
|
560
564
|
/**
|
|
561
|
-
*
|
|
565
|
+
* 0默认 1cos恢复
|
|
562
566
|
*/
|
|
563
|
-
|
|
567
|
+
RecoverType?: number
|
|
564
568
|
/**
|
|
565
|
-
*
|
|
569
|
+
* CosSourceInfo对象
|
|
566
570
|
*/
|
|
567
|
-
|
|
571
|
+
CosSourceInfo?: CosSourceInfo
|
|
568
572
|
/**
|
|
569
|
-
*
|
|
573
|
+
* 0默认 1定期执行
|
|
570
574
|
*/
|
|
571
|
-
|
|
575
|
+
ScheduleType?: number
|
|
572
576
|
/**
|
|
573
|
-
*
|
|
577
|
+
* 年-月-日 时:分:秒
|
|
574
578
|
*/
|
|
575
|
-
|
|
579
|
+
NextTime?: string
|
|
576
580
|
/**
|
|
577
|
-
*
|
|
581
|
+
* 调度名称
|
|
578
582
|
*/
|
|
579
|
-
|
|
583
|
+
ScheduleName?: string
|
|
580
584
|
/**
|
|
581
|
-
*
|
|
585
|
+
* create update
|
|
582
586
|
*/
|
|
583
|
-
|
|
587
|
+
OperationType?: string
|
|
584
588
|
/**
|
|
585
|
-
*
|
|
589
|
+
* 恢复粒度:All全量、Database按库、Table按表
|
|
586
590
|
*/
|
|
587
|
-
|
|
591
|
+
RecoverScope?: string
|
|
588
592
|
/**
|
|
589
|
-
*
|
|
590
|
-
0:非高可用(只有1个FE,FeSpec.CreateInstanceSpec.Count=1),
|
|
591
|
-
1:读高可用(至少需部署3个FE,FeSpec.CreateInstanceSpec.Count>=3,且为奇数),
|
|
592
|
-
2:读写高可用(至少需部署5个FE,FeSpec.CreateInstanceSpec.Count>=5,且为奇数)。
|
|
593
|
+
* 恢复库:如果是按库备份,则需要该字段,库之间用","分割
|
|
593
594
|
*/
|
|
594
|
-
|
|
595
|
+
RecoverDatabase?: string
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
/**
|
|
599
|
+
* 磁盘规格描述
|
|
600
|
+
*/
|
|
601
|
+
export interface DiskSpec {
|
|
595
602
|
/**
|
|
596
|
-
*
|
|
603
|
+
* 磁盘类型,例如“CLOUD_SSD", "LOCAL_SSD"等
|
|
597
604
|
*/
|
|
598
|
-
|
|
605
|
+
DiskType: string
|
|
599
606
|
/**
|
|
600
|
-
*
|
|
607
|
+
* 磁盘类型说明,例如"云SSD", "本地SSD"等
|
|
601
608
|
*/
|
|
602
|
-
|
|
609
|
+
DiskDesc: string
|
|
603
610
|
/**
|
|
604
|
-
*
|
|
611
|
+
* 磁盘最小规格大小,单位G
|
|
605
612
|
*/
|
|
606
|
-
|
|
613
|
+
MinDiskSize: number
|
|
614
|
+
/**
|
|
615
|
+
* 磁盘最大规格大小,单位G
|
|
616
|
+
*/
|
|
617
|
+
MaxDiskSize: number
|
|
618
|
+
/**
|
|
619
|
+
* 磁盘数目
|
|
620
|
+
*/
|
|
621
|
+
DiskCount: number
|
|
607
622
|
}
|
|
608
623
|
|
|
609
624
|
/**
|
|
610
|
-
*
|
|
625
|
+
* DescribeInstanceOperations返回参数结构体
|
|
611
626
|
*/
|
|
612
|
-
export interface
|
|
627
|
+
export interface DescribeInstanceOperationsResponse {
|
|
613
628
|
/**
|
|
614
|
-
*
|
|
615
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
629
|
+
* 操作记录总数
|
|
616
630
|
*/
|
|
617
|
-
|
|
631
|
+
TotalCount: number
|
|
618
632
|
/**
|
|
619
|
-
*
|
|
633
|
+
* 操作记录具体数据
|
|
620
634
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
621
635
|
*/
|
|
622
|
-
|
|
636
|
+
Operations: Array<InstanceOperation>
|
|
623
637
|
/**
|
|
624
|
-
*
|
|
625
|
-
Init 创建中; Serving 运行中;
|
|
626
|
-
Deleted已销毁;Deleting 销毁中;
|
|
627
|
-
Modify 集群变更中;
|
|
628
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
638
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
629
639
|
*/
|
|
630
|
-
|
|
640
|
+
RequestId?: string
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
/**
|
|
644
|
+
* DescribeUserBindWorkloadGroup返回参数结构体
|
|
645
|
+
*/
|
|
646
|
+
export interface DescribeUserBindWorkloadGroupResponse {
|
|
631
647
|
/**
|
|
632
|
-
*
|
|
633
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
648
|
+
* 用户绑定资源组信息
|
|
634
649
|
*/
|
|
635
|
-
|
|
650
|
+
UserBindInfos?: Array<UserWorkloadGroup>
|
|
636
651
|
/**
|
|
637
|
-
*
|
|
638
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
652
|
+
* 错误信息
|
|
639
653
|
*/
|
|
640
|
-
|
|
654
|
+
ErrorMsg?: string
|
|
641
655
|
/**
|
|
642
|
-
*
|
|
643
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
656
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
644
657
|
*/
|
|
645
|
-
|
|
658
|
+
RequestId?: string
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
/**
|
|
662
|
+
* ScaleOutInstance请求参数结构体
|
|
663
|
+
*/
|
|
664
|
+
export interface ScaleOutInstanceRequest {
|
|
646
665
|
/**
|
|
647
|
-
*
|
|
648
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
666
|
+
* 集群ID
|
|
649
667
|
*/
|
|
650
|
-
|
|
668
|
+
InstanceId: string
|
|
651
669
|
/**
|
|
652
|
-
*
|
|
653
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
670
|
+
* 角色(MATER/CORE),MASTER 对应 FE,CORE对应BE
|
|
654
671
|
*/
|
|
655
|
-
|
|
672
|
+
Type: string
|
|
656
673
|
/**
|
|
657
|
-
*
|
|
658
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
674
|
+
* 节点数量
|
|
659
675
|
*/
|
|
660
|
-
|
|
676
|
+
NodeCount: number
|
|
661
677
|
/**
|
|
662
|
-
*
|
|
663
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
678
|
+
* 扩容后集群高可用类型:0:非高可用,1:读高可用,2:读写高可用。
|
|
664
679
|
*/
|
|
665
|
-
|
|
680
|
+
HaType?: number
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
/**
|
|
684
|
+
* 更新用户权限结构体
|
|
685
|
+
*/
|
|
686
|
+
export interface UpdateUserPrivileges {
|
|
666
687
|
/**
|
|
667
|
-
*
|
|
668
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
688
|
+
* 是否设置catalog权限
|
|
669
689
|
*/
|
|
670
|
-
|
|
690
|
+
IsSetGlobalCatalog?: boolean
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
/**
|
|
694
|
+
* 展示doris监控指标请求入参
|
|
695
|
+
*/
|
|
696
|
+
export interface DescribeMetricsFileReq {
|
|
671
697
|
/**
|
|
672
|
-
*
|
|
673
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
698
|
+
* 集群类型
|
|
674
699
|
*/
|
|
675
|
-
|
|
700
|
+
InstanceType: string
|
|
676
701
|
/**
|
|
677
|
-
*
|
|
678
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
702
|
+
* 指标类型
|
|
679
703
|
*/
|
|
680
|
-
|
|
704
|
+
MetricType?: string
|
|
681
705
|
/**
|
|
682
|
-
*
|
|
683
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
706
|
+
* 是否关注
|
|
684
707
|
*/
|
|
685
|
-
|
|
708
|
+
IfAttention?: number
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
/**
|
|
712
|
+
* DescribeInstanceState请求参数结构体
|
|
713
|
+
*/
|
|
714
|
+
export interface DescribeInstanceStateRequest {
|
|
686
715
|
/**
|
|
687
|
-
*
|
|
688
|
-
|
|
689
|
-
|
|
716
|
+
* 集群实例名称
|
|
717
|
+
*/
|
|
718
|
+
InstanceId: string
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
/**
|
|
722
|
+
* OpenBackUp返回参数结构体
|
|
723
|
+
*/
|
|
724
|
+
export interface OpenBackUpResponse {
|
|
725
|
+
/**
|
|
726
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
727
|
+
*/
|
|
728
|
+
RequestId?: string
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
/**
|
|
732
|
+
* 网络信息
|
|
733
|
+
*/
|
|
734
|
+
export interface NetworkInfo {
|
|
735
|
+
/**
|
|
736
|
+
* 可用区
|
|
737
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
738
|
+
*/
|
|
739
|
+
Zone?: string
|
|
740
|
+
/**
|
|
741
|
+
* 子网id
|
|
742
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
743
|
+
*/
|
|
744
|
+
SubnetId?: string
|
|
745
|
+
/**
|
|
746
|
+
* 当前子网可用ip数
|
|
747
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
748
|
+
*/
|
|
749
|
+
SubnetIpNum?: number
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
/**
|
|
753
|
+
* 可用区描述信息
|
|
754
|
+
*/
|
|
755
|
+
export interface ZoneInfo {
|
|
756
|
+
/**
|
|
757
|
+
* 可用区名称,例如"ap-guangzhou-1"
|
|
758
|
+
*/
|
|
759
|
+
Name?: string
|
|
760
|
+
/**
|
|
761
|
+
* 可用区描述信息,例如“广州一区”
|
|
762
|
+
*/
|
|
763
|
+
Desc?: string
|
|
764
|
+
/**
|
|
765
|
+
* 可用区唯一标记
|
|
766
|
+
*/
|
|
767
|
+
ZoneId?: number
|
|
768
|
+
/**
|
|
769
|
+
* Encryptid
|
|
770
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
771
|
+
*/
|
|
772
|
+
Encrypt?: number
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
/**
|
|
776
|
+
* DescribeRestoreTaskDetail返回参数结构体
|
|
777
|
+
*/
|
|
778
|
+
export interface DescribeRestoreTaskDetailResponse {
|
|
779
|
+
/**
|
|
780
|
+
* 恢复任务进度详情
|
|
781
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
782
|
+
*/
|
|
783
|
+
RestoreStatus: Array<RestoreStatus>
|
|
784
|
+
/**
|
|
785
|
+
* 错误信息
|
|
786
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
787
|
+
*/
|
|
788
|
+
ErrorMsg: string
|
|
789
|
+
/**
|
|
790
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
791
|
+
*/
|
|
792
|
+
RequestId?: string
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
/**
|
|
796
|
+
* DeleteBackUpData请求参数结构体
|
|
797
|
+
*/
|
|
798
|
+
export interface DeleteBackUpDataRequest {
|
|
799
|
+
/**
|
|
800
|
+
* 集群id
|
|
801
|
+
*/
|
|
802
|
+
InstanceId: string
|
|
803
|
+
/**
|
|
804
|
+
* 任务id
|
|
805
|
+
*/
|
|
806
|
+
BackUpJobId?: number
|
|
807
|
+
/**
|
|
808
|
+
* 是否删除所有数据
|
|
809
|
+
*/
|
|
810
|
+
IsDeleteAll?: boolean
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
/**
|
|
814
|
+
* 返回配置的文件内容(key-value)
|
|
815
|
+
*/
|
|
816
|
+
export interface ConfigKeyValue {
|
|
817
|
+
/**
|
|
818
|
+
* key
|
|
819
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
820
|
+
*/
|
|
821
|
+
KeyName?: string
|
|
822
|
+
/**
|
|
823
|
+
* 值
|
|
824
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
825
|
+
*/
|
|
826
|
+
Value?: string
|
|
827
|
+
/**
|
|
828
|
+
* 备注
|
|
829
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
830
|
+
*/
|
|
831
|
+
Message?: string
|
|
832
|
+
/**
|
|
833
|
+
* 1-只读,2-可修改但不可删除,3-可删除
|
|
834
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
835
|
+
*/
|
|
836
|
+
Display?: number
|
|
837
|
+
/**
|
|
838
|
+
* 0不支持 1支持热更新
|
|
839
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
840
|
+
*/
|
|
841
|
+
SupportHotUpdate?: number
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
/**
|
|
845
|
+
* 标签描述
|
|
846
|
+
*/
|
|
847
|
+
export interface Tag {
|
|
848
|
+
/**
|
|
849
|
+
* 标签的键
|
|
850
|
+
*/
|
|
851
|
+
TagKey: string
|
|
852
|
+
/**
|
|
853
|
+
* 标签的值
|
|
854
|
+
*/
|
|
855
|
+
TagValue: string
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
/**
|
|
859
|
+
* ResizeDisk返回参数结构体
|
|
860
|
+
*/
|
|
861
|
+
export interface ResizeDiskResponse {
|
|
862
|
+
/**
|
|
863
|
+
* 实例ID
|
|
864
|
+
*/
|
|
865
|
+
InstanceId?: string
|
|
866
|
+
/**
|
|
867
|
+
* 流程ID
|
|
868
|
+
*/
|
|
869
|
+
FlowId?: string
|
|
870
|
+
/**
|
|
871
|
+
* 错误信息
|
|
872
|
+
*/
|
|
873
|
+
ErrorMsg?: string
|
|
874
|
+
/**
|
|
875
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
876
|
+
*/
|
|
877
|
+
RequestId?: string
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
/**
|
|
881
|
+
* ModifyInstance返回参数结构体
|
|
882
|
+
*/
|
|
883
|
+
export interface ModifyInstanceResponse {
|
|
884
|
+
/**
|
|
885
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
886
|
+
*/
|
|
887
|
+
RequestId?: string
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
/**
|
|
891
|
+
* DescribeSlowQueryRecordsDownload请求参数结构体
|
|
892
|
+
*/
|
|
893
|
+
export interface DescribeSlowQueryRecordsDownloadRequest {
|
|
894
|
+
/**
|
|
895
|
+
* 实例ID
|
|
896
|
+
*/
|
|
897
|
+
InstanceId: string
|
|
898
|
+
/**
|
|
899
|
+
* 慢查询时间
|
|
900
|
+
*/
|
|
901
|
+
QueryDurationMs: number
|
|
902
|
+
/**
|
|
903
|
+
* 开始时间
|
|
904
|
+
*/
|
|
905
|
+
StartTime: string
|
|
906
|
+
/**
|
|
907
|
+
* 结束时间
|
|
908
|
+
*/
|
|
909
|
+
EndTime: string
|
|
910
|
+
/**
|
|
911
|
+
* 排序参数
|
|
912
|
+
*/
|
|
913
|
+
DurationMs?: string
|
|
914
|
+
/**
|
|
915
|
+
* 查询sql
|
|
916
|
+
*/
|
|
917
|
+
Sql?: string
|
|
918
|
+
/**
|
|
919
|
+
* 排序参数
|
|
920
|
+
*/
|
|
921
|
+
ReadRows?: string
|
|
922
|
+
/**
|
|
923
|
+
* 排序参数
|
|
924
|
+
*/
|
|
925
|
+
ResultBytes?: string
|
|
926
|
+
/**
|
|
927
|
+
* 排序参数
|
|
928
|
+
*/
|
|
929
|
+
MemoryUsage?: string
|
|
930
|
+
/**
|
|
931
|
+
* IsQuery条件
|
|
932
|
+
*/
|
|
933
|
+
IsQuery?: number
|
|
934
|
+
/**
|
|
935
|
+
* 数据库名称
|
|
936
|
+
*/
|
|
937
|
+
DbName?: Array<string>
|
|
938
|
+
/**
|
|
939
|
+
* catalog名称
|
|
940
|
+
*/
|
|
941
|
+
CatalogName?: Array<string>
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
/**
|
|
945
|
+
* DescribeAreaRegion返回参数结构体
|
|
946
|
+
*/
|
|
947
|
+
export interface DescribeAreaRegionResponse {
|
|
948
|
+
/**
|
|
949
|
+
* 地域列表
|
|
950
|
+
*/
|
|
951
|
+
Items?: Array<RegionAreaInfo>
|
|
952
|
+
/**
|
|
953
|
+
* 前端规则描述
|
|
954
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
955
|
+
*/
|
|
956
|
+
FrontEndRules?: Array<FrontEndRule>
|
|
957
|
+
/**
|
|
958
|
+
* 返回可用的白名单名称
|
|
959
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
960
|
+
*/
|
|
961
|
+
AvailableWhiteListNames?: Array<string>
|
|
962
|
+
/**
|
|
963
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
964
|
+
*/
|
|
965
|
+
RequestId?: string
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
/**
|
|
969
|
+
* DescribeDorisMetricFiles请求参数结构体
|
|
970
|
+
*/
|
|
971
|
+
export interface DescribeDorisMetricFilesRequest {
|
|
972
|
+
/**
|
|
973
|
+
* 接口类型
|
|
974
|
+
*/
|
|
975
|
+
ApiType: string
|
|
976
|
+
/**
|
|
977
|
+
* 集群id
|
|
978
|
+
*/
|
|
979
|
+
InstanceId: string
|
|
980
|
+
/**
|
|
981
|
+
* 展示监控指标入参
|
|
982
|
+
*/
|
|
983
|
+
DescribeMetricsFileReq?: DescribeMetricsFileReq
|
|
984
|
+
/**
|
|
985
|
+
* 点关注功能入参
|
|
986
|
+
*/
|
|
987
|
+
ModifyMetricFileReq?: ModifyMetricFileStruct
|
|
988
|
+
/**
|
|
989
|
+
* 监控指标关注功能入参
|
|
990
|
+
*/
|
|
991
|
+
ModifyAttentionMetricFileReq?: ModifyMetricFileStructNew
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
/**
|
|
995
|
+
* ModifyNodeStatus请求参数结构体
|
|
996
|
+
*/
|
|
997
|
+
export interface ModifyNodeStatusRequest {
|
|
998
|
+
/**
|
|
999
|
+
* 集群ID,例如cdwch-xxxx
|
|
1000
|
+
*/
|
|
1001
|
+
InstanceId: string
|
|
1002
|
+
/**
|
|
1003
|
+
* 节点信息
|
|
1004
|
+
*/
|
|
1005
|
+
NodeInfos: Array<NodeInfos>
|
|
1006
|
+
/**
|
|
1007
|
+
* 节点操作
|
|
1008
|
+
*/
|
|
1009
|
+
OperationCode: string
|
|
1010
|
+
/**
|
|
1011
|
+
* 超时时间(秒)
|
|
1012
|
+
*/
|
|
1013
|
+
RestartTimeOut?: string
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
/**
|
|
1017
|
+
* RestartClusterForNode返回参数结构体
|
|
1018
|
+
*/
|
|
1019
|
+
export interface RestartClusterForNodeResponse {
|
|
1020
|
+
/**
|
|
1021
|
+
* 流程相关信息
|
|
1022
|
+
*/
|
|
1023
|
+
FlowId?: number
|
|
1024
|
+
/**
|
|
1025
|
+
* 错误信息
|
|
1026
|
+
*/
|
|
1027
|
+
ErrorMsg?: string
|
|
1028
|
+
/**
|
|
1029
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1030
|
+
*/
|
|
1031
|
+
RequestId?: string
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
/**
|
|
1035
|
+
* CancelBackupJob返回参数结构体
|
|
1036
|
+
*/
|
|
1037
|
+
export interface CancelBackupJobResponse {
|
|
1038
|
+
/**
|
|
1039
|
+
* 错误信息
|
|
1040
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1041
|
+
*/
|
|
1042
|
+
ErrorMsg?: string
|
|
1043
|
+
/**
|
|
1044
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1045
|
+
*/
|
|
1046
|
+
RequestId?: string
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
/**
|
|
1050
|
+
* DescribeAreaRegion请求参数结构体
|
|
1051
|
+
*/
|
|
1052
|
+
export interface DescribeAreaRegionRequest {
|
|
1053
|
+
/**
|
|
1054
|
+
* 是否是国际站
|
|
1055
|
+
*/
|
|
1056
|
+
IsInternationalSite?: boolean
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
/**
|
|
1060
|
+
* 慢查询记录
|
|
1061
|
+
*/
|
|
1062
|
+
export interface SlowQueryRecord {
|
|
1063
|
+
/**
|
|
1064
|
+
* 查询用户
|
|
1065
|
+
*/
|
|
1066
|
+
OsUser?: string
|
|
1067
|
+
/**
|
|
1068
|
+
* 查询ID
|
|
1069
|
+
*/
|
|
1070
|
+
InitialQueryId?: string
|
|
1071
|
+
/**
|
|
1072
|
+
* SQL语句
|
|
1073
|
+
*/
|
|
1074
|
+
Sql?: string
|
|
1075
|
+
/**
|
|
1076
|
+
* 开始时间
|
|
1077
|
+
*/
|
|
1078
|
+
QueryStartTime?: string
|
|
1079
|
+
/**
|
|
1080
|
+
* 执行耗时
|
|
1081
|
+
*/
|
|
1082
|
+
DurationMs?: number
|
|
1083
|
+
/**
|
|
1084
|
+
* 读取行数
|
|
1085
|
+
*/
|
|
1086
|
+
ReadRows?: number
|
|
1087
|
+
/**
|
|
1088
|
+
* 读取字节数
|
|
1089
|
+
*/
|
|
1090
|
+
ResultRows?: number
|
|
1091
|
+
/**
|
|
1092
|
+
* 结果字节数
|
|
1093
|
+
*/
|
|
1094
|
+
ResultBytes?: number
|
|
1095
|
+
/**
|
|
1096
|
+
* 内存
|
|
1097
|
+
*/
|
|
1098
|
+
MemoryUsage?: number
|
|
1099
|
+
/**
|
|
1100
|
+
* 初始查询IP
|
|
1101
|
+
*/
|
|
1102
|
+
InitialAddress?: string
|
|
1103
|
+
/**
|
|
1104
|
+
* 数据库名
|
|
1105
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1106
|
+
*/
|
|
1107
|
+
DbName?: string
|
|
1108
|
+
/**
|
|
1109
|
+
* 是否是查询,0:否,1:查询语句
|
|
1110
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1111
|
+
*/
|
|
1112
|
+
IsQuery?: number
|
|
1113
|
+
/**
|
|
1114
|
+
* ResultBytes的MB格式
|
|
1115
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1116
|
+
*/
|
|
1117
|
+
ResultBytesMB?: number
|
|
1118
|
+
/**
|
|
1119
|
+
* MemoryUsage的MB表示
|
|
1120
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1121
|
+
*/
|
|
1122
|
+
MemoryUsageMB?: number
|
|
1123
|
+
/**
|
|
1124
|
+
* DurationMs的秒表示
|
|
1125
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1126
|
+
*/
|
|
1127
|
+
DurationSec?: number
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1130
|
+
/**
|
|
1131
|
+
* DescribeInstanceNodes请求参数结构体
|
|
1132
|
+
*/
|
|
1133
|
+
export interface DescribeInstanceNodesRequest {
|
|
1134
|
+
/**
|
|
1135
|
+
* 集群实例ID
|
|
1136
|
+
*/
|
|
1137
|
+
InstanceId: string
|
|
1138
|
+
/**
|
|
1139
|
+
* 集群角色类型,默认为 "data"数据节点
|
|
1140
|
+
*/
|
|
1141
|
+
NodeRole?: string
|
|
1142
|
+
/**
|
|
1143
|
+
* 分页参数,第一页为0,第二页为10
|
|
1144
|
+
*/
|
|
1145
|
+
Offset?: number
|
|
1146
|
+
/**
|
|
1147
|
+
* 分页参数,分页步长,默认为10
|
|
1148
|
+
*/
|
|
1149
|
+
Limit?: number
|
|
1150
|
+
/**
|
|
1151
|
+
* 展现策略,All时显示所有
|
|
1152
|
+
*/
|
|
1153
|
+
DisplayPolicy?: string
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
/**
|
|
1157
|
+
* 集群计费相关信息
|
|
1158
|
+
*/
|
|
1159
|
+
export interface ChargeProperties {
|
|
1160
|
+
/**
|
|
1161
|
+
* 计费类型,“PREPAID” 预付费,“POSTPAID_BY_HOUR” 后付费
|
|
1162
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1163
|
+
*/
|
|
1164
|
+
ChargeType?: string
|
|
1165
|
+
/**
|
|
1166
|
+
* 是否自动续费,1表示自动续费开启
|
|
1167
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1168
|
+
*/
|
|
1169
|
+
RenewFlag?: number
|
|
1170
|
+
/**
|
|
1171
|
+
* 计费时间长度
|
|
1172
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1173
|
+
*/
|
|
1174
|
+
TimeSpan?: number
|
|
1175
|
+
/**
|
|
1176
|
+
* 计费时间单位,“m”表示月等
|
|
1177
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1178
|
+
*/
|
|
1179
|
+
TimeUnit?: string
|
|
1180
|
+
}
|
|
1181
|
+
|
|
1182
|
+
/**
|
|
1183
|
+
* DescribeWorkloadGroup请求参数结构体
|
|
1184
|
+
*/
|
|
1185
|
+
export interface DescribeWorkloadGroupRequest {
|
|
1186
|
+
/**
|
|
1187
|
+
* 集群id
|
|
1188
|
+
*/
|
|
1189
|
+
InstanceId: string
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
/**
|
|
1193
|
+
* OpenBackUp请求参数结构体
|
|
1194
|
+
*/
|
|
1195
|
+
export interface OpenBackUpRequest {
|
|
1196
|
+
/**
|
|
1197
|
+
* 集群id
|
|
1198
|
+
*/
|
|
1199
|
+
InstanceId: string
|
|
1200
|
+
/**
|
|
1201
|
+
* 取值:
|
|
1202
|
+
open:打开
|
|
1203
|
+
close:关闭
|
|
1204
|
+
updateBucket:变更桶名
|
|
1205
|
+
*/
|
|
1206
|
+
OperationType: string
|
|
1207
|
+
/**
|
|
1208
|
+
* 桶名字
|
|
1209
|
+
*/
|
|
1210
|
+
CosBucketName: string
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
/**
|
|
1214
|
+
* 集群操作描述
|
|
1215
|
+
*/
|
|
1216
|
+
export interface InstanceOperation {
|
|
1217
|
+
/**
|
|
1218
|
+
* 操作名称,例如“create_instance"、“scaleout_instance”等
|
|
1219
|
+
*/
|
|
1220
|
+
Name?: string
|
|
1221
|
+
/**
|
|
1222
|
+
* 操作结果,“Success"表示成功,”Fail"表示失败
|
|
1223
|
+
*/
|
|
1224
|
+
Result?: string
|
|
1225
|
+
/**
|
|
1226
|
+
* 操作名称描述,例如“创建”,“修改集群名称”等
|
|
1227
|
+
*/
|
|
1228
|
+
Desc?: string
|
|
1229
|
+
/**
|
|
1230
|
+
* 操作级别,例如“Critical", "Normal"等
|
|
1231
|
+
*/
|
|
1232
|
+
Level?: string
|
|
1233
|
+
/**
|
|
1234
|
+
* 操作级别描述,例如“高危”,“一般”等
|
|
1235
|
+
*/
|
|
1236
|
+
LevelDesc?: string
|
|
1237
|
+
/**
|
|
1238
|
+
* 操作开始时间
|
|
1239
|
+
*/
|
|
1240
|
+
StartTime?: string
|
|
1241
|
+
/**
|
|
1242
|
+
* 操作结束时间
|
|
1243
|
+
*/
|
|
1244
|
+
EndTime?: string
|
|
1245
|
+
/**
|
|
1246
|
+
* 操作结果描述,例如“成功”,“失败”
|
|
1247
|
+
*/
|
|
1248
|
+
ResultDesc?: string
|
|
1249
|
+
/**
|
|
1250
|
+
* 操作用户ID
|
|
1251
|
+
*/
|
|
1252
|
+
OperateUin?: string
|
|
1253
|
+
/**
|
|
1254
|
+
* 操作对应的jobid
|
|
1255
|
+
*/
|
|
1256
|
+
JobId?: number
|
|
1257
|
+
/**
|
|
1258
|
+
* 操作明细
|
|
1259
|
+
*/
|
|
1260
|
+
OperationDetail?: string
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
/**
|
|
1264
|
+
* 备份表信息
|
|
1265
|
+
*/
|
|
1266
|
+
export interface BackupTableContent {
|
|
1267
|
+
/**
|
|
1268
|
+
* 数据库
|
|
1269
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1270
|
+
*/
|
|
1271
|
+
Database: string
|
|
1272
|
+
/**
|
|
1273
|
+
* 表
|
|
1274
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1275
|
+
*/
|
|
1276
|
+
Table: string
|
|
1277
|
+
/**
|
|
1278
|
+
* 表总字节数
|
|
1279
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1280
|
+
*/
|
|
1281
|
+
TotalBytes: number
|
|
1282
|
+
/**
|
|
1283
|
+
* 表单个副本的大小
|
|
1284
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1285
|
+
*/
|
|
1286
|
+
SingleReplicaBytes?: string
|
|
1287
|
+
/**
|
|
1288
|
+
* 备份状态
|
|
1289
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1290
|
+
*/
|
|
1291
|
+
BackupStatus?: number
|
|
1292
|
+
/**
|
|
1293
|
+
* 备份的错误信息
|
|
1294
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1295
|
+
*/
|
|
1296
|
+
BackupErrorMsg?: string
|
|
1297
|
+
/**
|
|
1298
|
+
* 改库表是否绑定降冷策略
|
|
1299
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1300
|
+
*/
|
|
1301
|
+
IsOpenCoolDown?: boolean
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
/**
|
|
1305
|
+
* DescribeInstanceNodes返回参数结构体
|
|
1306
|
+
*/
|
|
1307
|
+
export interface DescribeInstanceNodesResponse {
|
|
1308
|
+
/**
|
|
1309
|
+
* 总数
|
|
1310
|
+
*/
|
|
1311
|
+
TotalCount?: number
|
|
1312
|
+
/**
|
|
1313
|
+
* 实例节点总数
|
|
1314
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1315
|
+
*/
|
|
1316
|
+
InstanceNodesList?: Array<InstanceNode>
|
|
1317
|
+
/**
|
|
1318
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1319
|
+
*/
|
|
1320
|
+
RequestId?: string
|
|
1321
|
+
}
|
|
1322
|
+
|
|
1323
|
+
/**
|
|
1324
|
+
* DescribeSqlApis请求参数结构体
|
|
1325
|
+
*/
|
|
1326
|
+
export interface DescribeSqlApisRequest {
|
|
1327
|
+
/**
|
|
1328
|
+
* 用户链接来自的 IP
|
|
1329
|
+
*/
|
|
1330
|
+
WhiteHost?: string
|
|
1331
|
+
/**
|
|
1332
|
+
* catalog名称
|
|
1333
|
+
*/
|
|
1334
|
+
Catalog?: string
|
|
1335
|
+
/**
|
|
1336
|
+
* catalog集合
|
|
1337
|
+
*/
|
|
1338
|
+
Catalogs?: Array<string>
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
/**
|
|
1342
|
+
* ModifySecurityGroups请求参数结构体
|
|
1343
|
+
*/
|
|
1344
|
+
export interface ModifySecurityGroupsRequest {
|
|
1345
|
+
/**
|
|
1346
|
+
* 集群id
|
|
1347
|
+
*/
|
|
1348
|
+
InstanceId: string
|
|
1349
|
+
/**
|
|
1350
|
+
* 修改前的安全组信息
|
|
1351
|
+
*/
|
|
1352
|
+
OldSecurityGroupIds?: Array<string>
|
|
1353
|
+
/**
|
|
1354
|
+
* 修改后的安全组信息
|
|
1355
|
+
*/
|
|
1356
|
+
ModifySecurityGroupIds?: Array<string>
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
/**
|
|
1360
|
+
* CreateInstanceNew请求参数结构体
|
|
1361
|
+
*/
|
|
1362
|
+
export interface CreateInstanceNewRequest {
|
|
1363
|
+
/**
|
|
1364
|
+
* 可用区
|
|
1365
|
+
*/
|
|
1366
|
+
Zone: string
|
|
1367
|
+
/**
|
|
1368
|
+
* FE规格
|
|
1369
|
+
*/
|
|
1370
|
+
FeSpec: CreateInstanceSpec
|
|
1371
|
+
/**
|
|
1372
|
+
* BE规格
|
|
1373
|
+
*/
|
|
1374
|
+
BeSpec: CreateInstanceSpec
|
|
1375
|
+
/**
|
|
1376
|
+
* 是否高可用
|
|
1377
|
+
*/
|
|
1378
|
+
HaFlag: boolean
|
|
1379
|
+
/**
|
|
1380
|
+
* 用户VPCID
|
|
1381
|
+
*/
|
|
1382
|
+
UserVPCId: string
|
|
1383
|
+
/**
|
|
1384
|
+
* 用户子网ID
|
|
1385
|
+
*/
|
|
1386
|
+
UserSubnetId: string
|
|
1387
|
+
/**
|
|
1388
|
+
* 产品版本号
|
|
1389
|
+
*/
|
|
1390
|
+
ProductVersion: string
|
|
1391
|
+
/**
|
|
1392
|
+
* 付费类型
|
|
1393
|
+
*/
|
|
1394
|
+
ChargeProperties: ChargeProperties
|
|
1395
|
+
/**
|
|
1396
|
+
* 实例名字
|
|
1397
|
+
*/
|
|
1398
|
+
InstanceName: string
|
|
1399
|
+
/**
|
|
1400
|
+
* 数据库密码
|
|
1401
|
+
*/
|
|
1402
|
+
DorisUserPwd: string
|
|
1403
|
+
/**
|
|
1404
|
+
* 标签列表
|
|
1405
|
+
*/
|
|
1406
|
+
Tags?: Array<Tag>
|
|
1407
|
+
/**
|
|
1408
|
+
* 高可用类型:
|
|
1409
|
+
0:非高可用(只有1个FE,FeSpec.CreateInstanceSpec.Count=1),
|
|
1410
|
+
1:读高可用(至少需部署3个FE,FeSpec.CreateInstanceSpec.Count>=3,且为奇数),
|
|
1411
|
+
2:读写高可用(至少需部署5个FE,FeSpec.CreateInstanceSpec.Count>=5,且为奇数)。
|
|
1412
|
+
*/
|
|
1413
|
+
HaType?: number
|
|
1414
|
+
/**
|
|
1415
|
+
* 表名大小写是否敏感,0:敏感;1:不敏感,以小写进行比较;2:不敏感,表名改为以小写存储
|
|
1416
|
+
*/
|
|
1417
|
+
CaseSensitive?: number
|
|
1418
|
+
/**
|
|
1419
|
+
* 是否开启多可用区
|
|
1420
|
+
*/
|
|
1421
|
+
EnableMultiZones?: boolean
|
|
1422
|
+
/**
|
|
1423
|
+
* 开启多可用区后,用户的所有可用区和子网信息
|
|
1424
|
+
*/
|
|
1425
|
+
UserMultiZoneInfos?: NetworkInfo
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1428
|
+
/**
|
|
1429
|
+
* DescribeDmsSqlHistory返回参数结构体
|
|
1430
|
+
*/
|
|
1431
|
+
export interface DescribeDmsSqlHistoryResponse {
|
|
1432
|
+
/**
|
|
1433
|
+
* 集群所有的查询节点
|
|
1434
|
+
*/
|
|
1435
|
+
QueryNodeList?: Array<string>
|
|
1436
|
+
/**
|
|
1437
|
+
* 集群所有的查询状态
|
|
1438
|
+
*/
|
|
1439
|
+
QueryStatusList?: Array<string>
|
|
1440
|
+
/**
|
|
1441
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1442
|
+
*/
|
|
1443
|
+
RequestId?: string
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1446
|
+
/**
|
|
1447
|
+
* 外部doris集群的连接信息
|
|
1448
|
+
*/
|
|
1449
|
+
export interface DorisSourceInfo {
|
|
1450
|
+
/**
|
|
1451
|
+
* doris集群的fe的ip
|
|
1452
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1453
|
+
*/
|
|
1454
|
+
Host?: string
|
|
1455
|
+
/**
|
|
1456
|
+
* doris集群的fe的端口号
|
|
1457
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1458
|
+
*/
|
|
1459
|
+
Port?: number
|
|
1460
|
+
/**
|
|
1461
|
+
* doris集群的账号
|
|
1462
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1463
|
+
*/
|
|
1464
|
+
User?: string
|
|
1465
|
+
/**
|
|
1466
|
+
* doris集群的密码
|
|
1467
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1468
|
+
*/
|
|
1469
|
+
Password?: string
|
|
1470
|
+
}
|
|
1471
|
+
|
|
1472
|
+
/**
|
|
1473
|
+
* 集群内节点的规格磁盘规格描述
|
|
1474
|
+
*/
|
|
1475
|
+
export interface AttachCBSSpec {
|
|
1476
|
+
/**
|
|
1477
|
+
* 节点磁盘类型,例如“CLOUD_SSD”\"CLOUD_PREMIUM"
|
|
1478
|
+
*/
|
|
1479
|
+
DiskType?: string
|
|
1480
|
+
/**
|
|
1481
|
+
* 磁盘容量,单位G
|
|
1482
|
+
*/
|
|
1483
|
+
DiskSize?: number
|
|
1484
|
+
/**
|
|
1485
|
+
* 磁盘总数
|
|
1486
|
+
*/
|
|
1487
|
+
DiskCount?: number
|
|
1488
|
+
/**
|
|
1489
|
+
* 描述
|
|
1490
|
+
*/
|
|
1491
|
+
DiskDesc?: string
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1494
|
+
/**
|
|
1495
|
+
* 数据库审计
|
|
1496
|
+
*/
|
|
1497
|
+
export interface DataBaseAuditRecord {
|
|
1498
|
+
/**
|
|
1499
|
+
* 查询用户
|
|
1500
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1501
|
+
*/
|
|
1502
|
+
OsUser?: string
|
|
1503
|
+
/**
|
|
1504
|
+
* 查询ID
|
|
1505
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1506
|
+
*/
|
|
1507
|
+
InitialQueryId?: string
|
|
1508
|
+
/**
|
|
1509
|
+
* SQL语句
|
|
1510
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1511
|
+
*/
|
|
1512
|
+
Sql?: string
|
|
1513
|
+
/**
|
|
1514
|
+
* 开始时间
|
|
1515
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1516
|
+
*/
|
|
1517
|
+
QueryStartTime?: string
|
|
1518
|
+
/**
|
|
1519
|
+
* 执行耗时
|
|
1520
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1521
|
+
*/
|
|
1522
|
+
DurationMs?: number
|
|
1523
|
+
/**
|
|
1524
|
+
* 读取行数
|
|
1525
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1526
|
+
*/
|
|
1527
|
+
ReadRows?: number
|
|
1528
|
+
/**
|
|
1529
|
+
* 读取字节数
|
|
1530
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1531
|
+
*/
|
|
1532
|
+
ResultRows?: number
|
|
1533
|
+
/**
|
|
1534
|
+
* 结果字节数
|
|
1535
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1536
|
+
*/
|
|
1537
|
+
ResultBytes?: number
|
|
1538
|
+
/**
|
|
1539
|
+
* 内存
|
|
1540
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1541
|
+
*/
|
|
1542
|
+
MemoryUsage?: number
|
|
1543
|
+
/**
|
|
1544
|
+
* 初始查询IP
|
|
1545
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1546
|
+
*/
|
|
1547
|
+
InitialAddress?: string
|
|
1548
|
+
/**
|
|
1549
|
+
* 数据库
|
|
1550
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1551
|
+
*/
|
|
1552
|
+
DbName?: string
|
|
1553
|
+
/**
|
|
1554
|
+
* sql类型
|
|
1555
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1556
|
+
*/
|
|
1557
|
+
SqlType?: string
|
|
1558
|
+
/**
|
|
1559
|
+
* catalog名称
|
|
1560
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1561
|
+
*/
|
|
1562
|
+
Catalog?: string
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
/**
|
|
1566
|
+
* DescribeSlowQueryRecords返回参数结构体
|
|
1567
|
+
*/
|
|
1568
|
+
export interface DescribeSlowQueryRecordsResponse {
|
|
1569
|
+
/**
|
|
1570
|
+
* 总数
|
|
1571
|
+
*/
|
|
1572
|
+
TotalCount?: number
|
|
1573
|
+
/**
|
|
1574
|
+
* 记录列表
|
|
1575
|
+
*/
|
|
1576
|
+
SlowQueryRecords?: Array<SlowQueryRecord>
|
|
1577
|
+
/**
|
|
1578
|
+
* 所有数据库名
|
|
1579
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1580
|
+
*/
|
|
1581
|
+
DBNameList?: Array<string>
|
|
1582
|
+
/**
|
|
1583
|
+
* 所有catalog名
|
|
1584
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1585
|
+
*/
|
|
1586
|
+
CatalogNameList?: Array<string>
|
|
1587
|
+
/**
|
|
1588
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1589
|
+
*/
|
|
1590
|
+
RequestId?: string
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
/**
|
|
1594
|
+
* 集群的配置文件的修改历史
|
|
1595
|
+
*/
|
|
1596
|
+
export interface ClusterConfigsHistory {
|
|
1597
|
+
/**
|
|
1598
|
+
* 配置文件名称
|
|
1599
|
+
*/
|
|
1600
|
+
FileName: string
|
|
1601
|
+
/**
|
|
1602
|
+
* 修改后的配置文件内容,base64编码
|
|
1603
|
+
*/
|
|
1604
|
+
NewConfValue: string
|
|
1605
|
+
/**
|
|
1606
|
+
* 修改前的配置文件内容,base64编码
|
|
1607
|
+
*/
|
|
1608
|
+
OldConfValue: string
|
|
1609
|
+
/**
|
|
1610
|
+
* 修改原因
|
|
1611
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1612
|
+
*/
|
|
1613
|
+
Remark: string
|
|
1614
|
+
/**
|
|
1615
|
+
* 修改时间
|
|
1616
|
+
*/
|
|
1617
|
+
ModifyTime: string
|
|
1618
|
+
/**
|
|
1619
|
+
* 修改子账号id
|
|
1620
|
+
*/
|
|
1621
|
+
UserUin: string
|
|
1622
|
+
}
|
|
1623
|
+
|
|
1624
|
+
/**
|
|
1625
|
+
* KV配置
|
|
1626
|
+
*/
|
|
1627
|
+
export interface InstanceConfigItem {
|
|
1628
|
+
/**
|
|
1629
|
+
* key
|
|
1630
|
+
*/
|
|
1631
|
+
ConfKey: string
|
|
1632
|
+
/**
|
|
1633
|
+
* value
|
|
1634
|
+
*/
|
|
1635
|
+
ConfValue: string
|
|
1636
|
+
}
|
|
1637
|
+
|
|
1638
|
+
/**
|
|
1639
|
+
* DescribeRegionZone返回参数结构体
|
|
1640
|
+
*/
|
|
1641
|
+
export interface DescribeRegionZoneResponse {
|
|
1642
|
+
/**
|
|
1643
|
+
* 地域列表
|
|
1644
|
+
*/
|
|
1645
|
+
Items?: Array<RegionAreaInfo>
|
|
1646
|
+
/**
|
|
1647
|
+
* 内核版本列表
|
|
1648
|
+
*/
|
|
1649
|
+
Versions?: Array<string>
|
|
1650
|
+
/**
|
|
1651
|
+
* 网络规则
|
|
1652
|
+
*/
|
|
1653
|
+
VpcRule?: string
|
|
1654
|
+
/**
|
|
1655
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1656
|
+
*/
|
|
1657
|
+
RequestId?: string
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1660
|
+
/**
|
|
1661
|
+
* CreateBackUpSchedule请求参数结构体
|
|
1662
|
+
*/
|
|
1663
|
+
export interface CreateBackUpScheduleRequest {
|
|
1664
|
+
/**
|
|
1665
|
+
* 编辑时需要传
|
|
1666
|
+
*/
|
|
1667
|
+
ScheduleId?: number
|
|
1668
|
+
/**
|
|
1669
|
+
* 选择的星期 逗号分隔
|
|
1670
|
+
废弃:使用ScheduleInfo
|
|
1671
|
+
*/
|
|
1672
|
+
WeekDays?: string
|
|
1673
|
+
/**
|
|
1674
|
+
* 执行小时
|
|
1675
|
+
废弃:使用ScheduleInfo
|
|
1676
|
+
*/
|
|
1677
|
+
ExecuteHour?: number
|
|
1678
|
+
/**
|
|
1679
|
+
* 备份表列表
|
|
1680
|
+
*/
|
|
1681
|
+
BackUpTables?: Array<BackupTableContent>
|
|
1682
|
+
/**
|
|
1683
|
+
* 0为默认。1时是对远端的doris进行备份,不周期,一次性
|
|
1684
|
+
*/
|
|
1685
|
+
BackupType?: number
|
|
1686
|
+
/**
|
|
1687
|
+
* 远端doris集群的连接信息
|
|
1688
|
+
*/
|
|
1689
|
+
DorisSourceInfo?: DorisSourceInfo
|
|
1690
|
+
/**
|
|
1691
|
+
* 0为默认。1时是一次性备份。2时是远端备份
|
|
1692
|
+
*/
|
|
1693
|
+
BackupTimeType?: number
|
|
1694
|
+
/**
|
|
1695
|
+
* 0为默认。1时是备份完成后立即恢复
|
|
1696
|
+
*/
|
|
1697
|
+
RestoreType?: number
|
|
1698
|
+
/**
|
|
1699
|
+
* 0为默认。1时是提供自定义的secret连接cos
|
|
1700
|
+
*/
|
|
1701
|
+
AuthType?: number
|
|
1702
|
+
/**
|
|
1703
|
+
* cos认证的信息
|
|
1704
|
+
*/
|
|
1705
|
+
CosSourceInfo?: CosSourceInfo
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1708
|
+
/**
|
|
1709
|
+
* 备份实例中关于cos的信息
|
|
1710
|
+
*/
|
|
1711
|
+
export interface BackupCosInfo {
|
|
1712
|
+
/**
|
|
1713
|
+
* 备份文件所在的cos桶
|
|
1714
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1715
|
+
*/
|
|
1716
|
+
CosBucket?: string
|
|
1717
|
+
/**
|
|
1718
|
+
* 备份文件所在的完整cos路径
|
|
1719
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1720
|
+
*/
|
|
1721
|
+
CosPath?: string
|
|
1722
|
+
/**
|
|
1723
|
+
* 备份文件名称
|
|
1724
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1725
|
+
*/
|
|
1726
|
+
SnapShotPath?: string
|
|
1727
|
+
}
|
|
1728
|
+
|
|
1729
|
+
/**
|
|
1730
|
+
* DescribeClusterConfigsHistory请求参数结构体
|
|
1731
|
+
*/
|
|
1732
|
+
export interface DescribeClusterConfigsHistoryRequest {
|
|
1733
|
+
/**
|
|
1734
|
+
* 集群id名称
|
|
1735
|
+
*/
|
|
1736
|
+
InstanceId: string
|
|
1737
|
+
/**
|
|
1738
|
+
* 分页参数,第一页为0,第二页为10
|
|
1739
|
+
*/
|
|
1740
|
+
Offset: number
|
|
1741
|
+
/**
|
|
1742
|
+
* 分页参数,分页步长,默认为10
|
|
1743
|
+
*/
|
|
1744
|
+
Limit: number
|
|
1745
|
+
/**
|
|
1746
|
+
* 配置修改历史的时间范围开始
|
|
1747
|
+
*/
|
|
1748
|
+
StartTime: string
|
|
1749
|
+
/**
|
|
1750
|
+
* 配置修改历史的时间范围结束
|
|
1751
|
+
*/
|
|
1752
|
+
EndTime: string
|
|
1753
|
+
/**
|
|
1754
|
+
* 需要查询的配置文件名称数组,如果为空则查询全部历史记录。目前支持的配置文件名称有:
|
|
1755
|
+
apache_hdfs_broker.conf、be.conf、fe.conf、core-site.xml、hdfs-site.xml、odbcinst.ini
|
|
1756
|
+
*/
|
|
1757
|
+
ConfigFileNames?: Array<string>
|
|
1758
|
+
}
|
|
1759
|
+
|
|
1760
|
+
/**
|
|
1761
|
+
* DescribeInstanceState返回参数结构体
|
|
1762
|
+
*/
|
|
1763
|
+
export interface DescribeInstanceStateResponse {
|
|
1764
|
+
/**
|
|
1765
|
+
* 集群状态,例如:Serving
|
|
1766
|
+
*/
|
|
1767
|
+
InstanceState?: string
|
|
1768
|
+
/**
|
|
1769
|
+
* 集群操作创建时间
|
|
1770
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1771
|
+
*/
|
|
1772
|
+
FlowCreateTime?: string
|
|
1773
|
+
/**
|
|
1774
|
+
* 集群操作名称
|
|
1775
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1776
|
+
*/
|
|
1777
|
+
FlowName?: string
|
|
1778
|
+
/**
|
|
1779
|
+
* 集群操作进度
|
|
1780
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1781
|
+
*/
|
|
1782
|
+
FlowProgress?: number
|
|
1783
|
+
/**
|
|
1784
|
+
* 集群状态描述,例如:运行中
|
|
1785
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1786
|
+
*/
|
|
1787
|
+
InstanceStateDesc?: string
|
|
1788
|
+
/**
|
|
1789
|
+
* 集群流程错误信息,例如:“创建失败,资源不足”
|
|
1790
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1791
|
+
*/
|
|
1792
|
+
FlowMsg?: string
|
|
1793
|
+
/**
|
|
1794
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1795
|
+
*/
|
|
1796
|
+
RequestId?: string
|
|
1797
|
+
}
|
|
1798
|
+
|
|
1799
|
+
/**
|
|
1800
|
+
* DescribeInstanceNodesInfo请求参数结构体
|
|
1801
|
+
*/
|
|
1802
|
+
export interface DescribeInstanceNodesInfoRequest {
|
|
1803
|
+
/**
|
|
1804
|
+
* 集群id
|
|
1805
|
+
*/
|
|
1806
|
+
InstanceID: string
|
|
1807
|
+
}
|
|
1808
|
+
|
|
1809
|
+
/**
|
|
1810
|
+
* DescribeInstancesHealthState返回参数结构体
|
|
1811
|
+
*/
|
|
1812
|
+
export interface DescribeInstancesHealthStateResponse {
|
|
1813
|
+
/**
|
|
1814
|
+
* 出参
|
|
1815
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1816
|
+
*/
|
|
1817
|
+
Data?: string
|
|
1818
|
+
/**
|
|
1819
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1820
|
+
*/
|
|
1821
|
+
RequestId?: string
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
/**
|
|
1825
|
+
* DescribeSlowQueryRecords请求参数结构体
|
|
1826
|
+
*/
|
|
1827
|
+
export interface DescribeSlowQueryRecordsRequest {
|
|
1828
|
+
/**
|
|
1829
|
+
* 实例ID
|
|
1830
|
+
*/
|
|
1831
|
+
InstanceId: string
|
|
1832
|
+
/**
|
|
1833
|
+
* 慢查询时间
|
|
1834
|
+
*/
|
|
1835
|
+
QueryDurationMs: number
|
|
1836
|
+
/**
|
|
1837
|
+
* 开始时间
|
|
1838
|
+
*/
|
|
1839
|
+
StartTime: string
|
|
1840
|
+
/**
|
|
1841
|
+
* 结束时间
|
|
1842
|
+
*/
|
|
1843
|
+
EndTime: string
|
|
1844
|
+
/**
|
|
1845
|
+
* 分页
|
|
1846
|
+
*/
|
|
1847
|
+
PageSize: number
|
|
1848
|
+
/**
|
|
1849
|
+
* 分页
|
|
1850
|
+
*/
|
|
1851
|
+
PageNum: number
|
|
1852
|
+
/**
|
|
1853
|
+
* 排序参数
|
|
1854
|
+
*/
|
|
1855
|
+
DurationMs?: string
|
|
1856
|
+
/**
|
|
1857
|
+
* 数据库名称
|
|
1858
|
+
*/
|
|
1859
|
+
DbName?: Array<string>
|
|
1860
|
+
/**
|
|
1861
|
+
* 是否是查询,0:否, 1:是
|
|
1862
|
+
*/
|
|
1863
|
+
IsQuery?: number
|
|
1864
|
+
/**
|
|
1865
|
+
* catalog名称
|
|
1866
|
+
*/
|
|
1867
|
+
CatalogName?: Array<string>
|
|
1868
|
+
/**
|
|
1869
|
+
* sql名
|
|
1870
|
+
*/
|
|
1871
|
+
Sql?: string
|
|
1872
|
+
/**
|
|
1873
|
+
* ReadRows排序字段
|
|
1874
|
+
*/
|
|
1875
|
+
ReadRows?: string
|
|
1876
|
+
/**
|
|
1877
|
+
* ResultBytes排序字段
|
|
1878
|
+
*/
|
|
1879
|
+
ResultBytes?: string
|
|
1880
|
+
/**
|
|
1881
|
+
* MemoryUsage排序字段
|
|
1882
|
+
*/
|
|
1883
|
+
MemoryUsage?: string
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
/**
|
|
1887
|
+
* DescribeInstanceNodesRole返回参数结构体
|
|
1888
|
+
*/
|
|
1889
|
+
export interface DescribeInstanceNodesRoleResponse {
|
|
1890
|
+
/**
|
|
1891
|
+
* 错误码
|
|
1892
|
+
*/
|
|
1893
|
+
ErrorMsg?: string
|
|
1894
|
+
/**
|
|
1895
|
+
* 节点总数
|
|
1896
|
+
*/
|
|
1897
|
+
TotalCount?: number
|
|
1898
|
+
/**
|
|
1899
|
+
* 无
|
|
1900
|
+
*/
|
|
1901
|
+
NodeInfos?: Array<NodeInfos>
|
|
1902
|
+
/**
|
|
1903
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1904
|
+
*/
|
|
1905
|
+
RequestId?: string
|
|
1906
|
+
}
|
|
1907
|
+
|
|
1908
|
+
/**
|
|
1909
|
+
* DestroyInstance返回参数结构体
|
|
1910
|
+
*/
|
|
1911
|
+
export interface DestroyInstanceResponse {
|
|
1912
|
+
/**
|
|
1913
|
+
* 流程ID
|
|
1914
|
+
*/
|
|
1915
|
+
FlowId?: string
|
|
1916
|
+
/**
|
|
1917
|
+
* 集群ID
|
|
1918
|
+
*/
|
|
1919
|
+
InstanceId?: string
|
|
1920
|
+
/**
|
|
1921
|
+
* 错误信息
|
|
1922
|
+
*/
|
|
1923
|
+
ErrorMsg?: string
|
|
1924
|
+
/**
|
|
1925
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1926
|
+
*/
|
|
1927
|
+
RequestId?: string
|
|
1928
|
+
}
|
|
1929
|
+
|
|
1930
|
+
/**
|
|
1931
|
+
* DescribeBackUpJob请求参数结构体
|
|
1932
|
+
*/
|
|
1933
|
+
export interface DescribeBackUpJobRequest {
|
|
1934
|
+
/**
|
|
1935
|
+
* 集群id
|
|
1936
|
+
*/
|
|
1937
|
+
InstanceId: string
|
|
1938
|
+
/**
|
|
1939
|
+
* 分页大小
|
|
1940
|
+
*/
|
|
1941
|
+
PageSize?: number
|
|
1942
|
+
/**
|
|
1943
|
+
* 页号
|
|
1944
|
+
*/
|
|
1945
|
+
PageNum?: number
|
|
1946
|
+
/**
|
|
1947
|
+
* 开始时间
|
|
1948
|
+
*/
|
|
1949
|
+
BeginTime?: string
|
|
1950
|
+
/**
|
|
1951
|
+
* 结束时间
|
|
1952
|
+
*/
|
|
1953
|
+
EndTime?: string
|
|
1954
|
+
/**
|
|
1955
|
+
* jobid的string类型
|
|
1956
|
+
*/
|
|
1957
|
+
JobIdFiltersStr?: string
|
|
1958
|
+
}
|
|
1959
|
+
|
|
1960
|
+
/**
|
|
1961
|
+
* ResizeDisk请求参数结构体
|
|
1962
|
+
*/
|
|
1963
|
+
export interface ResizeDiskRequest {
|
|
1964
|
+
/**
|
|
1965
|
+
* 集群ID
|
|
1966
|
+
*/
|
|
1967
|
+
InstanceId: string
|
|
1968
|
+
/**
|
|
1969
|
+
* 角色(MATER/CORE),MASTER 对应 FE,CORE对应BE
|
|
1970
|
+
*/
|
|
1971
|
+
Type: string
|
|
1972
|
+
/**
|
|
1973
|
+
* 云盘大小
|
|
1974
|
+
*/
|
|
1975
|
+
DiskSize: number
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
/**
|
|
1979
|
+
* ModifyWorkloadGroupStatus请求参数结构体
|
|
1980
|
+
*/
|
|
1981
|
+
export interface ModifyWorkloadGroupStatusRequest {
|
|
1982
|
+
/**
|
|
1983
|
+
* 集群id
|
|
1984
|
+
*/
|
|
1985
|
+
InstanceId: string
|
|
1986
|
+
/**
|
|
1987
|
+
* 是否开启资源组:open-开启、close-关闭
|
|
1988
|
+
*/
|
|
1989
|
+
OperationType?: string
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1992
|
+
/**
|
|
1993
|
+
* DescribeRegionZone请求参数结构体
|
|
1994
|
+
*/
|
|
1995
|
+
export interface DescribeRegionZoneRequest {
|
|
1996
|
+
/**
|
|
1997
|
+
* 服务
|
|
1998
|
+
*/
|
|
1999
|
+
Service?: string
|
|
2000
|
+
/**
|
|
2001
|
+
* 是否是国际站
|
|
2002
|
+
*/
|
|
2003
|
+
IsInternationalSite?: boolean
|
|
2004
|
+
}
|
|
2005
|
+
|
|
2006
|
+
/**
|
|
2007
|
+
* DescribeDatabaseAuditResource返回参数结构体
|
|
2008
|
+
*/
|
|
2009
|
+
export interface DescribeDatabaseAuditResourceResponse {
|
|
2010
|
+
/**
|
|
2011
|
+
* 数据库列表
|
|
2012
|
+
*/
|
|
2013
|
+
Databases?: Array<string>
|
|
2014
|
+
/**
|
|
2015
|
+
* 用户列表
|
|
2016
|
+
*/
|
|
2017
|
+
Users?: Array<string>
|
|
2018
|
+
/**
|
|
2019
|
+
* sql类型列表
|
|
2020
|
+
*/
|
|
2021
|
+
SqlTypes?: Array<string>
|
|
2022
|
+
/**
|
|
2023
|
+
* catalog字段
|
|
2024
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2025
|
+
*/
|
|
2026
|
+
Catalogs?: Array<string>
|
|
2027
|
+
/**
|
|
2028
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2029
|
+
*/
|
|
2030
|
+
RequestId?: string
|
|
2031
|
+
}
|
|
2032
|
+
|
|
2033
|
+
/**
|
|
2034
|
+
* ModifyUserBindWorkloadGroup请求参数结构体
|
|
2035
|
+
*/
|
|
2036
|
+
export interface ModifyUserBindWorkloadGroupRequest {
|
|
2037
|
+
/**
|
|
2038
|
+
* 集群id
|
|
2039
|
+
*/
|
|
2040
|
+
InstanceId: string
|
|
2041
|
+
/**
|
|
2042
|
+
* 需要绑定资源组的用户信息,如果一个账户拥有多个主机信息,需要将这些信息都传入
|
|
2043
|
+
*/
|
|
2044
|
+
BindUsers?: Array<BindUser>
|
|
2045
|
+
/**
|
|
2046
|
+
* 修改前绑定的资源组名称
|
|
2047
|
+
*/
|
|
2048
|
+
OldWorkloadGroupName?: string
|
|
2049
|
+
/**
|
|
2050
|
+
* 修改后绑定的资源组名称
|
|
2051
|
+
*/
|
|
2052
|
+
NewWorkloadGroupName?: string
|
|
2053
|
+
}
|
|
2054
|
+
|
|
2055
|
+
/**
|
|
2056
|
+
* DescribeSqlApis返回参数结构体
|
|
2057
|
+
*/
|
|
2058
|
+
export interface DescribeSqlApisResponse {
|
|
2059
|
+
/**
|
|
2060
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2061
|
+
*/
|
|
2062
|
+
RequestId?: string
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
/**
|
|
2066
|
+
* ModifyInstance请求参数结构体
|
|
2067
|
+
*/
|
|
2068
|
+
export interface ModifyInstanceRequest {
|
|
2069
|
+
/**
|
|
2070
|
+
* 实例Id
|
|
2071
|
+
*/
|
|
2072
|
+
InstanceId: string
|
|
2073
|
+
/**
|
|
2074
|
+
* 新修改的实例名称
|
|
2075
|
+
*/
|
|
2076
|
+
InstanceName: string
|
|
2077
|
+
}
|
|
2078
|
+
|
|
2079
|
+
/**
|
|
2080
|
+
* DescribeSpec返回参数结构体
|
|
2081
|
+
*/
|
|
2082
|
+
export interface DescribeSpecResponse {
|
|
2083
|
+
/**
|
|
2084
|
+
* zookeeper节点规格描述
|
|
2085
|
+
*/
|
|
2086
|
+
MasterSpec?: Array<ResourceSpec>
|
|
2087
|
+
/**
|
|
2088
|
+
* 数据节点规格描述
|
|
2089
|
+
*/
|
|
2090
|
+
CoreSpec?: Array<ResourceSpec>
|
|
2091
|
+
/**
|
|
2092
|
+
* 云盘列表
|
|
2093
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2094
|
+
*/
|
|
2095
|
+
AttachCBSSpec?: Array<DiskSpec>
|
|
2096
|
+
/**
|
|
2097
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2098
|
+
*/
|
|
2099
|
+
RequestId?: string
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2102
|
+
/**
|
|
2103
|
+
* ModifyInstanceKeyValConfigs返回参数结构体
|
|
2104
|
+
*/
|
|
2105
|
+
export interface ModifyInstanceKeyValConfigsResponse {
|
|
2106
|
+
/**
|
|
2107
|
+
* 错误信息
|
|
2108
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2109
|
+
*/
|
|
2110
|
+
ErrorMsg?: string
|
|
2111
|
+
/**
|
|
2112
|
+
* ID
|
|
2113
|
+
*/
|
|
2114
|
+
FlowId?: number
|
|
2115
|
+
/**
|
|
2116
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2117
|
+
*/
|
|
2118
|
+
RequestId?: string
|
|
2119
|
+
}
|
|
2120
|
+
|
|
2121
|
+
/**
|
|
2122
|
+
* DescribeBackUpSchedules返回参数结构体
|
|
2123
|
+
*/
|
|
2124
|
+
export interface DescribeBackUpSchedulesResponse {
|
|
2125
|
+
/**
|
|
2126
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2127
|
+
*/
|
|
2128
|
+
RequestId?: string
|
|
2129
|
+
}
|
|
2130
|
+
|
|
2131
|
+
/**
|
|
2132
|
+
* DescribeBackUpTables返回参数结构体
|
|
2133
|
+
*/
|
|
2134
|
+
export interface DescribeBackUpTablesResponse {
|
|
2135
|
+
/**
|
|
2136
|
+
* 可备份表列表
|
|
2137
|
+
*/
|
|
2138
|
+
AvailableTables?: Array<BackupTableContent>
|
|
2139
|
+
/**
|
|
2140
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2141
|
+
*/
|
|
2142
|
+
RequestId?: string
|
|
2143
|
+
}
|
|
2144
|
+
|
|
2145
|
+
/**
|
|
2146
|
+
* DescribeDatabaseAuditRecords返回参数结构体
|
|
2147
|
+
*/
|
|
2148
|
+
export interface DescribeDatabaseAuditRecordsResponse {
|
|
2149
|
+
/**
|
|
2150
|
+
* 总数
|
|
2151
|
+
*/
|
|
2152
|
+
TotalCount?: number
|
|
2153
|
+
/**
|
|
2154
|
+
* 记录列表
|
|
2155
|
+
*/
|
|
2156
|
+
SlowQueryRecords?: DataBaseAuditRecord
|
|
2157
|
+
/**
|
|
2158
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2159
|
+
*/
|
|
2160
|
+
RequestId?: string
|
|
2161
|
+
}
|
|
2162
|
+
|
|
2163
|
+
/**
|
|
2164
|
+
* 实例节点描述信息
|
|
2165
|
+
*/
|
|
2166
|
+
export interface InstanceNode {
|
|
2167
|
+
/**
|
|
2168
|
+
* IP地址
|
|
2169
|
+
*/
|
|
2170
|
+
Ip?: string
|
|
2171
|
+
/**
|
|
2172
|
+
* 机型,如 S1
|
|
2173
|
+
*/
|
|
2174
|
+
Spec?: string
|
|
2175
|
+
/**
|
|
2176
|
+
* cpu核数
|
|
2177
|
+
*/
|
|
2178
|
+
Core?: number
|
|
2179
|
+
/**
|
|
2180
|
+
* 内存大小
|
|
2181
|
+
*/
|
|
2182
|
+
Memory?: number
|
|
2183
|
+
/**
|
|
2184
|
+
* 磁盘类型
|
|
2185
|
+
*/
|
|
2186
|
+
DiskType?: string
|
|
2187
|
+
/**
|
|
2188
|
+
* 磁盘大小
|
|
2189
|
+
*/
|
|
2190
|
+
DiskSize?: number
|
|
2191
|
+
/**
|
|
2192
|
+
* 所属clickhouse cluster名称
|
|
2193
|
+
*/
|
|
2194
|
+
Role?: string
|
|
2195
|
+
/**
|
|
2196
|
+
* 状态
|
|
2197
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2198
|
+
*/
|
|
2199
|
+
Status?: string
|
|
2200
|
+
/**
|
|
2201
|
+
* rip
|
|
2202
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2203
|
+
*/
|
|
2204
|
+
Rip?: string
|
|
2205
|
+
/**
|
|
2206
|
+
* FE节点角色
|
|
2207
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2208
|
+
*/
|
|
2209
|
+
FeRole?: string
|
|
2210
|
+
/**
|
|
2211
|
+
* UUID
|
|
2212
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2213
|
+
*/
|
|
2214
|
+
UUID?: string
|
|
2215
|
+
}
|
|
2216
|
+
|
|
2217
|
+
/**
|
|
2218
|
+
* DescribeInstancesHealthState请求参数结构体
|
|
2219
|
+
*/
|
|
2220
|
+
export interface DescribeInstancesHealthStateRequest {
|
|
2221
|
+
/**
|
|
2222
|
+
* 集群Id
|
|
2223
|
+
* @deprecated
|
|
2224
|
+
*/
|
|
2225
|
+
InstanceID?: string
|
|
2226
|
+
/**
|
|
2227
|
+
* "" 或者 某个集群Id
|
|
2228
|
+
*/
|
|
2229
|
+
Input?: string
|
|
2230
|
+
}
|
|
2231
|
+
|
|
2232
|
+
/**
|
|
2233
|
+
* NodeInfo
|
|
2234
|
+
*/
|
|
2235
|
+
export interface NodeInfo {
|
|
2236
|
+
/**
|
|
2237
|
+
* 用户IP
|
|
2238
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2239
|
+
*/
|
|
2240
|
+
Ip?: string
|
|
2241
|
+
/**
|
|
2242
|
+
* 节点状态
|
|
2243
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2244
|
+
*/
|
|
2245
|
+
Status?: number
|
|
2246
|
+
/**
|
|
2247
|
+
* 节点角色名
|
|
2248
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2249
|
+
*/
|
|
2250
|
+
NodeName?: string
|
|
2251
|
+
/**
|
|
2252
|
+
* 组件名
|
|
2253
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2254
|
+
*/
|
|
2255
|
+
ComponentName?: string
|
|
2256
|
+
/**
|
|
2257
|
+
* 节点角色
|
|
2258
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2259
|
+
*/
|
|
2260
|
+
NodeRole?: string
|
|
2261
|
+
/**
|
|
2262
|
+
* 节点上次重启的时间
|
|
2263
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2264
|
+
*/
|
|
2265
|
+
LastRestartTime?: string
|
|
2266
|
+
/**
|
|
2267
|
+
* 节点所在可用区
|
|
2268
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2269
|
+
*/
|
|
2270
|
+
Zone?: string
|
|
2271
|
+
}
|
|
2272
|
+
|
|
2273
|
+
/**
|
|
2274
|
+
* 前端规则描述
|
|
2275
|
+
*/
|
|
2276
|
+
export interface FrontEndRule {
|
|
2277
|
+
/**
|
|
2278
|
+
* id序列
|
|
2279
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2280
|
+
*/
|
|
2281
|
+
ID: number
|
|
2282
|
+
/**
|
|
2283
|
+
* 规则名称
|
|
2284
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2285
|
+
*/
|
|
2286
|
+
Name: string
|
|
2287
|
+
/**
|
|
2288
|
+
* 详细规则
|
|
2289
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2290
|
+
*/
|
|
2291
|
+
Rule: string
|
|
2292
|
+
}
|
|
2293
|
+
|
|
2294
|
+
/**
|
|
2295
|
+
* RestartClusterForConfigs返回参数结构体
|
|
2296
|
+
*/
|
|
2297
|
+
export interface RestartClusterForConfigsResponse {
|
|
2298
|
+
/**
|
|
2299
|
+
* 流程相关信息
|
|
2300
|
+
*/
|
|
2301
|
+
FlowId?: number
|
|
2302
|
+
/**
|
|
2303
|
+
* 错误信息
|
|
2304
|
+
*/
|
|
2305
|
+
ErrorMsg?: string
|
|
2306
|
+
/**
|
|
2307
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2308
|
+
*/
|
|
2309
|
+
RequestId?: string
|
|
2310
|
+
}
|
|
2311
|
+
|
|
2312
|
+
/**
|
|
2313
|
+
* ModifySecurityGroups返回参数结构体
|
|
2314
|
+
*/
|
|
2315
|
+
export interface ModifySecurityGroupsResponse {
|
|
2316
|
+
/**
|
|
2317
|
+
* 错误信息
|
|
2318
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2319
|
+
*/
|
|
2320
|
+
ErrorMsg?: string
|
|
2321
|
+
/**
|
|
2322
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2323
|
+
*/
|
|
2324
|
+
RequestId?: string
|
|
2325
|
+
}
|
|
2326
|
+
|
|
2327
|
+
/**
|
|
2328
|
+
* 实例描述信息
|
|
2329
|
+
*/
|
|
2330
|
+
export interface InstanceInfo {
|
|
2331
|
+
/**
|
|
2332
|
+
* 集群实例ID, "cdw-xxxx" 字符串类型
|
|
2333
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2334
|
+
*/
|
|
2335
|
+
InstanceId?: string
|
|
2336
|
+
/**
|
|
2337
|
+
* 集群实例名称
|
|
2338
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2339
|
+
*/
|
|
2340
|
+
InstanceName?: string
|
|
2341
|
+
/**
|
|
2342
|
+
* 状态,
|
|
2343
|
+
Init 创建中; Serving 运行中;
|
|
2344
|
+
Deleted已销毁;Deleting 销毁中;
|
|
2345
|
+
Modify 集群变更中;
|
|
2346
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2347
|
+
*/
|
|
2348
|
+
Status?: string
|
|
2349
|
+
/**
|
|
2350
|
+
* 版本
|
|
2351
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2352
|
+
*/
|
|
2353
|
+
Version?: string
|
|
2354
|
+
/**
|
|
2355
|
+
* 地域, ap-guangzhou
|
|
2356
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2357
|
+
*/
|
|
2358
|
+
Region?: string
|
|
2359
|
+
/**
|
|
2360
|
+
* 可用区, ap-guangzhou-3
|
|
2361
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2362
|
+
*/
|
|
2363
|
+
Zone?: string
|
|
2364
|
+
/**
|
|
2365
|
+
* 私有网络名称
|
|
2366
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2367
|
+
*/
|
|
2368
|
+
VpcId?: string
|
|
2369
|
+
/**
|
|
2370
|
+
* 子网名称
|
|
2371
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2372
|
+
*/
|
|
2373
|
+
SubnetId?: string
|
|
2374
|
+
/**
|
|
2375
|
+
* 付费类型,"hour", "prepay"
|
|
2376
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2377
|
+
*/
|
|
2378
|
+
PayMode?: string
|
|
2379
|
+
/**
|
|
2380
|
+
* 创建时间
|
|
2381
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2382
|
+
*/
|
|
2383
|
+
CreateTime?: string
|
|
2384
|
+
/**
|
|
2385
|
+
* 过期时间
|
|
2386
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2387
|
+
*/
|
|
2388
|
+
ExpireTime?: string
|
|
2389
|
+
/**
|
|
2390
|
+
* 数据节点描述信息
|
|
2391
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2392
|
+
*/
|
|
2393
|
+
MasterSummary?: NodesSummary
|
|
2394
|
+
/**
|
|
2395
|
+
* zookeeper节点描述信息
|
|
2396
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2397
|
+
*/
|
|
2398
|
+
CoreSummary?: NodesSummary
|
|
2399
|
+
/**
|
|
2400
|
+
* 高可用,“true" "false"
|
|
2401
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2402
|
+
*/
|
|
2403
|
+
HA?: string
|
|
2404
|
+
/**
|
|
2405
|
+
* 高可用类型:
|
|
2406
|
+
0:非高可用
|
|
2407
|
+
1:读高可用
|
|
690
2408
|
2:读写高可用。
|
|
691
2409
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
692
2410
|
*/
|
|
693
|
-
HaType?: number
|
|
2411
|
+
HaType?: number
|
|
2412
|
+
/**
|
|
2413
|
+
* 访问地址,例如 "10.0.0.1:9000"
|
|
2414
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2415
|
+
*/
|
|
2416
|
+
AccessInfo?: string
|
|
2417
|
+
/**
|
|
2418
|
+
* 记录ID,数值型
|
|
2419
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2420
|
+
*/
|
|
2421
|
+
Id?: number
|
|
2422
|
+
/**
|
|
2423
|
+
* regionId, 表示地域
|
|
2424
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2425
|
+
*/
|
|
2426
|
+
RegionId?: number
|
|
2427
|
+
/**
|
|
2428
|
+
* 可用区说明,例如 "广州二区"
|
|
2429
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2430
|
+
*/
|
|
2431
|
+
ZoneDesc?: string
|
|
2432
|
+
/**
|
|
2433
|
+
* 错误流程说明信息
|
|
2434
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2435
|
+
*/
|
|
2436
|
+
FlowMsg?: string
|
|
2437
|
+
/**
|
|
2438
|
+
* 状态描述,例如“运行中”等
|
|
2439
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2440
|
+
*/
|
|
2441
|
+
StatusDesc?: string
|
|
2442
|
+
/**
|
|
2443
|
+
* 自动续费标记
|
|
2444
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2445
|
+
*/
|
|
2446
|
+
RenewFlag?: boolean
|
|
2447
|
+
/**
|
|
2448
|
+
* 标签列表
|
|
2449
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2450
|
+
*/
|
|
2451
|
+
Tags?: Array<Tag>
|
|
2452
|
+
/**
|
|
2453
|
+
* 监控信息
|
|
2454
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2455
|
+
*/
|
|
2456
|
+
Monitor?: string
|
|
2457
|
+
/**
|
|
2458
|
+
* 是否开通日志
|
|
2459
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2460
|
+
*/
|
|
2461
|
+
HasClsTopic?: boolean
|
|
2462
|
+
/**
|
|
2463
|
+
* 日志主题ID
|
|
2464
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2465
|
+
*/
|
|
2466
|
+
ClsTopicId?: string
|
|
2467
|
+
/**
|
|
2468
|
+
* 日志集ID
|
|
2469
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2470
|
+
*/
|
|
2471
|
+
ClsLogSetId?: string
|
|
2472
|
+
/**
|
|
2473
|
+
* 是否支持xml配置管理
|
|
2474
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2475
|
+
*/
|
|
2476
|
+
EnableXMLConfig?: number
|
|
2477
|
+
/**
|
|
2478
|
+
* 区域
|
|
2479
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2480
|
+
*/
|
|
2481
|
+
RegionDesc?: string
|
|
2482
|
+
/**
|
|
2483
|
+
* 弹性网卡地址
|
|
2484
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2485
|
+
*/
|
|
2486
|
+
Eip?: string
|
|
2487
|
+
/**
|
|
2488
|
+
* 冷热分层系数
|
|
2489
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2490
|
+
*/
|
|
2491
|
+
CosMoveFactor?: number
|
|
2492
|
+
/**
|
|
2493
|
+
* external/local/yunti
|
|
2494
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2495
|
+
*/
|
|
2496
|
+
Kind?: string
|
|
2497
|
+
/**
|
|
2498
|
+
* cos桶
|
|
2499
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2500
|
+
*/
|
|
2501
|
+
CosBucketName?: string
|
|
2502
|
+
/**
|
|
2503
|
+
* cbs
|
|
2504
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2505
|
+
*/
|
|
2506
|
+
CanAttachCbs?: boolean
|
|
2507
|
+
/**
|
|
2508
|
+
* 小版本
|
|
2509
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2510
|
+
*/
|
|
2511
|
+
BuildVersion?: string
|
|
2512
|
+
/**
|
|
2513
|
+
* 组件信息
|
|
2514
|
+
注:这里返回类型实际为map[string]struct类型,并非显示的string类型,可以参考“示例值”进行数据的解析。
|
|
2515
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2516
|
+
*/
|
|
2517
|
+
Components?: string
|
|
2518
|
+
/**
|
|
2519
|
+
* 判断审计日志表是否有catalog字段
|
|
2520
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2521
|
+
* @deprecated
|
|
2522
|
+
*/
|
|
2523
|
+
IfExistCatalog?: number
|
|
2524
|
+
/**
|
|
2525
|
+
* 页面特性,用于前端屏蔽一些页面入口
|
|
2526
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2527
|
+
*/
|
|
2528
|
+
Characteristic?: Array<string>
|
|
2529
|
+
/**
|
|
2530
|
+
* 超时时间 单位s
|
|
2531
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2532
|
+
*/
|
|
2533
|
+
RestartTimeout?: string
|
|
2534
|
+
/**
|
|
2535
|
+
* 内核优雅重启超时时间,如果为-1说明未设置
|
|
2536
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2537
|
+
*/
|
|
2538
|
+
GraceShutdownWaitSeconds?: string
|
|
2539
|
+
/**
|
|
2540
|
+
* 表名大小写是否敏感,0:敏感;1:不敏感,以小写进行比较;2:不敏感,表名改为以小写存储
|
|
2541
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2542
|
+
*/
|
|
2543
|
+
CaseSensitive?: number
|
|
2544
|
+
/**
|
|
2545
|
+
* 用户是否可以绑定安全组
|
|
2546
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2547
|
+
*/
|
|
2548
|
+
IsWhiteSGs?: boolean
|
|
2549
|
+
/**
|
|
2550
|
+
* 已绑定的安全组信息
|
|
2551
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2552
|
+
*/
|
|
2553
|
+
BindSGs?: Array<string>
|
|
2554
|
+
/**
|
|
2555
|
+
* 是否为多可用区
|
|
2556
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2557
|
+
*/
|
|
2558
|
+
EnableMultiZones?: boolean
|
|
2559
|
+
/**
|
|
2560
|
+
* 用户可用区和子网信息
|
|
2561
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2562
|
+
*/
|
|
2563
|
+
UserNetworkInfos?: string
|
|
2564
|
+
/**
|
|
2565
|
+
* 是否启用冷热分层。0:未开启 1:已开启
|
|
2566
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2567
|
+
*/
|
|
2568
|
+
EnableCoolDown?: number
|
|
2569
|
+
/**
|
|
2570
|
+
* 冷热分层使用COS桶
|
|
2571
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2572
|
+
*/
|
|
2573
|
+
CoolDownBucket?: string
|
|
2574
|
+
/**
|
|
2575
|
+
* 实例扩展信息
|
|
2576
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2577
|
+
*/
|
|
2578
|
+
Details?: InstanceDetail
|
|
2579
|
+
}
|
|
2580
|
+
|
|
2581
|
+
/**
|
|
2582
|
+
* DescribeUserBindWorkloadGroup请求参数结构体
|
|
2583
|
+
*/
|
|
2584
|
+
export interface DescribeUserBindWorkloadGroupRequest {
|
|
2585
|
+
/**
|
|
2586
|
+
* 集群id
|
|
2587
|
+
*/
|
|
2588
|
+
InstanceId?: string
|
|
2589
|
+
}
|
|
2590
|
+
|
|
2591
|
+
/**
|
|
2592
|
+
* DescribeInstances请求参数结构体
|
|
2593
|
+
*/
|
|
2594
|
+
export interface DescribeInstancesRequest {
|
|
2595
|
+
/**
|
|
2596
|
+
* 搜索的集群id名称
|
|
2597
|
+
*/
|
|
2598
|
+
SearchInstanceId?: string
|
|
2599
|
+
/**
|
|
2600
|
+
* 搜索的集群name
|
|
2601
|
+
*/
|
|
2602
|
+
SearchInstanceName?: string
|
|
2603
|
+
/**
|
|
2604
|
+
* 分页参数,第一页为0,第二页为10
|
|
2605
|
+
*/
|
|
2606
|
+
Offset?: number
|
|
2607
|
+
/**
|
|
2608
|
+
* 分页参数,分页步长,默认为10
|
|
2609
|
+
*/
|
|
2610
|
+
Limit?: number
|
|
2611
|
+
/**
|
|
2612
|
+
* 搜索标签列表
|
|
2613
|
+
*/
|
|
2614
|
+
SearchTags?: Array<SearchTags>
|
|
2615
|
+
}
|
|
2616
|
+
|
|
2617
|
+
/**
|
|
2618
|
+
* DescribeBackUpSchedules请求参数结构体
|
|
2619
|
+
*/
|
|
2620
|
+
export type DescribeBackUpSchedulesRequest = null
|
|
2621
|
+
|
|
2622
|
+
/**
|
|
2623
|
+
* DescribeClusterConfigs请求参数结构体
|
|
2624
|
+
*/
|
|
2625
|
+
export interface DescribeClusterConfigsRequest {
|
|
2626
|
+
/**
|
|
2627
|
+
* 集群实例ID
|
|
2628
|
+
*/
|
|
2629
|
+
InstanceId: string
|
|
2630
|
+
/**
|
|
2631
|
+
* 0 公有云查询;1青鹅查询,青鹅查询显示所有需要展示的
|
|
2632
|
+
*/
|
|
2633
|
+
ConfigType?: number
|
|
2634
|
+
/**
|
|
2635
|
+
* 模糊搜索关键字文件
|
|
2636
|
+
*/
|
|
2637
|
+
FileName?: string
|
|
2638
|
+
/**
|
|
2639
|
+
* 0集群维度 1节点维度
|
|
2640
|
+
*/
|
|
2641
|
+
ClusterConfigType?: number
|
|
2642
|
+
/**
|
|
2643
|
+
* eth0的ip地址
|
|
2644
|
+
*/
|
|
2645
|
+
IPAddress?: string
|
|
2646
|
+
}
|
|
2647
|
+
|
|
2648
|
+
/**
|
|
2649
|
+
* ModifyWorkloadGroup返回参数结构体
|
|
2650
|
+
*/
|
|
2651
|
+
export interface ModifyWorkloadGroupResponse {
|
|
2652
|
+
/**
|
|
2653
|
+
* 错误信息
|
|
2654
|
+
*/
|
|
2655
|
+
ErrorMsg?: string
|
|
2656
|
+
/**
|
|
2657
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2658
|
+
*/
|
|
2659
|
+
RequestId?: string
|
|
2660
|
+
}
|
|
2661
|
+
|
|
2662
|
+
/**
|
|
2663
|
+
* DescribeRestoreTaskDetail请求参数结构体
|
|
2664
|
+
*/
|
|
2665
|
+
export interface DescribeRestoreTaskDetailRequest {
|
|
2666
|
+
/**
|
|
2667
|
+
* 集群id
|
|
2668
|
+
*/
|
|
2669
|
+
InstanceId: string
|
|
2670
|
+
/**
|
|
2671
|
+
* 任务id
|
|
2672
|
+
*/
|
|
2673
|
+
BackUpJobId: number
|
|
2674
|
+
}
|
|
2675
|
+
|
|
2676
|
+
/**
|
|
2677
|
+
* ModifyUserPrivilegesV3请求参数结构体
|
|
2678
|
+
*/
|
|
2679
|
+
export interface ModifyUserPrivilegesV3Request {
|
|
2680
|
+
/**
|
|
2681
|
+
* 集群id
|
|
2682
|
+
*/
|
|
2683
|
+
InstanceId: string
|
|
2684
|
+
/**
|
|
2685
|
+
* 用户名
|
|
2686
|
+
*/
|
|
2687
|
+
UserName: string
|
|
2688
|
+
/**
|
|
2689
|
+
* 用户权限
|
|
2690
|
+
*/
|
|
2691
|
+
UserPrivileges: UpdateUserPrivileges
|
|
2692
|
+
/**
|
|
2693
|
+
* 用户链接来自的 IP
|
|
2694
|
+
*/
|
|
2695
|
+
WhiteHost?: string
|
|
2696
|
+
}
|
|
2697
|
+
|
|
2698
|
+
/**
|
|
2699
|
+
* CreateBackUpSchedule返回参数结构体
|
|
2700
|
+
*/
|
|
2701
|
+
export interface CreateBackUpScheduleResponse {
|
|
2702
|
+
/**
|
|
2703
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2704
|
+
*/
|
|
2705
|
+
RequestId?: string
|
|
2706
|
+
}
|
|
2707
|
+
|
|
2708
|
+
/**
|
|
2709
|
+
* ModifyNodeStatus返回参数结构体
|
|
2710
|
+
*/
|
|
2711
|
+
export interface ModifyNodeStatusResponse {
|
|
2712
|
+
/**
|
|
2713
|
+
* 流程相关信息
|
|
2714
|
+
*/
|
|
2715
|
+
FlowId?: number
|
|
2716
|
+
/**
|
|
2717
|
+
* 错误信息
|
|
2718
|
+
*/
|
|
2719
|
+
ErrorMsg?: string
|
|
2720
|
+
/**
|
|
2721
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2722
|
+
*/
|
|
2723
|
+
RequestId?: string
|
|
2724
|
+
}
|
|
2725
|
+
|
|
2726
|
+
/**
|
|
2727
|
+
* DescribeInstance返回参数结构体
|
|
2728
|
+
*/
|
|
2729
|
+
export interface DescribeInstanceResponse {
|
|
2730
|
+
/**
|
|
2731
|
+
* 实例描述信息
|
|
2732
|
+
*/
|
|
2733
|
+
InstanceInfo?: InstanceInfo
|
|
2734
|
+
/**
|
|
2735
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2736
|
+
*/
|
|
2737
|
+
RequestId?: string
|
|
2738
|
+
}
|
|
2739
|
+
|
|
2740
|
+
/**
|
|
2741
|
+
* DescribeBackUpJob返回参数结构体
|
|
2742
|
+
*/
|
|
2743
|
+
export interface DescribeBackUpJobResponse {
|
|
2744
|
+
/**
|
|
2745
|
+
* 任务列表
|
|
2746
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2747
|
+
*/
|
|
2748
|
+
BackUpJobs?: Array<BackUpJobDisplay>
|
|
2749
|
+
/**
|
|
2750
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2751
|
+
*/
|
|
2752
|
+
RequestId?: string
|
|
2753
|
+
}
|
|
2754
|
+
|
|
2755
|
+
/**
|
|
2756
|
+
* FitClsLog返回参数结构体
|
|
2757
|
+
*/
|
|
2758
|
+
export interface FitClsLogResponse {
|
|
2759
|
+
/**
|
|
2760
|
+
* 流程相关信息
|
|
2761
|
+
*/
|
|
2762
|
+
FlowId?: number
|
|
2763
|
+
/**
|
|
2764
|
+
* 错误信息
|
|
2765
|
+
*/
|
|
2766
|
+
ErrorMsg?: string
|
|
2767
|
+
/**
|
|
2768
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2769
|
+
*/
|
|
2770
|
+
RequestId?: string
|
|
2771
|
+
}
|
|
2772
|
+
|
|
2773
|
+
/**
|
|
2774
|
+
* RestartClusterForNode请求参数结构体
|
|
2775
|
+
*/
|
|
2776
|
+
export interface RestartClusterForNodeRequest {
|
|
2777
|
+
/**
|
|
2778
|
+
* 集群ID,例如cdwch-xxxx
|
|
2779
|
+
*/
|
|
2780
|
+
InstanceId: string
|
|
2781
|
+
/**
|
|
2782
|
+
* 配置文件名称
|
|
2783
|
+
*/
|
|
2784
|
+
ConfigName: string
|
|
2785
|
+
/**
|
|
2786
|
+
* 每次重启的批次
|
|
2787
|
+
*/
|
|
2788
|
+
BatchSize?: number
|
|
2789
|
+
/**
|
|
2790
|
+
* 重启节点
|
|
2791
|
+
*/
|
|
2792
|
+
NodeList?: Array<string>
|
|
2793
|
+
/**
|
|
2794
|
+
* false表示非滚动重启,true表示滚动重启
|
|
2795
|
+
*/
|
|
2796
|
+
RollingRestart?: boolean
|
|
2797
|
+
}
|
|
2798
|
+
|
|
2799
|
+
/**
|
|
2800
|
+
* 备份任务的进度详情
|
|
2801
|
+
*/
|
|
2802
|
+
export interface BackupStatus {
|
|
2803
|
+
/**
|
|
2804
|
+
* 备份任务id
|
|
2805
|
+
*/
|
|
2806
|
+
JobId?: number
|
|
2807
|
+
/**
|
|
2808
|
+
* 快照名称
|
|
2809
|
+
*/
|
|
2810
|
+
SnapshotName?: string
|
|
2811
|
+
/**
|
|
2812
|
+
* 库名
|
|
2813
|
+
*/
|
|
2814
|
+
DbName?: string
|
|
2815
|
+
/**
|
|
2816
|
+
* 状态
|
|
2817
|
+
*/
|
|
2818
|
+
State?: string
|
|
2819
|
+
/**
|
|
2820
|
+
* 备份对象
|
|
2821
|
+
*/
|
|
2822
|
+
BackupObjects?: string
|
|
2823
|
+
/**
|
|
2824
|
+
* 创建时间
|
|
2825
|
+
*/
|
|
2826
|
+
CreateTime?: string
|
|
2827
|
+
/**
|
|
2828
|
+
* 快照结束时间
|
|
2829
|
+
*/
|
|
2830
|
+
SnapshotFinishedTime?: string
|
|
2831
|
+
/**
|
|
2832
|
+
* 上传结束时间
|
|
2833
|
+
*/
|
|
2834
|
+
UploadFinishedTime?: string
|
|
2835
|
+
/**
|
|
2836
|
+
* 结束时间
|
|
2837
|
+
*/
|
|
2838
|
+
FinishedTime?: string
|
|
2839
|
+
/**
|
|
2840
|
+
* 未完成任务
|
|
2841
|
+
*/
|
|
2842
|
+
UnfinishedTasks?: string
|
|
2843
|
+
/**
|
|
2844
|
+
* 进度
|
|
2845
|
+
*/
|
|
2846
|
+
Progress?: string
|
|
2847
|
+
/**
|
|
2848
|
+
* 错误信息
|
|
2849
|
+
*/
|
|
2850
|
+
TaskErrMsg?: string
|
|
2851
|
+
/**
|
|
2852
|
+
* 状态
|
|
2853
|
+
*/
|
|
2854
|
+
Status?: string
|
|
2855
|
+
/**
|
|
2856
|
+
* 超时信息
|
|
2857
|
+
*/
|
|
2858
|
+
Timeout?: number
|
|
2859
|
+
/**
|
|
2860
|
+
* 备份实例id
|
|
2861
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2862
|
+
*/
|
|
2863
|
+
BackupJobId?: number
|
|
2864
|
+
/**
|
|
2865
|
+
* 实例对应snapshoit的id
|
|
2866
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2867
|
+
*/
|
|
2868
|
+
TaskId?: number
|
|
2869
|
+
}
|
|
2870
|
+
|
|
2871
|
+
/**
|
|
2872
|
+
* 列表页搜索的标记列表
|
|
2873
|
+
*/
|
|
2874
|
+
export interface SearchTags {
|
|
2875
|
+
/**
|
|
2876
|
+
* 标签的键
|
|
2877
|
+
*/
|
|
2878
|
+
TagKey?: string
|
|
2879
|
+
/**
|
|
2880
|
+
* 标签的值
|
|
2881
|
+
*/
|
|
2882
|
+
TagValue?: string
|
|
2883
|
+
/**
|
|
2884
|
+
* 1表示只输入标签的键,没有输入值;0表示输入键时且输入值
|
|
2885
|
+
*/
|
|
2886
|
+
AllValue?: number
|
|
2887
|
+
}
|
|
2888
|
+
|
|
2889
|
+
/**
|
|
2890
|
+
* DescribeInstances返回参数结构体
|
|
2891
|
+
*/
|
|
2892
|
+
export interface DescribeInstancesResponse {
|
|
2893
|
+
/**
|
|
2894
|
+
* 实例总数
|
|
2895
|
+
*/
|
|
2896
|
+
TotalCount?: number
|
|
2897
|
+
/**
|
|
2898
|
+
* 实例数组
|
|
2899
|
+
*/
|
|
2900
|
+
InstancesList?: Array<InstanceInfo>
|
|
2901
|
+
/**
|
|
2902
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2903
|
+
*/
|
|
2904
|
+
RequestId?: string
|
|
2905
|
+
}
|
|
2906
|
+
|
|
2907
|
+
/**
|
|
2908
|
+
* DescribeInstanceUsedSubnets请求参数结构体
|
|
2909
|
+
*/
|
|
2910
|
+
export interface DescribeInstanceUsedSubnetsRequest {
|
|
2911
|
+
/**
|
|
2912
|
+
* 集群id
|
|
2913
|
+
*/
|
|
2914
|
+
InstanceId: string
|
|
2915
|
+
}
|
|
2916
|
+
|
|
2917
|
+
/**
|
|
2918
|
+
* 额外参数
|
|
2919
|
+
*/
|
|
2920
|
+
export interface SpecExtra {
|
|
2921
|
+
/**
|
|
2922
|
+
* 要删除的shards
|
|
2923
|
+
* @deprecated
|
|
2924
|
+
*/
|
|
2925
|
+
DelShards?: string
|
|
2926
|
+
/**
|
|
2927
|
+
* 要删除的节点uip
|
|
2928
|
+
*/
|
|
2929
|
+
DelHosts?: string
|
|
2930
|
+
}
|
|
2931
|
+
|
|
2932
|
+
/**
|
|
2933
|
+
* DescribeDatabaseAuditRecords请求参数结构体
|
|
2934
|
+
*/
|
|
2935
|
+
export interface DescribeDatabaseAuditRecordsRequest {
|
|
2936
|
+
/**
|
|
2937
|
+
* 实例ID
|
|
2938
|
+
*/
|
|
2939
|
+
InstanceId: string
|
|
2940
|
+
/**
|
|
2941
|
+
* 开始时间
|
|
2942
|
+
*/
|
|
2943
|
+
StartTime: string
|
|
2944
|
+
/**
|
|
2945
|
+
* 结束时间
|
|
2946
|
+
*/
|
|
2947
|
+
EndTime: string
|
|
2948
|
+
/**
|
|
2949
|
+
* 分页
|
|
2950
|
+
*/
|
|
2951
|
+
PageSize: number
|
|
2952
|
+
/**
|
|
2953
|
+
* 分页
|
|
2954
|
+
*/
|
|
2955
|
+
PageNum: number
|
|
2956
|
+
/**
|
|
2957
|
+
* 排序参数
|
|
2958
|
+
*/
|
|
2959
|
+
OrderType?: string
|
|
2960
|
+
/**
|
|
2961
|
+
* 用户
|
|
2962
|
+
*/
|
|
2963
|
+
User?: string
|
|
2964
|
+
/**
|
|
2965
|
+
* 数据库
|
|
2966
|
+
*/
|
|
2967
|
+
DbName?: string
|
|
2968
|
+
/**
|
|
2969
|
+
* sql类型
|
|
2970
|
+
*/
|
|
2971
|
+
SqlType?: string
|
|
2972
|
+
/**
|
|
2973
|
+
* sql语句
|
|
2974
|
+
*/
|
|
2975
|
+
Sql?: string
|
|
2976
|
+
/**
|
|
2977
|
+
* 用户 (多选)
|
|
2978
|
+
*/
|
|
2979
|
+
Users?: Array<string>
|
|
2980
|
+
/**
|
|
2981
|
+
* 数据库 (多选)
|
|
2982
|
+
*/
|
|
2983
|
+
DbNames?: Array<string>
|
|
2984
|
+
/**
|
|
2985
|
+
* sql类型 (多选)
|
|
2986
|
+
*/
|
|
2987
|
+
SqlTypes?: Array<string>
|
|
2988
|
+
/**
|
|
2989
|
+
* catalog名称(多选)
|
|
2990
|
+
*/
|
|
2991
|
+
Catalogs?: Array<string>
|
|
2992
|
+
}
|
|
2993
|
+
|
|
2994
|
+
/**
|
|
2995
|
+
* doris监控指标关注(取消关注)功能入参
|
|
2996
|
+
*/
|
|
2997
|
+
export interface ModifyMetricFileStructNew {
|
|
2998
|
+
/**
|
|
2999
|
+
* 集群类型
|
|
3000
|
+
*/
|
|
3001
|
+
InstanceType?: string
|
|
3002
|
+
/**
|
|
3003
|
+
* 指标类型
|
|
3004
|
+
*/
|
|
3005
|
+
MetricType?: string
|
|
3006
|
+
/**
|
|
3007
|
+
* 指标英文名
|
|
3008
|
+
*/
|
|
3009
|
+
Name?: string
|
|
3010
|
+
/**
|
|
3011
|
+
* 1:关注
|
|
3012
|
+
0:取消关注
|
|
3013
|
+
*/
|
|
3014
|
+
IfAttention?: number
|
|
3015
|
+
}
|
|
3016
|
+
|
|
3017
|
+
/**
|
|
3018
|
+
* DescribeBackUpJobDetail返回参数结构体
|
|
3019
|
+
*/
|
|
3020
|
+
export interface DescribeBackUpJobDetailResponse {
|
|
3021
|
+
/**
|
|
3022
|
+
* 备份表详情
|
|
3023
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3024
|
+
*/
|
|
3025
|
+
TableContents: Array<BackupTableContent>
|
|
3026
|
+
/**
|
|
3027
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3028
|
+
*/
|
|
3029
|
+
RequestId?: string
|
|
3030
|
+
}
|
|
3031
|
+
|
|
3032
|
+
/**
|
|
3033
|
+
* DescribeBackUpJobDetail请求参数结构体
|
|
3034
|
+
*/
|
|
3035
|
+
export interface DescribeBackUpJobDetailRequest {
|
|
3036
|
+
/**
|
|
3037
|
+
* 集群id
|
|
3038
|
+
*/
|
|
3039
|
+
InstanceId: string
|
|
694
3040
|
/**
|
|
695
|
-
*
|
|
696
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3041
|
+
* 任务id
|
|
697
3042
|
*/
|
|
698
|
-
|
|
3043
|
+
BackUpJobId: number
|
|
3044
|
+
}
|
|
3045
|
+
|
|
3046
|
+
/**
|
|
3047
|
+
* DescribeWorkloadGroup返回参数结构体
|
|
3048
|
+
*/
|
|
3049
|
+
export interface DescribeWorkloadGroupResponse {
|
|
699
3050
|
/**
|
|
700
|
-
*
|
|
701
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3051
|
+
* 资源组信息
|
|
702
3052
|
*/
|
|
703
|
-
|
|
3053
|
+
WorkloadGroups?: Array<WorkloadGroupConfig>
|
|
704
3054
|
/**
|
|
705
|
-
*
|
|
706
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3055
|
+
* 是否开启资源组:开启-open、关闭-close
|
|
707
3056
|
*/
|
|
708
|
-
|
|
3057
|
+
Status?: string
|
|
709
3058
|
/**
|
|
710
|
-
*
|
|
711
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3059
|
+
* 错误信息
|
|
712
3060
|
*/
|
|
713
|
-
|
|
3061
|
+
ErrorMsg?: string
|
|
714
3062
|
/**
|
|
715
|
-
*
|
|
716
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3063
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
717
3064
|
*/
|
|
718
|
-
|
|
3065
|
+
RequestId?: string
|
|
3066
|
+
}
|
|
3067
|
+
|
|
3068
|
+
/**
|
|
3069
|
+
* 用户是否关注监控指标入参
|
|
3070
|
+
*/
|
|
3071
|
+
export interface ModifyMetricFileStruct {
|
|
719
3072
|
/**
|
|
720
|
-
*
|
|
721
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3073
|
+
* 唯一id
|
|
722
3074
|
*/
|
|
723
|
-
|
|
3075
|
+
Id: number
|
|
724
3076
|
/**
|
|
725
|
-
*
|
|
726
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3077
|
+
* 是否关注
|
|
727
3078
|
*/
|
|
728
|
-
|
|
3079
|
+
IfAttention?: string
|
|
3080
|
+
}
|
|
3081
|
+
|
|
3082
|
+
/**
|
|
3083
|
+
* DescribeInstance请求参数结构体
|
|
3084
|
+
*/
|
|
3085
|
+
export interface DescribeInstanceRequest {
|
|
729
3086
|
/**
|
|
730
|
-
*
|
|
731
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3087
|
+
* 集群实例ID
|
|
732
3088
|
*/
|
|
733
|
-
|
|
3089
|
+
InstanceId: string
|
|
3090
|
+
}
|
|
3091
|
+
|
|
3092
|
+
/**
|
|
3093
|
+
* DescribeBackUpTaskDetail返回参数结构体
|
|
3094
|
+
*/
|
|
3095
|
+
export interface DescribeBackUpTaskDetailResponse {
|
|
734
3096
|
/**
|
|
735
|
-
*
|
|
3097
|
+
* 备份任务进度详情
|
|
736
3098
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
737
3099
|
*/
|
|
738
|
-
|
|
3100
|
+
BackupStatus: Array<BackupStatus>
|
|
739
3101
|
/**
|
|
740
|
-
*
|
|
3102
|
+
* 错误信息
|
|
741
3103
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
742
3104
|
*/
|
|
743
|
-
|
|
3105
|
+
ErrorMsg: string
|
|
744
3106
|
/**
|
|
745
|
-
*
|
|
746
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3107
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
747
3108
|
*/
|
|
748
|
-
|
|
3109
|
+
RequestId?: string
|
|
3110
|
+
}
|
|
3111
|
+
|
|
3112
|
+
/**
|
|
3113
|
+
* ReduceInstance请求参数结构体
|
|
3114
|
+
*/
|
|
3115
|
+
export interface ReduceInstanceRequest {
|
|
749
3116
|
/**
|
|
750
|
-
*
|
|
751
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3117
|
+
* 集群ID
|
|
752
3118
|
*/
|
|
753
|
-
|
|
3119
|
+
InstanceId: string
|
|
754
3120
|
/**
|
|
755
|
-
*
|
|
756
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3121
|
+
* 节点列表
|
|
757
3122
|
*/
|
|
758
|
-
|
|
3123
|
+
DelHosts: Array<string>
|
|
759
3124
|
/**
|
|
760
|
-
*
|
|
761
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3125
|
+
* 角色(MATER/CORE),MASTER 对应 FE,CORE对应BE
|
|
762
3126
|
*/
|
|
763
|
-
|
|
3127
|
+
Type: string
|
|
764
3128
|
/**
|
|
765
|
-
*
|
|
766
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3129
|
+
* 缩容后集群高可用类型:0:非高可用,1:读高可用,2:读写高可用。
|
|
767
3130
|
*/
|
|
768
|
-
|
|
3131
|
+
HaType: number
|
|
3132
|
+
}
|
|
3133
|
+
|
|
3134
|
+
/**
|
|
3135
|
+
* DeleteWorkloadGroup返回参数结构体
|
|
3136
|
+
*/
|
|
3137
|
+
export interface DeleteWorkloadGroupResponse {
|
|
769
3138
|
/**
|
|
770
|
-
*
|
|
771
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3139
|
+
* 错误信息
|
|
772
3140
|
*/
|
|
773
|
-
|
|
3141
|
+
ErrorMsg?: string
|
|
774
3142
|
/**
|
|
775
|
-
*
|
|
776
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3143
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
777
3144
|
*/
|
|
778
|
-
|
|
3145
|
+
RequestId?: string
|
|
3146
|
+
}
|
|
3147
|
+
|
|
3148
|
+
/**
|
|
3149
|
+
* 资源规格描述信息
|
|
3150
|
+
*/
|
|
3151
|
+
export interface ResourceSpec {
|
|
779
3152
|
/**
|
|
780
|
-
*
|
|
781
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3153
|
+
* 规格名称,例如“SCH1"
|
|
782
3154
|
*/
|
|
783
|
-
|
|
3155
|
+
Name?: string
|
|
784
3156
|
/**
|
|
785
|
-
*
|
|
786
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3157
|
+
* cpu核数
|
|
787
3158
|
*/
|
|
788
|
-
|
|
3159
|
+
Cpu?: number
|
|
789
3160
|
/**
|
|
790
|
-
*
|
|
791
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3161
|
+
* 内存大小,单位G
|
|
792
3162
|
*/
|
|
793
|
-
|
|
3163
|
+
Mem?: number
|
|
794
3164
|
/**
|
|
795
|
-
*
|
|
796
|
-
注:这里返回类型实际为map[string]struct类型,并非显示的string类型,可以参考“示例值”进行数据的解析。
|
|
797
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3165
|
+
* 分类标记,STANDARD/BIGDATA/HIGHIO分别表示标准型/大数据型/高IO
|
|
798
3166
|
*/
|
|
799
|
-
|
|
3167
|
+
Type?: string
|
|
800
3168
|
/**
|
|
801
|
-
*
|
|
3169
|
+
* 系统盘描述信息
|
|
802
3170
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
803
|
-
* @deprecated
|
|
804
3171
|
*/
|
|
805
|
-
|
|
3172
|
+
SystemDisk?: DiskSpec
|
|
806
3173
|
/**
|
|
807
|
-
*
|
|
3174
|
+
* 数据盘描述信息
|
|
808
3175
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
809
3176
|
*/
|
|
810
|
-
|
|
3177
|
+
DataDisk?: DiskSpec
|
|
811
3178
|
/**
|
|
812
|
-
*
|
|
3179
|
+
* 最大节点数目限制
|
|
813
3180
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
814
3181
|
*/
|
|
815
|
-
|
|
3182
|
+
MaxNodeSize?: number
|
|
816
3183
|
/**
|
|
817
|
-
*
|
|
3184
|
+
* 是否可用,false代表售罄
|
|
818
3185
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
819
3186
|
*/
|
|
820
|
-
|
|
3187
|
+
Available?: boolean
|
|
821
3188
|
/**
|
|
822
|
-
*
|
|
3189
|
+
* 规格描述信息
|
|
823
3190
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
824
3191
|
*/
|
|
825
|
-
|
|
3192
|
+
ComputeSpecDesc?: string
|
|
826
3193
|
/**
|
|
827
|
-
*
|
|
3194
|
+
* cvm库存
|
|
828
3195
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
829
3196
|
*/
|
|
830
|
-
|
|
3197
|
+
InstanceQuota?: number
|
|
3198
|
+
}
|
|
3199
|
+
|
|
3200
|
+
/**
|
|
3201
|
+
* 用于返回XML格式的配置文件和内容以及其他配置文件有关的信息
|
|
3202
|
+
*/
|
|
3203
|
+
export interface ClusterConfigsInfoFromEMR {
|
|
831
3204
|
/**
|
|
832
|
-
*
|
|
833
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3205
|
+
* 配置文件名称
|
|
834
3206
|
*/
|
|
835
|
-
|
|
3207
|
+
FileName?: string
|
|
836
3208
|
/**
|
|
837
|
-
*
|
|
838
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3209
|
+
* 配置文件对应的相关属性信息
|
|
839
3210
|
*/
|
|
840
|
-
|
|
3211
|
+
FileConf?: string
|
|
841
3212
|
/**
|
|
842
|
-
*
|
|
843
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3213
|
+
* 配置文件对应的其他属性信息
|
|
844
3214
|
*/
|
|
845
|
-
|
|
3215
|
+
KeyConf?: string
|
|
846
3216
|
/**
|
|
847
|
-
*
|
|
3217
|
+
* 配置文件的内容,base64编码
|
|
3218
|
+
*/
|
|
3219
|
+
OriParam?: string
|
|
3220
|
+
/**
|
|
3221
|
+
* 用于表示当前配置文件是不是有过修改后没有重启,提醒用户需要重启
|
|
3222
|
+
*/
|
|
3223
|
+
NeedRestart?: number
|
|
3224
|
+
/**
|
|
3225
|
+
* 配置文件路径
|
|
848
3226
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
849
3227
|
*/
|
|
850
|
-
|
|
3228
|
+
FilePath?: string
|
|
851
3229
|
/**
|
|
852
|
-
*
|
|
3230
|
+
* 配置文件kv值
|
|
853
3231
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3232
|
+
* @deprecated
|
|
854
3233
|
*/
|
|
855
|
-
|
|
3234
|
+
FileKeyValues?: string
|
|
856
3235
|
/**
|
|
857
|
-
*
|
|
3236
|
+
* 配置文件kv值
|
|
858
3237
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
859
3238
|
*/
|
|
860
|
-
|
|
3239
|
+
FileKeyValuesNew?: Array<ConfigKeyValue>
|
|
861
3240
|
}
|
|
862
3241
|
|
|
863
3242
|
/**
|
|
864
|
-
*
|
|
3243
|
+
* RestartClusterForConfigs请求参数结构体
|
|
865
3244
|
*/
|
|
866
|
-
export interface
|
|
3245
|
+
export interface RestartClusterForConfigsRequest {
|
|
867
3246
|
/**
|
|
868
|
-
*
|
|
3247
|
+
* 集群ID,例如cdwch-xxxx
|
|
869
3248
|
*/
|
|
870
|
-
|
|
3249
|
+
InstanceId: string
|
|
871
3250
|
/**
|
|
872
|
-
*
|
|
3251
|
+
* 配置文件名称
|
|
873
3252
|
*/
|
|
874
|
-
|
|
3253
|
+
ConfigName: string
|
|
875
3254
|
/**
|
|
876
|
-
*
|
|
3255
|
+
* grace_restart为优雅滚动重启 不填默认立刻重启
|
|
877
3256
|
*/
|
|
878
|
-
|
|
3257
|
+
OperationType?: string
|
|
879
3258
|
}
|
|
880
3259
|
|
|
881
3260
|
/**
|
|
882
|
-
*
|
|
3261
|
+
* 可用区的地域大类描述
|
|
883
3262
|
*/
|
|
884
|
-
export interface
|
|
885
|
-
/**
|
|
886
|
-
* 搜索的集群id名称
|
|
887
|
-
*/
|
|
888
|
-
SearchInstanceId?: string
|
|
3263
|
+
export interface RegionAreaInfo {
|
|
889
3264
|
/**
|
|
890
|
-
*
|
|
891
|
-
*/
|
|
892
|
-
SearchInstanceName?: string
|
|
893
|
-
/**
|
|
894
|
-
* 分页参数,第一页为0,第二页为10
|
|
3265
|
+
* 大类地域信息,如"south_china", "east_china"等
|
|
895
3266
|
*/
|
|
896
|
-
|
|
3267
|
+
Name: string
|
|
897
3268
|
/**
|
|
898
|
-
*
|
|
3269
|
+
* 对应Name的描述,例如“华南地区”,“华东地区”等
|
|
899
3270
|
*/
|
|
900
|
-
|
|
3271
|
+
Desc: string
|
|
901
3272
|
/**
|
|
902
|
-
*
|
|
3273
|
+
* 具体地域列表1
|
|
903
3274
|
*/
|
|
904
|
-
|
|
3275
|
+
Regions: Array<RegionInfo>
|
|
905
3276
|
}
|
|
906
3277
|
|
|
907
3278
|
/**
|
|
908
|
-
*
|
|
3279
|
+
* DestroyInstance请求参数结构体
|
|
909
3280
|
*/
|
|
910
|
-
export interface
|
|
3281
|
+
export interface DestroyInstanceRequest {
|
|
911
3282
|
/**
|
|
912
|
-
*
|
|
3283
|
+
* 集群ID
|
|
913
3284
|
*/
|
|
914
3285
|
InstanceId: string
|
|
3286
|
+
}
|
|
3287
|
+
|
|
3288
|
+
/**
|
|
3289
|
+
* 地域描述信息
|
|
3290
|
+
*/
|
|
3291
|
+
export interface RegionInfo {
|
|
915
3292
|
/**
|
|
916
|
-
*
|
|
917
|
-
*/
|
|
918
|
-
QueryDurationMs: number
|
|
919
|
-
/**
|
|
920
|
-
* 开始时间
|
|
921
|
-
*/
|
|
922
|
-
StartTime: string
|
|
923
|
-
/**
|
|
924
|
-
* 结束时间
|
|
3293
|
+
* 地域名称,例如“ap-guangzhou"
|
|
925
3294
|
*/
|
|
926
|
-
|
|
3295
|
+
Name?: string
|
|
927
3296
|
/**
|
|
928
|
-
*
|
|
3297
|
+
* 地域描述,例如"广州”
|
|
929
3298
|
*/
|
|
930
|
-
|
|
3299
|
+
Desc?: string
|
|
931
3300
|
/**
|
|
932
|
-
*
|
|
3301
|
+
* 地域唯一标记
|
|
933
3302
|
*/
|
|
934
|
-
|
|
3303
|
+
RegionId?: number
|
|
935
3304
|
/**
|
|
936
|
-
*
|
|
3305
|
+
* 地域下所有可用区列表
|
|
3306
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
937
3307
|
*/
|
|
938
|
-
|
|
3308
|
+
Zones?: Array<ZoneInfo>
|
|
939
3309
|
/**
|
|
940
|
-
*
|
|
3310
|
+
* 该地域下集群数目
|
|
941
3311
|
*/
|
|
942
|
-
|
|
3312
|
+
Count?: number
|
|
943
3313
|
/**
|
|
944
|
-
*
|
|
3314
|
+
* 0代表是国际站 1代表不是
|
|
3315
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
945
3316
|
*/
|
|
946
|
-
|
|
3317
|
+
IsInternationalSite?: number
|
|
947
3318
|
/**
|
|
948
|
-
*
|
|
3319
|
+
* 桶
|
|
3320
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
949
3321
|
*/
|
|
950
|
-
|
|
3322
|
+
Bucket?: string
|
|
3323
|
+
}
|
|
3324
|
+
|
|
3325
|
+
/**
|
|
3326
|
+
* CreateWorkloadGroup返回参数结构体
|
|
3327
|
+
*/
|
|
3328
|
+
export interface CreateWorkloadGroupResponse {
|
|
951
3329
|
/**
|
|
952
|
-
*
|
|
3330
|
+
* 错误信息
|
|
953
3331
|
*/
|
|
954
|
-
|
|
3332
|
+
ErrorMsg?: string
|
|
955
3333
|
/**
|
|
956
|
-
*
|
|
3334
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
957
3335
|
*/
|
|
958
|
-
|
|
3336
|
+
RequestId?: string
|
|
3337
|
+
}
|
|
3338
|
+
|
|
3339
|
+
/**
|
|
3340
|
+
* CreateWorkloadGroup请求参数结构体
|
|
3341
|
+
*/
|
|
3342
|
+
export interface CreateWorkloadGroupRequest {
|
|
959
3343
|
/**
|
|
960
|
-
*
|
|
3344
|
+
* 集群id
|
|
961
3345
|
*/
|
|
962
|
-
|
|
3346
|
+
InstanceId: string
|
|
963
3347
|
/**
|
|
964
|
-
*
|
|
3348
|
+
* 资源组配置
|
|
965
3349
|
*/
|
|
966
|
-
|
|
3350
|
+
WorkloadGroup?: WorkloadGroupConfig
|
|
967
3351
|
}
|
|
968
3352
|
|
|
969
3353
|
/**
|
|
970
|
-
*
|
|
3354
|
+
* DescribeGoodsDetail返回参数结构体
|
|
971
3355
|
*/
|
|
972
|
-
export interface
|
|
3356
|
+
export interface DescribeGoodsDetailResponse {
|
|
973
3357
|
/**
|
|
974
|
-
*
|
|
3358
|
+
* GoodsDetail对象
|
|
975
3359
|
*/
|
|
976
|
-
|
|
3360
|
+
GoodsDetail?: string
|
|
977
3361
|
/**
|
|
978
|
-
*
|
|
3362
|
+
* GoodsCategoryId 表示操作类型
|
|
979
3363
|
*/
|
|
980
|
-
|
|
3364
|
+
GoodsCategoryId?: number
|
|
981
3365
|
/**
|
|
982
|
-
*
|
|
3366
|
+
* 子商品码
|
|
983
3367
|
*/
|
|
984
|
-
|
|
3368
|
+
Type?: string
|
|
985
3369
|
/**
|
|
986
|
-
* 0
|
|
3370
|
+
* 付费模式,0后付费,1预付费
|
|
987
3371
|
*/
|
|
988
|
-
|
|
3372
|
+
PayMode?: number
|
|
989
3373
|
/**
|
|
990
|
-
*
|
|
3374
|
+
* 地域ID
|
|
991
3375
|
*/
|
|
992
|
-
|
|
993
|
-
}
|
|
994
|
-
|
|
995
|
-
/**
|
|
996
|
-
* ResizeDisk返回参数结构体
|
|
997
|
-
*/
|
|
998
|
-
export interface ResizeDiskResponse {
|
|
3376
|
+
RegionId?: number
|
|
999
3377
|
/**
|
|
1000
|
-
*
|
|
3378
|
+
* 可用区ID
|
|
1001
3379
|
*/
|
|
1002
|
-
|
|
3380
|
+
ZoneId?: number
|
|
1003
3381
|
/**
|
|
1004
|
-
*
|
|
3382
|
+
* 资源标识符
|
|
1005
3383
|
*/
|
|
1006
|
-
|
|
3384
|
+
ResourceId?: string
|
|
1007
3385
|
/**
|
|
1008
|
-
*
|
|
3386
|
+
* 商品数目
|
|
1009
3387
|
*/
|
|
1010
|
-
|
|
3388
|
+
GoodsNum?: number
|
|
1011
3389
|
/**
|
|
1012
3390
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1013
3391
|
*/
|
|
@@ -1015,174 +3393,225 @@ export interface ResizeDiskResponse {
|
|
|
1015
3393
|
}
|
|
1016
3394
|
|
|
1017
3395
|
/**
|
|
1018
|
-
*
|
|
3396
|
+
* 恢复任务信息
|
|
1019
3397
|
*/
|
|
1020
|
-
export interface
|
|
3398
|
+
export interface RestoreStatus {
|
|
1021
3399
|
/**
|
|
1022
|
-
*
|
|
3400
|
+
* 恢复任务id
|
|
1023
3401
|
*/
|
|
1024
|
-
|
|
3402
|
+
JobId?: number
|
|
1025
3403
|
/**
|
|
1026
|
-
*
|
|
3404
|
+
* 恢复任务标签
|
|
1027
3405
|
*/
|
|
1028
|
-
|
|
3406
|
+
Label?: string
|
|
1029
3407
|
/**
|
|
1030
|
-
*
|
|
3408
|
+
* 恢复任务时间戳
|
|
1031
3409
|
*/
|
|
1032
|
-
|
|
3410
|
+
Timestamp?: string
|
|
1033
3411
|
/**
|
|
1034
|
-
*
|
|
3412
|
+
* 恢复任务所在库
|
|
1035
3413
|
*/
|
|
1036
|
-
|
|
1037
|
-
}
|
|
1038
|
-
|
|
1039
|
-
/**
|
|
1040
|
-
* 数据库审计
|
|
1041
|
-
*/
|
|
1042
|
-
export interface DataBaseAuditRecord {
|
|
3414
|
+
DbName?: string
|
|
1043
3415
|
/**
|
|
1044
|
-
*
|
|
1045
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3416
|
+
* 恢复任务状态
|
|
1046
3417
|
*/
|
|
1047
|
-
|
|
3418
|
+
State?: string
|
|
1048
3419
|
/**
|
|
1049
|
-
*
|
|
1050
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3420
|
+
* 恢复时是否允许导入
|
|
1051
3421
|
*/
|
|
1052
|
-
|
|
3422
|
+
AllowLoad?: boolean
|
|
1053
3423
|
/**
|
|
1054
|
-
*
|
|
1055
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3424
|
+
* 副本数
|
|
1056
3425
|
*/
|
|
1057
|
-
|
|
3426
|
+
ReplicationNum?: string
|
|
1058
3427
|
/**
|
|
1059
|
-
*
|
|
1060
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3428
|
+
* 副本数
|
|
1061
3429
|
*/
|
|
1062
|
-
|
|
3430
|
+
ReplicaAllocation?: string
|
|
1063
3431
|
/**
|
|
1064
|
-
*
|
|
1065
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3432
|
+
* 恢复对象
|
|
1066
3433
|
*/
|
|
1067
|
-
|
|
3434
|
+
RestoreObjects?: string
|
|
1068
3435
|
/**
|
|
1069
|
-
*
|
|
1070
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3436
|
+
* 创建时间
|
|
1071
3437
|
*/
|
|
1072
|
-
|
|
3438
|
+
CreateTime?: string
|
|
1073
3439
|
/**
|
|
1074
|
-
*
|
|
1075
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3440
|
+
* 元数据准备时间
|
|
1076
3441
|
*/
|
|
1077
|
-
|
|
3442
|
+
MetaPreparedTime?: string
|
|
1078
3443
|
/**
|
|
1079
|
-
*
|
|
1080
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3444
|
+
* 快照结束时间
|
|
1081
3445
|
*/
|
|
1082
|
-
|
|
3446
|
+
SnapshotFinishedTime?: string
|
|
1083
3447
|
/**
|
|
1084
|
-
*
|
|
1085
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3448
|
+
* 下载结束时间
|
|
1086
3449
|
*/
|
|
1087
|
-
|
|
3450
|
+
DownloadFinishedTime?: string
|
|
1088
3451
|
/**
|
|
1089
|
-
*
|
|
1090
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3452
|
+
* 结束时间
|
|
1091
3453
|
*/
|
|
1092
|
-
|
|
3454
|
+
FinishedTime?: string
|
|
1093
3455
|
/**
|
|
1094
|
-
*
|
|
1095
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3456
|
+
* 未完成任务
|
|
1096
3457
|
*/
|
|
1097
|
-
|
|
3458
|
+
UnfinishedTasks?: string
|
|
1098
3459
|
/**
|
|
1099
|
-
*
|
|
3460
|
+
* 进度
|
|
3461
|
+
*/
|
|
3462
|
+
Progress?: string
|
|
3463
|
+
/**
|
|
3464
|
+
* 错误信息
|
|
3465
|
+
*/
|
|
3466
|
+
TaskErrMsg?: string
|
|
3467
|
+
/**
|
|
3468
|
+
* 状态
|
|
3469
|
+
*/
|
|
3470
|
+
Status?: string
|
|
3471
|
+
/**
|
|
3472
|
+
* 作业超时时间
|
|
3473
|
+
*/
|
|
3474
|
+
Timeout?: number
|
|
3475
|
+
/**
|
|
3476
|
+
* 是否保持源表中的副本数
|
|
3477
|
+
*/
|
|
3478
|
+
ReserveReplica?: boolean
|
|
3479
|
+
/**
|
|
3480
|
+
* 是否保持源表中的动态分区
|
|
3481
|
+
*/
|
|
3482
|
+
ReserveDynamicPartitionEnable?: boolean
|
|
3483
|
+
/**
|
|
3484
|
+
* 备份实例id
|
|
1100
3485
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1101
3486
|
*/
|
|
1102
|
-
|
|
3487
|
+
BackupJobId?: number
|
|
1103
3488
|
/**
|
|
1104
|
-
*
|
|
3489
|
+
* 实例对应snapshot的id
|
|
1105
3490
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1106
3491
|
*/
|
|
1107
|
-
|
|
3492
|
+
TaskId?: number
|
|
1108
3493
|
}
|
|
1109
3494
|
|
|
1110
3495
|
/**
|
|
1111
|
-
*
|
|
3496
|
+
* DeleteBackUpData返回参数结构体
|
|
1112
3497
|
*/
|
|
1113
|
-
export interface
|
|
3498
|
+
export interface DeleteBackUpDataResponse {
|
|
1114
3499
|
/**
|
|
1115
|
-
*
|
|
3500
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3501
|
+
*/
|
|
3502
|
+
RequestId?: string
|
|
3503
|
+
}
|
|
3504
|
+
|
|
3505
|
+
/**
|
|
3506
|
+
* ModifyInstanceKeyValConfigs请求参数结构体
|
|
3507
|
+
*/
|
|
3508
|
+
export interface ModifyInstanceKeyValConfigsRequest {
|
|
3509
|
+
/**
|
|
3510
|
+
* 实例ID
|
|
1116
3511
|
*/
|
|
1117
3512
|
InstanceId: string
|
|
1118
3513
|
/**
|
|
1119
|
-
*
|
|
3514
|
+
* 文件名称
|
|
1120
3515
|
*/
|
|
1121
|
-
|
|
3516
|
+
FileName: string
|
|
1122
3517
|
/**
|
|
1123
|
-
*
|
|
3518
|
+
* 新增配置列表
|
|
1124
3519
|
*/
|
|
1125
|
-
|
|
3520
|
+
AddItems?: Array<InstanceConfigItem>
|
|
1126
3521
|
/**
|
|
1127
|
-
*
|
|
3522
|
+
* 更新配置列表
|
|
1128
3523
|
*/
|
|
1129
|
-
|
|
3524
|
+
UpdateItems?: Array<InstanceConfigItem>
|
|
3525
|
+
/**
|
|
3526
|
+
* 删除配置列表
|
|
3527
|
+
*/
|
|
3528
|
+
DelItems?: Array<InstanceConfigItem>
|
|
3529
|
+
/**
|
|
3530
|
+
* 备注(50字以内)
|
|
3531
|
+
*/
|
|
3532
|
+
Message?: string
|
|
3533
|
+
/**
|
|
3534
|
+
* 热更新列表
|
|
3535
|
+
*/
|
|
3536
|
+
HotUpdateItems?: Array<InstanceConfigItem>
|
|
3537
|
+
/**
|
|
3538
|
+
* 删除配置列表
|
|
3539
|
+
*/
|
|
3540
|
+
DeleteItems?: InstanceConfigItem
|
|
3541
|
+
/**
|
|
3542
|
+
* ip地址
|
|
3543
|
+
*/
|
|
3544
|
+
IPAddress?: string
|
|
1130
3545
|
}
|
|
1131
3546
|
|
|
1132
3547
|
/**
|
|
1133
|
-
*
|
|
3548
|
+
* 备份实例详情
|
|
1134
3549
|
*/
|
|
1135
|
-
export interface
|
|
3550
|
+
export interface BackUpJobDisplay {
|
|
1136
3551
|
/**
|
|
1137
|
-
*
|
|
3552
|
+
* 备份实例id
|
|
1138
3553
|
*/
|
|
1139
|
-
|
|
3554
|
+
JobId?: number
|
|
1140
3555
|
/**
|
|
1141
|
-
*
|
|
3556
|
+
* 备份实例名
|
|
1142
3557
|
*/
|
|
1143
|
-
|
|
3558
|
+
Snapshot?: string
|
|
1144
3559
|
/**
|
|
1145
|
-
*
|
|
3560
|
+
* 备份数据量
|
|
3561
|
+
*/
|
|
3562
|
+
BackUpSize?: number
|
|
3563
|
+
/**
|
|
3564
|
+
* 备份单副本数据量
|
|
1146
3565
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1147
3566
|
*/
|
|
1148
|
-
|
|
3567
|
+
BackUpSingleSize?: number
|
|
1149
3568
|
/**
|
|
1150
|
-
*
|
|
3569
|
+
* 实例创建时间
|
|
3570
|
+
*/
|
|
3571
|
+
BackUpTime?: string
|
|
3572
|
+
/**
|
|
3573
|
+
* 实例过期时间
|
|
3574
|
+
*/
|
|
3575
|
+
ExpireTime?: string
|
|
3576
|
+
/**
|
|
3577
|
+
* 实例状态
|
|
3578
|
+
*/
|
|
3579
|
+
JobStatus?: string
|
|
3580
|
+
/**
|
|
3581
|
+
* 0为默认。1时是对远端的doris进行备份,不周期,一次性
|
|
1151
3582
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1152
3583
|
*/
|
|
1153
|
-
|
|
3584
|
+
BackupType?: number
|
|
1154
3585
|
/**
|
|
1155
|
-
*
|
|
3586
|
+
* 0为默认。1时是立即备份。2时是迁移
|
|
3587
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1156
3588
|
*/
|
|
1157
|
-
|
|
1158
|
-
}
|
|
1159
|
-
|
|
1160
|
-
/**
|
|
1161
|
-
* DescribeDatabaseAuditRecords返回参数结构体
|
|
1162
|
-
*/
|
|
1163
|
-
export interface DescribeDatabaseAuditRecordsResponse {
|
|
3589
|
+
BackupTimeType?: number
|
|
1164
3590
|
/**
|
|
1165
|
-
*
|
|
3591
|
+
* 远端doris的连接信息
|
|
3592
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1166
3593
|
*/
|
|
1167
|
-
|
|
3594
|
+
DorisSourceInfo?: DorisSourceInfo
|
|
1168
3595
|
/**
|
|
1169
|
-
*
|
|
3596
|
+
* 实例状态对应的数值
|
|
3597
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1170
3598
|
*/
|
|
1171
|
-
|
|
3599
|
+
JobStatusNum?: number
|
|
1172
3600
|
/**
|
|
1173
|
-
*
|
|
3601
|
+
* 备份实例中关于cos的信息
|
|
3602
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1174
3603
|
*/
|
|
1175
|
-
|
|
3604
|
+
BackupCosInfo?: BackupCosInfo
|
|
1176
3605
|
}
|
|
1177
3606
|
|
|
1178
3607
|
/**
|
|
1179
|
-
*
|
|
3608
|
+
* ModifyUserBindWorkloadGroup返回参数结构体
|
|
1180
3609
|
*/
|
|
1181
|
-
export interface
|
|
3610
|
+
export interface ModifyUserBindWorkloadGroupResponse {
|
|
1182
3611
|
/**
|
|
1183
|
-
*
|
|
3612
|
+
* 错误信息
|
|
1184
3613
|
*/
|
|
1185
|
-
|
|
3614
|
+
ErrorMsg?: string
|
|
1186
3615
|
/**
|
|
1187
3616
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1188
3617
|
*/
|
|
@@ -1190,29 +3619,13 @@ export interface DescribeInstanceResponse {
|
|
|
1190
3619
|
}
|
|
1191
3620
|
|
|
1192
3621
|
/**
|
|
1193
|
-
*
|
|
3622
|
+
* RecoverBackUpJob返回参数结构体
|
|
1194
3623
|
*/
|
|
1195
|
-
export interface
|
|
1196
|
-
/**
|
|
1197
|
-
* 集群ID,例如cdwch-xxxx
|
|
1198
|
-
*/
|
|
1199
|
-
InstanceId: string
|
|
1200
|
-
/**
|
|
1201
|
-
* 配置文件名称
|
|
1202
|
-
*/
|
|
1203
|
-
ConfigName: string
|
|
1204
|
-
/**
|
|
1205
|
-
* 每次重启的批次
|
|
1206
|
-
*/
|
|
1207
|
-
BatchSize?: number
|
|
1208
|
-
/**
|
|
1209
|
-
* 重启节点
|
|
1210
|
-
*/
|
|
1211
|
-
NodeList?: Array<string>
|
|
3624
|
+
export interface RecoverBackUpJobResponse {
|
|
1212
3625
|
/**
|
|
1213
|
-
*
|
|
3626
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1214
3627
|
*/
|
|
1215
|
-
|
|
3628
|
+
RequestId?: string
|
|
1216
3629
|
}
|
|
1217
3630
|
|
|
1218
3631
|
/**
|
|
@@ -1233,6 +3646,16 @@ export interface ScaleUpInstanceRequest {
|
|
|
1233
3646
|
Type: string
|
|
1234
3647
|
}
|
|
1235
3648
|
|
|
3649
|
+
/**
|
|
3650
|
+
* DescribeReplicaVersion请求参数结构体
|
|
3651
|
+
*/
|
|
3652
|
+
export interface DescribeReplicaVersionRequest {
|
|
3653
|
+
/**
|
|
3654
|
+
* 实例id
|
|
3655
|
+
*/
|
|
3656
|
+
InstanceId: string
|
|
3657
|
+
}
|
|
3658
|
+
|
|
1236
3659
|
/**
|
|
1237
3660
|
* 节点角色描述信息
|
|
1238
3661
|
*/
|
|
@@ -1279,48 +3702,89 @@ export interface NodesSummary {
|
|
|
1279
3702
|
* 规格核数
|
|
1280
3703
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1281
3704
|
*/
|
|
1282
|
-
SpecCore?: number
|
|
3705
|
+
SpecCore?: number
|
|
3706
|
+
/**
|
|
3707
|
+
* 规格内存
|
|
3708
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3709
|
+
*/
|
|
3710
|
+
SpecMemory?: number
|
|
3711
|
+
/**
|
|
3712
|
+
* 磁盘大小
|
|
3713
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3714
|
+
*/
|
|
3715
|
+
DiskCount?: number
|
|
3716
|
+
/**
|
|
3717
|
+
* 是否加密
|
|
3718
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3719
|
+
*/
|
|
3720
|
+
Encrypt?: number
|
|
3721
|
+
/**
|
|
3722
|
+
* 最大磁盘
|
|
3723
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3724
|
+
*/
|
|
3725
|
+
MaxDiskSize?: number
|
|
3726
|
+
}
|
|
3727
|
+
|
|
3728
|
+
/**
|
|
3729
|
+
* DescribeDatabaseAuditDownload请求参数结构体
|
|
3730
|
+
*/
|
|
3731
|
+
export interface DescribeDatabaseAuditDownloadRequest {
|
|
3732
|
+
/**
|
|
3733
|
+
* 实例ID
|
|
3734
|
+
*/
|
|
3735
|
+
InstanceId: string
|
|
3736
|
+
/**
|
|
3737
|
+
* 开始时间
|
|
3738
|
+
*/
|
|
3739
|
+
StartTime: string
|
|
3740
|
+
/**
|
|
3741
|
+
* 结束时间
|
|
3742
|
+
*/
|
|
3743
|
+
EndTime: string
|
|
3744
|
+
/**
|
|
3745
|
+
* 分页
|
|
3746
|
+
*/
|
|
3747
|
+
PageSize: number
|
|
3748
|
+
/**
|
|
3749
|
+
* 分页
|
|
3750
|
+
*/
|
|
3751
|
+
PageNum: number
|
|
3752
|
+
/**
|
|
3753
|
+
* 排序参数
|
|
3754
|
+
*/
|
|
3755
|
+
OrderType?: string
|
|
3756
|
+
/**
|
|
3757
|
+
* 用户
|
|
3758
|
+
*/
|
|
3759
|
+
User?: string
|
|
1283
3760
|
/**
|
|
1284
|
-
*
|
|
1285
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3761
|
+
* 数据库
|
|
1286
3762
|
*/
|
|
1287
|
-
|
|
3763
|
+
DbName?: string
|
|
1288
3764
|
/**
|
|
1289
|
-
*
|
|
1290
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3765
|
+
* sql类型
|
|
1291
3766
|
*/
|
|
1292
|
-
|
|
3767
|
+
SqlType?: string
|
|
1293
3768
|
/**
|
|
1294
|
-
*
|
|
1295
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3769
|
+
* sql语句
|
|
1296
3770
|
*/
|
|
1297
|
-
|
|
3771
|
+
Sql?: string
|
|
1298
3772
|
/**
|
|
1299
|
-
*
|
|
1300
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3773
|
+
* 用户 多选
|
|
1301
3774
|
*/
|
|
1302
|
-
|
|
1303
|
-
}
|
|
1304
|
-
|
|
1305
|
-
/**
|
|
1306
|
-
* 网络信息
|
|
1307
|
-
*/
|
|
1308
|
-
export interface NetworkInfo {
|
|
3775
|
+
Users?: Array<string>
|
|
1309
3776
|
/**
|
|
1310
|
-
*
|
|
1311
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3777
|
+
* 数据库 多选
|
|
1312
3778
|
*/
|
|
1313
|
-
|
|
3779
|
+
DbNames?: Array<string>
|
|
1314
3780
|
/**
|
|
1315
|
-
*
|
|
1316
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3781
|
+
* sql类型 多选
|
|
1317
3782
|
*/
|
|
1318
|
-
|
|
3783
|
+
SqlTypes?: Array<string>
|
|
1319
3784
|
/**
|
|
1320
|
-
*
|
|
1321
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3785
|
+
* catalog名称 (多选)
|
|
1322
3786
|
*/
|
|
1323
|
-
|
|
3787
|
+
Catalogs?: Array<string>
|
|
1324
3788
|
}
|
|
1325
3789
|
|
|
1326
3790
|
/**
|
|
@@ -1342,187 +3806,184 @@ export interface CreateInstanceSpec {
|
|
|
1342
3806
|
}
|
|
1343
3807
|
|
|
1344
3808
|
/**
|
|
1345
|
-
*
|
|
3809
|
+
* DescribeFrontEnd返回参数结构体
|
|
1346
3810
|
*/
|
|
1347
|
-
export interface
|
|
1348
|
-
/**
|
|
1349
|
-
* 标签的键
|
|
1350
|
-
*/
|
|
1351
|
-
TagKey?: string
|
|
1352
|
-
/**
|
|
1353
|
-
* 标签的值
|
|
1354
|
-
*/
|
|
1355
|
-
TagValue?: string
|
|
3811
|
+
export interface DescribeFrontEndResponse {
|
|
1356
3812
|
/**
|
|
1357
|
-
*
|
|
3813
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1358
3814
|
*/
|
|
1359
|
-
|
|
3815
|
+
RequestId?: string
|
|
1360
3816
|
}
|
|
1361
3817
|
|
|
1362
3818
|
/**
|
|
1363
|
-
*
|
|
3819
|
+
* DescribeGoodsDetail请求参数结构体
|
|
1364
3820
|
*/
|
|
1365
|
-
export interface
|
|
3821
|
+
export interface DescribeGoodsDetailRequest {
|
|
1366
3822
|
/**
|
|
1367
|
-
*
|
|
3823
|
+
* 操作类型,“CREATE"表示创建、”MODIFY"表示变更配置、“RENEW"表示续费
|
|
1368
3824
|
*/
|
|
1369
|
-
|
|
1370
|
-
}
|
|
1371
|
-
|
|
1372
|
-
/**
|
|
1373
|
-
* 返回配置的文件内容(key-value)
|
|
1374
|
-
*/
|
|
1375
|
-
export interface ConfigKeyValue {
|
|
3825
|
+
Case: string
|
|
1376
3826
|
/**
|
|
1377
|
-
*
|
|
1378
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3827
|
+
* 可用区,例如"ap-guangzhou-3"表示广州三区等
|
|
1379
3828
|
*/
|
|
1380
|
-
|
|
3829
|
+
Zone?: string
|
|
1381
3830
|
/**
|
|
1382
|
-
*
|
|
1383
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3831
|
+
* 集群的高可用标记,true表示为高可用集群
|
|
1384
3832
|
*/
|
|
1385
|
-
|
|
3833
|
+
HaFlag?: boolean
|
|
1386
3834
|
/**
|
|
1387
|
-
*
|
|
1388
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3835
|
+
* 高可用类型: 0:非高可用 1:读高可用 2:读写高可用。
|
|
1389
3836
|
*/
|
|
1390
|
-
|
|
3837
|
+
HaType?: number
|
|
1391
3838
|
/**
|
|
1392
|
-
*
|
|
1393
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3839
|
+
* 用户集群的私有网络
|
|
1394
3840
|
*/
|
|
1395
|
-
|
|
3841
|
+
UserVPCId?: string
|
|
1396
3842
|
/**
|
|
1397
|
-
*
|
|
1398
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3843
|
+
* 用户集群的子网
|
|
1399
3844
|
*/
|
|
1400
|
-
|
|
1401
|
-
}
|
|
1402
|
-
|
|
1403
|
-
/**
|
|
1404
|
-
* 标签描述
|
|
1405
|
-
*/
|
|
1406
|
-
export interface Tag {
|
|
3845
|
+
UserSubnetId?: string
|
|
1407
3846
|
/**
|
|
1408
|
-
*
|
|
3847
|
+
* 用户集群的版本,例如“20.7.2.30”等
|
|
1409
3848
|
*/
|
|
1410
|
-
|
|
3849
|
+
ProductVersion?: string
|
|
1411
3850
|
/**
|
|
1412
|
-
*
|
|
3851
|
+
* 集群ID,创建时为空,其他情况必须存在
|
|
1413
3852
|
*/
|
|
1414
|
-
|
|
1415
|
-
}
|
|
1416
|
-
|
|
1417
|
-
/**
|
|
1418
|
-
* DescribeInstanceState返回参数结构体
|
|
1419
|
-
*/
|
|
1420
|
-
export interface DescribeInstanceStateResponse {
|
|
3853
|
+
InstanceId?: string
|
|
1421
3854
|
/**
|
|
1422
|
-
*
|
|
3855
|
+
* 集群资源规格描述
|
|
1423
3856
|
*/
|
|
1424
|
-
|
|
3857
|
+
Resources?: Array<ResourceNodeSpec>
|
|
1425
3858
|
/**
|
|
1426
|
-
*
|
|
1427
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3859
|
+
* 集群规格修改参数
|
|
1428
3860
|
*/
|
|
1429
|
-
|
|
3861
|
+
ModifySpec?: ResourceNodeSpec
|
|
1430
3862
|
/**
|
|
1431
|
-
*
|
|
1432
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3863
|
+
* 计费信息
|
|
1433
3864
|
*/
|
|
1434
|
-
|
|
3865
|
+
ChargeProperties?: ChargeProperties
|
|
1435
3866
|
/**
|
|
1436
|
-
*
|
|
1437
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3867
|
+
* 创建集群时需要填写InstanceName
|
|
1438
3868
|
*/
|
|
1439
|
-
|
|
3869
|
+
InstanceName?: string
|
|
1440
3870
|
/**
|
|
1441
|
-
*
|
|
1442
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3871
|
+
* 购买页填写的标签列表
|
|
1443
3872
|
*/
|
|
1444
|
-
|
|
3873
|
+
Tags?: Array<Tag>
|
|
1445
3874
|
/**
|
|
1446
|
-
*
|
|
1447
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3875
|
+
* CLS日志集ID
|
|
1448
3876
|
*/
|
|
1449
|
-
|
|
3877
|
+
ClsLogSetId?: string
|
|
1450
3878
|
/**
|
|
1451
|
-
*
|
|
3879
|
+
* 用户子网剩余ip数量
|
|
1452
3880
|
*/
|
|
1453
|
-
|
|
1454
|
-
}
|
|
1455
|
-
|
|
1456
|
-
/**
|
|
1457
|
-
* DescribeDatabaseAuditRecords请求参数结构体
|
|
1458
|
-
*/
|
|
1459
|
-
export interface DescribeDatabaseAuditRecordsRequest {
|
|
3881
|
+
UserSubnetIPNum?: number
|
|
1460
3882
|
/**
|
|
1461
|
-
*
|
|
3883
|
+
* COS桶名称
|
|
1462
3884
|
*/
|
|
1463
|
-
|
|
3885
|
+
CosBucketName?: string
|
|
1464
3886
|
/**
|
|
1465
|
-
*
|
|
3887
|
+
* 按量计费转包年包月
|
|
1466
3888
|
*/
|
|
1467
|
-
|
|
3889
|
+
HourToPrepaid?: boolean
|
|
1468
3890
|
/**
|
|
1469
|
-
*
|
|
3891
|
+
* base64密码
|
|
1470
3892
|
*/
|
|
1471
|
-
|
|
3893
|
+
DorisUserPwd?: string
|
|
1472
3894
|
/**
|
|
1473
|
-
*
|
|
3895
|
+
* 日志的类型,es或者cls_topic
|
|
1474
3896
|
*/
|
|
1475
|
-
|
|
3897
|
+
LogType?: string
|
|
1476
3898
|
/**
|
|
1477
|
-
*
|
|
3899
|
+
* 表名大小写是否敏感,0:敏感;1:不敏感,表名改为以小写存储;2:不敏感,以小写进行比较
|
|
1478
3900
|
*/
|
|
1479
|
-
|
|
3901
|
+
CaseSensitive?: number
|
|
1480
3902
|
/**
|
|
1481
|
-
*
|
|
3903
|
+
* true为滚动重启 false为批量重启
|
|
1482
3904
|
*/
|
|
1483
|
-
|
|
3905
|
+
RollingRestart?: boolean
|
|
1484
3906
|
/**
|
|
1485
|
-
*
|
|
3907
|
+
* 是否为多可用区
|
|
1486
3908
|
*/
|
|
1487
|
-
|
|
3909
|
+
EnableMultiZones?: boolean
|
|
1488
3910
|
/**
|
|
1489
|
-
*
|
|
3911
|
+
* 用户多可用区的网络信息
|
|
1490
3912
|
*/
|
|
1491
|
-
|
|
3913
|
+
UserMultiZoneInfos?: Array<NetworkInfo>
|
|
1492
3914
|
/**
|
|
1493
|
-
*
|
|
3915
|
+
* 扩展字段
|
|
1494
3916
|
*/
|
|
1495
|
-
|
|
3917
|
+
Details?: InstanceDetail
|
|
3918
|
+
}
|
|
3919
|
+
|
|
3920
|
+
/**
|
|
3921
|
+
* Instance表detail字段
|
|
3922
|
+
*/
|
|
3923
|
+
export interface InstanceDetail {
|
|
1496
3924
|
/**
|
|
1497
|
-
*
|
|
3925
|
+
* 告警策略是否可用
|
|
3926
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1498
3927
|
*/
|
|
1499
|
-
|
|
3928
|
+
EnableAlarmStrategy?: boolean
|
|
3929
|
+
}
|
|
3930
|
+
|
|
3931
|
+
/**
|
|
3932
|
+
* DescribeSpec请求参数结构体
|
|
3933
|
+
*/
|
|
3934
|
+
export interface DescribeSpecRequest {
|
|
1500
3935
|
/**
|
|
1501
|
-
*
|
|
3936
|
+
* 地域信息,例如"ap-guangzhou-1"
|
|
1502
3937
|
*/
|
|
1503
|
-
|
|
3938
|
+
Zone: string
|
|
1504
3939
|
/**
|
|
1505
|
-
*
|
|
3940
|
+
* 计费类型,PREPAID 包年包月,POSTPAID_BY_HOUR 按量计费
|
|
1506
3941
|
*/
|
|
1507
|
-
|
|
3942
|
+
PayMode?: string
|
|
1508
3943
|
/**
|
|
1509
|
-
*
|
|
3944
|
+
* 多可用区
|
|
1510
3945
|
*/
|
|
1511
|
-
|
|
3946
|
+
Zones?: Array<string>
|
|
1512
3947
|
/**
|
|
1513
|
-
*
|
|
3948
|
+
* 机型名称
|
|
1514
3949
|
*/
|
|
1515
|
-
|
|
3950
|
+
SpecName?: string
|
|
1516
3951
|
}
|
|
1517
3952
|
|
|
1518
3953
|
/**
|
|
1519
|
-
*
|
|
3954
|
+
* DescribeBackUpTables请求参数结构体
|
|
1520
3955
|
*/
|
|
1521
|
-
export interface
|
|
3956
|
+
export interface DescribeBackUpTablesRequest {
|
|
1522
3957
|
/**
|
|
1523
3958
|
* 集群id
|
|
1524
3959
|
*/
|
|
1525
|
-
|
|
3960
|
+
InstanceId: string
|
|
3961
|
+
/**
|
|
3962
|
+
* 0为默认。1时是对远端的doris进行备份,不周期,一次性。2时为cos恢复,一次性
|
|
3963
|
+
*/
|
|
3964
|
+
BackupType?: number
|
|
3965
|
+
/**
|
|
3966
|
+
* 远端doris集群的连接信息
|
|
3967
|
+
*/
|
|
3968
|
+
DorisSourceInfo?: DorisSourceInfo
|
|
3969
|
+
/**
|
|
3970
|
+
* cos信息
|
|
3971
|
+
*/
|
|
3972
|
+
CosSourceInfo?: CosSourceInfo
|
|
3973
|
+
}
|
|
3974
|
+
|
|
3975
|
+
/**
|
|
3976
|
+
* DescribeInstanceNodesRole请求参数结构体
|
|
3977
|
+
*/
|
|
3978
|
+
export interface DescribeInstanceNodesRoleRequest {
|
|
3979
|
+
/**
|
|
3980
|
+
* 实例id
|
|
3981
|
+
*/
|
|
3982
|
+
InstanceId: string
|
|
3983
|
+
/**
|
|
3984
|
+
* 过滤ip
|
|
3985
|
+
*/
|
|
3986
|
+
IpFilter?: string
|
|
1526
3987
|
}
|
|
1527
3988
|
|
|
1528
3989
|
/**
|
|
@@ -1540,65 +4001,48 @@ export interface DescribeDatabaseAuditDownloadResponse {
|
|
|
1540
4001
|
}
|
|
1541
4002
|
|
|
1542
4003
|
/**
|
|
1543
|
-
*
|
|
4004
|
+
* 节点信息列表
|
|
1544
4005
|
*/
|
|
1545
|
-
export interface
|
|
1546
|
-
/**
|
|
1547
|
-
* 实例ID
|
|
1548
|
-
*/
|
|
1549
|
-
InstanceId: string
|
|
1550
|
-
/**
|
|
1551
|
-
* 开始时间
|
|
1552
|
-
*/
|
|
1553
|
-
StartTime: string
|
|
1554
|
-
/**
|
|
1555
|
-
* 结束时间
|
|
1556
|
-
*/
|
|
1557
|
-
EndTime: string
|
|
1558
|
-
/**
|
|
1559
|
-
* 分页
|
|
1560
|
-
*/
|
|
1561
|
-
PageSize: number
|
|
1562
|
-
/**
|
|
1563
|
-
* 分页
|
|
1564
|
-
*/
|
|
1565
|
-
PageNum: number
|
|
1566
|
-
/**
|
|
1567
|
-
* 排序参数
|
|
1568
|
-
*/
|
|
1569
|
-
OrderType?: string
|
|
4006
|
+
export interface NodeInfos {
|
|
1570
4007
|
/**
|
|
1571
|
-
*
|
|
4008
|
+
* 节点在doris中明朝n
|
|
1572
4009
|
*/
|
|
1573
|
-
|
|
4010
|
+
NodeName?: string
|
|
1574
4011
|
/**
|
|
1575
|
-
*
|
|
4012
|
+
* 节点状态
|
|
1576
4013
|
*/
|
|
1577
|
-
|
|
4014
|
+
Status?: number
|
|
1578
4015
|
/**
|
|
1579
|
-
*
|
|
4016
|
+
* 节点ip
|
|
1580
4017
|
*/
|
|
1581
|
-
|
|
4018
|
+
Ip?: string
|
|
1582
4019
|
/**
|
|
1583
|
-
*
|
|
4020
|
+
* 节点角色
|
|
1584
4021
|
*/
|
|
1585
|
-
|
|
4022
|
+
NodeRole?: string
|
|
1586
4023
|
/**
|
|
1587
|
-
*
|
|
4024
|
+
* 组件名
|
|
1588
4025
|
*/
|
|
1589
|
-
|
|
4026
|
+
ComponentName?: string
|
|
1590
4027
|
/**
|
|
1591
|
-
*
|
|
4028
|
+
* 上一次重启时间
|
|
1592
4029
|
*/
|
|
1593
|
-
|
|
4030
|
+
LastRestartTime?: string
|
|
4031
|
+
}
|
|
4032
|
+
|
|
4033
|
+
/**
|
|
4034
|
+
* DescribeReplicaVersion返回参数结构体
|
|
4035
|
+
*/
|
|
4036
|
+
export interface DescribeReplicaVersionResponse {
|
|
1594
4037
|
/**
|
|
1595
|
-
*
|
|
4038
|
+
* 是否支持新语法
|
|
4039
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1596
4040
|
*/
|
|
1597
|
-
|
|
4041
|
+
ReplicaFlagItem: VersionReplicaItem
|
|
1598
4042
|
/**
|
|
1599
|
-
*
|
|
4043
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1600
4044
|
*/
|
|
1601
|
-
|
|
4045
|
+
RequestId?: string
|
|
1602
4046
|
}
|
|
1603
4047
|
|
|
1604
4048
|
/**
|