@aws-sdk/client-mediapackage 3.168.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 +16 -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,92 +1,244 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { ConfigureLogsCommandInput, ConfigureLogsCommandOutput } from "./commands/ConfigureLogsCommand";
10
- import { CreateChannelCommandInput, CreateChannelCommandOutput } from "./commands/CreateChannelCommand";
11
- import { CreateHarvestJobCommandInput, CreateHarvestJobCommandOutput } from "./commands/CreateHarvestJobCommand";
12
- import { CreateOriginEndpointCommandInput, CreateOriginEndpointCommandOutput } from "./commands/CreateOriginEndpointCommand";
13
- import { DeleteChannelCommandInput, DeleteChannelCommandOutput } from "./commands/DeleteChannelCommand";
14
- import { DeleteOriginEndpointCommandInput, DeleteOriginEndpointCommandOutput } from "./commands/DeleteOriginEndpointCommand";
15
- import { DescribeChannelCommandInput, DescribeChannelCommandOutput } from "./commands/DescribeChannelCommand";
16
- import { DescribeHarvestJobCommandInput, DescribeHarvestJobCommandOutput } from "./commands/DescribeHarvestJobCommand";
17
- import { DescribeOriginEndpointCommandInput, DescribeOriginEndpointCommandOutput } from "./commands/DescribeOriginEndpointCommand";
18
- import { ListChannelsCommandInput, ListChannelsCommandOutput } from "./commands/ListChannelsCommand";
19
- import { ListHarvestJobsCommandInput, ListHarvestJobsCommandOutput } from "./commands/ListHarvestJobsCommand";
20
- import { ListOriginEndpointsCommandInput, ListOriginEndpointsCommandOutput } from "./commands/ListOriginEndpointsCommand";
21
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
22
- import { RotateChannelCredentialsCommandInput, RotateChannelCredentialsCommandOutput } from "./commands/RotateChannelCredentialsCommand";
23
- import { RotateIngestEndpointCredentialsCommandInput, RotateIngestEndpointCredentialsCommandOutput } from "./commands/RotateIngestEndpointCredentialsCommand";
24
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
25
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
26
- import { UpdateChannelCommandInput, UpdateChannelCommandOutput } from "./commands/UpdateChannelCommand";
27
- import { UpdateOriginEndpointCommandInput, UpdateOriginEndpointCommandOutput } from "./commands/UpdateOriginEndpointCommand";
28
- export declare type ServiceInputTypes = ConfigureLogsCommandInput | CreateChannelCommandInput | CreateHarvestJobCommandInput | CreateOriginEndpointCommandInput | DeleteChannelCommandInput | DeleteOriginEndpointCommandInput | DescribeChannelCommandInput | DescribeHarvestJobCommandInput | DescribeOriginEndpointCommandInput | ListChannelsCommandInput | ListHarvestJobsCommandInput | ListOriginEndpointsCommandInput | ListTagsForResourceCommandInput | RotateChannelCredentialsCommandInput | RotateIngestEndpointCredentialsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateChannelCommandInput | UpdateOriginEndpointCommandInput;
29
- export declare type ServiceOutputTypes = ConfigureLogsCommandOutput | CreateChannelCommandOutput | CreateHarvestJobCommandOutput | CreateOriginEndpointCommandOutput | DeleteChannelCommandOutput | DeleteOriginEndpointCommandOutput | DescribeChannelCommandOutput | DescribeHarvestJobCommandOutput | DescribeOriginEndpointCommandOutput | ListChannelsCommandOutput | ListHarvestJobsCommandOutput | ListOriginEndpointsCommandOutput | ListTagsForResourceCommandOutput | RotateChannelCredentialsCommandOutput | RotateIngestEndpointCredentialsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateChannelCommandOutput | UpdateOriginEndpointCommandOutput;
30
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
31
-
32
- requestHandler?: __HttpHandler;
33
-
34
- sha256?: __HashConstructor;
35
-
36
- urlParser?: __UrlParser;
37
-
38
- bodyLengthChecker?: __BodyLengthCalculator;
39
-
40
- streamCollector?: __StreamCollector;
41
-
42
- base64Decoder?: __Decoder;
43
-
44
- base64Encoder?: __Encoder;
45
-
46
- utf8Decoder?: __Decoder;
47
-
48
- utf8Encoder?: __Encoder;
49
-
50
- runtime?: string;
51
-
52
- disableHostPrefix?: boolean;
53
-
54
- maxAttempts?: number | __Provider<number>;
55
-
56
- retryMode?: string | __Provider<string>;
57
-
58
- logger?: __Logger;
59
-
60
- useDualstackEndpoint?: boolean | __Provider<boolean>;
61
-
62
- useFipsEndpoint?: boolean | __Provider<boolean>;
63
-
64
- serviceId?: string;
65
-
66
- region?: string | __Provider<string>;
67
-
68
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
69
-
70
- regionInfoProvider?: RegionInfoProvider;
71
-
72
- defaultUserAgentProvider?: Provider<__UserAgent>;
73
-
74
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
75
- }
76
- declare type MediaPackageClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
77
-
78
- export interface MediaPackageClientConfig extends MediaPackageClientConfigType {
79
- }
80
- declare type MediaPackageClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
81
-
82
- export interface MediaPackageClientResolvedConfig extends MediaPackageClientResolvedConfigType {
83
- }
84
-
85
- export declare class MediaPackageClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MediaPackageClientResolvedConfig> {
86
-
87
- readonly config: MediaPackageClientResolvedConfig;
88
- constructor(configuration: MediaPackageClientConfig);
89
-
90
- destroy(): void;
91
- }
92
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ ConfigureLogsCommandInput,
47
+ ConfigureLogsCommandOutput,
48
+ } from "./commands/ConfigureLogsCommand";
49
+ import {
50
+ CreateChannelCommandInput,
51
+ CreateChannelCommandOutput,
52
+ } from "./commands/CreateChannelCommand";
53
+ import {
54
+ CreateHarvestJobCommandInput,
55
+ CreateHarvestJobCommandOutput,
56
+ } from "./commands/CreateHarvestJobCommand";
57
+ import {
58
+ CreateOriginEndpointCommandInput,
59
+ CreateOriginEndpointCommandOutput,
60
+ } from "./commands/CreateOriginEndpointCommand";
61
+ import {
62
+ DeleteChannelCommandInput,
63
+ DeleteChannelCommandOutput,
64
+ } from "./commands/DeleteChannelCommand";
65
+ import {
66
+ DeleteOriginEndpointCommandInput,
67
+ DeleteOriginEndpointCommandOutput,
68
+ } from "./commands/DeleteOriginEndpointCommand";
69
+ import {
70
+ DescribeChannelCommandInput,
71
+ DescribeChannelCommandOutput,
72
+ } from "./commands/DescribeChannelCommand";
73
+ import {
74
+ DescribeHarvestJobCommandInput,
75
+ DescribeHarvestJobCommandOutput,
76
+ } from "./commands/DescribeHarvestJobCommand";
77
+ import {
78
+ DescribeOriginEndpointCommandInput,
79
+ DescribeOriginEndpointCommandOutput,
80
+ } from "./commands/DescribeOriginEndpointCommand";
81
+ import {
82
+ ListChannelsCommandInput,
83
+ ListChannelsCommandOutput,
84
+ } from "./commands/ListChannelsCommand";
85
+ import {
86
+ ListHarvestJobsCommandInput,
87
+ ListHarvestJobsCommandOutput,
88
+ } from "./commands/ListHarvestJobsCommand";
89
+ import {
90
+ ListOriginEndpointsCommandInput,
91
+ ListOriginEndpointsCommandOutput,
92
+ } from "./commands/ListOriginEndpointsCommand";
93
+ import {
94
+ ListTagsForResourceCommandInput,
95
+ ListTagsForResourceCommandOutput,
96
+ } from "./commands/ListTagsForResourceCommand";
97
+ import {
98
+ RotateChannelCredentialsCommandInput,
99
+ RotateChannelCredentialsCommandOutput,
100
+ } from "./commands/RotateChannelCredentialsCommand";
101
+ import {
102
+ RotateIngestEndpointCredentialsCommandInput,
103
+ RotateIngestEndpointCredentialsCommandOutput,
104
+ } from "./commands/RotateIngestEndpointCredentialsCommand";
105
+ import {
106
+ TagResourceCommandInput,
107
+ TagResourceCommandOutput,
108
+ } from "./commands/TagResourceCommand";
109
+ import {
110
+ UntagResourceCommandInput,
111
+ UntagResourceCommandOutput,
112
+ } from "./commands/UntagResourceCommand";
113
+ import {
114
+ UpdateChannelCommandInput,
115
+ UpdateChannelCommandOutput,
116
+ } from "./commands/UpdateChannelCommand";
117
+ import {
118
+ UpdateOriginEndpointCommandInput,
119
+ UpdateOriginEndpointCommandOutput,
120
+ } from "./commands/UpdateOriginEndpointCommand";
121
+ export declare type ServiceInputTypes =
122
+ | ConfigureLogsCommandInput
123
+ | CreateChannelCommandInput
124
+ | CreateHarvestJobCommandInput
125
+ | CreateOriginEndpointCommandInput
126
+ | DeleteChannelCommandInput
127
+ | DeleteOriginEndpointCommandInput
128
+ | DescribeChannelCommandInput
129
+ | DescribeHarvestJobCommandInput
130
+ | DescribeOriginEndpointCommandInput
131
+ | ListChannelsCommandInput
132
+ | ListHarvestJobsCommandInput
133
+ | ListOriginEndpointsCommandInput
134
+ | ListTagsForResourceCommandInput
135
+ | RotateChannelCredentialsCommandInput
136
+ | RotateIngestEndpointCredentialsCommandInput
137
+ | TagResourceCommandInput
138
+ | UntagResourceCommandInput
139
+ | UpdateChannelCommandInput
140
+ | UpdateOriginEndpointCommandInput;
141
+ export declare type ServiceOutputTypes =
142
+ | ConfigureLogsCommandOutput
143
+ | CreateChannelCommandOutput
144
+ | CreateHarvestJobCommandOutput
145
+ | CreateOriginEndpointCommandOutput
146
+ | DeleteChannelCommandOutput
147
+ | DeleteOriginEndpointCommandOutput
148
+ | DescribeChannelCommandOutput
149
+ | DescribeHarvestJobCommandOutput
150
+ | DescribeOriginEndpointCommandOutput
151
+ | ListChannelsCommandOutput
152
+ | ListHarvestJobsCommandOutput
153
+ | ListOriginEndpointsCommandOutput
154
+ | ListTagsForResourceCommandOutput
155
+ | RotateChannelCredentialsCommandOutput
156
+ | RotateIngestEndpointCredentialsCommandOutput
157
+ | TagResourceCommandOutput
158
+ | UntagResourceCommandOutput
159
+ | UpdateChannelCommandOutput
160
+ | UpdateOriginEndpointCommandOutput;
161
+ export interface ClientDefaults
162
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
163
+ requestHandler?: __HttpHandler;
164
+
165
+ sha256?: __HashConstructor;
166
+
167
+ urlParser?: __UrlParser;
168
+
169
+ bodyLengthChecker?: __BodyLengthCalculator;
170
+
171
+ streamCollector?: __StreamCollector;
172
+
173
+ base64Decoder?: __Decoder;
174
+
175
+ base64Encoder?: __Encoder;
176
+
177
+ utf8Decoder?: __Decoder;
178
+
179
+ utf8Encoder?: __Encoder;
180
+
181
+ runtime?: string;
182
+
183
+ disableHostPrefix?: boolean;
184
+
185
+ maxAttempts?: number | __Provider<number>;
186
+
187
+ retryMode?: string | __Provider<string>;
188
+
189
+ logger?: __Logger;
190
+
191
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
192
+
193
+ useFipsEndpoint?: boolean | __Provider<boolean>;
194
+
195
+ serviceId?: string;
196
+
197
+ region?: string | __Provider<string>;
198
+
199
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
200
+
201
+ regionInfoProvider?: RegionInfoProvider;
202
+
203
+ defaultUserAgentProvider?: Provider<__UserAgent>;
204
+
205
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
206
+ }
207
+ declare type MediaPackageClientConfigType = Partial<
208
+ __SmithyConfiguration<__HttpHandlerOptions>
209
+ > &
210
+ ClientDefaults &
211
+ RegionInputConfig &
212
+ EndpointsInputConfig &
213
+ RetryInputConfig &
214
+ HostHeaderInputConfig &
215
+ AwsAuthInputConfig &
216
+ UserAgentInputConfig;
217
+
218
+ export interface MediaPackageClientConfig
219
+ extends MediaPackageClientConfigType {}
220
+ declare type MediaPackageClientResolvedConfigType =
221
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
222
+ Required<ClientDefaults> &
223
+ RegionResolvedConfig &
224
+ EndpointsResolvedConfig &
225
+ RetryResolvedConfig &
226
+ HostHeaderResolvedConfig &
227
+ AwsAuthResolvedConfig &
228
+ UserAgentResolvedConfig;
229
+
230
+ export interface MediaPackageClientResolvedConfig
231
+ extends MediaPackageClientResolvedConfigType {}
232
+
233
+ export declare class MediaPackageClient extends __Client<
234
+ __HttpHandlerOptions,
235
+ ServiceInputTypes,
236
+ ServiceOutputTypes,
237
+ MediaPackageClientResolvedConfig
238
+ > {
239
+ readonly config: MediaPackageClientResolvedConfig;
240
+ constructor(configuration: MediaPackageClientConfig);
241
+
242
+ destroy(): void;
243
+ }
244
+ export {};
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
4
- import { ConfigureLogsRequest, ConfigureLogsResponse } from "../models/models_0";
5
- export interface ConfigureLogsCommandInput extends ConfigureLogsRequest {
6
- }
7
- export interface ConfigureLogsCommandOutput extends ConfigureLogsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ConfigureLogsCommand extends $Command<ConfigureLogsCommandInput, ConfigureLogsCommandOutput, MediaPackageClientResolvedConfig> {
11
- readonly input: ConfigureLogsCommandInput;
12
- constructor(input: ConfigureLogsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ConfigureLogsCommandInput, ConfigureLogsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaPackageClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaPackageClient";
13
+ import {
14
+ ConfigureLogsRequest,
15
+ ConfigureLogsResponse,
16
+ } from "../models/models_0";
17
+ export interface ConfigureLogsCommandInput extends ConfigureLogsRequest {}
18
+ export interface ConfigureLogsCommandOutput
19
+ extends ConfigureLogsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ConfigureLogsCommand extends $Command<
23
+ ConfigureLogsCommandInput,
24
+ ConfigureLogsCommandOutput,
25
+ MediaPackageClientResolvedConfig
26
+ > {
27
+ readonly input: ConfigureLogsCommandInput;
28
+ constructor(input: ConfigureLogsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: MediaPackageClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ConfigureLogsCommandInput, ConfigureLogsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
4
- import { CreateChannelRequest, CreateChannelResponse } from "../models/models_0";
5
- export interface CreateChannelCommandInput extends CreateChannelRequest {
6
- }
7
- export interface CreateChannelCommandOutput extends CreateChannelResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateChannelCommand extends $Command<CreateChannelCommandInput, CreateChannelCommandOutput, MediaPackageClientResolvedConfig> {
11
- readonly input: CreateChannelCommandInput;
12
- constructor(input: CreateChannelCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateChannelCommandInput, CreateChannelCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaPackageClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaPackageClient";
13
+ import {
14
+ CreateChannelRequest,
15
+ CreateChannelResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateChannelCommandInput extends CreateChannelRequest {}
18
+ export interface CreateChannelCommandOutput
19
+ extends CreateChannelResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class CreateChannelCommand extends $Command<
23
+ CreateChannelCommandInput,
24
+ CreateChannelCommandOutput,
25
+ MediaPackageClientResolvedConfig
26
+ > {
27
+ readonly input: CreateChannelCommandInput;
28
+ constructor(input: CreateChannelCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: MediaPackageClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<CreateChannelCommandInput, CreateChannelCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
4
- import { CreateHarvestJobRequest, CreateHarvestJobResponse } from "../models/models_0";
5
- export interface CreateHarvestJobCommandInput extends CreateHarvestJobRequest {
6
- }
7
- export interface CreateHarvestJobCommandOutput extends CreateHarvestJobResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateHarvestJobCommand extends $Command<CreateHarvestJobCommandInput, CreateHarvestJobCommandOutput, MediaPackageClientResolvedConfig> {
11
- readonly input: CreateHarvestJobCommandInput;
12
- constructor(input: CreateHarvestJobCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateHarvestJobCommandInput, CreateHarvestJobCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaPackageClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaPackageClient";
13
+ import {
14
+ CreateHarvestJobRequest,
15
+ CreateHarvestJobResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateHarvestJobCommandInput extends CreateHarvestJobRequest {}
18
+ export interface CreateHarvestJobCommandOutput
19
+ extends CreateHarvestJobResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class CreateHarvestJobCommand extends $Command<
23
+ CreateHarvestJobCommandInput,
24
+ CreateHarvestJobCommandOutput,
25
+ MediaPackageClientResolvedConfig
26
+ > {
27
+ readonly input: CreateHarvestJobCommandInput;
28
+ constructor(input: CreateHarvestJobCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: MediaPackageClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<CreateHarvestJobCommandInput, CreateHarvestJobCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
4
- import { CreateOriginEndpointRequest, CreateOriginEndpointResponse } from "../models/models_0";
5
- export interface CreateOriginEndpointCommandInput extends CreateOriginEndpointRequest {
6
- }
7
- export interface CreateOriginEndpointCommandOutput extends CreateOriginEndpointResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateOriginEndpointCommand extends $Command<CreateOriginEndpointCommandInput, CreateOriginEndpointCommandOutput, MediaPackageClientResolvedConfig> {
11
- readonly input: CreateOriginEndpointCommandInput;
12
- constructor(input: CreateOriginEndpointCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateOriginEndpointCommandInput, CreateOriginEndpointCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaPackageClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaPackageClient";
13
+ import {
14
+ CreateOriginEndpointRequest,
15
+ CreateOriginEndpointResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateOriginEndpointCommandInput
18
+ extends CreateOriginEndpointRequest {}
19
+ export interface CreateOriginEndpointCommandOutput
20
+ extends CreateOriginEndpointResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class CreateOriginEndpointCommand extends $Command<
24
+ CreateOriginEndpointCommandInput,
25
+ CreateOriginEndpointCommandOutput,
26
+ MediaPackageClientResolvedConfig
27
+ > {
28
+ readonly input: CreateOriginEndpointCommandInput;
29
+ constructor(input: CreateOriginEndpointCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaPackageClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ CreateOriginEndpointCommandInput,
37
+ CreateOriginEndpointCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
4
- import { DeleteChannelRequest, DeleteChannelResponse } from "../models/models_0";
5
- export interface DeleteChannelCommandInput extends DeleteChannelRequest {
6
- }
7
- export interface DeleteChannelCommandOutput extends DeleteChannelResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteChannelCommand extends $Command<DeleteChannelCommandInput, DeleteChannelCommandOutput, MediaPackageClientResolvedConfig> {
11
- readonly input: DeleteChannelCommandInput;
12
- constructor(input: DeleteChannelCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteChannelCommandInput, DeleteChannelCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaPackageClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaPackageClient";
13
+ import {
14
+ DeleteChannelRequest,
15
+ DeleteChannelResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteChannelCommandInput extends DeleteChannelRequest {}
18
+ export interface DeleteChannelCommandOutput
19
+ extends DeleteChannelResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DeleteChannelCommand extends $Command<
23
+ DeleteChannelCommandInput,
24
+ DeleteChannelCommandOutput,
25
+ MediaPackageClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteChannelCommandInput;
28
+ constructor(input: DeleteChannelCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: MediaPackageClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DeleteChannelCommandInput, DeleteChannelCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }