tencentcloud-sdk-nodejs-tsf 4.0.524 → 4.0.526

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.
@@ -143,6 +143,21 @@ export interface UpdateApiRateLimitRuleRequest {
143
143
  */
144
144
  MaxQps?: number;
145
145
  }
146
+ /**
147
+ * DeleteCluster返回参数结构体
148
+ */
149
+ export interface DeleteClusterResponse {
150
+ /**
151
+ * 删除集群操作是否成功。
152
+ true:操作成功。
153
+ false:操作失败。
154
+ */
155
+ Result?: boolean;
156
+ /**
157
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
158
+ */
159
+ RequestId?: string;
160
+ }
146
161
  /**
147
162
  * cos临时帐号信息
148
163
  */
@@ -245,6 +260,205 @@ export interface DescribeUnitApiUseDetailRequest {
245
260
  */
246
261
  Period?: number;
247
262
  }
263
+ /**
264
+ * 集群详情
265
+ */
266
+ export interface ClusterV2 {
267
+ /**
268
+ * 集群ID
269
+ 注意:此字段可能返回 null,表示取不到有效值。
270
+ */
271
+ ClusterId: string;
272
+ /**
273
+ * 集群名称
274
+ 注意:此字段可能返回 null,表示取不到有效值。
275
+ */
276
+ ClusterName: string;
277
+ /**
278
+ * 集群描述
279
+ 注意:此字段可能返回 null,表示取不到有效值。
280
+ */
281
+ ClusterDesc: string;
282
+ /**
283
+ * 集群类型
284
+ 注意:此字段可能返回 null,表示取不到有效值。
285
+ */
286
+ ClusterType: string;
287
+ /**
288
+ * 集群所属私有网络ID
289
+ 注意:此字段可能返回 null,表示取不到有效值。
290
+ */
291
+ VpcId: string;
292
+ /**
293
+ * 集群状态
294
+ 注意:此字段可能返回 null,表示取不到有效值。
295
+ */
296
+ ClusterStatus: string;
297
+ /**
298
+ * 集群CIDR
299
+ 注意:此字段可能返回 null,表示取不到有效值。
300
+ */
301
+ ClusterCIDR: string;
302
+ /**
303
+ * 集群总CPU,单位: 核
304
+ 注意:此字段可能返回 null,表示取不到有效值。
305
+ */
306
+ ClusterTotalCpu: number;
307
+ /**
308
+ * 集群总内存,单位: G
309
+ 注意:此字段可能返回 null,表示取不到有效值。
310
+ */
311
+ ClusterTotalMem: number;
312
+ /**
313
+ * 集群已使用CPU,单位: 核
314
+ 注意:此字段可能返回 null,表示取不到有效值。
315
+ */
316
+ ClusterUsedCpu: number;
317
+ /**
318
+ * 集群已使用内存,单位: G
319
+ 注意:此字段可能返回 null,表示取不到有效值。
320
+ */
321
+ ClusterUsedMem: number;
322
+ /**
323
+ * 集群机器实例数量
324
+ 注意:此字段可能返回 null,表示取不到有效值。
325
+ */
326
+ InstanceCount: number;
327
+ /**
328
+ * 集群运行中的机器实例数量
329
+ 注意:此字段可能返回 null,表示取不到有效值。
330
+ */
331
+ RunInstanceCount: number;
332
+ /**
333
+ * 集群正常状态的机器实例数量
334
+ 注意:此字段可能返回 null,表示取不到有效值。
335
+ */
336
+ NormalInstanceCount: number;
337
+ /**
338
+ * 删除标记:true:可以删除;false:不可删除
339
+ 注意:此字段可能返回 null,表示取不到有效值。
340
+ */
341
+ DeleteFlag: boolean;
342
+ /**
343
+ * 创建时间
344
+ 注意:此字段可能返回 null,表示取不到有效值。
345
+ */
346
+ CreateTime: string;
347
+ /**
348
+ * 更新时间
349
+ 注意:此字段可能返回 null,表示取不到有效值。
350
+ */
351
+ UpdateTime: string;
352
+ /**
353
+ * 集群所属TSF地域ID
354
+ 注意:此字段可能返回 null,表示取不到有效值。
355
+ */
356
+ TsfRegionId: string;
357
+ /**
358
+ * 集群所属TSF地域名称
359
+ 注意:此字段可能返回 null,表示取不到有效值。
360
+ */
361
+ TsfRegionName: string;
362
+ /**
363
+ * 集群所属TSF可用区ID
364
+ 注意:此字段可能返回 null,表示取不到有效值。
365
+ */
366
+ TsfZoneId: string;
367
+ /**
368
+ * 集群所属TSF可用区名称
369
+ 注意:此字段可能返回 null,表示取不到有效值。
370
+ */
371
+ TsfZoneName: string;
372
+ /**
373
+ * 集群不可删除的原因
374
+ 注意:此字段可能返回 null,表示取不到有效值。
375
+ */
376
+ DeleteFlagReason: string;
377
+ /**
378
+ * 集群所属私有网络子网ID
379
+ 注意:此字段可能返回 null,表示取不到有效值。
380
+ */
381
+ SubnetId: string;
382
+ /**
383
+ * 集群剩余 cpu limit
384
+ 注意:此字段可能返回 null,表示取不到有效值。
385
+ */
386
+ ClusterLimitCpu: string;
387
+ /**
388
+ * 集群剩余 memory limit
389
+ 注意:此字段可能返回 null,表示取不到有效值。
390
+ */
391
+ ClusterLimitMem: string;
392
+ /**
393
+ * 运行服务实例数
394
+ 注意:此字段可能返回 null,表示取不到有效值。
395
+ */
396
+ RunServiceInstanceCount: number;
397
+ /**
398
+ * 给前端的按钮控制信息
399
+ 注意:此字段可能返回 null,表示取不到有效值。
400
+ */
401
+ OperationInfo: OperationInfo;
402
+ /**
403
+ * 容器集群版本
404
+ 注意:此字段可能返回 null,表示取不到有效值。
405
+ */
406
+ ClusterVersion: string;
407
+ /**
408
+ * 部署组总数
409
+ 注意:此字段可能返回 null,表示取不到有效值。
410
+ */
411
+ GroupCount: number;
412
+ /**
413
+ * 运行中部署组数
414
+ 注意:此字段可能返回 null,表示取不到有效值。
415
+ */
416
+ RunGroupCount: number;
417
+ /**
418
+ * 停止中部署组数
419
+ 注意:此字段可能返回 null,表示取不到有效值。
420
+ */
421
+ StopGroupCount: number;
422
+ /**
423
+ * 异常部署组数
424
+ 注意:此字段可能返回 null,表示取不到有效值。
425
+ */
426
+ AbnormalGroupCount: number;
427
+ /**
428
+ * 集群备注名
429
+ 注意:此字段可能返回 null,表示取不到有效值。
430
+ */
431
+ ClusterRemarkName: string;
432
+ /**
433
+ * api地址
434
+ 注意:此字段可能返回 null,表示取不到有效值。
435
+ */
436
+ KuberneteApiServer: string;
437
+ /**
438
+ * K : kubeconfig, S : service account
439
+ 注意:此字段可能返回 null,表示取不到有效值。
440
+ */
441
+ KuberneteNativeType: string;
442
+ /**
443
+ * native secret
444
+ 注意:此字段可能返回 null,表示取不到有效值。
445
+ */
446
+ KuberneteNativeSecret: string;
447
+ }
448
+ /**
449
+ * ModifyApplication返回参数结构体
450
+ */
451
+ export interface ModifyApplicationResponse {
452
+ /**
453
+ * true/false
454
+ 注意:此字段可能返回 null,表示取不到有效值。
455
+ */
456
+ Result: boolean;
457
+ /**
458
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
459
+ */
460
+ RequestId?: string;
461
+ }
248
462
  /**
249
463
  * DescribeApiVersions返回参数结构体
250
464
  */
@@ -325,6 +539,20 @@ export interface DescribeGroupReleaseRequest {
325
539
  */
326
540
  GroupId: string;
327
541
  }
542
+ /**
543
+ * DescribeConfigTemplate返回参数结构体
544
+ */
545
+ export interface DescribeConfigTemplateResponse {
546
+ /**
547
+ * Result
548
+ 注意:此字段可能返回 null,表示取不到有效值。
549
+ */
550
+ Result?: ConfigTemplate;
551
+ /**
552
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
553
+ */
554
+ RequestId?: string;
555
+ }
328
556
  /**
329
557
  * DescribeDeliveryConfig返回参数结构体
330
558
  */
@@ -600,6 +828,39 @@ export interface DescribeFileConfigsResponse {
600
828
  */
601
829
  RequestId?: string;
602
830
  }
831
+ /**
832
+ * DescribeClusters请求参数结构体
833
+ */
834
+ export interface DescribeClustersRequest {
835
+ /**
836
+ * 搜索词
837
+ */
838
+ SearchWord?: string;
839
+ /**
840
+ * 排序字段
841
+ */
842
+ OrderBy?: string;
843
+ /**
844
+ * 排序方式
845
+ */
846
+ OrderType?: number;
847
+ /**
848
+ * 偏移量
849
+ */
850
+ Offset?: number;
851
+ /**
852
+ * 分页个数
853
+ */
854
+ Limit?: number;
855
+ /**
856
+ * 集群类型
857
+ */
858
+ ClusterType?: string;
859
+ /**
860
+ * idList
861
+ */
862
+ ClusterIdList?: Array<string>;
863
+ }
603
864
  /**
604
865
  * DescribeApiVersions请求参数结构体
605
866
  */
@@ -618,19 +879,17 @@ export interface DescribeApiVersionsRequest {
618
879
  Method?: string;
619
880
  }
620
881
  /**
621
- * TSF配置项发布日志分页对象
882
+ * DeleteConfigTemplate返回参数结构体
622
883
  */
623
- export interface TsfPageConfigReleaseLog {
884
+ export interface DeleteConfigTemplateResponse {
624
885
  /**
625
- * 总条数
626
- 注意:此字段可能返回 null,表示取不到有效值。
627
- */
628
- TotalCount: number;
886
+ * true:删除成功;false:删除失败
887
+ */
888
+ Result?: boolean;
629
889
  /**
630
- * 配置项发布日志数组
631
- 注意:此字段可能返回 null,表示取不到有效值。
632
- */
633
- Content: Array<ConfigReleaseLog>;
890
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
891
+ */
892
+ RequestId?: string;
634
893
  }
635
894
  /**
636
895
  * DescribeGroupBindedGateways返回参数结构体
@@ -678,6 +937,25 @@ export interface DescribeJvmMonitorRequest {
678
937
  */
679
938
  Tag?: string;
680
939
  }
940
+ /**
941
+ * 任务规则
942
+ */
943
+ export interface TaskRule {
944
+ /**
945
+ * 触发规则类型, Cron/Repeat
946
+ */
947
+ RuleType: string;
948
+ /**
949
+ * Cron类型规则,cron表达式。
950
+ 注意:此字段可能返回 null,表示取不到有效值。
951
+ */
952
+ Expression?: string;
953
+ /**
954
+ * 时间间隔, 单位毫秒
955
+ 注意:此字段可能返回 null,表示取不到有效值。
956
+ */
957
+ RepeatInterval?: number;
958
+ }
681
959
  /**
682
960
  * UnbindApiGroup请求参数结构体
683
961
  */
@@ -1417,6 +1695,15 @@ export interface GatewayPluginBoundParam {
1417
1695
  */
1418
1696
  ScopeValue: string;
1419
1697
  }
1698
+ /**
1699
+ * ModifyNamespace返回参数结构体
1700
+ */
1701
+ export interface ModifyNamespaceResponse {
1702
+ /**
1703
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1704
+ */
1705
+ RequestId?: string;
1706
+ }
1420
1707
  /**
1421
1708
  * ModifyLaneRule请求参数结构体
1422
1709
  */
@@ -1861,6 +2148,15 @@ export interface DescribeLanesResponse {
1861
2148
  */
1862
2149
  RequestId?: string;
1863
2150
  }
2151
+ /**
2152
+ * StartGroup请求参数结构体
2153
+ */
2154
+ export interface StartGroupRequest {
2155
+ /**
2156
+ * 部署组ID
2157
+ */
2158
+ GroupId: string;
2159
+ }
1864
2160
  /**
1865
2161
  * CreateNamespace请求参数结构体
1866
2162
  */
@@ -2402,57 +2698,18 @@ export interface ImageRepository {
2402
2698
  ApplicationNameReal: string;
2403
2699
  }
2404
2700
  /**
2405
- * DescribeInovcationIndicators请求参数结构体
2701
+ * DescribeOverviewInvocation返回参数结构体
2406
2702
  */
2407
- export interface DescribeInovcationIndicatorsRequest {
2408
- /**
2409
- * 维度
2410
- */
2411
- Dimension: string;
2412
- /**
2413
- * 开始时间
2414
- */
2415
- StartTime: string;
2416
- /**
2417
- * 结束时间
2418
- */
2419
- EndTime: string;
2420
- /**
2421
- * 命名空间ID
2422
- */
2423
- NamespaceId?: string;
2424
- /**
2425
- * 微服务ID
2426
- */
2427
- ServiceId?: string;
2428
- /**
2429
- * 调用方服务名
2430
- */
2431
- CallerServiceName?: string;
2432
- /**
2433
- * 被调方服务名
2434
- */
2435
- CalleeServiceName?: string;
2436
- /**
2437
- * 调用方接口名
2438
- */
2439
- CallerInterfaceName?: string;
2440
- /**
2441
- * 被调方接口名
2442
- */
2443
- CalleeInterfaceName?: string;
2444
- /**
2445
- * 应用ID
2446
- */
2447
- ApplicationId?: string;
2703
+ export interface DescribeOverviewInvocationResponse {
2448
2704
  /**
2449
- * 部署组ID
2450
- */
2451
- GroupId?: string;
2705
+ * 监控统计数据列表
2706
+ 注意:此字段可能返回 null,表示取不到有效值。
2707
+ */
2708
+ Result: Array<MetricDataPoint>;
2452
2709
  /**
2453
- * 实例ID
2710
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2454
2711
  */
2455
- InstanceId?: string;
2712
+ RequestId?: string;
2456
2713
  }
2457
2714
  /**
2458
2715
  * CreatePublicConfig返回参数结构体
@@ -2510,6 +2767,15 @@ export interface CreateConfigResponse {
2510
2767
  */
2511
2768
  RequestId?: string;
2512
2769
  }
2770
+ /**
2771
+ * RevokeFileConfig请求参数结构体
2772
+ */
2773
+ export interface RevokeFileConfigRequest {
2774
+ /**
2775
+ * 配置项发布ID
2776
+ */
2777
+ ConfigReleaseId: string;
2778
+ }
2513
2779
  /**
2514
2780
  * DescribeCreateGatewayApiStatus请求参数结构体
2515
2781
  */
@@ -3662,6 +3928,19 @@ export interface CreateGroupRequest {
3662
3928
  */
3663
3929
  Alias?: string;
3664
3930
  }
3931
+ /**
3932
+ * DeleteCluster请求参数结构体
3933
+ */
3934
+ export interface DeleteClusterRequest {
3935
+ /**
3936
+ * 集群ID
3937
+ */
3938
+ ClusterId: string;
3939
+ /**
3940
+ * 是否只解绑,不删除容器集群,默认不传则删除容器集群。
3941
+ */
3942
+ Unbind?: boolean;
3943
+ }
3665
3944
  /**
3666
3945
  * StopTaskBatch返回参数结构体
3667
3946
  */
@@ -4126,14 +4405,25 @@ export interface Env {
4126
4405
  ValueFrom?: ValueFrom;
4127
4406
  }
4128
4407
  /**
4129
- * k8s env 的 ResourceFieldRef
4408
+ * ModifyCluster请求参数结构体
4130
4409
  */
4131
- export interface ResourceFieldRef {
4410
+ export interface ModifyClusterRequest {
4132
4411
  /**
4133
- * k8s 的 Resource
4134
- 注意:此字段可能返回 null,表示取不到有效值。
4135
- */
4136
- Resource?: string;
4412
+ * 集群ID
4413
+ */
4414
+ ClusterId: string;
4415
+ /**
4416
+ * 集群名称
4417
+ */
4418
+ ClusterName?: string;
4419
+ /**
4420
+ * 集群描述信息
4421
+ */
4422
+ ClusterDesc?: string;
4423
+ /**
4424
+ * 备注名
4425
+ */
4426
+ ClusterRemarkName?: string;
4137
4427
  }
4138
4428
  /**
4139
4429
  * tsf-privilege 模块,资源
@@ -4326,6 +4616,20 @@ export interface GroupUnitApiDailyUseStatistics {
4326
4616
  */
4327
4617
  Quantile: QuantileEntity;
4328
4618
  }
4619
+ /**
4620
+ * DescribeFileConfigReleases返回参数结构体
4621
+ */
4622
+ export interface DescribeFileConfigReleasesResponse {
4623
+ /**
4624
+ * 配置项发布信息列表
4625
+ 注意:此字段可能返回 null,表示取不到有效值。
4626
+ */
4627
+ Result?: TsfPageFileConfigRelease;
4628
+ /**
4629
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4630
+ */
4631
+ RequestId?: string;
4632
+ }
4329
4633
  /**
4330
4634
  * DisableUnitRoute返回参数结构体
4331
4635
  */
@@ -4933,18 +5237,57 @@ export interface Metric {
4933
5237
  Function?: string;
4934
5238
  }
4935
5239
  /**
4936
- * DescribeOverviewInvocation返回参数结构体
5240
+ * DescribeInovcationIndicators请求参数结构体
4937
5241
  */
4938
- export interface DescribeOverviewInvocationResponse {
5242
+ export interface DescribeInovcationIndicatorsRequest {
4939
5243
  /**
4940
- * 监控统计数据列表
4941
- 注意:此字段可能返回 null,表示取不到有效值。
4942
- */
4943
- Result: Array<MetricDataPoint>;
5244
+ * 维度
5245
+ */
5246
+ Dimension: string;
5247
+ /**
5248
+ * 开始时间
5249
+ */
5250
+ StartTime: string;
5251
+ /**
5252
+ * 结束时间
5253
+ */
5254
+ EndTime: string;
5255
+ /**
5256
+ * 命名空间ID
5257
+ */
5258
+ NamespaceId?: string;
5259
+ /**
5260
+ * 微服务ID
5261
+ */
5262
+ ServiceId?: string;
5263
+ /**
5264
+ * 调用方服务名
5265
+ */
5266
+ CallerServiceName?: string;
5267
+ /**
5268
+ * 被调方服务名
5269
+ */
5270
+ CalleeServiceName?: string;
5271
+ /**
5272
+ * 调用方接口名
5273
+ */
5274
+ CallerInterfaceName?: string;
5275
+ /**
5276
+ * 被调方接口名
5277
+ */
5278
+ CalleeInterfaceName?: string;
5279
+ /**
5280
+ * 应用ID
5281
+ */
5282
+ ApplicationId?: string;
4944
5283
  /**
4945
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5284
+ * 部署组ID
4946
5285
  */
4947
- RequestId?: string;
5286
+ GroupId?: string;
5287
+ /**
5288
+ * 实例ID
5289
+ */
5290
+ InstanceId?: string;
4948
5291
  }
4949
5292
  /**
4950
5293
  * ShrinkInstances请求参数结构体
@@ -5021,6 +5364,20 @@ export interface ExecuteTaskFlowResponse {
5021
5364
  */
5022
5365
  RequestId?: string;
5023
5366
  }
5367
+ /**
5368
+ * DescribeClusters返回参数结构体
5369
+ */
5370
+ export interface DescribeClustersResponse {
5371
+ /**
5372
+ * Cluster分页信息
5373
+ 注意:此字段可能返回 null,表示取不到有效值。
5374
+ */
5375
+ Result: TsfPageClusterV2;
5376
+ /**
5377
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5378
+ */
5379
+ RequestId?: string;
5380
+ }
5024
5381
  /**
5025
5382
  * SearchBusinessLog请求参数结构体
5026
5383
  */
@@ -5439,6 +5796,21 @@ export interface AssociateConfigWithGroupRequest {
5439
5796
  */
5440
5797
  SearchWord?: string;
5441
5798
  }
5799
+ /**
5800
+ * TSF配置项发布日志分页对象
5801
+ */
5802
+ export interface TsfPageConfigReleaseLog {
5803
+ /**
5804
+ * 总条数
5805
+ 注意:此字段可能返回 null,表示取不到有效值。
5806
+ */
5807
+ TotalCount: number;
5808
+ /**
5809
+ * 配置项发布日志数组
5810
+ 注意:此字段可能返回 null,表示取不到有效值。
5811
+ */
5812
+ Content: Array<ConfigReleaseLog>;
5813
+ }
5442
5814
  /**
5443
5815
  * DescribeContainerGroupDetail请求参数结构体
5444
5816
  */
@@ -5571,6 +5943,20 @@ export interface ModifyTaskResponse {
5571
5943
  */
5572
5944
  RequestId?: string;
5573
5945
  }
5946
+ /**
5947
+ * RevokeFileConfig返回参数结构体
5948
+ */
5949
+ export interface RevokeFileConfigResponse {
5950
+ /**
5951
+ * 撤回结果
5952
+ 注意:此字段可能返回 null,表示取不到有效值。
5953
+ */
5954
+ Result?: boolean;
5955
+ /**
5956
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5957
+ */
5958
+ RequestId?: string;
5959
+ }
5574
5960
  /**
5575
5961
  * SearchBusinessLog返回参数结构体
5576
5962
  */
@@ -5653,6 +6039,19 @@ export interface UnitRuleItem {
5653
6039
  */
5654
6040
  UnitRuleTagList?: Array<UnitRuleTag>;
5655
6041
  }
6042
+ /**
6043
+ * UpdateConfigTemplate返回参数结构体
6044
+ */
6045
+ export interface UpdateConfigTemplateResponse {
6046
+ /**
6047
+ * 结果true:成功;false:失败;
6048
+ */
6049
+ Result?: boolean;
6050
+ /**
6051
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6052
+ */
6053
+ RequestId?: string;
6054
+ }
5656
6055
  /**
5657
6056
  * BindPlugin请求参数结构体
5658
6057
  */
@@ -6713,6 +7112,22 @@ export interface DeployGroupResponse {
6713
7112
  */
6714
7113
  RequestId?: string;
6715
7114
  }
7115
+ /**
7116
+ * ModifyGroup返回参数结构体
7117
+ */
7118
+ export interface ModifyGroupResponse {
7119
+ /**
7120
+ * 更新部署组详情是否成功。
7121
+ true:操作成功。
7122
+ false:操作失败。
7123
+ 注意:此字段可能返回 null,表示取不到有效值。
7124
+ */
7125
+ Result: boolean;
7126
+ /**
7127
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7128
+ */
7129
+ RequestId?: string;
7130
+ }
6716
7131
  /**
6717
7132
  * BindApiGroup返回参数结构体
6718
7133
  */
@@ -7746,6 +8161,121 @@ export interface EnableTaskFlowResponse {
7746
8161
  */
7747
8162
  RequestId?: string;
7748
8163
  }
8164
+ /**
8165
+ * API 明细
8166
+ */
8167
+ export interface ApiDetailInfo {
8168
+ /**
8169
+ * API ID
8170
+ 注意:此字段可能返回 null,表示取不到有效值。
8171
+ */
8172
+ ApiId: string;
8173
+ /**
8174
+ * 命名空间ID
8175
+ 注意:此字段可能返回 null,表示取不到有效值。
8176
+ */
8177
+ NamespaceId: string;
8178
+ /**
8179
+ * 命名空间名称
8180
+ 注意:此字段可能返回 null,表示取不到有效值。
8181
+ */
8182
+ NamespaceName: string;
8183
+ /**
8184
+ * 服务ID
8185
+ 注意:此字段可能返回 null,表示取不到有效值。
8186
+ */
8187
+ MicroserviceId: string;
8188
+ /**
8189
+ * 服务名称
8190
+ 注意:此字段可能返回 null,表示取不到有效值。
8191
+ */
8192
+ MicroserviceName: string;
8193
+ /**
8194
+ * API 请求路径
8195
+ 注意:此字段可能返回 null,表示取不到有效值。
8196
+ */
8197
+ Path: string;
8198
+ /**
8199
+ * Api 映射路径
8200
+ 注意:此字段可能返回 null,表示取不到有效值。
8201
+ */
8202
+ PathMapping: string;
8203
+ /**
8204
+ * 请求方法
8205
+ 注意:此字段可能返回 null,表示取不到有效值。
8206
+ */
8207
+ Method: string;
8208
+ /**
8209
+ * 所属分组ID
8210
+ 注意:此字段可能返回 null,表示取不到有效值。
8211
+ */
8212
+ GroupId: string;
8213
+ /**
8214
+ * 是否禁用
8215
+ 注意:此字段可能返回 null,表示取不到有效值。
8216
+ */
8217
+ UsableStatus: string;
8218
+ /**
8219
+ * 发布状态
8220
+ 注意:此字段可能返回 null,表示取不到有效值。
8221
+ */
8222
+ ReleaseStatus: string;
8223
+ /**
8224
+ * 开启限流
8225
+ 注意:此字段可能返回 null,表示取不到有效值。
8226
+ */
8227
+ RateLimitStatus: string;
8228
+ /**
8229
+ * 是否开启mock
8230
+ 注意:此字段可能返回 null,表示取不到有效值。
8231
+ */
8232
+ MockStatus: string;
8233
+ /**
8234
+ * 创建时间
8235
+ 注意:此字段可能返回 null,表示取不到有效值。
8236
+ */
8237
+ CreatedTime: string;
8238
+ /**
8239
+ * 更新时间
8240
+ 注意:此字段可能返回 null,表示取不到有效值。
8241
+ */
8242
+ UpdatedTime: string;
8243
+ /**
8244
+ * 发布时间
8245
+ 注意:此字段可能返回 null,表示取不到有效值。
8246
+ */
8247
+ ReleasedTime: string;
8248
+ /**
8249
+ * 所属分组名称
8250
+ 注意:此字段可能返回 null,表示取不到有效值。
8251
+ */
8252
+ GroupName: string;
8253
+ /**
8254
+ * API 超时,单位毫秒
8255
+ 注意:此字段可能返回 null,表示取不到有效值。
8256
+ */
8257
+ Timeout: number;
8258
+ /**
8259
+ * Api所在服务host
8260
+ 注意:此字段可能返回 null,表示取不到有效值。
8261
+ */
8262
+ Host: string;
8263
+ /**
8264
+ * API类型。 ms : 微服务API; external :外部服务Api
8265
+ 注意:此字段可能返回 null,表示取不到有效值。
8266
+ */
8267
+ ApiType: string;
8268
+ /**
8269
+ * Api描述信息
8270
+ 注意:此字段可能返回 null,表示取不到有效值。
8271
+ */
8272
+ Description: string;
8273
+ /**
8274
+ * API路径匹配类型。normal:普通API;wildcard:通配API。
8275
+ 注意:此字段可能返回 null,表示取不到有效值。
8276
+ */
8277
+ ApiMatchType: string;
8278
+ }
7749
8279
  /**
7750
8280
  * DeleteUnitRule返回参数结构体
7751
8281
  */
@@ -7846,6 +8376,23 @@ export interface TsfPageUnitNamespace {
7846
8376
  */
7847
8377
  Content: Array<UnitNamespace>;
7848
8378
  }
8379
+ /**
8380
+ * CreateMicroserviceWithDetailResp请求参数结构体
8381
+ */
8382
+ export interface CreateMicroserviceWithDetailRespRequest {
8383
+ /**
8384
+ * 命名空间ID
8385
+ */
8386
+ NamespaceId: string;
8387
+ /**
8388
+ * 微服务名称
8389
+ */
8390
+ MicroserviceName: string;
8391
+ /**
8392
+ * 微服务描述信息
8393
+ */
8394
+ MicroserviceDesc?: string;
8395
+ }
7849
8396
  /**
7850
8397
  * 业务日志配置解析规则
7851
8398
  */
@@ -8497,6 +9044,15 @@ export interface DescribeBusinessLogConfigsRequest {
8497
9044
  */
8498
9045
  ConfigIdList?: Array<string>;
8499
9046
  }
9047
+ /**
9048
+ * DeleteConfigTemplate请求参数结构体
9049
+ */
9050
+ export interface DeleteConfigTemplateRequest {
9051
+ /**
9052
+ * 无
9053
+ */
9054
+ ConfigTemplateId: string;
9055
+ }
8500
9056
  /**
8501
9057
  * DescribePluginInstances请求参数结构体
8502
9058
  */
@@ -8767,6 +9323,21 @@ export interface CreateConfigRequest {
8767
9323
  */
8768
9324
  ProgramIdList?: Array<string>;
8769
9325
  }
9326
+ /**
9327
+ * Tsf分页集群对象
9328
+ */
9329
+ export interface TsfPageClusterV2 {
9330
+ /**
9331
+ * 集群总数目
9332
+ 注意:此字段可能返回 null,表示取不到有效值。
9333
+ */
9334
+ TotalCount: number;
9335
+ /**
9336
+ * 集群列表
9337
+ 注意:此字段可能返回 null,表示取不到有效值。
9338
+ */
9339
+ Content: Array<ClusterV2>;
9340
+ }
8770
9341
  /**
8771
9342
  * DescribeUploadInfo请求参数结构体
8772
9343
  */
@@ -9450,6 +10021,21 @@ export interface DescribePublicConfigReleasesRequest {
9450
10021
  */
9451
10022
  ConfigId?: string;
9452
10023
  }
10024
+ /**
10025
+ * 文件配置项发布信息列表
10026
+ */
10027
+ export interface TsfPageFileConfigRelease {
10028
+ /**
10029
+ * 数量
10030
+ 注意:此字段可能返回 null,表示取不到有效值。
10031
+ */
10032
+ TotalCount: number;
10033
+ /**
10034
+ * 列表
10035
+ 注意:此字段可能返回 null,表示取不到有效值。
10036
+ */
10037
+ Content: Array<FileConfigRelease>;
10038
+ }
9453
10039
  /**
9454
10040
  * DescribeLaneRules请求参数结构体
9455
10041
  */
@@ -9848,18 +10434,46 @@ export interface DeleteApiGroupRequest {
9848
10434
  */
9849
10435
  export interface ReleaseApiGroupRequest {
9850
10436
  /**
9851
- * Api 分组ID
10437
+ * Api 分组ID
10438
+ */
10439
+ GroupId: string;
10440
+ }
10441
+ /**
10442
+ * DescribeFileConfigReleases请求参数结构体
10443
+ */
10444
+ export interface DescribeFileConfigReleasesRequest {
10445
+ /**
10446
+ * 配置项ID
10447
+ */
10448
+ ConfigId?: string;
10449
+ /**
10450
+ * 配置项名称
10451
+ */
10452
+ ConfigName?: string;
10453
+ /**
10454
+ * 部署组ID
10455
+ */
10456
+ GroupId?: string;
10457
+ /**
10458
+ * 命名空间ID
10459
+ */
10460
+ NamespaceId?: string;
10461
+ /**
10462
+ * 集群ID
10463
+ */
10464
+ ClusterId?: string;
10465
+ /**
10466
+ * 应用ID
9852
10467
  */
9853
- GroupId: string;
9854
- }
9855
- /**
9856
- * StartGroup请求参数结构体
9857
- */
9858
- export interface StartGroupRequest {
10468
+ ApplicationId?: string;
9859
10469
  /**
9860
- * 部署组ID
10470
+ * 偏移量
9861
10471
  */
9862
- GroupId: string;
10472
+ Offset?: number;
10473
+ /**
10474
+ * 每页条数
10475
+ */
10476
+ Limit?: number;
9863
10477
  }
9864
10478
  /**
9865
10479
  * DescribeClusterInstances返回参数结构体
@@ -9949,23 +10563,19 @@ export interface DescribeGroupAttributeRequest {
9949
10563
  GroupId: string;
9950
10564
  }
9951
10565
  /**
9952
- * 任务规则
10566
+ * ModifyCluster返回参数结构体
9953
10567
  */
9954
- export interface TaskRule {
9955
- /**
9956
- * 触发规则类型, Cron/Repeat
9957
- */
9958
- RuleType: string;
10568
+ export interface ModifyClusterResponse {
9959
10569
  /**
9960
- * Cron类型规则,cron表达式。
9961
- 注意:此字段可能返回 null,表示取不到有效值。
10570
+ * 更新集群详情操作是否成功。
10571
+ true: 操作成功。
10572
+ false:操作失败。
9962
10573
  */
9963
- Expression?: string;
10574
+ Result?: boolean;
9964
10575
  /**
9965
- * 时间间隔, 单位毫秒
9966
- 注意:此字段可能返回 null,表示取不到有效值。
9967
- */
9968
- RepeatInterval?: number;
10576
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10577
+ */
10578
+ RequestId?: string;
9969
10579
  }
9970
10580
  /**
9971
10581
  * 包信息
@@ -10287,6 +10897,31 @@ export interface DescribeEnabledUnitRuleRequest {
10287
10897
  */
10288
10898
  GatewayInstanceId: string;
10289
10899
  }
10900
+ /**
10901
+ * CreateConfigTemplate请求参数结构体
10902
+ */
10903
+ export interface CreateConfigTemplateRequest {
10904
+ /**
10905
+ * 配置模板名称
10906
+ */
10907
+ ConfigTemplateName: string;
10908
+ /**
10909
+ * 配置模板对应的微服务框架
10910
+ */
10911
+ ConfigTemplateType: string;
10912
+ /**
10913
+ * 配置模板数据
10914
+ */
10915
+ ConfigTemplateValue: string;
10916
+ /**
10917
+ * 配置模板描述
10918
+ */
10919
+ ConfigTemplateDesc?: string;
10920
+ /**
10921
+ * 无
10922
+ */
10923
+ ProgramIdList?: Array<string>;
10924
+ }
10290
10925
  /**
10291
10926
  * DescribeApiGroup返回参数结构体
10292
10927
  */
@@ -10499,6 +11134,31 @@ export interface DescribeUnitRulesRequest {
10499
11134
  */
10500
11135
  Limit?: number;
10501
11136
  }
11137
+ /**
11138
+ * UpdateConfigTemplate请求参数结构体
11139
+ */
11140
+ export interface UpdateConfigTemplateRequest {
11141
+ /**
11142
+ * 配置模板id
11143
+ */
11144
+ ConfigTemplateId: string;
11145
+ /**
11146
+ * 配置模板名称
11147
+ */
11148
+ ConfigTemplateName: string;
11149
+ /**
11150
+ * 配置模板对应的微服务框架
11151
+ */
11152
+ ConfigTemplateType: string;
11153
+ /**
11154
+ * 配置模板数据
11155
+ */
11156
+ ConfigTemplateValue: string;
11157
+ /**
11158
+ * 配置模板描述
11159
+ */
11160
+ ConfigTemplateDesc?: string;
11161
+ }
10502
11162
  /**
10503
11163
  * DescribeGatewayAllGroupApis请求参数结构体
10504
11164
  */
@@ -10734,119 +11394,44 @@ export interface StopTaskBatchRequest {
10734
11394
  TaskId?: string;
10735
11395
  }
10736
11396
  /**
10737
- * API 明细
11397
+ * 配置模板对象
10738
11398
  */
10739
- export interface ApiDetailInfo {
10740
- /**
10741
- * API ID
10742
- 注意:此字段可能返回 null,表示取不到有效值。
10743
- */
10744
- ApiId: string;
10745
- /**
10746
- * 命名空间ID
10747
- 注意:此字段可能返回 null,表示取不到有效值。
10748
- */
10749
- NamespaceId: string;
10750
- /**
10751
- * 命名空间名称
10752
- 注意:此字段可能返回 null,表示取不到有效值。
10753
- */
10754
- NamespaceName: string;
10755
- /**
10756
- * 服务ID
10757
- 注意:此字段可能返回 null,表示取不到有效值。
10758
- */
10759
- MicroserviceId: string;
10760
- /**
10761
- * 服务名称
10762
- 注意:此字段可能返回 null,表示取不到有效值。
10763
- */
10764
- MicroserviceName: string;
10765
- /**
10766
- * API 请求路径
10767
- 注意:此字段可能返回 null,表示取不到有效值。
10768
- */
10769
- Path: string;
11399
+ export interface ConfigTemplate {
10770
11400
  /**
10771
- * Api 映射路径
10772
- 注意:此字段可能返回 null,表示取不到有效值。
10773
- */
10774
- PathMapping: string;
10775
- /**
10776
- * 请求方法
10777
- 注意:此字段可能返回 null,表示取不到有效值。
10778
- */
10779
- Method: string;
10780
- /**
10781
- * 所属分组ID
11401
+ * 配置模板Id
10782
11402
  注意:此字段可能返回 null,表示取不到有效值。
10783
11403
  */
10784
- GroupId: string;
11404
+ ConfigTemplateId?: string;
10785
11405
  /**
10786
- * 是否禁用
11406
+ * 配置模板名称
10787
11407
  注意:此字段可能返回 null,表示取不到有效值。
10788
11408
  */
10789
- UsableStatus: string;
11409
+ ConfigTemplateName?: string;
10790
11410
  /**
10791
- * 发布状态
11411
+ * 配置模板描述
10792
11412
  注意:此字段可能返回 null,表示取不到有效值。
10793
11413
  */
10794
- ReleaseStatus: string;
11414
+ ConfigTemplateDesc?: string;
10795
11415
  /**
10796
- * 开启限流
11416
+ * 配置模板对应的微服务框架
10797
11417
  注意:此字段可能返回 null,表示取不到有效值。
10798
11418
  */
10799
- RateLimitStatus: string;
11419
+ ConfigTemplateType?: string;
10800
11420
  /**
10801
- * 是否开启mock
11421
+ * 配置模板数据
10802
11422
  注意:此字段可能返回 null,表示取不到有效值。
10803
11423
  */
10804
- MockStatus: string;
11424
+ ConfigTemplateValue?: string;
10805
11425
  /**
10806
11426
  * 创建时间
10807
11427
  注意:此字段可能返回 null,表示取不到有效值。
10808
11428
  */
10809
- CreatedTime: string;
11429
+ CreateTime?: string;
10810
11430
  /**
10811
11431
  * 更新时间
10812
11432
  注意:此字段可能返回 null,表示取不到有效值。
10813
11433
  */
10814
- UpdatedTime: string;
10815
- /**
10816
- * 发布时间
10817
- 注意:此字段可能返回 null,表示取不到有效值。
10818
- */
10819
- ReleasedTime: string;
10820
- /**
10821
- * 所属分组名称
10822
- 注意:此字段可能返回 null,表示取不到有效值。
10823
- */
10824
- GroupName: string;
10825
- /**
10826
- * API 超时,单位毫秒
10827
- 注意:此字段可能返回 null,表示取不到有效值。
10828
- */
10829
- Timeout: number;
10830
- /**
10831
- * Api所在服务host
10832
- 注意:此字段可能返回 null,表示取不到有效值。
10833
- */
10834
- Host: string;
10835
- /**
10836
- * API类型。 ms : 微服务API; external :外部服务Api
10837
- 注意:此字段可能返回 null,表示取不到有效值。
10838
- */
10839
- ApiType: string;
10840
- /**
10841
- * Api描述信息
10842
- 注意:此字段可能返回 null,表示取不到有效值。
10843
- */
10844
- Description: string;
10845
- /**
10846
- * API路径匹配类型。normal:普通API;wildcard:通配API。
10847
- 注意:此字段可能返回 null,表示取不到有效值。
10848
- */
10849
- ApiMatchType: string;
11434
+ UpdateTime?: string;
10850
11435
  }
10851
11436
  /**
10852
11437
  * DescribeUnitApiUseDetail返回参数结构体
@@ -11297,6 +11882,19 @@ export interface DescribeFileConfigsRequest {
11297
11882
  */
11298
11883
  ConfigVersion?: string;
11299
11884
  }
11885
+ /**
11886
+ * CreateConfigTemplate返回参数结构体
11887
+ */
11888
+ export interface CreateConfigTemplateResponse {
11889
+ /**
11890
+ * true:创建成功;false:创建失败
11891
+ */
11892
+ Result: boolean;
11893
+ /**
11894
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11895
+ */
11896
+ RequestId?: string;
11897
+ }
11300
11898
  /**
11301
11899
  * ExecuteTask返回参数结构体
11302
11900
  */
@@ -11431,6 +12029,19 @@ export interface DescribeApiUseDetailRequest {
11431
12029
  */
11432
12030
  EndTime: string;
11433
12031
  }
12032
+ /**
12033
+ * CreateMicroserviceWithDetailResp返回参数结构体
12034
+ */
12035
+ export interface CreateMicroserviceWithDetailRespResponse {
12036
+ /**
12037
+ * id
12038
+ */
12039
+ Result: string;
12040
+ /**
12041
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
12042
+ */
12043
+ RequestId?: string;
12044
+ }
11434
12045
  /**
11435
12046
  * 业务日志列表
11436
12047
  */
@@ -11886,6 +12497,31 @@ export interface DisableUnitRuleResponse {
11886
12497
  */
11887
12498
  RequestId?: string;
11888
12499
  }
12500
+ /**
12501
+ * ModifyApplication请求参数结构体
12502
+ */
12503
+ export interface ModifyApplicationRequest {
12504
+ /**
12505
+ * 应用ID
12506
+ */
12507
+ ApplicationId: string;
12508
+ /**
12509
+ * 应用名称
12510
+ */
12511
+ ApplicationName?: string;
12512
+ /**
12513
+ * 应用备注
12514
+ */
12515
+ ApplicationDesc?: string;
12516
+ /**
12517
+ * 应用备注名
12518
+ */
12519
+ ApplicationRemarkName?: string;
12520
+ /**
12521
+ * 服务配置信息列表
12522
+ */
12523
+ ServiceConfigList?: Array<ServiceConfig>;
12524
+ }
11889
12525
  /**
11890
12526
  * DescribePathRewrites返回参数结构体
11891
12527
  */
@@ -11963,6 +12599,15 @@ export interface UpdateApiRateLimitRulesResponse {
11963
12599
  */
11964
12600
  RequestId?: string;
11965
12601
  }
12602
+ /**
12603
+ * DeleteRepository请求参数结构体
12604
+ */
12605
+ export interface DeleteRepositoryRequest {
12606
+ /**
12607
+ * 仓库ID
12608
+ */
12609
+ RepositoryId: string;
12610
+ }
11966
12611
  /**
11967
12612
  * DescribeSimpleGroups请求参数结构体
11968
12613
  */
@@ -12366,6 +13011,16 @@ export interface DeleteMicroserviceResponse {
12366
13011
  */
12367
13012
  RequestId?: string;
12368
13013
  }
13014
+ /**
13015
+ * k8s env 的 ResourceFieldRef
13016
+ */
13017
+ export interface ResourceFieldRef {
13018
+ /**
13019
+ * k8s 的 Resource
13020
+ 注意:此字段可能返回 null,表示取不到有效值。
13021
+ */
13022
+ Resource?: string;
13023
+ }
12369
13024
  /**
12370
13025
  * DescribeReleasedConfig返回参数结构体
12371
13026
  */
@@ -12525,6 +13180,27 @@ export interface LaneRuleTag {
12525
13180
  */
12526
13181
  UpdateTime: number;
12527
13182
  }
13183
+ /**
13184
+ * ModifyNamespace请求参数结构体
13185
+ */
13186
+ export interface ModifyNamespaceRequest {
13187
+ /**
13188
+ * 命名空间ID
13189
+ */
13190
+ NamespaceId: string;
13191
+ /**
13192
+ * 命名空间名称
13193
+ */
13194
+ NamespaceName?: string;
13195
+ /**
13196
+ * 命名空间备注
13197
+ */
13198
+ NamespaceDesc?: string;
13199
+ /**
13200
+ * 是否开启高可用
13201
+ */
13202
+ IsHaEnable?: string;
13203
+ }
12528
13204
  /**
12529
13205
  * 提供给前端控制按钮显示逻辑的字段
12530
13206
  */
@@ -12702,6 +13378,27 @@ export interface DescribeStatisticsRequest {
12702
13378
  */
12703
13379
  NamespaceIdList?: Array<string>;
12704
13380
  }
13381
+ /**
13382
+ * ModifyGroup请求参数结构体
13383
+ */
13384
+ export interface ModifyGroupRequest {
13385
+ /**
13386
+ * 部署组ID
13387
+ */
13388
+ GroupId: string;
13389
+ /**
13390
+ * 部署组名称
13391
+ */
13392
+ GroupName?: string;
13393
+ /**
13394
+ * 部署组描述
13395
+ */
13396
+ GroupDesc?: string;
13397
+ /**
13398
+ * 部署组备注
13399
+ */
13400
+ Alias?: string;
13401
+ }
12705
13402
  /**
12706
13403
  * DescribeMicroservice返回参数结构体
12707
13404
  */
@@ -12931,13 +13628,13 @@ export interface CreatePathRewritesResponse {
12931
13628
  RequestId?: string;
12932
13629
  }
12933
13630
  /**
12934
- * DeleteRepository请求参数结构体
13631
+ * DescribeConfigTemplate请求参数结构体
12935
13632
  */
12936
- export interface DeleteRepositoryRequest {
13633
+ export interface DescribeConfigTemplateRequest {
12937
13634
  /**
12938
- * 仓库ID
13635
+ *
12939
13636
  */
12940
- RepositoryId: string;
13637
+ ConfigTemplateId: string;
12941
13638
  }
12942
13639
  /**
12943
13640
  * DraftApiGroup返回参数结构体