tencentcloud-sdk-nodejs-tse 4.0.369 → 4.0.372
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/CHANGELOG.md +425 -0
- package/SERVICE_CHANGELOG.md +422 -130
- package/package.json +1 -1
- package/products.md +25 -25
- package/src/services/tse/v20201207/tse_client.ts +75 -23
- package/src/services/tse/v20201207/tse_models.ts +417 -157
- package/tencentcloud/services/tse/v20201207/tse_client.d.ts +21 -5
- package/tencentcloud/services/tse/v20201207/tse_client.js +30 -6
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +373 -151
|
@@ -16,48 +16,224 @@
|
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* Nacos副本信息
|
|
20
20
|
*/
|
|
21
|
-
export interface
|
|
21
|
+
export interface NacosReplica {
|
|
22
22
|
/**
|
|
23
|
-
*
|
|
23
|
+
* 名称
|
|
24
24
|
*/
|
|
25
25
|
Name: string
|
|
26
26
|
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
28
|
+
* 角色
|
|
29
29
|
*/
|
|
30
|
-
|
|
30
|
+
Role: string
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* 状态
|
|
34
|
+
*/
|
|
35
|
+
Status: string
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* 子网ID
|
|
39
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
40
|
+
*/
|
|
41
|
+
SubnetId: string
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* 可用区ID
|
|
45
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
46
|
+
*/
|
|
47
|
+
Zone: string
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* 可用区ID
|
|
51
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
52
|
+
*/
|
|
53
|
+
ZoneId: string
|
|
31
54
|
}
|
|
32
55
|
|
|
33
56
|
/**
|
|
34
|
-
*
|
|
57
|
+
* DescribeNacosReplicas请求参数结构体
|
|
35
58
|
*/
|
|
36
|
-
export interface
|
|
59
|
+
export interface DescribeNacosReplicasRequest {
|
|
37
60
|
/**
|
|
38
|
-
*
|
|
61
|
+
* 引擎实例ID
|
|
39
62
|
*/
|
|
40
|
-
|
|
63
|
+
InstanceId: string
|
|
41
64
|
|
|
42
65
|
/**
|
|
43
|
-
*
|
|
66
|
+
* 副本列表Limit
|
|
44
67
|
*/
|
|
45
68
|
Limit?: number
|
|
46
69
|
|
|
47
70
|
/**
|
|
48
|
-
*
|
|
71
|
+
* 副本列表Offset
|
|
49
72
|
*/
|
|
50
73
|
Offset?: number
|
|
74
|
+
}
|
|
51
75
|
|
|
76
|
+
/**
|
|
77
|
+
* Apollo 环境配置参数
|
|
78
|
+
*/
|
|
79
|
+
export interface ApolloEnvParam {
|
|
52
80
|
/**
|
|
53
|
-
*
|
|
81
|
+
* 环境名称
|
|
54
82
|
*/
|
|
55
|
-
|
|
83
|
+
Name: string
|
|
56
84
|
|
|
57
85
|
/**
|
|
58
|
-
*
|
|
86
|
+
* 环境内引擎的节点规格 ID
|
|
59
87
|
*/
|
|
60
|
-
|
|
88
|
+
EngineResourceSpec: string
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* 环境内引擎的节点数量
|
|
92
|
+
*/
|
|
93
|
+
EngineNodeNum: number
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* 配置存储空间大小,以GB为单位
|
|
97
|
+
*/
|
|
98
|
+
StorageCapacity: number
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* VPC ID。在 VPC 的子网内分配一个 IP 作为 ConfigServer 的访问地址
|
|
102
|
+
*/
|
|
103
|
+
VpcId: string
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* 子网 ID。在 VPC 的子网内分配一个 IP 作为 ConfigServer 的访问地址
|
|
107
|
+
*/
|
|
108
|
+
SubnetId: string
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* 键值对
|
|
113
|
+
*/
|
|
114
|
+
export interface KVPair {
|
|
115
|
+
/**
|
|
116
|
+
* 键
|
|
117
|
+
*/
|
|
118
|
+
Key: string
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* 值
|
|
122
|
+
*/
|
|
123
|
+
Value: string
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* DeleteEngine返回参数结构体
|
|
128
|
+
*/
|
|
129
|
+
export interface DeleteEngineResponse {
|
|
130
|
+
/**
|
|
131
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
132
|
+
*/
|
|
133
|
+
RequestId?: string
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* CreateEngine返回参数结构体
|
|
138
|
+
*/
|
|
139
|
+
export interface CreateEngineResponse {
|
|
140
|
+
/**
|
|
141
|
+
* 引擎实例 ID
|
|
142
|
+
*/
|
|
143
|
+
InstanceId: string
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
147
|
+
*/
|
|
148
|
+
RequestId?: string
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* DescribeZookeeperReplicas请求参数结构体
|
|
153
|
+
*/
|
|
154
|
+
export interface DescribeZookeeperReplicasRequest {
|
|
155
|
+
/**
|
|
156
|
+
* 注册引擎实例ID
|
|
157
|
+
*/
|
|
158
|
+
InstanceId: string
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* 副本列表Limit
|
|
162
|
+
*/
|
|
163
|
+
Limit?: number
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* 副本列表Offset
|
|
167
|
+
*/
|
|
168
|
+
Offset?: number
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
/**
|
|
172
|
+
* DeleteEngine请求参数结构体
|
|
173
|
+
*/
|
|
174
|
+
export interface DeleteEngineRequest {
|
|
175
|
+
/**
|
|
176
|
+
* 引擎实例 ID
|
|
177
|
+
*/
|
|
178
|
+
InstanceId: string
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* Zookeeper副本信息
|
|
183
|
+
*/
|
|
184
|
+
export interface ZookeeperReplica {
|
|
185
|
+
/**
|
|
186
|
+
* 名称
|
|
187
|
+
*/
|
|
188
|
+
Name: string
|
|
189
|
+
|
|
190
|
+
/**
|
|
191
|
+
* 角色
|
|
192
|
+
*/
|
|
193
|
+
Role: string
|
|
194
|
+
|
|
195
|
+
/**
|
|
196
|
+
* 状态
|
|
197
|
+
*/
|
|
198
|
+
Status: string
|
|
199
|
+
|
|
200
|
+
/**
|
|
201
|
+
* 子网ID
|
|
202
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
203
|
+
*/
|
|
204
|
+
SubnetId: string
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* 可用区ID
|
|
208
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
209
|
+
*/
|
|
210
|
+
Zone: string
|
|
211
|
+
|
|
212
|
+
/**
|
|
213
|
+
* 可用区ID
|
|
214
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
215
|
+
*/
|
|
216
|
+
ZoneId: string
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* DescribeNacosServerInterfaces请求参数结构体
|
|
221
|
+
*/
|
|
222
|
+
export interface DescribeNacosServerInterfacesRequest {
|
|
223
|
+
/**
|
|
224
|
+
* 实例id
|
|
225
|
+
*/
|
|
226
|
+
InstanceId?: string
|
|
227
|
+
|
|
228
|
+
/**
|
|
229
|
+
* 返回的列表个数
|
|
230
|
+
*/
|
|
231
|
+
Limit?: number
|
|
232
|
+
|
|
233
|
+
/**
|
|
234
|
+
* 返回的列表起始偏移量
|
|
235
|
+
*/
|
|
236
|
+
Offset?: number
|
|
61
237
|
}
|
|
62
238
|
|
|
63
239
|
/**
|
|
@@ -232,38 +408,52 @@ export interface SREInstance {
|
|
|
232
408
|
}
|
|
233
409
|
|
|
234
410
|
/**
|
|
235
|
-
*
|
|
411
|
+
* DescribeSREInstanceAccessAddress返回参数结构体
|
|
236
412
|
*/
|
|
237
|
-
export interface
|
|
413
|
+
export interface DescribeSREInstanceAccessAddressResponse {
|
|
238
414
|
/**
|
|
239
|
-
*
|
|
415
|
+
* 内网访问地址
|
|
240
416
|
*/
|
|
241
|
-
|
|
417
|
+
IntranetAddress: string
|
|
242
418
|
|
|
243
419
|
/**
|
|
244
|
-
*
|
|
420
|
+
* 公网访问地址
|
|
245
421
|
*/
|
|
246
|
-
|
|
422
|
+
InternetAddress: string
|
|
247
423
|
|
|
248
424
|
/**
|
|
249
|
-
*
|
|
425
|
+
* apollo多环境公网ip
|
|
250
426
|
*/
|
|
251
|
-
|
|
427
|
+
EnvAddressInfos: Array<EnvAddressInfo>
|
|
252
428
|
|
|
253
429
|
/**
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
430
|
+
* 控制台公网访问地址
|
|
431
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
432
|
+
*/
|
|
433
|
+
ConsoleInternetAddress: string
|
|
257
434
|
|
|
258
435
|
/**
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
436
|
+
* 控制台内网访问地址
|
|
437
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
438
|
+
*/
|
|
439
|
+
ConsoleIntranetAddress: string
|
|
262
440
|
|
|
263
441
|
/**
|
|
264
|
-
|
|
442
|
+
* 客户端公网带宽
|
|
443
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
444
|
+
*/
|
|
445
|
+
InternetBandWidth: number
|
|
446
|
+
|
|
447
|
+
/**
|
|
448
|
+
* 控制台公网带宽
|
|
449
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
450
|
+
*/
|
|
451
|
+
ConsoleInternetBandWidth: number
|
|
452
|
+
|
|
453
|
+
/**
|
|
454
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
265
455
|
*/
|
|
266
|
-
|
|
456
|
+
RequestId?: string
|
|
267
457
|
}
|
|
268
458
|
|
|
269
459
|
/**
|
|
@@ -287,47 +477,65 @@ export interface DescribeSREInstancesResponse {
|
|
|
287
477
|
}
|
|
288
478
|
|
|
289
479
|
/**
|
|
290
|
-
*
|
|
480
|
+
* Zookeeper服务端接口列表,用于云监控
|
|
291
481
|
*/
|
|
292
|
-
export interface
|
|
482
|
+
export interface ZookeeperServerInterface {
|
|
293
483
|
/**
|
|
294
|
-
|
|
484
|
+
* 接口名
|
|
485
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
486
|
+
*/
|
|
487
|
+
Interface: string
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
/**
|
|
491
|
+
* 服务治理相关的信息
|
|
492
|
+
*/
|
|
493
|
+
export interface ServiceGovernanceInfo {
|
|
494
|
+
/**
|
|
495
|
+
* 引擎所在的地域
|
|
295
496
|
*/
|
|
296
|
-
|
|
497
|
+
EngineRegion: string
|
|
297
498
|
|
|
298
499
|
/**
|
|
299
|
-
*
|
|
500
|
+
* 服务治理引擎绑定的kubernetes集群信息
|
|
300
501
|
*/
|
|
301
|
-
|
|
502
|
+
BoundK8SInfos?: Array<BoundK8SInfo>
|
|
302
503
|
|
|
303
504
|
/**
|
|
304
|
-
*
|
|
505
|
+
* 服务治理引擎绑定的网络信息
|
|
305
506
|
*/
|
|
306
|
-
|
|
507
|
+
VpcInfos?: Array<VpcInfo>
|
|
307
508
|
|
|
308
509
|
/**
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
ConsoleInternetAddress: string
|
|
510
|
+
* 当前实例鉴权是否开启
|
|
511
|
+
*/
|
|
512
|
+
AuthOpen?: boolean
|
|
313
513
|
|
|
314
514
|
/**
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
ConsoleIntranetAddress: string
|
|
515
|
+
* 该实例支持的功能,鉴权就是 Auth
|
|
516
|
+
*/
|
|
517
|
+
Features?: Array<string>
|
|
319
518
|
|
|
320
519
|
/**
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
520
|
+
* 主账户名默认为 polaris,该值为主账户的默认密码
|
|
521
|
+
*/
|
|
522
|
+
MainPassword?: string
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
/**
|
|
526
|
+
* DescribeNacosReplicas返回参数结构体
|
|
527
|
+
*/
|
|
528
|
+
export interface DescribeNacosReplicasResponse {
|
|
529
|
+
/**
|
|
530
|
+
* 引擎实例副本信息
|
|
531
|
+
*/
|
|
532
|
+
Replicas: Array<NacosReplica>
|
|
325
533
|
|
|
326
534
|
/**
|
|
327
|
-
*
|
|
535
|
+
* 副本个数
|
|
328
536
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
329
537
|
*/
|
|
330
|
-
|
|
538
|
+
TotalCount: number
|
|
331
539
|
|
|
332
540
|
/**
|
|
333
541
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -336,83 +544,132 @@ export interface DescribeSREInstanceAccessAddressResponse {
|
|
|
336
544
|
}
|
|
337
545
|
|
|
338
546
|
/**
|
|
339
|
-
*
|
|
547
|
+
* DescribeZookeeperServerInterfaces返回参数结构体
|
|
340
548
|
*/
|
|
341
|
-
export interface
|
|
549
|
+
export interface DescribeZookeeperServerInterfacesResponse {
|
|
342
550
|
/**
|
|
343
|
-
*
|
|
551
|
+
* 接口总个数
|
|
344
552
|
*/
|
|
345
|
-
|
|
553
|
+
TotalCount: number
|
|
346
554
|
|
|
347
555
|
/**
|
|
348
|
-
*
|
|
556
|
+
* 接口列表
|
|
349
557
|
*/
|
|
350
|
-
|
|
558
|
+
Content: Array<ZookeeperServerInterface>
|
|
559
|
+
|
|
560
|
+
/**
|
|
561
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
562
|
+
*/
|
|
563
|
+
RequestId?: string
|
|
351
564
|
}
|
|
352
565
|
|
|
353
566
|
/**
|
|
354
|
-
*
|
|
567
|
+
* 服务治理引擎绑定的kubernetes信息
|
|
355
568
|
*/
|
|
356
|
-
export interface
|
|
569
|
+
export interface BoundK8SInfo {
|
|
357
570
|
/**
|
|
358
|
-
*
|
|
571
|
+
* 绑定的kubernetes集群ID
|
|
359
572
|
*/
|
|
360
|
-
|
|
573
|
+
BoundClusterId: string
|
|
574
|
+
|
|
575
|
+
/**
|
|
576
|
+
* 绑定的kubernetes的集群类型,分tke和eks两种
|
|
577
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
578
|
+
*/
|
|
579
|
+
BoundClusterType: string
|
|
580
|
+
|
|
581
|
+
/**
|
|
582
|
+
* 服务同步模式,all为全量同步,demand为按需同步
|
|
583
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
584
|
+
*/
|
|
585
|
+
SyncMode?: string
|
|
361
586
|
}
|
|
362
587
|
|
|
363
588
|
/**
|
|
364
|
-
*
|
|
589
|
+
* DescribeSREInstances请求参数结构体
|
|
365
590
|
*/
|
|
366
|
-
export interface
|
|
591
|
+
export interface DescribeSREInstancesRequest {
|
|
367
592
|
/**
|
|
368
|
-
*
|
|
593
|
+
* 请求过滤参数
|
|
369
594
|
*/
|
|
370
|
-
|
|
595
|
+
Filters?: Array<Filter>
|
|
371
596
|
|
|
372
597
|
/**
|
|
373
|
-
*
|
|
598
|
+
* 翻页单页查询限制数量[0,1000], 默认值0
|
|
374
599
|
*/
|
|
375
|
-
|
|
600
|
+
Limit?: number
|
|
601
|
+
|
|
602
|
+
/**
|
|
603
|
+
* 翻页单页偏移量,默认值0
|
|
604
|
+
*/
|
|
605
|
+
Offset?: number
|
|
606
|
+
|
|
607
|
+
/**
|
|
608
|
+
* 查询类型
|
|
609
|
+
*/
|
|
610
|
+
QueryType?: string
|
|
611
|
+
|
|
612
|
+
/**
|
|
613
|
+
* 调用方来源
|
|
614
|
+
*/
|
|
615
|
+
QuerySource?: string
|
|
376
616
|
}
|
|
377
617
|
|
|
378
618
|
/**
|
|
379
|
-
*
|
|
619
|
+
* DescribeZookeeperReplicas返回参数结构体
|
|
380
620
|
*/
|
|
381
|
-
export interface
|
|
621
|
+
export interface DescribeZookeeperReplicasResponse {
|
|
382
622
|
/**
|
|
383
|
-
*
|
|
623
|
+
* 注册引擎实例副本信息
|
|
384
624
|
*/
|
|
385
|
-
|
|
625
|
+
Replicas: Array<ZookeeperReplica>
|
|
386
626
|
|
|
387
627
|
/**
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
628
|
+
* 副本个数
|
|
629
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
630
|
+
*/
|
|
631
|
+
TotalCount: number
|
|
391
632
|
|
|
392
633
|
/**
|
|
393
|
-
*
|
|
634
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
394
635
|
*/
|
|
395
|
-
|
|
636
|
+
RequestId?: string
|
|
396
637
|
}
|
|
397
638
|
|
|
398
639
|
/**
|
|
399
|
-
*
|
|
640
|
+
* 私有网络信息
|
|
400
641
|
*/
|
|
401
|
-
export interface
|
|
642
|
+
export interface VpcInfo {
|
|
402
643
|
/**
|
|
403
|
-
*
|
|
644
|
+
* Vpc Id
|
|
404
645
|
*/
|
|
405
|
-
|
|
646
|
+
VpcId: string
|
|
406
647
|
|
|
407
648
|
/**
|
|
408
|
-
*
|
|
649
|
+
* 子网ID
|
|
409
650
|
*/
|
|
410
|
-
|
|
651
|
+
SubnetId: string
|
|
411
652
|
|
|
412
653
|
/**
|
|
413
|
-
|
|
654
|
+
* 内网访问地址
|
|
655
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
656
|
+
*/
|
|
657
|
+
IntranetAddress?: string
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
/**
|
|
661
|
+
* 查询过滤通用对象
|
|
662
|
+
*/
|
|
663
|
+
export interface Filter {
|
|
664
|
+
/**
|
|
665
|
+
* 过滤参数名
|
|
414
666
|
*/
|
|
415
|
-
|
|
667
|
+
Name: string
|
|
668
|
+
|
|
669
|
+
/**
|
|
670
|
+
* 过滤参数值
|
|
671
|
+
*/
|
|
672
|
+
Values: Array<string>
|
|
416
673
|
}
|
|
417
674
|
|
|
418
675
|
/**
|
|
@@ -546,53 +803,6 @@ eureka - STANDARD版本
|
|
|
546
803
|
PrepaidRenewFlag?: number
|
|
547
804
|
}
|
|
548
805
|
|
|
549
|
-
/**
|
|
550
|
-
* 引擎实例的标签信息
|
|
551
|
-
*/
|
|
552
|
-
export interface InstanceTagInfo {
|
|
553
|
-
/**
|
|
554
|
-
* 标签键
|
|
555
|
-
*/
|
|
556
|
-
TagKey?: string
|
|
557
|
-
|
|
558
|
-
/**
|
|
559
|
-
* 标签值
|
|
560
|
-
*/
|
|
561
|
-
TagValue?: string
|
|
562
|
-
}
|
|
563
|
-
|
|
564
|
-
/**
|
|
565
|
-
* DeleteEngine请求参数结构体
|
|
566
|
-
*/
|
|
567
|
-
export interface DeleteEngineRequest {
|
|
568
|
-
/**
|
|
569
|
-
* 引擎实例 ID
|
|
570
|
-
*/
|
|
571
|
-
InstanceId: string
|
|
572
|
-
}
|
|
573
|
-
|
|
574
|
-
/**
|
|
575
|
-
* 服务治理引擎绑定的kubernetes信息
|
|
576
|
-
*/
|
|
577
|
-
export interface BoundK8SInfo {
|
|
578
|
-
/**
|
|
579
|
-
* 绑定的kubernetes集群ID
|
|
580
|
-
*/
|
|
581
|
-
BoundClusterId: string
|
|
582
|
-
|
|
583
|
-
/**
|
|
584
|
-
* 绑定的kubernetes的集群类型,分tke和eks两种
|
|
585
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
586
|
-
*/
|
|
587
|
-
BoundClusterType: string
|
|
588
|
-
|
|
589
|
-
/**
|
|
590
|
-
* 服务同步模式,all为全量同步,demand为按需同步
|
|
591
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
592
|
-
*/
|
|
593
|
-
SyncMode?: string
|
|
594
|
-
}
|
|
595
|
-
|
|
596
806
|
/**
|
|
597
807
|
* DescribeSREInstanceAccessAddress请求参数结构体
|
|
598
808
|
*/
|
|
@@ -614,59 +824,74 @@ export interface DescribeSREInstanceAccessAddressRequest {
|
|
|
614
824
|
}
|
|
615
825
|
|
|
616
826
|
/**
|
|
617
|
-
*
|
|
827
|
+
* DescribeNacosServerInterfaces返回参数结构体
|
|
618
828
|
*/
|
|
619
|
-
export interface
|
|
829
|
+
export interface DescribeNacosServerInterfacesResponse {
|
|
620
830
|
/**
|
|
621
|
-
*
|
|
831
|
+
* 接口总个数
|
|
622
832
|
*/
|
|
623
|
-
|
|
833
|
+
TotalCount: number
|
|
624
834
|
|
|
625
835
|
/**
|
|
626
|
-
*
|
|
836
|
+
* 接口列表
|
|
627
837
|
*/
|
|
628
|
-
|
|
838
|
+
Content: Array<NacosServerInterface>
|
|
629
839
|
|
|
630
840
|
/**
|
|
631
|
-
*
|
|
841
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
632
842
|
*/
|
|
633
|
-
|
|
843
|
+
RequestId?: string
|
|
844
|
+
}
|
|
634
845
|
|
|
846
|
+
/**
|
|
847
|
+
* 引擎的初始管理帐号
|
|
848
|
+
*/
|
|
849
|
+
export interface EngineAdmin {
|
|
635
850
|
/**
|
|
636
|
-
*
|
|
851
|
+
* 控制台初始用户名
|
|
637
852
|
*/
|
|
638
|
-
|
|
853
|
+
Name?: string
|
|
639
854
|
|
|
640
855
|
/**
|
|
641
|
-
*
|
|
856
|
+
* 控制台初始密码
|
|
642
857
|
*/
|
|
643
|
-
|
|
858
|
+
Password?: string
|
|
644
859
|
|
|
645
860
|
/**
|
|
646
|
-
*
|
|
861
|
+
* 引擎接口的管理员 Token
|
|
647
862
|
*/
|
|
648
|
-
|
|
863
|
+
Token?: string
|
|
649
864
|
}
|
|
650
865
|
|
|
651
866
|
/**
|
|
652
|
-
*
|
|
867
|
+
* nacos服务端接口列表,用于云监控
|
|
653
868
|
*/
|
|
654
|
-
export interface
|
|
869
|
+
export interface NacosServerInterface {
|
|
655
870
|
/**
|
|
656
|
-
|
|
871
|
+
* 接口名
|
|
872
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
873
|
+
*/
|
|
874
|
+
Interface: string
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
/**
|
|
878
|
+
* DescribeZookeeperServerInterfaces请求参数结构体
|
|
879
|
+
*/
|
|
880
|
+
export interface DescribeZookeeperServerInterfacesRequest {
|
|
881
|
+
/**
|
|
882
|
+
* 实例id
|
|
657
883
|
*/
|
|
658
|
-
|
|
884
|
+
InstanceId?: string
|
|
659
885
|
|
|
660
886
|
/**
|
|
661
|
-
*
|
|
887
|
+
* 返回的列表个数
|
|
662
888
|
*/
|
|
663
|
-
|
|
889
|
+
Limit?: number
|
|
664
890
|
|
|
665
891
|
/**
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
IntranetAddress?: string
|
|
892
|
+
* 返回的列表起始偏移量
|
|
893
|
+
*/
|
|
894
|
+
Offset?: number
|
|
670
895
|
}
|
|
671
896
|
|
|
672
897
|
/**
|
|
@@ -733,3 +958,38 @@ export interface EnvInfo {
|
|
|
733
958
|
*/
|
|
734
959
|
AliasEnvName?: string
|
|
735
960
|
}
|
|
961
|
+
|
|
962
|
+
/**
|
|
963
|
+
* 多环境网络信息
|
|
964
|
+
*/
|
|
965
|
+
export interface EnvAddressInfo {
|
|
966
|
+
/**
|
|
967
|
+
* 环境名
|
|
968
|
+
*/
|
|
969
|
+
EnvName: string
|
|
970
|
+
|
|
971
|
+
/**
|
|
972
|
+
* 是否开启config公网
|
|
973
|
+
*/
|
|
974
|
+
EnableConfigInternet: boolean
|
|
975
|
+
|
|
976
|
+
/**
|
|
977
|
+
* config公网ip
|
|
978
|
+
*/
|
|
979
|
+
ConfigInternetServiceIp: string
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
/**
|
|
983
|
+
* 引擎实例的标签信息
|
|
984
|
+
*/
|
|
985
|
+
export interface InstanceTagInfo {
|
|
986
|
+
/**
|
|
987
|
+
* 标签键
|
|
988
|
+
*/
|
|
989
|
+
TagKey?: string
|
|
990
|
+
|
|
991
|
+
/**
|
|
992
|
+
* 标签值
|
|
993
|
+
*/
|
|
994
|
+
TagValue?: string
|
|
995
|
+
}
|