tencentcloud-sdk-nodejs-tse 4.0.810 → 4.0.814

Sign up to get free protection for your applications and to get access to all the features.
@@ -68,6 +68,20 @@ export interface DeleteCloudNativeAPIGatewayPublicNetworkResponse {
68
68
  RequestId?: string
69
69
  }
70
70
 
71
+ /**
72
+ * CreateOrUpdateConfigFileAndRelease请求参数结构体
73
+ */
74
+ export interface CreateOrUpdateConfigFileAndReleaseRequest {
75
+ /**
76
+ * 实例id
77
+ */
78
+ InstanceId: string
79
+ /**
80
+ * 配置文件列表详情
81
+ */
82
+ ConfigFilePublishInfo: ConfigFilePublishInfo
83
+ }
84
+
71
85
  /**
72
86
  * DeleteCloudNativeAPIGatewayRouteRateLimit返回参数结构体
73
87
  */
@@ -238,6 +252,24 @@ export interface CreateCloudNativeAPIGatewayRequest {
238
252
  InternetConfig?: InternetConfig
239
253
  }
240
254
 
255
+ /**
256
+ * DescribeConfigFileGroups返回参数结构体
257
+ */
258
+ export interface DescribeConfigFileGroupsResponse {
259
+ /**
260
+ * 列表总数量
261
+ */
262
+ TotalCount?: number
263
+ /**
264
+ * 配置文件组列表
265
+ */
266
+ ConfigFileGroups?: Array<ConfigFileGroup>
267
+ /**
268
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
269
+ */
270
+ RequestId?: string
271
+ }
272
+
241
273
  /**
242
274
  * 定时伸缩策略配置
243
275
  */
@@ -273,6 +305,20 @@ export interface CloudNativeAPIGatewayStrategyCronScalerConfig {
273
305
  StrategyId?: string
274
306
  }
275
307
 
308
+ /**
309
+ * 列表过滤条件,模糊匹配
310
+ */
311
+ export interface ListFilter {
312
+ /**
313
+ * 过滤字段
314
+ */
315
+ Key?: string
316
+ /**
317
+ * 过滤值
318
+ */
319
+ Value?: string
320
+ }
321
+
276
322
  /**
277
323
  * 策略绑定的网关分组信息
278
324
  */
@@ -305,84 +351,25 @@ export interface CloudNativeAPIGatewayStrategyBindingGroupInfo {
305
351
  }
306
352
 
307
353
  /**
308
- * ModifyCloudNativeAPIGatewayRoute请求参数结构体
354
+ * DescribeCloudNativeAPIGatewayCertificates请求参数结构体
309
355
  */
310
- export interface ModifyCloudNativeAPIGatewayRouteRequest {
356
+ export interface DescribeCloudNativeAPIGatewayCertificatesRequest {
311
357
  /**
312
358
  * 网关ID
313
359
  */
314
360
  GatewayId: string
315
361
  /**
316
- * 所属服务的ID
317
- */
318
- ServiceID: string
319
- /**
320
- * 路由的ID,实例级别唯一
321
- */
322
- RouteID: string
323
- /**
324
- * 路由的名字,实例级别唯一,可以不提供
325
- */
326
- RouteName?: string
327
- /**
328
- * 路由的方法,其中方法可选值:
329
- - GET
330
- - POST
331
- - DELETE
332
- - PUT
333
- - OPTIONS
334
- - PATCH
335
- - HEAD
336
- - ANY
337
- - TRACE
338
- - COPY
339
- - MOVE
340
- - PROPFIND
341
- - PROPPATCH
342
- - MKCOL
343
- - LOCK
344
- - UNLOCK
345
- */
346
- Methods?: Array<string>
347
- /**
348
- * 路由的域名
349
- */
350
- Hosts?: Array<string>
351
- /**
352
- * 路由的路径
353
- */
354
- Paths?: Array<string>
355
- /**
356
- * 路由的协议,可选
357
- - https
358
- - http
359
- */
360
- Protocols?: Array<string>
361
- /**
362
- * 转发到后端时是否保留Host
363
- */
364
- PreserveHost?: boolean
365
- /**
366
- * https重定向状态码
367
- */
368
- HttpsRedirectStatusCode?: number
369
- /**
370
- * 转发到后端时是否StripPath
371
- */
372
- StripPath?: boolean
373
- /**
374
- * 是否开启强制HTTPS
375
- * @deprecated
362
+ * 列表数量
376
363
  */
377
- ForceHttps?: boolean
364
+ Limit?: number
378
365
  /**
379
- * 四层匹配的目的端口
366
+ * 列表offset
380
367
  */
381
- DestinationPorts?: Array<number | bigint>
368
+ Offset?: number
382
369
  /**
383
- * 路由的Headers
370
+ * 过滤条件,多个过滤条件之间是与的关系,支持BindDomain ,Name
384
371
  */
385
- Headers?: Array<KVMapping>
372
+ Filters?: Array<ListFilter>
386
373
  }
387
374
 
388
375
  /**
@@ -399,6 +386,28 @@ export interface DescribeCloudNativeAPIGatewayUpstreamRequest {
399
386
  ServiceName: string
400
387
  }
401
388
 
389
+ /**
390
+ * DescribeCloudNativeAPIGatewayNodes请求参数结构体
391
+ */
392
+ export interface DescribeCloudNativeAPIGatewayNodesRequest {
393
+ /**
394
+ * 云原生API网关实例ID。
395
+ */
396
+ GatewayId: string
397
+ /**
398
+ * 实例分组id
399
+ */
400
+ GroupId?: string
401
+ /**
402
+ * 翻页获取多少个
403
+ */
404
+ Limit?: number
405
+ /**
406
+ * 翻页从第几个开始获取
407
+ */
408
+ Offset?: number
409
+ }
410
+
402
411
  /**
403
412
  * DeleteNativeGatewayServerGroup返回参数结构体
404
413
  */
@@ -430,13 +439,17 @@ export interface Metadata {
430
439
  }
431
440
 
432
441
  /**
433
- * ModifyCloudNativeAPIGatewayCertificate返回参数结构体
442
+ * 查询过滤通用对象
434
443
  */
435
- export interface ModifyCloudNativeAPIGatewayCertificateResponse {
444
+ export interface Filter {
436
445
  /**
437
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
446
+ * 过滤参数名
438
447
  */
439
- RequestId?: string
448
+ Name: string
449
+ /**
450
+ * 过滤参数值
451
+ */
452
+ Values: Array<string>
440
453
  }
441
454
 
442
455
  /**
@@ -527,6 +540,20 @@ export interface DescribeSREInstanceAccessAddressResponse {
527
540
  RequestId?: string
528
541
  }
529
542
 
543
+ /**
544
+ * CreateConfigFile请求参数结构体
545
+ */
546
+ export interface CreateConfigFileRequest {
547
+ /**
548
+ * TSE 实例id
549
+ */
550
+ InstanceId: string
551
+ /**
552
+ * 配置文件列表详情
553
+ */
554
+ ConfigFile: ConfigFile
555
+ }
556
+
530
557
  /**
531
558
  * ModifyCloudNativeAPIGatewayCanaryRule返回参数结构体
532
559
  */
@@ -537,6 +564,34 @@ export interface ModifyCloudNativeAPIGatewayCanaryRuleResponse {
537
564
  RequestId?: string
538
565
  }
539
566
 
567
+ /**
568
+ * DescribeCloudNativeAPIGateways返回参数结构体
569
+ */
570
+ export interface DescribeCloudNativeAPIGatewaysResponse {
571
+ /**
572
+ * 获取云原生API网关实例列表响应结果。
573
+ */
574
+ Result: ListCloudNativeAPIGatewayResult
575
+ /**
576
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
577
+ */
578
+ RequestId?: string
579
+ }
580
+
581
+ /**
582
+ * CreateGovernanceAlias返回参数结构体
583
+ */
584
+ export interface CreateGovernanceAliasResponse {
585
+ /**
586
+ * 创建是否成功。
587
+ */
588
+ Result?: boolean
589
+ /**
590
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
591
+ */
592
+ RequestId?: string
593
+ }
594
+
540
595
  /**
541
596
  * 云原生API网关节点配置。
542
597
  */
@@ -553,6 +608,20 @@ export interface CloudNativeAPIGatewayNodeConfig {
553
608
  Number: number
554
609
  }
555
610
 
611
+ /**
612
+ * DeleteConfigFileGroup返回参数结构体
613
+ */
614
+ export interface DeleteConfigFileGroupResponse {
615
+ /**
616
+ * 是否删除成功
617
+ */
618
+ Result?: boolean
619
+ /**
620
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
621
+ */
622
+ RequestId?: string
623
+ }
624
+
556
625
  /**
557
626
  * DescribeAutoScalerResourceStrategyBindingGroups请求参数结构体
558
627
  */
@@ -611,25 +680,67 @@ export interface CreateNativeGatewayServerGroupRequest {
611
680
  }
612
681
 
613
682
  /**
614
- * DescribeCloudNativeAPIGatewayCertificates请求参数结构体
683
+ * DescribeAllConfigFileTemplates返回参数结构体
615
684
  */
616
- export interface DescribeCloudNativeAPIGatewayCertificatesRequest {
685
+ export interface DescribeAllConfigFileTemplatesResponse {
617
686
  /**
618
- * 网关ID
687
+ * 数据总数量
619
688
  */
620
- GatewayId: string
689
+ TotalCount?: number
621
690
  /**
622
- * 列表数量
691
+ * 配置文件模板列表
623
692
  */
624
- Limit?: number
693
+ ConfigFileTemplates?: Array<ConfigFileTemplate>
625
694
  /**
626
- * 列表offset
695
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
627
696
  */
628
- Offset?: number
697
+ RequestId?: string
698
+ }
699
+
700
+ /**
701
+ * 发布详情
702
+ */
703
+ export interface ConfigFilePublishInfo {
629
704
  /**
630
- * 过滤条件,多个过滤条件之间是与的关系,支持BindDomain ,Name
705
+ * 发布名称
631
706
  */
632
- Filters?: Array<ListFilter>
707
+ ReleaseName?: string
708
+ /**
709
+ * 命名空间
710
+ */
711
+ Namespace?: string
712
+ /**
713
+ * 发布组
714
+ */
715
+ Group?: string
716
+ /**
717
+ * 文件名
718
+ */
719
+ FileName?: string
720
+ /**
721
+ * 内容
722
+ */
723
+ Content?: string
724
+ /**
725
+ * 描述
726
+ */
727
+ Comment?: string
728
+ /**
729
+ * 格式
730
+ */
731
+ Format?: string
732
+ /**
733
+ * 创建者
734
+ */
735
+ CreateBy?: string
736
+ /**
737
+ * 修改者
738
+ */
739
+ ModifyBy?: string
740
+ /**
741
+ * 标签
742
+ */
743
+ Tags?: Array<ConfigFileTag>
633
744
  }
634
745
 
635
746
  /**
@@ -694,38 +805,82 @@ export interface ListCloudNativeAPIGatewayStrategyResult {
694
805
  }
695
806
 
696
807
  /**
697
- * ModifyCloudNativeAPIGateway返回参数结构体
808
+ * DescribeGovernanceAliases请求参数结构体
698
809
  */
699
- export interface ModifyCloudNativeAPIGatewayResponse {
810
+ export interface DescribeGovernanceAliasesRequest {
700
811
  /**
701
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId
812
+ * tse实例id
702
813
  */
703
- RequestId?: string
704
- }
705
-
706
- /**
707
- * CloseWafProtection请求参数结构体
708
- */
709
- export interface CloseWafProtectionRequest {
814
+ InstanceId: string
710
815
  /**
711
- * 网关ID
816
+ * 服务别名所指向的服务名。
712
817
  */
713
- GatewayId: string
818
+ Service?: string
714
819
  /**
715
- * 防护资源的类型。
716
- - Global 实例
717
- - Service 服务
718
- - Route 路由
719
- - Object 对象
820
+ * 服务别名所指向的命名空间名。
720
821
  */
721
- Type: string
822
+ Namespace?: string
722
823
  /**
723
- * 当资源类型 Type 是 Service 或 Route 的时候,传入的服务或路由的列表
824
+ * 服务别名。
724
825
  */
725
- List?: Array<string>
726
- }
727
-
728
- /**
826
+ Alias?: string
827
+ /**
828
+ * 服务别名命名空间。
829
+ */
830
+ AliasNamespace?: string
831
+ /**
832
+ * 服务别名描述。
833
+ */
834
+ Comment?: string
835
+ /**
836
+ * 偏移量,默认为0。
837
+ */
838
+ Offset?: number
839
+ /**
840
+ * 返回数量,默认为20,最大值为100。
841
+ */
842
+ Limit?: number
843
+ }
844
+
845
+ /**
846
+ * 配置文件标签
847
+ */
848
+ export interface ConfigFileGroupTag {
849
+ /**
850
+ * key-value 键
851
+ 注意:此字段可能返回 null,表示取不到有效值。
852
+ */
853
+ Key?: string
854
+ /**
855
+ * key-value 值
856
+ 注意:此字段可能返回 null,表示取不到有效值。
857
+ */
858
+ Value?: string
859
+ }
860
+
861
+ /**
862
+ * CloseWafProtection请求参数结构体
863
+ */
864
+ export interface CloseWafProtectionRequest {
865
+ /**
866
+ * 网关ID
867
+ */
868
+ GatewayId: string
869
+ /**
870
+ * 防护资源的类型。
871
+ - Global 实例
872
+ - Service 服务
873
+ - Route 路由
874
+ - Object 对象
875
+ */
876
+ Type: string
877
+ /**
878
+ * 当资源类型 Type 是 Service 或 Route 的时候,传入的服务或路由的列表
879
+ */
880
+ List?: Array<string>
881
+ }
882
+
883
+ /**
729
884
  * ModifyCloudNativeAPIGatewayService返回参数结构体
730
885
  */
731
886
  export interface ModifyCloudNativeAPIGatewayServiceResponse {
@@ -735,6 +890,86 @@ export interface ModifyCloudNativeAPIGatewayServiceResponse {
735
890
  RequestId?: string
736
891
  }
737
892
 
893
+ /**
894
+ * 治理中心服务入参
895
+ */
896
+ export interface GovernanceServiceInput {
897
+ /**
898
+ * 服务名。
899
+ */
900
+ Name: string
901
+ /**
902
+ * 服务所属命名空间。
903
+ */
904
+ Namespace: string
905
+ /**
906
+ * 服务描述信息。
907
+ */
908
+ Comment?: string
909
+ /**
910
+ * 服务元数据。
911
+ */
912
+ Metadatas?: Array<Metadata>
913
+ /**
914
+ * 服务所属部门。
915
+ */
916
+ Department?: string
917
+ /**
918
+ * 服务所属业务。
919
+ */
920
+ Business?: string
921
+ /**
922
+ * 被添加进来可以操作此命名空间的用户ID列表
923
+ */
924
+ UserIds?: Array<string>
925
+ /**
926
+ * 被添加进来可以操作此命名空间的用户组ID列表
927
+ */
928
+ GroupIds?: Array<string>
929
+ /**
930
+ * 从操作此命名空间的用户组ID列表被移除的ID列表
931
+ */
932
+ RemoveUserIds?: Array<string>
933
+ /**
934
+ * 从可以操作此命名空间的用户组ID列表中被移除的ID列表
935
+ */
936
+ RemoveGroupIds?: Array<string>
937
+ /**
938
+ * 该服务对哪些命名空间可见
939
+ */
940
+ ExportTo?: Array<string>
941
+ }
942
+
943
+ /**
944
+ * ModifyGovernanceAlias请求参数结构体
945
+ */
946
+ export interface ModifyGovernanceAliasRequest {
947
+ /**
948
+ * tse实例id。
949
+ */
950
+ InstanceId: string
951
+ /**
952
+ * 服务别名
953
+ */
954
+ Alias: string
955
+ /**
956
+ * 服务别名命名空间
957
+ */
958
+ AliasNamespace: string
959
+ /**
960
+ * 服务别名所指向的服务名
961
+ */
962
+ Service: string
963
+ /**
964
+ * 服务别名所指向的命名空间
965
+ */
966
+ Namespace: string
967
+ /**
968
+ * 服务别名描述
969
+ */
970
+ Comment?: string
971
+ }
972
+
738
973
  /**
739
974
  * DescribeCloudNativeAPIGatewayNodes返回参数结构体
740
975
  */
@@ -749,6 +984,28 @@ export interface DescribeCloudNativeAPIGatewayNodesResponse {
749
984
  RequestId?: string
750
985
  }
751
986
 
987
+ /**
988
+ * DescribeConfigFileReleaseVersions请求参数结构体
989
+ */
990
+ export interface DescribeConfigFileReleaseVersionsRequest {
991
+ /**
992
+ * 实例id
993
+ */
994
+ InstanceId: string
995
+ /**
996
+ * 命名空间
997
+ */
998
+ Namespace?: string
999
+ /**
1000
+ * 配置分组
1001
+ */
1002
+ Group?: string
1003
+ /**
1004
+ * 文件名称
1005
+ */
1006
+ FileName?: string
1007
+ }
1008
+
752
1009
  /**
753
1010
  * nacos服务端接口列表,用于云监控
754
1011
  */
@@ -790,21 +1047,149 @@ export interface DescribeUpstreamHealthCheckConfigResponse {
790
1047
  }
791
1048
 
792
1049
  /**
793
- * 网络访问策略
1050
+ * 服务契约版本信息
794
1051
  */
795
- export interface NetworkAccessControl {
1052
+ export interface GovernanceServiceContractVersion {
796
1053
  /**
797
- * 访问模式:Whitelist|Blacklist
1054
+ * 契约版本
1055
+ 注意:此字段可能返回 null,表示取不到有效值。
798
1056
  */
799
- Mode: string
1057
+ Version?: string
800
1058
  /**
801
- * 白名单列表
1059
+ * 契约名称
1060
+ 注意:此字段可能返回 null,表示取不到有效值。
802
1061
  */
803
- CidrWhiteList?: Array<string>
1062
+ Name?: string
804
1063
  /**
805
- * 黑名单列表
1064
+ * 唯一名称
1065
+ 注意:此字段可能返回 null,表示取不到有效值。
806
1066
  */
807
- CidrBlackList?: Array<string>
1067
+ Key?: string
1068
+ }
1069
+
1070
+ /**
1071
+ * 配置文件
1072
+ */
1073
+ export interface ConfigFile {
1074
+ /**
1075
+ * 配置文件id
1076
+ 注意:此字段可能返回 null,表示取不到有效值。
1077
+ */
1078
+ Id?: number
1079
+ /**
1080
+ * 配置文件名称
1081
+ 注意:此字段可能返回 null,表示取不到有效值。
1082
+ */
1083
+ Name?: string
1084
+ /**
1085
+ * 配置文件命名空间
1086
+ 注意:此字段可能返回 null,表示取不到有效值。
1087
+ */
1088
+ Namespace?: string
1089
+ /**
1090
+ * 配置文件组
1091
+ 注意:此字段可能返回 null,表示取不到有效值。
1092
+ */
1093
+ Group?: string
1094
+ /**
1095
+ * 配置文件内容
1096
+ 注意:此字段可能返回 null,表示取不到有效值。
1097
+ */
1098
+ Content?: string
1099
+ /**
1100
+ * 配置文件格式
1101
+ 注意:此字段可能返回 null,表示取不到有效值。
1102
+ */
1103
+ Format?: string
1104
+ /**
1105
+ * 配置文件注释
1106
+ 注意:此字段可能返回 null,表示取不到有效值。
1107
+ */
1108
+ Comment?: string
1109
+ /**
1110
+ * 配置文件状态
1111
+ 注意:此字段可能返回 null,表示取不到有效值。
1112
+ */
1113
+ Status?: string
1114
+ /**
1115
+ * 配置文件标签数组
1116
+ 注意:此字段可能返回 null,表示取不到有效值。
1117
+ */
1118
+ Tags?: Array<ConfigFileTag>
1119
+ /**
1120
+ * 配置文件创建时间
1121
+ 注意:此字段可能返回 null,表示取不到有效值。
1122
+ */
1123
+ CreateTime?: string
1124
+ /**
1125
+ * 配置文件创建者
1126
+ 注意:此字段可能返回 null,表示取不到有效值。
1127
+ */
1128
+ CreateBy?: string
1129
+ /**
1130
+ * 配置文件修改时间
1131
+ 注意:此字段可能返回 null,表示取不到有效值。
1132
+ */
1133
+ ModifyTime?: string
1134
+ /**
1135
+ * 配置文件修改者
1136
+ 注意:此字段可能返回 null,表示取不到有效值。
1137
+ */
1138
+ ModifyBy?: string
1139
+ /**
1140
+ * 配置文件发布时间
1141
+ 注意:此字段可能返回 null,表示取不到有效值。
1142
+ */
1143
+ ReleaseTime?: string
1144
+ /**
1145
+ * 配置文件发布者
1146
+ 注意:此字段可能返回 null,表示取不到有效值。
1147
+ */
1148
+ ReleaseBy?: string
1149
+ }
1150
+
1151
+ /**
1152
+ * 治理中心命名空间输入参数
1153
+ */
1154
+ export interface GovernanceNamespaceInput {
1155
+ /**
1156
+ * 命名空间名。
1157
+ */
1158
+ Name: string
1159
+ /**
1160
+ * 描述信息。
1161
+ */
1162
+ Comment?: string
1163
+ /**
1164
+ * 新增的可以操作此命名空间的用户ID列表
1165
+ */
1166
+ UserIds?: Array<string>
1167
+ /**
1168
+ * 新增的可以操作此命名空间的用户组ID列表
1169
+ */
1170
+ GroupIds?: Array<string>
1171
+ /**
1172
+ * 移除可以操作此命名空间的用户ID列表
1173
+ */
1174
+ RemoveUserIds?: Array<string>
1175
+ /**
1176
+ * 移除可以操作此命名空间的用户组ID列表
1177
+ */
1178
+ RemoveGroupIds?: Array<string>
1179
+ }
1180
+
1181
+ /**
1182
+ * DeleteGovernanceServices返回参数结构体
1183
+ */
1184
+ export interface DeleteGovernanceServicesResponse {
1185
+ /**
1186
+ * 删除服务结果。
1187
+ */
1188
+ Result?: boolean
1189
+ /**
1190
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1191
+ */
1192
+ RequestId?: string
808
1193
  }
809
1194
 
810
1195
  /**
@@ -877,6 +1262,16 @@ export interface DeleteCloudNativeAPIGatewayCanaryRuleRequest {
877
1262
  Priority: number
878
1263
  }
879
1264
 
1265
+ /**
1266
+ * ModifyNativeGatewayServerGroup返回参数结构体
1267
+ */
1268
+ export interface ModifyNativeGatewayServerGroupResponse {
1269
+ /**
1270
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1271
+ */
1272
+ RequestId?: string
1273
+ }
1274
+
880
1275
  /**
881
1276
  * 网关实例协议端口列表
882
1277
  */
@@ -1119,6 +1514,20 @@ export interface ExternalRedis {
1119
1514
  RedisTimeout: number
1120
1515
  }
1121
1516
 
1517
+ /**
1518
+ * DeleteGovernanceNamespaces返回参数结构体
1519
+ */
1520
+ export interface DeleteGovernanceNamespacesResponse {
1521
+ /**
1522
+ * 删除是否成功。
1523
+ */
1524
+ Result?: boolean
1525
+ /**
1526
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1527
+ */
1528
+ RequestId?: string
1529
+ }
1530
+
1122
1531
  /**
1123
1532
  * ModifyCloudNativeAPIGatewayCertificate请求参数结构体
1124
1533
  */
@@ -1163,54 +1572,30 @@ export interface ModifyCloudNativeAPIGatewayCertificateRequest {
1163
1572
  }
1164
1573
 
1165
1574
  /**
1166
- * 多环境网络信息
1575
+ * DeleteCloudNativeAPIGatewayService请求参数结构体
1167
1576
  */
1168
- export interface EnvAddressInfo {
1577
+ export interface DeleteCloudNativeAPIGatewayServiceRequest {
1169
1578
  /**
1170
- * 环境名
1579
+ * 网关ID
1171
1580
  */
1172
- EnvName?: string
1581
+ GatewayId: string
1173
1582
  /**
1174
- * 是否开启config公网
1583
+ * 服务名字,服务ID
1175
1584
  */
1176
- EnableConfigInternet?: boolean
1585
+ Name: string
1586
+ }
1587
+
1588
+ /**
1589
+ * CLB多可用区信息
1590
+ */
1591
+ export interface CLBMultiRegion {
1177
1592
  /**
1178
- * config公网ip
1593
+ * 是否启用多可用区
1594
+ 注意:此字段可能返回 null,表示取不到有效值。
1179
1595
  */
1180
- ConfigInternetServiceIp?: string
1596
+ CLBMultiZoneFlag?: boolean
1181
1597
  /**
1182
- * config内网访问地址
1183
- 注意:此字段可能返回 null,表示取不到有效值。
1184
- */
1185
- ConfigIntranetAddress?: string
1186
- /**
1187
- * 是否开启config内网clb
1188
- 注意:此字段可能返回 null,表示取不到有效值。
1189
- */
1190
- EnableConfigIntranet?: boolean
1191
- /**
1192
- * 客户端公网带宽
1193
- 注意:此字段可能返回 null,表示取不到有效值。
1194
- */
1195
- InternetBandWidth?: number
1196
- /**
1197
- * 客户端公网CLB多可用区信息
1198
- 注意:此字段可能返回 null,表示取不到有效值。
1199
- */
1200
- CLBMultiRegion?: CLBMultiRegion
1201
- }
1202
-
1203
- /**
1204
- * CLB多可用区信息
1205
- */
1206
- export interface CLBMultiRegion {
1207
- /**
1208
- * 是否启用多可用区
1209
- 注意:此字段可能返回 null,表示取不到有效值。
1210
- */
1211
- CLBMultiZoneFlag?: boolean
1212
- /**
1213
- * 主可用区信息
1598
+ * 主可用区信息
1214
1599
  注意:此字段可能返回 null,表示取不到有效值。
1215
1600
  */
1216
1601
  CLBMasterZone?: string
@@ -1399,6 +1784,27 @@ export interface CreateWafDomainsResponse {
1399
1784
  RequestId?: string
1400
1785
  }
1401
1786
 
1787
+ /**
1788
+ * 云原生网关限流插件自定义响应
1789
+ */
1790
+ export interface RateLimitResponse {
1791
+ /**
1792
+ * 自定义响应体
1793
+ 注意:此字段可能返回 null,表示取不到有效值。
1794
+ */
1795
+ Body?: string
1796
+ /**
1797
+ * Headers
1798
+ 注意:此字段可能返回 null,表示取不到有效值。
1799
+ */
1800
+ Headers?: Array<KVMapping>
1801
+ /**
1802
+ * http状态码
1803
+ 注意:此字段可能返回 null,表示取不到有效值。
1804
+ */
1805
+ HttpStatus?: number
1806
+ }
1807
+
1402
1808
  /**
1403
1809
  * DescribeCloudNativeAPIGatewayServices请求参数结构体
1404
1810
  */
@@ -1422,13 +1828,13 @@ export interface DescribeCloudNativeAPIGatewayServicesRequest {
1422
1828
  }
1423
1829
 
1424
1830
  /**
1425
- * UnbindAutoScalerResourceStrategyFromGroups返回参数结构体
1831
+ * CreateConfigFile返回参数结构体
1426
1832
  */
1427
- export interface UnbindAutoScalerResourceStrategyFromGroupsResponse {
1833
+ export interface CreateConfigFileResponse {
1428
1834
  /**
1429
- * 是否成功
1835
+ * 是否创建成功
1430
1836
  */
1431
- Result: boolean
1837
+ Result?: boolean
1432
1838
  /**
1433
1839
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1434
1840
  */
@@ -1449,6 +1855,75 @@ export interface DescribeCloudNativeAPIGatewayUpstreamResponse {
1449
1855
  RequestId?: string
1450
1856
  }
1451
1857
 
1858
+ /**
1859
+ * 服务契约接口定义
1860
+ */
1861
+ export interface GovernanceInterfaceDescription {
1862
+ /**
1863
+ * 契约接口ID
1864
+ 注意:此字段可能返回 null,表示取不到有效值。
1865
+ */
1866
+ ID?: string
1867
+ /**
1868
+ * 方法名称
1869
+ 注意:此字段可能返回 null,表示取不到有效值。
1870
+ */
1871
+ Method?: string
1872
+ /**
1873
+ * 路径/接口名称
1874
+ 注意:此字段可能返回 null,表示取不到有效值。
1875
+ */
1876
+ Path?: string
1877
+ /**
1878
+ * 内容
1879
+ 注意:此字段可能返回 null,表示取不到有效值。
1880
+ */
1881
+ Content?: string
1882
+ /**
1883
+ * 创建来源
1884
+ 注意:此字段可能返回 null,表示取不到有效值。
1885
+ */
1886
+ Source?: string
1887
+ /**
1888
+ * 信息摘要
1889
+ 注意:此字段可能返回 null,表示取不到有效值。
1890
+ */
1891
+ Revision?: string
1892
+ /**
1893
+ * 创建时间
1894
+ 注意:此字段可能返回 null,表示取不到有效值。
1895
+ */
1896
+ CreateTime?: string
1897
+ /**
1898
+ * 修改时间
1899
+ 注意:此字段可能返回 null,表示取不到有效值。
1900
+ */
1901
+ ModifyTime?: string
1902
+ /**
1903
+ * 接口名称
1904
+ 注意:此字段可能返回 null,表示取不到有效值。
1905
+ */
1906
+ Name?: string
1907
+ }
1908
+
1909
+ /**
1910
+ * DescribeGovernanceServiceContractVersions请求参数结构体
1911
+ */
1912
+ export interface DescribeGovernanceServiceContractVersionsRequest {
1913
+ /**
1914
+ * 引擎实例ID
1915
+ */
1916
+ InstanceId: string
1917
+ /**
1918
+ * 命名空间
1919
+ */
1920
+ Namespace: string
1921
+ /**
1922
+ * 服务名
1923
+ */
1924
+ Service?: string
1925
+ }
1926
+
1452
1927
  /**
1453
1928
  * DeleteAutoScalerResourceStrategy请求参数结构体
1454
1929
  */
@@ -1463,6 +1938,117 @@ export interface DeleteAutoScalerResourceStrategyRequest {
1463
1938
  StrategyId: string
1464
1939
  }
1465
1940
 
1941
+ /**
1942
+ * DescribePublicNetwork请求参数结构体
1943
+ */
1944
+ export interface DescribePublicNetworkRequest {
1945
+ /**
1946
+ * 云原生API网关实例ID。
1947
+ */
1948
+ GatewayId: string
1949
+ /**
1950
+ * 网关分组ID
1951
+ */
1952
+ GroupId: string
1953
+ /**
1954
+ * 网络ID
1955
+ */
1956
+ NetworkId: string
1957
+ }
1958
+
1959
+ /**
1960
+ * 治理中心实例信息。
1961
+ */
1962
+ export interface GovernanceInstance {
1963
+ /**
1964
+ * 实例id。
1965
+ */
1966
+ Id?: string
1967
+ /**
1968
+ * 实例所在服务名。
1969
+ */
1970
+ Service?: string
1971
+ /**
1972
+ * 实例所在命名空间名。
1973
+ */
1974
+ Namespace?: string
1975
+ /**
1976
+ * 实例ip地址。
1977
+ 注意:此字段可能返回 null,表示取不到有效值。
1978
+ */
1979
+ Host?: string
1980
+ /**
1981
+ * 实例端口信息。
1982
+ 注意:此字段可能返回 null,表示取不到有效值。
1983
+ */
1984
+ Port?: number
1985
+ /**
1986
+ * 通信协议。
1987
+ 注意:此字段可能返回 null,表示取不到有效值。
1988
+ */
1989
+ Protocol?: string
1990
+ /**
1991
+ * 版本信息。
1992
+ 注意:此字段可能返回 null,表示取不到有效值。
1993
+ */
1994
+ Version?: string
1995
+ /**
1996
+ * 负载均衡权重。
1997
+ 注意:此字段可能返回 null,表示取不到有效值。
1998
+ */
1999
+ Weight?: number
2000
+ /**
2001
+ * 是否开启健康检查。
2002
+ 注意:此字段可能返回 null,表示取不到有效值。
2003
+ */
2004
+ EnableHealthCheck?: boolean
2005
+ /**
2006
+ * 实例是否健康。
2007
+ 注意:此字段可能返回 null,表示取不到有效值。
2008
+ */
2009
+ Healthy?: boolean
2010
+ /**
2011
+ * 实例是否隔离。
2012
+ 注意:此字段可能返回 null,表示取不到有效值。
2013
+ */
2014
+ Isolate?: boolean
2015
+ /**
2016
+ * 实例创建时间。
2017
+ 注意:此字段可能返回 null,表示取不到有效值。
2018
+ */
2019
+ CreateTime?: string
2020
+ /**
2021
+ * 实例修改时间。
2022
+ 注意:此字段可能返回 null,表示取不到有效值。
2023
+ */
2024
+ ModifyTime?: string
2025
+ /**
2026
+ * 元数据数组。
2027
+ 注意:此字段可能返回 null,表示取不到有效值。
2028
+ */
2029
+ Metadatas?: Array<Metadata>
2030
+ /**
2031
+ * 上报心跳间隔。
2032
+ 注意:此字段可能返回 null,表示取不到有效值。
2033
+ */
2034
+ Ttl?: number
2035
+ /**
2036
+ * 版本信息。
2037
+ 注意:此字段可能返回 null,表示取不到有效值。
2038
+ */
2039
+ InstanceVersion?: string
2040
+ /**
2041
+ * 状态信息
2042
+ 注意:此字段可能返回 null,表示取不到有效值。
2043
+ */
2044
+ HealthStatus?: string
2045
+ /**
2046
+ * 描述
2047
+ 注意:此字段可能返回 null,表示取不到有效值。
2048
+ */
2049
+ Comment?: string
2050
+ }
2051
+
1466
2052
  /**
1467
2053
  * Nacos副本信息
1468
2054
  */
@@ -1529,7 +2115,7 @@ export interface CreateGovernanceInstancesResponse {
1529
2115
  /**
1530
2116
  * 创建是否成功。
1531
2117
  */
1532
- Result: boolean
2118
+ Result?: boolean
1533
2119
  /**
1534
2120
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1535
2121
  */
@@ -1537,25 +2123,17 @@ export interface CreateGovernanceInstancesResponse {
1537
2123
  }
1538
2124
 
1539
2125
  /**
1540
- * DescribeCloudNativeAPIGatewayNodes请求参数结构体
2126
+ * CreateGovernanceNamespaces请求参数结构体
1541
2127
  */
1542
- export interface DescribeCloudNativeAPIGatewayNodesRequest {
1543
- /**
1544
- * 云原生API网关实例ID。
1545
- */
1546
- GatewayId: string
1547
- /**
1548
- * 实例分组id
1549
- */
1550
- GroupId?: string
2128
+ export interface CreateGovernanceNamespacesRequest {
1551
2129
  /**
1552
- * 翻页获取多少个
2130
+ * tse 实例id。
1553
2131
  */
1554
- Limit?: number
2132
+ InstanceId: string
1555
2133
  /**
1556
- * 翻页从第几个开始获取
2134
+ * 命名空间信息。
1557
2135
  */
1558
- Offset?: number
2136
+ GovernanceNamespaces: Array<GovernanceNamespaceInput>
1559
2137
  }
1560
2138
 
1561
2139
  /**
@@ -1606,39 +2184,75 @@ export interface CreateGatewayServiceResult {
1606
2184
  }
1607
2185
 
1608
2186
  /**
1609
- * 云原生网关证书
2187
+ * 服务别名结构信息
1610
2188
  */
1611
- export interface KongCertificate {
2189
+ export interface GovernanceAlias {
1612
2190
  /**
1613
- *
1614
- 注意:此字段可能返回 null,表示取不到有效值。
2191
+ * 服务别名
1615
2192
  */
1616
- Cert?: KongCertificatesPreview
1617
- }
1618
-
1619
- /**
1620
- * 键值对
1621
- */
1622
- export interface KVPair {
2193
+ Alias?: string
1623
2194
  /**
1624
- *
2195
+ * 服务别名命名空间
1625
2196
  */
1626
- Key: string
2197
+ AliasNamespace?: string
1627
2198
  /**
1628
- *
2199
+ * 服务别名指向的服务名
1629
2200
  */
1630
- Value: string
1631
- }
1632
-
1633
- /**
1634
- * DeleteEngine返回参数结构体
1635
- */
1636
- export interface DeleteEngineResponse {
2201
+ Service?: string
1637
2202
  /**
1638
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2203
+ * 服务别名指向的服务命名空间
1639
2204
  */
1640
- RequestId?: string
1641
- }
2205
+ Namespace?: string
2206
+ /**
2207
+ * 服务别名的描述信息
2208
+ 注意:此字段可能返回 null,表示取不到有效值。
2209
+ */
2210
+ Comment?: string
2211
+ /**
2212
+ * 服务别名创建时间
2213
+ 注意:此字段可能返回 null,表示取不到有效值。
2214
+ */
2215
+ CreateTime?: string
2216
+ /**
2217
+ * 服务别名修改时间
2218
+ 注意:此字段可能返回 null,表示取不到有效值。
2219
+ */
2220
+ ModifyTime?: string
2221
+ /**
2222
+ * 服务别名ID
2223
+ 注意:此字段可能返回 null,表示取不到有效值。
2224
+ */
2225
+ Id?: string
2226
+ /**
2227
+ * 该服务别名是否可以编辑
2228
+ 注意:此字段可能返回 null,表示取不到有效值。
2229
+ */
2230
+ Editable?: boolean
2231
+ }
2232
+
2233
+ /**
2234
+ * 键值对
2235
+ */
2236
+ export interface KVPair {
2237
+ /**
2238
+ * 键
2239
+ */
2240
+ Key: string
2241
+ /**
2242
+ * 值
2243
+ */
2244
+ Value: string
2245
+ }
2246
+
2247
+ /**
2248
+ * DeleteEngine返回参数结构体
2249
+ */
2250
+ export interface DeleteEngineResponse {
2251
+ /**
2252
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2253
+ */
2254
+ RequestId?: string
2255
+ }
1642
2256
 
1643
2257
  /**
1644
2258
  * DescribeCloudNativeAPIGatewayRoutes返回参数结构体
@@ -1694,7 +2308,7 @@ export interface DeleteGovernanceInstancesResponse {
1694
2308
  /**
1695
2309
  * 操作是否成功。
1696
2310
  */
1697
- Result: boolean
2311
+ Result?: boolean
1698
2312
  /**
1699
2313
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1700
2314
  */
@@ -1980,6 +2594,60 @@ export interface DeleteNativeGatewayServerGroupRequest {
1980
2594
  GroupId: string
1981
2595
  }
1982
2596
 
2597
+ /**
2598
+ * DeleteGovernanceAliases返回参数结构体
2599
+ */
2600
+ export interface DeleteGovernanceAliasesResponse {
2601
+ /**
2602
+ * 创建是否成功。
2603
+ */
2604
+ Result?: boolean
2605
+ /**
2606
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2607
+ */
2608
+ RequestId?: string
2609
+ }
2610
+
2611
+ /**
2612
+ * RollbackConfigFileReleases返回参数结构体
2613
+ */
2614
+ export interface RollbackConfigFileReleasesResponse {
2615
+ /**
2616
+ * 回滚结果
2617
+ */
2618
+ Result?: boolean
2619
+ /**
2620
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2621
+ */
2622
+ RequestId?: string
2623
+ }
2624
+
2625
+ /**
2626
+ * ModifyUpstreamNodeStatus请求参数结构体
2627
+ */
2628
+ export interface ModifyUpstreamNodeStatusRequest {
2629
+ /**
2630
+ * 网关实例ID
2631
+ */
2632
+ GatewayId: string
2633
+ /**
2634
+ * 服务名称
2635
+ */
2636
+ ServiceName: string
2637
+ /**
2638
+ * 访问IP地址或域名
2639
+ */
2640
+ Host: string
2641
+ /**
2642
+ * 访问端口
2643
+ */
2644
+ Port: number
2645
+ /**
2646
+ * HEALTHY或UNHEALTHY
2647
+ */
2648
+ Status: string
2649
+ }
2650
+
1983
2651
  /**
1984
2652
  * ModifyCloudNativeAPIGatewayRoute返回参数结构体
1985
2653
  */
@@ -1990,6 +2658,112 @@ export interface ModifyCloudNativeAPIGatewayRouteResponse {
1990
2658
  RequestId?: string
1991
2659
  }
1992
2660
 
2661
+ /**
2662
+ * 配置文件发布历史
2663
+ */
2664
+ export interface ConfigFileReleaseHistory {
2665
+ /**
2666
+ * 配置文件发布历史记录id
2667
+ 注意:此字段可能返回 null,表示取不到有效值。
2668
+ */
2669
+ Id?: number
2670
+ /**
2671
+ * 配置文件发布历史名称
2672
+ 注意:此字段可能返回 null,表示取不到有效值。
2673
+ */
2674
+ Name?: string
2675
+ /**
2676
+ * 配置文件发布历史命名空间
2677
+ 注意:此字段可能返回 null,表示取不到有效值。
2678
+ */
2679
+ Namespace?: string
2680
+ /**
2681
+ * 配置文件发布历史组
2682
+ 注意:此字段可能返回 null,表示取不到有效值。
2683
+ */
2684
+ Group?: string
2685
+ /**
2686
+ * 配置文件发布历史名称
2687
+ 注意:此字段可能返回 null,表示取不到有效值。
2688
+ */
2689
+ FileName?: string
2690
+ /**
2691
+ * 配置文件发布历史内容
2692
+ 注意:此字段可能返回 null,表示取不到有效值。
2693
+ */
2694
+ Content?: string
2695
+ /**
2696
+ * 配置文件发布历史格式
2697
+ 注意:此字段可能返回 null,表示取不到有效值。
2698
+ */
2699
+ Format?: string
2700
+ /**
2701
+ * 配置文件发布历史注释
2702
+ 注意:此字段可能返回 null,表示取不到有效值。
2703
+ */
2704
+ Comment?: string
2705
+ /**
2706
+ * 配置文件发布历史Md5
2707
+ 注意:此字段可能返回 null,表示取不到有效值。
2708
+ */
2709
+ Md5?: string
2710
+ /**
2711
+ * 配置文件发布历史类型
2712
+ 注意:此字段可能返回 null,表示取不到有效值。
2713
+ */
2714
+ Type?: string
2715
+ /**
2716
+ * 配置文件发布历史状态
2717
+ 注意:此字段可能返回 null,表示取不到有效值。
2718
+ */
2719
+ Status?: string
2720
+ /**
2721
+ * 配置文件发布历史标签组
2722
+ 注意:此字段可能返回 null,表示取不到有效值。
2723
+ */
2724
+ Tags?: Array<ConfigFileTag>
2725
+ /**
2726
+ * 配置文件发布创建时间
2727
+ 注意:此字段可能返回 null,表示取不到有效值。
2728
+ */
2729
+ CreateTime?: string
2730
+ /**
2731
+ * 配置文件发布创建者
2732
+ 注意:此字段可能返回 null,表示取不到有效值。
2733
+ */
2734
+ CreateBy?: string
2735
+ /**
2736
+ * 配置文件发布修改时间
2737
+ 注意:此字段可能返回 null,表示取不到有效值。
2738
+ */
2739
+ ModifyTime?: string
2740
+ /**
2741
+ * 配置文件发布修改者
2742
+ 注意:此字段可能返回 null,表示取不到有效值。
2743
+ */
2744
+ ModifyBy?: string
2745
+ /**
2746
+ * 发布描述
2747
+ 注意:此字段可能返回 null,表示取不到有效值。
2748
+ */
2749
+ ReleaseDescription?: string
2750
+ /**
2751
+ * 原因,用于失败时原因展示
2752
+ 注意:此字段可能返回 null,表示取不到有效值。
2753
+ */
2754
+ ReleaseReason?: string
2755
+ }
2756
+
2757
+ /**
2758
+ * OpenWafProtection返回参数结构体
2759
+ */
2760
+ export interface OpenWafProtectionResponse {
2761
+ /**
2762
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2763
+ */
2764
+ RequestId?: string
2765
+ }
2766
+
1993
2767
  /**
1994
2768
  * 删除网关实例结果
1995
2769
  */
@@ -2090,9 +2864,17 @@ export interface DeleteCloudNativeAPIGatewayServiceRateLimitRequest {
2090
2864
  }
2091
2865
 
2092
2866
  /**
2093
- * OpenWafProtection返回参数结构体
2867
+ * DescribeConfigFileReleases返回参数结构体
2094
2868
  */
2095
- export interface OpenWafProtectionResponse {
2869
+ export interface DescribeConfigFileReleasesResponse {
2870
+ /**
2871
+ * 总条数
2872
+ */
2873
+ TotalCount?: number
2874
+ /**
2875
+ * 发布列表
2876
+ */
2877
+ Releases?: Array<ConfigFileRelease>
2096
2878
  /**
2097
2879
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2098
2880
  */
@@ -2110,6 +2892,20 @@ export interface KongPassiveHealthCheck {
2110
2892
  Type?: string
2111
2893
  }
2112
2894
 
2895
+ /**
2896
+ * DescribeCloudNativeAPIGatewayConfig返回参数结构体
2897
+ */
2898
+ export interface DescribeCloudNativeAPIGatewayConfigResponse {
2899
+ /**
2900
+ * 获取云原生API网关响应结果。
2901
+ */
2902
+ Result?: DescribeCloudNativeAPIGatewayConfigResult
2903
+ /**
2904
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2905
+ */
2906
+ RequestId?: string
2907
+ }
2908
+
2113
2909
  /**
2114
2910
  * DescribeCloudNativeAPIGateway请求参数结构体
2115
2911
  */
@@ -2120,6 +2916,25 @@ export interface DescribeCloudNativeAPIGatewayRequest {
2120
2916
  GatewayId: string
2121
2917
  }
2122
2918
 
2919
+ /**
2920
+ * 私有网络信息
2921
+ */
2922
+ export interface VpcInfo {
2923
+ /**
2924
+ * Vpc Id
2925
+ */
2926
+ VpcId: string
2927
+ /**
2928
+ * 子网ID
2929
+ */
2930
+ SubnetId: string
2931
+ /**
2932
+ * 内网访问地址
2933
+ 注意:此字段可能返回 null,表示取不到有效值。
2934
+ */
2935
+ IntranetAddress?: string
2936
+ }
2937
+
2123
2938
  /**
2124
2939
  * 云原生API网关vpc配置。
2125
2940
  */
@@ -2153,61 +2968,239 @@ export interface CloudAPIGatewayCanaryRuleList {
2153
2968
  }
2154
2969
 
2155
2970
  /**
2156
- * ModifyUpstreamNodeStatus请求参数结构体
2971
+ * 治理中心服务信息。
2157
2972
  */
2158
- export interface ModifyUpstreamNodeStatusRequest {
2973
+ export interface GovernanceService {
2159
2974
  /**
2160
- * 网关实例ID
2975
+ * 服务名称。
2161
2976
  */
2162
- GatewayId: string
2977
+ Name?: string
2163
2978
  /**
2164
- * 服务名称
2979
+ * 命名空间名称。
2165
2980
  */
2166
- ServiceName: string
2981
+ Namespace?: string
2167
2982
  /**
2168
- * 访问IP地址或域名
2983
+ * 元数据信息数组。
2984
+ 注意:此字段可能返回 null,表示取不到有效值。
2169
2985
  */
2170
- Host: string
2986
+ Metadatas?: Array<Metadata>
2171
2987
  /**
2172
- * 访问端口
2988
+ * 描述信息。
2989
+ 注意:此字段可能返回 null,表示取不到有效值。
2173
2990
  */
2174
- Port: number
2991
+ Comment?: string
2175
2992
  /**
2176
- * HEALTHY或UNHEALTHY
2993
+ * 创建时间。
2994
+ 注意:此字段可能返回 null,表示取不到有效值。
2177
2995
  */
2178
- Status: string
2179
- }
2180
-
2181
- /**
2182
- * DescribeGovernanceInstances返回参数结构体
2183
- */
2184
- export interface DescribeGovernanceInstancesResponse {
2996
+ CreateTime?: string
2185
2997
  /**
2186
- * 服务实例总数量。
2998
+ * 修改时间。
2999
+ 注意:此字段可能返回 null,表示取不到有效值。
2187
3000
  */
2188
- TotalCount: number
3001
+ ModifyTime?: string
2189
3002
  /**
2190
- * 服务里实例列表。
3003
+ * 服务所属部门。
3004
+ 注意:此字段可能返回 null,表示取不到有效值。
2191
3005
  */
2192
- Content: Array<GovernanceInstance>
3006
+ Department?: string
2193
3007
  /**
2194
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3008
+ * 服务所属业务。
3009
+ 注意:此字段可能返回 null,表示取不到有效值。
2195
3010
  */
2196
- RequestId?: string
2197
- }
2198
-
2199
- /**
2200
- * DescribeCloudNativeAPIGatewayConfig返回参数结构体
2201
- */
2202
- export interface DescribeCloudNativeAPIGatewayConfigResponse {
3011
+ Business?: string
2203
3012
  /**
2204
- * 获取云原生API网关响应结果。
3013
+ * 健康服务实例数
3014
+ 注意:此字段可能返回 null,表示取不到有效值。
2205
3015
  */
2206
- Result?: DescribeCloudNativeAPIGatewayConfigResult
3016
+ HealthyInstanceCount?: number
2207
3017
  /**
2208
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3018
+ * 服务实例总数
3019
+ 注意:此字段可能返回 null,表示取不到有效值。
2209
3020
  */
2210
- RequestId?: string
3021
+ TotalInstanceCount?: number
3022
+ /**
3023
+ * 服务ID
3024
+ 注意:此字段可能返回 null,表示取不到有效值。
3025
+ */
3026
+ Id?: string
3027
+ /**
3028
+ * 是否可以编辑
3029
+ 注意:此字段可能返回 null,表示取不到有效值。
3030
+ */
3031
+ Editable?: boolean
3032
+ /**
3033
+ * 可以编辑该资源的用户ID
3034
+ 注意:此字段可能返回 null,表示取不到有效值。
3035
+ */
3036
+ UserIds?: Array<string>
3037
+ /**
3038
+ * 可以编辑该资源的用户组ID
3039
+ 注意:此字段可能返回 null,表示取不到有效值。
3040
+ */
3041
+ GroupIds?: Array<string>
3042
+ /**
3043
+ * 移除可以编辑该资源的用户ID
3044
+ 注意:此字段可能返回 null,表示取不到有效值。
3045
+ */
3046
+ RemoveUserIds?: Array<string>
3047
+ /**
3048
+ * 移除可以编辑该资源的用户组ID
3049
+ 注意:此字段可能返回 null,表示取不到有效值。
3050
+ */
3051
+ RemoveGroupIds?: Array<string>
3052
+ /**
3053
+ * 该服务对哪些命名空间可见
3054
+ 注意:此字段可能返回 null,表示取不到有效值。
3055
+ */
3056
+ ExportTo?: Array<string>
3057
+ /**
3058
+ * 该服务信息摘要签名
3059
+ 注意:此字段可能返回 null,表示取不到有效值。
3060
+ */
3061
+ Revision?: string
3062
+ }
3063
+
3064
+ /**
3065
+ * ModifyCloudNativeAPIGatewayCertificate返回参数结构体
3066
+ */
3067
+ export interface ModifyCloudNativeAPIGatewayCertificateResponse {
3068
+ /**
3069
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3070
+ */
3071
+ RequestId?: string
3072
+ }
3073
+
3074
+ /**
3075
+ * DescribeGovernanceInstances返回参数结构体
3076
+ */
3077
+ export interface DescribeGovernanceInstancesResponse {
3078
+ /**
3079
+ * 服务实例总数量。
3080
+ */
3081
+ TotalCount?: number
3082
+ /**
3083
+ * 服务里实例列表。
3084
+ */
3085
+ Content?: Array<GovernanceInstance>
3086
+ /**
3087
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3088
+ */
3089
+ RequestId?: string
3090
+ }
3091
+
3092
+ /**
3093
+ * 配置文件发布
3094
+ */
3095
+ export interface ConfigFileRelease {
3096
+ /**
3097
+ * 配置文件发布id
3098
+ 注意:此字段可能返回 null,表示取不到有效值。
3099
+ */
3100
+ Id?: number
3101
+ /**
3102
+ * 配置文件发布名称
3103
+ 注意:此字段可能返回 null,表示取不到有效值。
3104
+ */
3105
+ Name?: string
3106
+ /**
3107
+ * 配置文件发布命名空间
3108
+ 注意:此字段可能返回 null,表示取不到有效值。
3109
+ */
3110
+ Namespace?: string
3111
+ /**
3112
+ * 配置文件发布组
3113
+ 注意:此字段可能返回 null,表示取不到有效值。
3114
+ */
3115
+ Group?: string
3116
+ /**
3117
+ * 配置文件发布文件名称
3118
+ 注意:此字段可能返回 null,表示取不到有效值。
3119
+ */
3120
+ FileName?: string
3121
+ /**
3122
+ * 配置文件发布内容
3123
+ 注意:此字段可能返回 null,表示取不到有效值。
3124
+ */
3125
+ Content?: string
3126
+ /**
3127
+ * 配置文件发布注释
3128
+ 注意:此字段可能返回 null,表示取不到有效值。
3129
+ */
3130
+ Comment?: string
3131
+ /**
3132
+ * 配置文件发布Md5
3133
+ 注意:此字段可能返回 null,表示取不到有效值。
3134
+ */
3135
+ Md5?: string
3136
+ /**
3137
+ * 配置文件发布版本
3138
+ 注意:此字段可能返回 null,表示取不到有效值。
3139
+ */
3140
+ Version?: number
3141
+ /**
3142
+ * 配置文件发布创建时间
3143
+ 注意:此字段可能返回 null,表示取不到有效值。
3144
+ */
3145
+ CreateTime?: string
3146
+ /**
3147
+ * 配置文件发布创建者
3148
+ 注意:此字段可能返回 null,表示取不到有效值。
3149
+ */
3150
+ CreateBy?: string
3151
+ /**
3152
+ * 配置文件发布修改时间
3153
+ 注意:此字段可能返回 null,表示取不到有效值。
3154
+ */
3155
+ ModifyTime?: string
3156
+ /**
3157
+ * 配置文件发布修改者
3158
+ 注意:此字段可能返回 null,表示取不到有效值。
3159
+ */
3160
+ ModifyBy?: string
3161
+ /**
3162
+ * 发布描述
3163
+ 注意:此字段可能返回 null,表示取不到有效值。
3164
+ */
3165
+ ReleaseDescription?: string
3166
+ /**
3167
+ * 是否生效
3168
+ 注意:此字段可能返回 null,表示取不到有效值。
3169
+ */
3170
+ Active?: boolean
3171
+ /**
3172
+ * 格式
3173
+ 注意:此字段可能返回 null,表示取不到有效值。
3174
+ */
3175
+ Format?: string
3176
+ }
3177
+
3178
+ /**
3179
+ * ModifyConfigFiles请求参数结构体
3180
+ */
3181
+ export interface ModifyConfigFilesRequest {
3182
+ /**
3183
+ * ins-df344df5
3184
+ */
3185
+ InstanceId: string
3186
+ /**
3187
+ * 配置文件列表
3188
+ */
3189
+ ConfigFile: ConfigFile
3190
+ }
3191
+
3192
+ /**
3193
+ * DeleteGovernanceNamespaces请求参数结构体
3194
+ */
3195
+ export interface DeleteGovernanceNamespacesRequest {
3196
+ /**
3197
+ * tse 实例 id。
3198
+ */
3199
+ InstanceId: string
3200
+ /**
3201
+ * 命名空间信息。
3202
+ */
3203
+ GovernanceNamespaces: Array<GovernanceNamespaceInput>
2211
3204
  }
2212
3205
 
2213
3206
  /**
@@ -2314,6 +3307,20 @@ export interface KongCertificatesList {
2314
3307
  Pages?: number
2315
3308
  }
2316
3309
 
3310
+ /**
3311
+ * ModifyGovernanceNamespaces返回参数结构体
3312
+ */
3313
+ export interface ModifyGovernanceNamespacesResponse {
3314
+ /**
3315
+ * 操作是否成功。
3316
+ */
3317
+ Result?: boolean
3318
+ /**
3319
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3320
+ */
3321
+ RequestId?: string
3322
+ }
3323
+
2317
3324
  /**
2318
3325
  * 云原生网关Tse 限流插件配置
2319
3326
  */
@@ -2388,6 +3395,32 @@ external_redis 外部redis
2388
3395
  LineUpTime?: number
2389
3396
  }
2390
3397
 
3398
+ /**
3399
+ * DescribeConfigFileRelease请求参数结构体
3400
+ */
3401
+ export interface DescribeConfigFileReleaseRequest {
3402
+ /**
3403
+ * TSE实例id
3404
+ */
3405
+ InstanceId: string
3406
+ /**
3407
+ * 命名空间名称
3408
+ */
3409
+ Namespace: string
3410
+ /**
3411
+ * 配置分组名称
3412
+ */
3413
+ Group: string
3414
+ /**
3415
+ * 配置文件名称
3416
+ */
3417
+ Name: string
3418
+ /**
3419
+ * 配置文件发布名称
3420
+ */
3421
+ ReleaseName?: string
3422
+ }
3423
+
2391
3424
  /**
2392
3425
  * CreateCloudNativeAPIGatewayRoute返回参数结构体
2393
3426
  */
@@ -2426,6 +3459,20 @@ export interface DescribeCloudNativeAPIGatewayConfigRequest {
2426
3459
  GroupId?: string
2427
3460
  }
2428
3461
 
3462
+ /**
3463
+ * ModifyConfigFileGroup请求参数结构体
3464
+ */
3465
+ export interface ModifyConfigFileGroupRequest {
3466
+ /**
3467
+ * tse实例id
3468
+ */
3469
+ InstanceId: string
3470
+ /**
3471
+ * 配置文件组
3472
+ */
3473
+ ConfigFileGroup: ConfigFileGroup
3474
+ }
3475
+
2429
3476
  /**
2430
3477
  * Kong Upstream中的Target
2431
3478
  */
@@ -2473,9 +3520,27 @@ export interface KongTarget {
2473
3520
  }
2474
3521
 
2475
3522
  /**
2476
- * UpdateEngineInternetAccess返回参数结构体
3523
+ * UnbindAutoScalerResourceStrategyFromGroups返回参数结构体
2477
3524
  */
2478
- export interface UpdateEngineInternetAccessResponse {
3525
+ export interface UnbindAutoScalerResourceStrategyFromGroupsResponse {
3526
+ /**
3527
+ * 是否成功
3528
+ */
3529
+ Result: boolean
3530
+ /**
3531
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3532
+ */
3533
+ RequestId?: string
3534
+ }
3535
+
3536
+ /**
3537
+ * DeleteConfigFiles返回参数结构体
3538
+ */
3539
+ export interface DeleteConfigFilesResponse {
3540
+ /**
3541
+ * 修改是否成功
3542
+ */
3543
+ Result?: boolean
2479
3544
  /**
2480
3545
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2481
3546
  */
@@ -2515,21 +3580,29 @@ export interface CreateGovernanceInstancesRequest {
2515
3580
  }
2516
3581
 
2517
3582
  /**
2518
- * DescribeNacosServerInterfaces返回参数结构体
3583
+ * 配置发布删除
2519
3584
  */
2520
- export interface DescribeNacosServerInterfacesResponse {
3585
+ export interface ConfigFileReleaseDeletion {
2521
3586
  /**
2522
- * 接口总个数
3587
+ * 命名空间
3588
+ 注意:此字段可能返回 null,表示取不到有效值。
2523
3589
  */
2524
- TotalCount?: number
3590
+ Namespace?: string
2525
3591
  /**
2526
- * 接口列表
3592
+ * 配置分组
3593
+ 注意:此字段可能返回 null,表示取不到有效值。
2527
3594
  */
2528
- Content?: Array<NacosServerInterface>
3595
+ Group?: string
2529
3596
  /**
2530
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3597
+ * 文件名称
3598
+ 注意:此字段可能返回 null,表示取不到有效值。
2531
3599
  */
2532
- RequestId?: string
3600
+ FileName?: string
3601
+ /**
3602
+ * 发布版本
3603
+ 注意:此字段可能返回 null,表示取不到有效值。
3604
+ */
3605
+ ReleaseVersion?: string
2533
3606
  }
2534
3607
 
2535
3608
  /**
@@ -2577,6 +3650,20 @@ export interface KVMapping {
2577
3650
  Value?: string
2578
3651
  }
2579
3652
 
3653
+ /**
3654
+ * ModifyConfigFiles返回参数结构体
3655
+ */
3656
+ export interface ModifyConfigFilesResponse {
3657
+ /**
3658
+ * 修改是否成功
3659
+ */
3660
+ Result?: boolean
3661
+ /**
3662
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3663
+ */
3664
+ RequestId?: string
3665
+ }
3666
+
2580
3667
  /**
2581
3668
  * BindAutoScalerResourceStrategyToGroups请求参数结构体
2582
3669
  */
@@ -2596,24 +3683,13 @@ export interface BindAutoScalerResourceStrategyToGroupsRequest {
2596
3683
  }
2597
3684
 
2598
3685
  /**
2599
- * 云原生网关限流插件自定义响应
3686
+ * ModifyNetworkAccessStrategy返回参数结构体
2600
3687
  */
2601
- export interface RateLimitResponse {
2602
- /**
2603
- * 自定义响应体
2604
- 注意:此字段可能返回 null,表示取不到有效值。
2605
- */
2606
- Body?: string
2607
- /**
2608
- * Headers
2609
- 注意:此字段可能返回 null,表示取不到有效值。
2610
- */
2611
- Headers?: Array<KVMapping>
3688
+ export interface ModifyNetworkAccessStrategyResponse {
2612
3689
  /**
2613
- * http状态码
2614
- 注意:此字段可能返回 null,表示取不到有效值。
3690
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2615
3691
  */
2616
- HttpStatus?: number
3692
+ RequestId?: string
2617
3693
  }
2618
3694
 
2619
3695
  /**
@@ -2631,15 +3707,15 @@ export interface DescribeCloudNativeAPIGatewayServiceRateLimitResponse {
2631
3707
  }
2632
3708
 
2633
3709
  /**
2634
- * DeleteCloudNativeAPIGatewayService请求参数结构体
3710
+ * DeleteCloudNativeAPIGatewayRoute请求参数结构体
2635
3711
  */
2636
- export interface DeleteCloudNativeAPIGatewayServiceRequest {
3712
+ export interface DeleteCloudNativeAPIGatewayRouteRequest {
2637
3713
  /**
2638
3714
  * 网关ID
2639
3715
  */
2640
3716
  GatewayId: string
2641
3717
  /**
2642
- * 服务名字,服务ID
3718
+ * 路由的ID或名字,不支持名称“未命名”
2643
3719
  */
2644
3720
  Name: string
2645
3721
  }
@@ -2688,36 +3764,86 @@ export interface CreateCloudNativeAPIGatewayCertificateResponse {
2688
3764
  }
2689
3765
 
2690
3766
  /**
2691
- * 存储的额外选项
3767
+ * 治理中心命名空间
2692
3768
  */
2693
- export interface StorageOption {
3769
+ export interface GovernanceNamespace {
2694
3770
  /**
2695
- * 存储对象,分为snap和txn两种
3771
+ * 命名空间名称。
2696
3772
  注意:此字段可能返回 null,表示取不到有效值。
2697
3773
  */
2698
3774
  Name?: string
2699
3775
  /**
2700
- * 存储类型,分为三类CLOUD_PREMIUM/CLOUD_SSD/CLOUD_SSD_PLUS,分别对应高性能云硬盘、SSD云硬盘、增强型SSD云硬盘
3776
+ * 命名空间描述信息。
2701
3777
  注意:此字段可能返回 null,表示取不到有效值。
2702
3778
  */
2703
- Type?: string
3779
+ Comment?: string
2704
3780
  /**
2705
- * 存储容量,[50, 3200]的范围
3781
+ * 创建时间。
2706
3782
  注意:此字段可能返回 null,表示取不到有效值。
2707
3783
  */
2708
- Capacity?: number
2709
- }
2710
-
2711
- /**
2712
- * 环境具体信息
2713
- */
2714
- export interface EnvInfo {
3784
+ CreateTime?: string
2715
3785
  /**
2716
- * 环境名称
3786
+ * 修改时间。
3787
+ 注意:此字段可能返回 null,表示取不到有效值。
2717
3788
  */
2718
- EnvName: string
3789
+ ModifyTime?: string
2719
3790
  /**
2720
- * 环境对应的网络信息
3791
+ * 命名空间下总服务数据量
3792
+ 注意:此字段可能返回 null,表示取不到有效值。
3793
+ */
3794
+ TotalServiceCount?: number
3795
+ /**
3796
+ * 命名空间下总健康实例数量
3797
+ 注意:此字段可能返回 null,表示取不到有效值。
3798
+ */
3799
+ TotalHealthInstanceCount?: number
3800
+ /**
3801
+ * 命名空间下总实例数量
3802
+ 注意:此字段可能返回 null,表示取不到有效值。
3803
+ */
3804
+ TotalInstanceCount?: number
3805
+ /**
3806
+ * 命名空间ID
3807
+ 注意:此字段可能返回 null,表示取不到有效值。
3808
+ */
3809
+ Id?: string
3810
+ /**
3811
+ * 是否可以编辑
3812
+ 注意:此字段可能返回 null,表示取不到有效值。
3813
+ */
3814
+ Editable?: boolean
3815
+ /**
3816
+ * 可以操作此命名空间的用户ID列表
3817
+ 注意:此字段可能返回 null,表示取不到有效值。
3818
+ */
3819
+ UserIds?: Array<string>
3820
+ /**
3821
+ * 可以操作此命名空间的用户组ID列表
3822
+ 注意:此字段可能返回 null,表示取不到有效值。
3823
+ */
3824
+ GroupIds?: Array<string>
3825
+ /**
3826
+ * 移除可以操作此命名空间的用户ID列表
3827
+ 注意:此字段可能返回 null,表示取不到有效值。
3828
+ */
3829
+ RemoveUserIds?: Array<string>
3830
+ /**
3831
+ * 移除可以操作此命名空间的用户组ID列表
3832
+ 注意:此字段可能返回 null,表示取不到有效值。
3833
+ */
3834
+ RemoveGroupIds?: Array<string>
3835
+ }
3836
+
3837
+ /**
3838
+ * 环境具体信息
3839
+ */
3840
+ export interface EnvInfo {
3841
+ /**
3842
+ * 环境名称
3843
+ */
3844
+ EnvName: string
3845
+ /**
3846
+ * 环境对应的网络信息
2721
3847
  */
2722
3848
  VpcInfos: Array<VpcInfo>
2723
3849
  /**
@@ -2925,81 +4051,118 @@ export interface DeleteGovernanceInstancesRequest {
2925
4051
  }
2926
4052
 
2927
4053
  /**
2928
- * 治理中心实例信息。
4054
+ * DeleteGovernanceInstancesByHost请求参数结构体
2929
4055
  */
2930
- export interface GovernanceInstance {
4056
+ export interface DeleteGovernanceInstancesByHostRequest {
2931
4057
  /**
2932
- * 实例id。
4058
+ * tse实例id。
2933
4059
  */
2934
- Id: string
4060
+ InstanceId: string
2935
4061
  /**
2936
- * 实例所在服务名。
4062
+ * 要删除的服务实例信息。
2937
4063
  */
2938
- Service: string
4064
+ GovernanceInstances: Array<GovernanceInstanceUpdate>
4065
+ }
4066
+
4067
+ /**
4068
+ * 存储的额外选项
4069
+ */
4070
+ export interface StorageOption {
2939
4071
  /**
2940
- * 实例所在命名空间名。
4072
+ * 存储对象,分为snap和txn两种
4073
+ 注意:此字段可能返回 null,表示取不到有效值。
2941
4074
  */
2942
- Namespace: string
4075
+ Name?: string
2943
4076
  /**
2944
- * 实例ip地址。
4077
+ * 存储类型,分为三类CLOUD_PREMIUM/CLOUD_SSD/CLOUD_SSD_PLUS,分别对应高性能云硬盘、SSD云硬盘、增强型SSD云硬盘
2945
4078
  注意:此字段可能返回 null,表示取不到有效值。
2946
4079
  */
2947
- Host: string
4080
+ Type?: string
2948
4081
  /**
2949
- * 实例端口信息。
4082
+ * 存储容量,[50, 3200]的范围
2950
4083
  注意:此字段可能返回 null,表示取不到有效值。
2951
4084
  */
2952
- Port: number
4085
+ Capacity?: number
4086
+ }
4087
+
4088
+ /**
4089
+ * DescribeConfigFile返回参数结构体
4090
+ */
4091
+ export interface DescribeConfigFileResponse {
2953
4092
  /**
2954
- * 通信协议。
4093
+ * 配置文件
2955
4094
  注意:此字段可能返回 null,表示取不到有效值。
2956
4095
  */
2957
- Protocol: string
4096
+ ConfigFile?: ConfigFile
2958
4097
  /**
2959
- * 版本信息。
4098
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4099
+ */
4100
+ RequestId?: string
4101
+ }
4102
+
4103
+ /**
4104
+ * RollbackConfigFileReleases请求参数结构体
4105
+ */
4106
+ export interface RollbackConfigFileReleasesRequest {
4107
+ /**
4108
+ * TSE实例id
4109
+ */
4110
+ InstanceId: string
4111
+ /**
4112
+ * 回滚发布
4113
+ */
4114
+ RollbackConfigFileReleases: Array<ConfigFileRelease>
4115
+ }
4116
+
4117
+ /**
4118
+ * 配置文件模板
4119
+ */
4120
+ export interface ConfigFileTemplate {
4121
+ /**
4122
+ * 配置文件模板id
2960
4123
  注意:此字段可能返回 null,表示取不到有效值。
2961
4124
  */
2962
- Version: string
4125
+ Id?: number
2963
4126
  /**
2964
- * 负载均衡权重。
4127
+ * 配置文件模板名称
2965
4128
  注意:此字段可能返回 null,表示取不到有效值。
2966
4129
  */
2967
- Weight: number
4130
+ Name?: string
2968
4131
  /**
2969
- * 是否开启健康检查。
4132
+ * 配置文件模板内容
2970
4133
  注意:此字段可能返回 null,表示取不到有效值。
2971
4134
  */
2972
- EnableHealthCheck: boolean
4135
+ Content?: string
2973
4136
  /**
2974
- * 实例是否健康。
4137
+ * 配置文件模板格式
2975
4138
  注意:此字段可能返回 null,表示取不到有效值。
2976
4139
  */
2977
- Healthy: boolean
4140
+ Format?: string
2978
4141
  /**
2979
- * 实例是否隔离。
4142
+ * 配置文件模板注释
2980
4143
  注意:此字段可能返回 null,表示取不到有效值。
2981
4144
  */
2982
- Isolate: boolean
4145
+ Comment?: string
2983
4146
  /**
2984
- * 实例创建时间。
4147
+ * 配置文件模板创建时间
2985
4148
  注意:此字段可能返回 null,表示取不到有效值。
2986
4149
  */
2987
- CreateTime: string
4150
+ CreateTime?: string
2988
4151
  /**
2989
- * 实例修改时间。
4152
+ * 配置文件模板创建者
2990
4153
  注意:此字段可能返回 null,表示取不到有效值。
2991
4154
  */
2992
- ModifyTime: string
4155
+ CreateBy?: string
2993
4156
  /**
2994
- * 元数据数组。
4157
+ * 配置文件模板修改时间
2995
4158
  注意:此字段可能返回 null,表示取不到有效值。
2996
4159
  */
2997
- Metadatas: Array<Metadata>
4160
+ ModifyTime?: string
2998
4161
  /**
2999
- * 上报心跳间隔。
4162
+ * 配置文件模板修改者
3000
4163
  注意:此字段可能返回 null,表示取不到有效值。
3001
4164
  */
3002
- Ttl: number
4165
+ ModifyBy?: string
3003
4166
  }
3004
4167
 
3005
4168
  /**
@@ -3054,13 +4217,39 @@ export interface CloudNativeAPIGatewayStrategy {
3054
4217
  }
3055
4218
 
3056
4219
  /**
3057
- * DescribeCloudNativeAPIGateways返回参数结构体
4220
+ * DeleteConfigFiles请求参数结构体
3058
4221
  */
3059
- export interface DescribeCloudNativeAPIGatewaysResponse {
4222
+ export interface DeleteConfigFilesRequest {
3060
4223
  /**
3061
- * 获取云原生API网关实例列表响应结果。
4224
+ * TSE实例id
3062
4225
  */
3063
- Result: ListCloudNativeAPIGatewayResult
4226
+ InstanceId: string
4227
+ /**
4228
+ * 命名空间
4229
+ */
4230
+ Namespace: string
4231
+ /**
4232
+ * 配置分组名称
4233
+ */
4234
+ Group: string
4235
+ /**
4236
+ * 配置文件名称
4237
+ */
4238
+ Name: string
4239
+ }
4240
+
4241
+ /**
4242
+ * DescribeGovernanceServices返回参数结构体
4243
+ */
4244
+ export interface DescribeGovernanceServicesResponse {
4245
+ /**
4246
+ * 服务数总量。
4247
+ */
4248
+ TotalCount?: number
4249
+ /**
4250
+ * 服务信息详情。
4251
+ */
4252
+ Content?: Array<GovernanceService>
3064
4253
  /**
3065
4254
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3066
4255
  */
@@ -3068,19 +4257,31 @@ export interface DescribeCloudNativeAPIGatewaysResponse {
3068
4257
  }
3069
4258
 
3070
4259
  /**
3071
- * kong服务路由列表
4260
+ * CreateGovernanceServices请求参数结构体
3072
4261
  */
3073
- export interface KongServiceRouteList {
4262
+ export interface CreateGovernanceServicesRequest {
3074
4263
  /**
3075
- *
3076
- 注意:此字段可能返回 null,表示取不到有效值。
4264
+ * tse 实例 id。
3077
4265
  */
3078
- RouteList?: Array<KongRoutePreview>
4266
+ InstanceId: string
3079
4267
  /**
3080
- * 总数
3081
- 注意:此字段可能返回 null,表示取不到有效值。
4268
+ * 服务信息。
3082
4269
  */
3083
- TotalCount?: number
4270
+ GovernanceServices: Array<GovernanceServiceInput>
4271
+ }
4272
+
4273
+ /**
4274
+ * CreateGovernanceNamespaces返回参数结构体
4275
+ */
4276
+ export interface CreateGovernanceNamespacesResponse {
4277
+ /**
4278
+ * 操作是否成功。
4279
+ */
4280
+ Result?: boolean
4281
+ /**
4282
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4283
+ */
4284
+ RequestId?: string
3084
4285
  }
3085
4286
 
3086
4287
  /**
@@ -3149,17 +4350,17 @@ export interface AutoScalerBehavior {
3149
4350
  }
3150
4351
 
3151
4352
  /**
3152
- * 列表过滤条件,模糊匹配
4353
+ * CreateConfigFileGroup请求参数结构体
3153
4354
  */
3154
- export interface ListFilter {
4355
+ export interface CreateConfigFileGroupRequest {
3155
4356
  /**
3156
- * 过滤字段
4357
+ * tse 实例 id
3157
4358
  */
3158
- Key?: string
4359
+ InstanceId: string
3159
4360
  /**
3160
- * 过滤值
4361
+ * 配置文件组实体
3161
4362
  */
3162
- Value?: string
4363
+ ConfigFileGroup: ConfigFileGroup
3163
4364
  }
3164
4365
 
3165
4366
  /**
@@ -3311,20 +4512,45 @@ export interface AutoScalerPolicy {
3311
4512
  }
3312
4513
 
3313
4514
  /**
3314
- * UpdateUpstreamTargets返回参数结构体
4515
+ * ModifyConsoleNetwork返回参数结构体
3315
4516
  */
3316
- export interface UpdateUpstreamTargetsResponse {
3317
- /**
3318
- * 是否更新成功
3319
- 注意:此字段可能返回 null,表示取不到有效值。
3320
- */
3321
- Result?: boolean
4517
+ export interface ModifyConsoleNetworkResponse {
3322
4518
  /**
3323
4519
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3324
4520
  */
3325
4521
  RequestId?: string
3326
4522
  }
3327
4523
 
4524
+ /**
4525
+ * DescribeConfigFileGroups请求参数结构体
4526
+ */
4527
+ export interface DescribeConfigFileGroupsRequest {
4528
+ /**
4529
+ * tse实例id
4530
+ */
4531
+ InstanceId: string
4532
+ /**
4533
+ * 根据命名空间过滤
4534
+ */
4535
+ Namespace?: string
4536
+ /**
4537
+ * 根据配置文件组名过滤
4538
+ */
4539
+ Group?: string
4540
+ /**
4541
+ * 根据配置文件组名过滤
4542
+ */
4543
+ FileName?: string
4544
+ /**
4545
+ * 返回数量,默认为20,最大值为100。
4546
+ */
4547
+ Limit?: number
4548
+ /**
4549
+ * 偏移量,默认为0。
4550
+ */
4551
+ Offset?: number
4552
+ }
4553
+
3328
4554
  /**
3329
4555
  * DeleteCloudNativeAPIGatewayCertificate请求参数结构体
3330
4556
  */
@@ -3410,6 +4636,67 @@ export interface DeleteCloudNativeAPIGatewayServiceRateLimitResponse {
3410
4636
  RequestId?: string
3411
4637
  }
3412
4638
 
4639
+ /**
4640
+ * 服务契约定义
4641
+ */
4642
+ export interface GovernanceServiceContract {
4643
+ /**
4644
+ * 契约名称
4645
+ 注意:此字段可能返回 null,表示取不到有效值。
4646
+ */
4647
+ Name: string
4648
+ /**
4649
+ * 所属服务命名空间
4650
+ 注意:此字段可能返回 null,表示取不到有效值。
4651
+ */
4652
+ Namespace: string
4653
+ /**
4654
+ * 协议
4655
+ 注意:此字段可能返回 null,表示取不到有效值。
4656
+ */
4657
+ Protocol: string
4658
+ /**
4659
+ * 契约ID
4660
+ 注意:此字段可能返回 null,表示取不到有效值。
4661
+ */
4662
+ ID?: string
4663
+ /**
4664
+ * 所属服务名称
4665
+ 注意:此字段可能返回 null,表示取不到有效值。
4666
+ */
4667
+ Service?: string
4668
+ /**
4669
+ * 版本
4670
+ 注意:此字段可能返回 null,表示取不到有效值。
4671
+ */
4672
+ Version?: string
4673
+ /**
4674
+ * 信息摘要
4675
+ 注意:此字段可能返回 null,表示取不到有效值。
4676
+ */
4677
+ Revision?: string
4678
+ /**
4679
+ * 额外内容描述
4680
+ 注意:此字段可能返回 null,表示取不到有效值。
4681
+ */
4682
+ Content?: string
4683
+ /**
4684
+ * 创建时间
4685
+ 注意:此字段可能返回 null,表示取不到有效值。
4686
+ */
4687
+ CreateTime?: string
4688
+ /**
4689
+ * 修改时间
4690
+ 注意:此字段可能返回 null,表示取不到有效值。
4691
+ */
4692
+ ModifyTime?: string
4693
+ /**
4694
+ * 契约接口列表
4695
+ 注意:此字段可能返回 null,表示取不到有效值。
4696
+ */
4697
+ Interfaces?: Array<GovernanceInterfaceDescription>
4698
+ }
4699
+
3413
4700
  /**
3414
4701
  * CloseWafProtection返回参数结构体
3415
4702
  */
@@ -3420,6 +4707,21 @@ export interface CloseWafProtectionResponse {
3420
4707
  RequestId?: string
3421
4708
  }
3422
4709
 
4710
+ /**
4711
+ * UpdateUpstreamTargets返回参数结构体
4712
+ */
4713
+ export interface UpdateUpstreamTargetsResponse {
4714
+ /**
4715
+ * 是否更新成功
4716
+ 注意:此字段可能返回 null,表示取不到有效值。
4717
+ */
4718
+ Result?: boolean
4719
+ /**
4720
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4721
+ */
4722
+ RequestId?: string
4723
+ }
4724
+
3423
4725
  /**
3424
4726
  * UpdateUpstreamHealthCheckConfig请求参数结构体
3425
4727
  */
@@ -3646,19 +4948,51 @@ export interface DescribeZookeeperServerInterfacesResponse {
3646
4948
  }
3647
4949
 
3648
4950
  /**
3649
- * ModifyNetworkAccessStrategy返回参数结构体
4951
+ * DescribeGovernanceServiceContracts请求参数结构体
3650
4952
  */
3651
- export interface ModifyNetworkAccessStrategyResponse {
4953
+ export interface DescribeGovernanceServiceContractsRequest {
3652
4954
  /**
3653
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4955
+ * 北极星引擎实例ID
3654
4956
  */
3655
- RequestId?: string
3656
- }
3657
-
3658
- /**
3659
- * ModifyAutoScalerResourceStrategy请求参数结构体
3660
- */
3661
- export interface ModifyAutoScalerResourceStrategyRequest {
4957
+ InstanceId: string
4958
+ /**
4959
+ * 分页偏移量
4960
+ */
4961
+ Offset: number
4962
+ /**
4963
+ * 分页条数
4964
+ */
4965
+ Limit: number
4966
+ /**
4967
+ * 命名空间
4968
+ */
4969
+ Namespace?: string
4970
+ /**
4971
+ * 服务名
4972
+ */
4973
+ Service?: string
4974
+ /**
4975
+ * 契约名称
4976
+ */
4977
+ Name?: string
4978
+ /**
4979
+ * 契约版本
4980
+ */
4981
+ ContractVersion?: string
4982
+ /**
4983
+ * 契约协议
4984
+ */
4985
+ Protocol?: string
4986
+ /**
4987
+ * 是否只展示基本信息
4988
+ */
4989
+ Brief?: boolean
4990
+ }
4991
+
4992
+ /**
4993
+ * ModifyAutoScalerResourceStrategy请求参数结构体
4994
+ */
4995
+ export interface ModifyAutoScalerResourceStrategyRequest {
3662
4996
  /**
3663
4997
  * 网关实例ID
3664
4998
  */
@@ -3696,25 +5030,47 @@ export interface ModifyAutoScalerResourceStrategyRequest {
3696
5030
  }
3697
5031
 
3698
5032
  /**
3699
- * DescribeNativeGatewayServerGroups请求参数结构体
5033
+ * DescribeConfigFileReleaseVersions返回参数结构体
3700
5034
  */
3701
- export interface DescribeNativeGatewayServerGroupsRequest {
5035
+ export interface DescribeConfigFileReleaseVersionsResponse {
3702
5036
  /**
3703
- * 云原生API网关实例ID。
5037
+ * 版本信息
3704
5038
  */
3705
- GatewayId: string
5039
+ ReleaseVersions?: Array<ReleaseVersion>
3706
5040
  /**
3707
- * 翻页从第几个开始获取
5041
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3708
5042
  */
3709
- Offset?: number
5043
+ RequestId?: string
5044
+ }
5045
+
5046
+ /**
5047
+ * kong服务路由列表
5048
+ */
5049
+ export interface KongServiceRouteList {
3710
5050
  /**
3711
- * 翻页获取多少个
5051
+ *
5052
+ 注意:此字段可能返回 null,表示取不到有效值。
3712
5053
  */
3713
- Limit?: number
5054
+ RouteList?: Array<KongRoutePreview>
3714
5055
  /**
3715
- * 过滤参数
5056
+ * 总数
5057
+ 注意:此字段可能返回 null,表示取不到有效值。
3716
5058
  */
3717
- Filters?: Array<Filter>
5059
+ TotalCount?: number
5060
+ }
5061
+
5062
+ /**
5063
+ * DeleteGovernanceAliases请求参数结构体
5064
+ */
5065
+ export interface DeleteGovernanceAliasesRequest {
5066
+ /**
5067
+ * tse实例id。
5068
+ */
5069
+ InstanceId: string
5070
+ /**
5071
+ * 服务别名列表
5072
+ */
5073
+ GovernanceAliases: Array<GovernanceAlias>
3718
5074
  }
3719
5075
 
3720
5076
  /**
@@ -3787,55 +5143,107 @@ export interface CertificateInfo {
3787
5143
  }
3788
5144
 
3789
5145
  /**
3790
- * 获取云原生API网关实例协议端口列表响应结果
5146
+ * DescribeConfigFiles返回参数结构体
3791
5147
  */
3792
- export interface DescribeGatewayInstancePortResult {
5148
+ export interface DescribeConfigFilesResponse {
3793
5149
  /**
3794
- * 云原生API网关ID
3795
- 注意:此字段可能返回 null,表示取不到有效值。
5150
+ * 分页总数量
3796
5151
  */
3797
- GatewayId?: string
5152
+ TotalCount?: number
3798
5153
  /**
3799
- * 网关实例协议端口列表
3800
- 注意:此字段可能返回 null,表示取不到有效值。
5154
+ * 配置文件列表
3801
5155
  */
3802
- GatewayInstancePortList?: Array<GatewayInstanceSchemeAndPorts>
5156
+ ConfigFiles?: Array<ConfigFile>
5157
+ /**
5158
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5159
+ */
5160
+ RequestId?: string
3803
5161
  }
3804
5162
 
3805
5163
  /**
3806
- * UnbindAutoScalerResourceStrategyFromGroups请求参数结构体
5164
+ * DescribeConfigFileReleases请求参数结构体
3807
5165
  */
3808
- export interface UnbindAutoScalerResourceStrategyFromGroupsRequest {
5166
+ export interface DescribeConfigFileReleasesRequest {
3809
5167
  /**
3810
- * 网关实例ID
5168
+ * 实例id
3811
5169
  */
3812
- GatewayId: string
5170
+ InstanceId: string
3813
5171
  /**
3814
- * 策略ID
5172
+ * 条数
3815
5173
  */
3816
- StrategyId: string
5174
+ Limit: number
3817
5175
  /**
3818
- * 网关分组ID列表
5176
+ * 偏移量
3819
5177
  */
3820
- GroupIds: Array<string>
5178
+ Offset: number
5179
+ /**
5180
+ * 命名空间
5181
+ */
5182
+ Namespace?: string
5183
+ /**
5184
+ * 配置分组
5185
+ */
5186
+ Group?: string
5187
+ /**
5188
+ * 文件名称
5189
+ */
5190
+ FileName?: string
5191
+ /**
5192
+ * 只保护处于使用状态
5193
+ */
5194
+ OnlyUse?: boolean
5195
+ /**
5196
+ * 发布名称
5197
+ */
5198
+ ReleaseName?: string
5199
+ /**
5200
+ * 排序字段,mtime/version/name
5201
+ ,默认version
5202
+ */
5203
+ OrderField?: string
5204
+ /**
5205
+ * 排序,asc/desc,默认 desc
5206
+ */
5207
+ OrderDesc?: string
3821
5208
  }
3822
5209
 
3823
5210
  /**
3824
- * DescribePublicNetwork请求参数结构体
5211
+ * DescribeAllConfigFileTemplates请求参数结构体
3825
5212
  */
3826
- export interface DescribePublicNetworkRequest {
5213
+ export interface DescribeAllConfigFileTemplatesRequest {
3827
5214
  /**
3828
- * 云原生API网关实例ID。
5215
+ * TSE实例id
3829
5216
  */
3830
- GatewayId: string
5217
+ InstanceId: string
5218
+ }
5219
+
5220
+ /**
5221
+ * DescribeGovernanceNamespaces返回参数结构体
5222
+ */
5223
+ export interface DescribeGovernanceNamespacesResponse {
3831
5224
  /**
3832
- * 网关分组ID
5225
+ * 列表总数量。
3833
5226
  */
3834
- GroupId: string
5227
+ TotalCount?: number
3835
5228
  /**
3836
- * 网络ID
5229
+ * 治理中心命名空间实例列表。
3837
5230
  */
3838
- NetworkId: string
5231
+ Content?: Array<GovernanceNamespace>
5232
+ /**
5233
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5234
+ */
5235
+ RequestId?: string
5236
+ }
5237
+
5238
+ /**
5239
+ * 云原生网关证书
5240
+ */
5241
+ export interface KongCertificate {
5242
+ /**
5243
+ * 无
5244
+ 注意:此字段可能返回 null,表示取不到有效值。
5245
+ */
5246
+ Cert?: KongCertificatesPreview
3839
5247
  }
3840
5248
 
3841
5249
  /**
@@ -3877,25 +5285,17 @@ export interface DeleteCloudNativeAPIGatewayPublicNetworkRequest {
3877
5285
  }
3878
5286
 
3879
5287
  /**
3880
- * UpdateCloudNativeAPIGatewayCertificateInfo请求参数结构体
5288
+ * DeleteGovernanceInstancesByHost返回参数结构体
3881
5289
  */
3882
- export interface UpdateCloudNativeAPIGatewayCertificateInfoRequest {
3883
- /**
3884
- * 网关ID
3885
- */
3886
- GatewayId: string
5290
+ export interface DeleteGovernanceInstancesByHostResponse {
3887
5291
  /**
3888
- * 证书id
3889
- */
3890
- Id: string
3891
- /**
3892
- * 绑定的域名列表
5292
+ * 操作是否成功。
3893
5293
  */
3894
- BindDomains: Array<string>
5294
+ Result?: boolean
3895
5295
  /**
3896
- * 证书名称
5296
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3897
5297
  */
3898
- Name?: string
5298
+ RequestId?: string
3899
5299
  }
3900
5300
 
3901
5301
  /**
@@ -3909,6 +5309,32 @@ export interface KongUpstreamList {
3909
5309
  UpstreamList?: Array<KongUpstreamPreview>
3910
5310
  }
3911
5311
 
5312
+ /**
5313
+ * DescribeConfigFilesByGroup请求参数结构体
5314
+ */
5315
+ export interface DescribeConfigFilesByGroupRequest {
5316
+ /**
5317
+ * TSE实例id
5318
+ */
5319
+ InstanceId: string
5320
+ /**
5321
+ * 命名空间名
5322
+ */
5323
+ Namespace: string
5324
+ /**
5325
+ * 组名
5326
+ */
5327
+ Group: string
5328
+ /**
5329
+ * 返回数量,默认为20,最大值为100。
5330
+ */
5331
+ Limit?: number
5332
+ /**
5333
+ * 偏移量,默认为0。
5334
+ */
5335
+ Offset?: number
5336
+ }
5337
+
3912
5338
  /**
3913
5339
  * 实例信息
3914
5340
  */
@@ -3959,6 +5385,31 @@ export interface GovernanceInstanceInput {
3959
5385
  Ttl?: number
3960
5386
  }
3961
5387
 
5388
+ /**
5389
+ * CreateGovernanceServices返回参数结构体
5390
+ */
5391
+ export interface CreateGovernanceServicesResponse {
5392
+ /**
5393
+ * 创建是否成功。
5394
+ */
5395
+ Result?: boolean
5396
+ /**
5397
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5398
+ */
5399
+ RequestId?: string
5400
+ }
5401
+
5402
+ /**
5403
+ * 查询Limiter的接入地址
5404
+ */
5405
+ export interface PolarisLimiterAddress {
5406
+ /**
5407
+ * VPC接入IP列表
5408
+ 注意:此字段可能返回 null,表示取不到有效值。
5409
+ */
5410
+ IntranetAddress: string
5411
+ }
5412
+
3962
5413
  /**
3963
5414
  * 引擎的初始管理账号,当前仅支持Apollo引擎
3964
5415
  */
@@ -3978,14 +5429,75 @@ export interface EngineAdmin {
3978
5429
  }
3979
5430
 
3980
5431
  /**
3981
- * 查询Limiter的接入地址
5432
+ * CreateConfigFileGroup返回参数结构体
3982
5433
  */
3983
- export interface PolarisLimiterAddress {
5434
+ export interface CreateConfigFileGroupResponse {
3984
5435
  /**
3985
- * VPC接入IP列表
3986
- 注意:此字段可能返回 null,表示取不到有效值。
5436
+ * 是否创建成功
3987
5437
  */
3988
- IntranetAddress: string
5438
+ Result?: boolean
5439
+ /**
5440
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5441
+ */
5442
+ RequestId?: string
5443
+ }
5444
+
5445
+ /**
5446
+ * ModifyGovernanceNamespaces请求参数结构体
5447
+ */
5448
+ export interface ModifyGovernanceNamespacesRequest {
5449
+ /**
5450
+ * tse实例id。
5451
+ */
5452
+ InstanceId: string
5453
+ /**
5454
+ * 命名空间信息。
5455
+ */
5456
+ GovernanceNamespaces: Array<GovernanceNamespaceInput>
5457
+ }
5458
+
5459
+ /**
5460
+ * CreateGovernanceAlias请求参数结构体
5461
+ */
5462
+ export interface CreateGovernanceAliasRequest {
5463
+ /**
5464
+ * tse实例id。
5465
+ */
5466
+ InstanceId: string
5467
+ /**
5468
+ * 服务别名
5469
+ */
5470
+ Alias: string
5471
+ /**
5472
+ * 服务别名命名空间
5473
+ */
5474
+ AliasNamespace: string
5475
+ /**
5476
+ * 服务别名所指向的服务名
5477
+ */
5478
+ Service: string
5479
+ /**
5480
+ * 服务别名所指向的命名空间
5481
+ */
5482
+ Namespace: string
5483
+ /**
5484
+ * 服务别名描述
5485
+ */
5486
+ Comment?: string
5487
+ }
5488
+
5489
+ /**
5490
+ * CreateOrUpdateConfigFileAndRelease返回参数结构体
5491
+ */
5492
+ export interface CreateOrUpdateConfigFileAndReleaseResponse {
5493
+ /**
5494
+ * 操作是否成功
5495
+ */
5496
+ Result?: boolean
5497
+ /**
5498
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5499
+ */
5500
+ RequestId?: string
3989
5501
  }
3990
5502
 
3991
5503
  /**
@@ -4068,24 +5580,42 @@ export interface DeleteCloudNativeAPIGatewayResponse {
4068
5580
  }
4069
5581
 
4070
5582
  /**
4071
- * kong实例的服务列表
5583
+ * DescribeConfigFiles请求参数结构体
4072
5584
  */
4073
- export interface KongServices {
5585
+ export interface DescribeConfigFilesRequest {
4074
5586
  /**
4075
- * kong实例的服务列表
4076
- 注意:此字段可能返回 null,表示取不到有效值。
5587
+ * 命名空间名称
4077
5588
  */
4078
- ServiceList?: Array<KongServicePreview>
5589
+ Namespace: string
4079
5590
  /**
4080
- * 列表总数
4081
- 注意:此字段可能返回 null,表示取不到有效值。
5591
+ * TSE实例id
4082
5592
  */
4083
- TotalCount?: number
4084
- }
4085
-
4086
- /**
4087
- * CreateCloudNativeAPIGatewayCertificate请求参数结构体
4088
- */
5593
+ InstanceId?: string
5594
+ /**
5595
+ * 组名
5596
+ */
5597
+ Group?: string
5598
+ /**
5599
+ * 名称
5600
+ */
5601
+ Name?: string
5602
+ /**
5603
+ * 标签列表
5604
+ */
5605
+ Tags?: Array<ConfigFileTag>
5606
+ /**
5607
+ * 返回数量,默认为20,最大值为100。
5608
+ */
5609
+ Limit?: number
5610
+ /**
5611
+ * 偏移量,默认为0。
5612
+ */
5613
+ Offset?: number
5614
+ }
5615
+
5616
+ /**
5617
+ * CreateCloudNativeAPIGatewayCertificate请求参数结构体
5618
+ */
4089
5619
  export interface CreateCloudNativeAPIGatewayCertificateRequest {
4090
5620
  /**
4091
5621
  * 网关ID
@@ -4115,6 +5645,24 @@ export interface CreateCloudNativeAPIGatewayCertificateRequest {
4115
5645
  Crt?: string
4116
5646
  }
4117
5647
 
5648
+ /**
5649
+ * DescribeConfigFilesByGroup返回参数结构体
5650
+ */
5651
+ export interface DescribeConfigFilesByGroupResponse {
5652
+ /**
5653
+ * 记录总数量
5654
+ */
5655
+ TotalCount?: number
5656
+ /**
5657
+ * 配置文件列表
5658
+ */
5659
+ ConfigFiles?: Array<ConfigFile>
5660
+ /**
5661
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5662
+ */
5663
+ RequestId?: string
5664
+ }
5665
+
4118
5666
  /**
4119
5667
  * DescribeWafDomains请求参数结构体
4120
5668
  */
@@ -4278,6 +5826,20 @@ export interface UpdateCloudNativeAPIGatewayResult {
4278
5826
  TaskId?: string
4279
5827
  }
4280
5828
 
5829
+ /**
5830
+ * ModifyGovernanceServices请求参数结构体
5831
+ */
5832
+ export interface ModifyGovernanceServicesRequest {
5833
+ /**
5834
+ * tse 实例 id。
5835
+ */
5836
+ InstanceId: string
5837
+ /**
5838
+ * 服务信息。
5839
+ */
5840
+ GovernanceServices: Array<GovernanceServiceInput>
5841
+ }
5842
+
4281
5843
  /**
4282
5844
  * DescribeCloudNativeAPIGatewayCertificateDetails返回参数结构体
4283
5845
  */
@@ -4293,6 +5855,24 @@ export interface DescribeCloudNativeAPIGatewayCertificateDetailsResponse {
4293
5855
  RequestId?: string
4294
5856
  }
4295
5857
 
5858
+ /**
5859
+ * DeleteConfigFileGroup请求参数结构体
5860
+ */
5861
+ export interface DeleteConfigFileGroupRequest {
5862
+ /**
5863
+ * tse 实例 id。
5864
+ */
5865
+ InstanceId: string
5866
+ /**
5867
+ * 命名空间
5868
+ */
5869
+ Namespace: string
5870
+ /**
5871
+ * 组
5872
+ */
5873
+ Group: string
5874
+ }
5875
+
4296
5876
  /**
4297
5877
  * DescribeNativeGatewayServerGroups返回参数结构体
4298
5878
  */
@@ -4351,6 +5931,16 @@ export interface InstancePort {
4351
5931
  UdpPort?: string
4352
5932
  }
4353
5933
 
5934
+ /**
5935
+ * ModifyCloudNativeAPIGateway返回参数结构体
5936
+ */
5937
+ export interface ModifyCloudNativeAPIGatewayResponse {
5938
+ /**
5939
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5940
+ */
5941
+ RequestId?: string
5942
+ }
5943
+
4354
5944
  /**
4355
5945
  * 定时伸缩配置参数
4356
5946
  */
@@ -4400,13 +5990,45 @@ export interface OpenWafProtectionRequest {
4400
5990
  }
4401
5991
 
4402
5992
  /**
4403
- * DescribeCloudNativeAPIGatewayCertificates返回参数结构体
5993
+ * DeleteGovernanceServices请求参数结构体
4404
5994
  */
4405
- export interface DescribeCloudNativeAPIGatewayCertificatesResponse {
5995
+ export interface DeleteGovernanceServicesRequest {
4406
5996
  /**
4407
- *
5997
+ * tse实例id。
4408
5998
  */
4409
- Result?: KongCertificatesList
5999
+ InstanceId: string
6000
+ /**
6001
+ * 服务信息。
6002
+ */
6003
+ GovernanceServices: Array<GovernanceServiceInput>
6004
+ }
6005
+
6006
+ /**
6007
+ * UnbindAutoScalerResourceStrategyFromGroups请求参数结构体
6008
+ */
6009
+ export interface UnbindAutoScalerResourceStrategyFromGroupsRequest {
6010
+ /**
6011
+ * 网关实例ID
6012
+ */
6013
+ GatewayId: string
6014
+ /**
6015
+ * 策略ID
6016
+ */
6017
+ StrategyId: string
6018
+ /**
6019
+ * 网关分组ID列表
6020
+ */
6021
+ GroupIds: Array<string>
6022
+ }
6023
+
6024
+ /**
6025
+ * ModifyConfigFileGroup返回参数结构体
6026
+ */
6027
+ export interface ModifyConfigFileGroupResponse {
6028
+ /**
6029
+ * 修改是否成功
6030
+ */
6031
+ Result?: boolean
4410
6032
  /**
4411
6033
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4412
6034
  */
@@ -4424,15 +6046,37 @@ export interface CreateCloudNativeAPIGatewayServiceRateLimitResponse {
4424
6046
  }
4425
6047
 
4426
6048
  /**
4427
- * ModifyNativeGatewayServerGroup返回参数结构体
6049
+ * DescribeNacosServerInterfaces返回参数结构体
4428
6050
  */
4429
- export interface ModifyNativeGatewayServerGroupResponse {
6051
+ export interface DescribeNacosServerInterfacesResponse {
6052
+ /**
6053
+ * 接口总个数
6054
+ */
6055
+ TotalCount?: number
6056
+ /**
6057
+ * 接口列表
6058
+ */
6059
+ Content?: Array<NacosServerInterface>
4430
6060
  /**
4431
6061
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4432
6062
  */
4433
6063
  RequestId?: string
4434
6064
  }
4435
6065
 
6066
+ /**
6067
+ * DeleteConfigFileReleases请求参数结构体
6068
+ */
6069
+ export interface DeleteConfigFileReleasesRequest {
6070
+ /**
6071
+ * 实例id
6072
+ */
6073
+ InstanceId: string
6074
+ /**
6075
+ * 待删除配置发布详情
6076
+ */
6077
+ ConfigFileReleases: Array<ConfigFileReleaseDeletion>
6078
+ }
6079
+
4436
6080
  /**
4437
6081
  * CreateAutoScalerResourceStrategy请求参数结构体
4438
6082
  */
@@ -4551,6 +6195,24 @@ export interface CreateEngineResponse {
4551
6195
  RequestId?: string
4552
6196
  }
4553
6197
 
6198
+ /**
6199
+ * 网络访问策略
6200
+ */
6201
+ export interface NetworkAccessControl {
6202
+ /**
6203
+ * 访问模式:Whitelist|Blacklist
6204
+ */
6205
+ Mode: string
6206
+ /**
6207
+ * 白名单列表
6208
+ */
6209
+ CidrWhiteList?: Array<string>
6210
+ /**
6211
+ * 黑名单列表
6212
+ */
6213
+ CidrBlackList?: Array<string>
6214
+ }
6215
+
4554
6216
  /**
4555
6217
  * ModifyCloudNativeAPIGatewayServiceRateLimit请求参数结构体
4556
6218
  */
@@ -4570,17 +6232,133 @@ export interface ModifyCloudNativeAPIGatewayServiceRateLimitRequest {
4570
6232
  }
4571
6233
 
4572
6234
  /**
4573
- * DeleteCloudNativeAPIGatewayRoute请求参数结构体
6235
+ * ModifyNetworkBasicInfo返回参数结构体
4574
6236
  */
4575
- export interface DeleteCloudNativeAPIGatewayRouteRequest {
6237
+ export interface ModifyNetworkBasicInfoResponse {
4576
6238
  /**
4577
- * 网关ID
6239
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4578
6240
  */
4579
- GatewayId: string
6241
+ RequestId?: string
6242
+ }
6243
+
6244
+ /**
6245
+ * ModifyGovernanceServices返回参数结构体
6246
+ */
6247
+ export interface ModifyGovernanceServicesResponse {
4580
6248
  /**
4581
- * 路由的ID或名字,不支持名称“未命名”
6249
+ * 是否成功
4582
6250
  */
4583
- Name: string
6251
+ Result?: boolean
6252
+ /**
6253
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6254
+ */
6255
+ RequestId?: string
6256
+ }
6257
+
6258
+ /**
6259
+ * UpdateEngineInternetAccess返回参数结构体
6260
+ */
6261
+ export interface UpdateEngineInternetAccessResponse {
6262
+ /**
6263
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6264
+ */
6265
+ RequestId?: string
6266
+ }
6267
+
6268
+ /**
6269
+ * 配置文件组
6270
+ */
6271
+ export interface ConfigFileGroup {
6272
+ /**
6273
+ * 配置文件组id
6274
+ 注意:此字段可能返回 null,表示取不到有效值。
6275
+ */
6276
+ Id?: number
6277
+ /**
6278
+ * 配置文件组名称
6279
+ 注意:此字段可能返回 null,表示取不到有效值。
6280
+ */
6281
+ Name?: string
6282
+ /**
6283
+ * 命名空间
6284
+ 注意:此字段可能返回 null,表示取不到有效值。
6285
+ */
6286
+ Namespace?: string
6287
+ /**
6288
+ * 备注
6289
+ 注意:此字段可能返回 null,表示取不到有效值。
6290
+ */
6291
+ Comment?: string
6292
+ /**
6293
+ * 创建时间
6294
+ 注意:此字段可能返回 null,表示取不到有效值。
6295
+ */
6296
+ CreateTime?: string
6297
+ /**
6298
+ * 创建者
6299
+ 注意:此字段可能返回 null,表示取不到有效值。
6300
+ */
6301
+ CreateBy?: string
6302
+ /**
6303
+ * 修改时间
6304
+ 注意:此字段可能返回 null,表示取不到有效值。
6305
+ */
6306
+ ModifyTime?: string
6307
+ /**
6308
+ * 修改者
6309
+ 注意:此字段可能返回 null,表示取不到有效值。
6310
+ */
6311
+ ModifyBy?: string
6312
+ /**
6313
+ * 文件数
6314
+ 注意:此字段可能返回 null,表示取不到有效值。
6315
+ */
6316
+ FileCount?: number
6317
+ /**
6318
+ * 关联用户,link_users
6319
+ 注意:此字段可能返回 null,表示取不到有效值。
6320
+ */
6321
+ UserIds?: Array<string>
6322
+ /**
6323
+ * 组id,link_groups
6324
+ 注意:此字段可能返回 null,表示取不到有效值。
6325
+ */
6326
+ GroupIds?: Array<string>
6327
+ /**
6328
+ * remove_link_users
6329
+ 注意:此字段可能返回 null,表示取不到有效值。
6330
+ */
6331
+ RemoveUserIds?: Array<string>
6332
+ /**
6333
+ * remove_link_groups
6334
+ 注意:此字段可能返回 null,表示取不到有效值。
6335
+ */
6336
+ RemoveGroupIds?: Array<string>
6337
+ /**
6338
+ * 是否可编辑
6339
+ 注意:此字段可能返回 null,表示取不到有效值。
6340
+ */
6341
+ Editable?: boolean
6342
+ /**
6343
+ * 归属者
6344
+ 注意:此字段可能返回 null,表示取不到有效值。
6345
+ */
6346
+ Owner?: string
6347
+ /**
6348
+ * 部门
6349
+ 注意:此字段可能返回 null,表示取不到有效值。
6350
+ */
6351
+ Department?: string
6352
+ /**
6353
+ * 业务
6354
+ 注意:此字段可能返回 null,表示取不到有效值。
6355
+ */
6356
+ Business?: string
6357
+ /**
6358
+ * 配置文件组标签
6359
+ 注意:此字段可能返回 null,表示取不到有效值。
6360
+ */
6361
+ ConfigFileGroupTags?: Array<ConfigFileGroupTag>
4584
6362
  }
4585
6363
 
4586
6364
  /**
@@ -4708,6 +6486,29 @@ export interface CloudNativeAPIGatewayStrategyAutoScalerConfig {
4708
6486
  Behavior?: AutoScalerBehavior
4709
6487
  }
4710
6488
 
6489
+ /**
6490
+ * DescribeGovernanceServiceContracts返回参数结构体
6491
+ */
6492
+ export interface DescribeGovernanceServiceContractsResponse {
6493
+ /**
6494
+ * 总数
6495
+ */
6496
+ TotalCount?: number
6497
+ /**
6498
+ * 返回条数
6499
+ */
6500
+ Size?: number
6501
+ /**
6502
+ * 契约定义列表
6503
+ 注意:此字段可能返回 null,表示取不到有效值。
6504
+ */
6505
+ ServiceContracts?: Array<GovernanceServiceContract>
6506
+ /**
6507
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6508
+ */
6509
+ RequestId?: string
6510
+ }
6511
+
4711
6512
  /**
4712
6513
  * Zookeeper副本信息
4713
6514
  */
@@ -4825,6 +6626,131 @@ export interface UpdateUpstreamHealthCheckConfigResponse {
4825
6626
  RequestId?: string
4826
6627
  }
4827
6628
 
6629
+ /**
6630
+ * DescribeNativeGatewayServerGroups请求参数结构体
6631
+ */
6632
+ export interface DescribeNativeGatewayServerGroupsRequest {
6633
+ /**
6634
+ * 云原生API网关实例ID。
6635
+ */
6636
+ GatewayId: string
6637
+ /**
6638
+ * 翻页从第几个开始获取
6639
+ */
6640
+ Offset?: number
6641
+ /**
6642
+ * 翻页获取多少个
6643
+ */
6644
+ Limit?: number
6645
+ /**
6646
+ * 过滤参数
6647
+ */
6648
+ Filters?: Array<Filter>
6649
+ }
6650
+
6651
+ /**
6652
+ * ModifyCloudNativeAPIGatewayRoute请求参数结构体
6653
+ */
6654
+ export interface ModifyCloudNativeAPIGatewayRouteRequest {
6655
+ /**
6656
+ * 网关ID
6657
+ */
6658
+ GatewayId: string
6659
+ /**
6660
+ * 所属服务的ID
6661
+ */
6662
+ ServiceID: string
6663
+ /**
6664
+ * 路由的ID,实例级别唯一
6665
+ */
6666
+ RouteID: string
6667
+ /**
6668
+ * 路由的名字,实例级别唯一,可以不提供
6669
+ */
6670
+ RouteName?: string
6671
+ /**
6672
+ * 路由的方法,其中方法可选值:
6673
+ - GET
6674
+ - POST
6675
+ - DELETE
6676
+ - PUT
6677
+ - OPTIONS
6678
+ - PATCH
6679
+ - HEAD
6680
+ - ANY
6681
+ - TRACE
6682
+ - COPY
6683
+ - MOVE
6684
+ - PROPFIND
6685
+ - PROPPATCH
6686
+ - MKCOL
6687
+ - LOCK
6688
+ - UNLOCK
6689
+ */
6690
+ Methods?: Array<string>
6691
+ /**
6692
+ * 路由的域名
6693
+ */
6694
+ Hosts?: Array<string>
6695
+ /**
6696
+ * 路由的路径
6697
+ */
6698
+ Paths?: Array<string>
6699
+ /**
6700
+ * 路由的协议,可选
6701
+ - https
6702
+ - http
6703
+ */
6704
+ Protocols?: Array<string>
6705
+ /**
6706
+ * 转发到后端时是否保留Host
6707
+ */
6708
+ PreserveHost?: boolean
6709
+ /**
6710
+ * https重定向状态码
6711
+ */
6712
+ HttpsRedirectStatusCode?: number
6713
+ /**
6714
+ * 转发到后端时是否StripPath
6715
+ */
6716
+ StripPath?: boolean
6717
+ /**
6718
+ * 是否开启强制HTTPS
6719
+ * @deprecated
6720
+ */
6721
+ ForceHttps?: boolean
6722
+ /**
6723
+ * 四层匹配的目的端口
6724
+ */
6725
+ DestinationPorts?: Array<number | bigint>
6726
+ /**
6727
+ * 路由的Headers
6728
+ */
6729
+ Headers?: Array<KVMapping>
6730
+ }
6731
+
6732
+ /**
6733
+ * DescribeGovernanceNamespaces请求参数结构体
6734
+ */
6735
+ export interface DescribeGovernanceNamespacesRequest {
6736
+ /**
6737
+ * tse实例id
6738
+ */
6739
+ InstanceId: string
6740
+ /**
6741
+ * 根据命名空间名称过滤。
6742
+ */
6743
+ Name?: string
6744
+ /**
6745
+ * 偏移量,默认为0。
6746
+ */
6747
+ Offset?: number
6748
+ /**
6749
+ * 返回数量,默认为20,最大值为100。
6750
+ */
6751
+ Limit?: number
6752
+ }
6753
+
4828
6754
  /**
4829
6755
  * DescribeSREInstances返回参数结构体
4830
6756
  */
@@ -4843,6 +6769,20 @@ export interface DescribeSREInstancesResponse {
4843
6769
  RequestId?: string
4844
6770
  }
4845
6771
 
6772
+ /**
6773
+ * PublishConfigFiles返回参数结构体
6774
+ */
6775
+ export interface PublishConfigFilesResponse {
6776
+ /**
6777
+ * 配置文件发布是否成功
6778
+ */
6779
+ Result?: boolean
6780
+ /**
6781
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6782
+ */
6783
+ RequestId?: string
6784
+ }
6785
+
4846
6786
  /**
4847
6787
  * Zookeeper服务端接口列表,用于云监控
4848
6788
  */
@@ -4875,7 +6815,29 @@ export interface CreateCloudNativeAPIGatewayServerGroupResult {
4875
6815
  * 任务ID
4876
6816
  注意:此字段可能返回 null,表示取不到有效值。
4877
6817
  */
4878
- TaskId?: string
6818
+ TaskId?: string
6819
+ }
6820
+
6821
+ /**
6822
+ * UpdateCloudNativeAPIGatewayCertificateInfo请求参数结构体
6823
+ */
6824
+ export interface UpdateCloudNativeAPIGatewayCertificateInfoRequest {
6825
+ /**
6826
+ * 网关ID
6827
+ */
6828
+ GatewayId: string
6829
+ /**
6830
+ * 证书id
6831
+ */
6832
+ Id: string
6833
+ /**
6834
+ * 绑定的域名列表
6835
+ */
6836
+ BindDomains: Array<string>
6837
+ /**
6838
+ * 证书名称
6839
+ */
6840
+ Name?: string
4879
6841
  }
4880
6842
 
4881
6843
  /**
@@ -4963,6 +6925,42 @@ export interface RouteWafStatus {
4963
6925
  ServiceId?: string
4964
6926
  }
4965
6927
 
6928
+ /**
6929
+ * DescribeConfigFile请求参数结构体
6930
+ */
6931
+ export interface DescribeConfigFileRequest {
6932
+ /**
6933
+ * TSE实例id
6934
+ */
6935
+ InstanceId: string
6936
+ /**
6937
+ * 命名空间
6938
+ */
6939
+ Namespace: string
6940
+ /**
6941
+ * 组
6942
+ */
6943
+ Group: string
6944
+ /**
6945
+ * 名称
6946
+ */
6947
+ Name: string
6948
+ }
6949
+
6950
+ /**
6951
+ * ModifyGovernanceAlias返回参数结构体
6952
+ */
6953
+ export interface ModifyGovernanceAliasResponse {
6954
+ /**
6955
+ * 创建是否成功。
6956
+ */
6957
+ Result?: boolean
6958
+ /**
6959
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6960
+ */
6961
+ RequestId?: string
6962
+ }
6963
+
4966
6964
  /**
4967
6965
  * 指标伸缩的规则
4968
6966
  */
@@ -5201,6 +7199,38 @@ export interface CreateNativeGatewayServerGroupResponse {
5201
7199
  RequestId?: string
5202
7200
  }
5203
7201
 
7202
+ /**
7203
+ * 配置发布版本信息
7204
+ */
7205
+ export interface ReleaseVersion {
7206
+ /**
7207
+ * 名称
7208
+ 注意:此字段可能返回 null,表示取不到有效值。
7209
+ */
7210
+ Name?: string
7211
+ /**
7212
+ * 是否生效
7213
+ 注意:此字段可能返回 null,表示取不到有效值。
7214
+ */
7215
+ Active?: boolean
7216
+ }
7217
+
7218
+ /**
7219
+ * kong实例的服务列表
7220
+ */
7221
+ export interface KongServices {
7222
+ /**
7223
+ * kong实例的服务列表
7224
+ 注意:此字段可能返回 null,表示取不到有效值。
7225
+ */
7226
+ ServiceList?: Array<KongServicePreview>
7227
+ /**
7228
+ * 列表总数
7229
+ 注意:此字段可能返回 null,表示取不到有效值。
7230
+ */
7231
+ TotalCount?: number
7232
+ }
7233
+
5204
7234
  /**
5205
7235
  * 云原生网关证书预览信息
5206
7236
  */
@@ -5282,6 +7312,20 @@ export interface CreateCloudNativeAPIGatewayServiceRateLimitRequest {
5282
7312
  LimitDetail: CloudNativeAPIGatewayRateLimitDetail
5283
7313
  }
5284
7314
 
7315
+ /**
7316
+ * DeleteConfigFileReleases返回参数结构体
7317
+ */
7318
+ export interface DeleteConfigFileReleasesResponse {
7319
+ /**
7320
+ * 删除配置发布结果
7321
+ */
7322
+ Result?: boolean
7323
+ /**
7324
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7325
+ */
7326
+ RequestId?: string
7327
+ }
7328
+
5285
7329
  /**
5286
7330
  * DescribeZookeeperReplicas返回参数结构体
5287
7331
  */
@@ -5327,6 +7371,20 @@ export interface PolarisCLSTopicInfo {
5327
7371
  TopicName?: string
5328
7372
  }
5329
7373
 
7374
+ /**
7375
+ * DescribeGovernanceServiceContractVersions返回参数结构体
7376
+ */
7377
+ export interface DescribeGovernanceServiceContractVersionsResponse {
7378
+ /**
7379
+ * 服务契约版本列表
7380
+ */
7381
+ GovernanceServiceContractVersions?: Array<GovernanceServiceContractVersion>
7382
+ /**
7383
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7384
+ */
7385
+ RequestId?: string
7386
+ }
7387
+
5330
7388
  /**
5331
7389
  * ModifyGovernanceInstances请求参数结构体
5332
7390
  */
@@ -5490,22 +7548,33 @@ export interface ModifyCloudNativeAPIGatewayCanaryRuleRequest {
5490
7548
  }
5491
7549
 
5492
7550
  /**
5493
- * 私有网络信息
7551
+ * 获取云原生API网关实例协议端口列表响应结果
5494
7552
  */
5495
- export interface VpcInfo {
7553
+ export interface DescribeGatewayInstancePortResult {
5496
7554
  /**
5497
- * Vpc Id
7555
+ * 云原生API网关ID
7556
+ 注意:此字段可能返回 null,表示取不到有效值。
5498
7557
  */
5499
- VpcId: string
7558
+ GatewayId?: string
5500
7559
  /**
5501
- * 子网ID
7560
+ * 网关实例协议端口列表
7561
+ 注意:此字段可能返回 null,表示取不到有效值。
5502
7562
  */
5503
- SubnetId: string
7563
+ GatewayInstancePortList?: Array<GatewayInstanceSchemeAndPorts>
7564
+ }
7565
+
7566
+ /**
7567
+ * PublishConfigFiles请求参数结构体
7568
+ */
7569
+ export interface PublishConfigFilesRequest {
5504
7570
  /**
5505
- * 内网访问地址
5506
- 注意:此字段可能返回 null,表示取不到有效值。
7571
+ * TSE实例id
5507
7572
  */
5508
- IntranetAddress?: string
7573
+ InstanceId: string
7574
+ /**
7575
+ * 配置文件发布
7576
+ */
7577
+ ConfigFileReleases: ConfigFileRelease
5509
7578
  }
5510
7579
 
5511
7580
  /**
@@ -5529,13 +7598,37 @@ export interface CreateAutoScalerResourceStrategyResponse {
5529
7598
  }
5530
7599
 
5531
7600
  /**
5532
- * ModifyConsoleNetwork返回参数结构体
7601
+ * DescribeConfigFileReleaseHistories请求参数结构体
5533
7602
  */
5534
- export interface ModifyConsoleNetworkResponse {
7603
+ export interface DescribeConfigFileReleaseHistoriesRequest {
5535
7604
  /**
5536
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7605
+ * TSE实例id
5537
7606
  */
5538
- RequestId?: string
7607
+ InstanceId: string
7608
+ /**
7609
+ * 命名空间
7610
+ */
7611
+ Namespace?: string
7612
+ /**
7613
+ * 组
7614
+ */
7615
+ Group?: string
7616
+ /**
7617
+ * 名称
7618
+ */
7619
+ Name?: string
7620
+ /**
7621
+ * 发布历史记录id,用于分页优化,一般指定 EndId,就不用指定 Offset,否则分页可能不连续
7622
+ */
7623
+ EndId?: number
7624
+ /**
7625
+ * 返回数量,默认为20,最大值为100。
7626
+ */
7627
+ Limit?: number
7628
+ /**
7629
+ * 偏移量,默认为0。
7630
+ */
7631
+ Offset?: number
5539
7632
  }
5540
7633
 
5541
7634
  /**
@@ -5639,6 +7732,20 @@ export interface KongServicePreview {
5639
7732
  Path?: string
5640
7733
  }
5641
7734
 
7735
+ /**
7736
+ * DescribeCloudNativeAPIGatewayCertificates返回参数结构体
7737
+ */
7738
+ export interface DescribeCloudNativeAPIGatewayCertificatesResponse {
7739
+ /**
7740
+ * 无
7741
+ */
7742
+ Result?: KongCertificatesList
7743
+ /**
7744
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7745
+ */
7746
+ RequestId?: string
7747
+ }
7748
+
5642
7749
  /**
5643
7750
  * ModifyCloudNativeAPIGatewayRouteRateLimit返回参数结构体
5644
7751
  */
@@ -5650,17 +7757,21 @@ export interface ModifyCloudNativeAPIGatewayRouteRateLimitResponse {
5650
7757
  }
5651
7758
 
5652
7759
  /**
5653
- * 查询过滤通用对象
7760
+ * DescribeConfigFileReleaseHistories返回参数结构体
5654
7761
  */
5655
- export interface Filter {
7762
+ export interface DescribeConfigFileReleaseHistoriesResponse {
5656
7763
  /**
5657
- * 过滤参数名
7764
+ * 数据总数量
5658
7765
  */
5659
- Name: string
7766
+ TotalCount?: number
5660
7767
  /**
5661
- * 过滤参数值
7768
+ * 配置文件发布历史列表
5662
7769
  */
5663
- Values: Array<string>
7770
+ ConfigFileReleaseHistories?: Array<ConfigFileReleaseHistory>
7771
+ /**
7772
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7773
+ */
7774
+ RequestId?: string
5664
7775
  }
5665
7776
 
5666
7777
  /**
@@ -5685,6 +7796,44 @@ export interface DescribeCloudNativeAPIGatewayCanaryRulesRequest {
5685
7796
  Offset?: number
5686
7797
  }
5687
7798
 
7799
+ /**
7800
+ * 多环境网络信息
7801
+ */
7802
+ export interface EnvAddressInfo {
7803
+ /**
7804
+ * 环境名
7805
+ */
7806
+ EnvName?: string
7807
+ /**
7808
+ * 是否开启config公网
7809
+ */
7810
+ EnableConfigInternet?: boolean
7811
+ /**
7812
+ * config公网ip
7813
+ */
7814
+ ConfigInternetServiceIp?: string
7815
+ /**
7816
+ * config内网访问地址
7817
+ 注意:此字段可能返回 null,表示取不到有效值。
7818
+ */
7819
+ ConfigIntranetAddress?: string
7820
+ /**
7821
+ * 是否开启config内网clb
7822
+ 注意:此字段可能返回 null,表示取不到有效值。
7823
+ */
7824
+ EnableConfigIntranet?: boolean
7825
+ /**
7826
+ * 客户端公网带宽
7827
+ 注意:此字段可能返回 null,表示取不到有效值。
7828
+ */
7829
+ InternetBandWidth?: number
7830
+ /**
7831
+ * 客户端公网CLB多可用区信息
7832
+ 注意:此字段可能返回 null,表示取不到有效值。
7833
+ */
7834
+ CLBMultiRegion?: CLBMultiRegion
7835
+ }
7836
+
5688
7837
  /**
5689
7838
  * DeleteCloudNativeAPIGatewayCanaryRule返回参数结构体
5690
7839
  */
@@ -5702,7 +7851,7 @@ export interface ModifyGovernanceInstancesResponse {
5702
7851
  /**
5703
7852
  * 修改是否成功。
5704
7853
  */
5705
- Result: boolean
7854
+ Result?: boolean
5706
7855
  /**
5707
7856
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5708
7857
  */
@@ -5770,9 +7919,75 @@ export interface UpdateCloudNativeAPIGatewayCertificateInfoResponse {
5770
7919
  }
5771
7920
 
5772
7921
  /**
5773
- * ModifyNetworkBasicInfo返回参数结构体
7922
+ * 配置文件标签
5774
7923
  */
5775
- export interface ModifyNetworkBasicInfoResponse {
7924
+ export interface ConfigFileTag {
7925
+ /**
7926
+ * key-value 键
7927
+ 注意:此字段可能返回 null,表示取不到有效值。
7928
+ */
7929
+ Key?: string
7930
+ /**
7931
+ * key-value 值
7932
+ 注意:此字段可能返回 null,表示取不到有效值。
7933
+ */
7934
+ Value?: string
7935
+ }
7936
+
7937
+ /**
7938
+ * DescribeGovernanceServices请求参数结构体
7939
+ */
7940
+ export interface DescribeGovernanceServicesRequest {
7941
+ /**
7942
+ * 按照服务名过滤,精确匹配。
7943
+ */
7944
+ Name?: string
7945
+ /**
7946
+ * 按照命名空间过滤,精确匹配。
7947
+ */
7948
+ Namespace?: string
7949
+ /**
7950
+ * 使用元数据过滤,目前只支持一组元组数,若传了多条,只会使用第一条元数据过滤。
7951
+ */
7952
+ Metadatas?: Array<Metadata>
7953
+ /**
7954
+ * 偏移量,默认为0。
7955
+ */
7956
+ Offset?: number
7957
+ /**
7958
+ * 返回数量,默认为20,最大值为100。
7959
+ */
7960
+ Limit?: number
7961
+ /**
7962
+ * tse 实例 id。
7963
+ */
7964
+ InstanceId?: string
7965
+ /**
7966
+ * 服务所属部门。
7967
+ */
7968
+ Department?: string
7969
+ /**
7970
+ * 服务所属业务。
7971
+ */
7972
+ Business?: string
7973
+ /**
7974
+ * 服务中实例的ip,用来过滤服务。
7975
+ */
7976
+ Host?: string
7977
+ /**
7978
+ * 是否只查询存在健康实例的服务
7979
+ */
7980
+ OnlyExistHealthyInstance?: boolean
7981
+ }
7982
+
7983
+ /**
7984
+ * DescribeConfigFileRelease返回参数结构体
7985
+ */
7986
+ export interface DescribeConfigFileReleaseResponse {
7987
+ /**
7988
+ * 配置文件发布详情
7989
+ */
7990
+ ConfigFileRelease?: ConfigFileRelease
5776
7991
  /**
5777
7992
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5778
7993
  */
@@ -5865,3 +8080,21 @@ export interface KongServiceDetail {
5865
8080
  */
5866
8081
  CreatedTime?: string
5867
8082
  }
8083
+
8084
+ /**
8085
+ * DescribeGovernanceAliases返回参数结构体
8086
+ */
8087
+ export interface DescribeGovernanceAliasesResponse {
8088
+ /**
8089
+ * 服务别名总数量。
8090
+ */
8091
+ TotalCount?: number
8092
+ /**
8093
+ * 服务别名列表。
8094
+ */
8095
+ Content?: Array<GovernanceAlias>
8096
+ /**
8097
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8098
+ */
8099
+ RequestId?: string
8100
+ }