@aws-sdk/client-apigatewayv2 3.934.0 → 3.935.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. package/README.md +215 -7
  2. package/dist-cjs/index.js +4158 -1317
  3. package/dist-es/ApiGatewayV2.js +52 -0
  4. package/dist-es/commands/CreatePortalCommand.js +16 -0
  5. package/dist-es/commands/CreatePortalProductCommand.js +16 -0
  6. package/dist-es/commands/CreateProductPageCommand.js +16 -0
  7. package/dist-es/commands/CreateProductRestEndpointPageCommand.js +16 -0
  8. package/dist-es/commands/DeletePortalCommand.js +16 -0
  9. package/dist-es/commands/DeletePortalProductCommand.js +16 -0
  10. package/dist-es/commands/DeletePortalProductSharingPolicyCommand.js +16 -0
  11. package/dist-es/commands/DeleteProductPageCommand.js +16 -0
  12. package/dist-es/commands/DeleteProductRestEndpointPageCommand.js +16 -0
  13. package/dist-es/commands/DisablePortalCommand.js +16 -0
  14. package/dist-es/commands/GetPortalCommand.js +16 -0
  15. package/dist-es/commands/GetPortalProductCommand.js +16 -0
  16. package/dist-es/commands/GetPortalProductSharingPolicyCommand.js +16 -0
  17. package/dist-es/commands/GetProductPageCommand.js +16 -0
  18. package/dist-es/commands/GetProductRestEndpointPageCommand.js +16 -0
  19. package/dist-es/commands/ListPortalProductsCommand.js +16 -0
  20. package/dist-es/commands/ListPortalsCommand.js +16 -0
  21. package/dist-es/commands/ListProductPagesCommand.js +16 -0
  22. package/dist-es/commands/ListProductRestEndpointPagesCommand.js +16 -0
  23. package/dist-es/commands/PreviewPortalCommand.js +16 -0
  24. package/dist-es/commands/PublishPortalCommand.js +16 -0
  25. package/dist-es/commands/PutPortalProductSharingPolicyCommand.js +16 -0
  26. package/dist-es/commands/UpdatePortalCommand.js +16 -0
  27. package/dist-es/commands/UpdatePortalProductCommand.js +16 -0
  28. package/dist-es/commands/UpdateProductPageCommand.js +16 -0
  29. package/dist-es/commands/UpdateProductRestEndpointPageCommand.js +16 -0
  30. package/dist-es/commands/index.js +26 -0
  31. package/dist-es/index.js +2 -1
  32. package/dist-es/models/enums.js +97 -0
  33. package/dist-es/models/errors.js +75 -0
  34. package/dist-es/models/models_0.js +1 -152
  35. package/dist-es/schemas/schemas_0.js +4211 -1758
  36. package/dist-types/ApiGatewayV2.d.ts +184 -0
  37. package/dist-types/ApiGatewayV2Client.d.ts +28 -2
  38. package/dist-types/commands/CreatePortalCommand.d.ts +164 -0
  39. package/dist-types/commands/CreatePortalProductCommand.d.ts +107 -0
  40. package/dist-types/commands/CreateProductPageCommand.d.ts +95 -0
  41. package/dist-types/commands/CreateProductRestEndpointPageCommand.d.ts +123 -0
  42. package/dist-types/commands/DeletePortalCommand.d.ts +80 -0
  43. package/dist-types/commands/DeletePortalProductCommand.d.ts +83 -0
  44. package/dist-types/commands/DeletePortalProductSharingPolicyCommand.d.ts +83 -0
  45. package/dist-types/commands/DeleteProductPageCommand.d.ts +84 -0
  46. package/dist-types/commands/DeleteProductRestEndpointPageCommand.d.ts +84 -0
  47. package/dist-types/commands/DisablePortalCommand.d.ts +86 -0
  48. package/dist-types/commands/GetPortalCommand.d.ts +138 -0
  49. package/dist-types/commands/GetPortalProductCommand.d.ts +107 -0
  50. package/dist-types/commands/GetPortalProductSharingPolicyCommand.d.ts +86 -0
  51. package/dist-types/commands/GetProductPageCommand.d.ts +93 -0
  52. package/dist-types/commands/GetProductRestEndpointPageCommand.d.ts +110 -0
  53. package/dist-types/commands/ListPortalProductsCommand.d.ts +96 -0
  54. package/dist-types/commands/ListPortalsCommand.d.ts +141 -0
  55. package/dist-types/commands/ListProductPagesCommand.d.ts +96 -0
  56. package/dist-types/commands/ListProductRestEndpointPagesCommand.d.ts +111 -0
  57. package/dist-types/commands/PreviewPortalCommand.d.ts +86 -0
  58. package/dist-types/commands/PublishPortalCommand.d.ts +87 -0
  59. package/dist-types/commands/PutPortalProductSharingPolicyCommand.d.ts +84 -0
  60. package/dist-types/commands/UpdatePortalCommand.d.ts +176 -0
  61. package/dist-types/commands/UpdatePortalProductCommand.d.ts +122 -0
  62. package/dist-types/commands/UpdateProductPageCommand.d.ts +96 -0
  63. package/dist-types/commands/UpdateProductRestEndpointPageCommand.d.ts +116 -0
  64. package/dist-types/commands/index.d.ts +26 -0
  65. package/dist-types/index.d.ts +3 -1
  66. package/dist-types/models/enums.d.ts +257 -0
  67. package/dist-types/models/errors.d.ts +92 -0
  68. package/dist-types/models/models_0.d.ts +2564 -1172
  69. package/dist-types/schemas/schemas_0.d.ts +101 -0
  70. package/dist-types/ts3.4/ApiGatewayV2.d.ts +444 -0
  71. package/dist-types/ts3.4/ApiGatewayV2Client.d.ts +156 -0
  72. package/dist-types/ts3.4/commands/CreatePortalCommand.d.ts +47 -0
  73. package/dist-types/ts3.4/commands/CreatePortalProductCommand.d.ts +51 -0
  74. package/dist-types/ts3.4/commands/CreateProductPageCommand.d.ts +51 -0
  75. package/dist-types/ts3.4/commands/CreateProductRestEndpointPageCommand.d.ts +51 -0
  76. package/dist-types/ts3.4/commands/DeletePortalCommand.d.ts +45 -0
  77. package/dist-types/ts3.4/commands/DeletePortalProductCommand.d.ts +46 -0
  78. package/dist-types/ts3.4/commands/DeletePortalProductSharingPolicyCommand.d.ts +47 -0
  79. package/dist-types/ts3.4/commands/DeleteProductPageCommand.d.ts +46 -0
  80. package/dist-types/ts3.4/commands/DeleteProductRestEndpointPageCommand.d.ts +47 -0
  81. package/dist-types/ts3.4/commands/DisablePortalCommand.d.ts +45 -0
  82. package/dist-types/ts3.4/commands/GetPortalCommand.d.ts +47 -0
  83. package/dist-types/ts3.4/commands/GetPortalProductCommand.d.ts +50 -0
  84. package/dist-types/ts3.4/commands/GetPortalProductSharingPolicyCommand.d.ts +51 -0
  85. package/dist-types/ts3.4/commands/GetProductPageCommand.d.ts +50 -0
  86. package/dist-types/ts3.4/commands/GetProductRestEndpointPageCommand.d.ts +51 -0
  87. package/dist-types/ts3.4/commands/ListPortalProductsCommand.d.ts +51 -0
  88. package/dist-types/ts3.4/commands/ListPortalsCommand.d.ts +47 -0
  89. package/dist-types/ts3.4/commands/ListProductPagesCommand.d.ts +50 -0
  90. package/dist-types/ts3.4/commands/ListProductRestEndpointPagesCommand.d.ts +51 -0
  91. package/dist-types/ts3.4/commands/PreviewPortalCommand.d.ts +50 -0
  92. package/dist-types/ts3.4/commands/PublishPortalCommand.d.ts +50 -0
  93. package/dist-types/ts3.4/commands/PutPortalProductSharingPolicyCommand.d.ts +51 -0
  94. package/dist-types/ts3.4/commands/UpdatePortalCommand.d.ts +47 -0
  95. package/dist-types/ts3.4/commands/UpdatePortalProductCommand.d.ts +51 -0
  96. package/dist-types/ts3.4/commands/UpdateProductPageCommand.d.ts +51 -0
  97. package/dist-types/ts3.4/commands/UpdateProductRestEndpointPageCommand.d.ts +51 -0
  98. package/dist-types/ts3.4/commands/index.d.ts +26 -0
  99. package/dist-types/ts3.4/index.d.ts +3 -1
  100. package/dist-types/ts3.4/models/enums.d.ts +127 -0
  101. package/dist-types/ts3.4/models/errors.d.ts +40 -0
  102. package/dist-types/ts3.4/models/models_0.d.ts +417 -142
  103. package/dist-types/ts3.4/schemas/schemas_0.d.ts +101 -0
  104. package/package.json +12 -12
  105. package/dist-es/models/index.js +0 -1
  106. package/dist-types/models/index.d.ts +0 -1
  107. package/dist-types/ts3.4/models/index.d.ts +0 -1
@@ -32,6 +32,22 @@ import {
32
32
  CreateModelCommandInput,
33
33
  CreateModelCommandOutput,
34
34
  } from "./commands/CreateModelCommand";
35
+ import {
36
+ CreatePortalCommandInput,
37
+ CreatePortalCommandOutput,
38
+ } from "./commands/CreatePortalCommand";
39
+ import {
40
+ CreatePortalProductCommandInput,
41
+ CreatePortalProductCommandOutput,
42
+ } from "./commands/CreatePortalProductCommand";
43
+ import {
44
+ CreateProductPageCommandInput,
45
+ CreateProductPageCommandOutput,
46
+ } from "./commands/CreateProductPageCommand";
47
+ import {
48
+ CreateProductRestEndpointPageCommandInput,
49
+ CreateProductRestEndpointPageCommandOutput,
50
+ } from "./commands/CreateProductRestEndpointPageCommand";
35
51
  import {
36
52
  CreateRouteCommandInput,
37
53
  CreateRouteCommandOutput,
@@ -92,6 +108,26 @@ import {
92
108
  DeleteModelCommandInput,
93
109
  DeleteModelCommandOutput,
94
110
  } from "./commands/DeleteModelCommand";
111
+ import {
112
+ DeletePortalCommandInput,
113
+ DeletePortalCommandOutput,
114
+ } from "./commands/DeletePortalCommand";
115
+ import {
116
+ DeletePortalProductCommandInput,
117
+ DeletePortalProductCommandOutput,
118
+ } from "./commands/DeletePortalProductCommand";
119
+ import {
120
+ DeletePortalProductSharingPolicyCommandInput,
121
+ DeletePortalProductSharingPolicyCommandOutput,
122
+ } from "./commands/DeletePortalProductSharingPolicyCommand";
123
+ import {
124
+ DeleteProductPageCommandInput,
125
+ DeleteProductPageCommandOutput,
126
+ } from "./commands/DeleteProductPageCommand";
127
+ import {
128
+ DeleteProductRestEndpointPageCommandInput,
129
+ DeleteProductRestEndpointPageCommandOutput,
130
+ } from "./commands/DeleteProductRestEndpointPageCommand";
95
131
  import {
96
132
  DeleteRouteCommandInput,
97
133
  DeleteRouteCommandOutput,
@@ -120,6 +156,10 @@ import {
120
156
  DeleteVpcLinkCommandInput,
121
157
  DeleteVpcLinkCommandOutput,
122
158
  } from "./commands/DeleteVpcLinkCommand";
159
+ import {
160
+ DisablePortalCommandInput,
161
+ DisablePortalCommandOutput,
162
+ } from "./commands/DisablePortalCommand";
123
163
  import {
124
164
  ExportApiCommandInput,
125
165
  ExportApiCommandOutput,
@@ -192,6 +232,26 @@ import {
192
232
  GetModelTemplateCommandInput,
193
233
  GetModelTemplateCommandOutput,
194
234
  } from "./commands/GetModelTemplateCommand";
235
+ import {
236
+ GetPortalCommandInput,
237
+ GetPortalCommandOutput,
238
+ } from "./commands/GetPortalCommand";
239
+ import {
240
+ GetPortalProductCommandInput,
241
+ GetPortalProductCommandOutput,
242
+ } from "./commands/GetPortalProductCommand";
243
+ import {
244
+ GetPortalProductSharingPolicyCommandInput,
245
+ GetPortalProductSharingPolicyCommandOutput,
246
+ } from "./commands/GetPortalProductSharingPolicyCommand";
247
+ import {
248
+ GetProductPageCommandInput,
249
+ GetProductPageCommandOutput,
250
+ } from "./commands/GetProductPageCommand";
251
+ import {
252
+ GetProductRestEndpointPageCommandInput,
253
+ GetProductRestEndpointPageCommandOutput,
254
+ } from "./commands/GetProductRestEndpointPageCommand";
195
255
  import {
196
256
  GetRouteCommandInput,
197
257
  GetRouteCommandOutput,
@@ -236,10 +296,38 @@ import {
236
296
  ImportApiCommandInput,
237
297
  ImportApiCommandOutput,
238
298
  } from "./commands/ImportApiCommand";
299
+ import {
300
+ ListPortalProductsCommandInput,
301
+ ListPortalProductsCommandOutput,
302
+ } from "./commands/ListPortalProductsCommand";
303
+ import {
304
+ ListPortalsCommandInput,
305
+ ListPortalsCommandOutput,
306
+ } from "./commands/ListPortalsCommand";
307
+ import {
308
+ ListProductPagesCommandInput,
309
+ ListProductPagesCommandOutput,
310
+ } from "./commands/ListProductPagesCommand";
311
+ import {
312
+ ListProductRestEndpointPagesCommandInput,
313
+ ListProductRestEndpointPagesCommandOutput,
314
+ } from "./commands/ListProductRestEndpointPagesCommand";
239
315
  import {
240
316
  ListRoutingRulesCommandInput,
241
317
  ListRoutingRulesCommandOutput,
242
318
  } from "./commands/ListRoutingRulesCommand";
319
+ import {
320
+ PreviewPortalCommandInput,
321
+ PreviewPortalCommandOutput,
322
+ } from "./commands/PreviewPortalCommand";
323
+ import {
324
+ PublishPortalCommandInput,
325
+ PublishPortalCommandOutput,
326
+ } from "./commands/PublishPortalCommand";
327
+ import {
328
+ PutPortalProductSharingPolicyCommandInput,
329
+ PutPortalProductSharingPolicyCommandOutput,
330
+ } from "./commands/PutPortalProductSharingPolicyCommand";
243
331
  import {
244
332
  PutRoutingRuleCommandInput,
245
333
  PutRoutingRuleCommandOutput,
@@ -292,6 +380,22 @@ import {
292
380
  UpdateModelCommandInput,
293
381
  UpdateModelCommandOutput,
294
382
  } from "./commands/UpdateModelCommand";
383
+ import {
384
+ UpdatePortalCommandInput,
385
+ UpdatePortalCommandOutput,
386
+ } from "./commands/UpdatePortalCommand";
387
+ import {
388
+ UpdatePortalProductCommandInput,
389
+ UpdatePortalProductCommandOutput,
390
+ } from "./commands/UpdatePortalProductCommand";
391
+ import {
392
+ UpdateProductPageCommandInput,
393
+ UpdateProductPageCommandOutput,
394
+ } from "./commands/UpdateProductPageCommand";
395
+ import {
396
+ UpdateProductRestEndpointPageCommandInput,
397
+ UpdateProductRestEndpointPageCommandOutput,
398
+ } from "./commands/UpdateProductRestEndpointPageCommand";
295
399
  import {
296
400
  UpdateRouteCommandInput,
297
401
  UpdateRouteCommandOutput,
@@ -413,6 +517,58 @@ export interface ApiGatewayV2 {
413
517
  options: __HttpHandlerOptions,
414
518
  cb: (err: any, data?: CreateModelCommandOutput) => void
415
519
  ): void;
520
+ createPortal(
521
+ args: CreatePortalCommandInput,
522
+ options?: __HttpHandlerOptions
523
+ ): Promise<CreatePortalCommandOutput>;
524
+ createPortal(
525
+ args: CreatePortalCommandInput,
526
+ cb: (err: any, data?: CreatePortalCommandOutput) => void
527
+ ): void;
528
+ createPortal(
529
+ args: CreatePortalCommandInput,
530
+ options: __HttpHandlerOptions,
531
+ cb: (err: any, data?: CreatePortalCommandOutput) => void
532
+ ): void;
533
+ createPortalProduct(
534
+ args: CreatePortalProductCommandInput,
535
+ options?: __HttpHandlerOptions
536
+ ): Promise<CreatePortalProductCommandOutput>;
537
+ createPortalProduct(
538
+ args: CreatePortalProductCommandInput,
539
+ cb: (err: any, data?: CreatePortalProductCommandOutput) => void
540
+ ): void;
541
+ createPortalProduct(
542
+ args: CreatePortalProductCommandInput,
543
+ options: __HttpHandlerOptions,
544
+ cb: (err: any, data?: CreatePortalProductCommandOutput) => void
545
+ ): void;
546
+ createProductPage(
547
+ args: CreateProductPageCommandInput,
548
+ options?: __HttpHandlerOptions
549
+ ): Promise<CreateProductPageCommandOutput>;
550
+ createProductPage(
551
+ args: CreateProductPageCommandInput,
552
+ cb: (err: any, data?: CreateProductPageCommandOutput) => void
553
+ ): void;
554
+ createProductPage(
555
+ args: CreateProductPageCommandInput,
556
+ options: __HttpHandlerOptions,
557
+ cb: (err: any, data?: CreateProductPageCommandOutput) => void
558
+ ): void;
559
+ createProductRestEndpointPage(
560
+ args: CreateProductRestEndpointPageCommandInput,
561
+ options?: __HttpHandlerOptions
562
+ ): Promise<CreateProductRestEndpointPageCommandOutput>;
563
+ createProductRestEndpointPage(
564
+ args: CreateProductRestEndpointPageCommandInput,
565
+ cb: (err: any, data?: CreateProductRestEndpointPageCommandOutput) => void
566
+ ): void;
567
+ createProductRestEndpointPage(
568
+ args: CreateProductRestEndpointPageCommandInput,
569
+ options: __HttpHandlerOptions,
570
+ cb: (err: any, data?: CreateProductRestEndpointPageCommandOutput) => void
571
+ ): void;
416
572
  createRoute(
417
573
  args: CreateRouteCommandInput,
418
574
  options?: __HttpHandlerOptions
@@ -608,6 +764,71 @@ export interface ApiGatewayV2 {
608
764
  options: __HttpHandlerOptions,
609
765
  cb: (err: any, data?: DeleteModelCommandOutput) => void
610
766
  ): void;
767
+ deletePortal(
768
+ args: DeletePortalCommandInput,
769
+ options?: __HttpHandlerOptions
770
+ ): Promise<DeletePortalCommandOutput>;
771
+ deletePortal(
772
+ args: DeletePortalCommandInput,
773
+ cb: (err: any, data?: DeletePortalCommandOutput) => void
774
+ ): void;
775
+ deletePortal(
776
+ args: DeletePortalCommandInput,
777
+ options: __HttpHandlerOptions,
778
+ cb: (err: any, data?: DeletePortalCommandOutput) => void
779
+ ): void;
780
+ deletePortalProduct(
781
+ args: DeletePortalProductCommandInput,
782
+ options?: __HttpHandlerOptions
783
+ ): Promise<DeletePortalProductCommandOutput>;
784
+ deletePortalProduct(
785
+ args: DeletePortalProductCommandInput,
786
+ cb: (err: any, data?: DeletePortalProductCommandOutput) => void
787
+ ): void;
788
+ deletePortalProduct(
789
+ args: DeletePortalProductCommandInput,
790
+ options: __HttpHandlerOptions,
791
+ cb: (err: any, data?: DeletePortalProductCommandOutput) => void
792
+ ): void;
793
+ deletePortalProductSharingPolicy(
794
+ args: DeletePortalProductSharingPolicyCommandInput,
795
+ options?: __HttpHandlerOptions
796
+ ): Promise<DeletePortalProductSharingPolicyCommandOutput>;
797
+ deletePortalProductSharingPolicy(
798
+ args: DeletePortalProductSharingPolicyCommandInput,
799
+ cb: (err: any, data?: DeletePortalProductSharingPolicyCommandOutput) => void
800
+ ): void;
801
+ deletePortalProductSharingPolicy(
802
+ args: DeletePortalProductSharingPolicyCommandInput,
803
+ options: __HttpHandlerOptions,
804
+ cb: (err: any, data?: DeletePortalProductSharingPolicyCommandOutput) => void
805
+ ): void;
806
+ deleteProductPage(
807
+ args: DeleteProductPageCommandInput,
808
+ options?: __HttpHandlerOptions
809
+ ): Promise<DeleteProductPageCommandOutput>;
810
+ deleteProductPage(
811
+ args: DeleteProductPageCommandInput,
812
+ cb: (err: any, data?: DeleteProductPageCommandOutput) => void
813
+ ): void;
814
+ deleteProductPage(
815
+ args: DeleteProductPageCommandInput,
816
+ options: __HttpHandlerOptions,
817
+ cb: (err: any, data?: DeleteProductPageCommandOutput) => void
818
+ ): void;
819
+ deleteProductRestEndpointPage(
820
+ args: DeleteProductRestEndpointPageCommandInput,
821
+ options?: __HttpHandlerOptions
822
+ ): Promise<DeleteProductRestEndpointPageCommandOutput>;
823
+ deleteProductRestEndpointPage(
824
+ args: DeleteProductRestEndpointPageCommandInput,
825
+ cb: (err: any, data?: DeleteProductRestEndpointPageCommandOutput) => void
826
+ ): void;
827
+ deleteProductRestEndpointPage(
828
+ args: DeleteProductRestEndpointPageCommandInput,
829
+ options: __HttpHandlerOptions,
830
+ cb: (err: any, data?: DeleteProductRestEndpointPageCommandOutput) => void
831
+ ): void;
611
832
  deleteRoute(
612
833
  args: DeleteRouteCommandInput,
613
834
  options?: __HttpHandlerOptions
@@ -699,6 +920,19 @@ export interface ApiGatewayV2 {
699
920
  options: __HttpHandlerOptions,
700
921
  cb: (err: any, data?: DeleteVpcLinkCommandOutput) => void
701
922
  ): void;
923
+ disablePortal(
924
+ args: DisablePortalCommandInput,
925
+ options?: __HttpHandlerOptions
926
+ ): Promise<DisablePortalCommandOutput>;
927
+ disablePortal(
928
+ args: DisablePortalCommandInput,
929
+ cb: (err: any, data?: DisablePortalCommandOutput) => void
930
+ ): void;
931
+ disablePortal(
932
+ args: DisablePortalCommandInput,
933
+ options: __HttpHandlerOptions,
934
+ cb: (err: any, data?: DisablePortalCommandOutput) => void
935
+ ): void;
702
936
  exportApi(
703
937
  args: ExportApiCommandInput,
704
938
  options?: __HttpHandlerOptions
@@ -935,6 +1169,71 @@ export interface ApiGatewayV2 {
935
1169
  options: __HttpHandlerOptions,
936
1170
  cb: (err: any, data?: GetModelTemplateCommandOutput) => void
937
1171
  ): void;
1172
+ getPortal(
1173
+ args: GetPortalCommandInput,
1174
+ options?: __HttpHandlerOptions
1175
+ ): Promise<GetPortalCommandOutput>;
1176
+ getPortal(
1177
+ args: GetPortalCommandInput,
1178
+ cb: (err: any, data?: GetPortalCommandOutput) => void
1179
+ ): void;
1180
+ getPortal(
1181
+ args: GetPortalCommandInput,
1182
+ options: __HttpHandlerOptions,
1183
+ cb: (err: any, data?: GetPortalCommandOutput) => void
1184
+ ): void;
1185
+ getPortalProduct(
1186
+ args: GetPortalProductCommandInput,
1187
+ options?: __HttpHandlerOptions
1188
+ ): Promise<GetPortalProductCommandOutput>;
1189
+ getPortalProduct(
1190
+ args: GetPortalProductCommandInput,
1191
+ cb: (err: any, data?: GetPortalProductCommandOutput) => void
1192
+ ): void;
1193
+ getPortalProduct(
1194
+ args: GetPortalProductCommandInput,
1195
+ options: __HttpHandlerOptions,
1196
+ cb: (err: any, data?: GetPortalProductCommandOutput) => void
1197
+ ): void;
1198
+ getPortalProductSharingPolicy(
1199
+ args: GetPortalProductSharingPolicyCommandInput,
1200
+ options?: __HttpHandlerOptions
1201
+ ): Promise<GetPortalProductSharingPolicyCommandOutput>;
1202
+ getPortalProductSharingPolicy(
1203
+ args: GetPortalProductSharingPolicyCommandInput,
1204
+ cb: (err: any, data?: GetPortalProductSharingPolicyCommandOutput) => void
1205
+ ): void;
1206
+ getPortalProductSharingPolicy(
1207
+ args: GetPortalProductSharingPolicyCommandInput,
1208
+ options: __HttpHandlerOptions,
1209
+ cb: (err: any, data?: GetPortalProductSharingPolicyCommandOutput) => void
1210
+ ): void;
1211
+ getProductPage(
1212
+ args: GetProductPageCommandInput,
1213
+ options?: __HttpHandlerOptions
1214
+ ): Promise<GetProductPageCommandOutput>;
1215
+ getProductPage(
1216
+ args: GetProductPageCommandInput,
1217
+ cb: (err: any, data?: GetProductPageCommandOutput) => void
1218
+ ): void;
1219
+ getProductPage(
1220
+ args: GetProductPageCommandInput,
1221
+ options: __HttpHandlerOptions,
1222
+ cb: (err: any, data?: GetProductPageCommandOutput) => void
1223
+ ): void;
1224
+ getProductRestEndpointPage(
1225
+ args: GetProductRestEndpointPageCommandInput,
1226
+ options?: __HttpHandlerOptions
1227
+ ): Promise<GetProductRestEndpointPageCommandOutput>;
1228
+ getProductRestEndpointPage(
1229
+ args: GetProductRestEndpointPageCommandInput,
1230
+ cb: (err: any, data?: GetProductRestEndpointPageCommandOutput) => void
1231
+ ): void;
1232
+ getProductRestEndpointPage(
1233
+ args: GetProductRestEndpointPageCommandInput,
1234
+ options: __HttpHandlerOptions,
1235
+ cb: (err: any, data?: GetProductRestEndpointPageCommandOutput) => void
1236
+ ): void;
938
1237
  getRoute(
939
1238
  args: GetRouteCommandInput,
940
1239
  options?: __HttpHandlerOptions
@@ -1079,6 +1378,60 @@ export interface ApiGatewayV2 {
1079
1378
  options: __HttpHandlerOptions,
1080
1379
  cb: (err: any, data?: ImportApiCommandOutput) => void
1081
1380
  ): void;
1381
+ listPortalProducts(): Promise<ListPortalProductsCommandOutput>;
1382
+ listPortalProducts(
1383
+ args: ListPortalProductsCommandInput,
1384
+ options?: __HttpHandlerOptions
1385
+ ): Promise<ListPortalProductsCommandOutput>;
1386
+ listPortalProducts(
1387
+ args: ListPortalProductsCommandInput,
1388
+ cb: (err: any, data?: ListPortalProductsCommandOutput) => void
1389
+ ): void;
1390
+ listPortalProducts(
1391
+ args: ListPortalProductsCommandInput,
1392
+ options: __HttpHandlerOptions,
1393
+ cb: (err: any, data?: ListPortalProductsCommandOutput) => void
1394
+ ): void;
1395
+ listPortals(): Promise<ListPortalsCommandOutput>;
1396
+ listPortals(
1397
+ args: ListPortalsCommandInput,
1398
+ options?: __HttpHandlerOptions
1399
+ ): Promise<ListPortalsCommandOutput>;
1400
+ listPortals(
1401
+ args: ListPortalsCommandInput,
1402
+ cb: (err: any, data?: ListPortalsCommandOutput) => void
1403
+ ): void;
1404
+ listPortals(
1405
+ args: ListPortalsCommandInput,
1406
+ options: __HttpHandlerOptions,
1407
+ cb: (err: any, data?: ListPortalsCommandOutput) => void
1408
+ ): void;
1409
+ listProductPages(
1410
+ args: ListProductPagesCommandInput,
1411
+ options?: __HttpHandlerOptions
1412
+ ): Promise<ListProductPagesCommandOutput>;
1413
+ listProductPages(
1414
+ args: ListProductPagesCommandInput,
1415
+ cb: (err: any, data?: ListProductPagesCommandOutput) => void
1416
+ ): void;
1417
+ listProductPages(
1418
+ args: ListProductPagesCommandInput,
1419
+ options: __HttpHandlerOptions,
1420
+ cb: (err: any, data?: ListProductPagesCommandOutput) => void
1421
+ ): void;
1422
+ listProductRestEndpointPages(
1423
+ args: ListProductRestEndpointPagesCommandInput,
1424
+ options?: __HttpHandlerOptions
1425
+ ): Promise<ListProductRestEndpointPagesCommandOutput>;
1426
+ listProductRestEndpointPages(
1427
+ args: ListProductRestEndpointPagesCommandInput,
1428
+ cb: (err: any, data?: ListProductRestEndpointPagesCommandOutput) => void
1429
+ ): void;
1430
+ listProductRestEndpointPages(
1431
+ args: ListProductRestEndpointPagesCommandInput,
1432
+ options: __HttpHandlerOptions,
1433
+ cb: (err: any, data?: ListProductRestEndpointPagesCommandOutput) => void
1434
+ ): void;
1082
1435
  listRoutingRules(
1083
1436
  args: ListRoutingRulesCommandInput,
1084
1437
  options?: __HttpHandlerOptions
@@ -1092,6 +1445,45 @@ export interface ApiGatewayV2 {
1092
1445
  options: __HttpHandlerOptions,
1093
1446
  cb: (err: any, data?: ListRoutingRulesCommandOutput) => void
1094
1447
  ): void;
1448
+ previewPortal(
1449
+ args: PreviewPortalCommandInput,
1450
+ options?: __HttpHandlerOptions
1451
+ ): Promise<PreviewPortalCommandOutput>;
1452
+ previewPortal(
1453
+ args: PreviewPortalCommandInput,
1454
+ cb: (err: any, data?: PreviewPortalCommandOutput) => void
1455
+ ): void;
1456
+ previewPortal(
1457
+ args: PreviewPortalCommandInput,
1458
+ options: __HttpHandlerOptions,
1459
+ cb: (err: any, data?: PreviewPortalCommandOutput) => void
1460
+ ): void;
1461
+ publishPortal(
1462
+ args: PublishPortalCommandInput,
1463
+ options?: __HttpHandlerOptions
1464
+ ): Promise<PublishPortalCommandOutput>;
1465
+ publishPortal(
1466
+ args: PublishPortalCommandInput,
1467
+ cb: (err: any, data?: PublishPortalCommandOutput) => void
1468
+ ): void;
1469
+ publishPortal(
1470
+ args: PublishPortalCommandInput,
1471
+ options: __HttpHandlerOptions,
1472
+ cb: (err: any, data?: PublishPortalCommandOutput) => void
1473
+ ): void;
1474
+ putPortalProductSharingPolicy(
1475
+ args: PutPortalProductSharingPolicyCommandInput,
1476
+ options?: __HttpHandlerOptions
1477
+ ): Promise<PutPortalProductSharingPolicyCommandOutput>;
1478
+ putPortalProductSharingPolicy(
1479
+ args: PutPortalProductSharingPolicyCommandInput,
1480
+ cb: (err: any, data?: PutPortalProductSharingPolicyCommandOutput) => void
1481
+ ): void;
1482
+ putPortalProductSharingPolicy(
1483
+ args: PutPortalProductSharingPolicyCommandInput,
1484
+ options: __HttpHandlerOptions,
1485
+ cb: (err: any, data?: PutPortalProductSharingPolicyCommandOutput) => void
1486
+ ): void;
1095
1487
  putRoutingRule(
1096
1488
  args: PutRoutingRuleCommandInput,
1097
1489
  options?: __HttpHandlerOptions
@@ -1261,6 +1653,58 @@ export interface ApiGatewayV2 {
1261
1653
  options: __HttpHandlerOptions,
1262
1654
  cb: (err: any, data?: UpdateModelCommandOutput) => void
1263
1655
  ): void;
1656
+ updatePortal(
1657
+ args: UpdatePortalCommandInput,
1658
+ options?: __HttpHandlerOptions
1659
+ ): Promise<UpdatePortalCommandOutput>;
1660
+ updatePortal(
1661
+ args: UpdatePortalCommandInput,
1662
+ cb: (err: any, data?: UpdatePortalCommandOutput) => void
1663
+ ): void;
1664
+ updatePortal(
1665
+ args: UpdatePortalCommandInput,
1666
+ options: __HttpHandlerOptions,
1667
+ cb: (err: any, data?: UpdatePortalCommandOutput) => void
1668
+ ): void;
1669
+ updatePortalProduct(
1670
+ args: UpdatePortalProductCommandInput,
1671
+ options?: __HttpHandlerOptions
1672
+ ): Promise<UpdatePortalProductCommandOutput>;
1673
+ updatePortalProduct(
1674
+ args: UpdatePortalProductCommandInput,
1675
+ cb: (err: any, data?: UpdatePortalProductCommandOutput) => void
1676
+ ): void;
1677
+ updatePortalProduct(
1678
+ args: UpdatePortalProductCommandInput,
1679
+ options: __HttpHandlerOptions,
1680
+ cb: (err: any, data?: UpdatePortalProductCommandOutput) => void
1681
+ ): void;
1682
+ updateProductPage(
1683
+ args: UpdateProductPageCommandInput,
1684
+ options?: __HttpHandlerOptions
1685
+ ): Promise<UpdateProductPageCommandOutput>;
1686
+ updateProductPage(
1687
+ args: UpdateProductPageCommandInput,
1688
+ cb: (err: any, data?: UpdateProductPageCommandOutput) => void
1689
+ ): void;
1690
+ updateProductPage(
1691
+ args: UpdateProductPageCommandInput,
1692
+ options: __HttpHandlerOptions,
1693
+ cb: (err: any, data?: UpdateProductPageCommandOutput) => void
1694
+ ): void;
1695
+ updateProductRestEndpointPage(
1696
+ args: UpdateProductRestEndpointPageCommandInput,
1697
+ options?: __HttpHandlerOptions
1698
+ ): Promise<UpdateProductRestEndpointPageCommandOutput>;
1699
+ updateProductRestEndpointPage(
1700
+ args: UpdateProductRestEndpointPageCommandInput,
1701
+ cb: (err: any, data?: UpdateProductRestEndpointPageCommandOutput) => void
1702
+ ): void;
1703
+ updateProductRestEndpointPage(
1704
+ args: UpdateProductRestEndpointPageCommandInput,
1705
+ options: __HttpHandlerOptions,
1706
+ cb: (err: any, data?: UpdateProductRestEndpointPageCommandOutput) => void
1707
+ ): void;
1264
1708
  updateRoute(
1265
1709
  args: UpdateRouteCommandInput,
1266
1710
  options?: __HttpHandlerOptions