@aws-sdk/client-mediapackage-vod 3.226.0 → 3.228.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.
|
@@ -924,6 +924,9 @@ const deserializeAws_restJson1DescribePackagingGroupCommand = async (output, con
|
|
|
924
924
|
$metadata: deserializeMetadata(output),
|
|
925
925
|
});
|
|
926
926
|
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
927
|
+
if (data.approximateAssetCount != null) {
|
|
928
|
+
contents.ApproximateAssetCount = (0, smithy_client_1.expectInt32)(data.approximateAssetCount);
|
|
929
|
+
}
|
|
927
930
|
if (data.arn != null) {
|
|
928
931
|
contents.Arn = (0, smithy_client_1.expectString)(data.arn);
|
|
929
932
|
}
|
|
@@ -1222,6 +1225,9 @@ const deserializeAws_restJson1UpdatePackagingGroupCommand = async (output, conte
|
|
|
1222
1225
|
$metadata: deserializeMetadata(output),
|
|
1223
1226
|
});
|
|
1224
1227
|
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
1228
|
+
if (data.approximateAssetCount != null) {
|
|
1229
|
+
contents.ApproximateAssetCount = (0, smithy_client_1.expectInt32)(data.approximateAssetCount);
|
|
1230
|
+
}
|
|
1225
1231
|
if (data.arn != null) {
|
|
1226
1232
|
contents.Arn = (0, smithy_client_1.expectString)(data.arn);
|
|
1227
1233
|
}
|
|
@@ -1822,6 +1828,7 @@ const deserializeAws_restJson1PackagingConfiguration = (output, context) => {
|
|
|
1822
1828
|
};
|
|
1823
1829
|
const deserializeAws_restJson1PackagingGroup = (output, context) => {
|
|
1824
1830
|
return {
|
|
1831
|
+
ApproximateAssetCount: (0, smithy_client_1.expectInt32)(output.approximateAssetCount),
|
|
1825
1832
|
Arn: (0, smithy_client_1.expectString)(output.arn),
|
|
1826
1833
|
Authorization: output.authorization != null ? deserializeAws_restJson1Authorization(output.authorization, context) : undefined,
|
|
1827
1834
|
DomainName: (0, smithy_client_1.expectString)(output.domainName),
|
|
@@ -895,6 +895,9 @@ export const deserializeAws_restJson1DescribePackagingGroupCommand = async (outp
|
|
|
895
895
|
$metadata: deserializeMetadata(output),
|
|
896
896
|
});
|
|
897
897
|
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
898
|
+
if (data.approximateAssetCount != null) {
|
|
899
|
+
contents.ApproximateAssetCount = __expectInt32(data.approximateAssetCount);
|
|
900
|
+
}
|
|
898
901
|
if (data.arn != null) {
|
|
899
902
|
contents.Arn = __expectString(data.arn);
|
|
900
903
|
}
|
|
@@ -1186,6 +1189,9 @@ export const deserializeAws_restJson1UpdatePackagingGroupCommand = async (output
|
|
|
1186
1189
|
$metadata: deserializeMetadata(output),
|
|
1187
1190
|
});
|
|
1188
1191
|
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1192
|
+
if (data.approximateAssetCount != null) {
|
|
1193
|
+
contents.ApproximateAssetCount = __expectInt32(data.approximateAssetCount);
|
|
1194
|
+
}
|
|
1189
1195
|
if (data.arn != null) {
|
|
1190
1196
|
contents.Arn = __expectString(data.arn);
|
|
1191
1197
|
}
|
|
@@ -1785,6 +1791,7 @@ const deserializeAws_restJson1PackagingConfiguration = (output, context) => {
|
|
|
1785
1791
|
};
|
|
1786
1792
|
const deserializeAws_restJson1PackagingGroup = (output, context) => {
|
|
1787
1793
|
return {
|
|
1794
|
+
ApproximateAssetCount: __expectInt32(output.approximateAssetCount),
|
|
1788
1795
|
Arn: __expectString(output.arn),
|
|
1789
1796
|
Authorization: output.authorization != null ? deserializeAws_restJson1Authorization(output.authorization, context) : undefined,
|
|
1790
1797
|
DomainName: __expectString(output.domainName),
|
|
@@ -95,7 +95,7 @@ export interface DashManifest {
|
|
|
95
95
|
*/
|
|
96
96
|
Profile?: Profile | string;
|
|
97
97
|
/**
|
|
98
|
-
* The source of scte markers used. When set to SEGMENTS, the scte markers are sourced from the segments of the ingested content. When set to MANIFEST, the scte markers are sourced from the manifest of the ingested content.
|
|
98
|
+
* The source of scte markers used. When set to SEGMENTS, the scte markers are sourced from the segments of the ingested content. When set to MANIFEST, the scte markers are sourced from the manifest of the ingested content. The MANIFEST value is compatible with source HLS playlists using the SCTE-35 Enhanced syntax (#EXT-OATCLS-SCTE35 tags). SCTE-35 Elemental and SCTE-35 Daterange syntaxes are not supported with this option.
|
|
99
99
|
*/
|
|
100
100
|
ScteMarkersSource?: ScteMarkersSource | string;
|
|
101
101
|
/**
|
|
@@ -467,6 +467,10 @@ export interface EgressAccessLogs {
|
|
|
467
467
|
* A MediaPackage VOD PackagingGroup resource.
|
|
468
468
|
*/
|
|
469
469
|
export interface PackagingGroup {
|
|
470
|
+
/**
|
|
471
|
+
* The approximate asset count of the PackagingGroup.
|
|
472
|
+
*/
|
|
473
|
+
ApproximateAssetCount?: number;
|
|
470
474
|
/**
|
|
471
475
|
* The ARN of the PackagingGroup.
|
|
472
476
|
*/
|
|
@@ -899,6 +903,10 @@ export interface DescribePackagingGroupRequest {
|
|
|
899
903
|
Id: string | undefined;
|
|
900
904
|
}
|
|
901
905
|
export interface DescribePackagingGroupResponse {
|
|
906
|
+
/**
|
|
907
|
+
* The approximate asset count of the PackagingGroup.
|
|
908
|
+
*/
|
|
909
|
+
ApproximateAssetCount?: number;
|
|
902
910
|
/**
|
|
903
911
|
* The ARN of the PackagingGroup.
|
|
904
912
|
*/
|
|
@@ -1038,6 +1046,10 @@ export interface UpdatePackagingGroupRequest {
|
|
|
1038
1046
|
Id: string | undefined;
|
|
1039
1047
|
}
|
|
1040
1048
|
export interface UpdatePackagingGroupResponse {
|
|
1049
|
+
/**
|
|
1050
|
+
* The approximate asset count of the PackagingGroup.
|
|
1051
|
+
*/
|
|
1052
|
+
ApproximateAssetCount?: number;
|
|
1041
1053
|
/**
|
|
1042
1054
|
* The ARN of the PackagingGroup.
|
|
1043
1055
|
*/
|
|
@@ -163,6 +163,7 @@ export interface EgressAccessLogs {
|
|
|
163
163
|
LogGroupName?: string;
|
|
164
164
|
}
|
|
165
165
|
export interface PackagingGroup {
|
|
166
|
+
ApproximateAssetCount?: number;
|
|
166
167
|
Arn?: string;
|
|
167
168
|
Authorization?: Authorization;
|
|
168
169
|
DomainName?: string;
|
|
@@ -321,6 +322,7 @@ export interface DescribePackagingGroupRequest {
|
|
|
321
322
|
Id: string | undefined;
|
|
322
323
|
}
|
|
323
324
|
export interface DescribePackagingGroupResponse {
|
|
325
|
+
ApproximateAssetCount?: number;
|
|
324
326
|
Arn?: string;
|
|
325
327
|
Authorization?: Authorization;
|
|
326
328
|
DomainName?: string;
|
|
@@ -373,6 +375,7 @@ export interface UpdatePackagingGroupRequest {
|
|
|
373
375
|
Id: string | undefined;
|
|
374
376
|
}
|
|
375
377
|
export interface UpdatePackagingGroupResponse {
|
|
378
|
+
ApproximateAssetCount?: number;
|
|
376
379
|
Arn?: string;
|
|
377
380
|
Authorization?: Authorization;
|
|
378
381
|
DomainName?: string;
|
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.228.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",
|