tencentcloud-sdk-nodejs-tse 4.0.810 → 4.0.815

Sign up to get free protection for your applications and to get access to all the features.
@@ -47,6 +47,19 @@ export interface DeleteCloudNativeAPIGatewayPublicNetworkResponse {
47
47
  */
48
48
  RequestId?: string;
49
49
  }
50
+ /**
51
+ * CreateOrUpdateConfigFileAndRelease请求参数结构体
52
+ */
53
+ export interface CreateOrUpdateConfigFileAndReleaseRequest {
54
+ /**
55
+ * 实例id
56
+ */
57
+ InstanceId: string;
58
+ /**
59
+ * 配置文件列表详情
60
+ */
61
+ ConfigFilePublishInfo: ConfigFilePublishInfo;
62
+ }
50
63
  /**
51
64
  * DeleteCloudNativeAPIGatewayRouteRateLimit返回参数结构体
52
65
  */
@@ -211,6 +224,23 @@ export interface CreateCloudNativeAPIGatewayRequest {
211
224
  */
212
225
  InternetConfig?: InternetConfig;
213
226
  }
227
+ /**
228
+ * DescribeConfigFileGroups返回参数结构体
229
+ */
230
+ export interface DescribeConfigFileGroupsResponse {
231
+ /**
232
+ * 列表总数量
233
+ */
234
+ TotalCount?: number;
235
+ /**
236
+ * 配置文件组列表
237
+ */
238
+ ConfigFileGroups?: Array<ConfigFileGroup>;
239
+ /**
240
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
241
+ */
242
+ RequestId?: string;
243
+ }
214
244
  /**
215
245
  * 定时伸缩策略配置
216
246
  */
@@ -245,6 +275,19 @@ export interface CloudNativeAPIGatewayStrategyCronScalerConfig {
245
275
  */
246
276
  StrategyId?: string;
247
277
  }
278
+ /**
279
+ * 列表过滤条件,模糊匹配
280
+ */
281
+ export interface ListFilter {
282
+ /**
283
+ * 过滤字段
284
+ */
285
+ Key?: string;
286
+ /**
287
+ * 过滤值
288
+ */
289
+ Value?: string;
290
+ }
248
291
  /**
249
292
  * 策略绑定的网关分组信息
250
293
  */
@@ -276,84 +319,25 @@ export interface CloudNativeAPIGatewayStrategyBindingGroupInfo {
276
319
  Status: string;
277
320
  }
278
321
  /**
279
- * ModifyCloudNativeAPIGatewayRoute请求参数结构体
322
+ * DescribeCloudNativeAPIGatewayCertificates请求参数结构体
280
323
  */
281
- export interface ModifyCloudNativeAPIGatewayRouteRequest {
324
+ export interface DescribeCloudNativeAPIGatewayCertificatesRequest {
282
325
  /**
283
326
  * 网关ID
284
327
  */
285
328
  GatewayId: string;
286
329
  /**
287
- * 所属服务的ID
288
- */
289
- ServiceID: string;
290
- /**
291
- * 路由的ID,实例级别唯一
292
- */
293
- RouteID: string;
294
- /**
295
- * 路由的名字,实例级别唯一,可以不提供
296
- */
297
- RouteName?: string;
298
- /**
299
- * 路由的方法,其中方法可选值:
300
- - GET
301
- - POST
302
- - DELETE
303
- - PUT
304
- - OPTIONS
305
- - PATCH
306
- - HEAD
307
- - ANY
308
- - TRACE
309
- - COPY
310
- - MOVE
311
- - PROPFIND
312
- - PROPPATCH
313
- - MKCOL
314
- - LOCK
315
- - UNLOCK
316
- */
317
- Methods?: Array<string>;
318
- /**
319
- * 路由的域名
320
- */
321
- Hosts?: Array<string>;
322
- /**
323
- * 路由的路径
324
- */
325
- Paths?: Array<string>;
326
- /**
327
- * 路由的协议,可选
328
- - https
329
- - http
330
- */
331
- Protocols?: Array<string>;
332
- /**
333
- * 转发到后端时是否保留Host
334
- */
335
- PreserveHost?: boolean;
336
- /**
337
- * https重定向状态码
338
- */
339
- HttpsRedirectStatusCode?: number;
340
- /**
341
- * 转发到后端时是否StripPath
342
- */
343
- StripPath?: boolean;
344
- /**
345
- * 是否开启强制HTTPS
346
- * @deprecated
330
+ * 列表数量
347
331
  */
348
- ForceHttps?: boolean;
332
+ Limit?: number;
349
333
  /**
350
- * 四层匹配的目的端口
334
+ * 列表offset
351
335
  */
352
- DestinationPorts?: Array<number | bigint>;
336
+ Offset?: number;
353
337
  /**
354
- * 路由的Headers
338
+ * 过滤条件,多个过滤条件之间是与的关系,支持BindDomain ,Name
355
339
  */
356
- Headers?: Array<KVMapping>;
340
+ Filters?: Array<ListFilter>;
357
341
  }
358
342
  /**
359
343
  * DescribeCloudNativeAPIGatewayUpstream请求参数结构体
@@ -368,6 +352,27 @@ export interface DescribeCloudNativeAPIGatewayUpstreamRequest {
368
352
  */
369
353
  ServiceName: string;
370
354
  }
355
+ /**
356
+ * DescribeCloudNativeAPIGatewayNodes请求参数结构体
357
+ */
358
+ export interface DescribeCloudNativeAPIGatewayNodesRequest {
359
+ /**
360
+ * 云原生API网关实例ID。
361
+ */
362
+ GatewayId: string;
363
+ /**
364
+ * 实例分组id
365
+ */
366
+ GroupId?: string;
367
+ /**
368
+ * 翻页获取多少个
369
+ */
370
+ Limit?: number;
371
+ /**
372
+ * 翻页从第几个开始获取
373
+ */
374
+ Offset?: number;
375
+ }
371
376
  /**
372
377
  * DeleteNativeGatewayServerGroup返回参数结构体
373
378
  */
@@ -397,13 +402,17 @@ export interface Metadata {
397
402
  Value?: string;
398
403
  }
399
404
  /**
400
- * ModifyCloudNativeAPIGatewayCertificate返回参数结构体
405
+ * 查询过滤通用对象
401
406
  */
402
- export interface ModifyCloudNativeAPIGatewayCertificateResponse {
407
+ export interface Filter {
403
408
  /**
404
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
409
+ * 过滤参数名
405
410
  */
406
- RequestId?: string;
411
+ Name: string;
412
+ /**
413
+ * 过滤参数值
414
+ */
415
+ Values: Array<string>;
407
416
  }
408
417
  /**
409
418
  * ModifyConsoleNetwork请求参数结构体
@@ -490,6 +499,19 @@ export interface DescribeSREInstanceAccessAddressResponse {
490
499
  */
491
500
  RequestId?: string;
492
501
  }
502
+ /**
503
+ * CreateConfigFile请求参数结构体
504
+ */
505
+ export interface CreateConfigFileRequest {
506
+ /**
507
+ * TSE 实例id
508
+ */
509
+ InstanceId: string;
510
+ /**
511
+ * 配置文件列表详情
512
+ */
513
+ ConfigFile: ConfigFile;
514
+ }
493
515
  /**
494
516
  * ModifyCloudNativeAPIGatewayCanaryRule返回参数结构体
495
517
  */
@@ -499,6 +521,32 @@ export interface ModifyCloudNativeAPIGatewayCanaryRuleResponse {
499
521
  */
500
522
  RequestId?: string;
501
523
  }
524
+ /**
525
+ * DescribeCloudNativeAPIGateways返回参数结构体
526
+ */
527
+ export interface DescribeCloudNativeAPIGatewaysResponse {
528
+ /**
529
+ * 获取云原生API网关实例列表响应结果。
530
+ */
531
+ Result: ListCloudNativeAPIGatewayResult;
532
+ /**
533
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
534
+ */
535
+ RequestId?: string;
536
+ }
537
+ /**
538
+ * CreateGovernanceAlias返回参数结构体
539
+ */
540
+ export interface CreateGovernanceAliasResponse {
541
+ /**
542
+ * 创建是否成功。
543
+ */
544
+ Result?: boolean;
545
+ /**
546
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
547
+ */
548
+ RequestId?: string;
549
+ }
502
550
  /**
503
551
  * 云原生API网关节点配置。
504
552
  */
@@ -514,6 +562,19 @@ export interface CloudNativeAPIGatewayNodeConfig {
514
562
  */
515
563
  Number: number;
516
564
  }
565
+ /**
566
+ * DeleteConfigFileGroup返回参数结构体
567
+ */
568
+ export interface DeleteConfigFileGroupResponse {
569
+ /**
570
+ * 是否删除成功
571
+ */
572
+ Result?: boolean;
573
+ /**
574
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
575
+ */
576
+ RequestId?: string;
577
+ }
517
578
  /**
518
579
  * DescribeAutoScalerResourceStrategyBindingGroups请求参数结构体
519
580
  */
@@ -570,25 +631,66 @@ export interface CreateNativeGatewayServerGroupRequest {
570
631
  InternetConfig?: InternetConfig;
571
632
  }
572
633
  /**
573
- * DescribeCloudNativeAPIGatewayCertificates请求参数结构体
634
+ * DescribeAllConfigFileTemplates返回参数结构体
574
635
  */
575
- export interface DescribeCloudNativeAPIGatewayCertificatesRequest {
636
+ export interface DescribeAllConfigFileTemplatesResponse {
576
637
  /**
577
- * 网关ID
638
+ * 数据总数量
578
639
  */
579
- GatewayId: string;
640
+ TotalCount?: number;
580
641
  /**
581
- * 列表数量
642
+ * 配置文件模板列表
582
643
  */
583
- Limit?: number;
644
+ ConfigFileTemplates?: Array<ConfigFileTemplate>;
584
645
  /**
585
- * 列表offset
646
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
586
647
  */
587
- Offset?: number;
648
+ RequestId?: string;
649
+ }
650
+ /**
651
+ * 发布详情
652
+ */
653
+ export interface ConfigFilePublishInfo {
588
654
  /**
589
- * 过滤条件,多个过滤条件之间是与的关系,支持BindDomain ,Name
655
+ * 发布名称
590
656
  */
591
- Filters?: Array<ListFilter>;
657
+ ReleaseName?: string;
658
+ /**
659
+ * 命名空间
660
+ */
661
+ Namespace?: string;
662
+ /**
663
+ * 发布组
664
+ */
665
+ Group?: string;
666
+ /**
667
+ * 文件名
668
+ */
669
+ FileName?: string;
670
+ /**
671
+ * 内容
672
+ */
673
+ Content?: string;
674
+ /**
675
+ * 描述
676
+ */
677
+ Comment?: string;
678
+ /**
679
+ * 格式
680
+ */
681
+ Format?: string;
682
+ /**
683
+ * 创建者
684
+ */
685
+ CreateBy?: string;
686
+ /**
687
+ * 修改者
688
+ */
689
+ ModifyBy?: string;
690
+ /**
691
+ * 标签
692
+ */
693
+ Tags?: Array<ConfigFileTag>;
592
694
  }
593
695
  /**
594
696
  * 云原生网关限流插件Qps阈值
@@ -648,50 +750,171 @@ export interface ListCloudNativeAPIGatewayStrategyResult {
648
750
  StrategyList: Array<CloudNativeAPIGatewayStrategy>;
649
751
  }
650
752
  /**
651
- * ModifyCloudNativeAPIGateway返回参数结构体
753
+ * DescribeGovernanceAliases请求参数结构体
652
754
  */
653
- export interface ModifyCloudNativeAPIGatewayResponse {
755
+ export interface DescribeGovernanceAliasesRequest {
654
756
  /**
655
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId
757
+ * tse实例id
656
758
  */
657
- RequestId?: string;
658
- }
659
- /**
660
- * CloseWafProtection请求参数结构体
661
- */
662
- export interface CloseWafProtectionRequest {
759
+ InstanceId: string;
663
760
  /**
664
- * 网关ID
761
+ * 服务别名所指向的服务名。
665
762
  */
666
- GatewayId: string;
763
+ Service?: string;
667
764
  /**
668
- * 防护资源的类型。
669
- - Global 实例
670
- - Service 服务
671
- - Route 路由
672
- - Object 对象
765
+ * 服务别名所指向的命名空间名。
673
766
  */
674
- Type: string;
767
+ Namespace?: string;
675
768
  /**
676
- * 当资源类型 Type 是 Service 或 Route 的时候,传入的服务或路由的列表
769
+ * 服务别名。
677
770
  */
678
- List?: Array<string>;
679
- }
680
- /**
681
- * ModifyCloudNativeAPIGatewayService返回参数结构体
682
- */
683
- export interface ModifyCloudNativeAPIGatewayServiceResponse {
771
+ Alias?: string;
684
772
  /**
685
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
773
+ * 服务别名命名空间。
686
774
  */
687
- RequestId?: string;
688
- }
689
- /**
690
- * DescribeCloudNativeAPIGatewayNodes返回参数结构体
691
- */
692
- export interface DescribeCloudNativeAPIGatewayNodesResponse {
775
+ AliasNamespace?: string;
693
776
  /**
694
- * 获取云原生网关节点列表结果。
777
+ * 服务别名描述。
778
+ */
779
+ Comment?: string;
780
+ /**
781
+ * 偏移量,默认为0。
782
+ */
783
+ Offset?: number;
784
+ /**
785
+ * 返回数量,默认为20,最大值为100。
786
+ */
787
+ Limit?: number;
788
+ }
789
+ /**
790
+ * 配置文件标签
791
+ */
792
+ export interface ConfigFileGroupTag {
793
+ /**
794
+ * key-value 键
795
+ 注意:此字段可能返回 null,表示取不到有效值。
796
+ */
797
+ Key?: string;
798
+ /**
799
+ * key-value 值
800
+ 注意:此字段可能返回 null,表示取不到有效值。
801
+ */
802
+ Value?: string;
803
+ }
804
+ /**
805
+ * CloseWafProtection请求参数结构体
806
+ */
807
+ export interface CloseWafProtectionRequest {
808
+ /**
809
+ * 网关ID
810
+ */
811
+ GatewayId: string;
812
+ /**
813
+ * 防护资源的类型。
814
+ - Global 实例
815
+ - Service 服务
816
+ - Route 路由
817
+ - Object 对象
818
+ */
819
+ Type: string;
820
+ /**
821
+ * 当资源类型 Type 是 Service 或 Route 的时候,传入的服务或路由的列表
822
+ */
823
+ List?: Array<string>;
824
+ }
825
+ /**
826
+ * ModifyCloudNativeAPIGatewayService返回参数结构体
827
+ */
828
+ export interface ModifyCloudNativeAPIGatewayServiceResponse {
829
+ /**
830
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
831
+ */
832
+ RequestId?: string;
833
+ }
834
+ /**
835
+ * 治理中心服务入参
836
+ */
837
+ export interface GovernanceServiceInput {
838
+ /**
839
+ * 服务名。
840
+ */
841
+ Name: string;
842
+ /**
843
+ * 服务所属命名空间。
844
+ */
845
+ Namespace: string;
846
+ /**
847
+ * 服务描述信息。
848
+ */
849
+ Comment?: string;
850
+ /**
851
+ * 服务元数据。
852
+ */
853
+ Metadatas?: Array<Metadata>;
854
+ /**
855
+ * 服务所属部门。
856
+ */
857
+ Department?: string;
858
+ /**
859
+ * 服务所属业务。
860
+ */
861
+ Business?: string;
862
+ /**
863
+ * 被添加进来可以操作此命名空间的用户ID列表
864
+ */
865
+ UserIds?: Array<string>;
866
+ /**
867
+ * 被添加进来可以操作此命名空间的用户组ID列表
868
+ */
869
+ GroupIds?: Array<string>;
870
+ /**
871
+ * 从操作此命名空间的用户组ID列表被移除的ID列表
872
+ */
873
+ RemoveUserIds?: Array<string>;
874
+ /**
875
+ * 从可以操作此命名空间的用户组ID列表中被移除的ID列表
876
+ */
877
+ RemoveGroupIds?: Array<string>;
878
+ /**
879
+ * 该服务对哪些命名空间可见
880
+ */
881
+ ExportTo?: Array<string>;
882
+ }
883
+ /**
884
+ * ModifyGovernanceAlias请求参数结构体
885
+ */
886
+ export interface ModifyGovernanceAliasRequest {
887
+ /**
888
+ * tse实例id。
889
+ */
890
+ InstanceId: string;
891
+ /**
892
+ * 服务别名
893
+ */
894
+ Alias: string;
895
+ /**
896
+ * 服务别名命名空间
897
+ */
898
+ AliasNamespace: string;
899
+ /**
900
+ * 服务别名所指向的服务名
901
+ */
902
+ Service: string;
903
+ /**
904
+ * 服务别名所指向的命名空间
905
+ */
906
+ Namespace: string;
907
+ /**
908
+ * 服务别名描述
909
+ */
910
+ Comment?: string;
911
+ }
912
+ /**
913
+ * DescribeCloudNativeAPIGatewayNodes返回参数结构体
914
+ */
915
+ export interface DescribeCloudNativeAPIGatewayNodesResponse {
916
+ /**
917
+ * 获取云原生网关节点列表结果。
695
918
  */
696
919
  Result: DescribeCloudNativeAPIGatewayNodesResult;
697
920
  /**
@@ -699,6 +922,27 @@ export interface DescribeCloudNativeAPIGatewayNodesResponse {
699
922
  */
700
923
  RequestId?: string;
701
924
  }
925
+ /**
926
+ * DescribeConfigFileReleaseVersions请求参数结构体
927
+ */
928
+ export interface DescribeConfigFileReleaseVersionsRequest {
929
+ /**
930
+ * 实例id
931
+ */
932
+ InstanceId: string;
933
+ /**
934
+ * 命名空间
935
+ */
936
+ Namespace?: string;
937
+ /**
938
+ * 配置分组
939
+ */
940
+ Group?: string;
941
+ /**
942
+ * 文件名称
943
+ */
944
+ FileName?: string;
945
+ }
702
946
  /**
703
947
  * nacos服务端接口列表,用于云监控
704
948
  */
@@ -737,21 +981,146 @@ export interface DescribeUpstreamHealthCheckConfigResponse {
737
981
  RequestId?: string;
738
982
  }
739
983
  /**
740
- * 网络访问策略
984
+ * 服务契约版本信息
741
985
  */
742
- export interface NetworkAccessControl {
986
+ export interface GovernanceServiceContractVersion {
743
987
  /**
744
- * 访问模式:Whitelist|Blacklist
988
+ * 契约版本
989
+ 注意:此字段可能返回 null,表示取不到有效值。
745
990
  */
746
- Mode: string;
991
+ Version?: string;
747
992
  /**
748
- * 白名单列表
993
+ * 契约名称
994
+ 注意:此字段可能返回 null,表示取不到有效值。
749
995
  */
750
- CidrWhiteList?: Array<string>;
996
+ Name?: string;
751
997
  /**
752
- * 黑名单列表
998
+ * 唯一名称
999
+ 注意:此字段可能返回 null,表示取不到有效值。
753
1000
  */
754
- CidrBlackList?: Array<string>;
1001
+ Key?: string;
1002
+ }
1003
+ /**
1004
+ * 配置文件
1005
+ */
1006
+ export interface ConfigFile {
1007
+ /**
1008
+ * 配置文件id
1009
+ 注意:此字段可能返回 null,表示取不到有效值。
1010
+ */
1011
+ Id?: number;
1012
+ /**
1013
+ * 配置文件名称
1014
+ 注意:此字段可能返回 null,表示取不到有效值。
1015
+ */
1016
+ Name?: string;
1017
+ /**
1018
+ * 配置文件命名空间
1019
+ 注意:此字段可能返回 null,表示取不到有效值。
1020
+ */
1021
+ Namespace?: string;
1022
+ /**
1023
+ * 配置文件组
1024
+ 注意:此字段可能返回 null,表示取不到有效值。
1025
+ */
1026
+ Group?: string;
1027
+ /**
1028
+ * 配置文件内容
1029
+ 注意:此字段可能返回 null,表示取不到有效值。
1030
+ */
1031
+ Content?: string;
1032
+ /**
1033
+ * 配置文件格式
1034
+ 注意:此字段可能返回 null,表示取不到有效值。
1035
+ */
1036
+ Format?: string;
1037
+ /**
1038
+ * 配置文件注释
1039
+ 注意:此字段可能返回 null,表示取不到有效值。
1040
+ */
1041
+ Comment?: string;
1042
+ /**
1043
+ * 配置文件状态
1044
+ 注意:此字段可能返回 null,表示取不到有效值。
1045
+ */
1046
+ Status?: string;
1047
+ /**
1048
+ * 配置文件标签数组
1049
+ 注意:此字段可能返回 null,表示取不到有效值。
1050
+ */
1051
+ Tags?: Array<ConfigFileTag>;
1052
+ /**
1053
+ * 配置文件创建时间
1054
+ 注意:此字段可能返回 null,表示取不到有效值。
1055
+ */
1056
+ CreateTime?: string;
1057
+ /**
1058
+ * 配置文件创建者
1059
+ 注意:此字段可能返回 null,表示取不到有效值。
1060
+ */
1061
+ CreateBy?: string;
1062
+ /**
1063
+ * 配置文件修改时间
1064
+ 注意:此字段可能返回 null,表示取不到有效值。
1065
+ */
1066
+ ModifyTime?: string;
1067
+ /**
1068
+ * 配置文件修改者
1069
+ 注意:此字段可能返回 null,表示取不到有效值。
1070
+ */
1071
+ ModifyBy?: string;
1072
+ /**
1073
+ * 配置文件发布时间
1074
+ 注意:此字段可能返回 null,表示取不到有效值。
1075
+ */
1076
+ ReleaseTime?: string;
1077
+ /**
1078
+ * 配置文件发布者
1079
+ 注意:此字段可能返回 null,表示取不到有效值。
1080
+ */
1081
+ ReleaseBy?: string;
1082
+ }
1083
+ /**
1084
+ * 治理中心命名空间输入参数
1085
+ */
1086
+ export interface GovernanceNamespaceInput {
1087
+ /**
1088
+ * 命名空间名。
1089
+ */
1090
+ Name: string;
1091
+ /**
1092
+ * 描述信息。
1093
+ */
1094
+ Comment?: string;
1095
+ /**
1096
+ * 新增的可以操作此命名空间的用户ID列表
1097
+ */
1098
+ UserIds?: Array<string>;
1099
+ /**
1100
+ * 新增的可以操作此命名空间的用户组ID列表
1101
+ */
1102
+ GroupIds?: Array<string>;
1103
+ /**
1104
+ * 移除可以操作此命名空间的用户ID列表
1105
+ */
1106
+ RemoveUserIds?: Array<string>;
1107
+ /**
1108
+ * 移除可以操作此命名空间的用户组ID列表
1109
+ */
1110
+ RemoveGroupIds?: Array<string>;
1111
+ }
1112
+ /**
1113
+ * DeleteGovernanceServices返回参数结构体
1114
+ */
1115
+ export interface DeleteGovernanceServicesResponse {
1116
+ /**
1117
+ * 删除服务结果。
1118
+ */
1119
+ Result?: boolean;
1120
+ /**
1121
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1122
+ */
1123
+ RequestId?: string;
755
1124
  }
756
1125
  /**
757
1126
  * Kong网关主动健康检查配置
@@ -819,6 +1188,15 @@ export interface DeleteCloudNativeAPIGatewayCanaryRuleRequest {
819
1188
  */
820
1189
  Priority: number;
821
1190
  }
1191
+ /**
1192
+ * ModifyNativeGatewayServerGroup返回参数结构体
1193
+ */
1194
+ export interface ModifyNativeGatewayServerGroupResponse {
1195
+ /**
1196
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1197
+ */
1198
+ RequestId?: string;
1199
+ }
822
1200
  /**
823
1201
  * 网关实例协议端口列表
824
1202
  */
@@ -1052,6 +1430,19 @@ export interface ExternalRedis {
1052
1430
  */
1053
1431
  RedisTimeout: number;
1054
1432
  }
1433
+ /**
1434
+ * DeleteGovernanceNamespaces返回参数结构体
1435
+ */
1436
+ export interface DeleteGovernanceNamespacesResponse {
1437
+ /**
1438
+ * 删除是否成功。
1439
+ */
1440
+ Result?: boolean;
1441
+ /**
1442
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1443
+ */
1444
+ RequestId?: string;
1445
+ }
1055
1446
  /**
1056
1447
  * ModifyCloudNativeAPIGatewayCertificate请求参数结构体
1057
1448
  */
@@ -1095,56 +1486,32 @@ export interface ModifyCloudNativeAPIGatewayCertificateRequest {
1095
1486
  CertSource?: string;
1096
1487
  }
1097
1488
  /**
1098
- * 多环境网络信息
1489
+ * DeleteCloudNativeAPIGatewayService请求参数结构体
1099
1490
  */
1100
- export interface EnvAddressInfo {
1491
+ export interface DeleteCloudNativeAPIGatewayServiceRequest {
1101
1492
  /**
1102
- * 环境名
1493
+ * 网关ID
1103
1494
  */
1104
- EnvName?: string;
1495
+ GatewayId: string;
1105
1496
  /**
1106
- * 是否开启config公网
1497
+ * 服务名字,服务ID
1107
1498
  */
1108
- EnableConfigInternet?: boolean;
1499
+ Name: string;
1500
+ }
1501
+ /**
1502
+ * CLB多可用区信息
1503
+ */
1504
+ export interface CLBMultiRegion {
1109
1505
  /**
1110
- * config公网ip
1506
+ * 是否启用多可用区
1507
+ 注意:此字段可能返回 null,表示取不到有效值。
1111
1508
  */
1112
- ConfigInternetServiceIp?: string;
1509
+ CLBMultiZoneFlag?: boolean;
1113
1510
  /**
1114
- * config内网访问地址
1511
+ * 主可用区信息
1115
1512
  注意:此字段可能返回 null,表示取不到有效值。
1116
1513
  */
1117
- ConfigIntranetAddress?: string;
1118
- /**
1119
- * 是否开启config内网clb
1120
- 注意:此字段可能返回 null,表示取不到有效值。
1121
- */
1122
- EnableConfigIntranet?: boolean;
1123
- /**
1124
- * 客户端公网带宽
1125
- 注意:此字段可能返回 null,表示取不到有效值。
1126
- */
1127
- InternetBandWidth?: number;
1128
- /**
1129
- * 客户端公网CLB多可用区信息
1130
- 注意:此字段可能返回 null,表示取不到有效值。
1131
- */
1132
- CLBMultiRegion?: CLBMultiRegion;
1133
- }
1134
- /**
1135
- * CLB多可用区信息
1136
- */
1137
- export interface CLBMultiRegion {
1138
- /**
1139
- * 是否启用多可用区
1140
- 注意:此字段可能返回 null,表示取不到有效值。
1141
- */
1142
- CLBMultiZoneFlag?: boolean;
1143
- /**
1144
- * 主可用区信息
1145
- 注意:此字段可能返回 null,表示取不到有效值。
1146
- */
1147
- CLBMasterZone?: string;
1514
+ CLBMasterZone?: string;
1148
1515
  /**
1149
1516
  * 备可用区信息
1150
1517
  注意:此字段可能返回 null,表示取不到有效值。
@@ -1327,6 +1694,26 @@ export interface CreateWafDomainsResponse {
1327
1694
  */
1328
1695
  RequestId?: string;
1329
1696
  }
1697
+ /**
1698
+ * 云原生网关限流插件自定义响应
1699
+ */
1700
+ export interface RateLimitResponse {
1701
+ /**
1702
+ * 自定义响应体
1703
+ 注意:此字段可能返回 null,表示取不到有效值。
1704
+ */
1705
+ Body?: string;
1706
+ /**
1707
+ * Headers
1708
+ 注意:此字段可能返回 null,表示取不到有效值。
1709
+ */
1710
+ Headers?: Array<KVMapping>;
1711
+ /**
1712
+ * http状态码
1713
+ 注意:此字段可能返回 null,表示取不到有效值。
1714
+ */
1715
+ HttpStatus?: number;
1716
+ }
1330
1717
  /**
1331
1718
  * DescribeCloudNativeAPIGatewayServices请求参数结构体
1332
1719
  */
@@ -1349,13 +1736,13 @@ export interface DescribeCloudNativeAPIGatewayServicesRequest {
1349
1736
  Filters?: Array<ListFilter>;
1350
1737
  }
1351
1738
  /**
1352
- * UnbindAutoScalerResourceStrategyFromGroups返回参数结构体
1739
+ * CreateConfigFile返回参数结构体
1353
1740
  */
1354
- export interface UnbindAutoScalerResourceStrategyFromGroupsResponse {
1741
+ export interface CreateConfigFileResponse {
1355
1742
  /**
1356
- * 是否成功
1743
+ * 是否创建成功
1357
1744
  */
1358
- Result: boolean;
1745
+ Result?: boolean;
1359
1746
  /**
1360
1747
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1361
1748
  */
@@ -1374,6 +1761,73 @@ export interface DescribeCloudNativeAPIGatewayUpstreamResponse {
1374
1761
  */
1375
1762
  RequestId?: string;
1376
1763
  }
1764
+ /**
1765
+ * 服务契约接口定义
1766
+ */
1767
+ export interface GovernanceInterfaceDescription {
1768
+ /**
1769
+ * 契约接口ID
1770
+ 注意:此字段可能返回 null,表示取不到有效值。
1771
+ */
1772
+ ID?: string;
1773
+ /**
1774
+ * 方法名称
1775
+ 注意:此字段可能返回 null,表示取不到有效值。
1776
+ */
1777
+ Method?: string;
1778
+ /**
1779
+ * 路径/接口名称
1780
+ 注意:此字段可能返回 null,表示取不到有效值。
1781
+ */
1782
+ Path?: string;
1783
+ /**
1784
+ * 内容
1785
+ 注意:此字段可能返回 null,表示取不到有效值。
1786
+ */
1787
+ Content?: string;
1788
+ /**
1789
+ * 创建来源
1790
+ 注意:此字段可能返回 null,表示取不到有效值。
1791
+ */
1792
+ Source?: string;
1793
+ /**
1794
+ * 信息摘要
1795
+ 注意:此字段可能返回 null,表示取不到有效值。
1796
+ */
1797
+ Revision?: string;
1798
+ /**
1799
+ * 创建时间
1800
+ 注意:此字段可能返回 null,表示取不到有效值。
1801
+ */
1802
+ CreateTime?: string;
1803
+ /**
1804
+ * 修改时间
1805
+ 注意:此字段可能返回 null,表示取不到有效值。
1806
+ */
1807
+ ModifyTime?: string;
1808
+ /**
1809
+ * 接口名称
1810
+ 注意:此字段可能返回 null,表示取不到有效值。
1811
+ */
1812
+ Name?: string;
1813
+ }
1814
+ /**
1815
+ * DescribeGovernanceServiceContractVersions请求参数结构体
1816
+ */
1817
+ export interface DescribeGovernanceServiceContractVersionsRequest {
1818
+ /**
1819
+ * 引擎实例ID
1820
+ */
1821
+ InstanceId: string;
1822
+ /**
1823
+ * 命名空间
1824
+ */
1825
+ Namespace: string;
1826
+ /**
1827
+ * 服务名
1828
+ */
1829
+ Service?: string;
1830
+ }
1377
1831
  /**
1378
1832
  * DeleteAutoScalerResourceStrategy请求参数结构体
1379
1833
  */
@@ -1387,6 +1841,115 @@ export interface DeleteAutoScalerResourceStrategyRequest {
1387
1841
  */
1388
1842
  StrategyId: string;
1389
1843
  }
1844
+ /**
1845
+ * DescribePublicNetwork请求参数结构体
1846
+ */
1847
+ export interface DescribePublicNetworkRequest {
1848
+ /**
1849
+ * 云原生API网关实例ID。
1850
+ */
1851
+ GatewayId: string;
1852
+ /**
1853
+ * 网关分组ID
1854
+ */
1855
+ GroupId: string;
1856
+ /**
1857
+ * 网络ID
1858
+ */
1859
+ NetworkId: string;
1860
+ }
1861
+ /**
1862
+ * 治理中心实例信息。
1863
+ */
1864
+ export interface GovernanceInstance {
1865
+ /**
1866
+ * 实例id。
1867
+ */
1868
+ Id?: string;
1869
+ /**
1870
+ * 实例所在服务名。
1871
+ */
1872
+ Service?: string;
1873
+ /**
1874
+ * 实例所在命名空间名。
1875
+ */
1876
+ Namespace?: string;
1877
+ /**
1878
+ * 实例ip地址。
1879
+ 注意:此字段可能返回 null,表示取不到有效值。
1880
+ */
1881
+ Host?: string;
1882
+ /**
1883
+ * 实例端口信息。
1884
+ 注意:此字段可能返回 null,表示取不到有效值。
1885
+ */
1886
+ Port?: number;
1887
+ /**
1888
+ * 通信协议。
1889
+ 注意:此字段可能返回 null,表示取不到有效值。
1890
+ */
1891
+ Protocol?: string;
1892
+ /**
1893
+ * 版本信息。
1894
+ 注意:此字段可能返回 null,表示取不到有效值。
1895
+ */
1896
+ Version?: string;
1897
+ /**
1898
+ * 负载均衡权重。
1899
+ 注意:此字段可能返回 null,表示取不到有效值。
1900
+ */
1901
+ Weight?: number;
1902
+ /**
1903
+ * 是否开启健康检查。
1904
+ 注意:此字段可能返回 null,表示取不到有效值。
1905
+ */
1906
+ EnableHealthCheck?: boolean;
1907
+ /**
1908
+ * 实例是否健康。
1909
+ 注意:此字段可能返回 null,表示取不到有效值。
1910
+ */
1911
+ Healthy?: boolean;
1912
+ /**
1913
+ * 实例是否隔离。
1914
+ 注意:此字段可能返回 null,表示取不到有效值。
1915
+ */
1916
+ Isolate?: boolean;
1917
+ /**
1918
+ * 实例创建时间。
1919
+ 注意:此字段可能返回 null,表示取不到有效值。
1920
+ */
1921
+ CreateTime?: string;
1922
+ /**
1923
+ * 实例修改时间。
1924
+ 注意:此字段可能返回 null,表示取不到有效值。
1925
+ */
1926
+ ModifyTime?: string;
1927
+ /**
1928
+ * 元数据数组。
1929
+ 注意:此字段可能返回 null,表示取不到有效值。
1930
+ */
1931
+ Metadatas?: Array<Metadata>;
1932
+ /**
1933
+ * 上报心跳间隔。
1934
+ 注意:此字段可能返回 null,表示取不到有效值。
1935
+ */
1936
+ Ttl?: number;
1937
+ /**
1938
+ * 版本信息。
1939
+ 注意:此字段可能返回 null,表示取不到有效值。
1940
+ */
1941
+ InstanceVersion?: string;
1942
+ /**
1943
+ * 状态信息
1944
+ 注意:此字段可能返回 null,表示取不到有效值。
1945
+ */
1946
+ HealthStatus?: string;
1947
+ /**
1948
+ * 描述
1949
+ 注意:此字段可能返回 null,表示取不到有效值。
1950
+ */
1951
+ Comment?: string;
1952
+ }
1390
1953
  /**
1391
1954
  * Nacos副本信息
1392
1955
  */
@@ -1451,32 +2014,24 @@ export interface CreateGovernanceInstancesResponse {
1451
2014
  /**
1452
2015
  * 创建是否成功。
1453
2016
  */
1454
- Result: boolean;
2017
+ Result?: boolean;
1455
2018
  /**
1456
2019
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1457
2020
  */
1458
2021
  RequestId?: string;
1459
2022
  }
1460
2023
  /**
1461
- * DescribeCloudNativeAPIGatewayNodes请求参数结构体
2024
+ * CreateGovernanceNamespaces请求参数结构体
1462
2025
  */
1463
- export interface DescribeCloudNativeAPIGatewayNodesRequest {
1464
- /**
1465
- * 云原生API网关实例ID。
1466
- */
1467
- GatewayId: string;
1468
- /**
1469
- * 实例分组id
1470
- */
1471
- GroupId?: string;
2026
+ export interface CreateGovernanceNamespacesRequest {
1472
2027
  /**
1473
- * 翻页获取多少个
2028
+ * tse 实例id。
1474
2029
  */
1475
- Limit?: number;
2030
+ InstanceId: string;
1476
2031
  /**
1477
- * 翻页从第几个开始获取
2032
+ * 命名空间信息。
1478
2033
  */
1479
- Offset?: number;
2034
+ GovernanceNamespaces: Array<GovernanceNamespaceInput>;
1480
2035
  }
1481
2036
  /**
1482
2037
  * CreateCloudNativeAPIGatewayCanaryRule返回参数结构体
@@ -1523,14 +2078,50 @@ export interface CreateGatewayServiceResult {
1523
2078
  ServiceId?: string;
1524
2079
  }
1525
2080
  /**
1526
- * 云原生网关证书
2081
+ * 服务别名结构信息
1527
2082
  */
1528
- export interface KongCertificate {
2083
+ export interface GovernanceAlias {
1529
2084
  /**
1530
- *
2085
+ * 服务别名
2086
+ */
2087
+ Alias?: string;
2088
+ /**
2089
+ * 服务别名命名空间
2090
+ */
2091
+ AliasNamespace?: string;
2092
+ /**
2093
+ * 服务别名指向的服务名
2094
+ */
2095
+ Service?: string;
2096
+ /**
2097
+ * 服务别名指向的服务命名空间
2098
+ */
2099
+ Namespace?: string;
2100
+ /**
2101
+ * 服务别名的描述信息
1531
2102
  注意:此字段可能返回 null,表示取不到有效值。
1532
2103
  */
1533
- Cert?: KongCertificatesPreview;
2104
+ Comment?: string;
2105
+ /**
2106
+ * 服务别名创建时间
2107
+ 注意:此字段可能返回 null,表示取不到有效值。
2108
+ */
2109
+ CreateTime?: string;
2110
+ /**
2111
+ * 服务别名修改时间
2112
+ 注意:此字段可能返回 null,表示取不到有效值。
2113
+ */
2114
+ ModifyTime?: string;
2115
+ /**
2116
+ * 服务别名ID
2117
+ 注意:此字段可能返回 null,表示取不到有效值。
2118
+ */
2119
+ Id?: string;
2120
+ /**
2121
+ * 该服务别名是否可以编辑
2122
+ 注意:此字段可能返回 null,表示取不到有效值。
2123
+ */
2124
+ Editable?: boolean;
1534
2125
  }
1535
2126
  /**
1536
2127
  * 键值对
@@ -1605,7 +2196,7 @@ export interface DeleteGovernanceInstancesResponse {
1605
2196
  /**
1606
2197
  * 操作是否成功。
1607
2198
  */
1608
- Result: boolean;
2199
+ Result?: boolean;
1609
2200
  /**
1610
2201
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1611
2202
  */
@@ -1879,6 +2470,57 @@ export interface DeleteNativeGatewayServerGroupRequest {
1879
2470
  */
1880
2471
  GroupId: string;
1881
2472
  }
2473
+ /**
2474
+ * DeleteGovernanceAliases返回参数结构体
2475
+ */
2476
+ export interface DeleteGovernanceAliasesResponse {
2477
+ /**
2478
+ * 创建是否成功。
2479
+ */
2480
+ Result?: boolean;
2481
+ /**
2482
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2483
+ */
2484
+ RequestId?: string;
2485
+ }
2486
+ /**
2487
+ * RollbackConfigFileReleases返回参数结构体
2488
+ */
2489
+ export interface RollbackConfigFileReleasesResponse {
2490
+ /**
2491
+ * 回滚结果
2492
+ */
2493
+ Result?: boolean;
2494
+ /**
2495
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2496
+ */
2497
+ RequestId?: string;
2498
+ }
2499
+ /**
2500
+ * ModifyUpstreamNodeStatus请求参数结构体
2501
+ */
2502
+ export interface ModifyUpstreamNodeStatusRequest {
2503
+ /**
2504
+ * 网关实例ID
2505
+ */
2506
+ GatewayId: string;
2507
+ /**
2508
+ * 服务名称
2509
+ */
2510
+ ServiceName: string;
2511
+ /**
2512
+ * 访问IP地址或域名
2513
+ */
2514
+ Host: string;
2515
+ /**
2516
+ * 访问端口
2517
+ */
2518
+ Port: number;
2519
+ /**
2520
+ * HEALTHY或UNHEALTHY
2521
+ */
2522
+ Status: string;
2523
+ }
1882
2524
  /**
1883
2525
  * ModifyCloudNativeAPIGatewayRoute返回参数结构体
1884
2526
  */
@@ -1888,6 +2530,110 @@ export interface ModifyCloudNativeAPIGatewayRouteResponse {
1888
2530
  */
1889
2531
  RequestId?: string;
1890
2532
  }
2533
+ /**
2534
+ * 配置文件发布历史
2535
+ */
2536
+ export interface ConfigFileReleaseHistory {
2537
+ /**
2538
+ * 配置文件发布历史记录id
2539
+ 注意:此字段可能返回 null,表示取不到有效值。
2540
+ */
2541
+ Id?: number;
2542
+ /**
2543
+ * 配置文件发布历史名称
2544
+ 注意:此字段可能返回 null,表示取不到有效值。
2545
+ */
2546
+ Name?: string;
2547
+ /**
2548
+ * 配置文件发布历史命名空间
2549
+ 注意:此字段可能返回 null,表示取不到有效值。
2550
+ */
2551
+ Namespace?: string;
2552
+ /**
2553
+ * 配置文件发布历史组
2554
+ 注意:此字段可能返回 null,表示取不到有效值。
2555
+ */
2556
+ Group?: string;
2557
+ /**
2558
+ * 配置文件发布历史名称
2559
+ 注意:此字段可能返回 null,表示取不到有效值。
2560
+ */
2561
+ FileName?: string;
2562
+ /**
2563
+ * 配置文件发布历史内容
2564
+ 注意:此字段可能返回 null,表示取不到有效值。
2565
+ */
2566
+ Content?: string;
2567
+ /**
2568
+ * 配置文件发布历史格式
2569
+ 注意:此字段可能返回 null,表示取不到有效值。
2570
+ */
2571
+ Format?: string;
2572
+ /**
2573
+ * 配置文件发布历史注释
2574
+ 注意:此字段可能返回 null,表示取不到有效值。
2575
+ */
2576
+ Comment?: string;
2577
+ /**
2578
+ * 配置文件发布历史Md5
2579
+ 注意:此字段可能返回 null,表示取不到有效值。
2580
+ */
2581
+ Md5?: string;
2582
+ /**
2583
+ * 配置文件发布历史类型
2584
+ 注意:此字段可能返回 null,表示取不到有效值。
2585
+ */
2586
+ Type?: string;
2587
+ /**
2588
+ * 配置文件发布历史状态
2589
+ 注意:此字段可能返回 null,表示取不到有效值。
2590
+ */
2591
+ Status?: string;
2592
+ /**
2593
+ * 配置文件发布历史标签组
2594
+ 注意:此字段可能返回 null,表示取不到有效值。
2595
+ */
2596
+ Tags?: Array<ConfigFileTag>;
2597
+ /**
2598
+ * 配置文件发布创建时间
2599
+ 注意:此字段可能返回 null,表示取不到有效值。
2600
+ */
2601
+ CreateTime?: string;
2602
+ /**
2603
+ * 配置文件发布创建者
2604
+ 注意:此字段可能返回 null,表示取不到有效值。
2605
+ */
2606
+ CreateBy?: string;
2607
+ /**
2608
+ * 配置文件发布修改时间
2609
+ 注意:此字段可能返回 null,表示取不到有效值。
2610
+ */
2611
+ ModifyTime?: string;
2612
+ /**
2613
+ * 配置文件发布修改者
2614
+ 注意:此字段可能返回 null,表示取不到有效值。
2615
+ */
2616
+ ModifyBy?: string;
2617
+ /**
2618
+ * 发布描述
2619
+ 注意:此字段可能返回 null,表示取不到有效值。
2620
+ */
2621
+ ReleaseDescription?: string;
2622
+ /**
2623
+ * 原因,用于失败时原因展示
2624
+ 注意:此字段可能返回 null,表示取不到有效值。
2625
+ */
2626
+ ReleaseReason?: string;
2627
+ }
2628
+ /**
2629
+ * OpenWafProtection返回参数结构体
2630
+ */
2631
+ export interface OpenWafProtectionResponse {
2632
+ /**
2633
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2634
+ */
2635
+ RequestId?: string;
2636
+ }
1891
2637
  /**
1892
2638
  * 删除网关实例结果
1893
2639
  */
@@ -1984,9 +2730,17 @@ export interface DeleteCloudNativeAPIGatewayServiceRateLimitRequest {
1984
2730
  Name: string;
1985
2731
  }
1986
2732
  /**
1987
- * OpenWafProtection返回参数结构体
2733
+ * DescribeConfigFileReleases返回参数结构体
1988
2734
  */
1989
- export interface OpenWafProtectionResponse {
2735
+ export interface DescribeConfigFileReleasesResponse {
2736
+ /**
2737
+ * 总条数
2738
+ */
2739
+ TotalCount?: number;
2740
+ /**
2741
+ * 发布列表
2742
+ */
2743
+ Releases?: Array<ConfigFileRelease>;
1990
2744
  /**
1991
2745
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1992
2746
  */
@@ -2002,6 +2756,19 @@ export interface KongPassiveHealthCheck {
2002
2756
  */
2003
2757
  Type?: string;
2004
2758
  }
2759
+ /**
2760
+ * DescribeCloudNativeAPIGatewayConfig返回参数结构体
2761
+ */
2762
+ export interface DescribeCloudNativeAPIGatewayConfigResponse {
2763
+ /**
2764
+ * 获取云原生API网关响应结果。
2765
+ */
2766
+ Result?: DescribeCloudNativeAPIGatewayConfigResult;
2767
+ /**
2768
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2769
+ */
2770
+ RequestId?: string;
2771
+ }
2005
2772
  /**
2006
2773
  * DescribeCloudNativeAPIGateway请求参数结构体
2007
2774
  */
@@ -2011,6 +2778,24 @@ export interface DescribeCloudNativeAPIGatewayRequest {
2011
2778
  */
2012
2779
  GatewayId: string;
2013
2780
  }
2781
+ /**
2782
+ * 私有网络信息
2783
+ */
2784
+ export interface VpcInfo {
2785
+ /**
2786
+ * Vpc Id
2787
+ */
2788
+ VpcId: string;
2789
+ /**
2790
+ * 子网ID
2791
+ */
2792
+ SubnetId: string;
2793
+ /**
2794
+ * 内网访问地址
2795
+ 注意:此字段可能返回 null,表示取不到有效值。
2796
+ */
2797
+ IntranetAddress?: string;
2798
+ }
2014
2799
  /**
2015
2800
  * 云原生API网关vpc配置。
2016
2801
  */
@@ -2042,150 +2827,325 @@ export interface CloudAPIGatewayCanaryRuleList {
2042
2827
  TotalCount?: number;
2043
2828
  }
2044
2829
  /**
2045
- * ModifyUpstreamNodeStatus请求参数结构体
2046
- */
2047
- export interface ModifyUpstreamNodeStatusRequest {
2048
- /**
2049
- * 网关实例ID
2050
- */
2051
- GatewayId: string;
2052
- /**
2053
- * 服务名称
2054
- */
2055
- ServiceName: string;
2056
- /**
2057
- * 访问IP地址或域名
2058
- */
2059
- Host: string;
2060
- /**
2061
- * 访问端口
2062
- */
2063
- Port: number;
2064
- /**
2065
- * HEALTHY或UNHEALTHY
2066
- */
2067
- Status: string;
2068
- }
2069
- /**
2070
- * DescribeGovernanceInstances返回参数结构体
2830
+ * 治理中心服务信息。
2071
2831
  */
2072
- export interface DescribeGovernanceInstancesResponse {
2073
- /**
2074
- * 服务实例总数量。
2075
- */
2076
- TotalCount: number;
2077
- /**
2078
- * 服务里实例列表。
2079
- */
2080
- Content: Array<GovernanceInstance>;
2832
+ export interface GovernanceService {
2081
2833
  /**
2082
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2834
+ * 服务名称。
2083
2835
  */
2084
- RequestId?: string;
2085
- }
2086
- /**
2087
- * DescribeCloudNativeAPIGatewayConfig返回参数结构体
2088
- */
2089
- export interface DescribeCloudNativeAPIGatewayConfigResponse {
2836
+ Name?: string;
2090
2837
  /**
2091
- * 获取云原生API网关响应结果。
2838
+ * 命名空间名称。
2092
2839
  */
2093
- Result?: DescribeCloudNativeAPIGatewayConfigResult;
2840
+ Namespace?: string;
2094
2841
  /**
2095
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2842
+ * 元数据信息数组。
2843
+ 注意:此字段可能返回 null,表示取不到有效值。
2096
2844
  */
2097
- RequestId?: string;
2098
- }
2099
- /**
2100
- * 云原生网关路由信息
2101
- */
2102
- export interface KongRoutePreview {
2845
+ Metadatas?: Array<Metadata>;
2103
2846
  /**
2104
- * 服务ID
2847
+ * 描述信息。
2105
2848
  注意:此字段可能返回 null,表示取不到有效值。
2106
2849
  */
2107
- ID: string;
2850
+ Comment?: string;
2108
2851
  /**
2109
- * 服务名字
2852
+ * 创建时间。
2110
2853
  注意:此字段可能返回 null,表示取不到有效值。
2111
2854
  */
2112
- Name?: string;
2855
+ CreateTime?: string;
2113
2856
  /**
2114
- *
2857
+ * 修改时间。
2115
2858
  注意:此字段可能返回 null,表示取不到有效值。
2116
2859
  */
2117
- Methods?: Array<string>;
2860
+ ModifyTime?: string;
2118
2861
  /**
2119
- *
2862
+ * 服务所属部门。
2120
2863
  注意:此字段可能返回 null,表示取不到有效值。
2121
2864
  */
2122
- Paths?: Array<string>;
2865
+ Department?: string;
2123
2866
  /**
2124
- *
2867
+ * 服务所属业务。
2125
2868
  注意:此字段可能返回 null,表示取不到有效值。
2126
2869
  */
2127
- Hosts?: Array<string>;
2870
+ Business?: string;
2128
2871
  /**
2129
- *
2872
+ * 健康服务实例数
2130
2873
  注意:此字段可能返回 null,表示取不到有效值。
2131
2874
  */
2132
- Protocols?: Array<string>;
2875
+ HealthyInstanceCount?: number;
2133
2876
  /**
2134
- *
2877
+ * 服务实例总数
2135
2878
  注意:此字段可能返回 null,表示取不到有效值。
2136
2879
  */
2137
- PreserveHost?: boolean;
2880
+ TotalInstanceCount?: number;
2138
2881
  /**
2139
- *
2882
+ * 服务ID
2140
2883
  注意:此字段可能返回 null,表示取不到有效值。
2141
2884
  */
2142
- HttpsRedirectStatusCode?: number;
2885
+ Id?: string;
2143
2886
  /**
2144
- *
2887
+ * 是否可以编辑
2145
2888
  注意:此字段可能返回 null,表示取不到有效值。
2146
2889
  */
2147
- StripPath?: boolean;
2890
+ Editable?: boolean;
2148
2891
  /**
2149
- *
2892
+ * 可以编辑该资源的用户ID
2150
2893
  注意:此字段可能返回 null,表示取不到有效值。
2151
2894
  */
2152
- CreatedTime?: string;
2895
+ UserIds?: Array<string>;
2153
2896
  /**
2154
- * 是否开启了强制HTTPS
2897
+ * 可以编辑该资源的用户组ID
2155
2898
  注意:此字段可能返回 null,表示取不到有效值。
2156
- * @deprecated
2157
2899
  */
2158
- ForceHttps?: boolean;
2900
+ GroupIds?: Array<string>;
2159
2901
  /**
2160
- * 服务名
2902
+ * 移除可以编辑该资源的用户ID
2161
2903
  注意:此字段可能返回 null,表示取不到有效值。
2162
2904
  */
2163
- ServiceName?: string;
2905
+ RemoveUserIds?: Array<string>;
2164
2906
  /**
2165
- * 服务ID
2907
+ * 移除可以编辑该资源的用户组ID
2166
2908
  注意:此字段可能返回 null,表示取不到有效值。
2167
2909
  */
2168
- ServiceID?: string;
2910
+ RemoveGroupIds?: Array<string>;
2169
2911
  /**
2170
- * 目的端口
2912
+ * 该服务对哪些命名空间可见
2171
2913
  注意:此字段可能返回 null,表示取不到有效值。
2172
2914
  */
2173
- DestinationPorts?: Array<number | bigint>;
2915
+ ExportTo?: Array<string>;
2174
2916
  /**
2175
- * 路由的Headers
2917
+ * 该服务信息摘要签名
2176
2918
  注意:此字段可能返回 null,表示取不到有效值。
2177
2919
  */
2178
- Headers?: Array<KVMapping>;
2920
+ Revision?: string;
2179
2921
  }
2180
2922
  /**
2181
- * kong证书列表
2923
+ * ModifyCloudNativeAPIGatewayCertificate返回参数结构体
2182
2924
  */
2183
- export interface KongCertificatesList {
2925
+ export interface ModifyCloudNativeAPIGatewayCertificateResponse {
2184
2926
  /**
2185
- * 证书列表总数
2186
- 注意:此字段可能返回 null,表示取不到有效值。
2927
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2187
2928
  */
2188
- Total?: number;
2929
+ RequestId?: string;
2930
+ }
2931
+ /**
2932
+ * DescribeGovernanceInstances返回参数结构体
2933
+ */
2934
+ export interface DescribeGovernanceInstancesResponse {
2935
+ /**
2936
+ * 服务实例总数量。
2937
+ */
2938
+ TotalCount?: number;
2939
+ /**
2940
+ * 服务里实例列表。
2941
+ */
2942
+ Content?: Array<GovernanceInstance>;
2943
+ /**
2944
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2945
+ */
2946
+ RequestId?: string;
2947
+ }
2948
+ /**
2949
+ * 配置文件发布
2950
+ */
2951
+ export interface ConfigFileRelease {
2952
+ /**
2953
+ * 配置文件发布id
2954
+ 注意:此字段可能返回 null,表示取不到有效值。
2955
+ */
2956
+ Id?: number;
2957
+ /**
2958
+ * 配置文件发布名称
2959
+ 注意:此字段可能返回 null,表示取不到有效值。
2960
+ */
2961
+ Name?: string;
2962
+ /**
2963
+ * 配置文件发布命名空间
2964
+ 注意:此字段可能返回 null,表示取不到有效值。
2965
+ */
2966
+ Namespace?: string;
2967
+ /**
2968
+ * 配置文件发布组
2969
+ 注意:此字段可能返回 null,表示取不到有效值。
2970
+ */
2971
+ Group?: string;
2972
+ /**
2973
+ * 配置文件发布文件名称
2974
+ 注意:此字段可能返回 null,表示取不到有效值。
2975
+ */
2976
+ FileName?: string;
2977
+ /**
2978
+ * 配置文件发布内容
2979
+ 注意:此字段可能返回 null,表示取不到有效值。
2980
+ */
2981
+ Content?: string;
2982
+ /**
2983
+ * 配置文件发布注释
2984
+ 注意:此字段可能返回 null,表示取不到有效值。
2985
+ */
2986
+ Comment?: string;
2987
+ /**
2988
+ * 配置文件发布Md5
2989
+ 注意:此字段可能返回 null,表示取不到有效值。
2990
+ */
2991
+ Md5?: string;
2992
+ /**
2993
+ * 配置文件发布版本
2994
+ 注意:此字段可能返回 null,表示取不到有效值。
2995
+ */
2996
+ Version?: number;
2997
+ /**
2998
+ * 配置文件发布创建时间
2999
+ 注意:此字段可能返回 null,表示取不到有效值。
3000
+ */
3001
+ CreateTime?: string;
3002
+ /**
3003
+ * 配置文件发布创建者
3004
+ 注意:此字段可能返回 null,表示取不到有效值。
3005
+ */
3006
+ CreateBy?: string;
3007
+ /**
3008
+ * 配置文件发布修改时间
3009
+ 注意:此字段可能返回 null,表示取不到有效值。
3010
+ */
3011
+ ModifyTime?: string;
3012
+ /**
3013
+ * 配置文件发布修改者
3014
+ 注意:此字段可能返回 null,表示取不到有效值。
3015
+ */
3016
+ ModifyBy?: string;
3017
+ /**
3018
+ * 发布描述
3019
+ 注意:此字段可能返回 null,表示取不到有效值。
3020
+ */
3021
+ ReleaseDescription?: string;
3022
+ /**
3023
+ * 是否生效
3024
+ 注意:此字段可能返回 null,表示取不到有效值。
3025
+ */
3026
+ Active?: boolean;
3027
+ /**
3028
+ * 格式
3029
+ 注意:此字段可能返回 null,表示取不到有效值。
3030
+ */
3031
+ Format?: string;
3032
+ }
3033
+ /**
3034
+ * ModifyConfigFiles请求参数结构体
3035
+ */
3036
+ export interface ModifyConfigFilesRequest {
3037
+ /**
3038
+ * ins-df344df5
3039
+ */
3040
+ InstanceId: string;
3041
+ /**
3042
+ * 配置文件列表
3043
+ */
3044
+ ConfigFile: ConfigFile;
3045
+ }
3046
+ /**
3047
+ * DeleteGovernanceNamespaces请求参数结构体
3048
+ */
3049
+ export interface DeleteGovernanceNamespacesRequest {
3050
+ /**
3051
+ * tse 实例 id。
3052
+ */
3053
+ InstanceId: string;
3054
+ /**
3055
+ * 命名空间信息。
3056
+ */
3057
+ GovernanceNamespaces: Array<GovernanceNamespaceInput>;
3058
+ }
3059
+ /**
3060
+ * 云原生网关路由信息
3061
+ */
3062
+ export interface KongRoutePreview {
3063
+ /**
3064
+ * 服务ID
3065
+ 注意:此字段可能返回 null,表示取不到有效值。
3066
+ */
3067
+ ID: string;
3068
+ /**
3069
+ * 服务名字
3070
+ 注意:此字段可能返回 null,表示取不到有效值。
3071
+ */
3072
+ Name?: string;
3073
+ /**
3074
+ * 无
3075
+ 注意:此字段可能返回 null,表示取不到有效值。
3076
+ */
3077
+ Methods?: Array<string>;
3078
+ /**
3079
+ * 无
3080
+ 注意:此字段可能返回 null,表示取不到有效值。
3081
+ */
3082
+ Paths?: Array<string>;
3083
+ /**
3084
+ * 无
3085
+ 注意:此字段可能返回 null,表示取不到有效值。
3086
+ */
3087
+ Hosts?: Array<string>;
3088
+ /**
3089
+ * 无
3090
+ 注意:此字段可能返回 null,表示取不到有效值。
3091
+ */
3092
+ Protocols?: Array<string>;
3093
+ /**
3094
+ * 无
3095
+ 注意:此字段可能返回 null,表示取不到有效值。
3096
+ */
3097
+ PreserveHost?: boolean;
3098
+ /**
3099
+ * 无
3100
+ 注意:此字段可能返回 null,表示取不到有效值。
3101
+ */
3102
+ HttpsRedirectStatusCode?: number;
3103
+ /**
3104
+ * 无
3105
+ 注意:此字段可能返回 null,表示取不到有效值。
3106
+ */
3107
+ StripPath?: boolean;
3108
+ /**
3109
+ * 无
3110
+ 注意:此字段可能返回 null,表示取不到有效值。
3111
+ */
3112
+ CreatedTime?: string;
3113
+ /**
3114
+ * 是否开启了强制HTTPS
3115
+ 注意:此字段可能返回 null,表示取不到有效值。
3116
+ * @deprecated
3117
+ */
3118
+ ForceHttps?: boolean;
3119
+ /**
3120
+ * 服务名
3121
+ 注意:此字段可能返回 null,表示取不到有效值。
3122
+ */
3123
+ ServiceName?: string;
3124
+ /**
3125
+ * 服务ID
3126
+ 注意:此字段可能返回 null,表示取不到有效值。
3127
+ */
3128
+ ServiceID?: string;
3129
+ /**
3130
+ * 目的端口
3131
+ 注意:此字段可能返回 null,表示取不到有效值。
3132
+ */
3133
+ DestinationPorts?: Array<number | bigint>;
3134
+ /**
3135
+ * 路由的Headers
3136
+ 注意:此字段可能返回 null,表示取不到有效值。
3137
+ */
3138
+ Headers?: Array<KVMapping>;
3139
+ }
3140
+ /**
3141
+ * kong证书列表
3142
+ */
3143
+ export interface KongCertificatesList {
3144
+ /**
3145
+ * 证书列表总数
3146
+ 注意:此字段可能返回 null,表示取不到有效值。
3147
+ */
3148
+ Total?: number;
2189
3149
  /**
2190
3150
  * 无
2191
3151
  注意:此字段可能返回 null,表示取不到有效值。
@@ -2198,6 +3158,19 @@ export interface KongCertificatesList {
2198
3158
  */
2199
3159
  Pages?: number;
2200
3160
  }
3161
+ /**
3162
+ * ModifyGovernanceNamespaces返回参数结构体
3163
+ */
3164
+ export interface ModifyGovernanceNamespacesResponse {
3165
+ /**
3166
+ * 操作是否成功。
3167
+ */
3168
+ Result?: boolean;
3169
+ /**
3170
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3171
+ */
3172
+ RequestId?: string;
3173
+ }
2201
3174
  /**
2202
3175
  * 云原生网关Tse 限流插件配置
2203
3176
  */
@@ -2271,6 +3244,31 @@ export interface CloudNativeAPIGatewayRateLimitDetail {
2271
3244
  */
2272
3245
  LineUpTime?: number;
2273
3246
  }
3247
+ /**
3248
+ * DescribeConfigFileRelease请求参数结构体
3249
+ */
3250
+ export interface DescribeConfigFileReleaseRequest {
3251
+ /**
3252
+ * TSE实例id
3253
+ */
3254
+ InstanceId: string;
3255
+ /**
3256
+ * 命名空间名称
3257
+ */
3258
+ Namespace: string;
3259
+ /**
3260
+ * 配置分组名称
3261
+ */
3262
+ Group: string;
3263
+ /**
3264
+ * 配置文件名称
3265
+ */
3266
+ Name: string;
3267
+ /**
3268
+ * 配置文件发布名称
3269
+ */
3270
+ ReleaseName?: string;
3271
+ }
2274
3272
  /**
2275
3273
  * CreateCloudNativeAPIGatewayRoute返回参数结构体
2276
3274
  */
@@ -2306,6 +3304,19 @@ export interface DescribeCloudNativeAPIGatewayConfigRequest {
2306
3304
  */
2307
3305
  GroupId?: string;
2308
3306
  }
3307
+ /**
3308
+ * ModifyConfigFileGroup请求参数结构体
3309
+ */
3310
+ export interface ModifyConfigFileGroupRequest {
3311
+ /**
3312
+ * tse实例id
3313
+ */
3314
+ InstanceId: string;
3315
+ /**
3316
+ * 配置文件组
3317
+ */
3318
+ ConfigFileGroup: ConfigFileGroup;
3319
+ }
2309
3320
  /**
2310
3321
  * Kong Upstream中的Target
2311
3322
  */
@@ -2352,9 +3363,26 @@ export interface KongTarget {
2352
3363
  CvmInstanceName?: string;
2353
3364
  }
2354
3365
  /**
2355
- * UpdateEngineInternetAccess返回参数结构体
3366
+ * UnbindAutoScalerResourceStrategyFromGroups返回参数结构体
2356
3367
  */
2357
- export interface UpdateEngineInternetAccessResponse {
3368
+ export interface UnbindAutoScalerResourceStrategyFromGroupsResponse {
3369
+ /**
3370
+ * 是否成功
3371
+ */
3372
+ Result: boolean;
3373
+ /**
3374
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3375
+ */
3376
+ RequestId?: string;
3377
+ }
3378
+ /**
3379
+ * DeleteConfigFiles返回参数结构体
3380
+ */
3381
+ export interface DeleteConfigFilesResponse {
3382
+ /**
3383
+ * 修改是否成功
3384
+ */
3385
+ Result?: boolean;
2358
3386
  /**
2359
3387
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2360
3388
  */
@@ -2391,21 +3419,29 @@ export interface CreateGovernanceInstancesRequest {
2391
3419
  GovernanceInstances: Array<GovernanceInstanceInput>;
2392
3420
  }
2393
3421
  /**
2394
- * DescribeNacosServerInterfaces返回参数结构体
3422
+ * 配置发布删除
2395
3423
  */
2396
- export interface DescribeNacosServerInterfacesResponse {
3424
+ export interface ConfigFileReleaseDeletion {
2397
3425
  /**
2398
- * 接口总个数
3426
+ * 命名空间
3427
+ 注意:此字段可能返回 null,表示取不到有效值。
2399
3428
  */
2400
- TotalCount?: number;
3429
+ Namespace?: string;
2401
3430
  /**
2402
- * 接口列表
3431
+ * 配置分组
3432
+ 注意:此字段可能返回 null,表示取不到有效值。
2403
3433
  */
2404
- Content?: Array<NacosServerInterface>;
3434
+ Group?: string;
2405
3435
  /**
2406
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3436
+ * 文件名称
3437
+ 注意:此字段可能返回 null,表示取不到有效值。
2407
3438
  */
2408
- RequestId?: string;
3439
+ FileName?: string;
3440
+ /**
3441
+ * 发布版本
3442
+ 注意:此字段可能返回 null,表示取不到有效值。
3443
+ */
3444
+ ReleaseVersion?: string;
2409
3445
  }
2410
3446
  /**
2411
3447
  * 获取云原生API网关实例网络配置结果。
@@ -2450,6 +3486,19 @@ export interface KVMapping {
2450
3486
  */
2451
3487
  Value?: string;
2452
3488
  }
3489
+ /**
3490
+ * ModifyConfigFiles返回参数结构体
3491
+ */
3492
+ export interface ModifyConfigFilesResponse {
3493
+ /**
3494
+ * 修改是否成功
3495
+ */
3496
+ Result?: boolean;
3497
+ /**
3498
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3499
+ */
3500
+ RequestId?: string;
3501
+ }
2453
3502
  /**
2454
3503
  * BindAutoScalerResourceStrategyToGroups请求参数结构体
2455
3504
  */
@@ -2468,24 +3517,13 @@ export interface BindAutoScalerResourceStrategyToGroupsRequest {
2468
3517
  GroupIds: Array<string>;
2469
3518
  }
2470
3519
  /**
2471
- * 云原生网关限流插件自定义响应
3520
+ * ModifyNetworkAccessStrategy返回参数结构体
2472
3521
  */
2473
- export interface RateLimitResponse {
2474
- /**
2475
- * 自定义响应体
2476
- 注意:此字段可能返回 null,表示取不到有效值。
2477
- */
2478
- Body?: string;
2479
- /**
2480
- * Headers
2481
- 注意:此字段可能返回 null,表示取不到有效值。
2482
- */
2483
- Headers?: Array<KVMapping>;
3522
+ export interface ModifyNetworkAccessStrategyResponse {
2484
3523
  /**
2485
- * http状态码
2486
- 注意:此字段可能返回 null,表示取不到有效值。
3524
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2487
3525
  */
2488
- HttpStatus?: number;
3526
+ RequestId?: string;
2489
3527
  }
2490
3528
  /**
2491
3529
  * DescribeCloudNativeAPIGatewayServiceRateLimit返回参数结构体
@@ -2501,15 +3539,15 @@ export interface DescribeCloudNativeAPIGatewayServiceRateLimitResponse {
2501
3539
  RequestId?: string;
2502
3540
  }
2503
3541
  /**
2504
- * DeleteCloudNativeAPIGatewayService请求参数结构体
3542
+ * DeleteCloudNativeAPIGatewayRoute请求参数结构体
2505
3543
  */
2506
- export interface DeleteCloudNativeAPIGatewayServiceRequest {
3544
+ export interface DeleteCloudNativeAPIGatewayRouteRequest {
2507
3545
  /**
2508
3546
  * 网关ID
2509
3547
  */
2510
3548
  GatewayId: string;
2511
3549
  /**
2512
- * 服务名字,服务ID
3550
+ * 路由的ID或名字,不支持名称“未命名”
2513
3551
  */
2514
3552
  Name: string;
2515
3553
  }
@@ -2554,24 +3592,74 @@ export interface CreateCloudNativeAPIGatewayCertificateResponse {
2554
3592
  RequestId?: string;
2555
3593
  }
2556
3594
  /**
2557
- * 存储的额外选项
3595
+ * 治理中心命名空间
2558
3596
  */
2559
- export interface StorageOption {
3597
+ export interface GovernanceNamespace {
2560
3598
  /**
2561
- * 存储对象,分为snap和txn两种
3599
+ * 命名空间名称。
2562
3600
  注意:此字段可能返回 null,表示取不到有效值。
2563
3601
  */
2564
3602
  Name?: string;
2565
3603
  /**
2566
- * 存储类型,分为三类CLOUD_PREMIUM/CLOUD_SSD/CLOUD_SSD_PLUS,分别对应高性能云硬盘、SSD云硬盘、增强型SSD云硬盘
3604
+ * 命名空间描述信息。
2567
3605
  注意:此字段可能返回 null,表示取不到有效值。
2568
3606
  */
2569
- Type?: string;
3607
+ Comment?: string;
2570
3608
  /**
2571
- * 存储容量,[50, 3200]的范围
3609
+ * 创建时间。
2572
3610
  注意:此字段可能返回 null,表示取不到有效值。
2573
3611
  */
2574
- Capacity?: number;
3612
+ CreateTime?: string;
3613
+ /**
3614
+ * 修改时间。
3615
+ 注意:此字段可能返回 null,表示取不到有效值。
3616
+ */
3617
+ ModifyTime?: string;
3618
+ /**
3619
+ * 命名空间下总服务数据量
3620
+ 注意:此字段可能返回 null,表示取不到有效值。
3621
+ */
3622
+ TotalServiceCount?: number;
3623
+ /**
3624
+ * 命名空间下总健康实例数量
3625
+ 注意:此字段可能返回 null,表示取不到有效值。
3626
+ */
3627
+ TotalHealthInstanceCount?: number;
3628
+ /**
3629
+ * 命名空间下总实例数量
3630
+ 注意:此字段可能返回 null,表示取不到有效值。
3631
+ */
3632
+ TotalInstanceCount?: number;
3633
+ /**
3634
+ * 命名空间ID
3635
+ 注意:此字段可能返回 null,表示取不到有效值。
3636
+ */
3637
+ Id?: string;
3638
+ /**
3639
+ * 是否可以编辑
3640
+ 注意:此字段可能返回 null,表示取不到有效值。
3641
+ */
3642
+ Editable?: boolean;
3643
+ /**
3644
+ * 可以操作此命名空间的用户ID列表
3645
+ 注意:此字段可能返回 null,表示取不到有效值。
3646
+ */
3647
+ UserIds?: Array<string>;
3648
+ /**
3649
+ * 可以操作此命名空间的用户组ID列表
3650
+ 注意:此字段可能返回 null,表示取不到有效值。
3651
+ */
3652
+ GroupIds?: Array<string>;
3653
+ /**
3654
+ * 移除可以操作此命名空间的用户ID列表
3655
+ 注意:此字段可能返回 null,表示取不到有效值。
3656
+ */
3657
+ RemoveUserIds?: Array<string>;
3658
+ /**
3659
+ * 移除可以操作此命名空间的用户组ID列表
3660
+ 注意:此字段可能返回 null,表示取不到有效值。
3661
+ */
3662
+ RemoveGroupIds?: Array<string>;
2575
3663
  }
2576
3664
  /**
2577
3665
  * 环境具体信息
@@ -2782,81 +3870,114 @@ export interface DeleteGovernanceInstancesRequest {
2782
3870
  GovernanceInstances: Array<GovernanceInstanceUpdate>;
2783
3871
  }
2784
3872
  /**
2785
- * 治理中心实例信息。
3873
+ * DeleteGovernanceInstancesByHost请求参数结构体
2786
3874
  */
2787
- export interface GovernanceInstance {
3875
+ export interface DeleteGovernanceInstancesByHostRequest {
2788
3876
  /**
2789
- * 实例id。
3877
+ * tse实例id。
2790
3878
  */
2791
- Id: string;
3879
+ InstanceId: string;
2792
3880
  /**
2793
- * 实例所在服务名。
3881
+ * 要删除的服务实例信息。
2794
3882
  */
2795
- Service: string;
3883
+ GovernanceInstances: Array<GovernanceInstanceUpdate>;
3884
+ }
3885
+ /**
3886
+ * 存储的额外选项
3887
+ */
3888
+ export interface StorageOption {
2796
3889
  /**
2797
- * 实例所在命名空间名。
3890
+ * 存储对象,分为snap和txn两种
3891
+ 注意:此字段可能返回 null,表示取不到有效值。
2798
3892
  */
2799
- Namespace: string;
3893
+ Name?: string;
2800
3894
  /**
2801
- * 实例ip地址。
3895
+ * 存储类型,分为三类CLOUD_PREMIUM/CLOUD_SSD/CLOUD_SSD_PLUS,分别对应高性能云硬盘、SSD云硬盘、增强型SSD云硬盘
2802
3896
  注意:此字段可能返回 null,表示取不到有效值。
2803
3897
  */
2804
- Host: string;
3898
+ Type?: string;
2805
3899
  /**
2806
- * 实例端口信息。
3900
+ * 存储容量,[50, 3200]的范围
2807
3901
  注意:此字段可能返回 null,表示取不到有效值。
2808
3902
  */
2809
- Port: number;
3903
+ Capacity?: number;
3904
+ }
3905
+ /**
3906
+ * DescribeConfigFile返回参数结构体
3907
+ */
3908
+ export interface DescribeConfigFileResponse {
2810
3909
  /**
2811
- * 通信协议。
3910
+ * 配置文件
2812
3911
  注意:此字段可能返回 null,表示取不到有效值。
2813
3912
  */
2814
- Protocol: string;
3913
+ ConfigFile?: ConfigFile;
2815
3914
  /**
2816
- * 版本信息。
3915
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3916
+ */
3917
+ RequestId?: string;
3918
+ }
3919
+ /**
3920
+ * RollbackConfigFileReleases请求参数结构体
3921
+ */
3922
+ export interface RollbackConfigFileReleasesRequest {
3923
+ /**
3924
+ * TSE实例id
3925
+ */
3926
+ InstanceId: string;
3927
+ /**
3928
+ * 回滚发布
3929
+ */
3930
+ RollbackConfigFileReleases: Array<ConfigFileRelease>;
3931
+ }
3932
+ /**
3933
+ * 配置文件模板
3934
+ */
3935
+ export interface ConfigFileTemplate {
3936
+ /**
3937
+ * 配置文件模板id
2817
3938
  注意:此字段可能返回 null,表示取不到有效值。
2818
3939
  */
2819
- Version: string;
3940
+ Id?: number;
2820
3941
  /**
2821
- * 负载均衡权重。
3942
+ * 配置文件模板名称
2822
3943
  注意:此字段可能返回 null,表示取不到有效值。
2823
3944
  */
2824
- Weight: number;
3945
+ Name?: string;
2825
3946
  /**
2826
- * 是否开启健康检查。
3947
+ * 配置文件模板内容
2827
3948
  注意:此字段可能返回 null,表示取不到有效值。
2828
3949
  */
2829
- EnableHealthCheck: boolean;
3950
+ Content?: string;
2830
3951
  /**
2831
- * 实例是否健康。
3952
+ * 配置文件模板格式
2832
3953
  注意:此字段可能返回 null,表示取不到有效值。
2833
3954
  */
2834
- Healthy: boolean;
3955
+ Format?: string;
2835
3956
  /**
2836
- * 实例是否隔离。
3957
+ * 配置文件模板注释
2837
3958
  注意:此字段可能返回 null,表示取不到有效值。
2838
3959
  */
2839
- Isolate: boolean;
3960
+ Comment?: string;
2840
3961
  /**
2841
- * 实例创建时间。
3962
+ * 配置文件模板创建时间
2842
3963
  注意:此字段可能返回 null,表示取不到有效值。
2843
3964
  */
2844
- CreateTime: string;
3965
+ CreateTime?: string;
2845
3966
  /**
2846
- * 实例修改时间。
3967
+ * 配置文件模板创建者
2847
3968
  注意:此字段可能返回 null,表示取不到有效值。
2848
3969
  */
2849
- ModifyTime: string;
3970
+ CreateBy?: string;
2850
3971
  /**
2851
- * 元数据数组。
3972
+ * 配置文件模板修改时间
2852
3973
  注意:此字段可能返回 null,表示取不到有效值。
2853
3974
  */
2854
- Metadatas: Array<Metadata>;
3975
+ ModifyTime?: string;
2855
3976
  /**
2856
- * 上报心跳间隔。
3977
+ * 配置文件模板修改者
2857
3978
  注意:此字段可能返回 null,表示取不到有效值。
2858
3979
  */
2859
- Ttl: number;
3980
+ ModifyBy?: string;
2860
3981
  }
2861
3982
  /**
2862
3983
  * 网关实例策略
@@ -2909,32 +4030,68 @@ export interface CloudNativeAPIGatewayStrategy {
2909
4030
  MaxReplicas?: number;
2910
4031
  }
2911
4032
  /**
2912
- * DescribeCloudNativeAPIGateways返回参数结构体
4033
+ * DeleteConfigFiles请求参数结构体
2913
4034
  */
2914
- export interface DescribeCloudNativeAPIGatewaysResponse {
4035
+ export interface DeleteConfigFilesRequest {
2915
4036
  /**
2916
- * 获取云原生API网关实例列表响应结果。
4037
+ * TSE实例id
2917
4038
  */
2918
- Result: ListCloudNativeAPIGatewayResult;
4039
+ InstanceId: string;
4040
+ /**
4041
+ * 命名空间
4042
+ */
4043
+ Namespace: string;
4044
+ /**
4045
+ * 配置分组名称
4046
+ */
4047
+ Group: string;
4048
+ /**
4049
+ * 配置文件名称
4050
+ */
4051
+ Name: string;
4052
+ }
4053
+ /**
4054
+ * DescribeGovernanceServices返回参数结构体
4055
+ */
4056
+ export interface DescribeGovernanceServicesResponse {
4057
+ /**
4058
+ * 服务数总量。
4059
+ */
4060
+ TotalCount?: number;
4061
+ /**
4062
+ * 服务信息详情。
4063
+ */
4064
+ Content?: Array<GovernanceService>;
2919
4065
  /**
2920
4066
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2921
4067
  */
2922
4068
  RequestId?: string;
2923
4069
  }
2924
4070
  /**
2925
- * kong服务路由列表
4071
+ * CreateGovernanceServices请求参数结构体
2926
4072
  */
2927
- export interface KongServiceRouteList {
4073
+ export interface CreateGovernanceServicesRequest {
2928
4074
  /**
2929
- *
2930
- 注意:此字段可能返回 null,表示取不到有效值。
4075
+ * tse 实例 id。
2931
4076
  */
2932
- RouteList?: Array<KongRoutePreview>;
4077
+ InstanceId: string;
2933
4078
  /**
2934
- * 总数
2935
- 注意:此字段可能返回 null,表示取不到有效值。
4079
+ * 服务信息。
2936
4080
  */
2937
- TotalCount?: number;
4081
+ GovernanceServices: Array<GovernanceServiceInput>;
4082
+ }
4083
+ /**
4084
+ * CreateGovernanceNamespaces返回参数结构体
4085
+ */
4086
+ export interface CreateGovernanceNamespacesResponse {
4087
+ /**
4088
+ * 操作是否成功。
4089
+ */
4090
+ Result?: boolean;
4091
+ /**
4092
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4093
+ */
4094
+ RequestId?: string;
2938
4095
  }
2939
4096
  /**
2940
4097
  * UpdateCloudNativeAPIGatewaySpec请求参数结构体
@@ -2998,17 +4155,17 @@ export interface AutoScalerBehavior {
2998
4155
  ScaleDown?: AutoScalerRules;
2999
4156
  }
3000
4157
  /**
3001
- * 列表过滤条件,模糊匹配
4158
+ * CreateConfigFileGroup请求参数结构体
3002
4159
  */
3003
- export interface ListFilter {
4160
+ export interface CreateConfigFileGroupRequest {
3004
4161
  /**
3005
- * 过滤字段
4162
+ * tse 实例 id
3006
4163
  */
3007
- Key?: string;
4164
+ InstanceId: string;
3008
4165
  /**
3009
- * 过滤值
4166
+ * 配置文件组实体
3010
4167
  */
3011
- Value?: string;
4168
+ ConfigFileGroup: ConfigFileGroup;
3012
4169
  }
3013
4170
  /**
3014
4171
  * DeleteEngine请求参数结构体
@@ -3151,19 +4308,43 @@ export interface AutoScalerPolicy {
3151
4308
  PeriodSeconds?: number;
3152
4309
  }
3153
4310
  /**
3154
- * UpdateUpstreamTargets返回参数结构体
4311
+ * ModifyConsoleNetwork返回参数结构体
3155
4312
  */
3156
- export interface UpdateUpstreamTargetsResponse {
3157
- /**
3158
- * 是否更新成功
3159
- 注意:此字段可能返回 null,表示取不到有效值。
3160
- */
3161
- Result?: boolean;
4313
+ export interface ModifyConsoleNetworkResponse {
3162
4314
  /**
3163
4315
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3164
4316
  */
3165
4317
  RequestId?: string;
3166
4318
  }
4319
+ /**
4320
+ * DescribeConfigFileGroups请求参数结构体
4321
+ */
4322
+ export interface DescribeConfigFileGroupsRequest {
4323
+ /**
4324
+ * tse实例id
4325
+ */
4326
+ InstanceId: string;
4327
+ /**
4328
+ * 根据命名空间过滤
4329
+ */
4330
+ Namespace?: string;
4331
+ /**
4332
+ * 根据配置文件组名过滤
4333
+ */
4334
+ Group?: string;
4335
+ /**
4336
+ * 根据配置文件组名过滤
4337
+ */
4338
+ FileName?: string;
4339
+ /**
4340
+ * 返回数量,默认为20,最大值为100。
4341
+ */
4342
+ Limit?: number;
4343
+ /**
4344
+ * 偏移量,默认为0。
4345
+ */
4346
+ Offset?: number;
4347
+ }
3167
4348
  /**
3168
4349
  * DeleteCloudNativeAPIGatewayCertificate请求参数结构体
3169
4350
  */
@@ -3198,58 +4379,132 @@ export interface NativeGatewayServerGroup {
3198
4379
  */
3199
4380
  NodeConfig?: CloudNativeAPIGatewayNodeConfig;
3200
4381
  /**
3201
- * 网关分组状态。
4382
+ * 网关分组状态。
4383
+ */
4384
+ Status?: string;
4385
+ /**
4386
+ * 创建时间
4387
+ */
4388
+ CreateTime?: string;
4389
+ /**
4390
+ * 是否是默认分组。
4391
+ 0:否。
4392
+ 1:是。
4393
+ */
4394
+ IsFirstGroup?: number;
4395
+ /**
4396
+ * 关联策略信息
4397
+ 注意:此字段可能返回 null,表示取不到有效值。
4398
+ */
4399
+ BindingStrategy?: CloudNativeAPIGatewayStrategy;
4400
+ /**
4401
+ * 网关实例 id
4402
+ 注意:此字段可能返回 null,表示取不到有效值。
4403
+ */
4404
+ GatewayId?: string;
4405
+ /**
4406
+ * 带宽
4407
+ 注意:此字段可能返回 null,表示取不到有效值。
4408
+ */
4409
+ InternetMaxBandwidthOut?: number;
4410
+ /**
4411
+ * 修改时间
4412
+ 注意:此字段可能返回 null,表示取不到有效值。
4413
+ */
4414
+ ModifyTime?: string;
4415
+ /**
4416
+ * 子网id
4417
+ 注意:此字段可能返回 null,表示取不到有效值。
4418
+ */
4419
+ SubnetIds?: string;
4420
+ }
4421
+ /**
4422
+ * DeleteCloudNativeAPIGatewayServiceRateLimit返回参数结构体
4423
+ */
4424
+ export interface DeleteCloudNativeAPIGatewayServiceRateLimitResponse {
4425
+ /**
4426
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4427
+ */
4428
+ RequestId?: string;
4429
+ }
4430
+ /**
4431
+ * 服务契约定义
4432
+ */
4433
+ export interface GovernanceServiceContract {
4434
+ /**
4435
+ * 契约名称
4436
+ 注意:此字段可能返回 null,表示取不到有效值。
4437
+ */
4438
+ Name: string;
4439
+ /**
4440
+ * 所属服务命名空间
4441
+ 注意:此字段可能返回 null,表示取不到有效值。
4442
+ */
4443
+ Namespace: string;
4444
+ /**
4445
+ * 协议
4446
+ 注意:此字段可能返回 null,表示取不到有效值。
4447
+ */
4448
+ Protocol: string;
4449
+ /**
4450
+ * 契约ID
4451
+ 注意:此字段可能返回 null,表示取不到有效值。
3202
4452
  */
3203
- Status?: string;
4453
+ ID?: string;
3204
4454
  /**
3205
- * 创建时间
4455
+ * 所属服务名称
4456
+ 注意:此字段可能返回 null,表示取不到有效值。
3206
4457
  */
3207
- CreateTime?: string;
4458
+ Service?: string;
3208
4459
  /**
3209
- * 是否是默认分组。
3210
- 0:否。
3211
- 1:是。
4460
+ * 版本
4461
+ 注意:此字段可能返回 null,表示取不到有效值。
3212
4462
  */
3213
- IsFirstGroup?: number;
4463
+ Version?: string;
3214
4464
  /**
3215
- * 关联策略信息
4465
+ * 信息摘要
3216
4466
  注意:此字段可能返回 null,表示取不到有效值。
3217
4467
  */
3218
- BindingStrategy?: CloudNativeAPIGatewayStrategy;
4468
+ Revision?: string;
3219
4469
  /**
3220
- * 网关实例 id
4470
+ * 额外内容描述
3221
4471
  注意:此字段可能返回 null,表示取不到有效值。
3222
4472
  */
3223
- GatewayId?: string;
4473
+ Content?: string;
3224
4474
  /**
3225
- * 带宽
4475
+ * 创建时间
3226
4476
  注意:此字段可能返回 null,表示取不到有效值。
3227
4477
  */
3228
- InternetMaxBandwidthOut?: number;
4478
+ CreateTime?: string;
3229
4479
  /**
3230
4480
  * 修改时间
3231
4481
  注意:此字段可能返回 null,表示取不到有效值。
3232
4482
  */
3233
4483
  ModifyTime?: string;
3234
4484
  /**
3235
- * 子网id
4485
+ * 契约接口列表
3236
4486
  注意:此字段可能返回 null,表示取不到有效值。
3237
4487
  */
3238
- SubnetIds?: string;
4488
+ Interfaces?: Array<GovernanceInterfaceDescription>;
3239
4489
  }
3240
4490
  /**
3241
- * DeleteCloudNativeAPIGatewayServiceRateLimit返回参数结构体
4491
+ * CloseWafProtection返回参数结构体
3242
4492
  */
3243
- export interface DeleteCloudNativeAPIGatewayServiceRateLimitResponse {
4493
+ export interface CloseWafProtectionResponse {
3244
4494
  /**
3245
4495
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3246
4496
  */
3247
4497
  RequestId?: string;
3248
4498
  }
3249
4499
  /**
3250
- * CloseWafProtection返回参数结构体
4500
+ * UpdateUpstreamTargets返回参数结构体
3251
4501
  */
3252
- export interface CloseWafProtectionResponse {
4502
+ export interface UpdateUpstreamTargetsResponse {
4503
+ /**
4504
+ * 是否更新成功
4505
+ 注意:此字段可能返回 null,表示取不到有效值。
4506
+ */
4507
+ Result?: boolean;
3253
4508
  /**
3254
4509
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3255
4510
  */
@@ -3475,13 +4730,45 @@ export interface DescribeZookeeperServerInterfacesResponse {
3475
4730
  RequestId?: string;
3476
4731
  }
3477
4732
  /**
3478
- * ModifyNetworkAccessStrategy返回参数结构体
4733
+ * DescribeGovernanceServiceContracts请求参数结构体
3479
4734
  */
3480
- export interface ModifyNetworkAccessStrategyResponse {
4735
+ export interface DescribeGovernanceServiceContractsRequest {
3481
4736
  /**
3482
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4737
+ * 北极星引擎实例ID
3483
4738
  */
3484
- RequestId?: string;
4739
+ InstanceId: string;
4740
+ /**
4741
+ * 分页偏移量
4742
+ */
4743
+ Offset: number;
4744
+ /**
4745
+ * 分页条数
4746
+ */
4747
+ Limit: number;
4748
+ /**
4749
+ * 命名空间
4750
+ */
4751
+ Namespace?: string;
4752
+ /**
4753
+ * 服务名
4754
+ */
4755
+ Service?: string;
4756
+ /**
4757
+ * 契约名称
4758
+ */
4759
+ Name?: string;
4760
+ /**
4761
+ * 契约版本
4762
+ */
4763
+ ContractVersion?: string;
4764
+ /**
4765
+ * 契约协议
4766
+ */
4767
+ Protocol?: string;
4768
+ /**
4769
+ * 是否只展示基本信息
4770
+ */
4771
+ Brief?: boolean;
3485
4772
  }
3486
4773
  /**
3487
4774
  * ModifyAutoScalerResourceStrategy请求参数结构体
@@ -3523,25 +4810,45 @@ export interface ModifyAutoScalerResourceStrategyRequest {
3523
4810
  CronConfig?: CloudNativeAPIGatewayStrategyCronScalerConfig;
3524
4811
  }
3525
4812
  /**
3526
- * DescribeNativeGatewayServerGroups请求参数结构体
4813
+ * DescribeConfigFileReleaseVersions返回参数结构体
3527
4814
  */
3528
- export interface DescribeNativeGatewayServerGroupsRequest {
4815
+ export interface DescribeConfigFileReleaseVersionsResponse {
3529
4816
  /**
3530
- * 云原生API网关实例ID。
4817
+ * 版本信息
3531
4818
  */
3532
- GatewayId: string;
4819
+ ReleaseVersions?: Array<ReleaseVersion>;
3533
4820
  /**
3534
- * 翻页从第几个开始获取
4821
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3535
4822
  */
3536
- Offset?: number;
4823
+ RequestId?: string;
4824
+ }
4825
+ /**
4826
+ * kong服务路由列表
4827
+ */
4828
+ export interface KongServiceRouteList {
3537
4829
  /**
3538
- * 翻页获取多少个
4830
+ *
4831
+ 注意:此字段可能返回 null,表示取不到有效值。
3539
4832
  */
3540
- Limit?: number;
4833
+ RouteList?: Array<KongRoutePreview>;
3541
4834
  /**
3542
- * 过滤参数
4835
+ * 总数
4836
+ 注意:此字段可能返回 null,表示取不到有效值。
3543
4837
  */
3544
- Filters?: Array<Filter>;
4838
+ TotalCount?: number;
4839
+ }
4840
+ /**
4841
+ * DeleteGovernanceAliases请求参数结构体
4842
+ */
4843
+ export interface DeleteGovernanceAliasesRequest {
4844
+ /**
4845
+ * tse实例id。
4846
+ */
4847
+ InstanceId: string;
4848
+ /**
4849
+ * 服务别名列表
4850
+ */
4851
+ GovernanceAliases: Array<GovernanceAlias>;
3545
4852
  }
3546
4853
  /**
3547
4854
  * 实例信息
@@ -3611,53 +4918,103 @@ export interface CertificateInfo {
3611
4918
  Id?: string;
3612
4919
  }
3613
4920
  /**
3614
- * 获取云原生API网关实例协议端口列表响应结果
4921
+ * DescribeConfigFiles返回参数结构体
3615
4922
  */
3616
- export interface DescribeGatewayInstancePortResult {
4923
+ export interface DescribeConfigFilesResponse {
3617
4924
  /**
3618
- * 云原生API网关ID
3619
- 注意:此字段可能返回 null,表示取不到有效值。
4925
+ * 分页总数量
3620
4926
  */
3621
- GatewayId?: string;
4927
+ TotalCount?: number;
3622
4928
  /**
3623
- * 网关实例协议端口列表
3624
- 注意:此字段可能返回 null,表示取不到有效值。
4929
+ * 配置文件列表
3625
4930
  */
3626
- GatewayInstancePortList?: Array<GatewayInstanceSchemeAndPorts>;
4931
+ ConfigFiles?: Array<ConfigFile>;
4932
+ /**
4933
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4934
+ */
4935
+ RequestId?: string;
3627
4936
  }
3628
4937
  /**
3629
- * UnbindAutoScalerResourceStrategyFromGroups请求参数结构体
4938
+ * DescribeConfigFileReleases请求参数结构体
3630
4939
  */
3631
- export interface UnbindAutoScalerResourceStrategyFromGroupsRequest {
4940
+ export interface DescribeConfigFileReleasesRequest {
3632
4941
  /**
3633
- * 网关实例ID
4942
+ * 实例id
3634
4943
  */
3635
- GatewayId: string;
4944
+ InstanceId: string;
3636
4945
  /**
3637
- * 策略ID
4946
+ * 条数
3638
4947
  */
3639
- StrategyId: string;
4948
+ Limit: number;
3640
4949
  /**
3641
- * 网关分组ID列表
4950
+ * 偏移量
3642
4951
  */
3643
- GroupIds: Array<string>;
4952
+ Offset: number;
4953
+ /**
4954
+ * 命名空间
4955
+ */
4956
+ Namespace?: string;
4957
+ /**
4958
+ * 配置分组
4959
+ */
4960
+ Group?: string;
4961
+ /**
4962
+ * 文件名称
4963
+ */
4964
+ FileName?: string;
4965
+ /**
4966
+ * 只保护处于使用状态
4967
+ */
4968
+ OnlyUse?: boolean;
4969
+ /**
4970
+ * 发布名称
4971
+ */
4972
+ ReleaseName?: string;
4973
+ /**
4974
+ * 排序字段,mtime/version/name
4975
+ ,默认version
4976
+ */
4977
+ OrderField?: string;
4978
+ /**
4979
+ * 排序,asc/desc,默认 desc
4980
+ */
4981
+ OrderDesc?: string;
3644
4982
  }
3645
4983
  /**
3646
- * DescribePublicNetwork请求参数结构体
4984
+ * DescribeAllConfigFileTemplates请求参数结构体
3647
4985
  */
3648
- export interface DescribePublicNetworkRequest {
4986
+ export interface DescribeAllConfigFileTemplatesRequest {
3649
4987
  /**
3650
- * 云原生API网关实例ID。
4988
+ * TSE实例id
3651
4989
  */
3652
- GatewayId: string;
4990
+ InstanceId: string;
4991
+ }
4992
+ /**
4993
+ * DescribeGovernanceNamespaces返回参数结构体
4994
+ */
4995
+ export interface DescribeGovernanceNamespacesResponse {
3653
4996
  /**
3654
- * 网关分组ID
4997
+ * 列表总数量。
3655
4998
  */
3656
- GroupId: string;
4999
+ TotalCount?: number;
3657
5000
  /**
3658
- * 网络ID
5001
+ * 治理中心命名空间实例列表。
3659
5002
  */
3660
- NetworkId: string;
5003
+ Content?: Array<GovernanceNamespace>;
5004
+ /**
5005
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5006
+ */
5007
+ RequestId?: string;
5008
+ }
5009
+ /**
5010
+ * 云原生网关证书
5011
+ */
5012
+ export interface KongCertificate {
5013
+ /**
5014
+ * 无
5015
+ 注意:此字段可能返回 null,表示取不到有效值。
5016
+ */
5017
+ Cert?: KongCertificatesPreview;
3661
5018
  }
3662
5019
  /**
3663
5020
  * DeleteCloudNativeAPIGateway请求参数结构体
@@ -3696,25 +5053,17 @@ export interface DeleteCloudNativeAPIGatewayPublicNetworkRequest {
3696
5053
  Vip?: string;
3697
5054
  }
3698
5055
  /**
3699
- * UpdateCloudNativeAPIGatewayCertificateInfo请求参数结构体
5056
+ * DeleteGovernanceInstancesByHost返回参数结构体
3700
5057
  */
3701
- export interface UpdateCloudNativeAPIGatewayCertificateInfoRequest {
5058
+ export interface DeleteGovernanceInstancesByHostResponse {
3702
5059
  /**
3703
- * 网关ID
3704
- */
3705
- GatewayId: string;
3706
- /**
3707
- * 证书id
3708
- */
3709
- Id: string;
3710
- /**
3711
- * 绑定的域名列表
5060
+ * 操作是否成功。
3712
5061
  */
3713
- BindDomains: Array<string>;
5062
+ Result?: boolean;
3714
5063
  /**
3715
- * 证书名称
5064
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3716
5065
  */
3717
- Name?: string;
5066
+ RequestId?: string;
3718
5067
  }
3719
5068
  /**
3720
5069
  * kong后端upstream列表
@@ -3726,6 +5075,31 @@ export interface KongUpstreamList {
3726
5075
  */
3727
5076
  UpstreamList?: Array<KongUpstreamPreview>;
3728
5077
  }
5078
+ /**
5079
+ * DescribeConfigFilesByGroup请求参数结构体
5080
+ */
5081
+ export interface DescribeConfigFilesByGroupRequest {
5082
+ /**
5083
+ * TSE实例id
5084
+ */
5085
+ InstanceId: string;
5086
+ /**
5087
+ * 命名空间名
5088
+ */
5089
+ Namespace: string;
5090
+ /**
5091
+ * 组名
5092
+ */
5093
+ Group: string;
5094
+ /**
5095
+ * 返回数量,默认为20,最大值为100。
5096
+ */
5097
+ Limit?: number;
5098
+ /**
5099
+ * 偏移量,默认为0。
5100
+ */
5101
+ Offset?: number;
5102
+ }
3729
5103
  /**
3730
5104
  * 实例信息
3731
5105
  */
@@ -3775,6 +5149,29 @@ export interface GovernanceInstanceInput {
3775
5149
  */
3776
5150
  Ttl?: number;
3777
5151
  }
5152
+ /**
5153
+ * CreateGovernanceServices返回参数结构体
5154
+ */
5155
+ export interface CreateGovernanceServicesResponse {
5156
+ /**
5157
+ * 创建是否成功。
5158
+ */
5159
+ Result?: boolean;
5160
+ /**
5161
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5162
+ */
5163
+ RequestId?: string;
5164
+ }
5165
+ /**
5166
+ * 查询Limiter的接入地址
5167
+ */
5168
+ export interface PolarisLimiterAddress {
5169
+ /**
5170
+ * VPC接入IP列表
5171
+ 注意:此字段可能返回 null,表示取不到有效值。
5172
+ */
5173
+ IntranetAddress: string;
5174
+ }
3778
5175
  /**
3779
5176
  * 引擎的初始管理账号,当前仅支持Apollo引擎
3780
5177
  */
@@ -3788,19 +5185,77 @@ export interface EngineAdmin {
3788
5185
  */
3789
5186
  Password?: string;
3790
5187
  /**
3791
- * 引擎接口的管理员 Token
5188
+ * 引擎接口的管理员 Token
5189
+ */
5190
+ Token?: string;
5191
+ }
5192
+ /**
5193
+ * CreateConfigFileGroup返回参数结构体
5194
+ */
5195
+ export interface CreateConfigFileGroupResponse {
5196
+ /**
5197
+ * 是否创建成功
5198
+ */
5199
+ Result?: boolean;
5200
+ /**
5201
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5202
+ */
5203
+ RequestId?: string;
5204
+ }
5205
+ /**
5206
+ * ModifyGovernanceNamespaces请求参数结构体
5207
+ */
5208
+ export interface ModifyGovernanceNamespacesRequest {
5209
+ /**
5210
+ * tse实例id。
5211
+ */
5212
+ InstanceId: string;
5213
+ /**
5214
+ * 命名空间信息。
5215
+ */
5216
+ GovernanceNamespaces: Array<GovernanceNamespaceInput>;
5217
+ }
5218
+ /**
5219
+ * CreateGovernanceAlias请求参数结构体
5220
+ */
5221
+ export interface CreateGovernanceAliasRequest {
5222
+ /**
5223
+ * tse实例id。
5224
+ */
5225
+ InstanceId: string;
5226
+ /**
5227
+ * 服务别名
5228
+ */
5229
+ Alias: string;
5230
+ /**
5231
+ * 服务别名命名空间
5232
+ */
5233
+ AliasNamespace: string;
5234
+ /**
5235
+ * 服务别名所指向的服务名
5236
+ */
5237
+ Service: string;
5238
+ /**
5239
+ * 服务别名所指向的命名空间
5240
+ */
5241
+ Namespace: string;
5242
+ /**
5243
+ * 服务别名描述
3792
5244
  */
3793
- Token?: string;
5245
+ Comment?: string;
3794
5246
  }
3795
5247
  /**
3796
- * 查询Limiter的接入地址
5248
+ * CreateOrUpdateConfigFileAndRelease返回参数结构体
3797
5249
  */
3798
- export interface PolarisLimiterAddress {
5250
+ export interface CreateOrUpdateConfigFileAndReleaseResponse {
3799
5251
  /**
3800
- * VPC接入IP列表
3801
- 注意:此字段可能返回 null,表示取不到有效值。
5252
+ * 操作是否成功
3802
5253
  */
3803
- IntranetAddress: string;
5254
+ Result?: boolean;
5255
+ /**
5256
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5257
+ */
5258
+ RequestId?: string;
3804
5259
  }
3805
5260
  /**
3806
5261
  * DescribeOneCloudNativeAPIGatewayService返回参数结构体
@@ -3879,19 +5334,37 @@ export interface DeleteCloudNativeAPIGatewayResponse {
3879
5334
  RequestId?: string;
3880
5335
  }
3881
5336
  /**
3882
- * kong实例的服务列表
5337
+ * DescribeConfigFiles请求参数结构体
3883
5338
  */
3884
- export interface KongServices {
5339
+ export interface DescribeConfigFilesRequest {
3885
5340
  /**
3886
- * kong实例的服务列表
3887
- 注意:此字段可能返回 null,表示取不到有效值。
5341
+ * 命名空间名称
3888
5342
  */
3889
- ServiceList?: Array<KongServicePreview>;
5343
+ Namespace: string;
3890
5344
  /**
3891
- * 列表总数
3892
- 注意:此字段可能返回 null,表示取不到有效值。
5345
+ * TSE实例id
3893
5346
  */
3894
- TotalCount?: number;
5347
+ InstanceId?: string;
5348
+ /**
5349
+ * 组名
5350
+ */
5351
+ Group?: string;
5352
+ /**
5353
+ * 名称
5354
+ */
5355
+ Name?: string;
5356
+ /**
5357
+ * 标签列表
5358
+ */
5359
+ Tags?: Array<ConfigFileTag>;
5360
+ /**
5361
+ * 返回数量,默认为20,最大值为100。
5362
+ */
5363
+ Limit?: number;
5364
+ /**
5365
+ * 偏移量,默认为0。
5366
+ */
5367
+ Offset?: number;
3895
5368
  }
3896
5369
  /**
3897
5370
  * CreateCloudNativeAPIGatewayCertificate请求参数结构体
@@ -3924,6 +5397,23 @@ export interface CreateCloudNativeAPIGatewayCertificateRequest {
3924
5397
  */
3925
5398
  Crt?: string;
3926
5399
  }
5400
+ /**
5401
+ * DescribeConfigFilesByGroup返回参数结构体
5402
+ */
5403
+ export interface DescribeConfigFilesByGroupResponse {
5404
+ /**
5405
+ * 记录总数量
5406
+ */
5407
+ TotalCount?: number;
5408
+ /**
5409
+ * 配置文件列表
5410
+ */
5411
+ ConfigFiles?: Array<ConfigFile>;
5412
+ /**
5413
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5414
+ */
5415
+ RequestId?: string;
5416
+ }
3927
5417
  /**
3928
5418
  * DescribeWafDomains请求参数结构体
3929
5419
  */
@@ -4079,6 +5569,19 @@ export interface UpdateCloudNativeAPIGatewayResult {
4079
5569
  */
4080
5570
  TaskId?: string;
4081
5571
  }
5572
+ /**
5573
+ * ModifyGovernanceServices请求参数结构体
5574
+ */
5575
+ export interface ModifyGovernanceServicesRequest {
5576
+ /**
5577
+ * tse 实例 id。
5578
+ */
5579
+ InstanceId: string;
5580
+ /**
5581
+ * 服务信息。
5582
+ */
5583
+ GovernanceServices: Array<GovernanceServiceInput>;
5584
+ }
4082
5585
  /**
4083
5586
  * DescribeCloudNativeAPIGatewayCertificateDetails返回参数结构体
4084
5587
  */
@@ -4093,6 +5596,23 @@ export interface DescribeCloudNativeAPIGatewayCertificateDetailsResponse {
4093
5596
  */
4094
5597
  RequestId?: string;
4095
5598
  }
5599
+ /**
5600
+ * DeleteConfigFileGroup请求参数结构体
5601
+ */
5602
+ export interface DeleteConfigFileGroupRequest {
5603
+ /**
5604
+ * tse 实例 id。
5605
+ */
5606
+ InstanceId: string;
5607
+ /**
5608
+ * 命名空间
5609
+ */
5610
+ Namespace: string;
5611
+ /**
5612
+ * 组
5613
+ */
5614
+ Group: string;
5615
+ }
4096
5616
  /**
4097
5617
  * DescribeNativeGatewayServerGroups返回参数结构体
4098
5618
  */
@@ -4148,6 +5668,15 @@ export interface InstancePort {
4148
5668
  */
4149
5669
  UdpPort?: string;
4150
5670
  }
5671
+ /**
5672
+ * ModifyCloudNativeAPIGateway返回参数结构体
5673
+ */
5674
+ export interface ModifyCloudNativeAPIGatewayResponse {
5675
+ /**
5676
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5677
+ */
5678
+ RequestId?: string;
5679
+ }
4151
5680
  /**
4152
5681
  * 定时伸缩配置参数
4153
5682
  */
@@ -4195,13 +5724,43 @@ export interface OpenWafProtectionRequest {
4195
5724
  List?: Array<string>;
4196
5725
  }
4197
5726
  /**
4198
- * DescribeCloudNativeAPIGatewayCertificates返回参数结构体
5727
+ * DeleteGovernanceServices请求参数结构体
4199
5728
  */
4200
- export interface DescribeCloudNativeAPIGatewayCertificatesResponse {
5729
+ export interface DeleteGovernanceServicesRequest {
4201
5730
  /**
4202
- *
5731
+ * tse实例id。
4203
5732
  */
4204
- Result?: KongCertificatesList;
5733
+ InstanceId: string;
5734
+ /**
5735
+ * 服务信息。
5736
+ */
5737
+ GovernanceServices: Array<GovernanceServiceInput>;
5738
+ }
5739
+ /**
5740
+ * UnbindAutoScalerResourceStrategyFromGroups请求参数结构体
5741
+ */
5742
+ export interface UnbindAutoScalerResourceStrategyFromGroupsRequest {
5743
+ /**
5744
+ * 网关实例ID
5745
+ */
5746
+ GatewayId: string;
5747
+ /**
5748
+ * 策略ID
5749
+ */
5750
+ StrategyId: string;
5751
+ /**
5752
+ * 网关分组ID列表
5753
+ */
5754
+ GroupIds: Array<string>;
5755
+ }
5756
+ /**
5757
+ * ModifyConfigFileGroup返回参数结构体
5758
+ */
5759
+ export interface ModifyConfigFileGroupResponse {
5760
+ /**
5761
+ * 修改是否成功
5762
+ */
5763
+ Result?: boolean;
4205
5764
  /**
4206
5765
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4207
5766
  */
@@ -4217,14 +5776,35 @@ export interface CreateCloudNativeAPIGatewayServiceRateLimitResponse {
4217
5776
  RequestId?: string;
4218
5777
  }
4219
5778
  /**
4220
- * ModifyNativeGatewayServerGroup返回参数结构体
5779
+ * DescribeNacosServerInterfaces返回参数结构体
4221
5780
  */
4222
- export interface ModifyNativeGatewayServerGroupResponse {
5781
+ export interface DescribeNacosServerInterfacesResponse {
5782
+ /**
5783
+ * 接口总个数
5784
+ */
5785
+ TotalCount?: number;
5786
+ /**
5787
+ * 接口列表
5788
+ */
5789
+ Content?: Array<NacosServerInterface>;
4223
5790
  /**
4224
5791
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4225
5792
  */
4226
5793
  RequestId?: string;
4227
5794
  }
5795
+ /**
5796
+ * DeleteConfigFileReleases请求参数结构体
5797
+ */
5798
+ export interface DeleteConfigFileReleasesRequest {
5799
+ /**
5800
+ * 实例id
5801
+ */
5802
+ InstanceId: string;
5803
+ /**
5804
+ * 待删除配置发布详情
5805
+ */
5806
+ ConfigFileReleases: Array<ConfigFileReleaseDeletion>;
5807
+ }
4228
5808
  /**
4229
5809
  * CreateAutoScalerResourceStrategy请求参数结构体
4230
5810
  */
@@ -4275,99 +5855,229 @@ export interface InternetConfig {
4275
5855
  /**
4276
5856
  * 公网带宽。
4277
5857
  */
4278
- InternetMaxBandwidthOut?: number;
5858
+ InternetMaxBandwidthOut?: number;
5859
+ /**
5860
+ * 负载均衡描述
5861
+ */
5862
+ Description?: string;
5863
+ /**
5864
+ * 负载均衡的规格类型,支持clb.c2.medium、clb.c3.small、clb.c3.medium、clb.c4.small、clb.c4.medium、clb.c4.large、clb.c4.xlarge,不传为共享型。
5865
+ */
5866
+ SlaType?: string;
5867
+ /**
5868
+ * 负载均衡是否多可用区
5869
+ */
5870
+ MultiZoneFlag?: boolean;
5871
+ /**
5872
+ * 主可用区
5873
+ */
5874
+ MasterZoneId?: string;
5875
+ /**
5876
+ * 备可用区
5877
+ */
5878
+ SlaveZoneId?: string;
5879
+ }
5880
+ /**
5881
+ * DescribeCloudNativeAPIGatewayRoutes请求参数结构体
5882
+ */
5883
+ export interface DescribeCloudNativeAPIGatewayRoutesRequest {
5884
+ /**
5885
+ * 网关ID
5886
+ */
5887
+ GatewayId: string;
5888
+ /**
5889
+ * 翻页单页查询限制数量[0,1000], 默认值0
5890
+ */
5891
+ Limit?: number;
5892
+ /**
5893
+ * 翻页单页偏移量,默认值0
5894
+ */
5895
+ Offset?: number;
5896
+ /**
5897
+ * 服务的名字,精确匹配
5898
+ */
5899
+ ServiceName?: string;
5900
+ /**
5901
+ * 路由的名字,精确匹配
5902
+ */
5903
+ RouteName?: string;
5904
+ /**
5905
+ * 过滤条件,多个过滤条件之间是与的关系,支持 name, path, host, method, service, protocol
5906
+ */
5907
+ Filters?: Array<ListFilter>;
5908
+ }
5909
+ /**
5910
+ * CreateEngine返回参数结构体
5911
+ */
5912
+ export interface CreateEngineResponse {
5913
+ /**
5914
+ * 引擎实例 ID
5915
+ */
5916
+ InstanceId?: string;
5917
+ /**
5918
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5919
+ */
5920
+ RequestId?: string;
5921
+ }
5922
+ /**
5923
+ * 网络访问策略
5924
+ */
5925
+ export interface NetworkAccessControl {
5926
+ /**
5927
+ * 访问模式:Whitelist|Blacklist
5928
+ */
5929
+ Mode: string;
5930
+ /**
5931
+ * 白名单列表
5932
+ */
5933
+ CidrWhiteList?: Array<string>;
5934
+ /**
5935
+ * 黑名单列表
5936
+ */
5937
+ CidrBlackList?: Array<string>;
5938
+ }
5939
+ /**
5940
+ * ModifyCloudNativeAPIGatewayServiceRateLimit请求参数结构体
5941
+ */
5942
+ export interface ModifyCloudNativeAPIGatewayServiceRateLimitRequest {
5943
+ /**
5944
+ * 网关ID
5945
+ */
5946
+ GatewayId: string;
5947
+ /**
5948
+ * 服务名称,或服务ID
5949
+ */
5950
+ Name: string;
5951
+ /**
5952
+ * 限流配置
5953
+ */
5954
+ LimitDetail: CloudNativeAPIGatewayRateLimitDetail;
5955
+ }
5956
+ /**
5957
+ * ModifyNetworkBasicInfo返回参数结构体
5958
+ */
5959
+ export interface ModifyNetworkBasicInfoResponse {
5960
+ /**
5961
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5962
+ */
5963
+ RequestId?: string;
5964
+ }
5965
+ /**
5966
+ * ModifyGovernanceServices返回参数结构体
5967
+ */
5968
+ export interface ModifyGovernanceServicesResponse {
5969
+ /**
5970
+ * 是否成功
5971
+ */
5972
+ Result?: boolean;
5973
+ /**
5974
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5975
+ */
5976
+ RequestId?: string;
5977
+ }
5978
+ /**
5979
+ * UpdateEngineInternetAccess返回参数结构体
5980
+ */
5981
+ export interface UpdateEngineInternetAccessResponse {
5982
+ /**
5983
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5984
+ */
5985
+ RequestId?: string;
5986
+ }
5987
+ /**
5988
+ * 配置文件组
5989
+ */
5990
+ export interface ConfigFileGroup {
4279
5991
  /**
4280
- * 负载均衡描述
5992
+ * 配置文件组id
5993
+ 注意:此字段可能返回 null,表示取不到有效值。
4281
5994
  */
4282
- Description?: string;
5995
+ Id?: number;
4283
5996
  /**
4284
- * 负载均衡的规格类型,支持clb.c2.medium、clb.c3.small、clb.c3.medium、clb.c4.small、clb.c4.medium、clb.c4.large、clb.c4.xlarge,不传为共享型。
5997
+ * 配置文件组名称
5998
+ 注意:此字段可能返回 null,表示取不到有效值。
4285
5999
  */
4286
- SlaType?: string;
6000
+ Name?: string;
4287
6001
  /**
4288
- * 负载均衡是否多可用区
6002
+ * 命名空间
6003
+ 注意:此字段可能返回 null,表示取不到有效值。
4289
6004
  */
4290
- MultiZoneFlag?: boolean;
6005
+ Namespace?: string;
4291
6006
  /**
4292
- * 主可用区
6007
+ * 备注
6008
+ 注意:此字段可能返回 null,表示取不到有效值。
4293
6009
  */
4294
- MasterZoneId?: string;
6010
+ Comment?: string;
4295
6011
  /**
4296
- * 备可用区
6012
+ * 创建时间
6013
+ 注意:此字段可能返回 null,表示取不到有效值。
4297
6014
  */
4298
- SlaveZoneId?: string;
4299
- }
4300
- /**
4301
- * DescribeCloudNativeAPIGatewayRoutes请求参数结构体
4302
- */
4303
- export interface DescribeCloudNativeAPIGatewayRoutesRequest {
6015
+ CreateTime?: string;
4304
6016
  /**
4305
- * 网关ID
6017
+ * 创建者
6018
+ 注意:此字段可能返回 null,表示取不到有效值。
4306
6019
  */
4307
- GatewayId: string;
6020
+ CreateBy?: string;
4308
6021
  /**
4309
- * 翻页单页查询限制数量[0,1000], 默认值0
6022
+ * 修改时间
6023
+ 注意:此字段可能返回 null,表示取不到有效值。
4310
6024
  */
4311
- Limit?: number;
6025
+ ModifyTime?: string;
4312
6026
  /**
4313
- * 翻页单页偏移量,默认值0
6027
+ * 修改者
6028
+ 注意:此字段可能返回 null,表示取不到有效值。
4314
6029
  */
4315
- Offset?: number;
6030
+ ModifyBy?: string;
4316
6031
  /**
4317
- * 服务的名字,精确匹配
6032
+ * 文件数
6033
+ 注意:此字段可能返回 null,表示取不到有效值。
4318
6034
  */
4319
- ServiceName?: string;
6035
+ FileCount?: number;
4320
6036
  /**
4321
- * 路由的名字,精确匹配
6037
+ * 关联用户,link_users
6038
+ 注意:此字段可能返回 null,表示取不到有效值。
4322
6039
  */
4323
- RouteName?: string;
6040
+ UserIds?: Array<string>;
4324
6041
  /**
4325
- * 过滤条件,多个过滤条件之间是与的关系,支持 name, path, host, method, service, protocol
6042
+ * 组id,link_groups
6043
+ 注意:此字段可能返回 null,表示取不到有效值。
4326
6044
  */
4327
- Filters?: Array<ListFilter>;
4328
- }
4329
- /**
4330
- * CreateEngine返回参数结构体
4331
- */
4332
- export interface CreateEngineResponse {
6045
+ GroupIds?: Array<string>;
4333
6046
  /**
4334
- * 引擎实例 ID
6047
+ * remove_link_users
6048
+ 注意:此字段可能返回 null,表示取不到有效值。
4335
6049
  */
4336
- InstanceId?: string;
6050
+ RemoveUserIds?: Array<string>;
4337
6051
  /**
4338
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6052
+ * remove_link_groups
6053
+ 注意:此字段可能返回 null,表示取不到有效值。
4339
6054
  */
4340
- RequestId?: string;
4341
- }
4342
- /**
4343
- * ModifyCloudNativeAPIGatewayServiceRateLimit请求参数结构体
4344
- */
4345
- export interface ModifyCloudNativeAPIGatewayServiceRateLimitRequest {
6055
+ RemoveGroupIds?: Array<string>;
4346
6056
  /**
4347
- * 网关ID
6057
+ * 是否可编辑
6058
+ 注意:此字段可能返回 null,表示取不到有效值。
4348
6059
  */
4349
- GatewayId: string;
6060
+ Editable?: boolean;
4350
6061
  /**
4351
- * 服务名称,或服务ID
6062
+ * 归属者
6063
+ 注意:此字段可能返回 null,表示取不到有效值。
4352
6064
  */
4353
- Name: string;
6065
+ Owner?: string;
4354
6066
  /**
4355
- * 限流配置
6067
+ * 部门
6068
+ 注意:此字段可能返回 null,表示取不到有效值。
4356
6069
  */
4357
- LimitDetail: CloudNativeAPIGatewayRateLimitDetail;
4358
- }
4359
- /**
4360
- * DeleteCloudNativeAPIGatewayRoute请求参数结构体
4361
- */
4362
- export interface DeleteCloudNativeAPIGatewayRouteRequest {
6070
+ Department?: string;
4363
6071
  /**
4364
- * 网关ID
6072
+ * 业务
6073
+ 注意:此字段可能返回 null,表示取不到有效值。
4365
6074
  */
4366
- GatewayId: string;
6075
+ Business?: string;
4367
6076
  /**
4368
- * 路由的ID或名字,不支持名称“未命名”
6077
+ * 配置文件组标签
6078
+ 注意:此字段可能返回 null,表示取不到有效值。
4369
6079
  */
4370
- Name: string;
6080
+ ConfigFileGroupTags?: Array<ConfigFileGroupTag>;
4371
6081
  }
4372
6082
  /**
4373
6083
  * 获取网关节点信息
@@ -4489,6 +6199,28 @@ export interface CloudNativeAPIGatewayStrategyAutoScalerConfig {
4489
6199
  */
4490
6200
  Behavior?: AutoScalerBehavior;
4491
6201
  }
6202
+ /**
6203
+ * DescribeGovernanceServiceContracts返回参数结构体
6204
+ */
6205
+ export interface DescribeGovernanceServiceContractsResponse {
6206
+ /**
6207
+ * 总数
6208
+ */
6209
+ TotalCount?: number;
6210
+ /**
6211
+ * 返回条数
6212
+ */
6213
+ Size?: number;
6214
+ /**
6215
+ * 契约定义列表
6216
+ 注意:此字段可能返回 null,表示取不到有效值。
6217
+ */
6218
+ ServiceContracts?: Array<GovernanceServiceContract>;
6219
+ /**
6220
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6221
+ */
6222
+ RequestId?: string;
6223
+ }
4492
6224
  /**
4493
6225
  * Zookeeper副本信息
4494
6226
  */
@@ -4602,6 +6334,128 @@ export interface UpdateUpstreamHealthCheckConfigResponse {
4602
6334
  */
4603
6335
  RequestId?: string;
4604
6336
  }
6337
+ /**
6338
+ * DescribeNativeGatewayServerGroups请求参数结构体
6339
+ */
6340
+ export interface DescribeNativeGatewayServerGroupsRequest {
6341
+ /**
6342
+ * 云原生API网关实例ID。
6343
+ */
6344
+ GatewayId: string;
6345
+ /**
6346
+ * 翻页从第几个开始获取
6347
+ */
6348
+ Offset?: number;
6349
+ /**
6350
+ * 翻页获取多少个
6351
+ */
6352
+ Limit?: number;
6353
+ /**
6354
+ * 过滤参数
6355
+ */
6356
+ Filters?: Array<Filter>;
6357
+ }
6358
+ /**
6359
+ * ModifyCloudNativeAPIGatewayRoute请求参数结构体
6360
+ */
6361
+ export interface ModifyCloudNativeAPIGatewayRouteRequest {
6362
+ /**
6363
+ * 网关ID
6364
+ */
6365
+ GatewayId: string;
6366
+ /**
6367
+ * 所属服务的ID
6368
+ */
6369
+ ServiceID: string;
6370
+ /**
6371
+ * 路由的ID,实例级别唯一
6372
+ */
6373
+ RouteID: string;
6374
+ /**
6375
+ * 路由的名字,实例级别唯一,可以不提供
6376
+ */
6377
+ RouteName?: string;
6378
+ /**
6379
+ * 路由的方法,其中方法可选值:
6380
+ - GET
6381
+ - POST
6382
+ - DELETE
6383
+ - PUT
6384
+ - OPTIONS
6385
+ - PATCH
6386
+ - HEAD
6387
+ - ANY
6388
+ - TRACE
6389
+ - COPY
6390
+ - MOVE
6391
+ - PROPFIND
6392
+ - PROPPATCH
6393
+ - MKCOL
6394
+ - LOCK
6395
+ - UNLOCK
6396
+ */
6397
+ Methods?: Array<string>;
6398
+ /**
6399
+ * 路由的域名
6400
+ */
6401
+ Hosts?: Array<string>;
6402
+ /**
6403
+ * 路由的路径
6404
+ */
6405
+ Paths?: Array<string>;
6406
+ /**
6407
+ * 路由的协议,可选
6408
+ - https
6409
+ - http
6410
+ */
6411
+ Protocols?: Array<string>;
6412
+ /**
6413
+ * 转发到后端时是否保留Host
6414
+ */
6415
+ PreserveHost?: boolean;
6416
+ /**
6417
+ * https重定向状态码
6418
+ */
6419
+ HttpsRedirectStatusCode?: number;
6420
+ /**
6421
+ * 转发到后端时是否StripPath
6422
+ */
6423
+ StripPath?: boolean;
6424
+ /**
6425
+ * 是否开启强制HTTPS
6426
+ * @deprecated
6427
+ */
6428
+ ForceHttps?: boolean;
6429
+ /**
6430
+ * 四层匹配的目的端口
6431
+ */
6432
+ DestinationPorts?: Array<number | bigint>;
6433
+ /**
6434
+ * 路由的Headers
6435
+ */
6436
+ Headers?: Array<KVMapping>;
6437
+ }
6438
+ /**
6439
+ * DescribeGovernanceNamespaces请求参数结构体
6440
+ */
6441
+ export interface DescribeGovernanceNamespacesRequest {
6442
+ /**
6443
+ * tse实例id
6444
+ */
6445
+ InstanceId: string;
6446
+ /**
6447
+ * 根据命名空间名称过滤。
6448
+ */
6449
+ Name?: string;
6450
+ /**
6451
+ * 偏移量,默认为0。
6452
+ */
6453
+ Offset?: number;
6454
+ /**
6455
+ * 返回数量,默认为20,最大值为100。
6456
+ */
6457
+ Limit?: number;
6458
+ }
4605
6459
  /**
4606
6460
  * DescribeSREInstances返回参数结构体
4607
6461
  */
@@ -4619,6 +6473,19 @@ export interface DescribeSREInstancesResponse {
4619
6473
  */
4620
6474
  RequestId?: string;
4621
6475
  }
6476
+ /**
6477
+ * PublishConfigFiles返回参数结构体
6478
+ */
6479
+ export interface PublishConfigFilesResponse {
6480
+ /**
6481
+ * 配置文件发布是否成功
6482
+ */
6483
+ Result?: boolean;
6484
+ /**
6485
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6486
+ */
6487
+ RequestId?: string;
6488
+ }
4622
6489
  /**
4623
6490
  * Zookeeper服务端接口列表,用于云监控
4624
6491
  */
@@ -4638,19 +6505,40 @@ export interface CreateCloudNativeAPIGatewayServerGroupResult {
4638
6505
  */
4639
6506
  GatewayId?: string;
4640
6507
  /**
4641
- * 分组id
6508
+ * 分组id
6509
+ */
6510
+ GroupId?: string;
6511
+ /**
6512
+ * 状态
6513
+ 注意:此字段可能返回 null,表示取不到有效值。
6514
+ */
6515
+ Status?: string;
6516
+ /**
6517
+ * 任务ID
6518
+ 注意:此字段可能返回 null,表示取不到有效值。
6519
+ */
6520
+ TaskId?: string;
6521
+ }
6522
+ /**
6523
+ * UpdateCloudNativeAPIGatewayCertificateInfo请求参数结构体
6524
+ */
6525
+ export interface UpdateCloudNativeAPIGatewayCertificateInfoRequest {
6526
+ /**
6527
+ * 网关ID
6528
+ */
6529
+ GatewayId: string;
6530
+ /**
6531
+ * 证书id
4642
6532
  */
4643
- GroupId?: string;
6533
+ Id: string;
4644
6534
  /**
4645
- * 状态
4646
- 注意:此字段可能返回 null,表示取不到有效值。
6535
+ * 绑定的域名列表
4647
6536
  */
4648
- Status?: string;
6537
+ BindDomains: Array<string>;
4649
6538
  /**
4650
- * 任务ID
4651
- 注意:此字段可能返回 null,表示取不到有效值。
6539
+ * 证书名称
4652
6540
  */
4653
- TaskId?: string;
6541
+ Name?: string;
4654
6542
  }
4655
6543
  /**
4656
6544
  * 服务治理引擎绑定的kubernetes信息
@@ -4734,6 +6622,40 @@ export interface RouteWafStatus {
4734
6622
  */
4735
6623
  ServiceId?: string;
4736
6624
  }
6625
+ /**
6626
+ * DescribeConfigFile请求参数结构体
6627
+ */
6628
+ export interface DescribeConfigFileRequest {
6629
+ /**
6630
+ * TSE实例id
6631
+ */
6632
+ InstanceId: string;
6633
+ /**
6634
+ * 命名空间
6635
+ */
6636
+ Namespace: string;
6637
+ /**
6638
+ * 组
6639
+ */
6640
+ Group: string;
6641
+ /**
6642
+ * 名称
6643
+ */
6644
+ Name: string;
6645
+ }
6646
+ /**
6647
+ * ModifyGovernanceAlias返回参数结构体
6648
+ */
6649
+ export interface ModifyGovernanceAliasResponse {
6650
+ /**
6651
+ * 创建是否成功。
6652
+ */
6653
+ Result?: boolean;
6654
+ /**
6655
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6656
+ */
6657
+ RequestId?: string;
6658
+ }
4737
6659
  /**
4738
6660
  * 指标伸缩的规则
4739
6661
  */
@@ -4967,6 +6889,36 @@ export interface CreateNativeGatewayServerGroupResponse {
4967
6889
  */
4968
6890
  RequestId?: string;
4969
6891
  }
6892
+ /**
6893
+ * 配置发布版本信息
6894
+ */
6895
+ export interface ReleaseVersion {
6896
+ /**
6897
+ * 名称
6898
+ 注意:此字段可能返回 null,表示取不到有效值。
6899
+ */
6900
+ Name?: string;
6901
+ /**
6902
+ * 是否生效
6903
+ 注意:此字段可能返回 null,表示取不到有效值。
6904
+ */
6905
+ Active?: boolean;
6906
+ }
6907
+ /**
6908
+ * kong实例的服务列表
6909
+ */
6910
+ export interface KongServices {
6911
+ /**
6912
+ * kong实例的服务列表
6913
+ 注意:此字段可能返回 null,表示取不到有效值。
6914
+ */
6915
+ ServiceList?: Array<KongServicePreview>;
6916
+ /**
6917
+ * 列表总数
6918
+ 注意:此字段可能返回 null,表示取不到有效值。
6919
+ */
6920
+ TotalCount?: number;
6921
+ }
4970
6922
  /**
4971
6923
  * 云原生网关证书预览信息
4972
6924
  */
@@ -5046,6 +6998,19 @@ export interface CreateCloudNativeAPIGatewayServiceRateLimitRequest {
5046
6998
  */
5047
6999
  LimitDetail: CloudNativeAPIGatewayRateLimitDetail;
5048
7000
  }
7001
+ /**
7002
+ * DeleteConfigFileReleases返回参数结构体
7003
+ */
7004
+ export interface DeleteConfigFileReleasesResponse {
7005
+ /**
7006
+ * 删除配置发布结果
7007
+ */
7008
+ Result?: boolean;
7009
+ /**
7010
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7011
+ */
7012
+ RequestId?: string;
7013
+ }
5049
7014
  /**
5050
7015
  * DescribeZookeeperReplicas返回参数结构体
5051
7016
  */
@@ -5089,6 +7054,19 @@ export interface PolarisCLSTopicInfo {
5089
7054
  */
5090
7055
  TopicName?: string;
5091
7056
  }
7057
+ /**
7058
+ * DescribeGovernanceServiceContractVersions返回参数结构体
7059
+ */
7060
+ export interface DescribeGovernanceServiceContractVersionsResponse {
7061
+ /**
7062
+ * 服务契约版本列表
7063
+ */
7064
+ GovernanceServiceContractVersions?: Array<GovernanceServiceContractVersion>;
7065
+ /**
7066
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7067
+ */
7068
+ RequestId?: string;
7069
+ }
5092
7070
  /**
5093
7071
  * ModifyGovernanceInstances请求参数结构体
5094
7072
  */
@@ -5249,22 +7227,32 @@ export interface ModifyCloudNativeAPIGatewayCanaryRuleRequest {
5249
7227
  CanaryRule: CloudNativeAPIGatewayCanaryRule;
5250
7228
  }
5251
7229
  /**
5252
- * 私有网络信息
7230
+ * 获取云原生API网关实例协议端口列表响应结果
5253
7231
  */
5254
- export interface VpcInfo {
7232
+ export interface DescribeGatewayInstancePortResult {
5255
7233
  /**
5256
- * Vpc Id
7234
+ * 云原生API网关ID
7235
+ 注意:此字段可能返回 null,表示取不到有效值。
5257
7236
  */
5258
- VpcId: string;
7237
+ GatewayId?: string;
5259
7238
  /**
5260
- * 子网ID
7239
+ * 网关实例协议端口列表
7240
+ 注意:此字段可能返回 null,表示取不到有效值。
5261
7241
  */
5262
- SubnetId: string;
7242
+ GatewayInstancePortList?: Array<GatewayInstanceSchemeAndPorts>;
7243
+ }
7244
+ /**
7245
+ * PublishConfigFiles请求参数结构体
7246
+ */
7247
+ export interface PublishConfigFilesRequest {
5263
7248
  /**
5264
- * 内网访问地址
5265
- 注意:此字段可能返回 null,表示取不到有效值。
7249
+ * TSE实例id
5266
7250
  */
5267
- IntranetAddress?: string;
7251
+ InstanceId: string;
7252
+ /**
7253
+ * 配置文件发布
7254
+ */
7255
+ ConfigFileReleases: ConfigFileRelease;
5268
7256
  }
5269
7257
  /**
5270
7258
  * CreateAutoScalerResourceStrategy返回参数结构体
@@ -5286,13 +7274,37 @@ export interface CreateAutoScalerResourceStrategyResponse {
5286
7274
  RequestId?: string;
5287
7275
  }
5288
7276
  /**
5289
- * ModifyConsoleNetwork返回参数结构体
7277
+ * DescribeConfigFileReleaseHistories请求参数结构体
5290
7278
  */
5291
- export interface ModifyConsoleNetworkResponse {
7279
+ export interface DescribeConfigFileReleaseHistoriesRequest {
5292
7280
  /**
5293
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7281
+ * TSE实例id
5294
7282
  */
5295
- RequestId?: string;
7283
+ InstanceId: string;
7284
+ /**
7285
+ * 命名空间
7286
+ */
7287
+ Namespace?: string;
7288
+ /**
7289
+ * 组
7290
+ */
7291
+ Group?: string;
7292
+ /**
7293
+ * 名称
7294
+ */
7295
+ Name?: string;
7296
+ /**
7297
+ * 发布历史记录id,用于分页优化,一般指定 EndId,就不用指定 Offset,否则分页可能不连续
7298
+ */
7299
+ EndId?: number;
7300
+ /**
7301
+ * 返回数量,默认为20,最大值为100。
7302
+ */
7303
+ Limit?: number;
7304
+ /**
7305
+ * 偏移量,默认为0。
7306
+ */
7307
+ Offset?: number;
5296
7308
  }
5297
7309
  /**
5298
7310
  * DeleteWafDomains返回参数结构体
@@ -5391,6 +7403,19 @@ export interface KongServicePreview {
5391
7403
  */
5392
7404
  Path?: string;
5393
7405
  }
7406
+ /**
7407
+ * DescribeCloudNativeAPIGatewayCertificates返回参数结构体
7408
+ */
7409
+ export interface DescribeCloudNativeAPIGatewayCertificatesResponse {
7410
+ /**
7411
+ * 无
7412
+ */
7413
+ Result?: KongCertificatesList;
7414
+ /**
7415
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7416
+ */
7417
+ RequestId?: string;
7418
+ }
5394
7419
  /**
5395
7420
  * ModifyCloudNativeAPIGatewayRouteRateLimit返回参数结构体
5396
7421
  */
@@ -5401,17 +7426,21 @@ export interface ModifyCloudNativeAPIGatewayRouteRateLimitResponse {
5401
7426
  RequestId?: string;
5402
7427
  }
5403
7428
  /**
5404
- * 查询过滤通用对象
7429
+ * DescribeConfigFileReleaseHistories返回参数结构体
5405
7430
  */
5406
- export interface Filter {
7431
+ export interface DescribeConfigFileReleaseHistoriesResponse {
5407
7432
  /**
5408
- * 过滤参数名
7433
+ * 数据总数量
5409
7434
  */
5410
- Name: string;
7435
+ TotalCount?: number;
5411
7436
  /**
5412
- * 过滤参数值
7437
+ * 配置文件发布历史列表
5413
7438
  */
5414
- Values: Array<string>;
7439
+ ConfigFileReleaseHistories?: Array<ConfigFileReleaseHistory>;
7440
+ /**
7441
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7442
+ */
7443
+ RequestId?: string;
5415
7444
  }
5416
7445
  /**
5417
7446
  * DescribeCloudNativeAPIGatewayCanaryRules请求参数结构体
@@ -5434,6 +7463,43 @@ export interface DescribeCloudNativeAPIGatewayCanaryRulesRequest {
5434
7463
  */
5435
7464
  Offset?: number;
5436
7465
  }
7466
+ /**
7467
+ * 多环境网络信息
7468
+ */
7469
+ export interface EnvAddressInfo {
7470
+ /**
7471
+ * 环境名
7472
+ */
7473
+ EnvName?: string;
7474
+ /**
7475
+ * 是否开启config公网
7476
+ */
7477
+ EnableConfigInternet?: boolean;
7478
+ /**
7479
+ * config公网ip
7480
+ */
7481
+ ConfigInternetServiceIp?: string;
7482
+ /**
7483
+ * config内网访问地址
7484
+ 注意:此字段可能返回 null,表示取不到有效值。
7485
+ */
7486
+ ConfigIntranetAddress?: string;
7487
+ /**
7488
+ * 是否开启config内网clb
7489
+ 注意:此字段可能返回 null,表示取不到有效值。
7490
+ */
7491
+ EnableConfigIntranet?: boolean;
7492
+ /**
7493
+ * 客户端公网带宽
7494
+ 注意:此字段可能返回 null,表示取不到有效值。
7495
+ */
7496
+ InternetBandWidth?: number;
7497
+ /**
7498
+ * 客户端公网CLB多可用区信息
7499
+ 注意:此字段可能返回 null,表示取不到有效值。
7500
+ */
7501
+ CLBMultiRegion?: CLBMultiRegion;
7502
+ }
5437
7503
  /**
5438
7504
  * DeleteCloudNativeAPIGatewayCanaryRule返回参数结构体
5439
7505
  */
@@ -5450,7 +7516,7 @@ export interface ModifyGovernanceInstancesResponse {
5450
7516
  /**
5451
7517
  * 修改是否成功。
5452
7518
  */
5453
- Result: boolean;
7519
+ Result?: boolean;
5454
7520
  /**
5455
7521
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5456
7522
  */
@@ -5513,9 +7579,73 @@ export interface UpdateCloudNativeAPIGatewayCertificateInfoResponse {
5513
7579
  RequestId?: string;
5514
7580
  }
5515
7581
  /**
5516
- * ModifyNetworkBasicInfo返回参数结构体
7582
+ * 配置文件标签
5517
7583
  */
5518
- export interface ModifyNetworkBasicInfoResponse {
7584
+ export interface ConfigFileTag {
7585
+ /**
7586
+ * key-value 键
7587
+ 注意:此字段可能返回 null,表示取不到有效值。
7588
+ */
7589
+ Key?: string;
7590
+ /**
7591
+ * key-value 值
7592
+ 注意:此字段可能返回 null,表示取不到有效值。
7593
+ */
7594
+ Value?: string;
7595
+ }
7596
+ /**
7597
+ * DescribeGovernanceServices请求参数结构体
7598
+ */
7599
+ export interface DescribeGovernanceServicesRequest {
7600
+ /**
7601
+ * 按照服务名过滤,精确匹配。
7602
+ */
7603
+ Name?: string;
7604
+ /**
7605
+ * 按照命名空间过滤,精确匹配。
7606
+ */
7607
+ Namespace?: string;
7608
+ /**
7609
+ * 使用元数据过滤,目前只支持一组元组数,若传了多条,只会使用第一条元数据过滤。
7610
+ */
7611
+ Metadatas?: Array<Metadata>;
7612
+ /**
7613
+ * 偏移量,默认为0。
7614
+ */
7615
+ Offset?: number;
7616
+ /**
7617
+ * 返回数量,默认为20,最大值为100。
7618
+ */
7619
+ Limit?: number;
7620
+ /**
7621
+ * tse 实例 id。
7622
+ */
7623
+ InstanceId?: string;
7624
+ /**
7625
+ * 服务所属部门。
7626
+ */
7627
+ Department?: string;
7628
+ /**
7629
+ * 服务所属业务。
7630
+ */
7631
+ Business?: string;
7632
+ /**
7633
+ * 服务中实例的ip,用来过滤服务。
7634
+ */
7635
+ Host?: string;
7636
+ /**
7637
+ * 是否只查询存在健康实例的服务
7638
+ */
7639
+ OnlyExistHealthyInstance?: boolean;
7640
+ }
7641
+ /**
7642
+ * DescribeConfigFileRelease返回参数结构体
7643
+ */
7644
+ export interface DescribeConfigFileReleaseResponse {
7645
+ /**
7646
+ * 配置文件发布详情
7647
+ */
7648
+ ConfigFileRelease?: ConfigFileRelease;
5519
7649
  /**
5520
7650
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5521
7651
  */
@@ -5606,3 +7736,20 @@ export interface KongServiceDetail {
5606
7736
  */
5607
7737
  CreatedTime?: string;
5608
7738
  }
7739
+ /**
7740
+ * DescribeGovernanceAliases返回参数结构体
7741
+ */
7742
+ export interface DescribeGovernanceAliasesResponse {
7743
+ /**
7744
+ * 服务别名总数量。
7745
+ */
7746
+ TotalCount?: number;
7747
+ /**
7748
+ * 服务别名列表。
7749
+ */
7750
+ Content?: Array<GovernanceAlias>;
7751
+ /**
7752
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7753
+ */
7754
+ RequestId?: string;
7755
+ }