@aws-sdk/client-mediaconnect 3.51.0 → 3.54.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/MediaConnectServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +129 -2
- package/dist-cjs/protocols/Aws_restJson1.js +367 -1355
- package/dist-es/index.js +1 -0
- package/dist-es/models/MediaConnectServiceException.js +12 -0
- package/dist-es/models/models_0.js +119 -1
- package/dist-es/protocols/Aws_restJson1.js +753 -1485
- package/dist-types/MediaConnectClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/MediaConnectServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +65 -28
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/MediaConnectClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/MediaConnectServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +47 -28
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +34 -34
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var MediaConnectServiceException = (function (_super) {
|
|
4
|
+
__extends(MediaConnectServiceException, _super);
|
|
5
|
+
function MediaConnectServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, MediaConnectServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return MediaConnectServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { MediaConnectServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { MediaConnectServiceException as __BaseException } from "./MediaConnectServiceException";
|
|
2
3
|
export var Colorimetry;
|
|
3
4
|
(function (Colorimetry) {
|
|
4
5
|
Colorimetry["BT2020"] = "BT2020";
|
|
@@ -263,6 +264,97 @@ export var AddFlowMediaStreamsResponse;
|
|
|
263
264
|
(function (AddFlowMediaStreamsResponse) {
|
|
264
265
|
AddFlowMediaStreamsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
265
266
|
})(AddFlowMediaStreamsResponse || (AddFlowMediaStreamsResponse = {}));
|
|
267
|
+
var BadRequestException = (function (_super) {
|
|
268
|
+
__extends(BadRequestException, _super);
|
|
269
|
+
function BadRequestException(opts) {
|
|
270
|
+
var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
|
|
271
|
+
_this.name = "BadRequestException";
|
|
272
|
+
_this.$fault = "client";
|
|
273
|
+
Object.setPrototypeOf(_this, BadRequestException.prototype);
|
|
274
|
+
_this.Message = opts.Message;
|
|
275
|
+
return _this;
|
|
276
|
+
}
|
|
277
|
+
return BadRequestException;
|
|
278
|
+
}(__BaseException));
|
|
279
|
+
export { BadRequestException };
|
|
280
|
+
var ForbiddenException = (function (_super) {
|
|
281
|
+
__extends(ForbiddenException, _super);
|
|
282
|
+
function ForbiddenException(opts) {
|
|
283
|
+
var _this = _super.call(this, __assign({ name: "ForbiddenException", $fault: "client" }, opts)) || this;
|
|
284
|
+
_this.name = "ForbiddenException";
|
|
285
|
+
_this.$fault = "client";
|
|
286
|
+
Object.setPrototypeOf(_this, ForbiddenException.prototype);
|
|
287
|
+
_this.Message = opts.Message;
|
|
288
|
+
return _this;
|
|
289
|
+
}
|
|
290
|
+
return ForbiddenException;
|
|
291
|
+
}(__BaseException));
|
|
292
|
+
export { ForbiddenException };
|
|
293
|
+
var InternalServerErrorException = (function (_super) {
|
|
294
|
+
__extends(InternalServerErrorException, _super);
|
|
295
|
+
function InternalServerErrorException(opts) {
|
|
296
|
+
var _this = _super.call(this, __assign({ name: "InternalServerErrorException", $fault: "server" }, opts)) || this;
|
|
297
|
+
_this.name = "InternalServerErrorException";
|
|
298
|
+
_this.$fault = "server";
|
|
299
|
+
Object.setPrototypeOf(_this, InternalServerErrorException.prototype);
|
|
300
|
+
_this.Message = opts.Message;
|
|
301
|
+
return _this;
|
|
302
|
+
}
|
|
303
|
+
return InternalServerErrorException;
|
|
304
|
+
}(__BaseException));
|
|
305
|
+
export { InternalServerErrorException };
|
|
306
|
+
var NotFoundException = (function (_super) {
|
|
307
|
+
__extends(NotFoundException, _super);
|
|
308
|
+
function NotFoundException(opts) {
|
|
309
|
+
var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
|
|
310
|
+
_this.name = "NotFoundException";
|
|
311
|
+
_this.$fault = "client";
|
|
312
|
+
Object.setPrototypeOf(_this, NotFoundException.prototype);
|
|
313
|
+
_this.Message = opts.Message;
|
|
314
|
+
return _this;
|
|
315
|
+
}
|
|
316
|
+
return NotFoundException;
|
|
317
|
+
}(__BaseException));
|
|
318
|
+
export { NotFoundException };
|
|
319
|
+
var ServiceUnavailableException = (function (_super) {
|
|
320
|
+
__extends(ServiceUnavailableException, _super);
|
|
321
|
+
function ServiceUnavailableException(opts) {
|
|
322
|
+
var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
|
|
323
|
+
_this.name = "ServiceUnavailableException";
|
|
324
|
+
_this.$fault = "server";
|
|
325
|
+
Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
|
|
326
|
+
_this.Message = opts.Message;
|
|
327
|
+
return _this;
|
|
328
|
+
}
|
|
329
|
+
return ServiceUnavailableException;
|
|
330
|
+
}(__BaseException));
|
|
331
|
+
export { ServiceUnavailableException };
|
|
332
|
+
var TooManyRequestsException = (function (_super) {
|
|
333
|
+
__extends(TooManyRequestsException, _super);
|
|
334
|
+
function TooManyRequestsException(opts) {
|
|
335
|
+
var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
|
|
336
|
+
_this.name = "TooManyRequestsException";
|
|
337
|
+
_this.$fault = "client";
|
|
338
|
+
Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
|
|
339
|
+
_this.Message = opts.Message;
|
|
340
|
+
return _this;
|
|
341
|
+
}
|
|
342
|
+
return TooManyRequestsException;
|
|
343
|
+
}(__BaseException));
|
|
344
|
+
export { TooManyRequestsException };
|
|
345
|
+
var AddFlowOutputs420Exception = (function (_super) {
|
|
346
|
+
__extends(AddFlowOutputs420Exception, _super);
|
|
347
|
+
function AddFlowOutputs420Exception(opts) {
|
|
348
|
+
var _this = _super.call(this, __assign({ name: "AddFlowOutputs420Exception", $fault: "client" }, opts)) || this;
|
|
349
|
+
_this.name = "AddFlowOutputs420Exception";
|
|
350
|
+
_this.$fault = "client";
|
|
351
|
+
Object.setPrototypeOf(_this, AddFlowOutputs420Exception.prototype);
|
|
352
|
+
_this.Message = opts.Message;
|
|
353
|
+
return _this;
|
|
354
|
+
}
|
|
355
|
+
return AddFlowOutputs420Exception;
|
|
356
|
+
}(__BaseException));
|
|
357
|
+
export { AddFlowOutputs420Exception };
|
|
266
358
|
export var AddFlowOutputsRequest;
|
|
267
359
|
(function (AddFlowOutputsRequest) {
|
|
268
360
|
AddFlowOutputsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -287,6 +379,19 @@ export var AddFlowVpcInterfacesResponse;
|
|
|
287
379
|
(function (AddFlowVpcInterfacesResponse) {
|
|
288
380
|
AddFlowVpcInterfacesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
289
381
|
})(AddFlowVpcInterfacesResponse || (AddFlowVpcInterfacesResponse = {}));
|
|
382
|
+
var CreateFlow420Exception = (function (_super) {
|
|
383
|
+
__extends(CreateFlow420Exception, _super);
|
|
384
|
+
function CreateFlow420Exception(opts) {
|
|
385
|
+
var _this = _super.call(this, __assign({ name: "CreateFlow420Exception", $fault: "client" }, opts)) || this;
|
|
386
|
+
_this.name = "CreateFlow420Exception";
|
|
387
|
+
_this.$fault = "client";
|
|
388
|
+
Object.setPrototypeOf(_this, CreateFlow420Exception.prototype);
|
|
389
|
+
_this.Message = opts.Message;
|
|
390
|
+
return _this;
|
|
391
|
+
}
|
|
392
|
+
return CreateFlow420Exception;
|
|
393
|
+
}(__BaseException));
|
|
394
|
+
export { CreateFlow420Exception };
|
|
290
395
|
export var FailoverMode;
|
|
291
396
|
(function (FailoverMode) {
|
|
292
397
|
FailoverMode["FAILOVER"] = "FAILOVER";
|
|
@@ -353,6 +458,19 @@ export var DescribeReservationResponse;
|
|
|
353
458
|
(function (DescribeReservationResponse) {
|
|
354
459
|
DescribeReservationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
355
460
|
})(DescribeReservationResponse || (DescribeReservationResponse = {}));
|
|
461
|
+
var GrantFlowEntitlements420Exception = (function (_super) {
|
|
462
|
+
__extends(GrantFlowEntitlements420Exception, _super);
|
|
463
|
+
function GrantFlowEntitlements420Exception(opts) {
|
|
464
|
+
var _this = _super.call(this, __assign({ name: "GrantFlowEntitlements420Exception", $fault: "client" }, opts)) || this;
|
|
465
|
+
_this.name = "GrantFlowEntitlements420Exception";
|
|
466
|
+
_this.$fault = "client";
|
|
467
|
+
Object.setPrototypeOf(_this, GrantFlowEntitlements420Exception.prototype);
|
|
468
|
+
_this.Message = opts.Message;
|
|
469
|
+
return _this;
|
|
470
|
+
}
|
|
471
|
+
return GrantFlowEntitlements420Exception;
|
|
472
|
+
}(__BaseException));
|
|
473
|
+
export { GrantFlowEntitlements420Exception };
|
|
356
474
|
export var GrantFlowEntitlementsRequest;
|
|
357
475
|
(function (GrantFlowEntitlementsRequest) {
|
|
358
476
|
GrantFlowEntitlementsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|