@aws-sdk/client-mediaconnect 3.169.0 → 3.171.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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/MediaConnect.d.ts +514 -155
- package/dist-types/ts3.4/MediaConnectClient.d.ts +285 -103
- package/dist-types/ts3.4/commands/AddFlowMediaStreamsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/AddFlowOutputsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/AddFlowSourcesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/AddFlowVpcInterfacesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateFlowCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteFlowCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeFlowCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeOfferingCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeReservationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GrantFlowEntitlementsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListEntitlementsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListFlowsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListOfferingsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListReservationsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/PurchaseOfferingCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RemoveFlowMediaStreamCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/RemoveFlowOutputCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RemoveFlowSourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RemoveFlowVpcInterfaceCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/RevokeFlowEntitlementCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/StartFlowCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/StopFlowCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/UpdateFlowCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateFlowEntitlementCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateFlowMediaStreamCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateFlowOutputCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateFlowSourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +30 -30
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +7 -7
- package/dist-types/ts3.4/models/MediaConnectServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1061 -1450
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListEntitlementsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListFlowsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListOfferingsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListReservationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +365 -92
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/dist-types/ts3.4/waiters/index.d.ts +3 -3
- package/dist-types/ts3.4/waiters/waitForFlowActive.d.ts +11 -7
- package/dist-types/ts3.4/waiters/waitForFlowDeleted.d.ts +11 -7
- package/dist-types/ts3.4/waiters/waitForFlowStandby.d.ts +11 -7
- package/package.json +35 -35
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { MediaConnect } from "../MediaConnect";
|
|
3
|
-
import { MediaConnectClient } from "../MediaConnectClient";
|
|
4
|
-
export interface MediaConnectPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { MediaConnect } from "../MediaConnect";
|
|
3
|
+
import { MediaConnectClient } from "../MediaConnectClient";
|
|
4
|
+
export interface MediaConnectPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: MediaConnect | MediaConnectClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEntitlementsCommandInput,
|
|
4
|
+
ListEntitlementsCommandOutput,
|
|
5
|
+
} from "../commands/ListEntitlementsCommand";
|
|
6
|
+
import { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListEntitlements(
|
|
8
|
+
config: MediaConnectPaginationConfiguration,
|
|
9
|
+
input: ListEntitlementsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListEntitlementsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListFlowsCommandInput,
|
|
4
|
+
ListFlowsCommandOutput,
|
|
5
|
+
} from "../commands/ListFlowsCommand";
|
|
6
|
+
import { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListFlows(
|
|
8
|
+
config: MediaConnectPaginationConfiguration,
|
|
9
|
+
input: ListFlowsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListFlowsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListOfferingsCommandInput,
|
|
4
|
+
ListOfferingsCommandOutput,
|
|
5
|
+
} from "../commands/ListOfferingsCommand";
|
|
6
|
+
import { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListOfferings(
|
|
8
|
+
config: MediaConnectPaginationConfiguration,
|
|
9
|
+
input: ListOfferingsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListOfferingsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListReservationsCommandInput,
|
|
4
|
+
ListReservationsCommandOutput,
|
|
5
|
+
} from "../commands/ListReservationsCommand";
|
|
6
|
+
import { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListReservations(
|
|
8
|
+
config: MediaConnectPaginationConfiguration,
|
|
9
|
+
input: ListReservationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListReservationsCommandOutput>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListEntitlementsPaginator";
|
|
3
|
-
export * from "./ListFlowsPaginator";
|
|
4
|
-
export * from "./ListOfferingsPaginator";
|
|
5
|
-
export * from "./ListReservationsPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListEntitlementsPaginator";
|
|
3
|
+
export * from "./ListFlowsPaginator";
|
|
4
|
+
export * from "./ListOfferingsPaginator";
|
|
5
|
+
export * from "./ListReservationsPaginator";
|
|
@@ -1,92 +1,365 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
import {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
AddFlowMediaStreamsCommandInput,
|
|
8
|
+
AddFlowMediaStreamsCommandOutput,
|
|
9
|
+
} from "../commands/AddFlowMediaStreamsCommand";
|
|
10
|
+
import {
|
|
11
|
+
AddFlowOutputsCommandInput,
|
|
12
|
+
AddFlowOutputsCommandOutput,
|
|
13
|
+
} from "../commands/AddFlowOutputsCommand";
|
|
14
|
+
import {
|
|
15
|
+
AddFlowSourcesCommandInput,
|
|
16
|
+
AddFlowSourcesCommandOutput,
|
|
17
|
+
} from "../commands/AddFlowSourcesCommand";
|
|
18
|
+
import {
|
|
19
|
+
AddFlowVpcInterfacesCommandInput,
|
|
20
|
+
AddFlowVpcInterfacesCommandOutput,
|
|
21
|
+
} from "../commands/AddFlowVpcInterfacesCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateFlowCommandInput,
|
|
24
|
+
CreateFlowCommandOutput,
|
|
25
|
+
} from "../commands/CreateFlowCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteFlowCommandInput,
|
|
28
|
+
DeleteFlowCommandOutput,
|
|
29
|
+
} from "../commands/DeleteFlowCommand";
|
|
30
|
+
import {
|
|
31
|
+
DescribeFlowCommandInput,
|
|
32
|
+
DescribeFlowCommandOutput,
|
|
33
|
+
} from "../commands/DescribeFlowCommand";
|
|
34
|
+
import {
|
|
35
|
+
DescribeOfferingCommandInput,
|
|
36
|
+
DescribeOfferingCommandOutput,
|
|
37
|
+
} from "../commands/DescribeOfferingCommand";
|
|
38
|
+
import {
|
|
39
|
+
DescribeReservationCommandInput,
|
|
40
|
+
DescribeReservationCommandOutput,
|
|
41
|
+
} from "../commands/DescribeReservationCommand";
|
|
42
|
+
import {
|
|
43
|
+
GrantFlowEntitlementsCommandInput,
|
|
44
|
+
GrantFlowEntitlementsCommandOutput,
|
|
45
|
+
} from "../commands/GrantFlowEntitlementsCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListEntitlementsCommandInput,
|
|
48
|
+
ListEntitlementsCommandOutput,
|
|
49
|
+
} from "../commands/ListEntitlementsCommand";
|
|
50
|
+
import {
|
|
51
|
+
ListFlowsCommandInput,
|
|
52
|
+
ListFlowsCommandOutput,
|
|
53
|
+
} from "../commands/ListFlowsCommand";
|
|
54
|
+
import {
|
|
55
|
+
ListOfferingsCommandInput,
|
|
56
|
+
ListOfferingsCommandOutput,
|
|
57
|
+
} from "../commands/ListOfferingsCommand";
|
|
58
|
+
import {
|
|
59
|
+
ListReservationsCommandInput,
|
|
60
|
+
ListReservationsCommandOutput,
|
|
61
|
+
} from "../commands/ListReservationsCommand";
|
|
62
|
+
import {
|
|
63
|
+
ListTagsForResourceCommandInput,
|
|
64
|
+
ListTagsForResourceCommandOutput,
|
|
65
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
66
|
+
import {
|
|
67
|
+
PurchaseOfferingCommandInput,
|
|
68
|
+
PurchaseOfferingCommandOutput,
|
|
69
|
+
} from "../commands/PurchaseOfferingCommand";
|
|
70
|
+
import {
|
|
71
|
+
RemoveFlowMediaStreamCommandInput,
|
|
72
|
+
RemoveFlowMediaStreamCommandOutput,
|
|
73
|
+
} from "../commands/RemoveFlowMediaStreamCommand";
|
|
74
|
+
import {
|
|
75
|
+
RemoveFlowOutputCommandInput,
|
|
76
|
+
RemoveFlowOutputCommandOutput,
|
|
77
|
+
} from "../commands/RemoveFlowOutputCommand";
|
|
78
|
+
import {
|
|
79
|
+
RemoveFlowSourceCommandInput,
|
|
80
|
+
RemoveFlowSourceCommandOutput,
|
|
81
|
+
} from "../commands/RemoveFlowSourceCommand";
|
|
82
|
+
import {
|
|
83
|
+
RemoveFlowVpcInterfaceCommandInput,
|
|
84
|
+
RemoveFlowVpcInterfaceCommandOutput,
|
|
85
|
+
} from "../commands/RemoveFlowVpcInterfaceCommand";
|
|
86
|
+
import {
|
|
87
|
+
RevokeFlowEntitlementCommandInput,
|
|
88
|
+
RevokeFlowEntitlementCommandOutput,
|
|
89
|
+
} from "../commands/RevokeFlowEntitlementCommand";
|
|
90
|
+
import {
|
|
91
|
+
StartFlowCommandInput,
|
|
92
|
+
StartFlowCommandOutput,
|
|
93
|
+
} from "../commands/StartFlowCommand";
|
|
94
|
+
import {
|
|
95
|
+
StopFlowCommandInput,
|
|
96
|
+
StopFlowCommandOutput,
|
|
97
|
+
} from "../commands/StopFlowCommand";
|
|
98
|
+
import {
|
|
99
|
+
TagResourceCommandInput,
|
|
100
|
+
TagResourceCommandOutput,
|
|
101
|
+
} from "../commands/TagResourceCommand";
|
|
102
|
+
import {
|
|
103
|
+
UntagResourceCommandInput,
|
|
104
|
+
UntagResourceCommandOutput,
|
|
105
|
+
} from "../commands/UntagResourceCommand";
|
|
106
|
+
import {
|
|
107
|
+
UpdateFlowCommandInput,
|
|
108
|
+
UpdateFlowCommandOutput,
|
|
109
|
+
} from "../commands/UpdateFlowCommand";
|
|
110
|
+
import {
|
|
111
|
+
UpdateFlowEntitlementCommandInput,
|
|
112
|
+
UpdateFlowEntitlementCommandOutput,
|
|
113
|
+
} from "../commands/UpdateFlowEntitlementCommand";
|
|
114
|
+
import {
|
|
115
|
+
UpdateFlowMediaStreamCommandInput,
|
|
116
|
+
UpdateFlowMediaStreamCommandOutput,
|
|
117
|
+
} from "../commands/UpdateFlowMediaStreamCommand";
|
|
118
|
+
import {
|
|
119
|
+
UpdateFlowOutputCommandInput,
|
|
120
|
+
UpdateFlowOutputCommandOutput,
|
|
121
|
+
} from "../commands/UpdateFlowOutputCommand";
|
|
122
|
+
import {
|
|
123
|
+
UpdateFlowSourceCommandInput,
|
|
124
|
+
UpdateFlowSourceCommandOutput,
|
|
125
|
+
} from "../commands/UpdateFlowSourceCommand";
|
|
126
|
+
export declare const serializeAws_restJson1AddFlowMediaStreamsCommand: (
|
|
127
|
+
input: AddFlowMediaStreamsCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_restJson1AddFlowOutputsCommand: (
|
|
131
|
+
input: AddFlowOutputsCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_restJson1AddFlowSourcesCommand: (
|
|
135
|
+
input: AddFlowSourcesCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_restJson1AddFlowVpcInterfacesCommand: (
|
|
139
|
+
input: AddFlowVpcInterfacesCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_restJson1CreateFlowCommand: (
|
|
143
|
+
input: CreateFlowCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_restJson1DeleteFlowCommand: (
|
|
147
|
+
input: DeleteFlowCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_restJson1DescribeFlowCommand: (
|
|
151
|
+
input: DescribeFlowCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const serializeAws_restJson1DescribeOfferingCommand: (
|
|
155
|
+
input: DescribeOfferingCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const serializeAws_restJson1DescribeReservationCommand: (
|
|
159
|
+
input: DescribeReservationCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const serializeAws_restJson1GrantFlowEntitlementsCommand: (
|
|
163
|
+
input: GrantFlowEntitlementsCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const serializeAws_restJson1ListEntitlementsCommand: (
|
|
167
|
+
input: ListEntitlementsCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_restJson1ListFlowsCommand: (
|
|
171
|
+
input: ListFlowsCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const serializeAws_restJson1ListOfferingsCommand: (
|
|
175
|
+
input: ListOfferingsCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const serializeAws_restJson1ListReservationsCommand: (
|
|
179
|
+
input: ListReservationsCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const serializeAws_restJson1ListTagsForResourceCommand: (
|
|
183
|
+
input: ListTagsForResourceCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const serializeAws_restJson1PurchaseOfferingCommand: (
|
|
187
|
+
input: PurchaseOfferingCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const serializeAws_restJson1RemoveFlowMediaStreamCommand: (
|
|
191
|
+
input: RemoveFlowMediaStreamCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const serializeAws_restJson1RemoveFlowOutputCommand: (
|
|
195
|
+
input: RemoveFlowOutputCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const serializeAws_restJson1RemoveFlowSourceCommand: (
|
|
199
|
+
input: RemoveFlowSourceCommandInput,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const serializeAws_restJson1RemoveFlowVpcInterfaceCommand: (
|
|
203
|
+
input: RemoveFlowVpcInterfaceCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
206
|
+
export declare const serializeAws_restJson1RevokeFlowEntitlementCommand: (
|
|
207
|
+
input: RevokeFlowEntitlementCommandInput,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<__HttpRequest>;
|
|
210
|
+
export declare const serializeAws_restJson1StartFlowCommand: (
|
|
211
|
+
input: StartFlowCommandInput,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<__HttpRequest>;
|
|
214
|
+
export declare const serializeAws_restJson1StopFlowCommand: (
|
|
215
|
+
input: StopFlowCommandInput,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<__HttpRequest>;
|
|
218
|
+
export declare const serializeAws_restJson1TagResourceCommand: (
|
|
219
|
+
input: TagResourceCommandInput,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<__HttpRequest>;
|
|
222
|
+
export declare const serializeAws_restJson1UntagResourceCommand: (
|
|
223
|
+
input: UntagResourceCommandInput,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<__HttpRequest>;
|
|
226
|
+
export declare const serializeAws_restJson1UpdateFlowCommand: (
|
|
227
|
+
input: UpdateFlowCommandInput,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<__HttpRequest>;
|
|
230
|
+
export declare const serializeAws_restJson1UpdateFlowEntitlementCommand: (
|
|
231
|
+
input: UpdateFlowEntitlementCommandInput,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<__HttpRequest>;
|
|
234
|
+
export declare const serializeAws_restJson1UpdateFlowMediaStreamCommand: (
|
|
235
|
+
input: UpdateFlowMediaStreamCommandInput,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<__HttpRequest>;
|
|
238
|
+
export declare const serializeAws_restJson1UpdateFlowOutputCommand: (
|
|
239
|
+
input: UpdateFlowOutputCommandInput,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<__HttpRequest>;
|
|
242
|
+
export declare const serializeAws_restJson1UpdateFlowSourceCommand: (
|
|
243
|
+
input: UpdateFlowSourceCommandInput,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<__HttpRequest>;
|
|
246
|
+
export declare const deserializeAws_restJson1AddFlowMediaStreamsCommand: (
|
|
247
|
+
output: __HttpResponse,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<AddFlowMediaStreamsCommandOutput>;
|
|
250
|
+
export declare const deserializeAws_restJson1AddFlowOutputsCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<AddFlowOutputsCommandOutput>;
|
|
254
|
+
export declare const deserializeAws_restJson1AddFlowSourcesCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<AddFlowSourcesCommandOutput>;
|
|
258
|
+
export declare const deserializeAws_restJson1AddFlowVpcInterfacesCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<AddFlowVpcInterfacesCommandOutput>;
|
|
262
|
+
export declare const deserializeAws_restJson1CreateFlowCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<CreateFlowCommandOutput>;
|
|
266
|
+
export declare const deserializeAws_restJson1DeleteFlowCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<DeleteFlowCommandOutput>;
|
|
270
|
+
export declare const deserializeAws_restJson1DescribeFlowCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<DescribeFlowCommandOutput>;
|
|
274
|
+
export declare const deserializeAws_restJson1DescribeOfferingCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<DescribeOfferingCommandOutput>;
|
|
278
|
+
export declare const deserializeAws_restJson1DescribeReservationCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<DescribeReservationCommandOutput>;
|
|
282
|
+
export declare const deserializeAws_restJson1GrantFlowEntitlementsCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<GrantFlowEntitlementsCommandOutput>;
|
|
286
|
+
export declare const deserializeAws_restJson1ListEntitlementsCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<ListEntitlementsCommandOutput>;
|
|
290
|
+
export declare const deserializeAws_restJson1ListFlowsCommand: (
|
|
291
|
+
output: __HttpResponse,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<ListFlowsCommandOutput>;
|
|
294
|
+
export declare const deserializeAws_restJson1ListOfferingsCommand: (
|
|
295
|
+
output: __HttpResponse,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<ListOfferingsCommandOutput>;
|
|
298
|
+
export declare const deserializeAws_restJson1ListReservationsCommand: (
|
|
299
|
+
output: __HttpResponse,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<ListReservationsCommandOutput>;
|
|
302
|
+
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
|
|
303
|
+
output: __HttpResponse,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
306
|
+
export declare const deserializeAws_restJson1PurchaseOfferingCommand: (
|
|
307
|
+
output: __HttpResponse,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<PurchaseOfferingCommandOutput>;
|
|
310
|
+
export declare const deserializeAws_restJson1RemoveFlowMediaStreamCommand: (
|
|
311
|
+
output: __HttpResponse,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<RemoveFlowMediaStreamCommandOutput>;
|
|
314
|
+
export declare const deserializeAws_restJson1RemoveFlowOutputCommand: (
|
|
315
|
+
output: __HttpResponse,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<RemoveFlowOutputCommandOutput>;
|
|
318
|
+
export declare const deserializeAws_restJson1RemoveFlowSourceCommand: (
|
|
319
|
+
output: __HttpResponse,
|
|
320
|
+
context: __SerdeContext
|
|
321
|
+
) => Promise<RemoveFlowSourceCommandOutput>;
|
|
322
|
+
export declare const deserializeAws_restJson1RemoveFlowVpcInterfaceCommand: (
|
|
323
|
+
output: __HttpResponse,
|
|
324
|
+
context: __SerdeContext
|
|
325
|
+
) => Promise<RemoveFlowVpcInterfaceCommandOutput>;
|
|
326
|
+
export declare const deserializeAws_restJson1RevokeFlowEntitlementCommand: (
|
|
327
|
+
output: __HttpResponse,
|
|
328
|
+
context: __SerdeContext
|
|
329
|
+
) => Promise<RevokeFlowEntitlementCommandOutput>;
|
|
330
|
+
export declare const deserializeAws_restJson1StartFlowCommand: (
|
|
331
|
+
output: __HttpResponse,
|
|
332
|
+
context: __SerdeContext
|
|
333
|
+
) => Promise<StartFlowCommandOutput>;
|
|
334
|
+
export declare const deserializeAws_restJson1StopFlowCommand: (
|
|
335
|
+
output: __HttpResponse,
|
|
336
|
+
context: __SerdeContext
|
|
337
|
+
) => Promise<StopFlowCommandOutput>;
|
|
338
|
+
export declare const deserializeAws_restJson1TagResourceCommand: (
|
|
339
|
+
output: __HttpResponse,
|
|
340
|
+
context: __SerdeContext
|
|
341
|
+
) => Promise<TagResourceCommandOutput>;
|
|
342
|
+
export declare const deserializeAws_restJson1UntagResourceCommand: (
|
|
343
|
+
output: __HttpResponse,
|
|
344
|
+
context: __SerdeContext
|
|
345
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
346
|
+
export declare const deserializeAws_restJson1UpdateFlowCommand: (
|
|
347
|
+
output: __HttpResponse,
|
|
348
|
+
context: __SerdeContext
|
|
349
|
+
) => Promise<UpdateFlowCommandOutput>;
|
|
350
|
+
export declare const deserializeAws_restJson1UpdateFlowEntitlementCommand: (
|
|
351
|
+
output: __HttpResponse,
|
|
352
|
+
context: __SerdeContext
|
|
353
|
+
) => Promise<UpdateFlowEntitlementCommandOutput>;
|
|
354
|
+
export declare const deserializeAws_restJson1UpdateFlowMediaStreamCommand: (
|
|
355
|
+
output: __HttpResponse,
|
|
356
|
+
context: __SerdeContext
|
|
357
|
+
) => Promise<UpdateFlowMediaStreamCommandOutput>;
|
|
358
|
+
export declare const deserializeAws_restJson1UpdateFlowOutputCommand: (
|
|
359
|
+
output: __HttpResponse,
|
|
360
|
+
context: __SerdeContext
|
|
361
|
+
) => Promise<UpdateFlowOutputCommandOutput>;
|
|
362
|
+
export declare const deserializeAws_restJson1UpdateFlowSourceCommand: (
|
|
363
|
+
output: __HttpResponse,
|
|
364
|
+
context: __SerdeContext
|
|
365
|
+
) => Promise<UpdateFlowSourceCommandOutput>;
|