@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
@@ -80,6 +80,22 @@ import {
80
80
  CreateModelCommandInput,
81
81
  CreateModelCommandOutput,
82
82
  } from "./commands/CreateModelCommand";
83
+ import {
84
+ CreatePortalCommandInput,
85
+ CreatePortalCommandOutput,
86
+ } from "./commands/CreatePortalCommand";
87
+ import {
88
+ CreatePortalProductCommandInput,
89
+ CreatePortalProductCommandOutput,
90
+ } from "./commands/CreatePortalProductCommand";
91
+ import {
92
+ CreateProductPageCommandInput,
93
+ CreateProductPageCommandOutput,
94
+ } from "./commands/CreateProductPageCommand";
95
+ import {
96
+ CreateProductRestEndpointPageCommandInput,
97
+ CreateProductRestEndpointPageCommandOutput,
98
+ } from "./commands/CreateProductRestEndpointPageCommand";
83
99
  import {
84
100
  CreateRouteCommandInput,
85
101
  CreateRouteCommandOutput,
@@ -140,6 +156,26 @@ import {
140
156
  DeleteModelCommandInput,
141
157
  DeleteModelCommandOutput,
142
158
  } from "./commands/DeleteModelCommand";
159
+ import {
160
+ DeletePortalCommandInput,
161
+ DeletePortalCommandOutput,
162
+ } from "./commands/DeletePortalCommand";
163
+ import {
164
+ DeletePortalProductCommandInput,
165
+ DeletePortalProductCommandOutput,
166
+ } from "./commands/DeletePortalProductCommand";
167
+ import {
168
+ DeletePortalProductSharingPolicyCommandInput,
169
+ DeletePortalProductSharingPolicyCommandOutput,
170
+ } from "./commands/DeletePortalProductSharingPolicyCommand";
171
+ import {
172
+ DeleteProductPageCommandInput,
173
+ DeleteProductPageCommandOutput,
174
+ } from "./commands/DeleteProductPageCommand";
175
+ import {
176
+ DeleteProductRestEndpointPageCommandInput,
177
+ DeleteProductRestEndpointPageCommandOutput,
178
+ } from "./commands/DeleteProductRestEndpointPageCommand";
143
179
  import {
144
180
  DeleteRouteCommandInput,
145
181
  DeleteRouteCommandOutput,
@@ -168,6 +204,10 @@ import {
168
204
  DeleteVpcLinkCommandInput,
169
205
  DeleteVpcLinkCommandOutput,
170
206
  } from "./commands/DeleteVpcLinkCommand";
207
+ import {
208
+ DisablePortalCommandInput,
209
+ DisablePortalCommandOutput,
210
+ } from "./commands/DisablePortalCommand";
171
211
  import {
172
212
  ExportApiCommandInput,
173
213
  ExportApiCommandOutput,
@@ -240,6 +280,26 @@ import {
240
280
  GetModelTemplateCommandInput,
241
281
  GetModelTemplateCommandOutput,
242
282
  } from "./commands/GetModelTemplateCommand";
283
+ import {
284
+ GetPortalCommandInput,
285
+ GetPortalCommandOutput,
286
+ } from "./commands/GetPortalCommand";
287
+ import {
288
+ GetPortalProductCommandInput,
289
+ GetPortalProductCommandOutput,
290
+ } from "./commands/GetPortalProductCommand";
291
+ import {
292
+ GetPortalProductSharingPolicyCommandInput,
293
+ GetPortalProductSharingPolicyCommandOutput,
294
+ } from "./commands/GetPortalProductSharingPolicyCommand";
295
+ import {
296
+ GetProductPageCommandInput,
297
+ GetProductPageCommandOutput,
298
+ } from "./commands/GetProductPageCommand";
299
+ import {
300
+ GetProductRestEndpointPageCommandInput,
301
+ GetProductRestEndpointPageCommandOutput,
302
+ } from "./commands/GetProductRestEndpointPageCommand";
243
303
  import {
244
304
  GetRouteCommandInput,
245
305
  GetRouteCommandOutput,
@@ -284,10 +344,38 @@ import {
284
344
  ImportApiCommandInput,
285
345
  ImportApiCommandOutput,
286
346
  } from "./commands/ImportApiCommand";
347
+ import {
348
+ ListPortalProductsCommandInput,
349
+ ListPortalProductsCommandOutput,
350
+ } from "./commands/ListPortalProductsCommand";
351
+ import {
352
+ ListPortalsCommandInput,
353
+ ListPortalsCommandOutput,
354
+ } from "./commands/ListPortalsCommand";
355
+ import {
356
+ ListProductPagesCommandInput,
357
+ ListProductPagesCommandOutput,
358
+ } from "./commands/ListProductPagesCommand";
359
+ import {
360
+ ListProductRestEndpointPagesCommandInput,
361
+ ListProductRestEndpointPagesCommandOutput,
362
+ } from "./commands/ListProductRestEndpointPagesCommand";
287
363
  import {
288
364
  ListRoutingRulesCommandInput,
289
365
  ListRoutingRulesCommandOutput,
290
366
  } from "./commands/ListRoutingRulesCommand";
367
+ import {
368
+ PreviewPortalCommandInput,
369
+ PreviewPortalCommandOutput,
370
+ } from "./commands/PreviewPortalCommand";
371
+ import {
372
+ PublishPortalCommandInput,
373
+ PublishPortalCommandOutput,
374
+ } from "./commands/PublishPortalCommand";
375
+ import {
376
+ PutPortalProductSharingPolicyCommandInput,
377
+ PutPortalProductSharingPolicyCommandOutput,
378
+ } from "./commands/PutPortalProductSharingPolicyCommand";
291
379
  import {
292
380
  PutRoutingRuleCommandInput,
293
381
  PutRoutingRuleCommandOutput,
@@ -340,6 +428,22 @@ import {
340
428
  UpdateModelCommandInput,
341
429
  UpdateModelCommandOutput,
342
430
  } from "./commands/UpdateModelCommand";
431
+ import {
432
+ UpdatePortalCommandInput,
433
+ UpdatePortalCommandOutput,
434
+ } from "./commands/UpdatePortalCommand";
435
+ import {
436
+ UpdatePortalProductCommandInput,
437
+ UpdatePortalProductCommandOutput,
438
+ } from "./commands/UpdatePortalProductCommand";
439
+ import {
440
+ UpdateProductPageCommandInput,
441
+ UpdateProductPageCommandOutput,
442
+ } from "./commands/UpdateProductPageCommand";
443
+ import {
444
+ UpdateProductRestEndpointPageCommandInput,
445
+ UpdateProductRestEndpointPageCommandOutput,
446
+ } from "./commands/UpdateProductRestEndpointPageCommand";
343
447
  import {
344
448
  UpdateRouteCommandInput,
345
449
  UpdateRouteCommandOutput,
@@ -372,6 +476,10 @@ export type ServiceInputTypes =
372
476
  | CreateIntegrationCommandInput
373
477
  | CreateIntegrationResponseCommandInput
374
478
  | CreateModelCommandInput
479
+ | CreatePortalCommandInput
480
+ | CreatePortalProductCommandInput
481
+ | CreateProductPageCommandInput
482
+ | CreateProductRestEndpointPageCommandInput
375
483
  | CreateRouteCommandInput
376
484
  | CreateRouteResponseCommandInput
377
485
  | CreateRoutingRuleCommandInput
@@ -387,6 +495,11 @@ export type ServiceInputTypes =
387
495
  | DeleteIntegrationCommandInput
388
496
  | DeleteIntegrationResponseCommandInput
389
497
  | DeleteModelCommandInput
498
+ | DeletePortalCommandInput
499
+ | DeletePortalProductCommandInput
500
+ | DeletePortalProductSharingPolicyCommandInput
501
+ | DeleteProductPageCommandInput
502
+ | DeleteProductRestEndpointPageCommandInput
390
503
  | DeleteRouteCommandInput
391
504
  | DeleteRouteRequestParameterCommandInput
392
505
  | DeleteRouteResponseCommandInput
@@ -394,6 +507,7 @@ export type ServiceInputTypes =
394
507
  | DeleteRoutingRuleCommandInput
395
508
  | DeleteStageCommandInput
396
509
  | DeleteVpcLinkCommandInput
510
+ | DisablePortalCommandInput
397
511
  | ExportApiCommandInput
398
512
  | GetApiCommandInput
399
513
  | GetApiMappingCommandInput
@@ -412,6 +526,11 @@ export type ServiceInputTypes =
412
526
  | GetModelCommandInput
413
527
  | GetModelTemplateCommandInput
414
528
  | GetModelsCommandInput
529
+ | GetPortalCommandInput
530
+ | GetPortalProductCommandInput
531
+ | GetPortalProductSharingPolicyCommandInput
532
+ | GetProductPageCommandInput
533
+ | GetProductRestEndpointPageCommandInput
415
534
  | GetRouteCommandInput
416
535
  | GetRouteResponseCommandInput
417
536
  | GetRouteResponsesCommandInput
@@ -423,7 +542,14 @@ export type ServiceInputTypes =
423
542
  | GetVpcLinkCommandInput
424
543
  | GetVpcLinksCommandInput
425
544
  | ImportApiCommandInput
545
+ | ListPortalProductsCommandInput
546
+ | ListPortalsCommandInput
547
+ | ListProductPagesCommandInput
548
+ | ListProductRestEndpointPagesCommandInput
426
549
  | ListRoutingRulesCommandInput
550
+ | PreviewPortalCommandInput
551
+ | PublishPortalCommandInput
552
+ | PutPortalProductSharingPolicyCommandInput
427
553
  | PutRoutingRuleCommandInput
428
554
  | ReimportApiCommandInput
429
555
  | ResetAuthorizersCacheCommandInput
@@ -437,6 +563,10 @@ export type ServiceInputTypes =
437
563
  | UpdateIntegrationCommandInput
438
564
  | UpdateIntegrationResponseCommandInput
439
565
  | UpdateModelCommandInput
566
+ | UpdatePortalCommandInput
567
+ | UpdatePortalProductCommandInput
568
+ | UpdateProductPageCommandInput
569
+ | UpdateProductRestEndpointPageCommandInput
440
570
  | UpdateRouteCommandInput
441
571
  | UpdateRouteResponseCommandInput
442
572
  | UpdateStageCommandInput
@@ -450,6 +580,10 @@ export type ServiceOutputTypes =
450
580
  | CreateIntegrationCommandOutput
451
581
  | CreateIntegrationResponseCommandOutput
452
582
  | CreateModelCommandOutput
583
+ | CreatePortalCommandOutput
584
+ | CreatePortalProductCommandOutput
585
+ | CreateProductPageCommandOutput
586
+ | CreateProductRestEndpointPageCommandOutput
453
587
  | CreateRouteCommandOutput
454
588
  | CreateRouteResponseCommandOutput
455
589
  | CreateRoutingRuleCommandOutput
@@ -465,6 +599,11 @@ export type ServiceOutputTypes =
465
599
  | DeleteIntegrationCommandOutput
466
600
  | DeleteIntegrationResponseCommandOutput
467
601
  | DeleteModelCommandOutput
602
+ | DeletePortalCommandOutput
603
+ | DeletePortalProductCommandOutput
604
+ | DeletePortalProductSharingPolicyCommandOutput
605
+ | DeleteProductPageCommandOutput
606
+ | DeleteProductRestEndpointPageCommandOutput
468
607
  | DeleteRouteCommandOutput
469
608
  | DeleteRouteRequestParameterCommandOutput
470
609
  | DeleteRouteResponseCommandOutput
@@ -472,6 +611,7 @@ export type ServiceOutputTypes =
472
611
  | DeleteRoutingRuleCommandOutput
473
612
  | DeleteStageCommandOutput
474
613
  | DeleteVpcLinkCommandOutput
614
+ | DisablePortalCommandOutput
475
615
  | ExportApiCommandOutput
476
616
  | GetApiCommandOutput
477
617
  | GetApiMappingCommandOutput
@@ -490,6 +630,11 @@ export type ServiceOutputTypes =
490
630
  | GetModelCommandOutput
491
631
  | GetModelTemplateCommandOutput
492
632
  | GetModelsCommandOutput
633
+ | GetPortalCommandOutput
634
+ | GetPortalProductCommandOutput
635
+ | GetPortalProductSharingPolicyCommandOutput
636
+ | GetProductPageCommandOutput
637
+ | GetProductRestEndpointPageCommandOutput
493
638
  | GetRouteCommandOutput
494
639
  | GetRouteResponseCommandOutput
495
640
  | GetRouteResponsesCommandOutput
@@ -501,7 +646,14 @@ export type ServiceOutputTypes =
501
646
  | GetVpcLinkCommandOutput
502
647
  | GetVpcLinksCommandOutput
503
648
  | ImportApiCommandOutput
649
+ | ListPortalProductsCommandOutput
650
+ | ListPortalsCommandOutput
651
+ | ListProductPagesCommandOutput
652
+ | ListProductRestEndpointPagesCommandOutput
504
653
  | ListRoutingRulesCommandOutput
654
+ | PreviewPortalCommandOutput
655
+ | PublishPortalCommandOutput
656
+ | PutPortalProductSharingPolicyCommandOutput
505
657
  | PutRoutingRuleCommandOutput
506
658
  | ReimportApiCommandOutput
507
659
  | ResetAuthorizersCacheCommandOutput
@@ -515,6 +667,10 @@ export type ServiceOutputTypes =
515
667
  | UpdateIntegrationCommandOutput
516
668
  | UpdateIntegrationResponseCommandOutput
517
669
  | UpdateModelCommandOutput
670
+ | UpdatePortalCommandOutput
671
+ | UpdatePortalProductCommandOutput
672
+ | UpdateProductPageCommandOutput
673
+ | UpdateProductRestEndpointPageCommandOutput
518
674
  | UpdateRouteCommandOutput
519
675
  | UpdateRouteResponseCommandOutput
520
676
  | UpdateStageCommandOutput
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ApiGatewayV2ClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ApiGatewayV2Client";
8
+ import { CreatePortalRequest, CreatePortalResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface CreatePortalCommandInput extends CreatePortalRequest {}
12
+ export interface CreatePortalCommandOutput
13
+ extends CreatePortalResponse,
14
+ __MetadataBearer {}
15
+ declare const CreatePortalCommand_base: {
16
+ new (
17
+ input: CreatePortalCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ CreatePortalCommandInput,
20
+ CreatePortalCommandOutput,
21
+ ApiGatewayV2ClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: CreatePortalCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ CreatePortalCommandInput,
29
+ CreatePortalCommandOutput,
30
+ ApiGatewayV2ClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class CreatePortalCommand extends CreatePortalCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: CreatePortalRequest;
40
+ output: CreatePortalResponse;
41
+ };
42
+ sdk: {
43
+ input: CreatePortalCommandInput;
44
+ output: CreatePortalCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ApiGatewayV2ClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ApiGatewayV2Client";
8
+ import {
9
+ CreatePortalProductRequest,
10
+ CreatePortalProductResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreatePortalProductCommandInput
15
+ extends CreatePortalProductRequest {}
16
+ export interface CreatePortalProductCommandOutput
17
+ extends CreatePortalProductResponse,
18
+ __MetadataBearer {}
19
+ declare const CreatePortalProductCommand_base: {
20
+ new (
21
+ input: CreatePortalProductCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreatePortalProductCommandInput,
24
+ CreatePortalProductCommandOutput,
25
+ ApiGatewayV2ClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreatePortalProductCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreatePortalProductCommandInput,
33
+ CreatePortalProductCommandOutput,
34
+ ApiGatewayV2ClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreatePortalProductCommand extends CreatePortalProductCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreatePortalProductRequest;
44
+ output: CreatePortalProductResponse;
45
+ };
46
+ sdk: {
47
+ input: CreatePortalProductCommandInput;
48
+ output: CreatePortalProductCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ApiGatewayV2ClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ApiGatewayV2Client";
8
+ import {
9
+ CreateProductPageRequest,
10
+ CreateProductPageResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateProductPageCommandInput
15
+ extends CreateProductPageRequest {}
16
+ export interface CreateProductPageCommandOutput
17
+ extends CreateProductPageResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateProductPageCommand_base: {
20
+ new (
21
+ input: CreateProductPageCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateProductPageCommandInput,
24
+ CreateProductPageCommandOutput,
25
+ ApiGatewayV2ClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateProductPageCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateProductPageCommandInput,
33
+ CreateProductPageCommandOutput,
34
+ ApiGatewayV2ClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateProductPageCommand extends CreateProductPageCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateProductPageRequest;
44
+ output: CreateProductPageResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateProductPageCommandInput;
48
+ output: CreateProductPageCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ApiGatewayV2ClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ApiGatewayV2Client";
8
+ import {
9
+ CreateProductRestEndpointPageRequest,
10
+ CreateProductRestEndpointPageResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateProductRestEndpointPageCommandInput
15
+ extends CreateProductRestEndpointPageRequest {}
16
+ export interface CreateProductRestEndpointPageCommandOutput
17
+ extends CreateProductRestEndpointPageResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateProductRestEndpointPageCommand_base: {
20
+ new (
21
+ input: CreateProductRestEndpointPageCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateProductRestEndpointPageCommandInput,
24
+ CreateProductRestEndpointPageCommandOutput,
25
+ ApiGatewayV2ClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateProductRestEndpointPageCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateProductRestEndpointPageCommandInput,
33
+ CreateProductRestEndpointPageCommandOutput,
34
+ ApiGatewayV2ClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateProductRestEndpointPageCommand extends CreateProductRestEndpointPageCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateProductRestEndpointPageRequest;
44
+ output: CreateProductRestEndpointPageResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateProductRestEndpointPageCommandInput;
48
+ output: CreateProductRestEndpointPageCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,45 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ApiGatewayV2ClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ApiGatewayV2Client";
8
+ import { DeletePortalRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeletePortalCommandInput extends DeletePortalRequest {}
12
+ export interface DeletePortalCommandOutput extends __MetadataBearer {}
13
+ declare const DeletePortalCommand_base: {
14
+ new (
15
+ input: DeletePortalCommandInput
16
+ ): import("@smithy/smithy-client").CommandImpl<
17
+ DeletePortalCommandInput,
18
+ DeletePortalCommandOutput,
19
+ ApiGatewayV2ClientResolvedConfig,
20
+ ServiceInputTypes,
21
+ ServiceOutputTypes
22
+ >;
23
+ new (
24
+ input: DeletePortalCommandInput
25
+ ): import("@smithy/smithy-client").CommandImpl<
26
+ DeletePortalCommandInput,
27
+ DeletePortalCommandOutput,
28
+ ApiGatewayV2ClientResolvedConfig,
29
+ ServiceInputTypes,
30
+ ServiceOutputTypes
31
+ >;
32
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
+ };
34
+ export declare class DeletePortalCommand extends DeletePortalCommand_base {
35
+ protected static __types: {
36
+ api: {
37
+ input: DeletePortalRequest;
38
+ output: {};
39
+ };
40
+ sdk: {
41
+ input: DeletePortalCommandInput;
42
+ output: DeletePortalCommandOutput;
43
+ };
44
+ };
45
+ }
@@ -0,0 +1,46 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ApiGatewayV2ClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ApiGatewayV2Client";
8
+ import { DeletePortalProductRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeletePortalProductCommandInput
12
+ extends DeletePortalProductRequest {}
13
+ export interface DeletePortalProductCommandOutput extends __MetadataBearer {}
14
+ declare const DeletePortalProductCommand_base: {
15
+ new (
16
+ input: DeletePortalProductCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ DeletePortalProductCommandInput,
19
+ DeletePortalProductCommandOutput,
20
+ ApiGatewayV2ClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ input: DeletePortalProductCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ DeletePortalProductCommandInput,
28
+ DeletePortalProductCommandOutput,
29
+ ApiGatewayV2ClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class DeletePortalProductCommand extends DeletePortalProductCommand_base {
36
+ protected static __types: {
37
+ api: {
38
+ input: DeletePortalProductRequest;
39
+ output: {};
40
+ };
41
+ sdk: {
42
+ input: DeletePortalProductCommandInput;
43
+ output: DeletePortalProductCommandOutput;
44
+ };
45
+ };
46
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ApiGatewayV2ClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ApiGatewayV2Client";
8
+ import { DeletePortalProductSharingPolicyRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeletePortalProductSharingPolicyCommandInput
12
+ extends DeletePortalProductSharingPolicyRequest {}
13
+ export interface DeletePortalProductSharingPolicyCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const DeletePortalProductSharingPolicyCommand_base: {
16
+ new (
17
+ input: DeletePortalProductSharingPolicyCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ DeletePortalProductSharingPolicyCommandInput,
20
+ DeletePortalProductSharingPolicyCommandOutput,
21
+ ApiGatewayV2ClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: DeletePortalProductSharingPolicyCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ DeletePortalProductSharingPolicyCommandInput,
29
+ DeletePortalProductSharingPolicyCommandOutput,
30
+ ApiGatewayV2ClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class DeletePortalProductSharingPolicyCommand extends DeletePortalProductSharingPolicyCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: DeletePortalProductSharingPolicyRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: DeletePortalProductSharingPolicyCommandInput;
44
+ output: DeletePortalProductSharingPolicyCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,46 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ApiGatewayV2ClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ApiGatewayV2Client";
8
+ import { DeleteProductPageRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteProductPageCommandInput
12
+ extends DeleteProductPageRequest {}
13
+ export interface DeleteProductPageCommandOutput extends __MetadataBearer {}
14
+ declare const DeleteProductPageCommand_base: {
15
+ new (
16
+ input: DeleteProductPageCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ DeleteProductPageCommandInput,
19
+ DeleteProductPageCommandOutput,
20
+ ApiGatewayV2ClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ input: DeleteProductPageCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ DeleteProductPageCommandInput,
28
+ DeleteProductPageCommandOutput,
29
+ ApiGatewayV2ClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class DeleteProductPageCommand extends DeleteProductPageCommand_base {
36
+ protected static __types: {
37
+ api: {
38
+ input: DeleteProductPageRequest;
39
+ output: {};
40
+ };
41
+ sdk: {
42
+ input: DeleteProductPageCommandInput;
43
+ output: DeleteProductPageCommandOutput;
44
+ };
45
+ };
46
+ }