@aws-sdk/client-mediapackage 3.169.0 → 3.170.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 (39) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/MediaPackage.d.ts +343 -97
  3. package/dist-types/ts3.4/MediaPackageClient.d.ts +244 -92
  4. package/dist-types/ts3.4/commands/ConfigureLogsCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/CreateChannelCommand.d.ts +37 -17
  6. package/dist-types/ts3.4/commands/CreateHarvestJobCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/CreateOriginEndpointCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DeleteChannelCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DeleteOriginEndpointCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/DescribeChannelCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/DescribeHarvestJobCommand.d.ts +38 -17
  12. package/dist-types/ts3.4/commands/DescribeOriginEndpointCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/ListHarvestJobsCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/ListOriginEndpointsCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +37 -16
  17. package/dist-types/ts3.4/commands/RotateChannelCredentialsCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/RotateIngestEndpointCredentialsCommand.d.ts +41 -17
  19. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +31 -16
  20. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +31 -16
  21. package/dist-types/ts3.4/commands/UpdateChannelCommand.d.ts +37 -17
  22. package/dist-types/ts3.4/commands/UpdateOriginEndpointCommand.d.ts +41 -17
  23. package/dist-types/ts3.4/commands/index.d.ts +19 -19
  24. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  25. package/dist-types/ts3.4/index.d.ts +6 -6
  26. package/dist-types/ts3.4/models/MediaPackageServiceException.d.ts +8 -6
  27. package/dist-types/ts3.4/models/index.d.ts +1 -1
  28. package/dist-types/ts3.4/models/models_0.d.ts +1065 -1010
  29. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  30. package/dist-types/ts3.4/pagination/ListChannelsPaginator.d.ts +11 -4
  31. package/dist-types/ts3.4/pagination/ListHarvestJobsPaginator.d.ts +11 -4
  32. package/dist-types/ts3.4/pagination/ListOriginEndpointsPaginator.d.ts +11 -4
  33. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  34. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +233 -59
  35. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  36. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  37. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  38. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  39. package/package.json +34 -34
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { MediaPackage } from "../MediaPackage";
3
- import { MediaPackageClient } from "../MediaPackageClient";
4
- export interface MediaPackagePaginationConfiguration extends PaginationConfiguration {
5
- client: MediaPackage | MediaPackageClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { MediaPackage } from "../MediaPackage";
3
+ import { MediaPackageClient } from "../MediaPackageClient";
4
+ export interface MediaPackagePaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: MediaPackage | MediaPackageClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListChannelsCommandInput, ListChannelsCommandOutput } from "../commands/ListChannelsCommand";
3
- import { MediaPackagePaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListChannels(config: MediaPackagePaginationConfiguration, input: ListChannelsCommandInput, ...additionalArguments: any): Paginator<ListChannelsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListChannelsCommandInput,
4
+ ListChannelsCommandOutput,
5
+ } from "../commands/ListChannelsCommand";
6
+ import { MediaPackagePaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListChannels(
8
+ config: MediaPackagePaginationConfiguration,
9
+ input: ListChannelsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListChannelsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListHarvestJobsCommandInput, ListHarvestJobsCommandOutput } from "../commands/ListHarvestJobsCommand";
3
- import { MediaPackagePaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListHarvestJobs(config: MediaPackagePaginationConfiguration, input: ListHarvestJobsCommandInput, ...additionalArguments: any): Paginator<ListHarvestJobsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListHarvestJobsCommandInput,
4
+ ListHarvestJobsCommandOutput,
5
+ } from "../commands/ListHarvestJobsCommand";
6
+ import { MediaPackagePaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListHarvestJobs(
8
+ config: MediaPackagePaginationConfiguration,
9
+ input: ListHarvestJobsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListHarvestJobsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListOriginEndpointsCommandInput, ListOriginEndpointsCommandOutput } from "../commands/ListOriginEndpointsCommand";
3
- import { MediaPackagePaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListOriginEndpoints(config: MediaPackagePaginationConfiguration, input: ListOriginEndpointsCommandInput, ...additionalArguments: any): Paginator<ListOriginEndpointsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListOriginEndpointsCommandInput,
4
+ ListOriginEndpointsCommandOutput,
5
+ } from "../commands/ListOriginEndpointsCommand";
6
+ import { MediaPackagePaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListOriginEndpoints(
8
+ config: MediaPackagePaginationConfiguration,
9
+ input: ListOriginEndpointsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListOriginEndpointsCommandOutput>;
@@ -1,4 +1,4 @@
1
- export * from "./Interfaces";
2
- export * from "./ListChannelsPaginator";
3
- export * from "./ListHarvestJobsPaginator";
4
- export * from "./ListOriginEndpointsPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListChannelsPaginator";
3
+ export * from "./ListHarvestJobsPaginator";
4
+ export * from "./ListOriginEndpointsPaginator";
@@ -1,59 +1,233 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { ConfigureLogsCommandInput, ConfigureLogsCommandOutput } from "../commands/ConfigureLogsCommand";
4
- import { CreateChannelCommandInput, CreateChannelCommandOutput } from "../commands/CreateChannelCommand";
5
- import { CreateHarvestJobCommandInput, CreateHarvestJobCommandOutput } from "../commands/CreateHarvestJobCommand";
6
- import { CreateOriginEndpointCommandInput, CreateOriginEndpointCommandOutput } from "../commands/CreateOriginEndpointCommand";
7
- import { DeleteChannelCommandInput, DeleteChannelCommandOutput } from "../commands/DeleteChannelCommand";
8
- import { DeleteOriginEndpointCommandInput, DeleteOriginEndpointCommandOutput } from "../commands/DeleteOriginEndpointCommand";
9
- import { DescribeChannelCommandInput, DescribeChannelCommandOutput } from "../commands/DescribeChannelCommand";
10
- import { DescribeHarvestJobCommandInput, DescribeHarvestJobCommandOutput } from "../commands/DescribeHarvestJobCommand";
11
- import { DescribeOriginEndpointCommandInput, DescribeOriginEndpointCommandOutput } from "../commands/DescribeOriginEndpointCommand";
12
- import { ListChannelsCommandInput, ListChannelsCommandOutput } from "../commands/ListChannelsCommand";
13
- import { ListHarvestJobsCommandInput, ListHarvestJobsCommandOutput } from "../commands/ListHarvestJobsCommand";
14
- import { ListOriginEndpointsCommandInput, ListOriginEndpointsCommandOutput } from "../commands/ListOriginEndpointsCommand";
15
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
16
- import { RotateChannelCredentialsCommandInput, RotateChannelCredentialsCommandOutput } from "../commands/RotateChannelCredentialsCommand";
17
- import { RotateIngestEndpointCredentialsCommandInput, RotateIngestEndpointCredentialsCommandOutput } from "../commands/RotateIngestEndpointCredentialsCommand";
18
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
19
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
20
- import { UpdateChannelCommandInput, UpdateChannelCommandOutput } from "../commands/UpdateChannelCommand";
21
- import { UpdateOriginEndpointCommandInput, UpdateOriginEndpointCommandOutput } from "../commands/UpdateOriginEndpointCommand";
22
- export declare const serializeAws_restJson1ConfigureLogsCommand: (input: ConfigureLogsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
- export declare const serializeAws_restJson1CreateChannelCommand: (input: CreateChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
- export declare const serializeAws_restJson1CreateHarvestJobCommand: (input: CreateHarvestJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
- export declare const serializeAws_restJson1CreateOriginEndpointCommand: (input: CreateOriginEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
- export declare const serializeAws_restJson1DeleteChannelCommand: (input: DeleteChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
- export declare const serializeAws_restJson1DeleteOriginEndpointCommand: (input: DeleteOriginEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_restJson1DescribeChannelCommand: (input: DescribeChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const serializeAws_restJson1DescribeHarvestJobCommand: (input: DescribeHarvestJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- export declare const serializeAws_restJson1DescribeOriginEndpointCommand: (input: DescribeOriginEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const serializeAws_restJson1ListChannelsCommand: (input: ListChannelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_restJson1ListHarvestJobsCommand: (input: ListHarvestJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_restJson1ListOriginEndpointsCommand: (input: ListOriginEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_restJson1RotateChannelCredentialsCommand: (input: RotateChannelCredentialsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_restJson1RotateIngestEndpointCredentialsCommand: (input: RotateIngestEndpointCredentialsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_restJson1UpdateChannelCommand: (input: UpdateChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_restJson1UpdateOriginEndpointCommand: (input: UpdateOriginEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const deserializeAws_restJson1ConfigureLogsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ConfigureLogsCommandOutput>;
42
- export declare const deserializeAws_restJson1CreateChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateChannelCommandOutput>;
43
- export declare const deserializeAws_restJson1CreateHarvestJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateHarvestJobCommandOutput>;
44
- export declare const deserializeAws_restJson1CreateOriginEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateOriginEndpointCommandOutput>;
45
- export declare const deserializeAws_restJson1DeleteChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteChannelCommandOutput>;
46
- export declare const deserializeAws_restJson1DeleteOriginEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteOriginEndpointCommandOutput>;
47
- export declare const deserializeAws_restJson1DescribeChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeChannelCommandOutput>;
48
- export declare const deserializeAws_restJson1DescribeHarvestJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeHarvestJobCommandOutput>;
49
- export declare const deserializeAws_restJson1DescribeOriginEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeOriginEndpointCommandOutput>;
50
- export declare const deserializeAws_restJson1ListChannelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChannelsCommandOutput>;
51
- export declare const deserializeAws_restJson1ListHarvestJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListHarvestJobsCommandOutput>;
52
- export declare const deserializeAws_restJson1ListOriginEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOriginEndpointsCommandOutput>;
53
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
54
- export declare const deserializeAws_restJson1RotateChannelCredentialsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RotateChannelCredentialsCommandOutput>;
55
- export declare const deserializeAws_restJson1RotateIngestEndpointCredentialsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RotateIngestEndpointCredentialsCommandOutput>;
56
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
57
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
58
- export declare const deserializeAws_restJson1UpdateChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateChannelCommandOutput>;
59
- export declare const deserializeAws_restJson1UpdateOriginEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateOriginEndpointCommandOutput>;
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
+ ConfigureLogsCommandInput,
8
+ ConfigureLogsCommandOutput,
9
+ } from "../commands/ConfigureLogsCommand";
10
+ import {
11
+ CreateChannelCommandInput,
12
+ CreateChannelCommandOutput,
13
+ } from "../commands/CreateChannelCommand";
14
+ import {
15
+ CreateHarvestJobCommandInput,
16
+ CreateHarvestJobCommandOutput,
17
+ } from "../commands/CreateHarvestJobCommand";
18
+ import {
19
+ CreateOriginEndpointCommandInput,
20
+ CreateOriginEndpointCommandOutput,
21
+ } from "../commands/CreateOriginEndpointCommand";
22
+ import {
23
+ DeleteChannelCommandInput,
24
+ DeleteChannelCommandOutput,
25
+ } from "../commands/DeleteChannelCommand";
26
+ import {
27
+ DeleteOriginEndpointCommandInput,
28
+ DeleteOriginEndpointCommandOutput,
29
+ } from "../commands/DeleteOriginEndpointCommand";
30
+ import {
31
+ DescribeChannelCommandInput,
32
+ DescribeChannelCommandOutput,
33
+ } from "../commands/DescribeChannelCommand";
34
+ import {
35
+ DescribeHarvestJobCommandInput,
36
+ DescribeHarvestJobCommandOutput,
37
+ } from "../commands/DescribeHarvestJobCommand";
38
+ import {
39
+ DescribeOriginEndpointCommandInput,
40
+ DescribeOriginEndpointCommandOutput,
41
+ } from "../commands/DescribeOriginEndpointCommand";
42
+ import {
43
+ ListChannelsCommandInput,
44
+ ListChannelsCommandOutput,
45
+ } from "../commands/ListChannelsCommand";
46
+ import {
47
+ ListHarvestJobsCommandInput,
48
+ ListHarvestJobsCommandOutput,
49
+ } from "../commands/ListHarvestJobsCommand";
50
+ import {
51
+ ListOriginEndpointsCommandInput,
52
+ ListOriginEndpointsCommandOutput,
53
+ } from "../commands/ListOriginEndpointsCommand";
54
+ import {
55
+ ListTagsForResourceCommandInput,
56
+ ListTagsForResourceCommandOutput,
57
+ } from "../commands/ListTagsForResourceCommand";
58
+ import {
59
+ RotateChannelCredentialsCommandInput,
60
+ RotateChannelCredentialsCommandOutput,
61
+ } from "../commands/RotateChannelCredentialsCommand";
62
+ import {
63
+ RotateIngestEndpointCredentialsCommandInput,
64
+ RotateIngestEndpointCredentialsCommandOutput,
65
+ } from "../commands/RotateIngestEndpointCredentialsCommand";
66
+ import {
67
+ TagResourceCommandInput,
68
+ TagResourceCommandOutput,
69
+ } from "../commands/TagResourceCommand";
70
+ import {
71
+ UntagResourceCommandInput,
72
+ UntagResourceCommandOutput,
73
+ } from "../commands/UntagResourceCommand";
74
+ import {
75
+ UpdateChannelCommandInput,
76
+ UpdateChannelCommandOutput,
77
+ } from "../commands/UpdateChannelCommand";
78
+ import {
79
+ UpdateOriginEndpointCommandInput,
80
+ UpdateOriginEndpointCommandOutput,
81
+ } from "../commands/UpdateOriginEndpointCommand";
82
+ export declare const serializeAws_restJson1ConfigureLogsCommand: (
83
+ input: ConfigureLogsCommandInput,
84
+ context: __SerdeContext
85
+ ) => Promise<__HttpRequest>;
86
+ export declare const serializeAws_restJson1CreateChannelCommand: (
87
+ input: CreateChannelCommandInput,
88
+ context: __SerdeContext
89
+ ) => Promise<__HttpRequest>;
90
+ export declare const serializeAws_restJson1CreateHarvestJobCommand: (
91
+ input: CreateHarvestJobCommandInput,
92
+ context: __SerdeContext
93
+ ) => Promise<__HttpRequest>;
94
+ export declare const serializeAws_restJson1CreateOriginEndpointCommand: (
95
+ input: CreateOriginEndpointCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
98
+ export declare const serializeAws_restJson1DeleteChannelCommand: (
99
+ input: DeleteChannelCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const serializeAws_restJson1DeleteOriginEndpointCommand: (
103
+ input: DeleteOriginEndpointCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_restJson1DescribeChannelCommand: (
107
+ input: DescribeChannelCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const serializeAws_restJson1DescribeHarvestJobCommand: (
111
+ input: DescribeHarvestJobCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const serializeAws_restJson1DescribeOriginEndpointCommand: (
115
+ input: DescribeOriginEndpointCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const serializeAws_restJson1ListChannelsCommand: (
119
+ input: ListChannelsCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const serializeAws_restJson1ListHarvestJobsCommand: (
123
+ input: ListHarvestJobsCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_restJson1ListOriginEndpointsCommand: (
127
+ input: ListOriginEndpointsCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
131
+ input: ListTagsForResourceCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_restJson1RotateChannelCredentialsCommand: (
135
+ input: RotateChannelCredentialsCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_restJson1RotateIngestEndpointCredentialsCommand: (
139
+ input: RotateIngestEndpointCredentialsCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_restJson1TagResourceCommand: (
143
+ input: TagResourceCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const serializeAws_restJson1UntagResourceCommand: (
147
+ input: UntagResourceCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_restJson1UpdateChannelCommand: (
151
+ input: UpdateChannelCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_restJson1UpdateOriginEndpointCommand: (
155
+ input: UpdateOriginEndpointCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const deserializeAws_restJson1ConfigureLogsCommand: (
159
+ output: __HttpResponse,
160
+ context: __SerdeContext
161
+ ) => Promise<ConfigureLogsCommandOutput>;
162
+ export declare const deserializeAws_restJson1CreateChannelCommand: (
163
+ output: __HttpResponse,
164
+ context: __SerdeContext
165
+ ) => Promise<CreateChannelCommandOutput>;
166
+ export declare const deserializeAws_restJson1CreateHarvestJobCommand: (
167
+ output: __HttpResponse,
168
+ context: __SerdeContext
169
+ ) => Promise<CreateHarvestJobCommandOutput>;
170
+ export declare const deserializeAws_restJson1CreateOriginEndpointCommand: (
171
+ output: __HttpResponse,
172
+ context: __SerdeContext
173
+ ) => Promise<CreateOriginEndpointCommandOutput>;
174
+ export declare const deserializeAws_restJson1DeleteChannelCommand: (
175
+ output: __HttpResponse,
176
+ context: __SerdeContext
177
+ ) => Promise<DeleteChannelCommandOutput>;
178
+ export declare const deserializeAws_restJson1DeleteOriginEndpointCommand: (
179
+ output: __HttpResponse,
180
+ context: __SerdeContext
181
+ ) => Promise<DeleteOriginEndpointCommandOutput>;
182
+ export declare const deserializeAws_restJson1DescribeChannelCommand: (
183
+ output: __HttpResponse,
184
+ context: __SerdeContext
185
+ ) => Promise<DescribeChannelCommandOutput>;
186
+ export declare const deserializeAws_restJson1DescribeHarvestJobCommand: (
187
+ output: __HttpResponse,
188
+ context: __SerdeContext
189
+ ) => Promise<DescribeHarvestJobCommandOutput>;
190
+ export declare const deserializeAws_restJson1DescribeOriginEndpointCommand: (
191
+ output: __HttpResponse,
192
+ context: __SerdeContext
193
+ ) => Promise<DescribeOriginEndpointCommandOutput>;
194
+ export declare const deserializeAws_restJson1ListChannelsCommand: (
195
+ output: __HttpResponse,
196
+ context: __SerdeContext
197
+ ) => Promise<ListChannelsCommandOutput>;
198
+ export declare const deserializeAws_restJson1ListHarvestJobsCommand: (
199
+ output: __HttpResponse,
200
+ context: __SerdeContext
201
+ ) => Promise<ListHarvestJobsCommandOutput>;
202
+ export declare const deserializeAws_restJson1ListOriginEndpointsCommand: (
203
+ output: __HttpResponse,
204
+ context: __SerdeContext
205
+ ) => Promise<ListOriginEndpointsCommandOutput>;
206
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
207
+ output: __HttpResponse,
208
+ context: __SerdeContext
209
+ ) => Promise<ListTagsForResourceCommandOutput>;
210
+ export declare const deserializeAws_restJson1RotateChannelCredentialsCommand: (
211
+ output: __HttpResponse,
212
+ context: __SerdeContext
213
+ ) => Promise<RotateChannelCredentialsCommandOutput>;
214
+ export declare const deserializeAws_restJson1RotateIngestEndpointCredentialsCommand: (
215
+ output: __HttpResponse,
216
+ context: __SerdeContext
217
+ ) => Promise<RotateIngestEndpointCredentialsCommandOutput>;
218
+ export declare const deserializeAws_restJson1TagResourceCommand: (
219
+ output: __HttpResponse,
220
+ context: __SerdeContext
221
+ ) => Promise<TagResourceCommandOutput>;
222
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
223
+ output: __HttpResponse,
224
+ context: __SerdeContext
225
+ ) => Promise<UntagResourceCommandOutput>;
226
+ export declare const deserializeAws_restJson1UpdateChannelCommand: (
227
+ output: __HttpResponse,
228
+ context: __SerdeContext
229
+ ) => Promise<UpdateChannelCommandOutput>;
230
+ export declare const deserializeAws_restJson1UpdateOriginEndpointCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<UpdateOriginEndpointCommandOutput>;
@@ -1,38 +1,66 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { MediaPackageClientConfig } from "./MediaPackageClient";
3
-
4
- export declare const getRuntimeConfig: (config: MediaPackageClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { MediaPackageClientConfig } from "./MediaPackageClient";
3
+
4
+ export declare const getRuntimeConfig: (config: MediaPackageClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<
7
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
8
+ >;
9
+ base64Decoder: import("@aws-sdk/types").Decoder;
10
+ base64Encoder: import("@aws-sdk/types").Encoder;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
+ credentialDefaultProvider: (
13
+ input: any
14
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
15
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
16
+ import("@aws-sdk/types").UserAgent
17
+ >;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ region: string | import("@aws-sdk/types").Provider<any>;
20
+ requestHandler:
21
+ | (import("@aws-sdk/types").RequestHandler<
22
+ any,
23
+ any,
24
+ import("@aws-sdk/types").HttpHandlerOptions
25
+ > &
26
+ import("@aws-sdk/protocol-http").HttpHandler)
27
+ | RequestHandler;
28
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
29
+ sha256: import("@aws-sdk/types").HashConstructor;
30
+ streamCollector: import("@aws-sdk/types").StreamCollector;
31
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ utf8Decoder: import("@aws-sdk/types").Decoder;
34
+ utf8Encoder: import("@aws-sdk/types").Encoder;
35
+ apiVersion: string;
36
+ urlParser: import("@aws-sdk/types").UrlParser;
37
+ disableHostPrefix: boolean;
38
+ logger: import("@aws-sdk/types").Logger;
39
+ serviceId: string;
40
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
41
+ endpoint?:
42
+ | string
43
+ | import("@aws-sdk/types").Endpoint
44
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
45
+ | undefined;
46
+ tls?: boolean | undefined;
47
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
48
+ credentials?:
49
+ | import("@aws-sdk/types").Credentials
50
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
51
+ | undefined;
52
+ signer?:
53
+ | import("@aws-sdk/types").RequestSigner
54
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | undefined;
56
+ signingEscapePath?: boolean | undefined;
57
+ systemClockOffset?: number | undefined;
58
+ signingRegion?: string | undefined;
59
+ signerConstructor?:
60
+ | (new (
61
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
62
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
63
+ ) => import("@aws-sdk/types").RequestSigner)
64
+ | undefined;
65
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
66
+ };
@@ -1,38 +1,66 @@
1
- import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
- import { MediaPackageClientConfig } from "./MediaPackageClient";
3
-
4
- export declare const getRuntimeConfig: (config: MediaPackageClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<string>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { MediaPackageClientConfig } from "./MediaPackageClient";
3
+
4
+ export declare const getRuntimeConfig: (config: MediaPackageClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<
7
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
8
+ >;
9
+ base64Decoder: import("@aws-sdk/types").Decoder;
10
+ base64Encoder: import("@aws-sdk/types").Encoder;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
+ credentialDefaultProvider: (
13
+ input: any
14
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
15
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
16
+ import("@aws-sdk/types").UserAgent
17
+ >;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ region: string | import("@aws-sdk/types").Provider<string>;
20
+ requestHandler:
21
+ | (import("@aws-sdk/types").RequestHandler<
22
+ any,
23
+ any,
24
+ import("@aws-sdk/types").HttpHandlerOptions
25
+ > &
26
+ import("@aws-sdk/protocol-http").HttpHandler)
27
+ | RequestHandler;
28
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
29
+ sha256: import("@aws-sdk/types").HashConstructor;
30
+ streamCollector: import("@aws-sdk/types").StreamCollector;
31
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ utf8Decoder: import("@aws-sdk/types").Decoder;
34
+ utf8Encoder: import("@aws-sdk/types").Encoder;
35
+ apiVersion: string;
36
+ urlParser: import("@aws-sdk/types").UrlParser;
37
+ disableHostPrefix: boolean;
38
+ logger: import("@aws-sdk/types").Logger;
39
+ serviceId: string;
40
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
41
+ endpoint?:
42
+ | string
43
+ | import("@aws-sdk/types").Endpoint
44
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
45
+ | undefined;
46
+ tls?: boolean | undefined;
47
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
48
+ credentials?:
49
+ | import("@aws-sdk/types").Credentials
50
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
51
+ | undefined;
52
+ signer?:
53
+ | import("@aws-sdk/types").RequestSigner
54
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | undefined;
56
+ signingEscapePath?: boolean | undefined;
57
+ systemClockOffset?: number | undefined;
58
+ signingRegion?: string | undefined;
59
+ signerConstructor?:
60
+ | (new (
61
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
62
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
63
+ ) => import("@aws-sdk/types").RequestSigner)
64
+ | undefined;
65
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
66
+ };