@aws-sdk/client-mediapackage-vod 3.312.0 → 3.316.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.
- package/dist-cjs/MediaPackageVod.js +21 -238
- package/dist-cjs/protocols/Aws_restJson1.js +421 -643
- package/dist-es/MediaPackageVod.js +21 -238
- package/dist-es/protocols/Aws_restJson1.js +395 -617
- package/dist-types/MediaPackageVod.d.ts +24 -39
- package/dist-types/ts3.4/MediaPackageVod.d.ts +4 -1
- package/package.json +6 -6
|
@@ -17,128 +17,113 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
17
17
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
18
18
|
import { UpdatePackagingGroupCommandInput, UpdatePackagingGroupCommandOutput } from "./commands/UpdatePackagingGroupCommand";
|
|
19
19
|
import { MediaPackageVodClient } from "./MediaPackageVodClient";
|
|
20
|
-
|
|
21
|
-
* @public
|
|
22
|
-
* AWS Elemental MediaPackage VOD
|
|
23
|
-
*/
|
|
24
|
-
export declare class MediaPackageVod extends MediaPackageVodClient {
|
|
20
|
+
export interface MediaPackageVod {
|
|
25
21
|
/**
|
|
26
|
-
* @
|
|
27
|
-
* Changes the packaging group's properities to configure log subscription
|
|
22
|
+
* @see {@link ConfigureLogsCommand}
|
|
28
23
|
*/
|
|
29
24
|
configureLogs(args: ConfigureLogsCommandInput, options?: __HttpHandlerOptions): Promise<ConfigureLogsCommandOutput>;
|
|
30
25
|
configureLogs(args: ConfigureLogsCommandInput, cb: (err: any, data?: ConfigureLogsCommandOutput) => void): void;
|
|
31
26
|
configureLogs(args: ConfigureLogsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConfigureLogsCommandOutput) => void): void;
|
|
32
27
|
/**
|
|
33
|
-
* @
|
|
34
|
-
* Creates a new MediaPackage VOD Asset resource.
|
|
28
|
+
* @see {@link CreateAssetCommand}
|
|
35
29
|
*/
|
|
36
30
|
createAsset(args: CreateAssetCommandInput, options?: __HttpHandlerOptions): Promise<CreateAssetCommandOutput>;
|
|
37
31
|
createAsset(args: CreateAssetCommandInput, cb: (err: any, data?: CreateAssetCommandOutput) => void): void;
|
|
38
32
|
createAsset(args: CreateAssetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAssetCommandOutput) => void): void;
|
|
39
33
|
/**
|
|
40
|
-
* @
|
|
41
|
-
* Creates a new MediaPackage VOD PackagingConfiguration resource.
|
|
34
|
+
* @see {@link CreatePackagingConfigurationCommand}
|
|
42
35
|
*/
|
|
43
36
|
createPackagingConfiguration(args: CreatePackagingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreatePackagingConfigurationCommandOutput>;
|
|
44
37
|
createPackagingConfiguration(args: CreatePackagingConfigurationCommandInput, cb: (err: any, data?: CreatePackagingConfigurationCommandOutput) => void): void;
|
|
45
38
|
createPackagingConfiguration(args: CreatePackagingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePackagingConfigurationCommandOutput) => void): void;
|
|
46
39
|
/**
|
|
47
|
-
* @
|
|
48
|
-
* Creates a new MediaPackage VOD PackagingGroup resource.
|
|
40
|
+
* @see {@link CreatePackagingGroupCommand}
|
|
49
41
|
*/
|
|
50
42
|
createPackagingGroup(args: CreatePackagingGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreatePackagingGroupCommandOutput>;
|
|
51
43
|
createPackagingGroup(args: CreatePackagingGroupCommandInput, cb: (err: any, data?: CreatePackagingGroupCommandOutput) => void): void;
|
|
52
44
|
createPackagingGroup(args: CreatePackagingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePackagingGroupCommandOutput) => void): void;
|
|
53
45
|
/**
|
|
54
|
-
* @
|
|
55
|
-
* Deletes an existing MediaPackage VOD Asset resource.
|
|
46
|
+
* @see {@link DeleteAssetCommand}
|
|
56
47
|
*/
|
|
57
48
|
deleteAsset(args: DeleteAssetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAssetCommandOutput>;
|
|
58
49
|
deleteAsset(args: DeleteAssetCommandInput, cb: (err: any, data?: DeleteAssetCommandOutput) => void): void;
|
|
59
50
|
deleteAsset(args: DeleteAssetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAssetCommandOutput) => void): void;
|
|
60
51
|
/**
|
|
61
|
-
* @
|
|
62
|
-
* Deletes a MediaPackage VOD PackagingConfiguration resource.
|
|
52
|
+
* @see {@link DeletePackagingConfigurationCommand}
|
|
63
53
|
*/
|
|
64
54
|
deletePackagingConfiguration(args: DeletePackagingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeletePackagingConfigurationCommandOutput>;
|
|
65
55
|
deletePackagingConfiguration(args: DeletePackagingConfigurationCommandInput, cb: (err: any, data?: DeletePackagingConfigurationCommandOutput) => void): void;
|
|
66
56
|
deletePackagingConfiguration(args: DeletePackagingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePackagingConfigurationCommandOutput) => void): void;
|
|
67
57
|
/**
|
|
68
|
-
* @
|
|
69
|
-
* Deletes a MediaPackage VOD PackagingGroup resource.
|
|
58
|
+
* @see {@link DeletePackagingGroupCommand}
|
|
70
59
|
*/
|
|
71
60
|
deletePackagingGroup(args: DeletePackagingGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeletePackagingGroupCommandOutput>;
|
|
72
61
|
deletePackagingGroup(args: DeletePackagingGroupCommandInput, cb: (err: any, data?: DeletePackagingGroupCommandOutput) => void): void;
|
|
73
62
|
deletePackagingGroup(args: DeletePackagingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePackagingGroupCommandOutput) => void): void;
|
|
74
63
|
/**
|
|
75
|
-
* @
|
|
76
|
-
* Returns a description of a MediaPackage VOD Asset resource.
|
|
64
|
+
* @see {@link DescribeAssetCommand}
|
|
77
65
|
*/
|
|
78
66
|
describeAsset(args: DescribeAssetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAssetCommandOutput>;
|
|
79
67
|
describeAsset(args: DescribeAssetCommandInput, cb: (err: any, data?: DescribeAssetCommandOutput) => void): void;
|
|
80
68
|
describeAsset(args: DescribeAssetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAssetCommandOutput) => void): void;
|
|
81
69
|
/**
|
|
82
|
-
* @
|
|
83
|
-
* Returns a description of a MediaPackage VOD PackagingConfiguration resource.
|
|
70
|
+
* @see {@link DescribePackagingConfigurationCommand}
|
|
84
71
|
*/
|
|
85
72
|
describePackagingConfiguration(args: DescribePackagingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribePackagingConfigurationCommandOutput>;
|
|
86
73
|
describePackagingConfiguration(args: DescribePackagingConfigurationCommandInput, cb: (err: any, data?: DescribePackagingConfigurationCommandOutput) => void): void;
|
|
87
74
|
describePackagingConfiguration(args: DescribePackagingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePackagingConfigurationCommandOutput) => void): void;
|
|
88
75
|
/**
|
|
89
|
-
* @
|
|
90
|
-
* Returns a description of a MediaPackage VOD PackagingGroup resource.
|
|
76
|
+
* @see {@link DescribePackagingGroupCommand}
|
|
91
77
|
*/
|
|
92
78
|
describePackagingGroup(args: DescribePackagingGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribePackagingGroupCommandOutput>;
|
|
93
79
|
describePackagingGroup(args: DescribePackagingGroupCommandInput, cb: (err: any, data?: DescribePackagingGroupCommandOutput) => void): void;
|
|
94
80
|
describePackagingGroup(args: DescribePackagingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePackagingGroupCommandOutput) => void): void;
|
|
95
81
|
/**
|
|
96
|
-
* @
|
|
97
|
-
* Returns a collection of MediaPackage VOD Asset resources.
|
|
82
|
+
* @see {@link ListAssetsCommand}
|
|
98
83
|
*/
|
|
99
84
|
listAssets(args: ListAssetsCommandInput, options?: __HttpHandlerOptions): Promise<ListAssetsCommandOutput>;
|
|
100
85
|
listAssets(args: ListAssetsCommandInput, cb: (err: any, data?: ListAssetsCommandOutput) => void): void;
|
|
101
86
|
listAssets(args: ListAssetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssetsCommandOutput) => void): void;
|
|
102
87
|
/**
|
|
103
|
-
* @
|
|
104
|
-
* Returns a collection of MediaPackage VOD PackagingConfiguration resources.
|
|
88
|
+
* @see {@link ListPackagingConfigurationsCommand}
|
|
105
89
|
*/
|
|
106
90
|
listPackagingConfigurations(args: ListPackagingConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListPackagingConfigurationsCommandOutput>;
|
|
107
91
|
listPackagingConfigurations(args: ListPackagingConfigurationsCommandInput, cb: (err: any, data?: ListPackagingConfigurationsCommandOutput) => void): void;
|
|
108
92
|
listPackagingConfigurations(args: ListPackagingConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPackagingConfigurationsCommandOutput) => void): void;
|
|
109
93
|
/**
|
|
110
|
-
* @
|
|
111
|
-
* Returns a collection of MediaPackage VOD PackagingGroup resources.
|
|
94
|
+
* @see {@link ListPackagingGroupsCommand}
|
|
112
95
|
*/
|
|
113
96
|
listPackagingGroups(args: ListPackagingGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListPackagingGroupsCommandOutput>;
|
|
114
97
|
listPackagingGroups(args: ListPackagingGroupsCommandInput, cb: (err: any, data?: ListPackagingGroupsCommandOutput) => void): void;
|
|
115
98
|
listPackagingGroups(args: ListPackagingGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPackagingGroupsCommandOutput) => void): void;
|
|
116
99
|
/**
|
|
117
|
-
* @
|
|
118
|
-
* Returns a list of the tags assigned to the specified resource.
|
|
100
|
+
* @see {@link ListTagsForResourceCommand}
|
|
119
101
|
*/
|
|
120
102
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
121
103
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
122
104
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
123
105
|
/**
|
|
124
|
-
* @
|
|
125
|
-
* Adds tags to the specified resource. You can specify one or more tags to add.
|
|
106
|
+
* @see {@link TagResourceCommand}
|
|
126
107
|
*/
|
|
127
108
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
128
109
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
129
110
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
130
111
|
/**
|
|
131
|
-
* @
|
|
132
|
-
* Removes tags from the specified resource. You can specify one or more tags to remove.
|
|
112
|
+
* @see {@link UntagResourceCommand}
|
|
133
113
|
*/
|
|
134
114
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
135
115
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
136
116
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
137
117
|
/**
|
|
138
|
-
* @
|
|
139
|
-
* Updates a specific packaging group. You can't change the id attribute or any other system-generated attributes.
|
|
118
|
+
* @see {@link UpdatePackagingGroupCommand}
|
|
140
119
|
*/
|
|
141
120
|
updatePackagingGroup(args: UpdatePackagingGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePackagingGroupCommandOutput>;
|
|
142
121
|
updatePackagingGroup(args: UpdatePackagingGroupCommandInput, cb: (err: any, data?: UpdatePackagingGroupCommandOutput) => void): void;
|
|
143
122
|
updatePackagingGroup(args: UpdatePackagingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePackagingGroupCommandOutput) => void): void;
|
|
144
123
|
}
|
|
124
|
+
/**
|
|
125
|
+
* @public
|
|
126
|
+
* AWS Elemental MediaPackage VOD
|
|
127
|
+
*/
|
|
128
|
+
export declare class MediaPackageVod extends MediaPackageVodClient implements MediaPackageVod {
|
|
129
|
+
}
|
|
@@ -68,7 +68,7 @@ import {
|
|
|
68
68
|
UpdatePackagingGroupCommandOutput,
|
|
69
69
|
} from "./commands/UpdatePackagingGroupCommand";
|
|
70
70
|
import { MediaPackageVodClient } from "./MediaPackageVodClient";
|
|
71
|
-
export
|
|
71
|
+
export interface MediaPackageVod {
|
|
72
72
|
configureLogs(
|
|
73
73
|
args: ConfigureLogsCommandInput,
|
|
74
74
|
options?: __HttpHandlerOptions
|
|
@@ -291,3 +291,6 @@ export declare class MediaPackageVod extends MediaPackageVodClient {
|
|
|
291
291
|
cb: (err: any, data?: UpdatePackagingGroupCommandOutput) => void
|
|
292
292
|
): void;
|
|
293
293
|
}
|
|
294
|
+
export declare class MediaPackageVod
|
|
295
|
+
extends MediaPackageVodClient
|
|
296
|
+
implements MediaPackageVod {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediapackage-vod",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediapackage Vod Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.316.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|