@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
@@ -8,6 +8,10 @@ import { CreateDomainNameCommand, } from "./commands/CreateDomainNameCommand";
8
8
  import { CreateIntegrationCommand, } from "./commands/CreateIntegrationCommand";
9
9
  import { CreateIntegrationResponseCommand, } from "./commands/CreateIntegrationResponseCommand";
10
10
  import { CreateModelCommand } from "./commands/CreateModelCommand";
11
+ import { CreatePortalCommand, } from "./commands/CreatePortalCommand";
12
+ import { CreatePortalProductCommand, } from "./commands/CreatePortalProductCommand";
13
+ import { CreateProductPageCommand, } from "./commands/CreateProductPageCommand";
14
+ import { CreateProductRestEndpointPageCommand, } from "./commands/CreateProductRestEndpointPageCommand";
11
15
  import { CreateRouteCommand } from "./commands/CreateRouteCommand";
12
16
  import { CreateRouteResponseCommand, } from "./commands/CreateRouteResponseCommand";
13
17
  import { CreateRoutingRuleCommand, } from "./commands/CreateRoutingRuleCommand";
@@ -23,6 +27,11 @@ import { DeleteDomainNameCommand, } from "./commands/DeleteDomainNameCommand";
23
27
  import { DeleteIntegrationCommand, } from "./commands/DeleteIntegrationCommand";
24
28
  import { DeleteIntegrationResponseCommand, } from "./commands/DeleteIntegrationResponseCommand";
25
29
  import { DeleteModelCommand } from "./commands/DeleteModelCommand";
30
+ import { DeletePortalCommand, } from "./commands/DeletePortalCommand";
31
+ import { DeletePortalProductCommand, } from "./commands/DeletePortalProductCommand";
32
+ import { DeletePortalProductSharingPolicyCommand, } from "./commands/DeletePortalProductSharingPolicyCommand";
33
+ import { DeleteProductPageCommand, } from "./commands/DeleteProductPageCommand";
34
+ import { DeleteProductRestEndpointPageCommand, } from "./commands/DeleteProductRestEndpointPageCommand";
26
35
  import { DeleteRouteCommand } from "./commands/DeleteRouteCommand";
27
36
  import { DeleteRouteRequestParameterCommand, } from "./commands/DeleteRouteRequestParameterCommand";
28
37
  import { DeleteRouteResponseCommand, } from "./commands/DeleteRouteResponseCommand";
@@ -30,6 +39,7 @@ import { DeleteRouteSettingsCommand, } from "./commands/DeleteRouteSettingsComma
30
39
  import { DeleteRoutingRuleCommand, } from "./commands/DeleteRoutingRuleCommand";
31
40
  import { DeleteStageCommand } from "./commands/DeleteStageCommand";
32
41
  import { DeleteVpcLinkCommand, } from "./commands/DeleteVpcLinkCommand";
42
+ import { DisablePortalCommand, } from "./commands/DisablePortalCommand";
33
43
  import { ExportApiCommand } from "./commands/ExportApiCommand";
34
44
  import { GetApiCommand } from "./commands/GetApiCommand";
35
45
  import { GetApiMappingCommand, } from "./commands/GetApiMappingCommand";
@@ -48,6 +58,11 @@ import { GetIntegrationsCommand, } from "./commands/GetIntegrationsCommand";
48
58
  import { GetModelCommand } from "./commands/GetModelCommand";
49
59
  import { GetModelsCommand } from "./commands/GetModelsCommand";
50
60
  import { GetModelTemplateCommand, } from "./commands/GetModelTemplateCommand";
61
+ import { GetPortalCommand } from "./commands/GetPortalCommand";
62
+ import { GetPortalProductCommand, } from "./commands/GetPortalProductCommand";
63
+ import { GetPortalProductSharingPolicyCommand, } from "./commands/GetPortalProductSharingPolicyCommand";
64
+ import { GetProductPageCommand, } from "./commands/GetProductPageCommand";
65
+ import { GetProductRestEndpointPageCommand, } from "./commands/GetProductRestEndpointPageCommand";
51
66
  import { GetRouteCommand } from "./commands/GetRouteCommand";
52
67
  import { GetRouteResponseCommand, } from "./commands/GetRouteResponseCommand";
53
68
  import { GetRouteResponsesCommand, } from "./commands/GetRouteResponsesCommand";
@@ -59,7 +74,14 @@ import { GetTagsCommand } from "./commands/GetTagsCommand";
59
74
  import { GetVpcLinkCommand } from "./commands/GetVpcLinkCommand";
60
75
  import { GetVpcLinksCommand } from "./commands/GetVpcLinksCommand";
61
76
  import { ImportApiCommand } from "./commands/ImportApiCommand";
77
+ import { ListPortalProductsCommand, } from "./commands/ListPortalProductsCommand";
78
+ import { ListPortalsCommand } from "./commands/ListPortalsCommand";
79
+ import { ListProductPagesCommand, } from "./commands/ListProductPagesCommand";
80
+ import { ListProductRestEndpointPagesCommand, } from "./commands/ListProductRestEndpointPagesCommand";
62
81
  import { ListRoutingRulesCommand, } from "./commands/ListRoutingRulesCommand";
82
+ import { PreviewPortalCommand, } from "./commands/PreviewPortalCommand";
83
+ import { PublishPortalCommand, } from "./commands/PublishPortalCommand";
84
+ import { PutPortalProductSharingPolicyCommand, } from "./commands/PutPortalProductSharingPolicyCommand";
63
85
  import { PutRoutingRuleCommand, } from "./commands/PutRoutingRuleCommand";
64
86
  import { ReimportApiCommand } from "./commands/ReimportApiCommand";
65
87
  import { ResetAuthorizersCacheCommand, } from "./commands/ResetAuthorizersCacheCommand";
@@ -73,6 +95,10 @@ import { UpdateDomainNameCommand, } from "./commands/UpdateDomainNameCommand";
73
95
  import { UpdateIntegrationCommand, } from "./commands/UpdateIntegrationCommand";
74
96
  import { UpdateIntegrationResponseCommand, } from "./commands/UpdateIntegrationResponseCommand";
75
97
  import { UpdateModelCommand } from "./commands/UpdateModelCommand";
98
+ import { UpdatePortalCommand, } from "./commands/UpdatePortalCommand";
99
+ import { UpdatePortalProductCommand, } from "./commands/UpdatePortalProductCommand";
100
+ import { UpdateProductPageCommand, } from "./commands/UpdateProductPageCommand";
101
+ import { UpdateProductRestEndpointPageCommand, } from "./commands/UpdateProductRestEndpointPageCommand";
76
102
  import { UpdateRouteCommand } from "./commands/UpdateRouteCommand";
77
103
  import { UpdateRouteResponseCommand, } from "./commands/UpdateRouteResponseCommand";
78
104
  import { UpdateStageCommand } from "./commands/UpdateStageCommand";
@@ -86,6 +112,10 @@ const commands = {
86
112
  CreateIntegrationCommand,
87
113
  CreateIntegrationResponseCommand,
88
114
  CreateModelCommand,
115
+ CreatePortalCommand,
116
+ CreatePortalProductCommand,
117
+ CreateProductPageCommand,
118
+ CreateProductRestEndpointPageCommand,
89
119
  CreateRouteCommand,
90
120
  CreateRouteResponseCommand,
91
121
  CreateRoutingRuleCommand,
@@ -101,6 +131,11 @@ const commands = {
101
131
  DeleteIntegrationCommand,
102
132
  DeleteIntegrationResponseCommand,
103
133
  DeleteModelCommand,
134
+ DeletePortalCommand,
135
+ DeletePortalProductCommand,
136
+ DeletePortalProductSharingPolicyCommand,
137
+ DeleteProductPageCommand,
138
+ DeleteProductRestEndpointPageCommand,
104
139
  DeleteRouteCommand,
105
140
  DeleteRouteRequestParameterCommand,
106
141
  DeleteRouteResponseCommand,
@@ -108,6 +143,7 @@ const commands = {
108
143
  DeleteRoutingRuleCommand,
109
144
  DeleteStageCommand,
110
145
  DeleteVpcLinkCommand,
146
+ DisablePortalCommand,
111
147
  ExportApiCommand,
112
148
  GetApiCommand,
113
149
  GetApiMappingCommand,
@@ -126,6 +162,11 @@ const commands = {
126
162
  GetModelCommand,
127
163
  GetModelsCommand,
128
164
  GetModelTemplateCommand,
165
+ GetPortalCommand,
166
+ GetPortalProductCommand,
167
+ GetPortalProductSharingPolicyCommand,
168
+ GetProductPageCommand,
169
+ GetProductRestEndpointPageCommand,
129
170
  GetRouteCommand,
130
171
  GetRouteResponseCommand,
131
172
  GetRouteResponsesCommand,
@@ -137,7 +178,14 @@ const commands = {
137
178
  GetVpcLinkCommand,
138
179
  GetVpcLinksCommand,
139
180
  ImportApiCommand,
181
+ ListPortalProductsCommand,
182
+ ListPortalsCommand,
183
+ ListProductPagesCommand,
184
+ ListProductRestEndpointPagesCommand,
140
185
  ListRoutingRulesCommand,
186
+ PreviewPortalCommand,
187
+ PublishPortalCommand,
188
+ PutPortalProductSharingPolicyCommand,
141
189
  PutRoutingRuleCommand,
142
190
  ReimportApiCommand,
143
191
  ResetAuthorizersCacheCommand,
@@ -151,6 +199,10 @@ const commands = {
151
199
  UpdateIntegrationCommand,
152
200
  UpdateIntegrationResponseCommand,
153
201
  UpdateModelCommand,
202
+ UpdatePortalCommand,
203
+ UpdatePortalProductCommand,
204
+ UpdateProductPageCommand,
205
+ UpdateProductRestEndpointPageCommand,
154
206
  UpdateRouteCommand,
155
207
  UpdateRouteResponseCommand,
156
208
  UpdateStageCommand,
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { CreatePortal } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class CreatePortalCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "CreatePortal", {})
13
+ .n("ApiGatewayV2Client", "CreatePortalCommand")
14
+ .sc(CreatePortal)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { CreatePortalProduct } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class CreatePortalProductCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "CreatePortalProduct", {})
13
+ .n("ApiGatewayV2Client", "CreatePortalProductCommand")
14
+ .sc(CreatePortalProduct)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { CreateProductPage } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class CreateProductPageCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "CreateProductPage", {})
13
+ .n("ApiGatewayV2Client", "CreateProductPageCommand")
14
+ .sc(CreateProductPage)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { CreateProductRestEndpointPage } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class CreateProductRestEndpointPageCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "CreateProductRestEndpointPage", {})
13
+ .n("ApiGatewayV2Client", "CreateProductRestEndpointPageCommand")
14
+ .sc(CreateProductRestEndpointPage)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DeletePortal } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DeletePortalCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "DeletePortal", {})
13
+ .n("ApiGatewayV2Client", "DeletePortalCommand")
14
+ .sc(DeletePortal)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DeletePortalProduct } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DeletePortalProductCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "DeletePortalProduct", {})
13
+ .n("ApiGatewayV2Client", "DeletePortalProductCommand")
14
+ .sc(DeletePortalProduct)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DeletePortalProductSharingPolicy } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DeletePortalProductSharingPolicyCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "DeletePortalProductSharingPolicy", {})
13
+ .n("ApiGatewayV2Client", "DeletePortalProductSharingPolicyCommand")
14
+ .sc(DeletePortalProductSharingPolicy)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DeleteProductPage } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DeleteProductPageCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "DeleteProductPage", {})
13
+ .n("ApiGatewayV2Client", "DeleteProductPageCommand")
14
+ .sc(DeleteProductPage)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DeleteProductRestEndpointPage } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DeleteProductRestEndpointPageCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "DeleteProductRestEndpointPage", {})
13
+ .n("ApiGatewayV2Client", "DeleteProductRestEndpointPageCommand")
14
+ .sc(DeleteProductRestEndpointPage)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DisablePortal } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DisablePortalCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "DisablePortal", {})
13
+ .n("ApiGatewayV2Client", "DisablePortalCommand")
14
+ .sc(DisablePortal)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetPortal } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetPortalCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "GetPortal", {})
13
+ .n("ApiGatewayV2Client", "GetPortalCommand")
14
+ .sc(GetPortal)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetPortalProduct } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetPortalProductCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "GetPortalProduct", {})
13
+ .n("ApiGatewayV2Client", "GetPortalProductCommand")
14
+ .sc(GetPortalProduct)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetPortalProductSharingPolicy } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetPortalProductSharingPolicyCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "GetPortalProductSharingPolicy", {})
13
+ .n("ApiGatewayV2Client", "GetPortalProductSharingPolicyCommand")
14
+ .sc(GetPortalProductSharingPolicy)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetProductPage } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetProductPageCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "GetProductPage", {})
13
+ .n("ApiGatewayV2Client", "GetProductPageCommand")
14
+ .sc(GetProductPage)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetProductRestEndpointPage } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetProductRestEndpointPageCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "GetProductRestEndpointPage", {})
13
+ .n("ApiGatewayV2Client", "GetProductRestEndpointPageCommand")
14
+ .sc(GetProductRestEndpointPage)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListPortalProducts } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListPortalProductsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "ListPortalProducts", {})
13
+ .n("ApiGatewayV2Client", "ListPortalProductsCommand")
14
+ .sc(ListPortalProducts)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListPortals } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListPortalsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "ListPortals", {})
13
+ .n("ApiGatewayV2Client", "ListPortalsCommand")
14
+ .sc(ListPortals)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListProductPages } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListProductPagesCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "ListProductPages", {})
13
+ .n("ApiGatewayV2Client", "ListProductPagesCommand")
14
+ .sc(ListProductPages)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListProductRestEndpointPages } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListProductRestEndpointPagesCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "ListProductRestEndpointPages", {})
13
+ .n("ApiGatewayV2Client", "ListProductRestEndpointPagesCommand")
14
+ .sc(ListProductRestEndpointPages)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { PreviewPortal } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class PreviewPortalCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "PreviewPortal", {})
13
+ .n("ApiGatewayV2Client", "PreviewPortalCommand")
14
+ .sc(PreviewPortal)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { PublishPortal } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class PublishPortalCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "PublishPortal", {})
13
+ .n("ApiGatewayV2Client", "PublishPortalCommand")
14
+ .sc(PublishPortal)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { PutPortalProductSharingPolicy } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class PutPortalProductSharingPolicyCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "PutPortalProductSharingPolicy", {})
13
+ .n("ApiGatewayV2Client", "PutPortalProductSharingPolicyCommand")
14
+ .sc(PutPortalProductSharingPolicy)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { UpdatePortal } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class UpdatePortalCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "UpdatePortal", {})
13
+ .n("ApiGatewayV2Client", "UpdatePortalCommand")
14
+ .sc(UpdatePortal)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { UpdatePortalProduct } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class UpdatePortalProductCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "UpdatePortalProduct", {})
13
+ .n("ApiGatewayV2Client", "UpdatePortalProductCommand")
14
+ .sc(UpdatePortalProduct)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { UpdateProductPage } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class UpdateProductPageCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "UpdateProductPage", {})
13
+ .n("ApiGatewayV2Client", "UpdateProductPageCommand")
14
+ .sc(UpdateProductPage)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { UpdateProductRestEndpointPage } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class UpdateProductRestEndpointPageCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("ApiGatewayV2", "UpdateProductRestEndpointPage", {})
13
+ .n("ApiGatewayV2Client", "UpdateProductRestEndpointPageCommand")
14
+ .sc(UpdateProductRestEndpointPage)
15
+ .build() {
16
+ }