-
Notifications
You must be signed in to change notification settings - Fork 286
Expand file tree
/
Copy pathTseClient.java
More file actions
1438 lines (1306 loc) · 66.6 KB
/
TseClient.java
File metadata and controls
1438 lines (1306 loc) · 66.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) 2017-2025 Tencent. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.tse.v20201207;
import java.lang.reflect.Type;
import com.google.gson.JsonSyntaxException;
import com.google.gson.reflect.TypeToken;
import com.tencentcloudapi.common.exception.TencentCloudSDKException;
import com.tencentcloudapi.common.AbstractClient;
import com.tencentcloudapi.common.profile.ClientProfile;
import com.tencentcloudapi.common.JsonResponseModel;
import com.tencentcloudapi.common.Credential;
import com.tencentcloudapi.tse.v20201207.models.*;
public class TseClient extends AbstractClient{
private static String endpoint = "tse.tencentcloudapi.com";
private static String service = "tse";
private static String version = "2020-12-07";
public TseClient(Credential credential, String region) {
this(credential, region, new ClientProfile());
}
public TseClient(Credential credential, String region, ClientProfile profile) {
super(TseClient.endpoint, TseClient.version, credential, region, profile);
}
/**
*弹性伸缩策略批量绑定网关分组
* @param req BindAutoScalerResourceStrategyToGroupsRequest
* @return BindAutoScalerResourceStrategyToGroupsResponse
* @throws TencentCloudSDKException
*/
public BindAutoScalerResourceStrategyToGroupsResponse BindAutoScalerResourceStrategyToGroups(BindAutoScalerResourceStrategyToGroupsRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "BindAutoScalerResourceStrategyToGroups", BindAutoScalerResourceStrategyToGroupsResponse.class);
}
/**
*关闭 WAF 防护
* @param req CloseWafProtectionRequest
* @return CloseWafProtectionResponse
* @throws TencentCloudSDKException
*/
public CloseWafProtectionResponse CloseWafProtection(CloseWafProtectionRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CloseWafProtection", CloseWafProtectionResponse.class);
}
/**
*创建弹性伸缩策略
* @param req CreateAutoScalerResourceStrategyRequest
* @return CreateAutoScalerResourceStrategyResponse
* @throws TencentCloudSDKException
*/
public CreateAutoScalerResourceStrategyResponse CreateAutoScalerResourceStrategy(CreateAutoScalerResourceStrategyRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateAutoScalerResourceStrategy", CreateAutoScalerResourceStrategyResponse.class);
}
/**
*创建云原生API网关实例
* @param req CreateCloudNativeAPIGatewayRequest
* @return CreateCloudNativeAPIGatewayResponse
* @throws TencentCloudSDKException
*/
public CreateCloudNativeAPIGatewayResponse CreateCloudNativeAPIGateway(CreateCloudNativeAPIGatewayRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateCloudNativeAPIGateway", CreateCloudNativeAPIGatewayResponse.class);
}
/**
*创建云原生网关的灰度规则
* @param req CreateCloudNativeAPIGatewayCanaryRuleRequest
* @return CreateCloudNativeAPIGatewayCanaryRuleResponse
* @throws TencentCloudSDKException
*/
public CreateCloudNativeAPIGatewayCanaryRuleResponse CreateCloudNativeAPIGatewayCanaryRule(CreateCloudNativeAPIGatewayCanaryRuleRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateCloudNativeAPIGatewayCanaryRule", CreateCloudNativeAPIGatewayCanaryRuleResponse.class);
}
/**
*创建云原生网关证书
* @param req CreateCloudNativeAPIGatewayCertificateRequest
* @return CreateCloudNativeAPIGatewayCertificateResponse
* @throws TencentCloudSDKException
*/
public CreateCloudNativeAPIGatewayCertificateResponse CreateCloudNativeAPIGatewayCertificate(CreateCloudNativeAPIGatewayCertificateRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateCloudNativeAPIGatewayCertificate", CreateCloudNativeAPIGatewayCertificateResponse.class);
}
/**
*创建公网网络配置
* @param req CreateCloudNativeAPIGatewayPublicNetworkRequest
* @return CreateCloudNativeAPIGatewayPublicNetworkResponse
* @throws TencentCloudSDKException
*/
public CreateCloudNativeAPIGatewayPublicNetworkResponse CreateCloudNativeAPIGatewayPublicNetwork(CreateCloudNativeAPIGatewayPublicNetworkRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateCloudNativeAPIGatewayPublicNetwork", CreateCloudNativeAPIGatewayPublicNetworkResponse.class);
}
/**
*创建云原生网关路由
* @param req CreateCloudNativeAPIGatewayRouteRequest
* @return CreateCloudNativeAPIGatewayRouteResponse
* @throws TencentCloudSDKException
*/
public CreateCloudNativeAPIGatewayRouteResponse CreateCloudNativeAPIGatewayRoute(CreateCloudNativeAPIGatewayRouteRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateCloudNativeAPIGatewayRoute", CreateCloudNativeAPIGatewayRouteResponse.class);
}
/**
*创建云原生网关限流插件(路由)
* @param req CreateCloudNativeAPIGatewayRouteRateLimitRequest
* @return CreateCloudNativeAPIGatewayRouteRateLimitResponse
* @throws TencentCloudSDKException
*/
public CreateCloudNativeAPIGatewayRouteRateLimitResponse CreateCloudNativeAPIGatewayRouteRateLimit(CreateCloudNativeAPIGatewayRouteRateLimitRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateCloudNativeAPIGatewayRouteRateLimit", CreateCloudNativeAPIGatewayRouteRateLimitResponse.class);
}
/**
*创建云原生网关服务
* @param req CreateCloudNativeAPIGatewayServiceRequest
* @return CreateCloudNativeAPIGatewayServiceResponse
* @throws TencentCloudSDKException
*/
public CreateCloudNativeAPIGatewayServiceResponse CreateCloudNativeAPIGatewayService(CreateCloudNativeAPIGatewayServiceRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateCloudNativeAPIGatewayService", CreateCloudNativeAPIGatewayServiceResponse.class);
}
/**
*创建云原生网关限流插件(服务)
* @param req CreateCloudNativeAPIGatewayServiceRateLimitRequest
* @return CreateCloudNativeAPIGatewayServiceRateLimitResponse
* @throws TencentCloudSDKException
*/
public CreateCloudNativeAPIGatewayServiceRateLimitResponse CreateCloudNativeAPIGatewayServiceRateLimit(CreateCloudNativeAPIGatewayServiceRateLimitRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateCloudNativeAPIGatewayServiceRateLimit", CreateCloudNativeAPIGatewayServiceRateLimitResponse.class);
}
/**
*创建配置文件
* @param req CreateConfigFileRequest
* @return CreateConfigFileResponse
* @throws TencentCloudSDKException
*/
public CreateConfigFileResponse CreateConfigFile(CreateConfigFileRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateConfigFile", CreateConfigFileResponse.class);
}
/**
*创建服务治理中心配置文件组
* @param req CreateConfigFileGroupRequest
* @return CreateConfigFileGroupResponse
* @throws TencentCloudSDKException
*/
public CreateConfigFileGroupResponse CreateConfigFileGroup(CreateConfigFileGroupRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateConfigFileGroup", CreateConfigFileGroupResponse.class);
}
/**
*创建引擎实例
* @param req CreateEngineRequest
* @return CreateEngineResponse
* @throws TencentCloudSDKException
*/
public CreateEngineResponse CreateEngine(CreateEngineRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateEngine", CreateEngineResponse.class);
}
/**
*创建治理中心服务别名
* @param req CreateGovernanceAliasRequest
* @return CreateGovernanceAliasResponse
* @throws TencentCloudSDKException
*/
public CreateGovernanceAliasResponse CreateGovernanceAlias(CreateGovernanceAliasRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateGovernanceAlias", CreateGovernanceAliasResponse.class);
}
/**
*创建服务实例
* @param req CreateGovernanceInstancesRequest
* @return CreateGovernanceInstancesResponse
* @throws TencentCloudSDKException
*/
public CreateGovernanceInstancesResponse CreateGovernanceInstances(CreateGovernanceInstancesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateGovernanceInstances", CreateGovernanceInstancesResponse.class);
}
/**
*创建泳道组
* @param req CreateGovernanceLaneGroupsRequest
* @return CreateGovernanceLaneGroupsResponse
* @throws TencentCloudSDKException
*/
public CreateGovernanceLaneGroupsResponse CreateGovernanceLaneGroups(CreateGovernanceLaneGroupsRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateGovernanceLaneGroups", CreateGovernanceLaneGroupsResponse.class);
}
/**
*创建治理中心命名空间
* @param req CreateGovernanceNamespacesRequest
* @return CreateGovernanceNamespacesResponse
* @throws TencentCloudSDKException
*/
public CreateGovernanceNamespacesResponse CreateGovernanceNamespaces(CreateGovernanceNamespacesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateGovernanceNamespaces", CreateGovernanceNamespacesResponse.class);
}
/**
*创建治理中心服务
* @param req CreateGovernanceServicesRequest
* @return CreateGovernanceServicesResponse
* @throws TencentCloudSDKException
*/
public CreateGovernanceServicesResponse CreateGovernanceServices(CreateGovernanceServicesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateGovernanceServices", CreateGovernanceServicesResponse.class);
}
/**
*创建云原生网关引擎分组
* @param req CreateNativeGatewayServerGroupRequest
* @return CreateNativeGatewayServerGroupResponse
* @throws TencentCloudSDKException
*/
public CreateNativeGatewayServerGroupResponse CreateNativeGatewayServerGroup(CreateNativeGatewayServerGroupRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateNativeGatewayServerGroup", CreateNativeGatewayServerGroupResponse.class);
}
/**
*创建网关服务来源
* @param req CreateNativeGatewayServiceSourceRequest
* @return CreateNativeGatewayServiceSourceResponse
* @throws TencentCloudSDKException
*/
public CreateNativeGatewayServiceSourceResponse CreateNativeGatewayServiceSource(CreateNativeGatewayServiceSourceRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateNativeGatewayServiceSource", CreateNativeGatewayServiceSourceResponse.class);
}
/**
*创建或编辑云原生网关访问控制
* @param req CreateOrModifyCloudNativeAPIGatewayIPRestrictionRequest
* @return CreateOrModifyCloudNativeAPIGatewayIPRestrictionResponse
* @throws TencentCloudSDKException
*/
public CreateOrModifyCloudNativeAPIGatewayIPRestrictionResponse CreateOrModifyCloudNativeAPIGatewayIPRestriction(CreateOrModifyCloudNativeAPIGatewayIPRestrictionRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateOrModifyCloudNativeAPIGatewayIPRestriction", CreateOrModifyCloudNativeAPIGatewayIPRestrictionResponse.class);
}
/**
*创建或更新配置文件并发布配置
* @param req CreateOrUpdateConfigFileAndReleaseRequest
* @return CreateOrUpdateConfigFileAndReleaseResponse
* @throws TencentCloudSDKException
*/
public CreateOrUpdateConfigFileAndReleaseResponse CreateOrUpdateConfigFileAndRelease(CreateOrUpdateConfigFileAndReleaseRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateOrUpdateConfigFileAndRelease", CreateOrUpdateConfigFileAndReleaseResponse.class);
}
/**
*新建 WAF 防护域名
* @param req CreateWafDomainsRequest
* @return CreateWafDomainsResponse
* @throws TencentCloudSDKException
*/
public CreateWafDomainsResponse CreateWafDomains(CreateWafDomainsRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateWafDomains", CreateWafDomainsResponse.class);
}
/**
*删除弹性伸缩策略
* @param req DeleteAutoScalerResourceStrategyRequest
* @return DeleteAutoScalerResourceStrategyResponse
* @throws TencentCloudSDKException
*/
public DeleteAutoScalerResourceStrategyResponse DeleteAutoScalerResourceStrategy(DeleteAutoScalerResourceStrategyRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteAutoScalerResourceStrategy", DeleteAutoScalerResourceStrategyResponse.class);
}
/**
*删除云原生API网关实例
* @param req DeleteCloudNativeAPIGatewayRequest
* @return DeleteCloudNativeAPIGatewayResponse
* @throws TencentCloudSDKException
*/
public DeleteCloudNativeAPIGatewayResponse DeleteCloudNativeAPIGateway(DeleteCloudNativeAPIGatewayRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteCloudNativeAPIGateway", DeleteCloudNativeAPIGatewayResponse.class);
}
/**
*删除云原生网关的灰度规则
* @param req DeleteCloudNativeAPIGatewayCanaryRuleRequest
* @return DeleteCloudNativeAPIGatewayCanaryRuleResponse
* @throws TencentCloudSDKException
*/
public DeleteCloudNativeAPIGatewayCanaryRuleResponse DeleteCloudNativeAPIGatewayCanaryRule(DeleteCloudNativeAPIGatewayCanaryRuleRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteCloudNativeAPIGatewayCanaryRule", DeleteCloudNativeAPIGatewayCanaryRuleResponse.class);
}
/**
*删除云原生网关证书
* @param req DeleteCloudNativeAPIGatewayCertificateRequest
* @return DeleteCloudNativeAPIGatewayCertificateResponse
* @throws TencentCloudSDKException
*/
public DeleteCloudNativeAPIGatewayCertificateResponse DeleteCloudNativeAPIGatewayCertificate(DeleteCloudNativeAPIGatewayCertificateRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteCloudNativeAPIGatewayCertificate", DeleteCloudNativeAPIGatewayCertificateResponse.class);
}
/**
*删除云原生网关访问控制
* @param req DeleteCloudNativeAPIGatewayIPRestrictionRequest
* @return DeleteCloudNativeAPIGatewayIPRestrictionResponse
* @throws TencentCloudSDKException
*/
public DeleteCloudNativeAPIGatewayIPRestrictionResponse DeleteCloudNativeAPIGatewayIPRestriction(DeleteCloudNativeAPIGatewayIPRestrictionRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteCloudNativeAPIGatewayIPRestriction", DeleteCloudNativeAPIGatewayIPRestrictionResponse.class);
}
/**
*删除公网网络配置
* @param req DeleteCloudNativeAPIGatewayPublicNetworkRequest
* @return DeleteCloudNativeAPIGatewayPublicNetworkResponse
* @throws TencentCloudSDKException
*/
public DeleteCloudNativeAPIGatewayPublicNetworkResponse DeleteCloudNativeAPIGatewayPublicNetwork(DeleteCloudNativeAPIGatewayPublicNetworkRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteCloudNativeAPIGatewayPublicNetwork", DeleteCloudNativeAPIGatewayPublicNetworkResponse.class);
}
/**
*删除云原生网关路由
* @param req DeleteCloudNativeAPIGatewayRouteRequest
* @return DeleteCloudNativeAPIGatewayRouteResponse
* @throws TencentCloudSDKException
*/
public DeleteCloudNativeAPIGatewayRouteResponse DeleteCloudNativeAPIGatewayRoute(DeleteCloudNativeAPIGatewayRouteRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteCloudNativeAPIGatewayRoute", DeleteCloudNativeAPIGatewayRouteResponse.class);
}
/**
*删除云原生网关的限流插件(路由)
* @param req DeleteCloudNativeAPIGatewayRouteRateLimitRequest
* @return DeleteCloudNativeAPIGatewayRouteRateLimitResponse
* @throws TencentCloudSDKException
*/
public DeleteCloudNativeAPIGatewayRouteRateLimitResponse DeleteCloudNativeAPIGatewayRouteRateLimit(DeleteCloudNativeAPIGatewayRouteRateLimitRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteCloudNativeAPIGatewayRouteRateLimit", DeleteCloudNativeAPIGatewayRouteRateLimitResponse.class);
}
/**
*删除云原生网关服务
* @param req DeleteCloudNativeAPIGatewayServiceRequest
* @return DeleteCloudNativeAPIGatewayServiceResponse
* @throws TencentCloudSDKException
*/
public DeleteCloudNativeAPIGatewayServiceResponse DeleteCloudNativeAPIGatewayService(DeleteCloudNativeAPIGatewayServiceRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteCloudNativeAPIGatewayService", DeleteCloudNativeAPIGatewayServiceResponse.class);
}
/**
*删除云原生网关的限流插件(服务)
* @param req DeleteCloudNativeAPIGatewayServiceRateLimitRequest
* @return DeleteCloudNativeAPIGatewayServiceRateLimitResponse
* @throws TencentCloudSDKException
*/
public DeleteCloudNativeAPIGatewayServiceRateLimitResponse DeleteCloudNativeAPIGatewayServiceRateLimit(DeleteCloudNativeAPIGatewayServiceRateLimitRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteCloudNativeAPIGatewayServiceRateLimit", DeleteCloudNativeAPIGatewayServiceRateLimitResponse.class);
}
/**
*删除配置文件分组
* @param req DeleteConfigFileGroupRequest
* @return DeleteConfigFileGroupResponse
* @throws TencentCloudSDKException
*/
public DeleteConfigFileGroupResponse DeleteConfigFileGroup(DeleteConfigFileGroupRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteConfigFileGroup", DeleteConfigFileGroupResponse.class);
}
/**
*删除配置发布
* @param req DeleteConfigFileReleasesRequest
* @return DeleteConfigFileReleasesResponse
* @throws TencentCloudSDKException
*/
public DeleteConfigFileReleasesResponse DeleteConfigFileReleases(DeleteConfigFileReleasesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteConfigFileReleases", DeleteConfigFileReleasesResponse.class);
}
/**
*删除配置文件
* @param req DeleteConfigFilesRequest
* @return DeleteConfigFilesResponse
* @throws TencentCloudSDKException
*/
public DeleteConfigFilesResponse DeleteConfigFiles(DeleteConfigFilesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteConfigFiles", DeleteConfigFilesResponse.class);
}
/**
*删除引擎实例
* @param req DeleteEngineRequest
* @return DeleteEngineResponse
* @throws TencentCloudSDKException
*/
public DeleteEngineResponse DeleteEngine(DeleteEngineRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteEngine", DeleteEngineResponse.class);
}
/**
*删除治理中心服务别名
* @param req DeleteGovernanceAliasesRequest
* @return DeleteGovernanceAliasesResponse
* @throws TencentCloudSDKException
*/
public DeleteGovernanceAliasesResponse DeleteGovernanceAliases(DeleteGovernanceAliasesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteGovernanceAliases", DeleteGovernanceAliasesResponse.class);
}
/**
*删除服务实例
* @param req DeleteGovernanceInstancesRequest
* @return DeleteGovernanceInstancesResponse
* @throws TencentCloudSDKException
*/
public DeleteGovernanceInstancesResponse DeleteGovernanceInstances(DeleteGovernanceInstancesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteGovernanceInstances", DeleteGovernanceInstancesResponse.class);
}
/**
*删除治理中心服务实例
* @param req DeleteGovernanceInstancesByHostRequest
* @return DeleteGovernanceInstancesByHostResponse
* @throws TencentCloudSDKException
*/
public DeleteGovernanceInstancesByHostResponse DeleteGovernanceInstancesByHost(DeleteGovernanceInstancesByHostRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteGovernanceInstancesByHost", DeleteGovernanceInstancesByHostResponse.class);
}
/**
*删除泳道组
* @param req DeleteGovernanceLaneGroupsRequest
* @return DeleteGovernanceLaneGroupsResponse
* @throws TencentCloudSDKException
*/
public DeleteGovernanceLaneGroupsResponse DeleteGovernanceLaneGroups(DeleteGovernanceLaneGroupsRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteGovernanceLaneGroups", DeleteGovernanceLaneGroupsResponse.class);
}
/**
*删除治理中心命名空间
* @param req DeleteGovernanceNamespacesRequest
* @return DeleteGovernanceNamespacesResponse
* @throws TencentCloudSDKException
*/
public DeleteGovernanceNamespacesResponse DeleteGovernanceNamespaces(DeleteGovernanceNamespacesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteGovernanceNamespaces", DeleteGovernanceNamespacesResponse.class);
}
/**
*删除治理中心服务
* @param req DeleteGovernanceServicesRequest
* @return DeleteGovernanceServicesResponse
* @throws TencentCloudSDKException
*/
public DeleteGovernanceServicesResponse DeleteGovernanceServices(DeleteGovernanceServicesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteGovernanceServices", DeleteGovernanceServicesResponse.class);
}
/**
*删除网关实例分组
* @param req DeleteNativeGatewayServerGroupRequest
* @return DeleteNativeGatewayServerGroupResponse
* @throws TencentCloudSDKException
*/
public DeleteNativeGatewayServerGroupResponse DeleteNativeGatewayServerGroup(DeleteNativeGatewayServerGroupRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteNativeGatewayServerGroup", DeleteNativeGatewayServerGroupResponse.class);
}
/**
*删除网关服务来源实例
* @param req DeleteNativeGatewayServiceSourceRequest
* @return DeleteNativeGatewayServiceSourceResponse
* @throws TencentCloudSDKException
*/
public DeleteNativeGatewayServiceSourceResponse DeleteNativeGatewayServiceSource(DeleteNativeGatewayServiceSourceRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteNativeGatewayServiceSource", DeleteNativeGatewayServiceSourceResponse.class);
}
/**
*删除 WAF 防护域名
* @param req DeleteWafDomainsRequest
* @return DeleteWafDomainsResponse
* @throws TencentCloudSDKException
*/
public DeleteWafDomainsResponse DeleteWafDomains(DeleteWafDomainsRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteWafDomains", DeleteWafDomainsResponse.class);
}
/**
*获取全量配置文件模板列表
* @param req DescribeAllConfigFileTemplatesRequest
* @return DescribeAllConfigFileTemplatesResponse
* @throws TencentCloudSDKException
*/
public DescribeAllConfigFileTemplatesResponse DescribeAllConfigFileTemplates(DescribeAllConfigFileTemplatesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeAllConfigFileTemplates", DescribeAllConfigFileTemplatesResponse.class);
}
/**
*查看弹性伸缩策略列表
* @param req DescribeAutoScalerResourceStrategiesRequest
* @return DescribeAutoScalerResourceStrategiesResponse
* @throws TencentCloudSDKException
*/
public DescribeAutoScalerResourceStrategiesResponse DescribeAutoScalerResourceStrategies(DescribeAutoScalerResourceStrategiesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeAutoScalerResourceStrategies", DescribeAutoScalerResourceStrategiesResponse.class);
}
/**
*查看弹性伸缩策略绑定的网关分组
* @param req DescribeAutoScalerResourceStrategyBindingGroupsRequest
* @return DescribeAutoScalerResourceStrategyBindingGroupsResponse
* @throws TencentCloudSDKException
*/
public DescribeAutoScalerResourceStrategyBindingGroupsResponse DescribeAutoScalerResourceStrategyBindingGroups(DescribeAutoScalerResourceStrategyBindingGroupsRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeAutoScalerResourceStrategyBindingGroups", DescribeAutoScalerResourceStrategyBindingGroupsResponse.class);
}
/**
*获取云原生API网关实例信息
* @param req DescribeCloudNativeAPIGatewayRequest
* @return DescribeCloudNativeAPIGatewayResponse
* @throws TencentCloudSDKException
*/
public DescribeCloudNativeAPIGatewayResponse DescribeCloudNativeAPIGateway(DescribeCloudNativeAPIGatewayRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeCloudNativeAPIGateway", DescribeCloudNativeAPIGatewayResponse.class);
}
/**
*查询云原生网关灰度规则列表
* @param req DescribeCloudNativeAPIGatewayCanaryRulesRequest
* @return DescribeCloudNativeAPIGatewayCanaryRulesResponse
* @throws TencentCloudSDKException
*/
public DescribeCloudNativeAPIGatewayCanaryRulesResponse DescribeCloudNativeAPIGatewayCanaryRules(DescribeCloudNativeAPIGatewayCanaryRulesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeCloudNativeAPIGatewayCanaryRules", DescribeCloudNativeAPIGatewayCanaryRulesResponse.class);
}
/**
*查询云原生网关单个证书详情
* @param req DescribeCloudNativeAPIGatewayCertificateDetailsRequest
* @return DescribeCloudNativeAPIGatewayCertificateDetailsResponse
* @throws TencentCloudSDKException
*/
public DescribeCloudNativeAPIGatewayCertificateDetailsResponse DescribeCloudNativeAPIGatewayCertificateDetails(DescribeCloudNativeAPIGatewayCertificateDetailsRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeCloudNativeAPIGatewayCertificateDetails", DescribeCloudNativeAPIGatewayCertificateDetailsResponse.class);
}
/**
*查询云原生网关证书列表
* @param req DescribeCloudNativeAPIGatewayCertificatesRequest
* @return DescribeCloudNativeAPIGatewayCertificatesResponse
* @throws TencentCloudSDKException
*/
public DescribeCloudNativeAPIGatewayCertificatesResponse DescribeCloudNativeAPIGatewayCertificates(DescribeCloudNativeAPIGatewayCertificatesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeCloudNativeAPIGatewayCertificates", DescribeCloudNativeAPIGatewayCertificatesResponse.class);
}
/**
*获取云原生API网关实例网络配置信息
* @param req DescribeCloudNativeAPIGatewayConfigRequest
* @return DescribeCloudNativeAPIGatewayConfigResponse
* @throws TencentCloudSDKException
*/
public DescribeCloudNativeAPIGatewayConfigResponse DescribeCloudNativeAPIGatewayConfig(DescribeCloudNativeAPIGatewayConfigRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeCloudNativeAPIGatewayConfig", DescribeCloudNativeAPIGatewayConfigResponse.class);
}
/**
*查询云原生网关访问控制
* @param req DescribeCloudNativeAPIGatewayIPRestrictionRequest
* @return DescribeCloudNativeAPIGatewayIPRestrictionResponse
* @throws TencentCloudSDKException
*/
public DescribeCloudNativeAPIGatewayIPRestrictionResponse DescribeCloudNativeAPIGatewayIPRestriction(DescribeCloudNativeAPIGatewayIPRestrictionRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeCloudNativeAPIGatewayIPRestriction", DescribeCloudNativeAPIGatewayIPRestrictionResponse.class);
}
/**
*根据公网IP查询云原生网关实例信息
* @param req DescribeCloudNativeAPIGatewayInfoByIpRequest
* @return DescribeCloudNativeAPIGatewayInfoByIpResponse
* @throws TencentCloudSDKException
*/
public DescribeCloudNativeAPIGatewayInfoByIpResponse DescribeCloudNativeAPIGatewayInfoByIp(DescribeCloudNativeAPIGatewayInfoByIpRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeCloudNativeAPIGatewayInfoByIp", DescribeCloudNativeAPIGatewayInfoByIpResponse.class);
}
/**
*获取云原生网关节点列表
* @param req DescribeCloudNativeAPIGatewayNodesRequest
* @return DescribeCloudNativeAPIGatewayNodesResponse
* @throws TencentCloudSDKException
*/
public DescribeCloudNativeAPIGatewayNodesResponse DescribeCloudNativeAPIGatewayNodes(DescribeCloudNativeAPIGatewayNodesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeCloudNativeAPIGatewayNodes", DescribeCloudNativeAPIGatewayNodesResponse.class);
}
/**
*获取云原生API网关实例端口信息
* @param req DescribeCloudNativeAPIGatewayPortsRequest
* @return DescribeCloudNativeAPIGatewayPortsResponse
* @throws TencentCloudSDKException
*/
public DescribeCloudNativeAPIGatewayPortsResponse DescribeCloudNativeAPIGatewayPorts(DescribeCloudNativeAPIGatewayPortsRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeCloudNativeAPIGatewayPorts", DescribeCloudNativeAPIGatewayPortsResponse.class);
}
/**
*查询云原生网关的限流插件(路由)
* @param req DescribeCloudNativeAPIGatewayRouteRateLimitRequest
* @return DescribeCloudNativeAPIGatewayRouteRateLimitResponse
* @throws TencentCloudSDKException
*/
public DescribeCloudNativeAPIGatewayRouteRateLimitResponse DescribeCloudNativeAPIGatewayRouteRateLimit(DescribeCloudNativeAPIGatewayRouteRateLimitRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeCloudNativeAPIGatewayRouteRateLimit", DescribeCloudNativeAPIGatewayRouteRateLimitResponse.class);
}
/**
*查询云原生网关路由列表
* @param req DescribeCloudNativeAPIGatewayRoutesRequest
* @return DescribeCloudNativeAPIGatewayRoutesResponse
* @throws TencentCloudSDKException
*/
public DescribeCloudNativeAPIGatewayRoutesResponse DescribeCloudNativeAPIGatewayRoutes(DescribeCloudNativeAPIGatewayRoutesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeCloudNativeAPIGatewayRoutes", DescribeCloudNativeAPIGatewayRoutesResponse.class);
}
/**
*查询云原生网关的限流插件(服务)
* @param req DescribeCloudNativeAPIGatewayServiceRateLimitRequest
* @return DescribeCloudNativeAPIGatewayServiceRateLimitResponse
* @throws TencentCloudSDKException
*/
public DescribeCloudNativeAPIGatewayServiceRateLimitResponse DescribeCloudNativeAPIGatewayServiceRateLimit(DescribeCloudNativeAPIGatewayServiceRateLimitRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeCloudNativeAPIGatewayServiceRateLimit", DescribeCloudNativeAPIGatewayServiceRateLimitResponse.class);
}
/**
*查询云原生网关服务列表
* @param req DescribeCloudNativeAPIGatewayServicesRequest
* @return DescribeCloudNativeAPIGatewayServicesResponse
* @throws TencentCloudSDKException
*/
public DescribeCloudNativeAPIGatewayServicesResponse DescribeCloudNativeAPIGatewayServices(DescribeCloudNativeAPIGatewayServicesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeCloudNativeAPIGatewayServices", DescribeCloudNativeAPIGatewayServicesResponse.class);
}
/**
*轻量查询云原生网关服务列表
* @param req DescribeCloudNativeAPIGatewayServicesLightRequest
* @return DescribeCloudNativeAPIGatewayServicesLightResponse
* @throws TencentCloudSDKException
*/
public DescribeCloudNativeAPIGatewayServicesLightResponse DescribeCloudNativeAPIGatewayServicesLight(DescribeCloudNativeAPIGatewayServicesLightRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeCloudNativeAPIGatewayServicesLight", DescribeCloudNativeAPIGatewayServicesLightResponse.class);
}
/**
*获取云原生网关服务详情下的Upstream列表
* @param req DescribeCloudNativeAPIGatewayUpstreamRequest
* @return DescribeCloudNativeAPIGatewayUpstreamResponse
* @throws TencentCloudSDKException
*/
public DescribeCloudNativeAPIGatewayUpstreamResponse DescribeCloudNativeAPIGatewayUpstream(DescribeCloudNativeAPIGatewayUpstreamRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeCloudNativeAPIGatewayUpstream", DescribeCloudNativeAPIGatewayUpstreamResponse.class);
}
/**
*获取云原生API网关实例列表
* @param req DescribeCloudNativeAPIGatewaysRequest
* @return DescribeCloudNativeAPIGatewaysResponse
* @throws TencentCloudSDKException
*/
public DescribeCloudNativeAPIGatewaysResponse DescribeCloudNativeAPIGateways(DescribeCloudNativeAPIGatewaysRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeCloudNativeAPIGateways", DescribeCloudNativeAPIGatewaysResponse.class);
}
/**
*根据命名空间、组、名字查找配置文件
* @param req DescribeConfigFileRequest
* @return DescribeConfigFileResponse
* @throws TencentCloudSDKException
*/
public DescribeConfigFileResponse DescribeConfigFile(DescribeConfigFileRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeConfigFile", DescribeConfigFileResponse.class);
}
/**
*根据条件分页查询配置文件组
* @param req DescribeConfigFileGroupsRequest
* @return DescribeConfigFileGroupsResponse
* @throws TencentCloudSDKException
*/
public DescribeConfigFileGroupsResponse DescribeConfigFileGroups(DescribeConfigFileGroupsRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeConfigFileGroups", DescribeConfigFileGroupsResponse.class);
}
/**
*获取配置文件发布
* @param req DescribeConfigFileReleaseRequest
* @return DescribeConfigFileReleaseResponse
* @throws TencentCloudSDKException
*/
public DescribeConfigFileReleaseResponse DescribeConfigFileRelease(DescribeConfigFileReleaseRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeConfigFileRelease", DescribeConfigFileReleaseResponse.class);
}
/**
*获取配置文件发布历史列表
* @param req DescribeConfigFileReleaseHistoriesRequest
* @return DescribeConfigFileReleaseHistoriesResponse
* @throws TencentCloudSDKException
*/
public DescribeConfigFileReleaseHistoriesResponse DescribeConfigFileReleaseHistories(DescribeConfigFileReleaseHistoriesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeConfigFileReleaseHistories", DescribeConfigFileReleaseHistoriesResponse.class);
}
/**
*查询某个配置所有版本信息
* @param req DescribeConfigFileReleaseVersionsRequest
* @return DescribeConfigFileReleaseVersionsResponse
* @throws TencentCloudSDKException
*/
public DescribeConfigFileReleaseVersionsResponse DescribeConfigFileReleaseVersions(DescribeConfigFileReleaseVersionsRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeConfigFileReleaseVersions", DescribeConfigFileReleaseVersionsResponse.class);
}
/**
*查询配置版本列表
* @param req DescribeConfigFileReleasesRequest
* @return DescribeConfigFileReleasesResponse
* @throws TencentCloudSDKException
*/
public DescribeConfigFileReleasesResponse DescribeConfigFileReleases(DescribeConfigFileReleasesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeConfigFileReleases", DescribeConfigFileReleasesResponse.class);
}
/**
*根据命名空间、组名、名称、标签查询配置文件列表
* @param req DescribeConfigFilesRequest
* @return DescribeConfigFilesResponse
* @throws TencentCloudSDKException
*/
public DescribeConfigFilesResponse DescribeConfigFiles(DescribeConfigFilesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeConfigFiles", DescribeConfigFilesResponse.class);
}
/**
*根据group查询配置文件列表
* @param req DescribeConfigFilesByGroupRequest
* @return DescribeConfigFilesByGroupResponse
* @throws TencentCloudSDKException
*/
public DescribeConfigFilesByGroupResponse DescribeConfigFilesByGroup(DescribeConfigFilesByGroupRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeConfigFilesByGroup", DescribeConfigFilesByGroupResponse.class);
}
/**
*查询治理中心服务别名列表
* @param req DescribeGovernanceAliasesRequest
* @return DescribeGovernanceAliasesResponse
* @throws TencentCloudSDKException
*/
public DescribeGovernanceAliasesResponse DescribeGovernanceAliases(DescribeGovernanceAliasesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeGovernanceAliases", DescribeGovernanceAliasesResponse.class);
}
/**
*查询服务实例
* @param req DescribeGovernanceInstancesRequest
* @return DescribeGovernanceInstancesResponse
* @throws TencentCloudSDKException
*/
public DescribeGovernanceInstancesResponse DescribeGovernanceInstances(DescribeGovernanceInstancesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeGovernanceInstances", DescribeGovernanceInstancesResponse.class);
}
/**
*查询泳道组列表
* @param req DescribeGovernanceLaneGroupsRequest
* @return DescribeGovernanceLaneGroupsResponse
* @throws TencentCloudSDKException
*/
public DescribeGovernanceLaneGroupsResponse DescribeGovernanceLaneGroups(DescribeGovernanceLaneGroupsRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeGovernanceLaneGroups", DescribeGovernanceLaneGroupsResponse.class);
}
/**
*查询服务治理中心命名空间列表
* @param req DescribeGovernanceNamespacesRequest
* @return DescribeGovernanceNamespacesResponse
* @throws TencentCloudSDKException
*/
public DescribeGovernanceNamespacesResponse DescribeGovernanceNamespaces(DescribeGovernanceNamespacesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeGovernanceNamespaces", DescribeGovernanceNamespacesResponse.class);
}
/**
*查询服务下契约版本列表
* @param req DescribeGovernanceServiceContractVersionsRequest
* @return DescribeGovernanceServiceContractVersionsResponse
* @throws TencentCloudSDKException
*/
public DescribeGovernanceServiceContractVersionsResponse DescribeGovernanceServiceContractVersions(DescribeGovernanceServiceContractVersionsRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeGovernanceServiceContractVersions", DescribeGovernanceServiceContractVersionsResponse.class);
}
/**
*查询服务契约定义列表
* @param req DescribeGovernanceServiceContractsRequest
* @return DescribeGovernanceServiceContractsResponse
* @throws TencentCloudSDKException
*/
public DescribeGovernanceServiceContractsResponse DescribeGovernanceServiceContracts(DescribeGovernanceServiceContractsRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeGovernanceServiceContracts", DescribeGovernanceServiceContractsResponse.class);
}
/**
*查询治理中心服务列表
* @param req DescribeGovernanceServicesRequest
* @return DescribeGovernanceServicesResponse
* @throws TencentCloudSDKException
*/
public DescribeGovernanceServicesResponse DescribeGovernanceServices(DescribeGovernanceServicesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeGovernanceServices", DescribeGovernanceServicesResponse.class);
}
/**
*查看实例的标签信息
* @param req DescribeInstanceTagInfosRequest
* @return DescribeInstanceTagInfosResponse
* @throws TencentCloudSDKException
*/
public DescribeInstanceTagInfosResponse DescribeInstanceTagInfos(DescribeInstanceTagInfosRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeInstanceTagInfos", DescribeInstanceTagInfosResponse.class);
}
/**
*查询Nacos类型引擎实例副本信息
* @param req DescribeNacosReplicasRequest
* @return DescribeNacosReplicasResponse
* @throws TencentCloudSDKException
*/
public DescribeNacosReplicasResponse DescribeNacosReplicas(DescribeNacosReplicasRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeNacosReplicas", DescribeNacosReplicasResponse.class);
}
/**
*查询nacos服务接口列表
* @param req DescribeNacosServerInterfacesRequest
* @return DescribeNacosServerInterfacesResponse
* @throws TencentCloudSDKException
*/
public DescribeNacosServerInterfacesResponse DescribeNacosServerInterfaces(DescribeNacosServerInterfacesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeNacosServerInterfaces", DescribeNacosServerInterfacesResponse.class);
}
/**
*查询云原生网关分组信息
* @param req DescribeNativeGatewayServerGroupsRequest
* @return DescribeNativeGatewayServerGroupsResponse
* @throws TencentCloudSDKException
*/
public DescribeNativeGatewayServerGroupsResponse DescribeNativeGatewayServerGroups(DescribeNativeGatewayServerGroupsRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeNativeGatewayServerGroups", DescribeNativeGatewayServerGroupsResponse.class);
}
/**
*查询网关服务来源实例列表
* @param req DescribeNativeGatewayServiceSourcesRequest
* @return DescribeNativeGatewayServiceSourcesResponse
* @throws TencentCloudSDKException
*/
public DescribeNativeGatewayServiceSourcesResponse DescribeNativeGatewayServiceSources(DescribeNativeGatewayServiceSourcesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeNativeGatewayServiceSources", DescribeNativeGatewayServiceSourcesResponse.class);
}
/**
*获取云原生网关服务详情
* @param req DescribeOneCloudNativeAPIGatewayServiceRequest
* @return DescribeOneCloudNativeAPIGatewayServiceResponse
* @throws TencentCloudSDKException
*/
public DescribeOneCloudNativeAPIGatewayServiceResponse DescribeOneCloudNativeAPIGatewayService(DescribeOneCloudNativeAPIGatewayServiceRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeOneCloudNativeAPIGatewayService", DescribeOneCloudNativeAPIGatewayServiceResponse.class);
}
/**
*查询公网地址信息
* @param req DescribePublicAddressConfigRequest