@aws-sdk/client-mediapackage-vod 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 (37) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/MediaPackageVod.d.ts +310 -90
  3. package/dist-types/ts3.4/MediaPackageVodClient.d.ts +232 -90
  4. package/dist-types/ts3.4/commands/ConfigureLogsCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/CreateAssetCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/CreatePackagingConfigurationCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/CreatePackagingGroupCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +34 -17
  9. package/dist-types/ts3.4/commands/DeletePackagingConfigurationCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/DeletePackagingGroupCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DescribeAssetCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/DescribePackagingConfigurationCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/DescribePackagingGroupCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/ListPackagingConfigurationsCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/ListPackagingGroupsCommand.d.ts +38 -17
  17. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  18. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  19. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
  20. package/dist-types/ts3.4/commands/UpdatePackagingGroupCommand.d.ts +41 -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 +8 -6
  25. package/dist-types/ts3.4/models/index.d.ts +1 -1
  26. package/dist-types/ts3.4/models/models_0.d.ts +711 -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 +68 -38
  34. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  35. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  36. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  37. package/package.json +34 -34
@@ -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 { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
4
- import { DeletePackagingConfigurationRequest, DeletePackagingConfigurationResponse } from "../models/models_0";
5
- export interface DeletePackagingConfigurationCommandInput extends DeletePackagingConfigurationRequest {
6
- }
7
- export interface DeletePackagingConfigurationCommandOutput extends DeletePackagingConfigurationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeletePackagingConfigurationCommand extends $Command<DeletePackagingConfigurationCommandInput, DeletePackagingConfigurationCommandOutput, MediaPackageVodClientResolvedConfig> {
11
- readonly input: DeletePackagingConfigurationCommandInput;
12
- constructor(input: DeletePackagingConfigurationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePackagingConfigurationCommandInput, DeletePackagingConfigurationCommandOutput>;
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
+ MediaPackageVodClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaPackageVodClient";
13
+ import {
14
+ DeletePackagingConfigurationRequest,
15
+ DeletePackagingConfigurationResponse,
16
+ } from "../models/models_0";
17
+ export interface DeletePackagingConfigurationCommandInput
18
+ extends DeletePackagingConfigurationRequest {}
19
+ export interface DeletePackagingConfigurationCommandOutput
20
+ extends DeletePackagingConfigurationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeletePackagingConfigurationCommand extends $Command<
24
+ DeletePackagingConfigurationCommandInput,
25
+ DeletePackagingConfigurationCommandOutput,
26
+ MediaPackageVodClientResolvedConfig
27
+ > {
28
+ readonly input: DeletePackagingConfigurationCommandInput;
29
+ constructor(input: DeletePackagingConfigurationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaPackageVodClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeletePackagingConfigurationCommandInput,
37
+ DeletePackagingConfigurationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
4
- import { DeletePackagingGroupRequest, DeletePackagingGroupResponse } from "../models/models_0";
5
- export interface DeletePackagingGroupCommandInput extends DeletePackagingGroupRequest {
6
- }
7
- export interface DeletePackagingGroupCommandOutput extends DeletePackagingGroupResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeletePackagingGroupCommand extends $Command<DeletePackagingGroupCommandInput, DeletePackagingGroupCommandOutput, MediaPackageVodClientResolvedConfig> {
11
- readonly input: DeletePackagingGroupCommandInput;
12
- constructor(input: DeletePackagingGroupCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePackagingGroupCommandInput, DeletePackagingGroupCommandOutput>;
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
+ MediaPackageVodClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaPackageVodClient";
13
+ import {
14
+ DeletePackagingGroupRequest,
15
+ DeletePackagingGroupResponse,
16
+ } from "../models/models_0";
17
+ export interface DeletePackagingGroupCommandInput
18
+ extends DeletePackagingGroupRequest {}
19
+ export interface DeletePackagingGroupCommandOutput
20
+ extends DeletePackagingGroupResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeletePackagingGroupCommand extends $Command<
24
+ DeletePackagingGroupCommandInput,
25
+ DeletePackagingGroupCommandOutput,
26
+ MediaPackageVodClientResolvedConfig
27
+ > {
28
+ readonly input: DeletePackagingGroupCommandInput;
29
+ constructor(input: DeletePackagingGroupCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaPackageVodClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeletePackagingGroupCommandInput,
37
+ DeletePackagingGroupCommandOutput
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 { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
4
- import { DescribeAssetRequest, DescribeAssetResponse } from "../models/models_0";
5
- export interface DescribeAssetCommandInput extends DescribeAssetRequest {
6
- }
7
- export interface DescribeAssetCommandOutput extends DescribeAssetResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeAssetCommand extends $Command<DescribeAssetCommandInput, DescribeAssetCommandOutput, MediaPackageVodClientResolvedConfig> {
11
- readonly input: DescribeAssetCommandInput;
12
- constructor(input: DescribeAssetCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAssetCommandInput, DescribeAssetCommandOutput>;
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
+ MediaPackageVodClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaPackageVodClient";
13
+ import {
14
+ DescribeAssetRequest,
15
+ DescribeAssetResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeAssetCommandInput extends DescribeAssetRequest {}
18
+ export interface DescribeAssetCommandOutput
19
+ extends DescribeAssetResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DescribeAssetCommand extends $Command<
23
+ DescribeAssetCommandInput,
24
+ DescribeAssetCommandOutput,
25
+ MediaPackageVodClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeAssetCommandInput;
28
+ constructor(input: DescribeAssetCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: MediaPackageVodClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DescribeAssetCommandInput, DescribeAssetCommandOutput>;
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 { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
4
- import { DescribePackagingConfigurationRequest, DescribePackagingConfigurationResponse } from "../models/models_0";
5
- export interface DescribePackagingConfigurationCommandInput extends DescribePackagingConfigurationRequest {
6
- }
7
- export interface DescribePackagingConfigurationCommandOutput extends DescribePackagingConfigurationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribePackagingConfigurationCommand extends $Command<DescribePackagingConfigurationCommandInput, DescribePackagingConfigurationCommandOutput, MediaPackageVodClientResolvedConfig> {
11
- readonly input: DescribePackagingConfigurationCommandInput;
12
- constructor(input: DescribePackagingConfigurationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribePackagingConfigurationCommandInput, DescribePackagingConfigurationCommandOutput>;
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
+ MediaPackageVodClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaPackageVodClient";
13
+ import {
14
+ DescribePackagingConfigurationRequest,
15
+ DescribePackagingConfigurationResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribePackagingConfigurationCommandInput
18
+ extends DescribePackagingConfigurationRequest {}
19
+ export interface DescribePackagingConfigurationCommandOutput
20
+ extends DescribePackagingConfigurationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribePackagingConfigurationCommand extends $Command<
24
+ DescribePackagingConfigurationCommandInput,
25
+ DescribePackagingConfigurationCommandOutput,
26
+ MediaPackageVodClientResolvedConfig
27
+ > {
28
+ readonly input: DescribePackagingConfigurationCommandInput;
29
+ constructor(input: DescribePackagingConfigurationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaPackageVodClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribePackagingConfigurationCommandInput,
37
+ DescribePackagingConfigurationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
4
- import { DescribePackagingGroupRequest, DescribePackagingGroupResponse } from "../models/models_0";
5
- export interface DescribePackagingGroupCommandInput extends DescribePackagingGroupRequest {
6
- }
7
- export interface DescribePackagingGroupCommandOutput extends DescribePackagingGroupResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribePackagingGroupCommand extends $Command<DescribePackagingGroupCommandInput, DescribePackagingGroupCommandOutput, MediaPackageVodClientResolvedConfig> {
11
- readonly input: DescribePackagingGroupCommandInput;
12
- constructor(input: DescribePackagingGroupCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribePackagingGroupCommandInput, DescribePackagingGroupCommandOutput>;
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
+ MediaPackageVodClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaPackageVodClient";
13
+ import {
14
+ DescribePackagingGroupRequest,
15
+ DescribePackagingGroupResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribePackagingGroupCommandInput
18
+ extends DescribePackagingGroupRequest {}
19
+ export interface DescribePackagingGroupCommandOutput
20
+ extends DescribePackagingGroupResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribePackagingGroupCommand extends $Command<
24
+ DescribePackagingGroupCommandInput,
25
+ DescribePackagingGroupCommandOutput,
26
+ MediaPackageVodClientResolvedConfig
27
+ > {
28
+ readonly input: DescribePackagingGroupCommandInput;
29
+ constructor(input: DescribePackagingGroupCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaPackageVodClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribePackagingGroupCommandInput,
37
+ DescribePackagingGroupCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,34 @@
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 { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
4
- import { ListAssetsRequest, ListAssetsResponse } from "../models/models_0";
5
- export interface ListAssetsCommandInput extends ListAssetsRequest {
6
- }
7
- export interface ListAssetsCommandOutput extends ListAssetsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListAssetsCommand extends $Command<ListAssetsCommandInput, ListAssetsCommandOutput, MediaPackageVodClientResolvedConfig> {
11
- readonly input: ListAssetsCommandInput;
12
- constructor(input: ListAssetsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAssetsCommandInput, ListAssetsCommandOutput>;
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
+ MediaPackageVodClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaPackageVodClient";
13
+ import { ListAssetsRequest, ListAssetsResponse } from "../models/models_0";
14
+ export interface ListAssetsCommandInput extends ListAssetsRequest {}
15
+ export interface ListAssetsCommandOutput
16
+ extends ListAssetsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListAssetsCommand extends $Command<
20
+ ListAssetsCommandInput,
21
+ ListAssetsCommandOutput,
22
+ MediaPackageVodClientResolvedConfig
23
+ > {
24
+ readonly input: ListAssetsCommandInput;
25
+ constructor(input: ListAssetsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaPackageVodClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListAssetsCommandInput, ListAssetsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -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 { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
4
- import { ListPackagingConfigurationsRequest, ListPackagingConfigurationsResponse } from "../models/models_0";
5
- export interface ListPackagingConfigurationsCommandInput extends ListPackagingConfigurationsRequest {
6
- }
7
- export interface ListPackagingConfigurationsCommandOutput extends ListPackagingConfigurationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListPackagingConfigurationsCommand extends $Command<ListPackagingConfigurationsCommandInput, ListPackagingConfigurationsCommandOutput, MediaPackageVodClientResolvedConfig> {
11
- readonly input: ListPackagingConfigurationsCommandInput;
12
- constructor(input: ListPackagingConfigurationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPackagingConfigurationsCommandInput, ListPackagingConfigurationsCommandOutput>;
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
+ MediaPackageVodClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaPackageVodClient";
13
+ import {
14
+ ListPackagingConfigurationsRequest,
15
+ ListPackagingConfigurationsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListPackagingConfigurationsCommandInput
18
+ extends ListPackagingConfigurationsRequest {}
19
+ export interface ListPackagingConfigurationsCommandOutput
20
+ extends ListPackagingConfigurationsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListPackagingConfigurationsCommand extends $Command<
24
+ ListPackagingConfigurationsCommandInput,
25
+ ListPackagingConfigurationsCommandOutput,
26
+ MediaPackageVodClientResolvedConfig
27
+ > {
28
+ readonly input: ListPackagingConfigurationsCommandInput;
29
+ constructor(input: ListPackagingConfigurationsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaPackageVodClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListPackagingConfigurationsCommandInput,
37
+ ListPackagingConfigurationsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,38 @@
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 { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
4
- import { ListPackagingGroupsRequest, ListPackagingGroupsResponse } from "../models/models_0";
5
- export interface ListPackagingGroupsCommandInput extends ListPackagingGroupsRequest {
6
- }
7
- export interface ListPackagingGroupsCommandOutput extends ListPackagingGroupsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListPackagingGroupsCommand extends $Command<ListPackagingGroupsCommandInput, ListPackagingGroupsCommandOutput, MediaPackageVodClientResolvedConfig> {
11
- readonly input: ListPackagingGroupsCommandInput;
12
- constructor(input: ListPackagingGroupsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPackagingGroupsCommandInput, ListPackagingGroupsCommandOutput>;
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
+ MediaPackageVodClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaPackageVodClient";
13
+ import {
14
+ ListPackagingGroupsRequest,
15
+ ListPackagingGroupsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListPackagingGroupsCommandInput
18
+ extends ListPackagingGroupsRequest {}
19
+ export interface ListPackagingGroupsCommandOutput
20
+ extends ListPackagingGroupsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListPackagingGroupsCommand extends $Command<
24
+ ListPackagingGroupsCommandInput,
25
+ ListPackagingGroupsCommandOutput,
26
+ MediaPackageVodClientResolvedConfig
27
+ > {
28
+ readonly input: ListPackagingGroupsCommandInput;
29
+ constructor(input: ListPackagingGroupsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaPackageVodClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListPackagingGroupsCommandInput, ListPackagingGroupsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,38 @@
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 { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
4
- import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MediaPackageVodClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
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
+ MediaPackageVodClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaPackageVodClient";
13
+ import {
14
+ ListTagsForResourceRequest,
15
+ ListTagsForResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListTagsForResourceCommand extends $Command<
24
+ ListTagsForResourceCommandInput,
25
+ ListTagsForResourceCommandOutput,
26
+ MediaPackageVodClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ constructor(input: ListTagsForResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaPackageVodClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,32 @@
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 { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
4
- import { TagResourceRequest } from "../models/models_0";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, MediaPackageVodClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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
+ MediaPackageVodClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaPackageVodClient";
13
+ import { TagResourceRequest } from "../models/models_0";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class TagResourceCommand extends $Command<
18
+ TagResourceCommandInput,
19
+ TagResourceCommandOutput,
20
+ MediaPackageVodClientResolvedConfig
21
+ > {
22
+ readonly input: TagResourceCommandInput;
23
+ constructor(input: TagResourceCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: MediaPackageVodClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
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 { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
4
- import { UntagResourceRequest } from "../models/models_0";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, MediaPackageVodClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
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
+ MediaPackageVodClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaPackageVodClient";
13
+ import { UntagResourceRequest } from "../models/models_0";
14
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
15
+ export interface UntagResourceCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class UntagResourceCommand extends $Command<
18
+ UntagResourceCommandInput,
19
+ UntagResourceCommandOutput,
20
+ MediaPackageVodClientResolvedConfig
21
+ > {
22
+ readonly input: UntagResourceCommandInput;
23
+ constructor(input: UntagResourceCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: MediaPackageVodClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }