@aws-sdk/client-mediaconnect 3.312.0 → 3.313.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 (123) hide show
  1. package/README.md +167 -7
  2. package/dist-cjs/MediaConnect.js +300 -0
  3. package/dist-cjs/commands/AddBridgeOutputsCommand.js +45 -0
  4. package/dist-cjs/commands/AddBridgeSourcesCommand.js +45 -0
  5. package/dist-cjs/commands/CreateBridgeCommand.js +45 -0
  6. package/dist-cjs/commands/CreateGatewayCommand.js +45 -0
  7. package/dist-cjs/commands/DeleteBridgeCommand.js +45 -0
  8. package/dist-cjs/commands/DeleteGatewayCommand.js +45 -0
  9. package/dist-cjs/commands/DeregisterGatewayInstanceCommand.js +45 -0
  10. package/dist-cjs/commands/DescribeBridgeCommand.js +45 -0
  11. package/dist-cjs/commands/DescribeGatewayCommand.js +45 -0
  12. package/dist-cjs/commands/DescribeGatewayInstanceCommand.js +45 -0
  13. package/dist-cjs/commands/ListBridgesCommand.js +45 -0
  14. package/dist-cjs/commands/ListGatewayInstancesCommand.js +45 -0
  15. package/dist-cjs/commands/ListGatewaysCommand.js +45 -0
  16. package/dist-cjs/commands/RemoveBridgeOutputCommand.js +45 -0
  17. package/dist-cjs/commands/RemoveBridgeSourceCommand.js +45 -0
  18. package/dist-cjs/commands/UpdateBridgeCommand.js +45 -0
  19. package/dist-cjs/commands/UpdateBridgeOutputCommand.js +45 -0
  20. package/dist-cjs/commands/UpdateBridgeSourceCommand.js +45 -0
  21. package/dist-cjs/commands/UpdateBridgeStateCommand.js +45 -0
  22. package/dist-cjs/commands/UpdateGatewayInstanceCommand.js +45 -0
  23. package/dist-cjs/commands/index.js +20 -0
  24. package/dist-cjs/endpoint/ruleset.js +3 -3
  25. package/dist-cjs/models/models_0.js +106 -20
  26. package/dist-cjs/pagination/ListBridgesPaginator.js +29 -0
  27. package/dist-cjs/pagination/ListGatewayInstancesPaginator.js +29 -0
  28. package/dist-cjs/pagination/ListGatewaysPaginator.js +29 -0
  29. package/dist-cjs/pagination/index.js +3 -0
  30. package/dist-cjs/protocols/Aws_restJson1.js +2045 -140
  31. package/dist-es/MediaConnect.js +300 -0
  32. package/dist-es/commands/AddBridgeOutputsCommand.js +41 -0
  33. package/dist-es/commands/AddBridgeSourcesCommand.js +41 -0
  34. package/dist-es/commands/CreateBridgeCommand.js +41 -0
  35. package/dist-es/commands/CreateGatewayCommand.js +41 -0
  36. package/dist-es/commands/DeleteBridgeCommand.js +41 -0
  37. package/dist-es/commands/DeleteGatewayCommand.js +41 -0
  38. package/dist-es/commands/DeregisterGatewayInstanceCommand.js +41 -0
  39. package/dist-es/commands/DescribeBridgeCommand.js +41 -0
  40. package/dist-es/commands/DescribeGatewayCommand.js +41 -0
  41. package/dist-es/commands/DescribeGatewayInstanceCommand.js +41 -0
  42. package/dist-es/commands/ListBridgesCommand.js +41 -0
  43. package/dist-es/commands/ListGatewayInstancesCommand.js +41 -0
  44. package/dist-es/commands/ListGatewaysCommand.js +41 -0
  45. package/dist-es/commands/RemoveBridgeOutputCommand.js +41 -0
  46. package/dist-es/commands/RemoveBridgeSourceCommand.js +41 -0
  47. package/dist-es/commands/UpdateBridgeCommand.js +41 -0
  48. package/dist-es/commands/UpdateBridgeOutputCommand.js +41 -0
  49. package/dist-es/commands/UpdateBridgeSourceCommand.js +41 -0
  50. package/dist-es/commands/UpdateBridgeStateCommand.js +41 -0
  51. package/dist-es/commands/UpdateGatewayInstanceCommand.js +41 -0
  52. package/dist-es/commands/index.js +20 -0
  53. package/dist-es/endpoint/ruleset.js +3 -3
  54. package/dist-es/models/models_0.js +102 -19
  55. package/dist-es/pagination/ListBridgesPaginator.js +25 -0
  56. package/dist-es/pagination/ListGatewayInstancesPaginator.js +25 -0
  57. package/dist-es/pagination/ListGatewaysPaginator.js +25 -0
  58. package/dist-es/pagination/index.js +3 -0
  59. package/dist-es/protocols/Aws_restJson1.js +2002 -137
  60. package/dist-types/MediaConnect.d.ts +160 -0
  61. package/dist-types/MediaConnectClient.d.ts +22 -2
  62. package/dist-types/commands/AddBridgeOutputsCommand.d.ts +96 -0
  63. package/dist-types/commands/AddBridgeSourcesCommand.d.ts +102 -0
  64. package/dist-types/commands/AddFlowOutputsCommand.d.ts +1 -1
  65. package/dist-types/commands/AddFlowSourcesCommand.d.ts +7 -1
  66. package/dist-types/commands/CreateBridgeCommand.d.ts +130 -0
  67. package/dist-types/commands/CreateFlowCommand.d.ts +15 -3
  68. package/dist-types/commands/CreateGatewayCommand.d.ts +93 -0
  69. package/dist-types/commands/DeleteBridgeCommand.d.ts +84 -0
  70. package/dist-types/commands/DeleteGatewayCommand.d.ts +84 -0
  71. package/dist-types/commands/DeregisterGatewayInstanceCommand.d.ts +85 -0
  72. package/dist-types/commands/DescribeBridgeCommand.d.ts +84 -0
  73. package/dist-types/commands/DescribeGatewayCommand.d.ts +84 -0
  74. package/dist-types/commands/DescribeGatewayInstanceCommand.d.ts +84 -0
  75. package/dist-types/commands/ListBridgesCommand.d.ts +80 -0
  76. package/dist-types/commands/ListGatewayInstancesCommand.d.ts +80 -0
  77. package/dist-types/commands/ListGatewaysCommand.d.ts +79 -0
  78. package/dist-types/commands/RemoveBridgeOutputCommand.d.ts +85 -0
  79. package/dist-types/commands/RemoveBridgeSourceCommand.d.ts +85 -0
  80. package/dist-types/commands/UpdateBridgeCommand.d.ts +99 -0
  81. package/dist-types/commands/UpdateBridgeOutputCommand.d.ts +92 -0
  82. package/dist-types/commands/UpdateBridgeSourceCommand.d.ts +97 -0
  83. package/dist-types/commands/UpdateBridgeStateCommand.d.ts +85 -0
  84. package/dist-types/commands/UpdateFlowOutputCommand.d.ts +1 -1
  85. package/dist-types/commands/UpdateFlowSourceCommand.d.ts +7 -1
  86. package/dist-types/commands/UpdateGatewayInstanceCommand.d.ts +85 -0
  87. package/dist-types/commands/index.d.ts +20 -0
  88. package/dist-types/models/models_0.d.ts +1340 -85
  89. package/dist-types/pagination/ListBridgesPaginator.d.ts +7 -0
  90. package/dist-types/pagination/ListGatewayInstancesPaginator.d.ts +7 -0
  91. package/dist-types/pagination/ListGatewaysPaginator.d.ts +7 -0
  92. package/dist-types/pagination/index.d.ts +3 -0
  93. package/dist-types/protocols/Aws_restJson1.d.ts +180 -0
  94. package/dist-types/ts3.4/MediaConnect.d.ts +340 -0
  95. package/dist-types/ts3.4/MediaConnectClient.d.ts +122 -2
  96. package/dist-types/ts3.4/commands/AddBridgeOutputsCommand.d.ts +37 -0
  97. package/dist-types/ts3.4/commands/AddBridgeSourcesCommand.d.ts +37 -0
  98. package/dist-types/ts3.4/commands/CreateBridgeCommand.d.ts +34 -0
  99. package/dist-types/ts3.4/commands/CreateGatewayCommand.d.ts +37 -0
  100. package/dist-types/ts3.4/commands/DeleteBridgeCommand.d.ts +34 -0
  101. package/dist-types/ts3.4/commands/DeleteGatewayCommand.d.ts +37 -0
  102. package/dist-types/ts3.4/commands/DeregisterGatewayInstanceCommand.d.ts +41 -0
  103. package/dist-types/ts3.4/commands/DescribeBridgeCommand.d.ts +37 -0
  104. package/dist-types/ts3.4/commands/DescribeGatewayCommand.d.ts +37 -0
  105. package/dist-types/ts3.4/commands/DescribeGatewayInstanceCommand.d.ts +41 -0
  106. package/dist-types/ts3.4/commands/ListBridgesCommand.d.ts +34 -0
  107. package/dist-types/ts3.4/commands/ListGatewayInstancesCommand.d.ts +41 -0
  108. package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +34 -0
  109. package/dist-types/ts3.4/commands/RemoveBridgeOutputCommand.d.ts +38 -0
  110. package/dist-types/ts3.4/commands/RemoveBridgeSourceCommand.d.ts +38 -0
  111. package/dist-types/ts3.4/commands/UpdateBridgeCommand.d.ts +34 -0
  112. package/dist-types/ts3.4/commands/UpdateBridgeOutputCommand.d.ts +38 -0
  113. package/dist-types/ts3.4/commands/UpdateBridgeSourceCommand.d.ts +38 -0
  114. package/dist-types/ts3.4/commands/UpdateBridgeStateCommand.d.ts +38 -0
  115. package/dist-types/ts3.4/commands/UpdateGatewayInstanceCommand.d.ts +41 -0
  116. package/dist-types/ts3.4/commands/index.d.ts +20 -0
  117. package/dist-types/ts3.4/models/models_0.d.ts +442 -33
  118. package/dist-types/ts3.4/pagination/ListBridgesPaginator.d.ts +11 -0
  119. package/dist-types/ts3.4/pagination/ListGatewayInstancesPaginator.d.ts +11 -0
  120. package/dist-types/ts3.4/pagination/ListGatewaysPaginator.d.ts +11 -0
  121. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  122. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +240 -0
  123. package/package.json +1 -1
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListBridgesCommandInput, ListBridgesCommandOutput } from "../commands/ListBridgesCommand";
3
+ import { MediaConnectPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListBridges(config: MediaConnectPaginationConfiguration, input: ListBridgesCommandInput, ...additionalArguments: any): Paginator<ListBridgesCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListGatewayInstancesCommandInput, ListGatewayInstancesCommandOutput } from "../commands/ListGatewayInstancesCommand";
3
+ import { MediaConnectPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListGatewayInstances(config: MediaConnectPaginationConfiguration, input: ListGatewayInstancesCommandInput, ...additionalArguments: any): Paginator<ListGatewayInstancesCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "../commands/ListGatewaysCommand";
3
+ import { MediaConnectPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListGateways(config: MediaConnectPaginationConfiguration, input: ListGatewaysCommandInput, ...additionalArguments: any): Paginator<ListGatewaysCommandOutput>;
@@ -1,5 +1,8 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListBridgesPaginator";
2
3
  export * from "./ListEntitlementsPaginator";
3
4
  export * from "./ListFlowsPaginator";
5
+ export * from "./ListGatewayInstancesPaginator";
6
+ export * from "./ListGatewaysPaginator";
4
7
  export * from "./ListOfferingsPaginator";
5
8
  export * from "./ListReservationsPaginator";
@@ -1,21 +1,36 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { AddBridgeOutputsCommandInput, AddBridgeOutputsCommandOutput } from "../commands/AddBridgeOutputsCommand";
4
+ import { AddBridgeSourcesCommandInput, AddBridgeSourcesCommandOutput } from "../commands/AddBridgeSourcesCommand";
3
5
  import { AddFlowMediaStreamsCommandInput, AddFlowMediaStreamsCommandOutput } from "../commands/AddFlowMediaStreamsCommand";
4
6
  import { AddFlowOutputsCommandInput, AddFlowOutputsCommandOutput } from "../commands/AddFlowOutputsCommand";
5
7
  import { AddFlowSourcesCommandInput, AddFlowSourcesCommandOutput } from "../commands/AddFlowSourcesCommand";
6
8
  import { AddFlowVpcInterfacesCommandInput, AddFlowVpcInterfacesCommandOutput } from "../commands/AddFlowVpcInterfacesCommand";
9
+ import { CreateBridgeCommandInput, CreateBridgeCommandOutput } from "../commands/CreateBridgeCommand";
7
10
  import { CreateFlowCommandInput, CreateFlowCommandOutput } from "../commands/CreateFlowCommand";
11
+ import { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "../commands/CreateGatewayCommand";
12
+ import { DeleteBridgeCommandInput, DeleteBridgeCommandOutput } from "../commands/DeleteBridgeCommand";
8
13
  import { DeleteFlowCommandInput, DeleteFlowCommandOutput } from "../commands/DeleteFlowCommand";
14
+ import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "../commands/DeleteGatewayCommand";
15
+ import { DeregisterGatewayInstanceCommandInput, DeregisterGatewayInstanceCommandOutput } from "../commands/DeregisterGatewayInstanceCommand";
16
+ import { DescribeBridgeCommandInput, DescribeBridgeCommandOutput } from "../commands/DescribeBridgeCommand";
9
17
  import { DescribeFlowCommandInput, DescribeFlowCommandOutput } from "../commands/DescribeFlowCommand";
18
+ import { DescribeGatewayCommandInput, DescribeGatewayCommandOutput } from "../commands/DescribeGatewayCommand";
19
+ import { DescribeGatewayInstanceCommandInput, DescribeGatewayInstanceCommandOutput } from "../commands/DescribeGatewayInstanceCommand";
10
20
  import { DescribeOfferingCommandInput, DescribeOfferingCommandOutput } from "../commands/DescribeOfferingCommand";
11
21
  import { DescribeReservationCommandInput, DescribeReservationCommandOutput } from "../commands/DescribeReservationCommand";
12
22
  import { GrantFlowEntitlementsCommandInput, GrantFlowEntitlementsCommandOutput } from "../commands/GrantFlowEntitlementsCommand";
23
+ import { ListBridgesCommandInput, ListBridgesCommandOutput } from "../commands/ListBridgesCommand";
13
24
  import { ListEntitlementsCommandInput, ListEntitlementsCommandOutput } from "../commands/ListEntitlementsCommand";
14
25
  import { ListFlowsCommandInput, ListFlowsCommandOutput } from "../commands/ListFlowsCommand";
26
+ import { ListGatewayInstancesCommandInput, ListGatewayInstancesCommandOutput } from "../commands/ListGatewayInstancesCommand";
27
+ import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "../commands/ListGatewaysCommand";
15
28
  import { ListOfferingsCommandInput, ListOfferingsCommandOutput } from "../commands/ListOfferingsCommand";
16
29
  import { ListReservationsCommandInput, ListReservationsCommandOutput } from "../commands/ListReservationsCommand";
17
30
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
18
31
  import { PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput } from "../commands/PurchaseOfferingCommand";
32
+ import { RemoveBridgeOutputCommandInput, RemoveBridgeOutputCommandOutput } from "../commands/RemoveBridgeOutputCommand";
33
+ import { RemoveBridgeSourceCommandInput, RemoveBridgeSourceCommandOutput } from "../commands/RemoveBridgeSourceCommand";
19
34
  import { RemoveFlowMediaStreamCommandInput, RemoveFlowMediaStreamCommandOutput } from "../commands/RemoveFlowMediaStreamCommand";
20
35
  import { RemoveFlowOutputCommandInput, RemoveFlowOutputCommandOutput } from "../commands/RemoveFlowOutputCommand";
21
36
  import { RemoveFlowSourceCommandInput, RemoveFlowSourceCommandOutput } from "../commands/RemoveFlowSourceCommand";
@@ -25,11 +40,24 @@ import { StartFlowCommandInput, StartFlowCommandOutput } from "../commands/Start
25
40
  import { StopFlowCommandInput, StopFlowCommandOutput } from "../commands/StopFlowCommand";
26
41
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
27
42
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
43
+ import { UpdateBridgeCommandInput, UpdateBridgeCommandOutput } from "../commands/UpdateBridgeCommand";
44
+ import { UpdateBridgeOutputCommandInput, UpdateBridgeOutputCommandOutput } from "../commands/UpdateBridgeOutputCommand";
45
+ import { UpdateBridgeSourceCommandInput, UpdateBridgeSourceCommandOutput } from "../commands/UpdateBridgeSourceCommand";
46
+ import { UpdateBridgeStateCommandInput, UpdateBridgeStateCommandOutput } from "../commands/UpdateBridgeStateCommand";
28
47
  import { UpdateFlowCommandInput, UpdateFlowCommandOutput } from "../commands/UpdateFlowCommand";
29
48
  import { UpdateFlowEntitlementCommandInput, UpdateFlowEntitlementCommandOutput } from "../commands/UpdateFlowEntitlementCommand";
30
49
  import { UpdateFlowMediaStreamCommandInput, UpdateFlowMediaStreamCommandOutput } from "../commands/UpdateFlowMediaStreamCommand";
31
50
  import { UpdateFlowOutputCommandInput, UpdateFlowOutputCommandOutput } from "../commands/UpdateFlowOutputCommand";
32
51
  import { UpdateFlowSourceCommandInput, UpdateFlowSourceCommandOutput } from "../commands/UpdateFlowSourceCommand";
52
+ import { UpdateGatewayInstanceCommandInput, UpdateGatewayInstanceCommandOutput } from "../commands/UpdateGatewayInstanceCommand";
53
+ /**
54
+ * serializeAws_restJson1AddBridgeOutputsCommand
55
+ */
56
+ export declare const se_AddBridgeOutputsCommand: (input: AddBridgeOutputsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
+ /**
58
+ * serializeAws_restJson1AddBridgeSourcesCommand
59
+ */
60
+ export declare const se_AddBridgeSourcesCommand: (input: AddBridgeSourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
61
  /**
34
62
  * serializeAws_restJson1AddFlowMediaStreamsCommand
35
63
  */
@@ -46,18 +74,50 @@ export declare const se_AddFlowSourcesCommand: (input: AddFlowSourcesCommandInpu
46
74
  * serializeAws_restJson1AddFlowVpcInterfacesCommand
47
75
  */
48
76
  export declare const se_AddFlowVpcInterfacesCommand: (input: AddFlowVpcInterfacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
77
+ /**
78
+ * serializeAws_restJson1CreateBridgeCommand
79
+ */
80
+ export declare const se_CreateBridgeCommand: (input: CreateBridgeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
81
  /**
50
82
  * serializeAws_restJson1CreateFlowCommand
51
83
  */
52
84
  export declare const se_CreateFlowCommand: (input: CreateFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
85
+ /**
86
+ * serializeAws_restJson1CreateGatewayCommand
87
+ */
88
+ export declare const se_CreateGatewayCommand: (input: CreateGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
89
+ /**
90
+ * serializeAws_restJson1DeleteBridgeCommand
91
+ */
92
+ export declare const se_DeleteBridgeCommand: (input: DeleteBridgeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
93
  /**
54
94
  * serializeAws_restJson1DeleteFlowCommand
55
95
  */
56
96
  export declare const se_DeleteFlowCommand: (input: DeleteFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
97
+ /**
98
+ * serializeAws_restJson1DeleteGatewayCommand
99
+ */
100
+ export declare const se_DeleteGatewayCommand: (input: DeleteGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
101
+ /**
102
+ * serializeAws_restJson1DeregisterGatewayInstanceCommand
103
+ */
104
+ export declare const se_DeregisterGatewayInstanceCommand: (input: DeregisterGatewayInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
105
+ /**
106
+ * serializeAws_restJson1DescribeBridgeCommand
107
+ */
108
+ export declare const se_DescribeBridgeCommand: (input: DescribeBridgeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
109
  /**
58
110
  * serializeAws_restJson1DescribeFlowCommand
59
111
  */
60
112
  export declare const se_DescribeFlowCommand: (input: DescribeFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
113
+ /**
114
+ * serializeAws_restJson1DescribeGatewayCommand
115
+ */
116
+ export declare const se_DescribeGatewayCommand: (input: DescribeGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
117
+ /**
118
+ * serializeAws_restJson1DescribeGatewayInstanceCommand
119
+ */
120
+ export declare const se_DescribeGatewayInstanceCommand: (input: DescribeGatewayInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
61
121
  /**
62
122
  * serializeAws_restJson1DescribeOfferingCommand
63
123
  */
@@ -70,6 +130,10 @@ export declare const se_DescribeReservationCommand: (input: DescribeReservationC
70
130
  * serializeAws_restJson1GrantFlowEntitlementsCommand
71
131
  */
72
132
  export declare const se_GrantFlowEntitlementsCommand: (input: GrantFlowEntitlementsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
133
+ /**
134
+ * serializeAws_restJson1ListBridgesCommand
135
+ */
136
+ export declare const se_ListBridgesCommand: (input: ListBridgesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
73
137
  /**
74
138
  * serializeAws_restJson1ListEntitlementsCommand
75
139
  */
@@ -78,6 +142,14 @@ export declare const se_ListEntitlementsCommand: (input: ListEntitlementsCommand
78
142
  * serializeAws_restJson1ListFlowsCommand
79
143
  */
80
144
  export declare const se_ListFlowsCommand: (input: ListFlowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
145
+ /**
146
+ * serializeAws_restJson1ListGatewayInstancesCommand
147
+ */
148
+ export declare const se_ListGatewayInstancesCommand: (input: ListGatewayInstancesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
149
+ /**
150
+ * serializeAws_restJson1ListGatewaysCommand
151
+ */
152
+ export declare const se_ListGatewaysCommand: (input: ListGatewaysCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
81
153
  /**
82
154
  * serializeAws_restJson1ListOfferingsCommand
83
155
  */
@@ -94,6 +166,14 @@ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceC
94
166
  * serializeAws_restJson1PurchaseOfferingCommand
95
167
  */
96
168
  export declare const se_PurchaseOfferingCommand: (input: PurchaseOfferingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
169
+ /**
170
+ * serializeAws_restJson1RemoveBridgeOutputCommand
171
+ */
172
+ export declare const se_RemoveBridgeOutputCommand: (input: RemoveBridgeOutputCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
173
+ /**
174
+ * serializeAws_restJson1RemoveBridgeSourceCommand
175
+ */
176
+ export declare const se_RemoveBridgeSourceCommand: (input: RemoveBridgeSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
97
177
  /**
98
178
  * serializeAws_restJson1RemoveFlowMediaStreamCommand
99
179
  */
@@ -130,6 +210,22 @@ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, con
130
210
  * serializeAws_restJson1UntagResourceCommand
131
211
  */
132
212
  export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
213
+ /**
214
+ * serializeAws_restJson1UpdateBridgeCommand
215
+ */
216
+ export declare const se_UpdateBridgeCommand: (input: UpdateBridgeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
217
+ /**
218
+ * serializeAws_restJson1UpdateBridgeOutputCommand
219
+ */
220
+ export declare const se_UpdateBridgeOutputCommand: (input: UpdateBridgeOutputCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
221
+ /**
222
+ * serializeAws_restJson1UpdateBridgeSourceCommand
223
+ */
224
+ export declare const se_UpdateBridgeSourceCommand: (input: UpdateBridgeSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
225
+ /**
226
+ * serializeAws_restJson1UpdateBridgeStateCommand
227
+ */
228
+ export declare const se_UpdateBridgeStateCommand: (input: UpdateBridgeStateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
133
229
  /**
134
230
  * serializeAws_restJson1UpdateFlowCommand
135
231
  */
@@ -150,6 +246,18 @@ export declare const se_UpdateFlowOutputCommand: (input: UpdateFlowOutputCommand
150
246
  * serializeAws_restJson1UpdateFlowSourceCommand
151
247
  */
152
248
  export declare const se_UpdateFlowSourceCommand: (input: UpdateFlowSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
249
+ /**
250
+ * serializeAws_restJson1UpdateGatewayInstanceCommand
251
+ */
252
+ export declare const se_UpdateGatewayInstanceCommand: (input: UpdateGatewayInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
253
+ /**
254
+ * deserializeAws_restJson1AddBridgeOutputsCommand
255
+ */
256
+ export declare const de_AddBridgeOutputsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddBridgeOutputsCommandOutput>;
257
+ /**
258
+ * deserializeAws_restJson1AddBridgeSourcesCommand
259
+ */
260
+ export declare const de_AddBridgeSourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddBridgeSourcesCommandOutput>;
153
261
  /**
154
262
  * deserializeAws_restJson1AddFlowMediaStreamsCommand
155
263
  */
@@ -166,18 +274,50 @@ export declare const de_AddFlowSourcesCommand: (output: __HttpResponse, context:
166
274
  * deserializeAws_restJson1AddFlowVpcInterfacesCommand
167
275
  */
168
276
  export declare const de_AddFlowVpcInterfacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddFlowVpcInterfacesCommandOutput>;
277
+ /**
278
+ * deserializeAws_restJson1CreateBridgeCommand
279
+ */
280
+ export declare const de_CreateBridgeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateBridgeCommandOutput>;
169
281
  /**
170
282
  * deserializeAws_restJson1CreateFlowCommand
171
283
  */
172
284
  export declare const de_CreateFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFlowCommandOutput>;
285
+ /**
286
+ * deserializeAws_restJson1CreateGatewayCommand
287
+ */
288
+ export declare const de_CreateGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGatewayCommandOutput>;
289
+ /**
290
+ * deserializeAws_restJson1DeleteBridgeCommand
291
+ */
292
+ export declare const de_DeleteBridgeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteBridgeCommandOutput>;
173
293
  /**
174
294
  * deserializeAws_restJson1DeleteFlowCommand
175
295
  */
176
296
  export declare const de_DeleteFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFlowCommandOutput>;
297
+ /**
298
+ * deserializeAws_restJson1DeleteGatewayCommand
299
+ */
300
+ export declare const de_DeleteGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGatewayCommandOutput>;
301
+ /**
302
+ * deserializeAws_restJson1DeregisterGatewayInstanceCommand
303
+ */
304
+ export declare const de_DeregisterGatewayInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterGatewayInstanceCommandOutput>;
305
+ /**
306
+ * deserializeAws_restJson1DescribeBridgeCommand
307
+ */
308
+ export declare const de_DescribeBridgeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeBridgeCommandOutput>;
177
309
  /**
178
310
  * deserializeAws_restJson1DescribeFlowCommand
179
311
  */
180
312
  export declare const de_DescribeFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFlowCommandOutput>;
313
+ /**
314
+ * deserializeAws_restJson1DescribeGatewayCommand
315
+ */
316
+ export declare const de_DescribeGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeGatewayCommandOutput>;
317
+ /**
318
+ * deserializeAws_restJson1DescribeGatewayInstanceCommand
319
+ */
320
+ export declare const de_DescribeGatewayInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeGatewayInstanceCommandOutput>;
181
321
  /**
182
322
  * deserializeAws_restJson1DescribeOfferingCommand
183
323
  */
@@ -190,6 +330,10 @@ export declare const de_DescribeReservationCommand: (output: __HttpResponse, con
190
330
  * deserializeAws_restJson1GrantFlowEntitlementsCommand
191
331
  */
192
332
  export declare const de_GrantFlowEntitlementsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GrantFlowEntitlementsCommandOutput>;
333
+ /**
334
+ * deserializeAws_restJson1ListBridgesCommand
335
+ */
336
+ export declare const de_ListBridgesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBridgesCommandOutput>;
193
337
  /**
194
338
  * deserializeAws_restJson1ListEntitlementsCommand
195
339
  */
@@ -198,6 +342,14 @@ export declare const de_ListEntitlementsCommand: (output: __HttpResponse, contex
198
342
  * deserializeAws_restJson1ListFlowsCommand
199
343
  */
200
344
  export declare const de_ListFlowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFlowsCommandOutput>;
345
+ /**
346
+ * deserializeAws_restJson1ListGatewayInstancesCommand
347
+ */
348
+ export declare const de_ListGatewayInstancesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGatewayInstancesCommandOutput>;
349
+ /**
350
+ * deserializeAws_restJson1ListGatewaysCommand
351
+ */
352
+ export declare const de_ListGatewaysCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGatewaysCommandOutput>;
201
353
  /**
202
354
  * deserializeAws_restJson1ListOfferingsCommand
203
355
  */
@@ -214,6 +366,14 @@ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, con
214
366
  * deserializeAws_restJson1PurchaseOfferingCommand
215
367
  */
216
368
  export declare const de_PurchaseOfferingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PurchaseOfferingCommandOutput>;
369
+ /**
370
+ * deserializeAws_restJson1RemoveBridgeOutputCommand
371
+ */
372
+ export declare const de_RemoveBridgeOutputCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemoveBridgeOutputCommandOutput>;
373
+ /**
374
+ * deserializeAws_restJson1RemoveBridgeSourceCommand
375
+ */
376
+ export declare const de_RemoveBridgeSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemoveBridgeSourceCommandOutput>;
217
377
  /**
218
378
  * deserializeAws_restJson1RemoveFlowMediaStreamCommand
219
379
  */
@@ -250,6 +410,22 @@ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __
250
410
  * deserializeAws_restJson1UntagResourceCommand
251
411
  */
252
412
  export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
413
+ /**
414
+ * deserializeAws_restJson1UpdateBridgeCommand
415
+ */
416
+ export declare const de_UpdateBridgeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateBridgeCommandOutput>;
417
+ /**
418
+ * deserializeAws_restJson1UpdateBridgeOutputCommand
419
+ */
420
+ export declare const de_UpdateBridgeOutputCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateBridgeOutputCommandOutput>;
421
+ /**
422
+ * deserializeAws_restJson1UpdateBridgeSourceCommand
423
+ */
424
+ export declare const de_UpdateBridgeSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateBridgeSourceCommandOutput>;
425
+ /**
426
+ * deserializeAws_restJson1UpdateBridgeStateCommand
427
+ */
428
+ export declare const de_UpdateBridgeStateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateBridgeStateCommandOutput>;
253
429
  /**
254
430
  * deserializeAws_restJson1UpdateFlowCommand
255
431
  */
@@ -270,3 +446,7 @@ export declare const de_UpdateFlowOutputCommand: (output: __HttpResponse, contex
270
446
  * deserializeAws_restJson1UpdateFlowSourceCommand
271
447
  */
272
448
  export declare const de_UpdateFlowSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFlowSourceCommandOutput>;
449
+ /**
450
+ * deserializeAws_restJson1UpdateGatewayInstanceCommand
451
+ */
452
+ export declare const de_UpdateGatewayInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateGatewayInstanceCommandOutput>;