@aws-sdk/client-mediapackage-vod 3.1075.0 → 3.1077.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/index.js +946 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/MediaPackageVodServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -85
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -655
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultMediaPackageVodHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "mediapackage-vod",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultMediaPackageVodHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,816 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
86
|
+
],
|
|
87
|
+
results: [
|
|
88
|
+
[a],
|
|
89
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
90
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
91
|
+
[g, i],
|
|
92
|
+
["https://mediapackage-vod-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
93
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
94
|
+
["https://mediapackage-vod-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
95
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
96
|
+
["https://mediapackage-vod.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
97
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
98
|
+
["https://mediapackage-vod.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
99
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
100
|
+
]
|
|
101
|
+
};
|
|
102
|
+
const root = 2;
|
|
103
|
+
const r = 100_000_000;
|
|
104
|
+
const nodes = new Int32Array([
|
|
105
|
+
-1, 1, -1,
|
|
106
|
+
0, 12, 3,
|
|
107
|
+
1, 4, r + 11,
|
|
108
|
+
2, 5, r + 11,
|
|
109
|
+
3, 8, 6,
|
|
110
|
+
4, 7, r + 10,
|
|
111
|
+
5, r + 8, r + 9,
|
|
112
|
+
4, 10, 9,
|
|
113
|
+
6, r + 6, r + 7,
|
|
114
|
+
5, 11, r + 5,
|
|
115
|
+
6, r + 4, r + 5,
|
|
116
|
+
3, r + 1, 13,
|
|
117
|
+
4, r + 2, r + 3,
|
|
118
|
+
]);
|
|
119
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
120
|
+
|
|
121
|
+
const cache = new EndpointCache({
|
|
122
|
+
size: 50,
|
|
123
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
124
|
+
});
|
|
125
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
126
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
127
|
+
endpointParams: endpointParams,
|
|
128
|
+
logger: context.logger,
|
|
129
|
+
}));
|
|
130
|
+
};
|
|
131
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
132
|
+
|
|
133
|
+
class MediaPackageVodServiceException extends ServiceException {
|
|
134
|
+
constructor(options) {
|
|
135
|
+
super(options);
|
|
136
|
+
Object.setPrototypeOf(this, MediaPackageVodServiceException.prototype);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
class ForbiddenException extends MediaPackageVodServiceException {
|
|
141
|
+
name = "ForbiddenException";
|
|
142
|
+
$fault = "client";
|
|
143
|
+
Message;
|
|
144
|
+
constructor(opts) {
|
|
145
|
+
super({
|
|
146
|
+
name: "ForbiddenException",
|
|
147
|
+
$fault: "client",
|
|
148
|
+
...opts,
|
|
149
|
+
});
|
|
150
|
+
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
151
|
+
this.Message = opts.Message;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
class InternalServerErrorException extends MediaPackageVodServiceException {
|
|
155
|
+
name = "InternalServerErrorException";
|
|
156
|
+
$fault = "server";
|
|
157
|
+
Message;
|
|
158
|
+
constructor(opts) {
|
|
159
|
+
super({
|
|
160
|
+
name: "InternalServerErrorException",
|
|
161
|
+
$fault: "server",
|
|
162
|
+
...opts,
|
|
163
|
+
});
|
|
164
|
+
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
165
|
+
this.Message = opts.Message;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
class NotFoundException extends MediaPackageVodServiceException {
|
|
169
|
+
name = "NotFoundException";
|
|
170
|
+
$fault = "client";
|
|
171
|
+
Message;
|
|
172
|
+
constructor(opts) {
|
|
173
|
+
super({
|
|
174
|
+
name: "NotFoundException",
|
|
175
|
+
$fault: "client",
|
|
176
|
+
...opts,
|
|
177
|
+
});
|
|
178
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
179
|
+
this.Message = opts.Message;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
class ServiceUnavailableException extends MediaPackageVodServiceException {
|
|
183
|
+
name = "ServiceUnavailableException";
|
|
184
|
+
$fault = "server";
|
|
185
|
+
Message;
|
|
186
|
+
constructor(opts) {
|
|
187
|
+
super({
|
|
188
|
+
name: "ServiceUnavailableException",
|
|
189
|
+
$fault: "server",
|
|
190
|
+
...opts,
|
|
191
|
+
});
|
|
192
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
193
|
+
this.Message = opts.Message;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
class TooManyRequestsException extends MediaPackageVodServiceException {
|
|
197
|
+
name = "TooManyRequestsException";
|
|
198
|
+
$fault = "client";
|
|
199
|
+
Message;
|
|
200
|
+
constructor(opts) {
|
|
201
|
+
super({
|
|
202
|
+
name: "TooManyRequestsException",
|
|
203
|
+
$fault: "client",
|
|
204
|
+
...opts,
|
|
205
|
+
});
|
|
206
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
207
|
+
this.Message = opts.Message;
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
class UnprocessableEntityException extends MediaPackageVodServiceException {
|
|
211
|
+
name = "UnprocessableEntityException";
|
|
212
|
+
$fault = "client";
|
|
213
|
+
Message;
|
|
214
|
+
constructor(opts) {
|
|
215
|
+
super({
|
|
216
|
+
name: "UnprocessableEntityException",
|
|
217
|
+
$fault: "client",
|
|
218
|
+
...opts,
|
|
219
|
+
});
|
|
220
|
+
Object.setPrototypeOf(this, UnprocessableEntityException.prototype);
|
|
221
|
+
this.Message = opts.Message;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
const _A = "Arn";
|
|
226
|
+
const _AAC = "ApproximateAssetCount";
|
|
227
|
+
const _AM = "AdMarkers";
|
|
228
|
+
const _AS = "AssetShallow";
|
|
229
|
+
const _As = "Assets";
|
|
230
|
+
const _Au = "Authorization";
|
|
231
|
+
const _CA = "CreatedAt";
|
|
232
|
+
const _CAR = "CreateAssetRequest";
|
|
233
|
+
const _CARr = "CreateAssetResponse";
|
|
234
|
+
const _CAr = "CreateAsset";
|
|
235
|
+
const _CE = "CmafEncryption";
|
|
236
|
+
const _CIS = "CdnIdentifierSecret";
|
|
237
|
+
const _CIV = "ConstantInitializationVector";
|
|
238
|
+
const _CL = "ConfigureLogs";
|
|
239
|
+
const _CLR = "ConfigureLogsRequest";
|
|
240
|
+
const _CLRo = "ConfigureLogsResponse";
|
|
241
|
+
const _CP = "CmafPackage";
|
|
242
|
+
const _CPC = "CreatePackagingConfiguration";
|
|
243
|
+
const _CPCR = "CreatePackagingConfigurationRequest";
|
|
244
|
+
const _CPCRr = "CreatePackagingConfigurationResponse";
|
|
245
|
+
const _CPG = "CreatePackagingGroup";
|
|
246
|
+
const _CPGR = "CreatePackagingGroupRequest";
|
|
247
|
+
const _CPGRr = "CreatePackagingGroupResponse";
|
|
248
|
+
const _DA = "DeleteAsset";
|
|
249
|
+
const _DAR = "DeleteAssetRequest";
|
|
250
|
+
const _DARe = "DeleteAssetResponse";
|
|
251
|
+
const _DARes = "DescribeAssetRequest";
|
|
252
|
+
const _DAResc = "DescribeAssetResponse";
|
|
253
|
+
const _DAe = "DescribeAsset";
|
|
254
|
+
const _DE = "DashEncryption";
|
|
255
|
+
const _DM = "DashManifest";
|
|
256
|
+
const _DMa = "DashManifests";
|
|
257
|
+
const _DN = "DomainName";
|
|
258
|
+
const _DP = "DashPackage";
|
|
259
|
+
const _DPC = "DeletePackagingConfiguration";
|
|
260
|
+
const _DPCR = "DeletePackagingConfigurationRequest";
|
|
261
|
+
const _DPCRe = "DeletePackagingConfigurationResponse";
|
|
262
|
+
const _DPCRes = "DescribePackagingConfigurationRequest";
|
|
263
|
+
const _DPCResc = "DescribePackagingConfigurationResponse";
|
|
264
|
+
const _DPCe = "DescribePackagingConfiguration";
|
|
265
|
+
const _DPG = "DeletePackagingGroup";
|
|
266
|
+
const _DPGR = "DeletePackagingGroupRequest";
|
|
267
|
+
const _DPGRe = "DeletePackagingGroupResponse";
|
|
268
|
+
const _DPGRes = "DescribePackagingGroupRequest";
|
|
269
|
+
const _DPGResc = "DescribePackagingGroupResponse";
|
|
270
|
+
const _DPGe = "DescribePackagingGroup";
|
|
271
|
+
const _E = "Encryption";
|
|
272
|
+
const _EAL = "EgressAccessLogs";
|
|
273
|
+
const _ECC = "EncryptionContractConfiguration";
|
|
274
|
+
const _EE = "EgressEndpoints";
|
|
275
|
+
const _EEg = "EgressEndpoint";
|
|
276
|
+
const _EM = "EncryptionMethod";
|
|
277
|
+
const _FE = "ForbiddenException";
|
|
278
|
+
const _HE = "HlsEncryption";
|
|
279
|
+
const _HM = "HlsManifests";
|
|
280
|
+
const _HMl = "HlsManifest";
|
|
281
|
+
const _HP = "HlsPackage";
|
|
282
|
+
const _I = "Id";
|
|
283
|
+
const _IDS = "IncludeDvbSubtitles";
|
|
284
|
+
const _IECIS = "IncludeEncoderConfigurationInSegments";
|
|
285
|
+
const _IIOS = "IncludeIframeOnlyStream";
|
|
286
|
+
const _ISEE = "InternalServerErrorException";
|
|
287
|
+
const _LA = "ListAssets";
|
|
288
|
+
const _LAR = "ListAssetsRequest";
|
|
289
|
+
const _LARi = "ListAssetsResponse";
|
|
290
|
+
const _LGN = "LogGroupName";
|
|
291
|
+
const _LPC = "ListPackagingConfigurations";
|
|
292
|
+
const _LPCR = "ListPackagingConfigurationsRequest";
|
|
293
|
+
const _LPCRi = "ListPackagingConfigurationsResponse";
|
|
294
|
+
const _LPG = "ListPackagingGroups";
|
|
295
|
+
const _LPGR = "ListPackagingGroupsRequest";
|
|
296
|
+
const _LPGRi = "ListPackagingGroupsResponse";
|
|
297
|
+
const _LTFR = "ListTagsForResource";
|
|
298
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
299
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
300
|
+
const _M = "Message";
|
|
301
|
+
const _MBTS = "MinBufferTimeSeconds";
|
|
302
|
+
const _ME = "MssEncryption";
|
|
303
|
+
const _ML = "ManifestLayout";
|
|
304
|
+
const _MM = "MssManifest";
|
|
305
|
+
const _MMs = "MssManifests";
|
|
306
|
+
const _MN = "ManifestName";
|
|
307
|
+
const _MP = "MssPackage";
|
|
308
|
+
const _MR = "MaxResults";
|
|
309
|
+
const _MVBPS = "MaxVideoBitsPerSecond";
|
|
310
|
+
const _MVBPSi = "MinVideoBitsPerSecond";
|
|
311
|
+
const _NFE = "NotFoundException";
|
|
312
|
+
const _NT = "NextToken";
|
|
313
|
+
const _P = "Profile";
|
|
314
|
+
const _PC = "PackagingConfigurations";
|
|
315
|
+
const _PCI = "PackagingConfigurationId";
|
|
316
|
+
const _PCa = "PackagingConfiguration";
|
|
317
|
+
const _PDTIS = "ProgramDateTimeIntervalSeconds";
|
|
318
|
+
const _PG = "PackagingGroups";
|
|
319
|
+
const _PGI = "PackagingGroupId";
|
|
320
|
+
const _PGa = "PackagingGroup";
|
|
321
|
+
const _PSA = "PresetSpeke20Audio";
|
|
322
|
+
const _PSV = "PresetSpeke20Video";
|
|
323
|
+
const _PT = "PeriodTriggers";
|
|
324
|
+
const _RA = "ResourceArn";
|
|
325
|
+
const _RAo = "RoleArn";
|
|
326
|
+
const _REXK = "RepeatExtXKey";
|
|
327
|
+
const _RI = "ResourceId";
|
|
328
|
+
const _S = "Status";
|
|
329
|
+
const _SA = "SourceArn";
|
|
330
|
+
const _SDS = "SegmentDurationSeconds";
|
|
331
|
+
const _SI = "SystemIds";
|
|
332
|
+
const _SKP = "SpekeKeyProvider";
|
|
333
|
+
const _SMS = "ScteMarkersSource";
|
|
334
|
+
const _SO = "StreamOrder";
|
|
335
|
+
const _SRA = "SourceRoleArn";
|
|
336
|
+
const _SRAe = "SecretsRoleArn";
|
|
337
|
+
const _SS = "StreamSelection";
|
|
338
|
+
const _STF = "SegmentTemplateFormat";
|
|
339
|
+
const _SUE = "ServiceUnavailableException";
|
|
340
|
+
const _T = "Tags";
|
|
341
|
+
const _TK = "TagKeys";
|
|
342
|
+
const _TMRE = "TooManyRequestsException";
|
|
343
|
+
const _TR = "TagResource";
|
|
344
|
+
const _TRR = "TagResourceRequest";
|
|
345
|
+
const _U = "Url";
|
|
346
|
+
const _UARG = "UseAudioRenditionGroup";
|
|
347
|
+
const _UEE = "UnprocessableEntityException";
|
|
348
|
+
const _UPG = "UpdatePackagingGroup";
|
|
349
|
+
const _UPGR = "UpdatePackagingGroupRequest";
|
|
350
|
+
const _UPGRp = "UpdatePackagingGroupResponse";
|
|
351
|
+
const _UR = "UntagResource";
|
|
352
|
+
const _URR = "UntagResourceRequest";
|
|
353
|
+
const _a = "arn";
|
|
354
|
+
const _aAC = "approximateAssetCount";
|
|
355
|
+
const _aM = "adMarkers";
|
|
356
|
+
const _as = "assets";
|
|
357
|
+
const _au = "authorization";
|
|
358
|
+
const _c = "client";
|
|
359
|
+
const _cA = "createdAt";
|
|
360
|
+
const _cIS = "cdnIdentifierSecret";
|
|
361
|
+
const _cIV = "constantInitializationVector";
|
|
362
|
+
const _cP = "cmafPackage";
|
|
363
|
+
const _dM = "dashManifests";
|
|
364
|
+
const _dN = "domainName";
|
|
365
|
+
const _dP = "dashPackage";
|
|
366
|
+
const _e = "error";
|
|
367
|
+
const _eAL = "egressAccessLogs";
|
|
368
|
+
const _eCC = "encryptionContractConfiguration";
|
|
369
|
+
const _eE = "egressEndpoints";
|
|
370
|
+
const _eM = "encryptionMethod";
|
|
371
|
+
const _en = "encryption";
|
|
372
|
+
const _h = "http";
|
|
373
|
+
const _hE = "httpError";
|
|
374
|
+
const _hM = "hlsManifests";
|
|
375
|
+
const _hP = "hlsPackage";
|
|
376
|
+
const _hQ = "httpQuery";
|
|
377
|
+
const _i = "id";
|
|
378
|
+
const _iDS = "includeDvbSubtitles";
|
|
379
|
+
const _iECIS = "includeEncoderConfigurationInSegments";
|
|
380
|
+
const _iIOS = "includeIframeOnlyStream";
|
|
381
|
+
const _jN = "jsonName";
|
|
382
|
+
const _lGN = "logGroupName";
|
|
383
|
+
const _lOAS = "__listOfAssetShallow";
|
|
384
|
+
const _lODM = "__listOfDashManifest";
|
|
385
|
+
const _lOEE = "__listOfEgressEndpoint";
|
|
386
|
+
const _lOHM = "__listOfHlsManifest";
|
|
387
|
+
const _lOMM = "__listOfMssManifest";
|
|
388
|
+
const _lOPC = "__listOfPackagingConfiguration";
|
|
389
|
+
const _lOPG = "__listOfPackagingGroup";
|
|
390
|
+
const _m = "message";
|
|
391
|
+
const _mBTS = "minBufferTimeSeconds";
|
|
392
|
+
const _mL = "manifestLayout";
|
|
393
|
+
const _mM = "mssManifests";
|
|
394
|
+
const _mN = "manifestName";
|
|
395
|
+
const _mP = "mssPackage";
|
|
396
|
+
const _mR = "maxResults";
|
|
397
|
+
const _mVBPS = "maxVideoBitsPerSecond";
|
|
398
|
+
const _mVBPSi = "minVideoBitsPerSecond";
|
|
399
|
+
const _nT = "nextToken";
|
|
400
|
+
const _p = "profile";
|
|
401
|
+
const _pC = "packagingConfigurations";
|
|
402
|
+
const _pCI = "packagingConfigurationId";
|
|
403
|
+
const _pDTIS = "programDateTimeIntervalSeconds";
|
|
404
|
+
const _pG = "packagingGroups";
|
|
405
|
+
const _pGI = "packagingGroupId";
|
|
406
|
+
const _pSA = "presetSpeke20Audio";
|
|
407
|
+
const _pSV = "presetSpeke20Video";
|
|
408
|
+
const _pT = "periodTriggers";
|
|
409
|
+
const _rA = "roleArn";
|
|
410
|
+
const _rEXK = "repeatExtXKey";
|
|
411
|
+
const _rI = "resourceId";
|
|
412
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.mediapackagevod";
|
|
413
|
+
const _sA = "sourceArn";
|
|
414
|
+
const _sDS = "segmentDurationSeconds";
|
|
415
|
+
const _sI = "systemIds";
|
|
416
|
+
const _sKP = "spekeKeyProvider";
|
|
417
|
+
const _sMS = "scteMarkersSource";
|
|
418
|
+
const _sO = "streamOrder";
|
|
419
|
+
const _sRA = "sourceRoleArn";
|
|
420
|
+
const _sRAe = "secretsRoleArn";
|
|
421
|
+
const _sS = "streamSelection";
|
|
422
|
+
const _sTF = "segmentTemplateFormat";
|
|
423
|
+
const _se = "server";
|
|
424
|
+
const _st = "status";
|
|
425
|
+
const _t = "tags";
|
|
426
|
+
const _tK = "tagKeys";
|
|
427
|
+
const _u = "url";
|
|
428
|
+
const _uARG = "useAudioRenditionGroup";
|
|
429
|
+
const n0 = "com.amazonaws.mediapackagevod";
|
|
430
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
431
|
+
var MediaPackageVodServiceException$ = [-3, _s, "MediaPackageVodServiceException", 0, [], []];
|
|
432
|
+
_s_registry.registerError(MediaPackageVodServiceException$, MediaPackageVodServiceException);
|
|
433
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
434
|
+
var ForbiddenException$ = [-3, n0, _FE,
|
|
435
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
436
|
+
[_M],
|
|
437
|
+
[[0, { [_jN]: _m }]]
|
|
438
|
+
];
|
|
439
|
+
n0_registry.registerError(ForbiddenException$, ForbiddenException);
|
|
440
|
+
var InternalServerErrorException$ = [-3, n0, _ISEE,
|
|
441
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
442
|
+
[_M],
|
|
443
|
+
[[0, { [_jN]: _m }]]
|
|
444
|
+
];
|
|
445
|
+
n0_registry.registerError(InternalServerErrorException$, InternalServerErrorException);
|
|
446
|
+
var NotFoundException$ = [-3, n0, _NFE,
|
|
447
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
448
|
+
[_M],
|
|
449
|
+
[[0, { [_jN]: _m }]]
|
|
450
|
+
];
|
|
451
|
+
n0_registry.registerError(NotFoundException$, NotFoundException);
|
|
452
|
+
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
453
|
+
{ [_e]: _se, [_hE]: 503 },
|
|
454
|
+
[_M],
|
|
455
|
+
[[0, { [_jN]: _m }]]
|
|
456
|
+
];
|
|
457
|
+
n0_registry.registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
458
|
+
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
459
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
460
|
+
[_M],
|
|
461
|
+
[[0, { [_jN]: _m }]]
|
|
462
|
+
];
|
|
463
|
+
n0_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
464
|
+
var UnprocessableEntityException$ = [-3, n0, _UEE,
|
|
465
|
+
{ [_e]: _c, [_hE]: 422 },
|
|
466
|
+
[_M],
|
|
467
|
+
[[0, { [_jN]: _m }]]
|
|
468
|
+
];
|
|
469
|
+
n0_registry.registerError(UnprocessableEntityException$, UnprocessableEntityException);
|
|
470
|
+
const errorTypeRegistries = [
|
|
471
|
+
_s_registry,
|
|
472
|
+
n0_registry,
|
|
473
|
+
];
|
|
474
|
+
var AssetShallow$ = [3, n0, _AS,
|
|
475
|
+
0,
|
|
476
|
+
[_A, _CA, _I, _PGI, _RI, _SA, _SRA, _T],
|
|
477
|
+
[[0, { [_jN]: _a }], [0, { [_jN]: _cA }], [0, { [_jN]: _i }], [0, { [_jN]: _pGI }], [0, { [_jN]: _rI }], [0, { [_jN]: _sA }], [0, { [_jN]: _sRA }], [128 | 0, { [_jN]: _t }]]
|
|
478
|
+
];
|
|
479
|
+
var Authorization$ = [3, n0, _Au,
|
|
480
|
+
0,
|
|
481
|
+
[_CIS, _SRAe],
|
|
482
|
+
[[0, { [_jN]: _cIS }], [0, { [_jN]: _sRAe }]], 2
|
|
483
|
+
];
|
|
484
|
+
var CmafEncryption$ = [3, n0, _CE,
|
|
485
|
+
0,
|
|
486
|
+
[_SKP, _CIV],
|
|
487
|
+
[[() => SpekeKeyProvider$, { [_jN]: _sKP }], [0, { [_jN]: _cIV }]], 1
|
|
488
|
+
];
|
|
489
|
+
var CmafPackage$ = [3, n0, _CP,
|
|
490
|
+
0,
|
|
491
|
+
[_HM, _E, _IECIS, _SDS],
|
|
492
|
+
[[() => __listOfHlsManifest, { [_jN]: _hM }], [() => CmafEncryption$, { [_jN]: _en }], [2, { [_jN]: _iECIS }], [1, { [_jN]: _sDS }]], 1
|
|
493
|
+
];
|
|
494
|
+
var ConfigureLogsRequest$ = [3, n0, _CLR,
|
|
495
|
+
0,
|
|
496
|
+
[_I, _EAL],
|
|
497
|
+
[[0, 1], [() => EgressAccessLogs$, { [_jN]: _eAL }]], 1
|
|
498
|
+
];
|
|
499
|
+
var ConfigureLogsResponse$ = [3, n0, _CLRo,
|
|
500
|
+
0,
|
|
501
|
+
[_A, _Au, _CA, _DN, _EAL, _I, _T],
|
|
502
|
+
[[0, { [_jN]: _a }], [() => Authorization$, { [_jN]: _au }], [0, { [_jN]: _cA }], [0, { [_jN]: _dN }], [() => EgressAccessLogs$, { [_jN]: _eAL }], [0, { [_jN]: _i }], [128 | 0, { [_jN]: _t }]]
|
|
503
|
+
];
|
|
504
|
+
var CreateAssetRequest$ = [3, n0, _CAR,
|
|
505
|
+
0,
|
|
506
|
+
[_I, _PGI, _SA, _SRA, _RI, _T],
|
|
507
|
+
[[0, { [_jN]: _i }], [0, { [_jN]: _pGI }], [0, { [_jN]: _sA }], [0, { [_jN]: _sRA }], [0, { [_jN]: _rI }], [128 | 0, { [_jN]: _t }]], 4
|
|
508
|
+
];
|
|
509
|
+
var CreateAssetResponse$ = [3, n0, _CARr,
|
|
510
|
+
0,
|
|
511
|
+
[_A, _CA, _EE, _I, _PGI, _RI, _SA, _SRA, _T],
|
|
512
|
+
[[0, { [_jN]: _a }], [0, { [_jN]: _cA }], [() => __listOfEgressEndpoint, { [_jN]: _eE }], [0, { [_jN]: _i }], [0, { [_jN]: _pGI }], [0, { [_jN]: _rI }], [0, { [_jN]: _sA }], [0, { [_jN]: _sRA }], [128 | 0, { [_jN]: _t }]]
|
|
513
|
+
];
|
|
514
|
+
var CreatePackagingConfigurationRequest$ = [3, n0, _CPCR,
|
|
515
|
+
0,
|
|
516
|
+
[_I, _PGI, _CP, _DP, _HP, _MP, _T],
|
|
517
|
+
[[0, { [_jN]: _i }], [0, { [_jN]: _pGI }], [() => CmafPackage$, { [_jN]: _cP }], [() => DashPackage$, { [_jN]: _dP }], [() => HlsPackage$, { [_jN]: _hP }], [() => MssPackage$, { [_jN]: _mP }], [128 | 0, { [_jN]: _t }]], 2
|
|
518
|
+
];
|
|
519
|
+
var CreatePackagingConfigurationResponse$ = [3, n0, _CPCRr,
|
|
520
|
+
0,
|
|
521
|
+
[_A, _CP, _CA, _DP, _HP, _I, _MP, _PGI, _T],
|
|
522
|
+
[[0, { [_jN]: _a }], [() => CmafPackage$, { [_jN]: _cP }], [0, { [_jN]: _cA }], [() => DashPackage$, { [_jN]: _dP }], [() => HlsPackage$, { [_jN]: _hP }], [0, { [_jN]: _i }], [() => MssPackage$, { [_jN]: _mP }], [0, { [_jN]: _pGI }], [128 | 0, { [_jN]: _t }]]
|
|
523
|
+
];
|
|
524
|
+
var CreatePackagingGroupRequest$ = [3, n0, _CPGR,
|
|
525
|
+
0,
|
|
526
|
+
[_I, _Au, _EAL, _T],
|
|
527
|
+
[[0, { [_jN]: _i }], [() => Authorization$, { [_jN]: _au }], [() => EgressAccessLogs$, { [_jN]: _eAL }], [128 | 0, { [_jN]: _t }]], 1
|
|
528
|
+
];
|
|
529
|
+
var CreatePackagingGroupResponse$ = [3, n0, _CPGRr,
|
|
530
|
+
0,
|
|
531
|
+
[_A, _Au, _CA, _DN, _EAL, _I, _T],
|
|
532
|
+
[[0, { [_jN]: _a }], [() => Authorization$, { [_jN]: _au }], [0, { [_jN]: _cA }], [0, { [_jN]: _dN }], [() => EgressAccessLogs$, { [_jN]: _eAL }], [0, { [_jN]: _i }], [128 | 0, { [_jN]: _t }]]
|
|
533
|
+
];
|
|
534
|
+
var DashEncryption$ = [3, n0, _DE,
|
|
535
|
+
0,
|
|
536
|
+
[_SKP],
|
|
537
|
+
[[() => SpekeKeyProvider$, { [_jN]: _sKP }]], 1
|
|
538
|
+
];
|
|
539
|
+
var DashManifest$ = [3, n0, _DM,
|
|
540
|
+
0,
|
|
541
|
+
[_ML, _MN, _MBTS, _P, _SMS, _SS],
|
|
542
|
+
[[0, { [_jN]: _mL }], [0, { [_jN]: _mN }], [1, { [_jN]: _mBTS }], [0, { [_jN]: _p }], [0, { [_jN]: _sMS }], [() => StreamSelection$, { [_jN]: _sS }]]
|
|
543
|
+
];
|
|
544
|
+
var DashPackage$ = [3, n0, _DP,
|
|
545
|
+
0,
|
|
546
|
+
[_DMa, _E, _IECIS, _IIOS, _PT, _SDS, _STF],
|
|
547
|
+
[[() => __listOfDashManifest, { [_jN]: _dM }], [() => DashEncryption$, { [_jN]: _en }], [2, { [_jN]: _iECIS }], [2, { [_jN]: _iIOS }], [64 | 0, { [_jN]: _pT }], [1, { [_jN]: _sDS }], [0, { [_jN]: _sTF }]], 1
|
|
548
|
+
];
|
|
549
|
+
var DeleteAssetRequest$ = [3, n0, _DAR,
|
|
550
|
+
0,
|
|
551
|
+
[_I],
|
|
552
|
+
[[0, 1]], 1
|
|
553
|
+
];
|
|
554
|
+
var DeleteAssetResponse$ = [3, n0, _DARe,
|
|
555
|
+
0,
|
|
556
|
+
[],
|
|
557
|
+
[]
|
|
558
|
+
];
|
|
559
|
+
var DeletePackagingConfigurationRequest$ = [3, n0, _DPCR,
|
|
560
|
+
0,
|
|
561
|
+
[_I],
|
|
562
|
+
[[0, 1]], 1
|
|
563
|
+
];
|
|
564
|
+
var DeletePackagingConfigurationResponse$ = [3, n0, _DPCRe,
|
|
565
|
+
0,
|
|
566
|
+
[],
|
|
567
|
+
[]
|
|
568
|
+
];
|
|
569
|
+
var DeletePackagingGroupRequest$ = [3, n0, _DPGR,
|
|
570
|
+
0,
|
|
571
|
+
[_I],
|
|
572
|
+
[[0, 1]], 1
|
|
573
|
+
];
|
|
574
|
+
var DeletePackagingGroupResponse$ = [3, n0, _DPGRe,
|
|
575
|
+
0,
|
|
576
|
+
[],
|
|
577
|
+
[]
|
|
578
|
+
];
|
|
579
|
+
var DescribeAssetRequest$ = [3, n0, _DARes,
|
|
580
|
+
0,
|
|
581
|
+
[_I],
|
|
582
|
+
[[0, 1]], 1
|
|
583
|
+
];
|
|
584
|
+
var DescribeAssetResponse$ = [3, n0, _DAResc,
|
|
585
|
+
0,
|
|
586
|
+
[_A, _CA, _EE, _I, _PGI, _RI, _SA, _SRA, _T],
|
|
587
|
+
[[0, { [_jN]: _a }], [0, { [_jN]: _cA }], [() => __listOfEgressEndpoint, { [_jN]: _eE }], [0, { [_jN]: _i }], [0, { [_jN]: _pGI }], [0, { [_jN]: _rI }], [0, { [_jN]: _sA }], [0, { [_jN]: _sRA }], [128 | 0, { [_jN]: _t }]]
|
|
588
|
+
];
|
|
589
|
+
var DescribePackagingConfigurationRequest$ = [3, n0, _DPCRes,
|
|
590
|
+
0,
|
|
591
|
+
[_I],
|
|
592
|
+
[[0, 1]], 1
|
|
593
|
+
];
|
|
594
|
+
var DescribePackagingConfigurationResponse$ = [3, n0, _DPCResc,
|
|
595
|
+
0,
|
|
596
|
+
[_A, _CP, _CA, _DP, _HP, _I, _MP, _PGI, _T],
|
|
597
|
+
[[0, { [_jN]: _a }], [() => CmafPackage$, { [_jN]: _cP }], [0, { [_jN]: _cA }], [() => DashPackage$, { [_jN]: _dP }], [() => HlsPackage$, { [_jN]: _hP }], [0, { [_jN]: _i }], [() => MssPackage$, { [_jN]: _mP }], [0, { [_jN]: _pGI }], [128 | 0, { [_jN]: _t }]]
|
|
598
|
+
];
|
|
599
|
+
var DescribePackagingGroupRequest$ = [3, n0, _DPGRes,
|
|
600
|
+
0,
|
|
601
|
+
[_I],
|
|
602
|
+
[[0, 1]], 1
|
|
603
|
+
];
|
|
604
|
+
var DescribePackagingGroupResponse$ = [3, n0, _DPGResc,
|
|
605
|
+
0,
|
|
606
|
+
[_AAC, _A, _Au, _CA, _DN, _EAL, _I, _T],
|
|
607
|
+
[[1, { [_jN]: _aAC }], [0, { [_jN]: _a }], [() => Authorization$, { [_jN]: _au }], [0, { [_jN]: _cA }], [0, { [_jN]: _dN }], [() => EgressAccessLogs$, { [_jN]: _eAL }], [0, { [_jN]: _i }], [128 | 0, { [_jN]: _t }]]
|
|
608
|
+
];
|
|
609
|
+
var EgressAccessLogs$ = [3, n0, _EAL,
|
|
610
|
+
0,
|
|
611
|
+
[_LGN],
|
|
612
|
+
[[0, { [_jN]: _lGN }]]
|
|
613
|
+
];
|
|
614
|
+
var EgressEndpoint$ = [3, n0, _EEg,
|
|
615
|
+
0,
|
|
616
|
+
[_PCI, _S, _U],
|
|
617
|
+
[[0, { [_jN]: _pCI }], [0, { [_jN]: _st }], [0, { [_jN]: _u }]]
|
|
618
|
+
];
|
|
619
|
+
var EncryptionContractConfiguration$ = [3, n0, _ECC,
|
|
620
|
+
0,
|
|
621
|
+
[_PSA, _PSV],
|
|
622
|
+
[[0, { [_jN]: _pSA }], [0, { [_jN]: _pSV }]], 2
|
|
623
|
+
];
|
|
624
|
+
var HlsEncryption$ = [3, n0, _HE,
|
|
625
|
+
0,
|
|
626
|
+
[_SKP, _CIV, _EM],
|
|
627
|
+
[[() => SpekeKeyProvider$, { [_jN]: _sKP }], [0, { [_jN]: _cIV }], [0, { [_jN]: _eM }]], 1
|
|
628
|
+
];
|
|
629
|
+
var HlsManifest$ = [3, n0, _HMl,
|
|
630
|
+
0,
|
|
631
|
+
[_AM, _IIOS, _MN, _PDTIS, _REXK, _SS],
|
|
632
|
+
[[0, { [_jN]: _aM }], [2, { [_jN]: _iIOS }], [0, { [_jN]: _mN }], [1, { [_jN]: _pDTIS }], [2, { [_jN]: _rEXK }], [() => StreamSelection$, { [_jN]: _sS }]]
|
|
633
|
+
];
|
|
634
|
+
var HlsPackage$ = [3, n0, _HP,
|
|
635
|
+
0,
|
|
636
|
+
[_HM, _E, _IDS, _SDS, _UARG],
|
|
637
|
+
[[() => __listOfHlsManifest, { [_jN]: _hM }], [() => HlsEncryption$, { [_jN]: _en }], [2, { [_jN]: _iDS }], [1, { [_jN]: _sDS }], [2, { [_jN]: _uARG }]], 1
|
|
638
|
+
];
|
|
639
|
+
var ListAssetsRequest$ = [3, n0, _LAR,
|
|
640
|
+
0,
|
|
641
|
+
[_MR, _NT, _PGI],
|
|
642
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _pGI }]]
|
|
643
|
+
];
|
|
644
|
+
var ListAssetsResponse$ = [3, n0, _LARi,
|
|
645
|
+
0,
|
|
646
|
+
[_As, _NT],
|
|
647
|
+
[[() => __listOfAssetShallow, { [_jN]: _as }], [0, { [_jN]: _nT }]]
|
|
648
|
+
];
|
|
649
|
+
var ListPackagingConfigurationsRequest$ = [3, n0, _LPCR,
|
|
650
|
+
0,
|
|
651
|
+
[_MR, _NT, _PGI],
|
|
652
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _pGI }]]
|
|
653
|
+
];
|
|
654
|
+
var ListPackagingConfigurationsResponse$ = [3, n0, _LPCRi,
|
|
655
|
+
0,
|
|
656
|
+
[_NT, _PC],
|
|
657
|
+
[[0, { [_jN]: _nT }], [() => __listOfPackagingConfiguration, { [_jN]: _pC }]]
|
|
658
|
+
];
|
|
659
|
+
var ListPackagingGroupsRequest$ = [3, n0, _LPGR,
|
|
660
|
+
0,
|
|
661
|
+
[_MR, _NT],
|
|
662
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
663
|
+
];
|
|
664
|
+
var ListPackagingGroupsResponse$ = [3, n0, _LPGRi,
|
|
665
|
+
0,
|
|
666
|
+
[_NT, _PG],
|
|
667
|
+
[[0, { [_jN]: _nT }], [() => __listOfPackagingGroup, { [_jN]: _pG }]]
|
|
668
|
+
];
|
|
669
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
670
|
+
0,
|
|
671
|
+
[_RA],
|
|
672
|
+
[[0, 1]], 1
|
|
673
|
+
];
|
|
674
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
675
|
+
0,
|
|
676
|
+
[_T],
|
|
677
|
+
[[128 | 0, { [_jN]: _t }]]
|
|
678
|
+
];
|
|
679
|
+
var MssEncryption$ = [3, n0, _ME,
|
|
680
|
+
0,
|
|
681
|
+
[_SKP],
|
|
682
|
+
[[() => SpekeKeyProvider$, { [_jN]: _sKP }]], 1
|
|
683
|
+
];
|
|
684
|
+
var MssManifest$ = [3, n0, _MM,
|
|
685
|
+
0,
|
|
686
|
+
[_MN, _SS],
|
|
687
|
+
[[0, { [_jN]: _mN }], [() => StreamSelection$, { [_jN]: _sS }]]
|
|
688
|
+
];
|
|
689
|
+
var MssPackage$ = [3, n0, _MP,
|
|
690
|
+
0,
|
|
691
|
+
[_MMs, _E, _SDS],
|
|
692
|
+
[[() => __listOfMssManifest, { [_jN]: _mM }], [() => MssEncryption$, { [_jN]: _en }], [1, { [_jN]: _sDS }]], 1
|
|
693
|
+
];
|
|
694
|
+
var PackagingConfiguration$ = [3, n0, _PCa,
|
|
695
|
+
0,
|
|
696
|
+
[_A, _CP, _CA, _DP, _HP, _I, _MP, _PGI, _T],
|
|
697
|
+
[[0, { [_jN]: _a }], [() => CmafPackage$, { [_jN]: _cP }], [0, { [_jN]: _cA }], [() => DashPackage$, { [_jN]: _dP }], [() => HlsPackage$, { [_jN]: _hP }], [0, { [_jN]: _i }], [() => MssPackage$, { [_jN]: _mP }], [0, { [_jN]: _pGI }], [128 | 0, { [_jN]: _t }]]
|
|
698
|
+
];
|
|
699
|
+
var PackagingGroup$ = [3, n0, _PGa,
|
|
700
|
+
0,
|
|
701
|
+
[_AAC, _A, _Au, _CA, _DN, _EAL, _I, _T],
|
|
702
|
+
[[1, { [_jN]: _aAC }], [0, { [_jN]: _a }], [() => Authorization$, { [_jN]: _au }], [0, { [_jN]: _cA }], [0, { [_jN]: _dN }], [() => EgressAccessLogs$, { [_jN]: _eAL }], [0, { [_jN]: _i }], [128 | 0, { [_jN]: _t }]]
|
|
703
|
+
];
|
|
704
|
+
var SpekeKeyProvider$ = [3, n0, _SKP,
|
|
705
|
+
0,
|
|
706
|
+
[_RAo, _SI, _U, _ECC],
|
|
707
|
+
[[0, { [_jN]: _rA }], [64 | 0, { [_jN]: _sI }], [0, { [_jN]: _u }], [() => EncryptionContractConfiguration$, { [_jN]: _eCC }]], 3
|
|
708
|
+
];
|
|
709
|
+
var StreamSelection$ = [3, n0, _SS,
|
|
710
|
+
0,
|
|
711
|
+
[_MVBPS, _MVBPSi, _SO],
|
|
712
|
+
[[1, { [_jN]: _mVBPS }], [1, { [_jN]: _mVBPSi }], [0, { [_jN]: _sO }]]
|
|
713
|
+
];
|
|
714
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
715
|
+
0,
|
|
716
|
+
[_RA, _T],
|
|
717
|
+
[[0, 1], [128 | 0, { [_jN]: _t }]], 2
|
|
718
|
+
];
|
|
719
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
720
|
+
0,
|
|
721
|
+
[_RA, _TK],
|
|
722
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
723
|
+
];
|
|
724
|
+
var UpdatePackagingGroupRequest$ = [3, n0, _UPGR,
|
|
725
|
+
0,
|
|
726
|
+
[_I, _Au],
|
|
727
|
+
[[0, 1], [() => Authorization$, { [_jN]: _au }]], 1
|
|
728
|
+
];
|
|
729
|
+
var UpdatePackagingGroupResponse$ = [3, n0, _UPGRp,
|
|
730
|
+
0,
|
|
731
|
+
[_AAC, _A, _Au, _CA, _DN, _EAL, _I, _T],
|
|
732
|
+
[[1, { [_jN]: _aAC }], [0, { [_jN]: _a }], [() => Authorization$, { [_jN]: _au }], [0, { [_jN]: _cA }], [0, { [_jN]: _dN }], [() => EgressAccessLogs$, { [_jN]: _eAL }], [0, { [_jN]: _i }], [128 | 0, { [_jN]: _t }]]
|
|
733
|
+
];
|
|
734
|
+
var __Unit = "unit";
|
|
735
|
+
var __listOfAssetShallow = [1, n0, _lOAS,
|
|
736
|
+
0, [() => AssetShallow$,
|
|
737
|
+
0]
|
|
738
|
+
];
|
|
739
|
+
var __listOfDashManifest = [1, n0, _lODM,
|
|
740
|
+
0, [() => DashManifest$,
|
|
741
|
+
0]
|
|
742
|
+
];
|
|
743
|
+
var __listOfEgressEndpoint = [1, n0, _lOEE,
|
|
744
|
+
0, [() => EgressEndpoint$,
|
|
745
|
+
0]
|
|
746
|
+
];
|
|
747
|
+
var __listOfHlsManifest = [1, n0, _lOHM,
|
|
748
|
+
0, [() => HlsManifest$,
|
|
749
|
+
0]
|
|
750
|
+
];
|
|
751
|
+
var __listOfMssManifest = [1, n0, _lOMM,
|
|
752
|
+
0, [() => MssManifest$,
|
|
753
|
+
0]
|
|
754
|
+
];
|
|
755
|
+
var __listOfPackagingConfiguration = [1, n0, _lOPC,
|
|
756
|
+
0, [() => PackagingConfiguration$,
|
|
757
|
+
0]
|
|
758
|
+
];
|
|
759
|
+
var __listOfPackagingGroup = [1, n0, _lOPG,
|
|
760
|
+
0, [() => PackagingGroup$,
|
|
761
|
+
0]
|
|
762
|
+
];
|
|
763
|
+
var ConfigureLogs$ = [9, n0, _CL,
|
|
764
|
+
{ [_h]: ["PUT", "/packaging_groups/{Id}/configure_logs", 200] }, () => ConfigureLogsRequest$, () => ConfigureLogsResponse$
|
|
765
|
+
];
|
|
766
|
+
var CreateAsset$ = [9, n0, _CAr,
|
|
767
|
+
{ [_h]: ["POST", "/assets", 200] }, () => CreateAssetRequest$, () => CreateAssetResponse$
|
|
768
|
+
];
|
|
769
|
+
var CreatePackagingConfiguration$ = [9, n0, _CPC,
|
|
770
|
+
{ [_h]: ["POST", "/packaging_configurations", 200] }, () => CreatePackagingConfigurationRequest$, () => CreatePackagingConfigurationResponse$
|
|
771
|
+
];
|
|
772
|
+
var CreatePackagingGroup$ = [9, n0, _CPG,
|
|
773
|
+
{ [_h]: ["POST", "/packaging_groups", 200] }, () => CreatePackagingGroupRequest$, () => CreatePackagingGroupResponse$
|
|
774
|
+
];
|
|
775
|
+
var DeleteAsset$ = [9, n0, _DA,
|
|
776
|
+
{ [_h]: ["DELETE", "/assets/{Id}", 202] }, () => DeleteAssetRequest$, () => DeleteAssetResponse$
|
|
777
|
+
];
|
|
778
|
+
var DeletePackagingConfiguration$ = [9, n0, _DPC,
|
|
779
|
+
{ [_h]: ["DELETE", "/packaging_configurations/{Id}", 202] }, () => DeletePackagingConfigurationRequest$, () => DeletePackagingConfigurationResponse$
|
|
780
|
+
];
|
|
781
|
+
var DeletePackagingGroup$ = [9, n0, _DPG,
|
|
782
|
+
{ [_h]: ["DELETE", "/packaging_groups/{Id}", 202] }, () => DeletePackagingGroupRequest$, () => DeletePackagingGroupResponse$
|
|
783
|
+
];
|
|
784
|
+
var DescribeAsset$ = [9, n0, _DAe,
|
|
785
|
+
{ [_h]: ["GET", "/assets/{Id}", 200] }, () => DescribeAssetRequest$, () => DescribeAssetResponse$
|
|
786
|
+
];
|
|
787
|
+
var DescribePackagingConfiguration$ = [9, n0, _DPCe,
|
|
788
|
+
{ [_h]: ["GET", "/packaging_configurations/{Id}", 200] }, () => DescribePackagingConfigurationRequest$, () => DescribePackagingConfigurationResponse$
|
|
789
|
+
];
|
|
790
|
+
var DescribePackagingGroup$ = [9, n0, _DPGe,
|
|
791
|
+
{ [_h]: ["GET", "/packaging_groups/{Id}", 200] }, () => DescribePackagingGroupRequest$, () => DescribePackagingGroupResponse$
|
|
792
|
+
];
|
|
793
|
+
var ListAssets$ = [9, n0, _LA,
|
|
794
|
+
{ [_h]: ["GET", "/assets", 200] }, () => ListAssetsRequest$, () => ListAssetsResponse$
|
|
795
|
+
];
|
|
796
|
+
var ListPackagingConfigurations$ = [9, n0, _LPC,
|
|
797
|
+
{ [_h]: ["GET", "/packaging_configurations", 200] }, () => ListPackagingConfigurationsRequest$, () => ListPackagingConfigurationsResponse$
|
|
798
|
+
];
|
|
799
|
+
var ListPackagingGroups$ = [9, n0, _LPG,
|
|
800
|
+
{ [_h]: ["GET", "/packaging_groups", 200] }, () => ListPackagingGroupsRequest$, () => ListPackagingGroupsResponse$
|
|
801
|
+
];
|
|
802
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
803
|
+
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
804
|
+
];
|
|
805
|
+
var TagResource$ = [9, n0, _TR,
|
|
806
|
+
{ [_h]: ["POST", "/tags/{ResourceArn}", 204] }, () => TagResourceRequest$, () => __Unit
|
|
807
|
+
];
|
|
808
|
+
var UntagResource$ = [9, n0, _UR,
|
|
809
|
+
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 204] }, () => UntagResourceRequest$, () => __Unit
|
|
810
|
+
];
|
|
811
|
+
var UpdatePackagingGroup$ = [9, n0, _UPG,
|
|
812
|
+
{ [_h]: ["PUT", "/packaging_groups/{Id}", 200] }, () => UpdatePackagingGroupRequest$, () => UpdatePackagingGroupResponse$
|
|
813
|
+
];
|
|
814
|
+
|
|
815
|
+
const getRuntimeConfig$1 = (config) => {
|
|
816
|
+
return {
|
|
817
|
+
apiVersion: "2018-11-07",
|
|
818
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
819
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
820
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
821
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
822
|
+
extensions: config?.extensions ?? [],
|
|
823
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultMediaPackageVodHttpAuthSchemeProvider,
|
|
824
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
825
|
+
{
|
|
826
|
+
schemeId: "aws.auth#sigv4",
|
|
827
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
828
|
+
signer: new AwsSdkSigV4Signer(),
|
|
829
|
+
},
|
|
830
|
+
],
|
|
831
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
832
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
833
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
834
|
+
defaultNamespace: "com.amazonaws.mediapackagevod",
|
|
835
|
+
errorTypeRegistries,
|
|
836
|
+
version: "2018-11-07",
|
|
837
|
+
serviceTarget: "MediaPackageVod",
|
|
838
|
+
},
|
|
839
|
+
serviceId: config?.serviceId ?? "MediaPackage Vod",
|
|
840
|
+
sha256: config?.sha256 ?? Sha256,
|
|
841
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
842
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
843
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
844
|
+
};
|
|
845
|
+
};
|
|
846
|
+
|
|
847
|
+
const getRuntimeConfig = (config) => {
|
|
848
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
849
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
850
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
851
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
852
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
853
|
+
const loaderConfig = {
|
|
854
|
+
profile: config?.profile,
|
|
855
|
+
logger: clientSharedValues.logger,
|
|
856
|
+
};
|
|
857
|
+
return {
|
|
858
|
+
...clientSharedValues,
|
|
859
|
+
...config,
|
|
860
|
+
runtime: "node",
|
|
861
|
+
defaultsMode,
|
|
862
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
863
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
864
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
865
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
866
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
867
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
868
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
869
|
+
retryMode: config?.retryMode ??
|
|
870
|
+
loadConfig({
|
|
871
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
872
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
873
|
+
}, config),
|
|
874
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
875
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
876
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
877
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
878
|
+
};
|
|
879
|
+
};
|
|
880
|
+
|
|
34
881
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
882
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
883
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -404,34 +1251,118 @@ const EncryptionMethod = {
|
|
|
404
1251
|
};
|
|
405
1252
|
|
|
406
1253
|
exports.AdMarkers = AdMarkers;
|
|
1254
|
+
exports.AssetShallow$ = AssetShallow$;
|
|
1255
|
+
exports.Authorization$ = Authorization$;
|
|
1256
|
+
exports.CmafEncryption$ = CmafEncryption$;
|
|
1257
|
+
exports.CmafPackage$ = CmafPackage$;
|
|
1258
|
+
exports.ConfigureLogs$ = ConfigureLogs$;
|
|
407
1259
|
exports.ConfigureLogsCommand = ConfigureLogsCommand;
|
|
1260
|
+
exports.ConfigureLogsRequest$ = ConfigureLogsRequest$;
|
|
1261
|
+
exports.ConfigureLogsResponse$ = ConfigureLogsResponse$;
|
|
1262
|
+
exports.CreateAsset$ = CreateAsset$;
|
|
408
1263
|
exports.CreateAssetCommand = CreateAssetCommand;
|
|
1264
|
+
exports.CreateAssetRequest$ = CreateAssetRequest$;
|
|
1265
|
+
exports.CreateAssetResponse$ = CreateAssetResponse$;
|
|
1266
|
+
exports.CreatePackagingConfiguration$ = CreatePackagingConfiguration$;
|
|
409
1267
|
exports.CreatePackagingConfigurationCommand = CreatePackagingConfigurationCommand;
|
|
1268
|
+
exports.CreatePackagingConfigurationRequest$ = CreatePackagingConfigurationRequest$;
|
|
1269
|
+
exports.CreatePackagingConfigurationResponse$ = CreatePackagingConfigurationResponse$;
|
|
1270
|
+
exports.CreatePackagingGroup$ = CreatePackagingGroup$;
|
|
410
1271
|
exports.CreatePackagingGroupCommand = CreatePackagingGroupCommand;
|
|
1272
|
+
exports.CreatePackagingGroupRequest$ = CreatePackagingGroupRequest$;
|
|
1273
|
+
exports.CreatePackagingGroupResponse$ = CreatePackagingGroupResponse$;
|
|
1274
|
+
exports.DashEncryption$ = DashEncryption$;
|
|
1275
|
+
exports.DashManifest$ = DashManifest$;
|
|
1276
|
+
exports.DashPackage$ = DashPackage$;
|
|
1277
|
+
exports.DeleteAsset$ = DeleteAsset$;
|
|
411
1278
|
exports.DeleteAssetCommand = DeleteAssetCommand;
|
|
1279
|
+
exports.DeleteAssetRequest$ = DeleteAssetRequest$;
|
|
1280
|
+
exports.DeleteAssetResponse$ = DeleteAssetResponse$;
|
|
1281
|
+
exports.DeletePackagingConfiguration$ = DeletePackagingConfiguration$;
|
|
412
1282
|
exports.DeletePackagingConfigurationCommand = DeletePackagingConfigurationCommand;
|
|
1283
|
+
exports.DeletePackagingConfigurationRequest$ = DeletePackagingConfigurationRequest$;
|
|
1284
|
+
exports.DeletePackagingConfigurationResponse$ = DeletePackagingConfigurationResponse$;
|
|
1285
|
+
exports.DeletePackagingGroup$ = DeletePackagingGroup$;
|
|
413
1286
|
exports.DeletePackagingGroupCommand = DeletePackagingGroupCommand;
|
|
1287
|
+
exports.DeletePackagingGroupRequest$ = DeletePackagingGroupRequest$;
|
|
1288
|
+
exports.DeletePackagingGroupResponse$ = DeletePackagingGroupResponse$;
|
|
1289
|
+
exports.DescribeAsset$ = DescribeAsset$;
|
|
414
1290
|
exports.DescribeAssetCommand = DescribeAssetCommand;
|
|
1291
|
+
exports.DescribeAssetRequest$ = DescribeAssetRequest$;
|
|
1292
|
+
exports.DescribeAssetResponse$ = DescribeAssetResponse$;
|
|
1293
|
+
exports.DescribePackagingConfiguration$ = DescribePackagingConfiguration$;
|
|
415
1294
|
exports.DescribePackagingConfigurationCommand = DescribePackagingConfigurationCommand;
|
|
1295
|
+
exports.DescribePackagingConfigurationRequest$ = DescribePackagingConfigurationRequest$;
|
|
1296
|
+
exports.DescribePackagingConfigurationResponse$ = DescribePackagingConfigurationResponse$;
|
|
1297
|
+
exports.DescribePackagingGroup$ = DescribePackagingGroup$;
|
|
416
1298
|
exports.DescribePackagingGroupCommand = DescribePackagingGroupCommand;
|
|
1299
|
+
exports.DescribePackagingGroupRequest$ = DescribePackagingGroupRequest$;
|
|
1300
|
+
exports.DescribePackagingGroupResponse$ = DescribePackagingGroupResponse$;
|
|
1301
|
+
exports.EgressAccessLogs$ = EgressAccessLogs$;
|
|
1302
|
+
exports.EgressEndpoint$ = EgressEndpoint$;
|
|
1303
|
+
exports.EncryptionContractConfiguration$ = EncryptionContractConfiguration$;
|
|
417
1304
|
exports.EncryptionMethod = EncryptionMethod;
|
|
1305
|
+
exports.ForbiddenException = ForbiddenException;
|
|
1306
|
+
exports.ForbiddenException$ = ForbiddenException$;
|
|
1307
|
+
exports.HlsEncryption$ = HlsEncryption$;
|
|
1308
|
+
exports.HlsManifest$ = HlsManifest$;
|
|
1309
|
+
exports.HlsPackage$ = HlsPackage$;
|
|
1310
|
+
exports.InternalServerErrorException = InternalServerErrorException;
|
|
1311
|
+
exports.InternalServerErrorException$ = InternalServerErrorException$;
|
|
1312
|
+
exports.ListAssets$ = ListAssets$;
|
|
418
1313
|
exports.ListAssetsCommand = ListAssetsCommand;
|
|
1314
|
+
exports.ListAssetsRequest$ = ListAssetsRequest$;
|
|
1315
|
+
exports.ListAssetsResponse$ = ListAssetsResponse$;
|
|
1316
|
+
exports.ListPackagingConfigurations$ = ListPackagingConfigurations$;
|
|
419
1317
|
exports.ListPackagingConfigurationsCommand = ListPackagingConfigurationsCommand;
|
|
1318
|
+
exports.ListPackagingConfigurationsRequest$ = ListPackagingConfigurationsRequest$;
|
|
1319
|
+
exports.ListPackagingConfigurationsResponse$ = ListPackagingConfigurationsResponse$;
|
|
1320
|
+
exports.ListPackagingGroups$ = ListPackagingGroups$;
|
|
420
1321
|
exports.ListPackagingGroupsCommand = ListPackagingGroupsCommand;
|
|
1322
|
+
exports.ListPackagingGroupsRequest$ = ListPackagingGroupsRequest$;
|
|
1323
|
+
exports.ListPackagingGroupsResponse$ = ListPackagingGroupsResponse$;
|
|
1324
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
421
1325
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1326
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1327
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
422
1328
|
exports.ManifestLayout = ManifestLayout;
|
|
423
1329
|
exports.MediaPackageVod = MediaPackageVod;
|
|
424
1330
|
exports.MediaPackageVodClient = MediaPackageVodClient;
|
|
1331
|
+
exports.MediaPackageVodServiceException = MediaPackageVodServiceException;
|
|
1332
|
+
exports.MediaPackageVodServiceException$ = MediaPackageVodServiceException$;
|
|
1333
|
+
exports.MssEncryption$ = MssEncryption$;
|
|
1334
|
+
exports.MssManifest$ = MssManifest$;
|
|
1335
|
+
exports.MssPackage$ = MssPackage$;
|
|
1336
|
+
exports.NotFoundException = NotFoundException;
|
|
1337
|
+
exports.NotFoundException$ = NotFoundException$;
|
|
1338
|
+
exports.PackagingConfiguration$ = PackagingConfiguration$;
|
|
1339
|
+
exports.PackagingGroup$ = PackagingGroup$;
|
|
425
1340
|
exports.PresetSpeke20Audio = PresetSpeke20Audio;
|
|
426
1341
|
exports.PresetSpeke20Video = PresetSpeke20Video;
|
|
427
1342
|
exports.Profile = Profile;
|
|
428
1343
|
exports.ScteMarkersSource = ScteMarkersSource;
|
|
429
1344
|
exports.SegmentTemplateFormat = SegmentTemplateFormat;
|
|
1345
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
1346
|
+
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
1347
|
+
exports.SpekeKeyProvider$ = SpekeKeyProvider$;
|
|
430
1348
|
exports.StreamOrder = StreamOrder;
|
|
1349
|
+
exports.StreamSelection$ = StreamSelection$;
|
|
1350
|
+
exports.TagResource$ = TagResource$;
|
|
431
1351
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1352
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1353
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
1354
|
+
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
1355
|
+
exports.UnprocessableEntityException = UnprocessableEntityException;
|
|
1356
|
+
exports.UnprocessableEntityException$ = UnprocessableEntityException$;
|
|
1357
|
+
exports.UntagResource$ = UntagResource$;
|
|
432
1358
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1359
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1360
|
+
exports.UpdatePackagingGroup$ = UpdatePackagingGroup$;
|
|
433
1361
|
exports.UpdatePackagingGroupCommand = UpdatePackagingGroupCommand;
|
|
1362
|
+
exports.UpdatePackagingGroupRequest$ = UpdatePackagingGroupRequest$;
|
|
1363
|
+
exports.UpdatePackagingGroupResponse$ = UpdatePackagingGroupResponse$;
|
|
434
1364
|
exports.__PeriodTriggersElement = __PeriodTriggersElement;
|
|
1365
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
435
1366
|
exports.paginateListAssets = paginateListAssets;
|
|
436
1367
|
exports.paginateListPackagingConfigurations = paginateListPackagingConfigurations;
|
|
437
1368
|
exports.paginateListPackagingGroups = paginateListPackagingGroups;
|