@aws-sdk/client-mediapackagev2 3.928.0 → 3.930.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/dist-cjs/index.js +1832 -1616
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/MediaPackageV2Client.js +2 -0
- package/dist-es/commands/CancelHarvestJobCommand.js +3 -9
- package/dist-es/commands/CreateChannelCommand.js +3 -9
- package/dist-es/commands/CreateChannelGroupCommand.js +3 -9
- package/dist-es/commands/CreateHarvestJobCommand.js +3 -9
- package/dist-es/commands/CreateOriginEndpointCommand.js +3 -9
- package/dist-es/commands/DeleteChannelCommand.js +3 -9
- package/dist-es/commands/DeleteChannelGroupCommand.js +3 -9
- package/dist-es/commands/DeleteChannelPolicyCommand.js +3 -9
- package/dist-es/commands/DeleteOriginEndpointCommand.js +3 -9
- package/dist-es/commands/DeleteOriginEndpointPolicyCommand.js +3 -9
- package/dist-es/commands/GetChannelCommand.js +3 -9
- package/dist-es/commands/GetChannelGroupCommand.js +3 -9
- package/dist-es/commands/GetChannelPolicyCommand.js +3 -9
- package/dist-es/commands/GetHarvestJobCommand.js +3 -9
- package/dist-es/commands/GetOriginEndpointCommand.js +3 -9
- package/dist-es/commands/GetOriginEndpointPolicyCommand.js +3 -9
- package/dist-es/commands/ListChannelGroupsCommand.js +3 -9
- package/dist-es/commands/ListChannelsCommand.js +3 -9
- package/dist-es/commands/ListHarvestJobsCommand.js +3 -9
- package/dist-es/commands/ListOriginEndpointsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/PutChannelPolicyCommand.js +3 -9
- package/dist-es/commands/PutOriginEndpointPolicyCommand.js +3 -9
- package/dist-es/commands/ResetChannelStateCommand.js +3 -9
- package/dist-es/commands/ResetOriginEndpointStateCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateChannelCommand.js +3 -9
- package/dist-es/commands/UpdateChannelGroupCommand.js +3 -9
- package/dist-es/commands/UpdateOriginEndpointCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1773 -0
- package/dist-types/MediaPackageV2Client.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +174 -0
- package/dist-types/ts3.4/MediaPackageV2Client.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +179 -0
- package/package.json +34 -35
- package/dist-es/protocols/Aws_restJson1.js +0 -1402
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -272
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -365
|
@@ -1,272 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { CancelHarvestJobCommandInput, CancelHarvestJobCommandOutput } from "../commands/CancelHarvestJobCommand";
|
|
4
|
-
import { CreateChannelCommandInput, CreateChannelCommandOutput } from "../commands/CreateChannelCommand";
|
|
5
|
-
import { CreateChannelGroupCommandInput, CreateChannelGroupCommandOutput } from "../commands/CreateChannelGroupCommand";
|
|
6
|
-
import { CreateHarvestJobCommandInput, CreateHarvestJobCommandOutput } from "../commands/CreateHarvestJobCommand";
|
|
7
|
-
import { CreateOriginEndpointCommandInput, CreateOriginEndpointCommandOutput } from "../commands/CreateOriginEndpointCommand";
|
|
8
|
-
import { DeleteChannelCommandInput, DeleteChannelCommandOutput } from "../commands/DeleteChannelCommand";
|
|
9
|
-
import { DeleteChannelGroupCommandInput, DeleteChannelGroupCommandOutput } from "../commands/DeleteChannelGroupCommand";
|
|
10
|
-
import { DeleteChannelPolicyCommandInput, DeleteChannelPolicyCommandOutput } from "../commands/DeleteChannelPolicyCommand";
|
|
11
|
-
import { DeleteOriginEndpointCommandInput, DeleteOriginEndpointCommandOutput } from "../commands/DeleteOriginEndpointCommand";
|
|
12
|
-
import { DeleteOriginEndpointPolicyCommandInput, DeleteOriginEndpointPolicyCommandOutput } from "../commands/DeleteOriginEndpointPolicyCommand";
|
|
13
|
-
import { GetChannelCommandInput, GetChannelCommandOutput } from "../commands/GetChannelCommand";
|
|
14
|
-
import { GetChannelGroupCommandInput, GetChannelGroupCommandOutput } from "../commands/GetChannelGroupCommand";
|
|
15
|
-
import { GetChannelPolicyCommandInput, GetChannelPolicyCommandOutput } from "../commands/GetChannelPolicyCommand";
|
|
16
|
-
import { GetHarvestJobCommandInput, GetHarvestJobCommandOutput } from "../commands/GetHarvestJobCommand";
|
|
17
|
-
import { GetOriginEndpointCommandInput, GetOriginEndpointCommandOutput } from "../commands/GetOriginEndpointCommand";
|
|
18
|
-
import { GetOriginEndpointPolicyCommandInput, GetOriginEndpointPolicyCommandOutput } from "../commands/GetOriginEndpointPolicyCommand";
|
|
19
|
-
import { ListChannelGroupsCommandInput, ListChannelGroupsCommandOutput } from "../commands/ListChannelGroupsCommand";
|
|
20
|
-
import { ListChannelsCommandInput, ListChannelsCommandOutput } from "../commands/ListChannelsCommand";
|
|
21
|
-
import { ListHarvestJobsCommandInput, ListHarvestJobsCommandOutput } from "../commands/ListHarvestJobsCommand";
|
|
22
|
-
import { ListOriginEndpointsCommandInput, ListOriginEndpointsCommandOutput } from "../commands/ListOriginEndpointsCommand";
|
|
23
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
24
|
-
import { PutChannelPolicyCommandInput, PutChannelPolicyCommandOutput } from "../commands/PutChannelPolicyCommand";
|
|
25
|
-
import { PutOriginEndpointPolicyCommandInput, PutOriginEndpointPolicyCommandOutput } from "../commands/PutOriginEndpointPolicyCommand";
|
|
26
|
-
import { ResetChannelStateCommandInput, ResetChannelStateCommandOutput } from "../commands/ResetChannelStateCommand";
|
|
27
|
-
import { ResetOriginEndpointStateCommandInput, ResetOriginEndpointStateCommandOutput } from "../commands/ResetOriginEndpointStateCommand";
|
|
28
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
29
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
30
|
-
import { UpdateChannelCommandInput, UpdateChannelCommandOutput } from "../commands/UpdateChannelCommand";
|
|
31
|
-
import { UpdateChannelGroupCommandInput, UpdateChannelGroupCommandOutput } from "../commands/UpdateChannelGroupCommand";
|
|
32
|
-
import { UpdateOriginEndpointCommandInput, UpdateOriginEndpointCommandOutput } from "../commands/UpdateOriginEndpointCommand";
|
|
33
|
-
/**
|
|
34
|
-
* serializeAws_restJson1CancelHarvestJobCommand
|
|
35
|
-
*/
|
|
36
|
-
export declare const se_CancelHarvestJobCommand: (input: CancelHarvestJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
|
-
/**
|
|
38
|
-
* serializeAws_restJson1CreateChannelCommand
|
|
39
|
-
*/
|
|
40
|
-
export declare const se_CreateChannelCommand: (input: CreateChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
-
/**
|
|
42
|
-
* serializeAws_restJson1CreateChannelGroupCommand
|
|
43
|
-
*/
|
|
44
|
-
export declare const se_CreateChannelGroupCommand: (input: CreateChannelGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
|
-
/**
|
|
46
|
-
* serializeAws_restJson1CreateHarvestJobCommand
|
|
47
|
-
*/
|
|
48
|
-
export declare const se_CreateHarvestJobCommand: (input: CreateHarvestJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
|
-
/**
|
|
50
|
-
* serializeAws_restJson1CreateOriginEndpointCommand
|
|
51
|
-
*/
|
|
52
|
-
export declare const se_CreateOriginEndpointCommand: (input: CreateOriginEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
|
-
/**
|
|
54
|
-
* serializeAws_restJson1DeleteChannelCommand
|
|
55
|
-
*/
|
|
56
|
-
export declare const se_DeleteChannelCommand: (input: DeleteChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
|
-
/**
|
|
58
|
-
* serializeAws_restJson1DeleteChannelGroupCommand
|
|
59
|
-
*/
|
|
60
|
-
export declare const se_DeleteChannelGroupCommand: (input: DeleteChannelGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
|
-
/**
|
|
62
|
-
* serializeAws_restJson1DeleteChannelPolicyCommand
|
|
63
|
-
*/
|
|
64
|
-
export declare const se_DeleteChannelPolicyCommand: (input: DeleteChannelPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
|
-
/**
|
|
66
|
-
* serializeAws_restJson1DeleteOriginEndpointCommand
|
|
67
|
-
*/
|
|
68
|
-
export declare const se_DeleteOriginEndpointCommand: (input: DeleteOriginEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
|
-
/**
|
|
70
|
-
* serializeAws_restJson1DeleteOriginEndpointPolicyCommand
|
|
71
|
-
*/
|
|
72
|
-
export declare const se_DeleteOriginEndpointPolicyCommand: (input: DeleteOriginEndpointPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
|
-
/**
|
|
74
|
-
* serializeAws_restJson1GetChannelCommand
|
|
75
|
-
*/
|
|
76
|
-
export declare const se_GetChannelCommand: (input: GetChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
|
-
/**
|
|
78
|
-
* serializeAws_restJson1GetChannelGroupCommand
|
|
79
|
-
*/
|
|
80
|
-
export declare const se_GetChannelGroupCommand: (input: GetChannelGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
|
-
/**
|
|
82
|
-
* serializeAws_restJson1GetChannelPolicyCommand
|
|
83
|
-
*/
|
|
84
|
-
export declare const se_GetChannelPolicyCommand: (input: GetChannelPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
|
-
/**
|
|
86
|
-
* serializeAws_restJson1GetHarvestJobCommand
|
|
87
|
-
*/
|
|
88
|
-
export declare const se_GetHarvestJobCommand: (input: GetHarvestJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
|
-
/**
|
|
90
|
-
* serializeAws_restJson1GetOriginEndpointCommand
|
|
91
|
-
*/
|
|
92
|
-
export declare const se_GetOriginEndpointCommand: (input: GetOriginEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
|
-
/**
|
|
94
|
-
* serializeAws_restJson1GetOriginEndpointPolicyCommand
|
|
95
|
-
*/
|
|
96
|
-
export declare const se_GetOriginEndpointPolicyCommand: (input: GetOriginEndpointPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
|
-
/**
|
|
98
|
-
* serializeAws_restJson1ListChannelGroupsCommand
|
|
99
|
-
*/
|
|
100
|
-
export declare const se_ListChannelGroupsCommand: (input: ListChannelGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
101
|
-
/**
|
|
102
|
-
* serializeAws_restJson1ListChannelsCommand
|
|
103
|
-
*/
|
|
104
|
-
export declare const se_ListChannelsCommand: (input: ListChannelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
|
-
/**
|
|
106
|
-
* serializeAws_restJson1ListHarvestJobsCommand
|
|
107
|
-
*/
|
|
108
|
-
export declare const se_ListHarvestJobsCommand: (input: ListHarvestJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
|
-
/**
|
|
110
|
-
* serializeAws_restJson1ListOriginEndpointsCommand
|
|
111
|
-
*/
|
|
112
|
-
export declare const se_ListOriginEndpointsCommand: (input: ListOriginEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
113
|
-
/**
|
|
114
|
-
* serializeAws_restJson1ListTagsForResourceCommand
|
|
115
|
-
*/
|
|
116
|
-
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
117
|
-
/**
|
|
118
|
-
* serializeAws_restJson1PutChannelPolicyCommand
|
|
119
|
-
*/
|
|
120
|
-
export declare const se_PutChannelPolicyCommand: (input: PutChannelPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
121
|
-
/**
|
|
122
|
-
* serializeAws_restJson1PutOriginEndpointPolicyCommand
|
|
123
|
-
*/
|
|
124
|
-
export declare const se_PutOriginEndpointPolicyCommand: (input: PutOriginEndpointPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
125
|
-
/**
|
|
126
|
-
* serializeAws_restJson1ResetChannelStateCommand
|
|
127
|
-
*/
|
|
128
|
-
export declare const se_ResetChannelStateCommand: (input: ResetChannelStateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
129
|
-
/**
|
|
130
|
-
* serializeAws_restJson1ResetOriginEndpointStateCommand
|
|
131
|
-
*/
|
|
132
|
-
export declare const se_ResetOriginEndpointStateCommand: (input: ResetOriginEndpointStateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
133
|
-
/**
|
|
134
|
-
* serializeAws_restJson1TagResourceCommand
|
|
135
|
-
*/
|
|
136
|
-
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
137
|
-
/**
|
|
138
|
-
* serializeAws_restJson1UntagResourceCommand
|
|
139
|
-
*/
|
|
140
|
-
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
141
|
-
/**
|
|
142
|
-
* serializeAws_restJson1UpdateChannelCommand
|
|
143
|
-
*/
|
|
144
|
-
export declare const se_UpdateChannelCommand: (input: UpdateChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
145
|
-
/**
|
|
146
|
-
* serializeAws_restJson1UpdateChannelGroupCommand
|
|
147
|
-
*/
|
|
148
|
-
export declare const se_UpdateChannelGroupCommand: (input: UpdateChannelGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
149
|
-
/**
|
|
150
|
-
* serializeAws_restJson1UpdateOriginEndpointCommand
|
|
151
|
-
*/
|
|
152
|
-
export declare const se_UpdateOriginEndpointCommand: (input: UpdateOriginEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
153
|
-
/**
|
|
154
|
-
* deserializeAws_restJson1CancelHarvestJobCommand
|
|
155
|
-
*/
|
|
156
|
-
export declare const de_CancelHarvestJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelHarvestJobCommandOutput>;
|
|
157
|
-
/**
|
|
158
|
-
* deserializeAws_restJson1CreateChannelCommand
|
|
159
|
-
*/
|
|
160
|
-
export declare const de_CreateChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateChannelCommandOutput>;
|
|
161
|
-
/**
|
|
162
|
-
* deserializeAws_restJson1CreateChannelGroupCommand
|
|
163
|
-
*/
|
|
164
|
-
export declare const de_CreateChannelGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateChannelGroupCommandOutput>;
|
|
165
|
-
/**
|
|
166
|
-
* deserializeAws_restJson1CreateHarvestJobCommand
|
|
167
|
-
*/
|
|
168
|
-
export declare const de_CreateHarvestJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateHarvestJobCommandOutput>;
|
|
169
|
-
/**
|
|
170
|
-
* deserializeAws_restJson1CreateOriginEndpointCommand
|
|
171
|
-
*/
|
|
172
|
-
export declare const de_CreateOriginEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateOriginEndpointCommandOutput>;
|
|
173
|
-
/**
|
|
174
|
-
* deserializeAws_restJson1DeleteChannelCommand
|
|
175
|
-
*/
|
|
176
|
-
export declare const de_DeleteChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteChannelCommandOutput>;
|
|
177
|
-
/**
|
|
178
|
-
* deserializeAws_restJson1DeleteChannelGroupCommand
|
|
179
|
-
*/
|
|
180
|
-
export declare const de_DeleteChannelGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteChannelGroupCommandOutput>;
|
|
181
|
-
/**
|
|
182
|
-
* deserializeAws_restJson1DeleteChannelPolicyCommand
|
|
183
|
-
*/
|
|
184
|
-
export declare const de_DeleteChannelPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteChannelPolicyCommandOutput>;
|
|
185
|
-
/**
|
|
186
|
-
* deserializeAws_restJson1DeleteOriginEndpointCommand
|
|
187
|
-
*/
|
|
188
|
-
export declare const de_DeleteOriginEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteOriginEndpointCommandOutput>;
|
|
189
|
-
/**
|
|
190
|
-
* deserializeAws_restJson1DeleteOriginEndpointPolicyCommand
|
|
191
|
-
*/
|
|
192
|
-
export declare const de_DeleteOriginEndpointPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteOriginEndpointPolicyCommandOutput>;
|
|
193
|
-
/**
|
|
194
|
-
* deserializeAws_restJson1GetChannelCommand
|
|
195
|
-
*/
|
|
196
|
-
export declare const de_GetChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChannelCommandOutput>;
|
|
197
|
-
/**
|
|
198
|
-
* deserializeAws_restJson1GetChannelGroupCommand
|
|
199
|
-
*/
|
|
200
|
-
export declare const de_GetChannelGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChannelGroupCommandOutput>;
|
|
201
|
-
/**
|
|
202
|
-
* deserializeAws_restJson1GetChannelPolicyCommand
|
|
203
|
-
*/
|
|
204
|
-
export declare const de_GetChannelPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChannelPolicyCommandOutput>;
|
|
205
|
-
/**
|
|
206
|
-
* deserializeAws_restJson1GetHarvestJobCommand
|
|
207
|
-
*/
|
|
208
|
-
export declare const de_GetHarvestJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetHarvestJobCommandOutput>;
|
|
209
|
-
/**
|
|
210
|
-
* deserializeAws_restJson1GetOriginEndpointCommand
|
|
211
|
-
*/
|
|
212
|
-
export declare const de_GetOriginEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOriginEndpointCommandOutput>;
|
|
213
|
-
/**
|
|
214
|
-
* deserializeAws_restJson1GetOriginEndpointPolicyCommand
|
|
215
|
-
*/
|
|
216
|
-
export declare const de_GetOriginEndpointPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOriginEndpointPolicyCommandOutput>;
|
|
217
|
-
/**
|
|
218
|
-
* deserializeAws_restJson1ListChannelGroupsCommand
|
|
219
|
-
*/
|
|
220
|
-
export declare const de_ListChannelGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChannelGroupsCommandOutput>;
|
|
221
|
-
/**
|
|
222
|
-
* deserializeAws_restJson1ListChannelsCommand
|
|
223
|
-
*/
|
|
224
|
-
export declare const de_ListChannelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChannelsCommandOutput>;
|
|
225
|
-
/**
|
|
226
|
-
* deserializeAws_restJson1ListHarvestJobsCommand
|
|
227
|
-
*/
|
|
228
|
-
export declare const de_ListHarvestJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListHarvestJobsCommandOutput>;
|
|
229
|
-
/**
|
|
230
|
-
* deserializeAws_restJson1ListOriginEndpointsCommand
|
|
231
|
-
*/
|
|
232
|
-
export declare const de_ListOriginEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOriginEndpointsCommandOutput>;
|
|
233
|
-
/**
|
|
234
|
-
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
235
|
-
*/
|
|
236
|
-
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
237
|
-
/**
|
|
238
|
-
* deserializeAws_restJson1PutChannelPolicyCommand
|
|
239
|
-
*/
|
|
240
|
-
export declare const de_PutChannelPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutChannelPolicyCommandOutput>;
|
|
241
|
-
/**
|
|
242
|
-
* deserializeAws_restJson1PutOriginEndpointPolicyCommand
|
|
243
|
-
*/
|
|
244
|
-
export declare const de_PutOriginEndpointPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutOriginEndpointPolicyCommandOutput>;
|
|
245
|
-
/**
|
|
246
|
-
* deserializeAws_restJson1ResetChannelStateCommand
|
|
247
|
-
*/
|
|
248
|
-
export declare const de_ResetChannelStateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResetChannelStateCommandOutput>;
|
|
249
|
-
/**
|
|
250
|
-
* deserializeAws_restJson1ResetOriginEndpointStateCommand
|
|
251
|
-
*/
|
|
252
|
-
export declare const de_ResetOriginEndpointStateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResetOriginEndpointStateCommandOutput>;
|
|
253
|
-
/**
|
|
254
|
-
* deserializeAws_restJson1TagResourceCommand
|
|
255
|
-
*/
|
|
256
|
-
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
257
|
-
/**
|
|
258
|
-
* deserializeAws_restJson1UntagResourceCommand
|
|
259
|
-
*/
|
|
260
|
-
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
261
|
-
/**
|
|
262
|
-
* deserializeAws_restJson1UpdateChannelCommand
|
|
263
|
-
*/
|
|
264
|
-
export declare const de_UpdateChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateChannelCommandOutput>;
|
|
265
|
-
/**
|
|
266
|
-
* deserializeAws_restJson1UpdateChannelGroupCommand
|
|
267
|
-
*/
|
|
268
|
-
export declare const de_UpdateChannelGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateChannelGroupCommandOutput>;
|
|
269
|
-
/**
|
|
270
|
-
* deserializeAws_restJson1UpdateOriginEndpointCommand
|
|
271
|
-
*/
|
|
272
|
-
export declare const de_UpdateOriginEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateOriginEndpointCommandOutput>;
|
|
@@ -1,365 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
CancelHarvestJobCommandInput,
|
|
8
|
-
CancelHarvestJobCommandOutput,
|
|
9
|
-
} from "../commands/CancelHarvestJobCommand";
|
|
10
|
-
import {
|
|
11
|
-
CreateChannelCommandInput,
|
|
12
|
-
CreateChannelCommandOutput,
|
|
13
|
-
} from "../commands/CreateChannelCommand";
|
|
14
|
-
import {
|
|
15
|
-
CreateChannelGroupCommandInput,
|
|
16
|
-
CreateChannelGroupCommandOutput,
|
|
17
|
-
} from "../commands/CreateChannelGroupCommand";
|
|
18
|
-
import {
|
|
19
|
-
CreateHarvestJobCommandInput,
|
|
20
|
-
CreateHarvestJobCommandOutput,
|
|
21
|
-
} from "../commands/CreateHarvestJobCommand";
|
|
22
|
-
import {
|
|
23
|
-
CreateOriginEndpointCommandInput,
|
|
24
|
-
CreateOriginEndpointCommandOutput,
|
|
25
|
-
} from "../commands/CreateOriginEndpointCommand";
|
|
26
|
-
import {
|
|
27
|
-
DeleteChannelCommandInput,
|
|
28
|
-
DeleteChannelCommandOutput,
|
|
29
|
-
} from "../commands/DeleteChannelCommand";
|
|
30
|
-
import {
|
|
31
|
-
DeleteChannelGroupCommandInput,
|
|
32
|
-
DeleteChannelGroupCommandOutput,
|
|
33
|
-
} from "../commands/DeleteChannelGroupCommand";
|
|
34
|
-
import {
|
|
35
|
-
DeleteChannelPolicyCommandInput,
|
|
36
|
-
DeleteChannelPolicyCommandOutput,
|
|
37
|
-
} from "../commands/DeleteChannelPolicyCommand";
|
|
38
|
-
import {
|
|
39
|
-
DeleteOriginEndpointCommandInput,
|
|
40
|
-
DeleteOriginEndpointCommandOutput,
|
|
41
|
-
} from "../commands/DeleteOriginEndpointCommand";
|
|
42
|
-
import {
|
|
43
|
-
DeleteOriginEndpointPolicyCommandInput,
|
|
44
|
-
DeleteOriginEndpointPolicyCommandOutput,
|
|
45
|
-
} from "../commands/DeleteOriginEndpointPolicyCommand";
|
|
46
|
-
import {
|
|
47
|
-
GetChannelCommandInput,
|
|
48
|
-
GetChannelCommandOutput,
|
|
49
|
-
} from "../commands/GetChannelCommand";
|
|
50
|
-
import {
|
|
51
|
-
GetChannelGroupCommandInput,
|
|
52
|
-
GetChannelGroupCommandOutput,
|
|
53
|
-
} from "../commands/GetChannelGroupCommand";
|
|
54
|
-
import {
|
|
55
|
-
GetChannelPolicyCommandInput,
|
|
56
|
-
GetChannelPolicyCommandOutput,
|
|
57
|
-
} from "../commands/GetChannelPolicyCommand";
|
|
58
|
-
import {
|
|
59
|
-
GetHarvestJobCommandInput,
|
|
60
|
-
GetHarvestJobCommandOutput,
|
|
61
|
-
} from "../commands/GetHarvestJobCommand";
|
|
62
|
-
import {
|
|
63
|
-
GetOriginEndpointCommandInput,
|
|
64
|
-
GetOriginEndpointCommandOutput,
|
|
65
|
-
} from "../commands/GetOriginEndpointCommand";
|
|
66
|
-
import {
|
|
67
|
-
GetOriginEndpointPolicyCommandInput,
|
|
68
|
-
GetOriginEndpointPolicyCommandOutput,
|
|
69
|
-
} from "../commands/GetOriginEndpointPolicyCommand";
|
|
70
|
-
import {
|
|
71
|
-
ListChannelGroupsCommandInput,
|
|
72
|
-
ListChannelGroupsCommandOutput,
|
|
73
|
-
} from "../commands/ListChannelGroupsCommand";
|
|
74
|
-
import {
|
|
75
|
-
ListChannelsCommandInput,
|
|
76
|
-
ListChannelsCommandOutput,
|
|
77
|
-
} from "../commands/ListChannelsCommand";
|
|
78
|
-
import {
|
|
79
|
-
ListHarvestJobsCommandInput,
|
|
80
|
-
ListHarvestJobsCommandOutput,
|
|
81
|
-
} from "../commands/ListHarvestJobsCommand";
|
|
82
|
-
import {
|
|
83
|
-
ListOriginEndpointsCommandInput,
|
|
84
|
-
ListOriginEndpointsCommandOutput,
|
|
85
|
-
} from "../commands/ListOriginEndpointsCommand";
|
|
86
|
-
import {
|
|
87
|
-
ListTagsForResourceCommandInput,
|
|
88
|
-
ListTagsForResourceCommandOutput,
|
|
89
|
-
} from "../commands/ListTagsForResourceCommand";
|
|
90
|
-
import {
|
|
91
|
-
PutChannelPolicyCommandInput,
|
|
92
|
-
PutChannelPolicyCommandOutput,
|
|
93
|
-
} from "../commands/PutChannelPolicyCommand";
|
|
94
|
-
import {
|
|
95
|
-
PutOriginEndpointPolicyCommandInput,
|
|
96
|
-
PutOriginEndpointPolicyCommandOutput,
|
|
97
|
-
} from "../commands/PutOriginEndpointPolicyCommand";
|
|
98
|
-
import {
|
|
99
|
-
ResetChannelStateCommandInput,
|
|
100
|
-
ResetChannelStateCommandOutput,
|
|
101
|
-
} from "../commands/ResetChannelStateCommand";
|
|
102
|
-
import {
|
|
103
|
-
ResetOriginEndpointStateCommandInput,
|
|
104
|
-
ResetOriginEndpointStateCommandOutput,
|
|
105
|
-
} from "../commands/ResetOriginEndpointStateCommand";
|
|
106
|
-
import {
|
|
107
|
-
TagResourceCommandInput,
|
|
108
|
-
TagResourceCommandOutput,
|
|
109
|
-
} from "../commands/TagResourceCommand";
|
|
110
|
-
import {
|
|
111
|
-
UntagResourceCommandInput,
|
|
112
|
-
UntagResourceCommandOutput,
|
|
113
|
-
} from "../commands/UntagResourceCommand";
|
|
114
|
-
import {
|
|
115
|
-
UpdateChannelCommandInput,
|
|
116
|
-
UpdateChannelCommandOutput,
|
|
117
|
-
} from "../commands/UpdateChannelCommand";
|
|
118
|
-
import {
|
|
119
|
-
UpdateChannelGroupCommandInput,
|
|
120
|
-
UpdateChannelGroupCommandOutput,
|
|
121
|
-
} from "../commands/UpdateChannelGroupCommand";
|
|
122
|
-
import {
|
|
123
|
-
UpdateOriginEndpointCommandInput,
|
|
124
|
-
UpdateOriginEndpointCommandOutput,
|
|
125
|
-
} from "../commands/UpdateOriginEndpointCommand";
|
|
126
|
-
export declare const se_CancelHarvestJobCommand: (
|
|
127
|
-
input: CancelHarvestJobCommandInput,
|
|
128
|
-
context: __SerdeContext
|
|
129
|
-
) => Promise<__HttpRequest>;
|
|
130
|
-
export declare const se_CreateChannelCommand: (
|
|
131
|
-
input: CreateChannelCommandInput,
|
|
132
|
-
context: __SerdeContext
|
|
133
|
-
) => Promise<__HttpRequest>;
|
|
134
|
-
export declare const se_CreateChannelGroupCommand: (
|
|
135
|
-
input: CreateChannelGroupCommandInput,
|
|
136
|
-
context: __SerdeContext
|
|
137
|
-
) => Promise<__HttpRequest>;
|
|
138
|
-
export declare const se_CreateHarvestJobCommand: (
|
|
139
|
-
input: CreateHarvestJobCommandInput,
|
|
140
|
-
context: __SerdeContext
|
|
141
|
-
) => Promise<__HttpRequest>;
|
|
142
|
-
export declare const se_CreateOriginEndpointCommand: (
|
|
143
|
-
input: CreateOriginEndpointCommandInput,
|
|
144
|
-
context: __SerdeContext
|
|
145
|
-
) => Promise<__HttpRequest>;
|
|
146
|
-
export declare const se_DeleteChannelCommand: (
|
|
147
|
-
input: DeleteChannelCommandInput,
|
|
148
|
-
context: __SerdeContext
|
|
149
|
-
) => Promise<__HttpRequest>;
|
|
150
|
-
export declare const se_DeleteChannelGroupCommand: (
|
|
151
|
-
input: DeleteChannelGroupCommandInput,
|
|
152
|
-
context: __SerdeContext
|
|
153
|
-
) => Promise<__HttpRequest>;
|
|
154
|
-
export declare const se_DeleteChannelPolicyCommand: (
|
|
155
|
-
input: DeleteChannelPolicyCommandInput,
|
|
156
|
-
context: __SerdeContext
|
|
157
|
-
) => Promise<__HttpRequest>;
|
|
158
|
-
export declare const se_DeleteOriginEndpointCommand: (
|
|
159
|
-
input: DeleteOriginEndpointCommandInput,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<__HttpRequest>;
|
|
162
|
-
export declare const se_DeleteOriginEndpointPolicyCommand: (
|
|
163
|
-
input: DeleteOriginEndpointPolicyCommandInput,
|
|
164
|
-
context: __SerdeContext
|
|
165
|
-
) => Promise<__HttpRequest>;
|
|
166
|
-
export declare const se_GetChannelCommand: (
|
|
167
|
-
input: GetChannelCommandInput,
|
|
168
|
-
context: __SerdeContext
|
|
169
|
-
) => Promise<__HttpRequest>;
|
|
170
|
-
export declare const se_GetChannelGroupCommand: (
|
|
171
|
-
input: GetChannelGroupCommandInput,
|
|
172
|
-
context: __SerdeContext
|
|
173
|
-
) => Promise<__HttpRequest>;
|
|
174
|
-
export declare const se_GetChannelPolicyCommand: (
|
|
175
|
-
input: GetChannelPolicyCommandInput,
|
|
176
|
-
context: __SerdeContext
|
|
177
|
-
) => Promise<__HttpRequest>;
|
|
178
|
-
export declare const se_GetHarvestJobCommand: (
|
|
179
|
-
input: GetHarvestJobCommandInput,
|
|
180
|
-
context: __SerdeContext
|
|
181
|
-
) => Promise<__HttpRequest>;
|
|
182
|
-
export declare const se_GetOriginEndpointCommand: (
|
|
183
|
-
input: GetOriginEndpointCommandInput,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<__HttpRequest>;
|
|
186
|
-
export declare const se_GetOriginEndpointPolicyCommand: (
|
|
187
|
-
input: GetOriginEndpointPolicyCommandInput,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<__HttpRequest>;
|
|
190
|
-
export declare const se_ListChannelGroupsCommand: (
|
|
191
|
-
input: ListChannelGroupsCommandInput,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<__HttpRequest>;
|
|
194
|
-
export declare const se_ListChannelsCommand: (
|
|
195
|
-
input: ListChannelsCommandInput,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<__HttpRequest>;
|
|
198
|
-
export declare const se_ListHarvestJobsCommand: (
|
|
199
|
-
input: ListHarvestJobsCommandInput,
|
|
200
|
-
context: __SerdeContext
|
|
201
|
-
) => Promise<__HttpRequest>;
|
|
202
|
-
export declare const se_ListOriginEndpointsCommand: (
|
|
203
|
-
input: ListOriginEndpointsCommandInput,
|
|
204
|
-
context: __SerdeContext
|
|
205
|
-
) => Promise<__HttpRequest>;
|
|
206
|
-
export declare const se_ListTagsForResourceCommand: (
|
|
207
|
-
input: ListTagsForResourceCommandInput,
|
|
208
|
-
context: __SerdeContext
|
|
209
|
-
) => Promise<__HttpRequest>;
|
|
210
|
-
export declare const se_PutChannelPolicyCommand: (
|
|
211
|
-
input: PutChannelPolicyCommandInput,
|
|
212
|
-
context: __SerdeContext
|
|
213
|
-
) => Promise<__HttpRequest>;
|
|
214
|
-
export declare const se_PutOriginEndpointPolicyCommand: (
|
|
215
|
-
input: PutOriginEndpointPolicyCommandInput,
|
|
216
|
-
context: __SerdeContext
|
|
217
|
-
) => Promise<__HttpRequest>;
|
|
218
|
-
export declare const se_ResetChannelStateCommand: (
|
|
219
|
-
input: ResetChannelStateCommandInput,
|
|
220
|
-
context: __SerdeContext
|
|
221
|
-
) => Promise<__HttpRequest>;
|
|
222
|
-
export declare const se_ResetOriginEndpointStateCommand: (
|
|
223
|
-
input: ResetOriginEndpointStateCommandInput,
|
|
224
|
-
context: __SerdeContext
|
|
225
|
-
) => Promise<__HttpRequest>;
|
|
226
|
-
export declare const se_TagResourceCommand: (
|
|
227
|
-
input: TagResourceCommandInput,
|
|
228
|
-
context: __SerdeContext
|
|
229
|
-
) => Promise<__HttpRequest>;
|
|
230
|
-
export declare const se_UntagResourceCommand: (
|
|
231
|
-
input: UntagResourceCommandInput,
|
|
232
|
-
context: __SerdeContext
|
|
233
|
-
) => Promise<__HttpRequest>;
|
|
234
|
-
export declare const se_UpdateChannelCommand: (
|
|
235
|
-
input: UpdateChannelCommandInput,
|
|
236
|
-
context: __SerdeContext
|
|
237
|
-
) => Promise<__HttpRequest>;
|
|
238
|
-
export declare const se_UpdateChannelGroupCommand: (
|
|
239
|
-
input: UpdateChannelGroupCommandInput,
|
|
240
|
-
context: __SerdeContext
|
|
241
|
-
) => Promise<__HttpRequest>;
|
|
242
|
-
export declare const se_UpdateOriginEndpointCommand: (
|
|
243
|
-
input: UpdateOriginEndpointCommandInput,
|
|
244
|
-
context: __SerdeContext
|
|
245
|
-
) => Promise<__HttpRequest>;
|
|
246
|
-
export declare const de_CancelHarvestJobCommand: (
|
|
247
|
-
output: __HttpResponse,
|
|
248
|
-
context: __SerdeContext
|
|
249
|
-
) => Promise<CancelHarvestJobCommandOutput>;
|
|
250
|
-
export declare const de_CreateChannelCommand: (
|
|
251
|
-
output: __HttpResponse,
|
|
252
|
-
context: __SerdeContext
|
|
253
|
-
) => Promise<CreateChannelCommandOutput>;
|
|
254
|
-
export declare const de_CreateChannelGroupCommand: (
|
|
255
|
-
output: __HttpResponse,
|
|
256
|
-
context: __SerdeContext
|
|
257
|
-
) => Promise<CreateChannelGroupCommandOutput>;
|
|
258
|
-
export declare const de_CreateHarvestJobCommand: (
|
|
259
|
-
output: __HttpResponse,
|
|
260
|
-
context: __SerdeContext
|
|
261
|
-
) => Promise<CreateHarvestJobCommandOutput>;
|
|
262
|
-
export declare const de_CreateOriginEndpointCommand: (
|
|
263
|
-
output: __HttpResponse,
|
|
264
|
-
context: __SerdeContext
|
|
265
|
-
) => Promise<CreateOriginEndpointCommandOutput>;
|
|
266
|
-
export declare const de_DeleteChannelCommand: (
|
|
267
|
-
output: __HttpResponse,
|
|
268
|
-
context: __SerdeContext
|
|
269
|
-
) => Promise<DeleteChannelCommandOutput>;
|
|
270
|
-
export declare const de_DeleteChannelGroupCommand: (
|
|
271
|
-
output: __HttpResponse,
|
|
272
|
-
context: __SerdeContext
|
|
273
|
-
) => Promise<DeleteChannelGroupCommandOutput>;
|
|
274
|
-
export declare const de_DeleteChannelPolicyCommand: (
|
|
275
|
-
output: __HttpResponse,
|
|
276
|
-
context: __SerdeContext
|
|
277
|
-
) => Promise<DeleteChannelPolicyCommandOutput>;
|
|
278
|
-
export declare const de_DeleteOriginEndpointCommand: (
|
|
279
|
-
output: __HttpResponse,
|
|
280
|
-
context: __SerdeContext
|
|
281
|
-
) => Promise<DeleteOriginEndpointCommandOutput>;
|
|
282
|
-
export declare const de_DeleteOriginEndpointPolicyCommand: (
|
|
283
|
-
output: __HttpResponse,
|
|
284
|
-
context: __SerdeContext
|
|
285
|
-
) => Promise<DeleteOriginEndpointPolicyCommandOutput>;
|
|
286
|
-
export declare const de_GetChannelCommand: (
|
|
287
|
-
output: __HttpResponse,
|
|
288
|
-
context: __SerdeContext
|
|
289
|
-
) => Promise<GetChannelCommandOutput>;
|
|
290
|
-
export declare const de_GetChannelGroupCommand: (
|
|
291
|
-
output: __HttpResponse,
|
|
292
|
-
context: __SerdeContext
|
|
293
|
-
) => Promise<GetChannelGroupCommandOutput>;
|
|
294
|
-
export declare const de_GetChannelPolicyCommand: (
|
|
295
|
-
output: __HttpResponse,
|
|
296
|
-
context: __SerdeContext
|
|
297
|
-
) => Promise<GetChannelPolicyCommandOutput>;
|
|
298
|
-
export declare const de_GetHarvestJobCommand: (
|
|
299
|
-
output: __HttpResponse,
|
|
300
|
-
context: __SerdeContext
|
|
301
|
-
) => Promise<GetHarvestJobCommandOutput>;
|
|
302
|
-
export declare const de_GetOriginEndpointCommand: (
|
|
303
|
-
output: __HttpResponse,
|
|
304
|
-
context: __SerdeContext
|
|
305
|
-
) => Promise<GetOriginEndpointCommandOutput>;
|
|
306
|
-
export declare const de_GetOriginEndpointPolicyCommand: (
|
|
307
|
-
output: __HttpResponse,
|
|
308
|
-
context: __SerdeContext
|
|
309
|
-
) => Promise<GetOriginEndpointPolicyCommandOutput>;
|
|
310
|
-
export declare const de_ListChannelGroupsCommand: (
|
|
311
|
-
output: __HttpResponse,
|
|
312
|
-
context: __SerdeContext
|
|
313
|
-
) => Promise<ListChannelGroupsCommandOutput>;
|
|
314
|
-
export declare const de_ListChannelsCommand: (
|
|
315
|
-
output: __HttpResponse,
|
|
316
|
-
context: __SerdeContext
|
|
317
|
-
) => Promise<ListChannelsCommandOutput>;
|
|
318
|
-
export declare const de_ListHarvestJobsCommand: (
|
|
319
|
-
output: __HttpResponse,
|
|
320
|
-
context: __SerdeContext
|
|
321
|
-
) => Promise<ListHarvestJobsCommandOutput>;
|
|
322
|
-
export declare const de_ListOriginEndpointsCommand: (
|
|
323
|
-
output: __HttpResponse,
|
|
324
|
-
context: __SerdeContext
|
|
325
|
-
) => Promise<ListOriginEndpointsCommandOutput>;
|
|
326
|
-
export declare const de_ListTagsForResourceCommand: (
|
|
327
|
-
output: __HttpResponse,
|
|
328
|
-
context: __SerdeContext
|
|
329
|
-
) => Promise<ListTagsForResourceCommandOutput>;
|
|
330
|
-
export declare const de_PutChannelPolicyCommand: (
|
|
331
|
-
output: __HttpResponse,
|
|
332
|
-
context: __SerdeContext
|
|
333
|
-
) => Promise<PutChannelPolicyCommandOutput>;
|
|
334
|
-
export declare const de_PutOriginEndpointPolicyCommand: (
|
|
335
|
-
output: __HttpResponse,
|
|
336
|
-
context: __SerdeContext
|
|
337
|
-
) => Promise<PutOriginEndpointPolicyCommandOutput>;
|
|
338
|
-
export declare const de_ResetChannelStateCommand: (
|
|
339
|
-
output: __HttpResponse,
|
|
340
|
-
context: __SerdeContext
|
|
341
|
-
) => Promise<ResetChannelStateCommandOutput>;
|
|
342
|
-
export declare const de_ResetOriginEndpointStateCommand: (
|
|
343
|
-
output: __HttpResponse,
|
|
344
|
-
context: __SerdeContext
|
|
345
|
-
) => Promise<ResetOriginEndpointStateCommandOutput>;
|
|
346
|
-
export declare const de_TagResourceCommand: (
|
|
347
|
-
output: __HttpResponse,
|
|
348
|
-
context: __SerdeContext
|
|
349
|
-
) => Promise<TagResourceCommandOutput>;
|
|
350
|
-
export declare const de_UntagResourceCommand: (
|
|
351
|
-
output: __HttpResponse,
|
|
352
|
-
context: __SerdeContext
|
|
353
|
-
) => Promise<UntagResourceCommandOutput>;
|
|
354
|
-
export declare const de_UpdateChannelCommand: (
|
|
355
|
-
output: __HttpResponse,
|
|
356
|
-
context: __SerdeContext
|
|
357
|
-
) => Promise<UpdateChannelCommandOutput>;
|
|
358
|
-
export declare const de_UpdateChannelGroupCommand: (
|
|
359
|
-
output: __HttpResponse,
|
|
360
|
-
context: __SerdeContext
|
|
361
|
-
) => Promise<UpdateChannelGroupCommandOutput>;
|
|
362
|
-
export declare const de_UpdateOriginEndpointCommand: (
|
|
363
|
-
output: __HttpResponse,
|
|
364
|
-
context: __SerdeContext
|
|
365
|
-
) => Promise<UpdateOriginEndpointCommandOutput>;
|