@effect-aws/client-api-gateway-v2 1.10.3 → 1.10.7
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.
- package/dist/cjs/ApiGatewayV2Service.d.ts +125 -1
- package/dist/cjs/ApiGatewayV2Service.d.ts.map +1 -1
- package/dist/cjs/ApiGatewayV2Service.js +31 -0
- package/dist/cjs/ApiGatewayV2Service.js.map +1 -1
- package/dist/dts/ApiGatewayV2Service.d.ts +125 -1
- package/dist/dts/ApiGatewayV2Service.d.ts.map +1 -1
- package/dist/esm/ApiGatewayV2Service.js +32 -1
- package/dist/esm/ApiGatewayV2Service.js.map +1 -1
- package/package.json +1 -1
- package/src/ApiGatewayV2Service.ts +489 -0
|
@@ -28,12 +28,27 @@ import {
|
|
|
28
28
|
CreateModelCommand,
|
|
29
29
|
type CreateModelCommandInput,
|
|
30
30
|
type CreateModelCommandOutput,
|
|
31
|
+
CreatePortalCommand,
|
|
32
|
+
type CreatePortalCommandInput,
|
|
33
|
+
type CreatePortalCommandOutput,
|
|
34
|
+
CreatePortalProductCommand,
|
|
35
|
+
type CreatePortalProductCommandInput,
|
|
36
|
+
type CreatePortalProductCommandOutput,
|
|
37
|
+
CreateProductPageCommand,
|
|
38
|
+
type CreateProductPageCommandInput,
|
|
39
|
+
type CreateProductPageCommandOutput,
|
|
40
|
+
CreateProductRestEndpointPageCommand,
|
|
41
|
+
type CreateProductRestEndpointPageCommandInput,
|
|
42
|
+
type CreateProductRestEndpointPageCommandOutput,
|
|
31
43
|
CreateRouteCommand,
|
|
32
44
|
type CreateRouteCommandInput,
|
|
33
45
|
type CreateRouteCommandOutput,
|
|
34
46
|
CreateRouteResponseCommand,
|
|
35
47
|
type CreateRouteResponseCommandInput,
|
|
36
48
|
type CreateRouteResponseCommandOutput,
|
|
49
|
+
CreateRoutingRuleCommand,
|
|
50
|
+
type CreateRoutingRuleCommandInput,
|
|
51
|
+
type CreateRoutingRuleCommandOutput,
|
|
37
52
|
CreateStageCommand,
|
|
38
53
|
type CreateStageCommandInput,
|
|
39
54
|
type CreateStageCommandOutput,
|
|
@@ -70,6 +85,21 @@ import {
|
|
|
70
85
|
DeleteModelCommand,
|
|
71
86
|
type DeleteModelCommandInput,
|
|
72
87
|
type DeleteModelCommandOutput,
|
|
88
|
+
DeletePortalCommand,
|
|
89
|
+
type DeletePortalCommandInput,
|
|
90
|
+
type DeletePortalCommandOutput,
|
|
91
|
+
DeletePortalProductCommand,
|
|
92
|
+
type DeletePortalProductCommandInput,
|
|
93
|
+
type DeletePortalProductCommandOutput,
|
|
94
|
+
DeletePortalProductSharingPolicyCommand,
|
|
95
|
+
type DeletePortalProductSharingPolicyCommandInput,
|
|
96
|
+
type DeletePortalProductSharingPolicyCommandOutput,
|
|
97
|
+
DeleteProductPageCommand,
|
|
98
|
+
type DeleteProductPageCommandInput,
|
|
99
|
+
type DeleteProductPageCommandOutput,
|
|
100
|
+
DeleteProductRestEndpointPageCommand,
|
|
101
|
+
type DeleteProductRestEndpointPageCommandInput,
|
|
102
|
+
type DeleteProductRestEndpointPageCommandOutput,
|
|
73
103
|
DeleteRouteCommand,
|
|
74
104
|
type DeleteRouteCommandInput,
|
|
75
105
|
type DeleteRouteCommandOutput,
|
|
@@ -82,12 +112,18 @@ import {
|
|
|
82
112
|
DeleteRouteSettingsCommand,
|
|
83
113
|
type DeleteRouteSettingsCommandInput,
|
|
84
114
|
type DeleteRouteSettingsCommandOutput,
|
|
115
|
+
DeleteRoutingRuleCommand,
|
|
116
|
+
type DeleteRoutingRuleCommandInput,
|
|
117
|
+
type DeleteRoutingRuleCommandOutput,
|
|
85
118
|
DeleteStageCommand,
|
|
86
119
|
type DeleteStageCommandInput,
|
|
87
120
|
type DeleteStageCommandOutput,
|
|
88
121
|
DeleteVpcLinkCommand,
|
|
89
122
|
type DeleteVpcLinkCommandInput,
|
|
90
123
|
type DeleteVpcLinkCommandOutput,
|
|
124
|
+
DisablePortalCommand,
|
|
125
|
+
type DisablePortalCommandInput,
|
|
126
|
+
type DisablePortalCommandOutput,
|
|
91
127
|
ExportApiCommand,
|
|
92
128
|
type ExportApiCommandInput,
|
|
93
129
|
type ExportApiCommandOutput,
|
|
@@ -142,6 +178,21 @@ import {
|
|
|
142
178
|
GetModelTemplateCommand,
|
|
143
179
|
type GetModelTemplateCommandInput,
|
|
144
180
|
type GetModelTemplateCommandOutput,
|
|
181
|
+
GetPortalCommand,
|
|
182
|
+
type GetPortalCommandInput,
|
|
183
|
+
type GetPortalCommandOutput,
|
|
184
|
+
GetPortalProductCommand,
|
|
185
|
+
type GetPortalProductCommandInput,
|
|
186
|
+
type GetPortalProductCommandOutput,
|
|
187
|
+
GetPortalProductSharingPolicyCommand,
|
|
188
|
+
type GetPortalProductSharingPolicyCommandInput,
|
|
189
|
+
type GetPortalProductSharingPolicyCommandOutput,
|
|
190
|
+
GetProductPageCommand,
|
|
191
|
+
type GetProductPageCommandInput,
|
|
192
|
+
type GetProductPageCommandOutput,
|
|
193
|
+
GetProductRestEndpointPageCommand,
|
|
194
|
+
type GetProductRestEndpointPageCommandInput,
|
|
195
|
+
type GetProductRestEndpointPageCommandOutput,
|
|
145
196
|
GetRouteCommand,
|
|
146
197
|
type GetRouteCommandInput,
|
|
147
198
|
type GetRouteCommandOutput,
|
|
@@ -154,6 +205,9 @@ import {
|
|
|
154
205
|
GetRoutesCommand,
|
|
155
206
|
type GetRoutesCommandInput,
|
|
156
207
|
type GetRoutesCommandOutput,
|
|
208
|
+
GetRoutingRuleCommand,
|
|
209
|
+
type GetRoutingRuleCommandInput,
|
|
210
|
+
type GetRoutingRuleCommandOutput,
|
|
157
211
|
GetStageCommand,
|
|
158
212
|
type GetStageCommandInput,
|
|
159
213
|
type GetStageCommandOutput,
|
|
@@ -172,6 +226,33 @@ import {
|
|
|
172
226
|
ImportApiCommand,
|
|
173
227
|
type ImportApiCommandInput,
|
|
174
228
|
type ImportApiCommandOutput,
|
|
229
|
+
ListPortalProductsCommand,
|
|
230
|
+
type ListPortalProductsCommandInput,
|
|
231
|
+
type ListPortalProductsCommandOutput,
|
|
232
|
+
ListPortalsCommand,
|
|
233
|
+
type ListPortalsCommandInput,
|
|
234
|
+
type ListPortalsCommandOutput,
|
|
235
|
+
ListProductPagesCommand,
|
|
236
|
+
type ListProductPagesCommandInput,
|
|
237
|
+
type ListProductPagesCommandOutput,
|
|
238
|
+
ListProductRestEndpointPagesCommand,
|
|
239
|
+
type ListProductRestEndpointPagesCommandInput,
|
|
240
|
+
type ListProductRestEndpointPagesCommandOutput,
|
|
241
|
+
ListRoutingRulesCommand,
|
|
242
|
+
type ListRoutingRulesCommandInput,
|
|
243
|
+
type ListRoutingRulesCommandOutput,
|
|
244
|
+
PreviewPortalCommand,
|
|
245
|
+
type PreviewPortalCommandInput,
|
|
246
|
+
type PreviewPortalCommandOutput,
|
|
247
|
+
PublishPortalCommand,
|
|
248
|
+
type PublishPortalCommandInput,
|
|
249
|
+
type PublishPortalCommandOutput,
|
|
250
|
+
PutPortalProductSharingPolicyCommand,
|
|
251
|
+
type PutPortalProductSharingPolicyCommandInput,
|
|
252
|
+
type PutPortalProductSharingPolicyCommandOutput,
|
|
253
|
+
PutRoutingRuleCommand,
|
|
254
|
+
type PutRoutingRuleCommandInput,
|
|
255
|
+
type PutRoutingRuleCommandOutput,
|
|
175
256
|
ReimportApiCommand,
|
|
176
257
|
type ReimportApiCommandInput,
|
|
177
258
|
type ReimportApiCommandOutput,
|
|
@@ -208,6 +289,18 @@ import {
|
|
|
208
289
|
UpdateModelCommand,
|
|
209
290
|
type UpdateModelCommandInput,
|
|
210
291
|
type UpdateModelCommandOutput,
|
|
292
|
+
UpdatePortalCommand,
|
|
293
|
+
type UpdatePortalCommandInput,
|
|
294
|
+
type UpdatePortalCommandOutput,
|
|
295
|
+
UpdatePortalProductCommand,
|
|
296
|
+
type UpdatePortalProductCommandInput,
|
|
297
|
+
type UpdatePortalProductCommandOutput,
|
|
298
|
+
UpdateProductPageCommand,
|
|
299
|
+
type UpdateProductPageCommandInput,
|
|
300
|
+
type UpdateProductPageCommandOutput,
|
|
301
|
+
UpdateProductRestEndpointPageCommand,
|
|
302
|
+
type UpdateProductRestEndpointPageCommandInput,
|
|
303
|
+
type UpdateProductRestEndpointPageCommandOutput,
|
|
211
304
|
UpdateRouteCommand,
|
|
212
305
|
type UpdateRouteCommandInput,
|
|
213
306
|
type UpdateRouteCommandOutput,
|
|
@@ -246,8 +339,13 @@ const commands = {
|
|
|
246
339
|
CreateIntegrationCommand,
|
|
247
340
|
CreateIntegrationResponseCommand,
|
|
248
341
|
CreateModelCommand,
|
|
342
|
+
CreatePortalCommand,
|
|
343
|
+
CreatePortalProductCommand,
|
|
344
|
+
CreateProductPageCommand,
|
|
345
|
+
CreateProductRestEndpointPageCommand,
|
|
249
346
|
CreateRouteCommand,
|
|
250
347
|
CreateRouteResponseCommand,
|
|
348
|
+
CreateRoutingRuleCommand,
|
|
251
349
|
CreateStageCommand,
|
|
252
350
|
CreateVpcLinkCommand,
|
|
253
351
|
DeleteAccessLogSettingsCommand,
|
|
@@ -260,12 +358,19 @@ const commands = {
|
|
|
260
358
|
DeleteIntegrationCommand,
|
|
261
359
|
DeleteIntegrationResponseCommand,
|
|
262
360
|
DeleteModelCommand,
|
|
361
|
+
DeletePortalCommand,
|
|
362
|
+
DeletePortalProductCommand,
|
|
363
|
+
DeletePortalProductSharingPolicyCommand,
|
|
364
|
+
DeleteProductPageCommand,
|
|
365
|
+
DeleteProductRestEndpointPageCommand,
|
|
263
366
|
DeleteRouteCommand,
|
|
264
367
|
DeleteRouteRequestParameterCommand,
|
|
265
368
|
DeleteRouteResponseCommand,
|
|
266
369
|
DeleteRouteSettingsCommand,
|
|
370
|
+
DeleteRoutingRuleCommand,
|
|
267
371
|
DeleteStageCommand,
|
|
268
372
|
DeleteVpcLinkCommand,
|
|
373
|
+
DisablePortalCommand,
|
|
269
374
|
ExportApiCommand,
|
|
270
375
|
GetApiCommand,
|
|
271
376
|
GetApiMappingCommand,
|
|
@@ -284,16 +389,31 @@ const commands = {
|
|
|
284
389
|
GetModelCommand,
|
|
285
390
|
GetModelTemplateCommand,
|
|
286
391
|
GetModelsCommand,
|
|
392
|
+
GetPortalCommand,
|
|
393
|
+
GetPortalProductCommand,
|
|
394
|
+
GetPortalProductSharingPolicyCommand,
|
|
395
|
+
GetProductPageCommand,
|
|
396
|
+
GetProductRestEndpointPageCommand,
|
|
287
397
|
GetRouteCommand,
|
|
288
398
|
GetRouteResponseCommand,
|
|
289
399
|
GetRouteResponsesCommand,
|
|
290
400
|
GetRoutesCommand,
|
|
401
|
+
GetRoutingRuleCommand,
|
|
291
402
|
GetStageCommand,
|
|
292
403
|
GetStagesCommand,
|
|
293
404
|
GetTagsCommand,
|
|
294
405
|
GetVpcLinkCommand,
|
|
295
406
|
GetVpcLinksCommand,
|
|
296
407
|
ImportApiCommand,
|
|
408
|
+
ListPortalProductsCommand,
|
|
409
|
+
ListPortalsCommand,
|
|
410
|
+
ListProductPagesCommand,
|
|
411
|
+
ListProductRestEndpointPagesCommand,
|
|
412
|
+
ListRoutingRulesCommand,
|
|
413
|
+
PreviewPortalCommand,
|
|
414
|
+
PublishPortalCommand,
|
|
415
|
+
PutPortalProductSharingPolicyCommand,
|
|
416
|
+
PutRoutingRuleCommand,
|
|
297
417
|
ReimportApiCommand,
|
|
298
418
|
ResetAuthorizersCacheCommand,
|
|
299
419
|
TagResourceCommand,
|
|
@@ -306,6 +426,10 @@ const commands = {
|
|
|
306
426
|
UpdateIntegrationCommand,
|
|
307
427
|
UpdateIntegrationResponseCommand,
|
|
308
428
|
UpdateModelCommand,
|
|
429
|
+
UpdatePortalCommand,
|
|
430
|
+
UpdatePortalProductCommand,
|
|
431
|
+
UpdateProductPageCommand,
|
|
432
|
+
UpdateProductRestEndpointPageCommand,
|
|
309
433
|
UpdateRouteCommand,
|
|
310
434
|
UpdateRouteResponseCommand,
|
|
311
435
|
UpdateStageCommand,
|
|
@@ -409,6 +533,50 @@ interface ApiGatewayV2Service$ {
|
|
|
409
533
|
Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
410
534
|
>;
|
|
411
535
|
|
|
536
|
+
/**
|
|
537
|
+
* @see {@link CreatePortalCommand}
|
|
538
|
+
*/
|
|
539
|
+
createPortal(
|
|
540
|
+
args: CreatePortalCommandInput,
|
|
541
|
+
options?: HttpHandlerOptions,
|
|
542
|
+
): Effect.Effect<
|
|
543
|
+
CreatePortalCommandOutput,
|
|
544
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | TooManyRequestsError
|
|
545
|
+
>;
|
|
546
|
+
|
|
547
|
+
/**
|
|
548
|
+
* @see {@link CreatePortalProductCommand}
|
|
549
|
+
*/
|
|
550
|
+
createPortalProduct(
|
|
551
|
+
args: CreatePortalProductCommandInput,
|
|
552
|
+
options?: HttpHandlerOptions,
|
|
553
|
+
): Effect.Effect<
|
|
554
|
+
CreatePortalProductCommandOutput,
|
|
555
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | TooManyRequestsError
|
|
556
|
+
>;
|
|
557
|
+
|
|
558
|
+
/**
|
|
559
|
+
* @see {@link CreateProductPageCommand}
|
|
560
|
+
*/
|
|
561
|
+
createProductPage(
|
|
562
|
+
args: CreateProductPageCommandInput,
|
|
563
|
+
options?: HttpHandlerOptions,
|
|
564
|
+
): Effect.Effect<
|
|
565
|
+
CreateProductPageCommandOutput,
|
|
566
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
567
|
+
>;
|
|
568
|
+
|
|
569
|
+
/**
|
|
570
|
+
* @see {@link CreateProductRestEndpointPageCommand}
|
|
571
|
+
*/
|
|
572
|
+
createProductRestEndpointPage(
|
|
573
|
+
args: CreateProductRestEndpointPageCommandInput,
|
|
574
|
+
options?: HttpHandlerOptions,
|
|
575
|
+
): Effect.Effect<
|
|
576
|
+
CreateProductRestEndpointPageCommandOutput,
|
|
577
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
578
|
+
>;
|
|
579
|
+
|
|
412
580
|
/**
|
|
413
581
|
* @see {@link CreateRouteCommand}
|
|
414
582
|
*/
|
|
@@ -431,6 +599,17 @@ interface ApiGatewayV2Service$ {
|
|
|
431
599
|
Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
432
600
|
>;
|
|
433
601
|
|
|
602
|
+
/**
|
|
603
|
+
* @see {@link CreateRoutingRuleCommand}
|
|
604
|
+
*/
|
|
605
|
+
createRoutingRule(
|
|
606
|
+
args: CreateRoutingRuleCommandInput,
|
|
607
|
+
options?: HttpHandlerOptions,
|
|
608
|
+
): Effect.Effect<
|
|
609
|
+
CreateRoutingRuleCommandOutput,
|
|
610
|
+
Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
611
|
+
>;
|
|
612
|
+
|
|
434
613
|
/**
|
|
435
614
|
* @see {@link CreateStageCommand}
|
|
436
615
|
*/
|
|
@@ -563,6 +742,61 @@ interface ApiGatewayV2Service$ {
|
|
|
563
742
|
Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
|
|
564
743
|
>;
|
|
565
744
|
|
|
745
|
+
/**
|
|
746
|
+
* @see {@link DeletePortalCommand}
|
|
747
|
+
*/
|
|
748
|
+
deletePortal(
|
|
749
|
+
args: DeletePortalCommandInput,
|
|
750
|
+
options?: HttpHandlerOptions,
|
|
751
|
+
): Effect.Effect<
|
|
752
|
+
DeletePortalCommandOutput,
|
|
753
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | TooManyRequestsError
|
|
754
|
+
>;
|
|
755
|
+
|
|
756
|
+
/**
|
|
757
|
+
* @see {@link DeletePortalProductCommand}
|
|
758
|
+
*/
|
|
759
|
+
deletePortalProduct(
|
|
760
|
+
args: DeletePortalProductCommandInput,
|
|
761
|
+
options?: HttpHandlerOptions,
|
|
762
|
+
): Effect.Effect<
|
|
763
|
+
DeletePortalProductCommandOutput,
|
|
764
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
765
|
+
>;
|
|
766
|
+
|
|
767
|
+
/**
|
|
768
|
+
* @see {@link DeletePortalProductSharingPolicyCommand}
|
|
769
|
+
*/
|
|
770
|
+
deletePortalProductSharingPolicy(
|
|
771
|
+
args: DeletePortalProductSharingPolicyCommandInput,
|
|
772
|
+
options?: HttpHandlerOptions,
|
|
773
|
+
): Effect.Effect<
|
|
774
|
+
DeletePortalProductSharingPolicyCommandOutput,
|
|
775
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
776
|
+
>;
|
|
777
|
+
|
|
778
|
+
/**
|
|
779
|
+
* @see {@link DeleteProductPageCommand}
|
|
780
|
+
*/
|
|
781
|
+
deleteProductPage(
|
|
782
|
+
args: DeleteProductPageCommandInput,
|
|
783
|
+
options?: HttpHandlerOptions,
|
|
784
|
+
): Effect.Effect<
|
|
785
|
+
DeleteProductPageCommandOutput,
|
|
786
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
787
|
+
>;
|
|
788
|
+
|
|
789
|
+
/**
|
|
790
|
+
* @see {@link DeleteProductRestEndpointPageCommand}
|
|
791
|
+
*/
|
|
792
|
+
deleteProductRestEndpointPage(
|
|
793
|
+
args: DeleteProductRestEndpointPageCommandInput,
|
|
794
|
+
options?: HttpHandlerOptions,
|
|
795
|
+
): Effect.Effect<
|
|
796
|
+
DeleteProductRestEndpointPageCommandOutput,
|
|
797
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
798
|
+
>;
|
|
799
|
+
|
|
566
800
|
/**
|
|
567
801
|
* @see {@link DeleteRouteCommand}
|
|
568
802
|
*/
|
|
@@ -607,6 +841,17 @@ interface ApiGatewayV2Service$ {
|
|
|
607
841
|
Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
|
|
608
842
|
>;
|
|
609
843
|
|
|
844
|
+
/**
|
|
845
|
+
* @see {@link DeleteRoutingRuleCommand}
|
|
846
|
+
*/
|
|
847
|
+
deleteRoutingRule(
|
|
848
|
+
args: DeleteRoutingRuleCommandInput,
|
|
849
|
+
options?: HttpHandlerOptions,
|
|
850
|
+
): Effect.Effect<
|
|
851
|
+
DeleteRoutingRuleCommandOutput,
|
|
852
|
+
Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
853
|
+
>;
|
|
854
|
+
|
|
610
855
|
/**
|
|
611
856
|
* @see {@link DeleteStageCommand}
|
|
612
857
|
*/
|
|
@@ -629,6 +874,23 @@ interface ApiGatewayV2Service$ {
|
|
|
629
874
|
Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
|
|
630
875
|
>;
|
|
631
876
|
|
|
877
|
+
/**
|
|
878
|
+
* @see {@link DisablePortalCommand}
|
|
879
|
+
*/
|
|
880
|
+
disablePortal(
|
|
881
|
+
args: DisablePortalCommandInput,
|
|
882
|
+
options?: HttpHandlerOptions,
|
|
883
|
+
): Effect.Effect<
|
|
884
|
+
DisablePortalCommandOutput,
|
|
885
|
+
| Cause.TimeoutException
|
|
886
|
+
| SdkError
|
|
887
|
+
| AccessDeniedError
|
|
888
|
+
| BadRequestError
|
|
889
|
+
| ConflictError
|
|
890
|
+
| NotFoundError
|
|
891
|
+
| TooManyRequestsError
|
|
892
|
+
>;
|
|
893
|
+
|
|
632
894
|
/**
|
|
633
895
|
* @see {@link ExportApiCommand}
|
|
634
896
|
*/
|
|
@@ -827,6 +1089,61 @@ interface ApiGatewayV2Service$ {
|
|
|
827
1089
|
Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
828
1090
|
>;
|
|
829
1091
|
|
|
1092
|
+
/**
|
|
1093
|
+
* @see {@link GetPortalCommand}
|
|
1094
|
+
*/
|
|
1095
|
+
getPortal(
|
|
1096
|
+
args: GetPortalCommandInput,
|
|
1097
|
+
options?: HttpHandlerOptions,
|
|
1098
|
+
): Effect.Effect<
|
|
1099
|
+
GetPortalCommandOutput,
|
|
1100
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1101
|
+
>;
|
|
1102
|
+
|
|
1103
|
+
/**
|
|
1104
|
+
* @see {@link GetPortalProductCommand}
|
|
1105
|
+
*/
|
|
1106
|
+
getPortalProduct(
|
|
1107
|
+
args: GetPortalProductCommandInput,
|
|
1108
|
+
options?: HttpHandlerOptions,
|
|
1109
|
+
): Effect.Effect<
|
|
1110
|
+
GetPortalProductCommandOutput,
|
|
1111
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1112
|
+
>;
|
|
1113
|
+
|
|
1114
|
+
/**
|
|
1115
|
+
* @see {@link GetPortalProductSharingPolicyCommand}
|
|
1116
|
+
*/
|
|
1117
|
+
getPortalProductSharingPolicy(
|
|
1118
|
+
args: GetPortalProductSharingPolicyCommandInput,
|
|
1119
|
+
options?: HttpHandlerOptions,
|
|
1120
|
+
): Effect.Effect<
|
|
1121
|
+
GetPortalProductSharingPolicyCommandOutput,
|
|
1122
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1123
|
+
>;
|
|
1124
|
+
|
|
1125
|
+
/**
|
|
1126
|
+
* @see {@link GetProductPageCommand}
|
|
1127
|
+
*/
|
|
1128
|
+
getProductPage(
|
|
1129
|
+
args: GetProductPageCommandInput,
|
|
1130
|
+
options?: HttpHandlerOptions,
|
|
1131
|
+
): Effect.Effect<
|
|
1132
|
+
GetProductPageCommandOutput,
|
|
1133
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1134
|
+
>;
|
|
1135
|
+
|
|
1136
|
+
/**
|
|
1137
|
+
* @see {@link GetProductRestEndpointPageCommand}
|
|
1138
|
+
*/
|
|
1139
|
+
getProductRestEndpointPage(
|
|
1140
|
+
args: GetProductRestEndpointPageCommandInput,
|
|
1141
|
+
options?: HttpHandlerOptions,
|
|
1142
|
+
): Effect.Effect<
|
|
1143
|
+
GetProductRestEndpointPageCommandOutput,
|
|
1144
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1145
|
+
>;
|
|
1146
|
+
|
|
830
1147
|
/**
|
|
831
1148
|
* @see {@link GetRouteCommand}
|
|
832
1149
|
*/
|
|
@@ -871,6 +1188,17 @@ interface ApiGatewayV2Service$ {
|
|
|
871
1188
|
Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
872
1189
|
>;
|
|
873
1190
|
|
|
1191
|
+
/**
|
|
1192
|
+
* @see {@link GetRoutingRuleCommand}
|
|
1193
|
+
*/
|
|
1194
|
+
getRoutingRule(
|
|
1195
|
+
args: GetRoutingRuleCommandInput,
|
|
1196
|
+
options?: HttpHandlerOptions,
|
|
1197
|
+
): Effect.Effect<
|
|
1198
|
+
GetRoutingRuleCommandOutput,
|
|
1199
|
+
Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1200
|
+
>;
|
|
1201
|
+
|
|
874
1202
|
/**
|
|
875
1203
|
* @see {@link GetStageCommand}
|
|
876
1204
|
*/
|
|
@@ -937,6 +1265,117 @@ interface ApiGatewayV2Service$ {
|
|
|
937
1265
|
Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
938
1266
|
>;
|
|
939
1267
|
|
|
1268
|
+
/**
|
|
1269
|
+
* @see {@link ListPortalProductsCommand}
|
|
1270
|
+
*/
|
|
1271
|
+
listPortalProducts(
|
|
1272
|
+
args: ListPortalProductsCommandInput,
|
|
1273
|
+
options?: HttpHandlerOptions,
|
|
1274
|
+
): Effect.Effect<
|
|
1275
|
+
ListPortalProductsCommandOutput,
|
|
1276
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | TooManyRequestsError
|
|
1277
|
+
>;
|
|
1278
|
+
|
|
1279
|
+
/**
|
|
1280
|
+
* @see {@link ListPortalsCommand}
|
|
1281
|
+
*/
|
|
1282
|
+
listPortals(
|
|
1283
|
+
args: ListPortalsCommandInput,
|
|
1284
|
+
options?: HttpHandlerOptions,
|
|
1285
|
+
): Effect.Effect<
|
|
1286
|
+
ListPortalsCommandOutput,
|
|
1287
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | TooManyRequestsError
|
|
1288
|
+
>;
|
|
1289
|
+
|
|
1290
|
+
/**
|
|
1291
|
+
* @see {@link ListProductPagesCommand}
|
|
1292
|
+
*/
|
|
1293
|
+
listProductPages(
|
|
1294
|
+
args: ListProductPagesCommandInput,
|
|
1295
|
+
options?: HttpHandlerOptions,
|
|
1296
|
+
): Effect.Effect<
|
|
1297
|
+
ListProductPagesCommandOutput,
|
|
1298
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1299
|
+
>;
|
|
1300
|
+
|
|
1301
|
+
/**
|
|
1302
|
+
* @see {@link ListProductRestEndpointPagesCommand}
|
|
1303
|
+
*/
|
|
1304
|
+
listProductRestEndpointPages(
|
|
1305
|
+
args: ListProductRestEndpointPagesCommandInput,
|
|
1306
|
+
options?: HttpHandlerOptions,
|
|
1307
|
+
): Effect.Effect<
|
|
1308
|
+
ListProductRestEndpointPagesCommandOutput,
|
|
1309
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1310
|
+
>;
|
|
1311
|
+
|
|
1312
|
+
/**
|
|
1313
|
+
* @see {@link ListRoutingRulesCommand}
|
|
1314
|
+
*/
|
|
1315
|
+
listRoutingRules(
|
|
1316
|
+
args: ListRoutingRulesCommandInput,
|
|
1317
|
+
options?: HttpHandlerOptions,
|
|
1318
|
+
): Effect.Effect<
|
|
1319
|
+
ListRoutingRulesCommandOutput,
|
|
1320
|
+
Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1321
|
+
>;
|
|
1322
|
+
|
|
1323
|
+
/**
|
|
1324
|
+
* @see {@link PreviewPortalCommand}
|
|
1325
|
+
*/
|
|
1326
|
+
previewPortal(
|
|
1327
|
+
args: PreviewPortalCommandInput,
|
|
1328
|
+
options?: HttpHandlerOptions,
|
|
1329
|
+
): Effect.Effect<
|
|
1330
|
+
PreviewPortalCommandOutput,
|
|
1331
|
+
| Cause.TimeoutException
|
|
1332
|
+
| SdkError
|
|
1333
|
+
| AccessDeniedError
|
|
1334
|
+
| BadRequestError
|
|
1335
|
+
| ConflictError
|
|
1336
|
+
| NotFoundError
|
|
1337
|
+
| TooManyRequestsError
|
|
1338
|
+
>;
|
|
1339
|
+
|
|
1340
|
+
/**
|
|
1341
|
+
* @see {@link PublishPortalCommand}
|
|
1342
|
+
*/
|
|
1343
|
+
publishPortal(
|
|
1344
|
+
args: PublishPortalCommandInput,
|
|
1345
|
+
options?: HttpHandlerOptions,
|
|
1346
|
+
): Effect.Effect<
|
|
1347
|
+
PublishPortalCommandOutput,
|
|
1348
|
+
| Cause.TimeoutException
|
|
1349
|
+
| SdkError
|
|
1350
|
+
| AccessDeniedError
|
|
1351
|
+
| BadRequestError
|
|
1352
|
+
| ConflictError
|
|
1353
|
+
| NotFoundError
|
|
1354
|
+
| TooManyRequestsError
|
|
1355
|
+
>;
|
|
1356
|
+
|
|
1357
|
+
/**
|
|
1358
|
+
* @see {@link PutPortalProductSharingPolicyCommand}
|
|
1359
|
+
*/
|
|
1360
|
+
putPortalProductSharingPolicy(
|
|
1361
|
+
args: PutPortalProductSharingPolicyCommandInput,
|
|
1362
|
+
options?: HttpHandlerOptions,
|
|
1363
|
+
): Effect.Effect<
|
|
1364
|
+
PutPortalProductSharingPolicyCommandOutput,
|
|
1365
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1366
|
+
>;
|
|
1367
|
+
|
|
1368
|
+
/**
|
|
1369
|
+
* @see {@link PutRoutingRuleCommand}
|
|
1370
|
+
*/
|
|
1371
|
+
putRoutingRule(
|
|
1372
|
+
args: PutRoutingRuleCommandInput,
|
|
1373
|
+
options?: HttpHandlerOptions,
|
|
1374
|
+
): Effect.Effect<
|
|
1375
|
+
PutRoutingRuleCommandOutput,
|
|
1376
|
+
Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
1377
|
+
>;
|
|
1378
|
+
|
|
940
1379
|
/**
|
|
941
1380
|
* @see {@link ReimportApiCommand}
|
|
942
1381
|
*/
|
|
@@ -1069,6 +1508,56 @@ interface ApiGatewayV2Service$ {
|
|
|
1069
1508
|
Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
|
|
1070
1509
|
>;
|
|
1071
1510
|
|
|
1511
|
+
/**
|
|
1512
|
+
* @see {@link UpdatePortalCommand}
|
|
1513
|
+
*/
|
|
1514
|
+
updatePortal(
|
|
1515
|
+
args: UpdatePortalCommandInput,
|
|
1516
|
+
options?: HttpHandlerOptions,
|
|
1517
|
+
): Effect.Effect<
|
|
1518
|
+
UpdatePortalCommandOutput,
|
|
1519
|
+
| Cause.TimeoutException
|
|
1520
|
+
| SdkError
|
|
1521
|
+
| AccessDeniedError
|
|
1522
|
+
| BadRequestError
|
|
1523
|
+
| ConflictError
|
|
1524
|
+
| NotFoundError
|
|
1525
|
+
| TooManyRequestsError
|
|
1526
|
+
>;
|
|
1527
|
+
|
|
1528
|
+
/**
|
|
1529
|
+
* @see {@link UpdatePortalProductCommand}
|
|
1530
|
+
*/
|
|
1531
|
+
updatePortalProduct(
|
|
1532
|
+
args: UpdatePortalProductCommandInput,
|
|
1533
|
+
options?: HttpHandlerOptions,
|
|
1534
|
+
): Effect.Effect<
|
|
1535
|
+
UpdatePortalProductCommandOutput,
|
|
1536
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1537
|
+
>;
|
|
1538
|
+
|
|
1539
|
+
/**
|
|
1540
|
+
* @see {@link UpdateProductPageCommand}
|
|
1541
|
+
*/
|
|
1542
|
+
updateProductPage(
|
|
1543
|
+
args: UpdateProductPageCommandInput,
|
|
1544
|
+
options?: HttpHandlerOptions,
|
|
1545
|
+
): Effect.Effect<
|
|
1546
|
+
UpdateProductPageCommandOutput,
|
|
1547
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1548
|
+
>;
|
|
1549
|
+
|
|
1550
|
+
/**
|
|
1551
|
+
* @see {@link UpdateProductRestEndpointPageCommand}
|
|
1552
|
+
*/
|
|
1553
|
+
updateProductRestEndpointPage(
|
|
1554
|
+
args: UpdateProductRestEndpointPageCommandInput,
|
|
1555
|
+
options?: HttpHandlerOptions,
|
|
1556
|
+
): Effect.Effect<
|
|
1557
|
+
UpdateProductRestEndpointPageCommandOutput,
|
|
1558
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | BadRequestError | NotFoundError | TooManyRequestsError
|
|
1559
|
+
>;
|
|
1560
|
+
|
|
1072
1561
|
/**
|
|
1073
1562
|
* @see {@link UpdateRouteCommand}
|
|
1074
1563
|
*/
|