@aws-sdk/client-mediapackage-vod 3.1077.0 → 3.1079.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 (59) hide show
  1. package/dist-cjs/index.js +25 -173
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/ConfigureLogsCommand.js +2 -14
  4. package/dist-es/commands/CreateAssetCommand.js +2 -14
  5. package/dist-es/commands/CreatePackagingConfigurationCommand.js +2 -14
  6. package/dist-es/commands/CreatePackagingGroupCommand.js +2 -14
  7. package/dist-es/commands/DeleteAssetCommand.js +2 -14
  8. package/dist-es/commands/DeletePackagingConfigurationCommand.js +2 -14
  9. package/dist-es/commands/DeletePackagingGroupCommand.js +2 -14
  10. package/dist-es/commands/DescribeAssetCommand.js +2 -14
  11. package/dist-es/commands/DescribePackagingConfigurationCommand.js +2 -14
  12. package/dist-es/commands/DescribePackagingGroupCommand.js +2 -14
  13. package/dist-es/commands/ListAssetsCommand.js +2 -14
  14. package/dist-es/commands/ListPackagingConfigurationsCommand.js +2 -14
  15. package/dist-es/commands/ListPackagingGroupsCommand.js +2 -14
  16. package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  17. package/dist-es/commands/TagResourceCommand.js +2 -14
  18. package/dist-es/commands/UntagResourceCommand.js +2 -14
  19. package/dist-es/commands/UpdatePackagingGroupCommand.js +2 -14
  20. package/dist-es/index.js +1 -0
  21. package/dist-types/commandBuilder.d.ts +18 -0
  22. package/dist-types/commands/ConfigureLogsCommand.d.ts +3 -8
  23. package/dist-types/commands/CreateAssetCommand.d.ts +3 -8
  24. package/dist-types/commands/CreatePackagingConfigurationCommand.d.ts +3 -8
  25. package/dist-types/commands/CreatePackagingGroupCommand.d.ts +3 -8
  26. package/dist-types/commands/DeleteAssetCommand.d.ts +3 -8
  27. package/dist-types/commands/DeletePackagingConfigurationCommand.d.ts +3 -8
  28. package/dist-types/commands/DeletePackagingGroupCommand.d.ts +3 -8
  29. package/dist-types/commands/DescribeAssetCommand.d.ts +3 -8
  30. package/dist-types/commands/DescribePackagingConfigurationCommand.d.ts +3 -8
  31. package/dist-types/commands/DescribePackagingGroupCommand.d.ts +3 -8
  32. package/dist-types/commands/ListAssetsCommand.d.ts +3 -8
  33. package/dist-types/commands/ListPackagingConfigurationsCommand.d.ts +3 -8
  34. package/dist-types/commands/ListPackagingGroupsCommand.d.ts +3 -8
  35. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
  36. package/dist-types/commands/TagResourceCommand.d.ts +3 -8
  37. package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  38. package/dist-types/commands/UpdatePackagingGroupCommand.d.ts +3 -8
  39. package/dist-types/index.d.ts +1 -0
  40. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  41. package/dist-types/ts3.4/commands/ConfigureLogsCommand.d.ts +7 -16
  42. package/dist-types/ts3.4/commands/CreateAssetCommand.d.ts +7 -16
  43. package/dist-types/ts3.4/commands/CreatePackagingConfigurationCommand.d.ts +7 -16
  44. package/dist-types/ts3.4/commands/CreatePackagingGroupCommand.d.ts +7 -16
  45. package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +7 -16
  46. package/dist-types/ts3.4/commands/DeletePackagingConfigurationCommand.d.ts +7 -16
  47. package/dist-types/ts3.4/commands/DeletePackagingGroupCommand.d.ts +7 -16
  48. package/dist-types/ts3.4/commands/DescribeAssetCommand.d.ts +7 -16
  49. package/dist-types/ts3.4/commands/DescribePackagingConfigurationCommand.d.ts +7 -16
  50. package/dist-types/ts3.4/commands/DescribePackagingGroupCommand.d.ts +7 -16
  51. package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +7 -16
  52. package/dist-types/ts3.4/commands/ListPackagingConfigurationsCommand.d.ts +7 -16
  53. package/dist-types/ts3.4/commands/ListPackagingGroupsCommand.d.ts +7 -16
  54. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  55. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  56. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  57. package/dist-types/ts3.4/commands/UpdatePackagingGroupCommand.d.ts +7 -16
  58. package/dist-types/ts3.4/index.d.ts +1 -0
  59. package/package.json +8 -8
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- MediaPackageVodClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../MediaPackageVodClient";
8
2
  import { CreateAssetRequest, CreateAssetResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface CreateAssetCommandInput extends CreateAssetRequest {}
12
5
  export interface CreateAssetCommandOutput
13
6
  extends CreateAssetResponse,
@@ -18,22 +11,20 @@ declare const CreateAssetCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  CreateAssetCommandInput,
20
13
  CreateAssetCommandOutput,
21
- MediaPackageVodClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").MediaPackageVodClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: CreateAssetCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  CreateAssetCommandInput,
29
22
  CreateAssetCommandOutput,
30
- MediaPackageVodClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").MediaPackageVodClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class CreateAssetCommand extends CreateAssetCommand_base {
39
30
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- MediaPackageVodClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../MediaPackageVodClient";
8
2
  import {
9
3
  CreatePackagingConfigurationRequest,
10
4
  CreatePackagingConfigurationResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface CreatePackagingConfigurationCommandInput
15
8
  extends CreatePackagingConfigurationRequest {}
16
9
  export interface CreatePackagingConfigurationCommandOutput
@@ -22,22 +15,20 @@ declare const CreatePackagingConfigurationCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  CreatePackagingConfigurationCommandInput,
24
17
  CreatePackagingConfigurationCommandOutput,
25
- MediaPackageVodClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").MediaPackageVodClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: CreatePackagingConfigurationCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  CreatePackagingConfigurationCommandInput,
33
26
  CreatePackagingConfigurationCommandOutput,
34
- MediaPackageVodClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").MediaPackageVodClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class CreatePackagingConfigurationCommand extends CreatePackagingConfigurationCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- MediaPackageVodClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../MediaPackageVodClient";
8
2
  import {
9
3
  CreatePackagingGroupRequest,
10
4
  CreatePackagingGroupResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface CreatePackagingGroupCommandInput
15
8
  extends CreatePackagingGroupRequest {}
16
9
  export interface CreatePackagingGroupCommandOutput
@@ -22,22 +15,20 @@ declare const CreatePackagingGroupCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  CreatePackagingGroupCommandInput,
24
17
  CreatePackagingGroupCommandOutput,
25
- MediaPackageVodClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").MediaPackageVodClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: CreatePackagingGroupCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  CreatePackagingGroupCommandInput,
33
26
  CreatePackagingGroupCommandOutput,
34
- MediaPackageVodClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").MediaPackageVodClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class CreatePackagingGroupCommand extends CreatePackagingGroupCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- MediaPackageVodClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../MediaPackageVodClient";
8
2
  import { DeleteAssetRequest, DeleteAssetResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DeleteAssetCommandInput extends DeleteAssetRequest {}
12
5
  export interface DeleteAssetCommandOutput
13
6
  extends DeleteAssetResponse,
@@ -18,22 +11,20 @@ declare const DeleteAssetCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  DeleteAssetCommandInput,
20
13
  DeleteAssetCommandOutput,
21
- MediaPackageVodClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").MediaPackageVodClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: DeleteAssetCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  DeleteAssetCommandInput,
29
22
  DeleteAssetCommandOutput,
30
- MediaPackageVodClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").MediaPackageVodClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class DeleteAssetCommand extends DeleteAssetCommand_base {
39
30
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- MediaPackageVodClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../MediaPackageVodClient";
8
2
  import {
9
3
  DeletePackagingConfigurationRequest,
10
4
  DeletePackagingConfigurationResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DeletePackagingConfigurationCommandInput
15
8
  extends DeletePackagingConfigurationRequest {}
16
9
  export interface DeletePackagingConfigurationCommandOutput
@@ -22,22 +15,20 @@ declare const DeletePackagingConfigurationCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  DeletePackagingConfigurationCommandInput,
24
17
  DeletePackagingConfigurationCommandOutput,
25
- MediaPackageVodClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").MediaPackageVodClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: DeletePackagingConfigurationCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  DeletePackagingConfigurationCommandInput,
33
26
  DeletePackagingConfigurationCommandOutput,
34
- MediaPackageVodClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").MediaPackageVodClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class DeletePackagingConfigurationCommand extends DeletePackagingConfigurationCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- MediaPackageVodClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../MediaPackageVodClient";
8
2
  import {
9
3
  DeletePackagingGroupRequest,
10
4
  DeletePackagingGroupResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DeletePackagingGroupCommandInput
15
8
  extends DeletePackagingGroupRequest {}
16
9
  export interface DeletePackagingGroupCommandOutput
@@ -22,22 +15,20 @@ declare const DeletePackagingGroupCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  DeletePackagingGroupCommandInput,
24
17
  DeletePackagingGroupCommandOutput,
25
- MediaPackageVodClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").MediaPackageVodClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: DeletePackagingGroupCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  DeletePackagingGroupCommandInput,
33
26
  DeletePackagingGroupCommandOutput,
34
- MediaPackageVodClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").MediaPackageVodClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class DeletePackagingGroupCommand extends DeletePackagingGroupCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- MediaPackageVodClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../MediaPackageVodClient";
8
2
  import {
9
3
  DescribeAssetRequest,
10
4
  DescribeAssetResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DescribeAssetCommandInput extends DescribeAssetRequest {}
15
8
  export interface DescribeAssetCommandOutput
16
9
  extends DescribeAssetResponse,
@@ -21,22 +14,20 @@ declare const DescribeAssetCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  DescribeAssetCommandInput,
23
16
  DescribeAssetCommandOutput,
24
- MediaPackageVodClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").MediaPackageVodClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: DescribeAssetCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  DescribeAssetCommandInput,
32
25
  DescribeAssetCommandOutput,
33
- MediaPackageVodClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").MediaPackageVodClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class DescribeAssetCommand extends DescribeAssetCommand_base {
42
33
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- MediaPackageVodClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../MediaPackageVodClient";
8
2
  import {
9
3
  DescribePackagingConfigurationRequest,
10
4
  DescribePackagingConfigurationResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DescribePackagingConfigurationCommandInput
15
8
  extends DescribePackagingConfigurationRequest {}
16
9
  export interface DescribePackagingConfigurationCommandOutput
@@ -22,22 +15,20 @@ declare const DescribePackagingConfigurationCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  DescribePackagingConfigurationCommandInput,
24
17
  DescribePackagingConfigurationCommandOutput,
25
- MediaPackageVodClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").MediaPackageVodClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: DescribePackagingConfigurationCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  DescribePackagingConfigurationCommandInput,
33
26
  DescribePackagingConfigurationCommandOutput,
34
- MediaPackageVodClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").MediaPackageVodClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class DescribePackagingConfigurationCommand extends DescribePackagingConfigurationCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- MediaPackageVodClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../MediaPackageVodClient";
8
2
  import {
9
3
  DescribePackagingGroupRequest,
10
4
  DescribePackagingGroupResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DescribePackagingGroupCommandInput
15
8
  extends DescribePackagingGroupRequest {}
16
9
  export interface DescribePackagingGroupCommandOutput
@@ -22,22 +15,20 @@ declare const DescribePackagingGroupCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  DescribePackagingGroupCommandInput,
24
17
  DescribePackagingGroupCommandOutput,
25
- MediaPackageVodClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").MediaPackageVodClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: DescribePackagingGroupCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  DescribePackagingGroupCommandInput,
33
26
  DescribePackagingGroupCommandOutput,
34
- MediaPackageVodClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").MediaPackageVodClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class DescribePackagingGroupCommand extends DescribePackagingGroupCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- MediaPackageVodClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../MediaPackageVodClient";
8
2
  import { ListAssetsRequest, ListAssetsResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface ListAssetsCommandInput extends ListAssetsRequest {}
12
5
  export interface ListAssetsCommandOutput
13
6
  extends ListAssetsResponse,
@@ -18,22 +11,20 @@ declare const ListAssetsCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  ListAssetsCommandInput,
20
13
  ListAssetsCommandOutput,
21
- MediaPackageVodClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").MediaPackageVodClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  ...[input]: [] | [ListAssetsCommandInput]
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  ListAssetsCommandInput,
29
22
  ListAssetsCommandOutput,
30
- MediaPackageVodClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").MediaPackageVodClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class ListAssetsCommand extends ListAssetsCommand_base {
39
30
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- MediaPackageVodClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../MediaPackageVodClient";
8
2
  import {
9
3
  ListPackagingConfigurationsRequest,
10
4
  ListPackagingConfigurationsResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListPackagingConfigurationsCommandInput
15
8
  extends ListPackagingConfigurationsRequest {}
16
9
  export interface ListPackagingConfigurationsCommandOutput
@@ -22,22 +15,20 @@ declare const ListPackagingConfigurationsCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListPackagingConfigurationsCommandInput,
24
17
  ListPackagingConfigurationsCommandOutput,
25
- MediaPackageVodClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").MediaPackageVodClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  ...[input]: [] | [ListPackagingConfigurationsCommandInput]
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListPackagingConfigurationsCommandInput,
33
26
  ListPackagingConfigurationsCommandOutput,
34
- MediaPackageVodClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").MediaPackageVodClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListPackagingConfigurationsCommand extends ListPackagingConfigurationsCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- MediaPackageVodClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../MediaPackageVodClient";
8
2
  import {
9
3
  ListPackagingGroupsRequest,
10
4
  ListPackagingGroupsResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListPackagingGroupsCommandInput
15
8
  extends ListPackagingGroupsRequest {}
16
9
  export interface ListPackagingGroupsCommandOutput
@@ -22,22 +15,20 @@ declare const ListPackagingGroupsCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListPackagingGroupsCommandInput,
24
17
  ListPackagingGroupsCommandOutput,
25
- MediaPackageVodClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").MediaPackageVodClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  ...[input]: [] | [ListPackagingGroupsCommandInput]
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListPackagingGroupsCommandInput,
33
26
  ListPackagingGroupsCommandOutput,
34
- MediaPackageVodClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").MediaPackageVodClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListPackagingGroupsCommand extends ListPackagingGroupsCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- MediaPackageVodClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../MediaPackageVodClient";
8
2
  import {
9
3
  ListTagsForResourceRequest,
10
4
  ListTagsForResourceResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListTagsForResourceCommandInput
15
8
  extends ListTagsForResourceRequest {}
16
9
  export interface ListTagsForResourceCommandOutput
@@ -22,22 +15,20 @@ declare const ListTagsForResourceCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListTagsForResourceCommandInput,
24
17
  ListTagsForResourceCommandOutput,
25
- MediaPackageVodClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").MediaPackageVodClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: ListTagsForResourceCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListTagsForResourceCommandInput,
33
26
  ListTagsForResourceCommandOutput,
34
- MediaPackageVodClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").MediaPackageVodClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- MediaPackageVodClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../MediaPackageVodClient";
8
2
  import { TagResourceRequest } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface TagResourceCommandInput extends TagResourceRequest {}
12
5
  export interface TagResourceCommandOutput extends __MetadataBearer {}
13
6
  declare const TagResourceCommand_base: {
@@ -16,22 +9,20 @@ declare const TagResourceCommand_base: {
16
9
  ): import("@smithy/core/client").CommandImpl<
17
10
  TagResourceCommandInput,
18
11
  TagResourceCommandOutput,
19
- MediaPackageVodClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").MediaPackageVodClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (
24
17
  input: TagResourceCommandInput
25
18
  ): import("@smithy/core/client").CommandImpl<
26
19
  TagResourceCommandInput,
27
20
  TagResourceCommandOutput,
28
- MediaPackageVodClientResolvedConfig,
29
- ServiceInputTypes,
30
- ServiceOutputTypes
21
+ import("..").MediaPackageVodClientResolvedConfig,
22
+ import("..").ServiceInputTypes,
23
+ import("..").ServiceOutputTypes
31
24
  >;
32
- getEndpointParameterInstructions(): {
33
- [x: string]: unknown;
34
- };
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
35
26
  };
36
27
  export declare class TagResourceCommand extends TagResourceCommand_base {
37
28
  protected static __types: {