@aws-sdk/client-mediapackage-vod 3.128.0 → 3.137.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 +30 -0
- package/dist-cjs/commands/ConfigureLogsCommand.js +2 -2
- package/dist-cjs/commands/CreateAssetCommand.js +2 -2
- package/dist-cjs/commands/CreatePackagingConfigurationCommand.js +2 -2
- package/dist-cjs/commands/CreatePackagingGroupCommand.js +2 -2
- package/dist-cjs/commands/DeleteAssetCommand.js +2 -2
- package/dist-cjs/commands/DeletePackagingConfigurationCommand.js +2 -2
- package/dist-cjs/commands/DeletePackagingGroupCommand.js +2 -2
- package/dist-cjs/commands/DescribeAssetCommand.js +2 -2
- package/dist-cjs/commands/DescribePackagingConfigurationCommand.js +2 -2
- package/dist-cjs/commands/DescribePackagingGroupCommand.js +2 -2
- package/dist-cjs/commands/ListAssetsCommand.js +2 -2
- package/dist-cjs/commands/ListPackagingConfigurationsCommand.js +2 -2
- package/dist-cjs/commands/ListPackagingGroupsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +1 -1
- package/dist-cjs/commands/UntagResourceCommand.js +1 -1
- package/dist-cjs/commands/UpdatePackagingGroupCommand.js +2 -2
- package/dist-cjs/models/models_0.js +206 -308
- package/dist-cjs/protocols/Aws_restJson1.js +3 -0
- package/dist-es/commands/ConfigureLogsCommand.js +3 -3
- package/dist-es/commands/CreateAssetCommand.js +3 -3
- package/dist-es/commands/CreatePackagingConfigurationCommand.js +3 -3
- package/dist-es/commands/CreatePackagingGroupCommand.js +3 -3
- package/dist-es/commands/DeleteAssetCommand.js +3 -3
- package/dist-es/commands/DeletePackagingConfigurationCommand.js +3 -3
- package/dist-es/commands/DeletePackagingGroupCommand.js +3 -3
- package/dist-es/commands/DescribeAssetCommand.js +3 -3
- package/dist-es/commands/DescribePackagingConfigurationCommand.js +3 -3
- package/dist-es/commands/DescribePackagingGroupCommand.js +3 -3
- package/dist-es/commands/ListAssetsCommand.js +3 -3
- package/dist-es/commands/ListPackagingConfigurationsCommand.js +3 -3
- package/dist-es/commands/ListPackagingGroupsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdatePackagingGroupCommand.js +3 -3
- package/dist-es/models/models_0.js +51 -204
- package/dist-es/protocols/Aws_restJson1.js +3 -0
- package/dist-types/models/models_0.d.ts +204 -306
- package/dist-types/ts3.4/models/models_0.d.ts +102 -204
- package/package.json +9 -9
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreatePackagingGroupRequestFilterSensitiveLog, CreatePackagingGroupResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreatePackagingGroupCommand, serializeAws_restJson1CreatePackagingGroupCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreatePackagingGroupCommand = (function (_super) {
|
|
7
7
|
__extends(CreatePackagingGroupCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreatePackagingGroupCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreatePackagingGroupRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreatePackagingGroupResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeleteAssetRequestFilterSensitiveLog, DeleteAssetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteAssetCommand, serializeAws_restJson1DeleteAssetCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteAssetCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteAssetCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteAssetCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteAssetRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteAssetResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeletePackagingConfigurationRequestFilterSensitiveLog, DeletePackagingConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeletePackagingConfigurationCommand, serializeAws_restJson1DeletePackagingConfigurationCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeletePackagingConfigurationCommand = (function (_super) {
|
|
7
7
|
__extends(DeletePackagingConfigurationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeletePackagingConfigurationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeletePackagingConfigurationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeletePackagingConfigurationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeletePackagingGroupRequestFilterSensitiveLog, DeletePackagingGroupResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeletePackagingGroupCommand, serializeAws_restJson1DeletePackagingGroupCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeletePackagingGroupCommand = (function (_super) {
|
|
7
7
|
__extends(DeletePackagingGroupCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeletePackagingGroupCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeletePackagingGroupRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeletePackagingGroupResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeAssetRequestFilterSensitiveLog, DescribeAssetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeAssetCommand, serializeAws_restJson1DescribeAssetCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribeAssetCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeAssetCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeAssetCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeAssetRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeAssetResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribePackagingConfigurationRequestFilterSensitiveLog, DescribePackagingConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribePackagingConfigurationCommand, serializeAws_restJson1DescribePackagingConfigurationCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribePackagingConfigurationCommand = (function (_super) {
|
|
7
7
|
__extends(DescribePackagingConfigurationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribePackagingConfigurationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribePackagingConfigurationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribePackagingConfigurationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribePackagingGroupRequestFilterSensitiveLog, DescribePackagingGroupResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribePackagingGroupCommand, serializeAws_restJson1DescribePackagingGroupCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribePackagingGroupCommand = (function (_super) {
|
|
7
7
|
__extends(DescribePackagingGroupCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribePackagingGroupCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribePackagingGroupRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribePackagingGroupResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListAssetsRequestFilterSensitiveLog, ListAssetsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListAssetsCommand, serializeAws_restJson1ListAssetsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListAssetsCommand = (function (_super) {
|
|
7
7
|
__extends(ListAssetsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListAssetsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListAssetsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListAssetsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListPackagingConfigurationsRequestFilterSensitiveLog, ListPackagingConfigurationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListPackagingConfigurationsCommand, serializeAws_restJson1ListPackagingConfigurationsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListPackagingConfigurationsCommand = (function (_super) {
|
|
7
7
|
__extends(ListPackagingConfigurationsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListPackagingConfigurationsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListPackagingConfigurationsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListPackagingConfigurationsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListPackagingGroupsRequestFilterSensitiveLog, ListPackagingGroupsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListPackagingGroupsCommand, serializeAws_restJson1ListPackagingGroupsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListPackagingGroupsCommand = (function (_super) {
|
|
7
7
|
__extends(ListPackagingGroupsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListPackagingGroupsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListPackagingGroupsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListPackagingGroupsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListTagsForResourceRequestFilterSensitiveLog, ListTagsForResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListTagsForResourceCommand = (function (_super) {
|
|
7
7
|
__extends(ListTagsForResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListTagsForResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListTagsForResourceRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListTagsForResourceResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { TagResourceRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var TagResourceCommand = (function (_super) {
|
|
7
7
|
__extends(TagResourceCommand, _super);
|
|
@@ -20,7 +20,7 @@ var TagResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: TagResourceRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UntagResourceRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UntagResourceCommand = (function (_super) {
|
|
7
7
|
__extends(UntagResourceCommand, _super);
|
|
@@ -20,7 +20,7 @@ var UntagResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UntagResourceRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UpdatePackagingGroupRequestFilterSensitiveLog, UpdatePackagingGroupResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdatePackagingGroupCommand, serializeAws_restJson1UpdatePackagingGroupCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdatePackagingGroupCommand = (function (_super) {
|
|
7
7
|
__extends(UpdatePackagingGroupCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdatePackagingGroupCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdatePackagingGroupRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdatePackagingGroupResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -4,10 +4,6 @@ export var __PeriodTriggersElement;
|
|
|
4
4
|
(function (__PeriodTriggersElement) {
|
|
5
5
|
__PeriodTriggersElement["ADS"] = "ADS";
|
|
6
6
|
})(__PeriodTriggersElement || (__PeriodTriggersElement = {}));
|
|
7
|
-
export var AssetShallow;
|
|
8
|
-
(function (AssetShallow) {
|
|
9
|
-
AssetShallow.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
10
|
-
})(AssetShallow || (AssetShallow = {}));
|
|
11
7
|
export var ManifestLayout;
|
|
12
8
|
(function (ManifestLayout) {
|
|
13
9
|
ManifestLayout["COMPACT"] = "COMPACT";
|
|
@@ -29,103 +25,23 @@ export var StreamOrder;
|
|
|
29
25
|
StreamOrder["VIDEO_BITRATE_ASCENDING"] = "VIDEO_BITRATE_ASCENDING";
|
|
30
26
|
StreamOrder["VIDEO_BITRATE_DESCENDING"] = "VIDEO_BITRATE_DESCENDING";
|
|
31
27
|
})(StreamOrder || (StreamOrder = {}));
|
|
32
|
-
export var StreamSelection;
|
|
33
|
-
(function (StreamSelection) {
|
|
34
|
-
StreamSelection.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
35
|
-
})(StreamSelection || (StreamSelection = {}));
|
|
36
|
-
export var DashManifest;
|
|
37
|
-
(function (DashManifest) {
|
|
38
|
-
DashManifest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
39
|
-
})(DashManifest || (DashManifest = {}));
|
|
40
|
-
export var EgressEndpoint;
|
|
41
|
-
(function (EgressEndpoint) {
|
|
42
|
-
EgressEndpoint.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
43
|
-
})(EgressEndpoint || (EgressEndpoint = {}));
|
|
44
28
|
export var AdMarkers;
|
|
45
29
|
(function (AdMarkers) {
|
|
46
30
|
AdMarkers["NONE"] = "NONE";
|
|
47
31
|
AdMarkers["PASSTHROUGH"] = "PASSTHROUGH";
|
|
48
32
|
AdMarkers["SCTE35_ENHANCED"] = "SCTE35_ENHANCED";
|
|
49
33
|
})(AdMarkers || (AdMarkers = {}));
|
|
50
|
-
export var HlsManifest;
|
|
51
|
-
(function (HlsManifest) {
|
|
52
|
-
HlsManifest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
53
|
-
})(HlsManifest || (HlsManifest = {}));
|
|
54
|
-
export var MssManifest;
|
|
55
|
-
(function (MssManifest) {
|
|
56
|
-
MssManifest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
57
|
-
})(MssManifest || (MssManifest = {}));
|
|
58
|
-
export var SpekeKeyProvider;
|
|
59
|
-
(function (SpekeKeyProvider) {
|
|
60
|
-
SpekeKeyProvider.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
61
|
-
})(SpekeKeyProvider || (SpekeKeyProvider = {}));
|
|
62
|
-
export var CmafEncryption;
|
|
63
|
-
(function (CmafEncryption) {
|
|
64
|
-
CmafEncryption.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
65
|
-
})(CmafEncryption || (CmafEncryption = {}));
|
|
66
|
-
export var CmafPackage;
|
|
67
|
-
(function (CmafPackage) {
|
|
68
|
-
CmafPackage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
69
|
-
})(CmafPackage || (CmafPackage = {}));
|
|
70
|
-
export var DashEncryption;
|
|
71
|
-
(function (DashEncryption) {
|
|
72
|
-
DashEncryption.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
73
|
-
})(DashEncryption || (DashEncryption = {}));
|
|
74
34
|
export var SegmentTemplateFormat;
|
|
75
35
|
(function (SegmentTemplateFormat) {
|
|
76
36
|
SegmentTemplateFormat["NUMBER_WITH_DURATION"] = "NUMBER_WITH_DURATION";
|
|
77
37
|
SegmentTemplateFormat["NUMBER_WITH_TIMELINE"] = "NUMBER_WITH_TIMELINE";
|
|
78
38
|
SegmentTemplateFormat["TIME_WITH_TIMELINE"] = "TIME_WITH_TIMELINE";
|
|
79
39
|
})(SegmentTemplateFormat || (SegmentTemplateFormat = {}));
|
|
80
|
-
export var DashPackage;
|
|
81
|
-
(function (DashPackage) {
|
|
82
|
-
DashPackage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
83
|
-
})(DashPackage || (DashPackage = {}));
|
|
84
40
|
export var EncryptionMethod;
|
|
85
41
|
(function (EncryptionMethod) {
|
|
86
42
|
EncryptionMethod["AES_128"] = "AES_128";
|
|
87
43
|
EncryptionMethod["SAMPLE_AES"] = "SAMPLE_AES";
|
|
88
44
|
})(EncryptionMethod || (EncryptionMethod = {}));
|
|
89
|
-
export var HlsEncryption;
|
|
90
|
-
(function (HlsEncryption) {
|
|
91
|
-
HlsEncryption.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
92
|
-
})(HlsEncryption || (HlsEncryption = {}));
|
|
93
|
-
export var HlsPackage;
|
|
94
|
-
(function (HlsPackage) {
|
|
95
|
-
HlsPackage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
96
|
-
})(HlsPackage || (HlsPackage = {}));
|
|
97
|
-
export var MssEncryption;
|
|
98
|
-
(function (MssEncryption) {
|
|
99
|
-
MssEncryption.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
100
|
-
})(MssEncryption || (MssEncryption = {}));
|
|
101
|
-
export var MssPackage;
|
|
102
|
-
(function (MssPackage) {
|
|
103
|
-
MssPackage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
104
|
-
})(MssPackage || (MssPackage = {}));
|
|
105
|
-
export var PackagingConfiguration;
|
|
106
|
-
(function (PackagingConfiguration) {
|
|
107
|
-
PackagingConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
108
|
-
})(PackagingConfiguration || (PackagingConfiguration = {}));
|
|
109
|
-
export var Authorization;
|
|
110
|
-
(function (Authorization) {
|
|
111
|
-
Authorization.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
112
|
-
})(Authorization || (Authorization = {}));
|
|
113
|
-
export var EgressAccessLogs;
|
|
114
|
-
(function (EgressAccessLogs) {
|
|
115
|
-
EgressAccessLogs.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
116
|
-
})(EgressAccessLogs || (EgressAccessLogs = {}));
|
|
117
|
-
export var PackagingGroup;
|
|
118
|
-
(function (PackagingGroup) {
|
|
119
|
-
PackagingGroup.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
120
|
-
})(PackagingGroup || (PackagingGroup = {}));
|
|
121
|
-
export var ConfigureLogsRequest;
|
|
122
|
-
(function (ConfigureLogsRequest) {
|
|
123
|
-
ConfigureLogsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
124
|
-
})(ConfigureLogsRequest || (ConfigureLogsRequest = {}));
|
|
125
|
-
export var ConfigureLogsResponse;
|
|
126
|
-
(function (ConfigureLogsResponse) {
|
|
127
|
-
ConfigureLogsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
128
|
-
})(ConfigureLogsResponse || (ConfigureLogsResponse = {}));
|
|
129
45
|
var ForbiddenException = (function (_super) {
|
|
130
46
|
__extends(ForbiddenException, _super);
|
|
131
47
|
function ForbiddenException(opts) {
|
|
@@ -204,123 +120,54 @@ var UnprocessableEntityException = (function (_super) {
|
|
|
204
120
|
return UnprocessableEntityException;
|
|
205
121
|
}(__BaseException));
|
|
206
122
|
export { UnprocessableEntityException };
|
|
207
|
-
export var
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
export var
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
export var
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
export var
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
export var
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
export var
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
export var
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
export var
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
export var
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
export var
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
export var
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
export var
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
export var
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
})(DescribeAssetRequest || (DescribeAssetRequest = {}));
|
|
259
|
-
export var DescribeAssetResponse;
|
|
260
|
-
(function (DescribeAssetResponse) {
|
|
261
|
-
DescribeAssetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
262
|
-
})(DescribeAssetResponse || (DescribeAssetResponse = {}));
|
|
263
|
-
export var DescribePackagingConfigurationRequest;
|
|
264
|
-
(function (DescribePackagingConfigurationRequest) {
|
|
265
|
-
DescribePackagingConfigurationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
266
|
-
})(DescribePackagingConfigurationRequest || (DescribePackagingConfigurationRequest = {}));
|
|
267
|
-
export var DescribePackagingConfigurationResponse;
|
|
268
|
-
(function (DescribePackagingConfigurationResponse) {
|
|
269
|
-
DescribePackagingConfigurationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
270
|
-
})(DescribePackagingConfigurationResponse || (DescribePackagingConfigurationResponse = {}));
|
|
271
|
-
export var DescribePackagingGroupRequest;
|
|
272
|
-
(function (DescribePackagingGroupRequest) {
|
|
273
|
-
DescribePackagingGroupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
274
|
-
})(DescribePackagingGroupRequest || (DescribePackagingGroupRequest = {}));
|
|
275
|
-
export var DescribePackagingGroupResponse;
|
|
276
|
-
(function (DescribePackagingGroupResponse) {
|
|
277
|
-
DescribePackagingGroupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
278
|
-
})(DescribePackagingGroupResponse || (DescribePackagingGroupResponse = {}));
|
|
279
|
-
export var ListAssetsRequest;
|
|
280
|
-
(function (ListAssetsRequest) {
|
|
281
|
-
ListAssetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
282
|
-
})(ListAssetsRequest || (ListAssetsRequest = {}));
|
|
283
|
-
export var ListAssetsResponse;
|
|
284
|
-
(function (ListAssetsResponse) {
|
|
285
|
-
ListAssetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
286
|
-
})(ListAssetsResponse || (ListAssetsResponse = {}));
|
|
287
|
-
export var ListPackagingConfigurationsRequest;
|
|
288
|
-
(function (ListPackagingConfigurationsRequest) {
|
|
289
|
-
ListPackagingConfigurationsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
290
|
-
})(ListPackagingConfigurationsRequest || (ListPackagingConfigurationsRequest = {}));
|
|
291
|
-
export var ListPackagingConfigurationsResponse;
|
|
292
|
-
(function (ListPackagingConfigurationsResponse) {
|
|
293
|
-
ListPackagingConfigurationsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
294
|
-
})(ListPackagingConfigurationsResponse || (ListPackagingConfigurationsResponse = {}));
|
|
295
|
-
export var ListPackagingGroupsRequest;
|
|
296
|
-
(function (ListPackagingGroupsRequest) {
|
|
297
|
-
ListPackagingGroupsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
298
|
-
})(ListPackagingGroupsRequest || (ListPackagingGroupsRequest = {}));
|
|
299
|
-
export var ListPackagingGroupsResponse;
|
|
300
|
-
(function (ListPackagingGroupsResponse) {
|
|
301
|
-
ListPackagingGroupsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
302
|
-
})(ListPackagingGroupsResponse || (ListPackagingGroupsResponse = {}));
|
|
303
|
-
export var ListTagsForResourceRequest;
|
|
304
|
-
(function (ListTagsForResourceRequest) {
|
|
305
|
-
ListTagsForResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
306
|
-
})(ListTagsForResourceRequest || (ListTagsForResourceRequest = {}));
|
|
307
|
-
export var ListTagsForResourceResponse;
|
|
308
|
-
(function (ListTagsForResourceResponse) {
|
|
309
|
-
ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
310
|
-
})(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));
|
|
311
|
-
export var TagResourceRequest;
|
|
312
|
-
(function (TagResourceRequest) {
|
|
313
|
-
TagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
314
|
-
})(TagResourceRequest || (TagResourceRequest = {}));
|
|
315
|
-
export var UntagResourceRequest;
|
|
316
|
-
(function (UntagResourceRequest) {
|
|
317
|
-
UntagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
318
|
-
})(UntagResourceRequest || (UntagResourceRequest = {}));
|
|
319
|
-
export var UpdatePackagingGroupRequest;
|
|
320
|
-
(function (UpdatePackagingGroupRequest) {
|
|
321
|
-
UpdatePackagingGroupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
322
|
-
})(UpdatePackagingGroupRequest || (UpdatePackagingGroupRequest = {}));
|
|
323
|
-
export var UpdatePackagingGroupResponse;
|
|
324
|
-
(function (UpdatePackagingGroupResponse) {
|
|
325
|
-
UpdatePackagingGroupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
326
|
-
})(UpdatePackagingGroupResponse || (UpdatePackagingGroupResponse = {}));
|
|
123
|
+
export var AssetShallowFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
124
|
+
export var StreamSelectionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
125
|
+
export var DashManifestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
126
|
+
export var EgressEndpointFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
127
|
+
export var HlsManifestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
128
|
+
export var MssManifestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
129
|
+
export var SpekeKeyProviderFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
130
|
+
export var CmafEncryptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
131
|
+
export var CmafPackageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
132
|
+
export var DashEncryptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
133
|
+
export var DashPackageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
134
|
+
export var HlsEncryptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
135
|
+
export var HlsPackageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
136
|
+
export var MssEncryptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
137
|
+
export var MssPackageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
138
|
+
export var PackagingConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
139
|
+
export var AuthorizationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
140
|
+
export var EgressAccessLogsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
141
|
+
export var PackagingGroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
142
|
+
export var ConfigureLogsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
143
|
+
export var ConfigureLogsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
144
|
+
export var CreateAssetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
145
|
+
export var CreateAssetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
146
|
+
export var CreatePackagingConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
147
|
+
export var CreatePackagingConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
148
|
+
export var CreatePackagingGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
149
|
+
export var CreatePackagingGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
150
|
+
export var DeleteAssetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
151
|
+
export var DeleteAssetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
152
|
+
export var DeletePackagingConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
153
|
+
export var DeletePackagingConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
154
|
+
export var DeletePackagingGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
155
|
+
export var DeletePackagingGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
156
|
+
export var DescribeAssetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
157
|
+
export var DescribeAssetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
158
|
+
export var DescribePackagingConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
159
|
+
export var DescribePackagingConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
160
|
+
export var DescribePackagingGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
161
|
+
export var DescribePackagingGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
162
|
+
export var ListAssetsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
163
|
+
export var ListAssetsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
164
|
+
export var ListPackagingConfigurationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
165
|
+
export var ListPackagingConfigurationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
166
|
+
export var ListPackagingGroupsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
167
|
+
export var ListPackagingGroupsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
168
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
169
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
170
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
171
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
172
|
+
export var UpdatePackagingGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
173
|
+
export var UpdatePackagingGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -2473,6 +2473,9 @@ var loadRestJsonErrorCode = function (output, data) {
|
|
|
2473
2473
|
var findKey = function (object, key) { return Object.keys(object).find(function (k) { return k.toLowerCase() === key.toLowerCase(); }); };
|
|
2474
2474
|
var sanitizeErrorCode = function (rawValue) {
|
|
2475
2475
|
var cleanValue = rawValue;
|
|
2476
|
+
if (typeof cleanValue === "number") {
|
|
2477
|
+
cleanValue = cleanValue.toString();
|
|
2478
|
+
}
|
|
2476
2479
|
if (cleanValue.indexOf(":") >= 0) {
|
|
2477
2480
|
cleanValue = cleanValue.split(":")[0];
|
|
2478
2481
|
}
|