@aws-sdk/client-mediapackage-vod 3.169.0 → 3.171.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/MediaPackageVod.d.ts +293 -90
  3. package/dist-types/ts3.4/MediaPackageVodClient.d.ts +207 -90
  4. package/dist-types/ts3.4/commands/ConfigureLogsCommand.d.ts +35 -17
  5. package/dist-types/ts3.4/commands/CreateAssetCommand.d.ts +32 -17
  6. package/dist-types/ts3.4/commands/CreatePackagingConfigurationCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/CreatePackagingGroupCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/DeletePackagingConfigurationCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/DeletePackagingGroupCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DescribeAssetCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/DescribePackagingConfigurationCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/DescribePackagingGroupCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/ListPackagingConfigurationsCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/ListPackagingGroupsCommand.d.ts +36 -17
  17. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  18. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +30 -17
  19. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +30 -17
  20. package/dist-types/ts3.4/commands/UpdatePackagingGroupCommand.d.ts +39 -17
  21. package/dist-types/ts3.4/commands/index.d.ts +17 -17
  22. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  23. package/dist-types/ts3.4/index.d.ts +6 -6
  24. package/dist-types/ts3.4/models/MediaPackageVodServiceException.d.ts +7 -6
  25. package/dist-types/ts3.4/models/index.d.ts +1 -1
  26. package/dist-types/ts3.4/models/models_0.d.ts +494 -668
  27. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  28. package/dist-types/ts3.4/pagination/ListAssetsPaginator.d.ts +11 -4
  29. package/dist-types/ts3.4/pagination/ListPackagingConfigurationsPaginator.d.ts +11 -4
  30. package/dist-types/ts3.4/pagination/ListPackagingGroupsPaginator.d.ts +11 -4
  31. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  32. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +209 -53
  33. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
  34. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  35. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  36. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  37. package/package.json +34 -34
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { MediaPackageVod } from "../MediaPackageVod";
3
- import { MediaPackageVodClient } from "../MediaPackageVodClient";
4
- export interface MediaPackageVodPaginationConfiguration extends PaginationConfiguration {
5
- client: MediaPackageVod | MediaPackageVodClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { MediaPackageVod } from "../MediaPackageVod";
3
+ import { MediaPackageVodClient } from "../MediaPackageVodClient";
4
+ export interface MediaPackageVodPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: MediaPackageVod | MediaPackageVodClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListAssetsCommandInput, ListAssetsCommandOutput } from "../commands/ListAssetsCommand";
3
- import { MediaPackageVodPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListAssets(config: MediaPackageVodPaginationConfiguration, input: ListAssetsCommandInput, ...additionalArguments: any): Paginator<ListAssetsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListAssetsCommandInput,
4
+ ListAssetsCommandOutput,
5
+ } from "../commands/ListAssetsCommand";
6
+ import { MediaPackageVodPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListAssets(
8
+ config: MediaPackageVodPaginationConfiguration,
9
+ input: ListAssetsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListAssetsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListPackagingConfigurationsCommandInput, ListPackagingConfigurationsCommandOutput } from "../commands/ListPackagingConfigurationsCommand";
3
- import { MediaPackageVodPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListPackagingConfigurations(config: MediaPackageVodPaginationConfiguration, input: ListPackagingConfigurationsCommandInput, ...additionalArguments: any): Paginator<ListPackagingConfigurationsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListPackagingConfigurationsCommandInput,
4
+ ListPackagingConfigurationsCommandOutput,
5
+ } from "../commands/ListPackagingConfigurationsCommand";
6
+ import { MediaPackageVodPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListPackagingConfigurations(
8
+ config: MediaPackageVodPaginationConfiguration,
9
+ input: ListPackagingConfigurationsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListPackagingConfigurationsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListPackagingGroupsCommandInput, ListPackagingGroupsCommandOutput } from "../commands/ListPackagingGroupsCommand";
3
- import { MediaPackageVodPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListPackagingGroups(config: MediaPackageVodPaginationConfiguration, input: ListPackagingGroupsCommandInput, ...additionalArguments: any): Paginator<ListPackagingGroupsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListPackagingGroupsCommandInput,
4
+ ListPackagingGroupsCommandOutput,
5
+ } from "../commands/ListPackagingGroupsCommand";
6
+ import { MediaPackageVodPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListPackagingGroups(
8
+ config: MediaPackageVodPaginationConfiguration,
9
+ input: ListPackagingGroupsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListPackagingGroupsCommandOutput>;
@@ -1,4 +1,4 @@
1
- export * from "./Interfaces";
2
- export * from "./ListAssetsPaginator";
3
- export * from "./ListPackagingConfigurationsPaginator";
4
- export * from "./ListPackagingGroupsPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListAssetsPaginator";
3
+ export * from "./ListPackagingConfigurationsPaginator";
4
+ export * from "./ListPackagingGroupsPaginator";
@@ -1,53 +1,209 @@
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 { CreateAssetCommandInput, CreateAssetCommandOutput } from "../commands/CreateAssetCommand";
5
- import { CreatePackagingConfigurationCommandInput, CreatePackagingConfigurationCommandOutput } from "../commands/CreatePackagingConfigurationCommand";
6
- import { CreatePackagingGroupCommandInput, CreatePackagingGroupCommandOutput } from "../commands/CreatePackagingGroupCommand";
7
- import { DeleteAssetCommandInput, DeleteAssetCommandOutput } from "../commands/DeleteAssetCommand";
8
- import { DeletePackagingConfigurationCommandInput, DeletePackagingConfigurationCommandOutput } from "../commands/DeletePackagingConfigurationCommand";
9
- import { DeletePackagingGroupCommandInput, DeletePackagingGroupCommandOutput } from "../commands/DeletePackagingGroupCommand";
10
- import { DescribeAssetCommandInput, DescribeAssetCommandOutput } from "../commands/DescribeAssetCommand";
11
- import { DescribePackagingConfigurationCommandInput, DescribePackagingConfigurationCommandOutput } from "../commands/DescribePackagingConfigurationCommand";
12
- import { DescribePackagingGroupCommandInput, DescribePackagingGroupCommandOutput } from "../commands/DescribePackagingGroupCommand";
13
- import { ListAssetsCommandInput, ListAssetsCommandOutput } from "../commands/ListAssetsCommand";
14
- import { ListPackagingConfigurationsCommandInput, ListPackagingConfigurationsCommandOutput } from "../commands/ListPackagingConfigurationsCommand";
15
- import { ListPackagingGroupsCommandInput, ListPackagingGroupsCommandOutput } from "../commands/ListPackagingGroupsCommand";
16
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
17
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
18
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
19
- import { UpdatePackagingGroupCommandInput, UpdatePackagingGroupCommandOutput } from "../commands/UpdatePackagingGroupCommand";
20
- export declare const serializeAws_restJson1ConfigureLogsCommand: (input: ConfigureLogsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
- export declare const serializeAws_restJson1CreateAssetCommand: (input: CreateAssetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
- export declare const serializeAws_restJson1CreatePackagingConfigurationCommand: (input: CreatePackagingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
- export declare const serializeAws_restJson1CreatePackagingGroupCommand: (input: CreatePackagingGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
- export declare const serializeAws_restJson1DeleteAssetCommand: (input: DeleteAssetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
- export declare const serializeAws_restJson1DeletePackagingConfigurationCommand: (input: DeletePackagingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
- export declare const serializeAws_restJson1DeletePackagingGroupCommand: (input: DeletePackagingGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
- export declare const serializeAws_restJson1DescribeAssetCommand: (input: DescribeAssetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_restJson1DescribePackagingConfigurationCommand: (input: DescribePackagingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const serializeAws_restJson1DescribePackagingGroupCommand: (input: DescribePackagingGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- export declare const serializeAws_restJson1ListAssetsCommand: (input: ListAssetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const serializeAws_restJson1ListPackagingConfigurationsCommand: (input: ListPackagingConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_restJson1ListPackagingGroupsCommand: (input: ListPackagingGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_restJson1UpdatePackagingGroupCommand: (input: UpdatePackagingGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const deserializeAws_restJson1ConfigureLogsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ConfigureLogsCommandOutput>;
38
- export declare const deserializeAws_restJson1CreateAssetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAssetCommandOutput>;
39
- export declare const deserializeAws_restJson1CreatePackagingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePackagingConfigurationCommandOutput>;
40
- export declare const deserializeAws_restJson1CreatePackagingGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePackagingGroupCommandOutput>;
41
- export declare const deserializeAws_restJson1DeleteAssetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAssetCommandOutput>;
42
- export declare const deserializeAws_restJson1DeletePackagingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePackagingConfigurationCommandOutput>;
43
- export declare const deserializeAws_restJson1DeletePackagingGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePackagingGroupCommandOutput>;
44
- export declare const deserializeAws_restJson1DescribeAssetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAssetCommandOutput>;
45
- export declare const deserializeAws_restJson1DescribePackagingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribePackagingConfigurationCommandOutput>;
46
- export declare const deserializeAws_restJson1DescribePackagingGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribePackagingGroupCommandOutput>;
47
- export declare const deserializeAws_restJson1ListAssetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssetsCommandOutput>;
48
- export declare const deserializeAws_restJson1ListPackagingConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPackagingConfigurationsCommandOutput>;
49
- export declare const deserializeAws_restJson1ListPackagingGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPackagingGroupsCommandOutput>;
50
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
51
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
52
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
53
- export declare const deserializeAws_restJson1UpdatePackagingGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePackagingGroupCommandOutput>;
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
+ CreateAssetCommandInput,
12
+ CreateAssetCommandOutput,
13
+ } from "../commands/CreateAssetCommand";
14
+ import {
15
+ CreatePackagingConfigurationCommandInput,
16
+ CreatePackagingConfigurationCommandOutput,
17
+ } from "../commands/CreatePackagingConfigurationCommand";
18
+ import {
19
+ CreatePackagingGroupCommandInput,
20
+ CreatePackagingGroupCommandOutput,
21
+ } from "../commands/CreatePackagingGroupCommand";
22
+ import {
23
+ DeleteAssetCommandInput,
24
+ DeleteAssetCommandOutput,
25
+ } from "../commands/DeleteAssetCommand";
26
+ import {
27
+ DeletePackagingConfigurationCommandInput,
28
+ DeletePackagingConfigurationCommandOutput,
29
+ } from "../commands/DeletePackagingConfigurationCommand";
30
+ import {
31
+ DeletePackagingGroupCommandInput,
32
+ DeletePackagingGroupCommandOutput,
33
+ } from "../commands/DeletePackagingGroupCommand";
34
+ import {
35
+ DescribeAssetCommandInput,
36
+ DescribeAssetCommandOutput,
37
+ } from "../commands/DescribeAssetCommand";
38
+ import {
39
+ DescribePackagingConfigurationCommandInput,
40
+ DescribePackagingConfigurationCommandOutput,
41
+ } from "../commands/DescribePackagingConfigurationCommand";
42
+ import {
43
+ DescribePackagingGroupCommandInput,
44
+ DescribePackagingGroupCommandOutput,
45
+ } from "../commands/DescribePackagingGroupCommand";
46
+ import {
47
+ ListAssetsCommandInput,
48
+ ListAssetsCommandOutput,
49
+ } from "../commands/ListAssetsCommand";
50
+ import {
51
+ ListPackagingConfigurationsCommandInput,
52
+ ListPackagingConfigurationsCommandOutput,
53
+ } from "../commands/ListPackagingConfigurationsCommand";
54
+ import {
55
+ ListPackagingGroupsCommandInput,
56
+ ListPackagingGroupsCommandOutput,
57
+ } from "../commands/ListPackagingGroupsCommand";
58
+ import {
59
+ ListTagsForResourceCommandInput,
60
+ ListTagsForResourceCommandOutput,
61
+ } from "../commands/ListTagsForResourceCommand";
62
+ import {
63
+ TagResourceCommandInput,
64
+ TagResourceCommandOutput,
65
+ } from "../commands/TagResourceCommand";
66
+ import {
67
+ UntagResourceCommandInput,
68
+ UntagResourceCommandOutput,
69
+ } from "../commands/UntagResourceCommand";
70
+ import {
71
+ UpdatePackagingGroupCommandInput,
72
+ UpdatePackagingGroupCommandOutput,
73
+ } from "../commands/UpdatePackagingGroupCommand";
74
+ export declare const serializeAws_restJson1ConfigureLogsCommand: (
75
+ input: ConfigureLogsCommandInput,
76
+ context: __SerdeContext
77
+ ) => Promise<__HttpRequest>;
78
+ export declare const serializeAws_restJson1CreateAssetCommand: (
79
+ input: CreateAssetCommandInput,
80
+ context: __SerdeContext
81
+ ) => Promise<__HttpRequest>;
82
+ export declare const serializeAws_restJson1CreatePackagingConfigurationCommand: (
83
+ input: CreatePackagingConfigurationCommandInput,
84
+ context: __SerdeContext
85
+ ) => Promise<__HttpRequest>;
86
+ export declare const serializeAws_restJson1CreatePackagingGroupCommand: (
87
+ input: CreatePackagingGroupCommandInput,
88
+ context: __SerdeContext
89
+ ) => Promise<__HttpRequest>;
90
+ export declare const serializeAws_restJson1DeleteAssetCommand: (
91
+ input: DeleteAssetCommandInput,
92
+ context: __SerdeContext
93
+ ) => Promise<__HttpRequest>;
94
+ export declare const serializeAws_restJson1DeletePackagingConfigurationCommand: (
95
+ input: DeletePackagingConfigurationCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
98
+ export declare const serializeAws_restJson1DeletePackagingGroupCommand: (
99
+ input: DeletePackagingGroupCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const serializeAws_restJson1DescribeAssetCommand: (
103
+ input: DescribeAssetCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_restJson1DescribePackagingConfigurationCommand: (
107
+ input: DescribePackagingConfigurationCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const serializeAws_restJson1DescribePackagingGroupCommand: (
111
+ input: DescribePackagingGroupCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const serializeAws_restJson1ListAssetsCommand: (
115
+ input: ListAssetsCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const serializeAws_restJson1ListPackagingConfigurationsCommand: (
119
+ input: ListPackagingConfigurationsCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const serializeAws_restJson1ListPackagingGroupsCommand: (
123
+ input: ListPackagingGroupsCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
127
+ input: ListTagsForResourceCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_restJson1TagResourceCommand: (
131
+ input: TagResourceCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_restJson1UntagResourceCommand: (
135
+ input: UntagResourceCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_restJson1UpdatePackagingGroupCommand: (
139
+ input: UpdatePackagingGroupCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const deserializeAws_restJson1ConfigureLogsCommand: (
143
+ output: __HttpResponse,
144
+ context: __SerdeContext
145
+ ) => Promise<ConfigureLogsCommandOutput>;
146
+ export declare const deserializeAws_restJson1CreateAssetCommand: (
147
+ output: __HttpResponse,
148
+ context: __SerdeContext
149
+ ) => Promise<CreateAssetCommandOutput>;
150
+ export declare const deserializeAws_restJson1CreatePackagingConfigurationCommand: (
151
+ output: __HttpResponse,
152
+ context: __SerdeContext
153
+ ) => Promise<CreatePackagingConfigurationCommandOutput>;
154
+ export declare const deserializeAws_restJson1CreatePackagingGroupCommand: (
155
+ output: __HttpResponse,
156
+ context: __SerdeContext
157
+ ) => Promise<CreatePackagingGroupCommandOutput>;
158
+ export declare const deserializeAws_restJson1DeleteAssetCommand: (
159
+ output: __HttpResponse,
160
+ context: __SerdeContext
161
+ ) => Promise<DeleteAssetCommandOutput>;
162
+ export declare const deserializeAws_restJson1DeletePackagingConfigurationCommand: (
163
+ output: __HttpResponse,
164
+ context: __SerdeContext
165
+ ) => Promise<DeletePackagingConfigurationCommandOutput>;
166
+ export declare const deserializeAws_restJson1DeletePackagingGroupCommand: (
167
+ output: __HttpResponse,
168
+ context: __SerdeContext
169
+ ) => Promise<DeletePackagingGroupCommandOutput>;
170
+ export declare const deserializeAws_restJson1DescribeAssetCommand: (
171
+ output: __HttpResponse,
172
+ context: __SerdeContext
173
+ ) => Promise<DescribeAssetCommandOutput>;
174
+ export declare const deserializeAws_restJson1DescribePackagingConfigurationCommand: (
175
+ output: __HttpResponse,
176
+ context: __SerdeContext
177
+ ) => Promise<DescribePackagingConfigurationCommandOutput>;
178
+ export declare const deserializeAws_restJson1DescribePackagingGroupCommand: (
179
+ output: __HttpResponse,
180
+ context: __SerdeContext
181
+ ) => Promise<DescribePackagingGroupCommandOutput>;
182
+ export declare const deserializeAws_restJson1ListAssetsCommand: (
183
+ output: __HttpResponse,
184
+ context: __SerdeContext
185
+ ) => Promise<ListAssetsCommandOutput>;
186
+ export declare const deserializeAws_restJson1ListPackagingConfigurationsCommand: (
187
+ output: __HttpResponse,
188
+ context: __SerdeContext
189
+ ) => Promise<ListPackagingConfigurationsCommandOutput>;
190
+ export declare const deserializeAws_restJson1ListPackagingGroupsCommand: (
191
+ output: __HttpResponse,
192
+ context: __SerdeContext
193
+ ) => Promise<ListPackagingGroupsCommandOutput>;
194
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
195
+ output: __HttpResponse,
196
+ context: __SerdeContext
197
+ ) => Promise<ListTagsForResourceCommandOutput>;
198
+ export declare const deserializeAws_restJson1TagResourceCommand: (
199
+ output: __HttpResponse,
200
+ context: __SerdeContext
201
+ ) => Promise<TagResourceCommandOutput>;
202
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
203
+ output: __HttpResponse,
204
+ context: __SerdeContext
205
+ ) => Promise<UntagResourceCommandOutput>;
206
+ export declare const deserializeAws_restJson1UpdatePackagingGroupCommand: (
207
+ output: __HttpResponse,
208
+ context: __SerdeContext
209
+ ) => Promise<UpdatePackagingGroupCommandOutput>;
@@ -1,38 +1,67 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { MediaPackageVodClientConfig } from "./MediaPackageVodClient";
3
-
4
- export declare const getRuntimeConfig: (config: MediaPackageVodClientConfig) => {
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 { MediaPackageVodClientConfig } from "./MediaPackageVodClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: MediaPackageVodClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@aws-sdk/types").Provider<
8
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ base64Decoder: import("@aws-sdk/types").Decoder;
11
+ base64Encoder: import("@aws-sdk/types").Encoder;
12
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
13
+ credentialDefaultProvider: (
14
+ input: any
15
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
16
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
17
+ import("@aws-sdk/types").UserAgent
18
+ >;
19
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
20
+ region: string | import("@aws-sdk/types").Provider<any>;
21
+ requestHandler:
22
+ | (import("@aws-sdk/types").RequestHandler<
23
+ any,
24
+ any,
25
+ import("@aws-sdk/types").HttpHandlerOptions
26
+ > &
27
+ import("@aws-sdk/protocol-http").HttpHandler)
28
+ | RequestHandler;
29
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
30
+ sha256: import("@aws-sdk/types").HashConstructor;
31
+ streamCollector: import("@aws-sdk/types").StreamCollector;
32
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
34
+ utf8Decoder: import("@aws-sdk/types").Decoder;
35
+ utf8Encoder: import("@aws-sdk/types").Encoder;
36
+ apiVersion: string;
37
+ urlParser: import("@aws-sdk/types").UrlParser;
38
+ disableHostPrefix: boolean;
39
+ logger: import("@aws-sdk/types").Logger;
40
+ serviceId: string;
41
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
42
+ endpoint?:
43
+ | string
44
+ | import("@aws-sdk/types").Endpoint
45
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
46
+ | undefined;
47
+ tls?: boolean | undefined;
48
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
49
+ credentials?:
50
+ | import("@aws-sdk/types").Credentials
51
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
52
+ | undefined;
53
+ signer?:
54
+ | import("@aws-sdk/types").RequestSigner
55
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
56
+ | undefined;
57
+ signingEscapePath?: boolean | undefined;
58
+ systemClockOffset?: number | undefined;
59
+ signingRegion?: string | undefined;
60
+ signerConstructor?:
61
+ | (new (
62
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
63
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
64
+ ) => import("@aws-sdk/types").RequestSigner)
65
+ | undefined;
66
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
67
+ };
@@ -1,38 +1,67 @@
1
- import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
- import { MediaPackageVodClientConfig } from "./MediaPackageVodClient";
3
-
4
- export declare const getRuntimeConfig: (config: MediaPackageVodClientConfig) => {
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 { MediaPackageVodClientConfig } from "./MediaPackageVodClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: MediaPackageVodClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@aws-sdk/types").Provider<
8
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ base64Decoder: import("@aws-sdk/types").Decoder;
11
+ base64Encoder: import("@aws-sdk/types").Encoder;
12
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
13
+ credentialDefaultProvider: (
14
+ input: any
15
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
16
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
17
+ import("@aws-sdk/types").UserAgent
18
+ >;
19
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
20
+ region: string | import("@aws-sdk/types").Provider<string>;
21
+ requestHandler:
22
+ | (import("@aws-sdk/types").RequestHandler<
23
+ any,
24
+ any,
25
+ import("@aws-sdk/types").HttpHandlerOptions
26
+ > &
27
+ import("@aws-sdk/protocol-http").HttpHandler)
28
+ | RequestHandler;
29
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
30
+ sha256: import("@aws-sdk/types").HashConstructor;
31
+ streamCollector: import("@aws-sdk/types").StreamCollector;
32
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
34
+ utf8Decoder: import("@aws-sdk/types").Decoder;
35
+ utf8Encoder: import("@aws-sdk/types").Encoder;
36
+ apiVersion: string;
37
+ urlParser: import("@aws-sdk/types").UrlParser;
38
+ disableHostPrefix: boolean;
39
+ logger: import("@aws-sdk/types").Logger;
40
+ serviceId: string;
41
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
42
+ endpoint?:
43
+ | string
44
+ | import("@aws-sdk/types").Endpoint
45
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
46
+ | undefined;
47
+ tls?: boolean | undefined;
48
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
49
+ credentials?:
50
+ | import("@aws-sdk/types").Credentials
51
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
52
+ | undefined;
53
+ signer?:
54
+ | import("@aws-sdk/types").RequestSigner
55
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
56
+ | undefined;
57
+ signingEscapePath?: boolean | undefined;
58
+ systemClockOffset?: number | undefined;
59
+ signingRegion?: string | undefined;
60
+ signerConstructor?:
61
+ | (new (
62
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
63
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
64
+ ) => import("@aws-sdk/types").RequestSigner)
65
+ | undefined;
66
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
67
+ };