@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
package/README.md CHANGED
@@ -23,16 +23,16 @@ using your favorite package manager:
23
23
 
24
24
  The AWS SDK is modulized by clients and commands.
25
25
  To send a request, you only need to import the `ApiGatewayV2Client` and
26
- the commands you need, for example `ListRoutingRulesCommand`:
26
+ the commands you need, for example `ListPortalsCommand`:
27
27
 
28
28
  ```js
29
29
  // ES5 example
30
- const { ApiGatewayV2Client, ListRoutingRulesCommand } = require("@aws-sdk/client-apigatewayv2");
30
+ const { ApiGatewayV2Client, ListPortalsCommand } = require("@aws-sdk/client-apigatewayv2");
31
31
  ```
32
32
 
33
33
  ```ts
34
34
  // ES6+ example
35
- import { ApiGatewayV2Client, ListRoutingRulesCommand } from "@aws-sdk/client-apigatewayv2";
35
+ import { ApiGatewayV2Client, ListPortalsCommand } from "@aws-sdk/client-apigatewayv2";
36
36
  ```
37
37
 
38
38
  ### Usage
@@ -51,7 +51,7 @@ const client = new ApiGatewayV2Client({ region: "REGION" });
51
51
  const params = {
52
52
  /** input parameters */
53
53
  };
54
- const command = new ListRoutingRulesCommand(params);
54
+ const command = new ListPortalsCommand(params);
55
55
  ```
56
56
 
57
57
  #### Async/await
@@ -130,7 +130,7 @@ const client = new AWS.ApiGatewayV2({ region: "REGION" });
130
130
 
131
131
  // async/await.
132
132
  try {
133
- const data = await client.listRoutingRules(params);
133
+ const data = await client.listPortals(params);
134
134
  // process data.
135
135
  } catch (error) {
136
136
  // error handling.
@@ -138,7 +138,7 @@ try {
138
138
 
139
139
  // Promises.
140
140
  client
141
- .listRoutingRules(params)
141
+ .listPortals(params)
142
142
  .then((data) => {
143
143
  // process data.
144
144
  })
@@ -147,7 +147,7 @@ client
147
147
  });
148
148
 
149
149
  // callbacks.
150
- client.listRoutingRules(params, (err, data) => {
150
+ client.listPortals(params, (err, data) => {
151
151
  // process err and data.
152
152
  });
153
153
  ```
@@ -266,6 +266,38 @@ CreateModel
266
266
 
267
267
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/CreateModelCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/CreateModelCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/CreateModelCommandOutput/)
268
268
 
269
+ </details>
270
+ <details>
271
+ <summary>
272
+ CreatePortal
273
+ </summary>
274
+
275
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/CreatePortalCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/CreatePortalCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/CreatePortalCommandOutput/)
276
+
277
+ </details>
278
+ <details>
279
+ <summary>
280
+ CreatePortalProduct
281
+ </summary>
282
+
283
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/CreatePortalProductCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/CreatePortalProductCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/CreatePortalProductCommandOutput/)
284
+
285
+ </details>
286
+ <details>
287
+ <summary>
288
+ CreateProductPage
289
+ </summary>
290
+
291
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/CreateProductPageCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/CreateProductPageCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/CreateProductPageCommandOutput/)
292
+
293
+ </details>
294
+ <details>
295
+ <summary>
296
+ CreateProductRestEndpointPage
297
+ </summary>
298
+
299
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/CreateProductRestEndpointPageCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/CreateProductRestEndpointPageCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/CreateProductRestEndpointPageCommandOutput/)
300
+
269
301
  </details>
270
302
  <details>
271
303
  <summary>
@@ -386,6 +418,46 @@ DeleteModel
386
418
 
387
419
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/DeleteModelCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/DeleteModelCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/DeleteModelCommandOutput/)
388
420
 
421
+ </details>
422
+ <details>
423
+ <summary>
424
+ DeletePortal
425
+ </summary>
426
+
427
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/DeletePortalCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/DeletePortalCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/DeletePortalCommandOutput/)
428
+
429
+ </details>
430
+ <details>
431
+ <summary>
432
+ DeletePortalProduct
433
+ </summary>
434
+
435
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/DeletePortalProductCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/DeletePortalProductCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/DeletePortalProductCommandOutput/)
436
+
437
+ </details>
438
+ <details>
439
+ <summary>
440
+ DeletePortalProductSharingPolicy
441
+ </summary>
442
+
443
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/DeletePortalProductSharingPolicyCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/DeletePortalProductSharingPolicyCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/DeletePortalProductSharingPolicyCommandOutput/)
444
+
445
+ </details>
446
+ <details>
447
+ <summary>
448
+ DeleteProductPage
449
+ </summary>
450
+
451
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/DeleteProductPageCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/DeleteProductPageCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/DeleteProductPageCommandOutput/)
452
+
453
+ </details>
454
+ <details>
455
+ <summary>
456
+ DeleteProductRestEndpointPage
457
+ </summary>
458
+
459
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/DeleteProductRestEndpointPageCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/DeleteProductRestEndpointPageCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/DeleteProductRestEndpointPageCommandOutput/)
460
+
389
461
  </details>
390
462
  <details>
391
463
  <summary>
@@ -442,6 +514,14 @@ DeleteVpcLink
442
514
 
443
515
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/DeleteVpcLinkCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/DeleteVpcLinkCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/DeleteVpcLinkCommandOutput/)
444
516
 
517
+ </details>
518
+ <details>
519
+ <summary>
520
+ DisablePortal
521
+ </summary>
522
+
523
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/DisablePortalCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/DisablePortalCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/DisablePortalCommandOutput/)
524
+
445
525
  </details>
446
526
  <details>
447
527
  <summary>
@@ -586,6 +666,46 @@ GetModelTemplate
586
666
 
587
667
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/GetModelTemplateCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/GetModelTemplateCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/GetModelTemplateCommandOutput/)
588
668
 
669
+ </details>
670
+ <details>
671
+ <summary>
672
+ GetPortal
673
+ </summary>
674
+
675
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/GetPortalCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/GetPortalCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/GetPortalCommandOutput/)
676
+
677
+ </details>
678
+ <details>
679
+ <summary>
680
+ GetPortalProduct
681
+ </summary>
682
+
683
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/GetPortalProductCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/GetPortalProductCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/GetPortalProductCommandOutput/)
684
+
685
+ </details>
686
+ <details>
687
+ <summary>
688
+ GetPortalProductSharingPolicy
689
+ </summary>
690
+
691
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/GetPortalProductSharingPolicyCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/GetPortalProductSharingPolicyCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/GetPortalProductSharingPolicyCommandOutput/)
692
+
693
+ </details>
694
+ <details>
695
+ <summary>
696
+ GetProductPage
697
+ </summary>
698
+
699
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/GetProductPageCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/GetProductPageCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/GetProductPageCommandOutput/)
700
+
701
+ </details>
702
+ <details>
703
+ <summary>
704
+ GetProductRestEndpointPage
705
+ </summary>
706
+
707
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/GetProductRestEndpointPageCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/GetProductRestEndpointPageCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/GetProductRestEndpointPageCommandOutput/)
708
+
589
709
  </details>
590
710
  <details>
591
711
  <summary>
@@ -674,6 +794,38 @@ ImportApi
674
794
 
675
795
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/ImportApiCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/ImportApiCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/ImportApiCommandOutput/)
676
796
 
797
+ </details>
798
+ <details>
799
+ <summary>
800
+ ListPortalProducts
801
+ </summary>
802
+
803
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/ListPortalProductsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/ListPortalProductsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/ListPortalProductsCommandOutput/)
804
+
805
+ </details>
806
+ <details>
807
+ <summary>
808
+ ListPortals
809
+ </summary>
810
+
811
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/ListPortalsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/ListPortalsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/ListPortalsCommandOutput/)
812
+
813
+ </details>
814
+ <details>
815
+ <summary>
816
+ ListProductPages
817
+ </summary>
818
+
819
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/ListProductPagesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/ListProductPagesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/ListProductPagesCommandOutput/)
820
+
821
+ </details>
822
+ <details>
823
+ <summary>
824
+ ListProductRestEndpointPages
825
+ </summary>
826
+
827
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/ListProductRestEndpointPagesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/ListProductRestEndpointPagesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/ListProductRestEndpointPagesCommandOutput/)
828
+
677
829
  </details>
678
830
  <details>
679
831
  <summary>
@@ -682,6 +834,30 @@ ListRoutingRules
682
834
 
683
835
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/ListRoutingRulesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/ListRoutingRulesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/ListRoutingRulesCommandOutput/)
684
836
 
837
+ </details>
838
+ <details>
839
+ <summary>
840
+ PreviewPortal
841
+ </summary>
842
+
843
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/PreviewPortalCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/PreviewPortalCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/PreviewPortalCommandOutput/)
844
+
845
+ </details>
846
+ <details>
847
+ <summary>
848
+ PublishPortal
849
+ </summary>
850
+
851
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/PublishPortalCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/PublishPortalCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/PublishPortalCommandOutput/)
852
+
853
+ </details>
854
+ <details>
855
+ <summary>
856
+ PutPortalProductSharingPolicy
857
+ </summary>
858
+
859
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/PutPortalProductSharingPolicyCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/PutPortalProductSharingPolicyCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/PutPortalProductSharingPolicyCommandOutput/)
860
+
685
861
  </details>
686
862
  <details>
687
863
  <summary>
@@ -786,6 +962,38 @@ UpdateModel
786
962
 
787
963
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/UpdateModelCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/UpdateModelCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/UpdateModelCommandOutput/)
788
964
 
965
+ </details>
966
+ <details>
967
+ <summary>
968
+ UpdatePortal
969
+ </summary>
970
+
971
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/UpdatePortalCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/UpdatePortalCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/UpdatePortalCommandOutput/)
972
+
973
+ </details>
974
+ <details>
975
+ <summary>
976
+ UpdatePortalProduct
977
+ </summary>
978
+
979
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/UpdatePortalProductCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/UpdatePortalProductCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/UpdatePortalProductCommandOutput/)
980
+
981
+ </details>
982
+ <details>
983
+ <summary>
984
+ UpdateProductPage
985
+ </summary>
986
+
987
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/UpdateProductPageCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/UpdateProductPageCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/UpdateProductPageCommandOutput/)
988
+
989
+ </details>
990
+ <details>
991
+ <summary>
992
+ UpdateProductRestEndpointPage
993
+ </summary>
994
+
995
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/apigatewayv2/command/UpdateProductRestEndpointPageCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/UpdateProductRestEndpointPageCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-apigatewayv2/Interface/UpdateProductRestEndpointPageCommandOutput/)
996
+
789
997
  </details>
790
998
  <details>
791
999
  <summary>